kokopu-react 1.5.5 → 1.7.1

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 (116) hide show
  1. package/.nycrc.yml +1 -1
  2. package/CHANGELOG.md +18 -0
  3. package/README.md +2 -2
  4. package/dist/lib/ArrowMarkerIcon.js +2 -2
  5. package/dist/lib/Chessboard.js +26 -18
  6. package/dist/lib/Movetext.js +41 -82
  7. package/dist/lib/formatmove.js +119 -0
  8. package/dist/lib/impl/HtmlSanitizer.js +8 -3
  9. package/dist/lib/impl/colorsets.js +44 -44
  10. package/dist/lib/impl/util.js +1 -1
  11. package/dist/lib/index.js +14 -0
  12. package/dist/lib/markers.js +7 -7
  13. package/doc_src/demo/PageChessboardInteraction.js +4 -3
  14. package/doc_src/demo/PageChessboardMove.js +36 -5
  15. package/doc_src/demo/demo.css +4 -0
  16. package/{graphic_test_app → graphic_test_src}/01_marker_icons.js +0 -0
  17. package/{graphic_test_app → graphic_test_src}/02_chessboard_simple.js +0 -0
  18. package/{graphic_test_app → graphic_test_src}/03_chessboard_flipped.js +0 -0
  19. package/{graphic_test_app → graphic_test_src}/04_chessboard_annotations.js +8 -8
  20. package/{graphic_test_app → graphic_test_src}/05_chessboard_move.js +4 -4
  21. package/{graphic_test_app → graphic_test_src}/06_chessboard_theme.js +2 -2
  22. package/{graphic_test_app → graphic_test_src}/07_chessboard_click_squares.js +0 -0
  23. package/{graphic_test_app → graphic_test_src}/08_chessboard_move_pieces.js +1 -1
  24. package/{graphic_test_app → graphic_test_src}/09_chessboard_edit_arrows.js +0 -0
  25. package/{graphic_test_app → graphic_test_src}/10_chessboard_play_moves.js +1 -1
  26. package/{graphic_test_app → graphic_test_src}/11_chessboard_play_promotions.js +0 -0
  27. package/{graphic_test_app → graphic_test_src}/12_movetext_simple.js +0 -0
  28. package/{graphic_test_app → graphic_test_src}/13_movetext_error.js +0 -0
  29. package/{graphic_test_app → graphic_test_src}/14_movetext_html.js +0 -0
  30. package/{graphic_test_app → graphic_test_src}/15_movetext_options.js +0 -4
  31. package/{graphic_test_app → graphic_test_src}/16_movetext_interaction.js +0 -0
  32. package/{graphic_test_app → graphic_test_src}/common/dummy.pgn +0 -0
  33. package/{graphic_test_app → graphic_test_src}/common/games.pgn +11 -5
  34. package/{graphic_test_app → graphic_test_src}/common/heartbeat.txt +0 -0
  35. package/graphic_test_src/common/smiley.png +0 -0
  36. package/{graphic_test_app → graphic_test_src}/common/test_app.css +0 -0
  37. package/{graphic_test_app → graphic_test_src}/common/test_app.js +3 -2
  38. package/graphics/chess_sprites/cburnett/bb.svg +45 -0
  39. package/graphics/chess_sprites/cburnett/bk.svg +47 -0
  40. package/graphics/chess_sprites/cburnett/bn.svg +37 -0
  41. package/graphics/chess_sprites/cburnett/bp.svg +19 -0
  42. package/graphics/chess_sprites/cburnett/bq.svg +58 -0
  43. package/graphics/chess_sprites/cburnett/br.svg +60 -0
  44. package/graphics/chess_sprites/cburnett/bx.svg +56 -0
  45. package/graphics/chess_sprites/cburnett/wb.svg +48 -0
  46. package/graphics/chess_sprites/cburnett/wk.svg +26 -0
  47. package/graphics/chess_sprites/cburnett/wn.svg +37 -0
  48. package/graphics/chess_sprites/cburnett/wp.svg +19 -0
  49. package/graphics/chess_sprites/cburnett/wq.svg +60 -0
  50. package/graphics/chess_sprites/cburnett/wr.svg +44 -0
  51. package/graphics/chess_sprites/cburnett/wx.svg +56 -0
  52. package/graphics/chess_sprites/generate_sprites.sh +135 -0
  53. package/graphics/chess_sprites/mmonge/celtic-bx.svg +112 -0
  54. package/graphics/chess_sprites/mmonge/celtic-wx.svg +111 -0
  55. package/graphics/chess_sprites/mmonge/celtic.svg +1576 -0
  56. package/graphics/chess_sprites/mmonge/eyes-spatial-bx.svg +101 -0
  57. package/graphics/chess_sprites/mmonge/eyes-spatial-wx.svg +100 -0
  58. package/graphics/chess_sprites/mmonge/eyes.svg +2538 -0
  59. package/graphics/chess_sprites/mmonge/fantasy-bx.svg +112 -0
  60. package/graphics/chess_sprites/mmonge/fantasy-wx.svg +111 -0
  61. package/graphics/chess_sprites/mmonge/fantasy.svg +5497 -0
  62. package/graphics/chess_sprites/mmonge/fantasy_alt.svg +3742 -0
  63. package/graphics/chess_sprites/mmonge/freak.svg +3479 -0
  64. package/graphics/chess_sprites/mmonge/prmi.svg +6776 -0
  65. package/graphics/chess_sprites/mmonge/skulls-bx.svg +124 -0
  66. package/graphics/chess_sprites/mmonge/skulls-wx.svg +111 -0
  67. package/graphics/chess_sprites/mmonge/skulls.svg +12978 -0
  68. package/graphics/chess_sprites/mmonge/spatial.svg +1223 -0
  69. package/package.json +28 -22
  70. package/scripts/{test_graphic/clean-graphic-output.js → clean-graphic-output.js} +1 -1
  71. package/scripts/docker-compose.yml +14 -0
  72. package/scripts/{test_graphic/webpack-config.js → test-graphic.webpack.config.js} +9 -5
  73. package/scripts/{test_headless.webpack-config.js → test-headless.webpack.config.js} +2 -1
  74. package/src/Chessboard.js +24 -16
  75. package/src/Movetext.js +37 -59
  76. package/src/formatmove.js +91 -0
  77. package/src/impl/HtmlSanitizer.js +8 -2
  78. package/src/impl/colorsets.js +44 -44
  79. package/src/impl/util.js +1 -1
  80. package/src/index.js +1 -0
  81. package/src/markers.js +7 -7
  82. package/test/1_markers.js +14 -14
  83. package/test/common/graphic.js +2 -2
  84. package/test/references/04_chessboard_annotations/0.png +0 -0
  85. package/test/references/04_chessboard_annotations/1.png +0 -0
  86. package/test/references/04_chessboard_annotations/2.png +0 -0
  87. package/test/references/04_chessboard_annotations/3.png +0 -0
  88. package/test/references/04_chessboard_annotations/4.png +0 -0
  89. package/test/references/04_chessboard_annotations/5.png +0 -0
  90. package/test/references/05_chessboard_move/3.png +0 -0
  91. package/test/references/05_chessboard_move/4.png +0 -0
  92. package/test/references/05_chessboard_move/5.png +0 -0
  93. package/test/references/05_chessboard_move/6.png +0 -0
  94. package/test/references/06_chessboard_theme/0.png +0 -0
  95. package/test/references/06_chessboard_theme/1.png +0 -0
  96. package/test/references/06_chessboard_theme/2.png +0 -0
  97. package/test/references/06_chessboard_theme/3.png +0 -0
  98. package/test/references/06_chessboard_theme/4.png +0 -0
  99. package/test/references/06_chessboard_theme/5.png +0 -0
  100. package/test/references/06_chessboard_theme/6.png +0 -0
  101. package/test/references/06_chessboard_theme/7.png +0 -0
  102. package/test/references/06_chessboard_theme/8.png +0 -0
  103. package/test/references/08_chessboard_move_pieces/over_arrow_marker.png +0 -0
  104. package/test/references/08_chessboard_move_pieces/over_square_marker.png +0 -0
  105. package/test/references/08_chessboard_move_pieces/over_text_marker.png +0 -0
  106. package/test/references/09_chessboard_edit_arrows/base_1.png +0 -0
  107. package/test/references/09_chessboard_edit_arrows/base_2.png +0 -0
  108. package/test/references/09_chessboard_edit_arrows/null_vector.png +0 -0
  109. package/test/references/09_chessboard_edit_arrows/over_arrow_marker.png +0 -0
  110. package/test/references/09_chessboard_edit_arrows/over_square_marker.png +0 -0
  111. package/test/references/10_chessboard_play_moves/castling_move.png +0 -0
  112. package/test/references/10_chessboard_play_moves/regular_move_2.png +0 -0
  113. package/test/references/14_movetext_html/0.png +0 -0
  114. package/test/references/14_movetext_html/1.png +0 -0
  115. package/test/references/14_movetext_html/2.png +0 -0
  116. package/scripts/test_graphic/docker-compose.yml +0 -14
@@ -0,0 +1,3479 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:xlink="http://www.w3.org/1999/xlink"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ width="1200"
14
+ height="400"
15
+ id="svg2722"
16
+ sodipodi:version="0.32"
17
+ inkscape:version="0.48.1 r9760"
18
+ version="1.0"
19
+ sodipodi:docname="freak.svg"
20
+ inkscape:output_extension="org.inkscape.output.svg.inkscape">
21
+ <defs
22
+ id="defs2724">
23
+ <linearGradient
24
+ inkscape:collect="always"
25
+ xlink:href="#linearGradient2816"
26
+ id="linearGradient2822"
27
+ x1="708.40527"
28
+ y1="708.24023"
29
+ x2="726.89935"
30
+ y2="767.16583"
31
+ gradientUnits="userSpaceOnUse"
32
+ gradientTransform="matrix(0.22126766,0,0,0.22857143,11.74344,200.38093)" />
33
+ <linearGradient
34
+ id="linearGradient2816">
35
+ <stop
36
+ style="stop-color:#ff0000;stop-opacity:1;"
37
+ offset="0"
38
+ id="stop2818" />
39
+ <stop
40
+ style="stop-color:#ff7000;stop-opacity:1;"
41
+ offset="1"
42
+ id="stop2820" />
43
+ </linearGradient>
44
+ <linearGradient
45
+ inkscape:collect="always"
46
+ xlink:href="#linearGradient2804"
47
+ id="linearGradient2810"
48
+ x1="508.33115"
49
+ y1="392.78183"
50
+ x2="477.68985"
51
+ y2="467.27161"
52
+ gradientUnits="userSpaceOnUse"
53
+ gradientTransform="matrix(0.22126766,0,0,0.22857143,0.68005975,199.99998)" />
54
+ <linearGradient
55
+ id="linearGradient2804">
56
+ <stop
57
+ style="stop-color:#ffffff;stop-opacity:1;"
58
+ offset="0"
59
+ id="stop2806" />
60
+ <stop
61
+ style="stop-color:#ff0000;stop-opacity:0;"
62
+ offset="1"
63
+ id="stop2808" />
64
+ </linearGradient>
65
+ <linearGradient
66
+ inkscape:collect="always"
67
+ xlink:href="#linearGradient2804"
68
+ id="linearGradient2812"
69
+ x1="354.75922"
70
+ y1="397.64706"
71
+ x2="386.78885"
72
+ y2="451.85861"
73
+ gradientUnits="userSpaceOnUse"
74
+ gradientTransform="matrix(0.22126766,0,0,0.22857143,0.68005975,199.99998)" />
75
+ <linearGradient
76
+ inkscape:collect="always"
77
+ xlink:href="#linearGradient2266"
78
+ id="linearGradient2695"
79
+ x1="313.33334"
80
+ y1="558.33331"
81
+ x2="726.66669"
82
+ y2="558.33331"
83
+ gradientUnits="userSpaceOnUse" />
84
+ <linearGradient
85
+ id="linearGradient2266">
86
+ <stop
87
+ style="stop-color:#ffffff;stop-opacity:1;"
88
+ offset="0"
89
+ id="stop2268-0" />
90
+ <stop
91
+ style="stop-color:#d0b090;stop-opacity:1"
92
+ offset="1"
93
+ id="stop2270-5" />
94
+ </linearGradient>
95
+ <linearGradient
96
+ inkscape:collect="always"
97
+ xlink:href="#linearGradient2508"
98
+ id="linearGradient2895"
99
+ gradientUnits="userSpaceOnUse"
100
+ gradientTransform="matrix(-0.23514766,0,0,0.23515269,410.38926,197.28955)"
101
+ x1="247.19395"
102
+ y1="571.16028"
103
+ x2="408.68234"
104
+ y2="606.51562" />
105
+ <linearGradient
106
+ id="linearGradient2508">
107
+ <stop
108
+ style="stop-color:#ffffff;stop-opacity:1;"
109
+ offset="0"
110
+ id="stop2510" />
111
+ <stop
112
+ style="stop-color:#d0b090;stop-opacity:1"
113
+ offset="1"
114
+ id="stop2512" />
115
+ </linearGradient>
116
+ <linearGradient
117
+ inkscape:collect="always"
118
+ xlink:href="#linearGradient2508"
119
+ id="linearGradient2891"
120
+ x1="247.19395"
121
+ y1="571.16028"
122
+ x2="408.68234"
123
+ y2="606.51562"
124
+ gradientUnits="userSpaceOnUse"
125
+ gradientTransform="matrix(0.23514766,0,0,0.23515269,195.4562,195.62677)" />
126
+ <linearGradient
127
+ inkscape:collect="always"
128
+ xlink:href="#linearGradient2930"
129
+ id="linearGradient2936"
130
+ x1="410.92975"
131
+ y1="131.56165"
132
+ x2="899.82593"
133
+ y2="1051.2655"
134
+ gradientUnits="userSpaceOnUse"
135
+ gradientTransform="matrix(0.23514766,0,0,0.23515269,197.11895,194.51824)" />
136
+ <linearGradient
137
+ id="linearGradient2930">
138
+ <stop
139
+ style="stop-color:#ff80ff;stop-opacity:1;"
140
+ offset="0"
141
+ id="stop2932" />
142
+ <stop
143
+ style="stop-color:#8080ff;stop-opacity:1;"
144
+ offset="1"
145
+ id="stop2934" />
146
+ </linearGradient>
147
+ <linearGradient
148
+ inkscape:collect="always"
149
+ xlink:href="#linearGradient2508"
150
+ id="linearGradient2382"
151
+ x1="252"
152
+ y1="523.33331"
153
+ x2="751.33331"
154
+ y2="686.66663"
155
+ gradientUnits="userSpaceOnUse"
156
+ gradientTransform="matrix(0.29064823,0,0,0.29032343,184.62491,155.61232)" />
157
+ <linearGradient
158
+ inkscape:collect="always"
159
+ xlink:href="#linearGradient2930"
160
+ id="linearGradient2944"
161
+ x1="396.74344"
162
+ y1="487.85074"
163
+ x2="465.33133"
164
+ y2="867.33136"
165
+ gradientUnits="userSpaceOnUse"
166
+ gradientTransform="matrix(0.23514766,0,0,0.23515269,197.11895,194.51824)" />
167
+ <linearGradient
168
+ inkscape:collect="always"
169
+ xlink:href="#linearGradient3392"
170
+ id="linearGradient3398"
171
+ x1="458.6149"
172
+ y1="105.43819"
173
+ x2="464.21469"
174
+ y2="248.97305"
175
+ gradientUnits="userSpaceOnUse"
176
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,400,200)" />
177
+ <linearGradient
178
+ id="linearGradient3392">
179
+ <stop
180
+ style="stop-color:#ff4040;stop-opacity:1;"
181
+ offset="0"
182
+ id="stop3394" />
183
+ <stop
184
+ style="stop-color:#4040ff;stop-opacity:1;"
185
+ offset="1"
186
+ id="stop3396" />
187
+ </linearGradient>
188
+ <linearGradient
189
+ inkscape:collect="always"
190
+ xlink:href="#linearGradient3037"
191
+ id="linearGradient3390"
192
+ x1="385.03464"
193
+ y1="184.11929"
194
+ x2="499.04916"
195
+ y2="184.11929"
196
+ gradientUnits="userSpaceOnUse"
197
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,400,200)" />
198
+ <linearGradient
199
+ id="linearGradient3037">
200
+ <stop
201
+ style="stop-color:#ffffff;stop-opacity:1;"
202
+ offset="0"
203
+ id="stop3039" />
204
+ <stop
205
+ style="stop-color:#d0b090;stop-opacity:1"
206
+ offset="1"
207
+ id="stop3041" />
208
+ </linearGradient>
209
+ <linearGradient
210
+ inkscape:collect="always"
211
+ xlink:href="#linearGradient3037"
212
+ id="linearGradient3388"
213
+ x1="259.42661"
214
+ y1="345.1275"
215
+ x2="642.65881"
216
+ y2="345.1275"
217
+ gradientUnits="userSpaceOnUse"
218
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,400,200)" />
219
+ <linearGradient
220
+ inkscape:collect="always"
221
+ xlink:href="#linearGradient3037"
222
+ id="linearGradient3331"
223
+ gradientUnits="userSpaceOnUse"
224
+ x1="425.69217"
225
+ y1="321.0997"
226
+ x2="733.96295"
227
+ y2="321.0997" />
228
+ <linearGradient
229
+ inkscape:collect="always"
230
+ xlink:href="#linearGradient3037"
231
+ id="linearGradient3323"
232
+ x1="425.69217"
233
+ y1="321.0997"
234
+ x2="733.96295"
235
+ y2="321.0997"
236
+ gradientUnits="userSpaceOnUse" />
237
+ <linearGradient
238
+ inkscape:collect="always"
239
+ xlink:href="#linearGradient3404"
240
+ id="linearGradient3298"
241
+ x1="303.73691"
242
+ y1="691.15222"
243
+ x2="679.99005"
244
+ y2="788.88568"
245
+ gradientUnits="userSpaceOnUse" />
246
+ <linearGradient
247
+ id="linearGradient3404">
248
+ <stop
249
+ id="stop3406"
250
+ offset="0"
251
+ style="stop-color:#ffffff;stop-opacity:1;" />
252
+ <stop
253
+ id="stop3408"
254
+ offset="1"
255
+ style="stop-color:#80ff00;stop-opacity:1;" />
256
+ </linearGradient>
257
+ <linearGradient
258
+ inkscape:collect="always"
259
+ xlink:href="#linearGradient3037"
260
+ id="linearGradient3321"
261
+ x1="486.96875"
262
+ y1="528.25"
263
+ x2="798"
264
+ y2="528.25"
265
+ gradientUnits="userSpaceOnUse"
266
+ gradientTransform="matrix(0.17692252,0,0,0.18069943,430.13607,240.65019)" />
267
+ <linearGradient
268
+ inkscape:collect="always"
269
+ xlink:href="#linearGradient3037"
270
+ id="linearGradient3329"
271
+ gradientUnits="userSpaceOnUse"
272
+ gradientTransform="matrix(0.15368023,0,0,0.14162492,464.49737,238.93879)"
273
+ x1="486.96875"
274
+ y1="528.25"
275
+ x2="798"
276
+ y2="528.25" />
277
+ <linearGradient
278
+ inkscape:collect="always"
279
+ xlink:href="#linearGradient3404"
280
+ id="linearGradient3306"
281
+ x1="602.73309"
282
+ y1="849.21295"
283
+ x2="363.14337"
284
+ y2="533.09149"
285
+ gradientUnits="userSpaceOnUse" />
286
+ <linearGradient
287
+ inkscape:collect="always"
288
+ xlink:href="#linearGradient3037"
289
+ id="linearGradient3352"
290
+ x1="8.6666679"
291
+ y1="251.29697"
292
+ x2="282.04749"
293
+ y2="251.29697"
294
+ gradientUnits="userSpaceOnUse"
295
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,409.15872,219.93368)" />
296
+ <linearGradient
297
+ inkscape:collect="always"
298
+ xlink:href="#linearGradient3037"
299
+ id="linearGradient3354"
300
+ x1="6.0974813"
301
+ y1="295.18372"
302
+ x2="279.49164"
303
+ y2="295.18372"
304
+ gradientUnits="userSpaceOnUse"
305
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,410.77496,225.32114)" />
306
+ <linearGradient
307
+ inkscape:collect="always"
308
+ xlink:href="#linearGradient3037"
309
+ id="linearGradient3362"
310
+ gradientUnits="userSpaceOnUse"
311
+ x1="425.69217"
312
+ y1="321.0997"
313
+ x2="733.96295"
314
+ y2="321.0997" />
315
+ <linearGradient
316
+ inkscape:collect="always"
317
+ xlink:href="#linearGradient3037"
318
+ id="linearGradient3360"
319
+ gradientUnits="userSpaceOnUse"
320
+ gradientTransform="matrix(0.15368023,0,0,0.17242857,332.51026,242.91979)"
321
+ x1="486.96875"
322
+ y1="528.25"
323
+ x2="798"
324
+ y2="528.25" />
325
+ <linearGradient
326
+ id="linearGradient4087">
327
+ <stop
328
+ style="stop-color:#808080;stop-opacity:1;"
329
+ offset="0"
330
+ id="stop4089" />
331
+ <stop
332
+ style="stop-color:#ffff40;stop-opacity:1;"
333
+ offset="1"
334
+ id="stop4091" />
335
+ </linearGradient>
336
+ <linearGradient
337
+ id="linearGradient3099">
338
+ <stop
339
+ style="stop-color:#ffffff;stop-opacity:1"
340
+ offset="0"
341
+ id="stop3101" />
342
+ <stop
343
+ style="stop-color:#d0b090;stop-opacity:1"
344
+ offset="1"
345
+ id="stop3103" />
346
+ </linearGradient>
347
+ <linearGradient
348
+ id="linearGradient4071">
349
+ <stop
350
+ style="stop-color:#808080;stop-opacity:1;"
351
+ offset="0"
352
+ id="stop4073" />
353
+ <stop
354
+ style="stop-color:#ff4040;stop-opacity:1;"
355
+ offset="1"
356
+ id="stop4075" />
357
+ </linearGradient>
358
+ <linearGradient
359
+ id="linearGradient2908">
360
+ <stop
361
+ style="stop-color:#808080;stop-opacity:1;"
362
+ offset="0"
363
+ id="stop2910" />
364
+ <stop
365
+ style="stop-color:#4040ff;stop-opacity:1;"
366
+ offset="1"
367
+ id="stop2912" />
368
+ </linearGradient>
369
+ <linearGradient
370
+ inkscape:collect="always"
371
+ xlink:href="#linearGradient2908"
372
+ id="linearGradient7002"
373
+ gradientUnits="userSpaceOnUse"
374
+ gradientTransform="matrix(0.1366192,0,0,0.17563497,635.47577,189.5527)"
375
+ x1="439.21051"
376
+ y1="778.75781"
377
+ x2="358.42087"
378
+ y2="144.51556" />
379
+ <linearGradient
380
+ inkscape:collect="always"
381
+ xlink:href="#linearGradient4071"
382
+ id="linearGradient7004"
383
+ gradientUnits="userSpaceOnUse"
384
+ gradientTransform="matrix(0.20913212,0,0,0.2044384,610.07365,196.89456)"
385
+ x1="313.56229"
386
+ y1="578.41479"
387
+ x2="153.28476"
388
+ y2="785.55286" />
389
+ <linearGradient
390
+ inkscape:collect="always"
391
+ xlink:href="#linearGradient3099"
392
+ id="linearGradient7006"
393
+ gradientUnits="userSpaceOnUse"
394
+ gradientTransform="matrix(0.20913212,0,0,0.2044384,612.04534,200.74947)"
395
+ x1="192.93016"
396
+ y1="788.82587"
397
+ x2="404.99326"
398
+ y2="835.96631" />
399
+ <linearGradient
400
+ inkscape:collect="always"
401
+ xlink:href="#linearGradient4087"
402
+ id="linearGradient7008"
403
+ gradientUnits="userSpaceOnUse"
404
+ gradientTransform="matrix(0.20834537,-0.01771845,0.01812527,0.20366903,619.48745,204.21896)"
405
+ x1="563.04547"
406
+ y1="790.1297"
407
+ x2="393.39581"
408
+ y2="883.63776" />
409
+ <linearGradient
410
+ inkscape:collect="always"
411
+ xlink:href="#linearGradient3099"
412
+ id="linearGradient7010"
413
+ gradientUnits="userSpaceOnUse"
414
+ x1="156.27754"
415
+ y1="889.14215"
416
+ x2="588.54163"
417
+ y2="889.14215" />
418
+ <linearGradient
419
+ inkscape:collect="always"
420
+ xlink:href="#linearGradient2816-6"
421
+ id="linearGradient2822-2"
422
+ x1="708.40527"
423
+ y1="708.24023"
424
+ x2="726.89935"
425
+ y2="767.16583"
426
+ gradientUnits="userSpaceOnUse"
427
+ gradientTransform="matrix(0.12834949,0,0,0.13258606,781.30313,248.05566)" />
428
+ <linearGradient
429
+ id="linearGradient2816-6">
430
+ <stop
431
+ style="stop-color:#ff0000;stop-opacity:1;"
432
+ offset="0"
433
+ id="stop2818-0" />
434
+ <stop
435
+ style="stop-color:#ff7000;stop-opacity:1;"
436
+ offset="1"
437
+ id="stop2820-7" />
438
+ </linearGradient>
439
+ <linearGradient
440
+ inkscape:collect="always"
441
+ xlink:href="#linearGradient2856"
442
+ id="linearGradient2862"
443
+ x1="333.5834"
444
+ y1="655.8938"
445
+ x2="122.61045"
446
+ y2="615.47394"
447
+ gradientUnits="userSpaceOnUse"
448
+ gradientTransform="matrix(-0.07814514,0.2147984,0.2147984,0.07814514,740.0721,237.77147)" />
449
+ <linearGradient
450
+ id="linearGradient2856">
451
+ <stop
452
+ style="stop-color:#808080;stop-opacity:1;"
453
+ offset="0"
454
+ id="stop2858" />
455
+ <stop
456
+ style="stop-color:#ff8040;stop-opacity:1;"
457
+ offset="1"
458
+ id="stop2860" />
459
+ </linearGradient>
460
+ <linearGradient
461
+ inkscape:collect="always"
462
+ xlink:href="#linearGradient2820"
463
+ id="linearGradient2826"
464
+ x1="482.26068"
465
+ y1="828.54749"
466
+ x2="661.53931"
467
+ y2="110.39577"
468
+ gradientUnits="userSpaceOnUse"
469
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,799.99999,205.33333)" />
470
+ <linearGradient
471
+ id="linearGradient2820">
472
+ <stop
473
+ style="stop-color:#808080;stop-opacity:1;"
474
+ offset="0"
475
+ id="stop2822" />
476
+ <stop
477
+ style="stop-color:#ff4040;stop-opacity:1;"
478
+ offset="1"
479
+ id="stop2824" />
480
+ </linearGradient>
481
+ <linearGradient
482
+ inkscape:collect="always"
483
+ xlink:href="#linearGradient2804-3"
484
+ id="linearGradient2802"
485
+ x1="330.99365"
486
+ y1="329.03958"
487
+ x2="244.44389"
488
+ y2="252.75464"
489
+ gradientUnits="userSpaceOnUse"
490
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,799.99999,200)" />
491
+ <linearGradient
492
+ id="linearGradient2804-3">
493
+ <stop
494
+ id="stop2806-7"
495
+ offset="0"
496
+ style="stop-color:#808080;stop-opacity:1;" />
497
+ <stop
498
+ id="stop2808-1"
499
+ offset="1"
500
+ style="stop-color:#40ff80;stop-opacity:1;" />
501
+ </linearGradient>
502
+ <linearGradient
503
+ inkscape:collect="always"
504
+ xlink:href="#linearGradient2672"
505
+ id="linearGradient2319"
506
+ gradientUnits="userSpaceOnUse"
507
+ x1="97.114487"
508
+ y1="55.559166"
509
+ x2="755.40845"
510
+ y2="825.62524"
511
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,799.99999,200.91429)" />
512
+ <linearGradient
513
+ id="linearGradient2672">
514
+ <stop
515
+ style="stop-color:#ffffff;stop-opacity:1;"
516
+ offset="0"
517
+ id="stop2674" />
518
+ <stop
519
+ style="stop-color:#d0b090;stop-opacity:1"
520
+ offset="1"
521
+ id="stop2676" />
522
+ </linearGradient>
523
+ <linearGradient
524
+ inkscape:collect="always"
525
+ xlink:href="#linearGradient2977"
526
+ id="linearGradient2993"
527
+ x1="86.188515"
528
+ y1="245.65826"
529
+ x2="192.44601"
530
+ y2="150.66571"
531
+ gradientUnits="userSpaceOnUse"
532
+ gradientTransform="matrix(-0.17852457,-0.05376615,-0.05921966,0.18238952,1205.3719,271.75522)" />
533
+ <linearGradient
534
+ id="linearGradient2977">
535
+ <stop
536
+ style="stop-color:#808080;stop-opacity:1;"
537
+ offset="0"
538
+ id="stop2979" />
539
+ <stop
540
+ style="stop-color:#40ff40;stop-opacity:1;"
541
+ offset="1"
542
+ id="stop2981" />
543
+ </linearGradient>
544
+ <linearGradient
545
+ inkscape:collect="always"
546
+ xlink:href="#linearGradient3099-6"
547
+ id="linearGradient2292"
548
+ gradientUnits="userSpaceOnUse"
549
+ x1="118.5958"
550
+ y1="579.19678"
551
+ x2="232.82404"
552
+ y2="831.39819"
553
+ gradientTransform="matrix(0.21569052,0,0,0.21556763,1010.2916,211.39172)" />
554
+ <linearGradient
555
+ id="linearGradient3099-6">
556
+ <stop
557
+ style="stop-color:#ffffff;stop-opacity:1"
558
+ offset="0"
559
+ id="stop3101-9" />
560
+ <stop
561
+ style="stop-color:#d0b090;stop-opacity:1"
562
+ offset="1"
563
+ id="stop3103-6" />
564
+ </linearGradient>
565
+ <linearGradient
566
+ inkscape:collect="always"
567
+ xlink:href="#linearGradient3099-6"
568
+ id="linearGradient2975"
569
+ x1="432.66666"
570
+ y1="411.33334"
571
+ x2="634.66669"
572
+ y2="478"
573
+ gradientUnits="userSpaceOnUse"
574
+ gradientTransform="matrix(-0.04270766,-0.14903139,-0.1493728,0.04835369,1198.3143,408.36197)" />
575
+ <linearGradient
576
+ inkscape:collect="always"
577
+ xlink:href="#linearGradient2977"
578
+ id="linearGradient2983"
579
+ x1="266.05432"
580
+ y1="588.67303"
581
+ x2="548.09802"
582
+ y2="789.98169"
583
+ gradientUnits="userSpaceOnUse"
584
+ gradientTransform="matrix(-0.04270766,-0.14903139,-0.1493728,0.04835369,1198.3143,408.36197)" />
585
+ <linearGradient
586
+ inkscape:collect="always"
587
+ xlink:href="#linearGradient3224"
588
+ id="linearGradient3230"
589
+ x1="458.86057"
590
+ y1="854.13947"
591
+ x2="314.90103"
592
+ y2="408.66223"
593
+ gradientUnits="userSpaceOnUse"
594
+ gradientTransform="matrix(0.22590286,0,0,0.22574012,991.14533,166.43085)" />
595
+ <linearGradient
596
+ id="linearGradient3224">
597
+ <stop
598
+ style="stop-color:#808080;stop-opacity:1;"
599
+ offset="0"
600
+ id="stop3226" />
601
+ <stop
602
+ style="stop-color:yellow;stop-opacity:1;"
603
+ offset="1"
604
+ id="stop3228" />
605
+ </linearGradient>
606
+ <linearGradient
607
+ inkscape:collect="always"
608
+ xlink:href="#linearGradient3237"
609
+ id="linearGradient2294"
610
+ gradientUnits="userSpaceOnUse"
611
+ gradientTransform="matrix(-0.20867612,0,0,0.20778578,1121.3735,184.09523)"
612
+ x1="368.841"
613
+ y1="636.23065"
614
+ x2="25.697485"
615
+ y2="818.42755" />
616
+ <linearGradient
617
+ id="linearGradient3237">
618
+ <stop
619
+ id="stop3239"
620
+ offset="0"
621
+ style="stop-color:#408040;stop-opacity:1;" />
622
+ <stop
623
+ id="stop3241"
624
+ offset="1"
625
+ style="stop-color:#ff80ff;stop-opacity:1;" />
626
+ </linearGradient>
627
+ <linearGradient
628
+ inkscape:collect="always"
629
+ xlink:href="#linearGradient3070"
630
+ id="linearGradient3243"
631
+ gradientUnits="userSpaceOnUse"
632
+ x1="298.66666"
633
+ y1="435"
634
+ x2="550.18915"
635
+ y2="468.76749" />
636
+ <linearGradient
637
+ id="linearGradient3070">
638
+ <stop
639
+ style="stop-color:#ffffff;stop-opacity:1;"
640
+ offset="0"
641
+ id="stop3072" />
642
+ <stop
643
+ style="stop-color:#d0b090;stop-opacity:1"
644
+ offset="1"
645
+ id="stop3074" />
646
+ </linearGradient>
647
+ <linearGradient
648
+ inkscape:collect="always"
649
+ xlink:href="#linearGradient3070"
650
+ id="linearGradient2296"
651
+ gradientUnits="userSpaceOnUse"
652
+ gradientTransform="matrix(0.22590286,0,0,0.22574012,989.07824,183.87663)"
653
+ x1="300.27295"
654
+ y1="623.78223"
655
+ x2="774.0462"
656
+ y2="764.89874" />
657
+ <linearGradient
658
+ inkscape:collect="always"
659
+ xlink:href="#linearGradient2816-0"
660
+ id="linearGradient2822-1"
661
+ x1="708.40527"
662
+ y1="708.24023"
663
+ x2="726.89935"
664
+ y2="767.16583"
665
+ gradientUnits="userSpaceOnUse"
666
+ gradientTransform="matrix(0.22126766,0,0,0.22857143,11.743453,0.38094777)" />
667
+ <linearGradient
668
+ id="linearGradient2816-0">
669
+ <stop
670
+ style="stop-color:#ff0000;stop-opacity:1;"
671
+ offset="0"
672
+ id="stop2818-9" />
673
+ <stop
674
+ style="stop-color:#ff7000;stop-opacity:1;"
675
+ offset="1"
676
+ id="stop2820-73" />
677
+ </linearGradient>
678
+ <linearGradient
679
+ inkscape:collect="always"
680
+ xlink:href="#linearGradient2804-1"
681
+ id="linearGradient2810-9"
682
+ x1="508.33115"
683
+ y1="392.78183"
684
+ x2="477.68985"
685
+ y2="467.27161"
686
+ gradientUnits="userSpaceOnUse"
687
+ gradientTransform="matrix(0.22126766,0,0,0.22857143,0.68007341,-2.2285156e-6)" />
688
+ <linearGradient
689
+ id="linearGradient2804-1">
690
+ <stop
691
+ style="stop-color:#808080;stop-opacity:1;"
692
+ offset="0"
693
+ id="stop2806-2" />
694
+ <stop
695
+ style="stop-color:#ff0000;stop-opacity:0;"
696
+ offset="1"
697
+ id="stop2808-6" />
698
+ </linearGradient>
699
+ <linearGradient
700
+ inkscape:collect="always"
701
+ xlink:href="#linearGradient2804-1"
702
+ id="linearGradient2812-2"
703
+ x1="354.75922"
704
+ y1="397.64706"
705
+ x2="386.78885"
706
+ y2="451.85861"
707
+ gradientUnits="userSpaceOnUse"
708
+ gradientTransform="matrix(0.22126766,0,0,0.22857143,0.68007341,-2.2285156e-6)" />
709
+ <linearGradient
710
+ inkscape:collect="always"
711
+ xlink:href="#linearGradient2266-6"
712
+ id="linearGradient2695-6"
713
+ x1="313.33334"
714
+ y1="558.33331"
715
+ x2="726.66669"
716
+ y2="558.33331"
717
+ gradientUnits="userSpaceOnUse" />
718
+ <linearGradient
719
+ id="linearGradient2266-6">
720
+ <stop
721
+ style="stop-color:#000000;stop-opacity:1;"
722
+ offset="0"
723
+ id="stop2268-5" />
724
+ <stop
725
+ style="stop-color:#907050;stop-opacity:1;"
726
+ offset="1"
727
+ id="stop2270-0" />
728
+ </linearGradient>
729
+ <linearGradient
730
+ inkscape:collect="always"
731
+ xlink:href="#linearGradient2508-5"
732
+ id="linearGradient2895-6"
733
+ gradientUnits="userSpaceOnUse"
734
+ gradientTransform="matrix(-0.23514766,0,0,0.23515269,410.38925,-2.710449)"
735
+ x1="247.19395"
736
+ y1="571.16028"
737
+ x2="408.68234"
738
+ y2="606.51562" />
739
+ <linearGradient
740
+ id="linearGradient2508-5">
741
+ <stop
742
+ style="stop-color:black;stop-opacity:1;"
743
+ offset="0"
744
+ id="stop2510-2" />
745
+ <stop
746
+ style="stop-color:#907050;stop-opacity:1;"
747
+ offset="1"
748
+ id="stop2512-4" />
749
+ </linearGradient>
750
+ <linearGradient
751
+ inkscape:collect="always"
752
+ xlink:href="#linearGradient2508-5"
753
+ id="linearGradient2891-1"
754
+ x1="247.19395"
755
+ y1="571.16028"
756
+ x2="408.68234"
757
+ y2="606.51562"
758
+ gradientUnits="userSpaceOnUse"
759
+ gradientTransform="matrix(0.23514766,0,0,0.23515269,195.45619,-4.373229)" />
760
+ <linearGradient
761
+ inkscape:collect="always"
762
+ xlink:href="#linearGradient2930-2"
763
+ id="linearGradient2936-4"
764
+ x1="410.92975"
765
+ y1="131.56165"
766
+ x2="899.82593"
767
+ y2="1051.2655"
768
+ gradientUnits="userSpaceOnUse"
769
+ gradientTransform="matrix(0.23514766,0,0,0.23515269,197.11894,-5.481759)" />
770
+ <linearGradient
771
+ id="linearGradient2930-2">
772
+ <stop
773
+ style="stop-color:#a000a0;stop-opacity:1;"
774
+ offset="0"
775
+ id="stop2932-0" />
776
+ <stop
777
+ style="stop-color:#0000a0;stop-opacity:1;"
778
+ offset="1"
779
+ id="stop2934-1" />
780
+ </linearGradient>
781
+ <linearGradient
782
+ inkscape:collect="always"
783
+ xlink:href="#linearGradient2508-5"
784
+ id="linearGradient2382-0"
785
+ x1="252"
786
+ y1="523.33331"
787
+ x2="751.33331"
788
+ y2="686.66663"
789
+ gradientUnits="userSpaceOnUse"
790
+ gradientTransform="matrix(0.29064823,0,0,0.29032343,184.6249,-44.387679)" />
791
+ <linearGradient
792
+ inkscape:collect="always"
793
+ xlink:href="#linearGradient2930-2"
794
+ id="linearGradient2944-3"
795
+ x1="396.74344"
796
+ y1="487.85074"
797
+ x2="465.33133"
798
+ y2="867.33136"
799
+ gradientUnits="userSpaceOnUse"
800
+ gradientTransform="matrix(0.23514766,0,0,0.23515269,197.11894,-5.481759)" />
801
+ <linearGradient
802
+ inkscape:collect="always"
803
+ xlink:href="#linearGradient3392-0"
804
+ id="linearGradient3398-1"
805
+ x1="458.6149"
806
+ y1="105.43819"
807
+ x2="464.21469"
808
+ y2="248.97305"
809
+ gradientUnits="userSpaceOnUse"
810
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,400.00001,2.1269531e-5)" />
811
+ <linearGradient
812
+ id="linearGradient3392-0">
813
+ <stop
814
+ style="stop-color:#c00000;stop-opacity:1;"
815
+ offset="0"
816
+ id="stop3394-2" />
817
+ <stop
818
+ style="stop-color:#0000c0;stop-opacity:1;"
819
+ offset="1"
820
+ id="stop3396-5" />
821
+ </linearGradient>
822
+ <linearGradient
823
+ inkscape:collect="always"
824
+ xlink:href="#linearGradient3037-6"
825
+ id="linearGradient3390-8"
826
+ x1="385.03464"
827
+ y1="184.11929"
828
+ x2="499.04916"
829
+ y2="184.11929"
830
+ gradientUnits="userSpaceOnUse"
831
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,400.00001,2.1269531e-5)" />
832
+ <linearGradient
833
+ id="linearGradient3037-6">
834
+ <stop
835
+ style="stop-color:black;stop-opacity:1;"
836
+ offset="0"
837
+ id="stop3039-3" />
838
+ <stop
839
+ style="stop-color:#907050;stop-opacity:1;"
840
+ offset="1"
841
+ id="stop3041-2" />
842
+ </linearGradient>
843
+ <linearGradient
844
+ inkscape:collect="always"
845
+ xlink:href="#linearGradient3037-6"
846
+ id="linearGradient3388-0"
847
+ x1="259.42661"
848
+ y1="345.1275"
849
+ x2="642.65881"
850
+ y2="345.1275"
851
+ gradientUnits="userSpaceOnUse"
852
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,400.00001,2.1269531e-5)" />
853
+ <linearGradient
854
+ inkscape:collect="always"
855
+ xlink:href="#linearGradient3037-6"
856
+ id="linearGradient3331-3"
857
+ gradientUnits="userSpaceOnUse"
858
+ x1="425.69217"
859
+ y1="321.0997"
860
+ x2="733.96295"
861
+ y2="321.0997" />
862
+ <linearGradient
863
+ inkscape:collect="always"
864
+ xlink:href="#linearGradient3037-6"
865
+ id="linearGradient3323-1"
866
+ x1="425.69217"
867
+ y1="321.0997"
868
+ x2="733.96295"
869
+ y2="321.0997"
870
+ gradientUnits="userSpaceOnUse" />
871
+ <linearGradient
872
+ inkscape:collect="always"
873
+ xlink:href="#linearGradient3404-2"
874
+ id="linearGradient3298-9"
875
+ x1="303.73691"
876
+ y1="691.15222"
877
+ x2="679.99005"
878
+ y2="788.88568"
879
+ gradientUnits="userSpaceOnUse" />
880
+ <linearGradient
881
+ id="linearGradient3404-2">
882
+ <stop
883
+ id="stop3406-6"
884
+ offset="0"
885
+ style="stop-color:#808080;stop-opacity:1;" />
886
+ <stop
887
+ id="stop3408-6"
888
+ offset="1"
889
+ style="stop-color:#408000;stop-opacity:1;" />
890
+ </linearGradient>
891
+ <linearGradient
892
+ inkscape:collect="always"
893
+ xlink:href="#linearGradient3037-6"
894
+ id="linearGradient3321-7"
895
+ x1="486.96875"
896
+ y1="528.25"
897
+ x2="798"
898
+ y2="528.25"
899
+ gradientUnits="userSpaceOnUse"
900
+ gradientTransform="matrix(0.17692252,0,0,0.18069943,430.13601,40.650211)" />
901
+ <linearGradient
902
+ inkscape:collect="always"
903
+ xlink:href="#linearGradient3037-6"
904
+ id="linearGradient3329-4"
905
+ gradientUnits="userSpaceOnUse"
906
+ gradientTransform="matrix(0.15368023,0,0,0.14162492,464.49731,38.938811)"
907
+ x1="486.96875"
908
+ y1="528.25"
909
+ x2="798"
910
+ y2="528.25" />
911
+ <linearGradient
912
+ inkscape:collect="always"
913
+ xlink:href="#linearGradient3404-2"
914
+ id="linearGradient3306-1"
915
+ x1="602.73309"
916
+ y1="849.21295"
917
+ x2="363.14337"
918
+ y2="533.09149"
919
+ gradientUnits="userSpaceOnUse" />
920
+ <linearGradient
921
+ inkscape:collect="always"
922
+ xlink:href="#linearGradient3037-6"
923
+ id="linearGradient3352-3"
924
+ x1="8.6666679"
925
+ y1="251.29697"
926
+ x2="282.04749"
927
+ y2="251.29697"
928
+ gradientUnits="userSpaceOnUse"
929
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,409.15871,19.933701)" />
930
+ <linearGradient
931
+ inkscape:collect="always"
932
+ xlink:href="#linearGradient3037-6"
933
+ id="linearGradient3354-1"
934
+ x1="6.0974813"
935
+ y1="295.18372"
936
+ x2="279.49164"
937
+ y2="295.18372"
938
+ gradientUnits="userSpaceOnUse"
939
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,410.77491,25.321161)" />
940
+ <linearGradient
941
+ inkscape:collect="always"
942
+ xlink:href="#linearGradient3037-6"
943
+ id="linearGradient3362-4"
944
+ gradientUnits="userSpaceOnUse"
945
+ x1="425.69217"
946
+ y1="321.0997"
947
+ x2="733.96295"
948
+ y2="321.0997" />
949
+ <linearGradient
950
+ inkscape:collect="always"
951
+ xlink:href="#linearGradient3037-6"
952
+ id="linearGradient3360-9"
953
+ gradientUnits="userSpaceOnUse"
954
+ gradientTransform="matrix(0.15368023,0,0,0.17242857,332.51021,42.919811)"
955
+ x1="486.96875"
956
+ y1="528.25"
957
+ x2="798"
958
+ y2="528.25" />
959
+ <linearGradient
960
+ inkscape:collect="always"
961
+ xlink:href="#linearGradient4087-0"
962
+ id="linearGradient4098"
963
+ gradientUnits="userSpaceOnUse"
964
+ x1="563.04547"
965
+ y1="790.1297"
966
+ x2="393.39581"
967
+ y2="883.63776"
968
+ gradientTransform="matrix(0.20834537,-0.01771845,0.01812527,0.20366903,619.48739,4.2189583)" />
969
+ <linearGradient
970
+ id="linearGradient4087-0">
971
+ <stop
972
+ style="stop-color:#000000;stop-opacity:1;"
973
+ offset="0"
974
+ id="stop4089-3" />
975
+ <stop
976
+ style="stop-color:#c0c000;stop-opacity:1;"
977
+ offset="1"
978
+ id="stop4091-7" />
979
+ </linearGradient>
980
+ <linearGradient
981
+ inkscape:collect="always"
982
+ xlink:href="#linearGradient3099-7"
983
+ id="linearGradient4106"
984
+ x1="192.93016"
985
+ y1="788.82587"
986
+ x2="404.99326"
987
+ y2="835.96631"
988
+ gradientUnits="userSpaceOnUse"
989
+ gradientTransform="matrix(0.20913212,0,0,0.2044384,612.04529,0.74946835)" />
990
+ <linearGradient
991
+ id="linearGradient3099-7">
992
+ <stop
993
+ style="stop-color:#000000;stop-opacity:1;"
994
+ offset="0"
995
+ id="stop3101-8" />
996
+ <stop
997
+ style="stop-color:#907050;stop-opacity:1;"
998
+ offset="1"
999
+ id="stop3103-7" />
1000
+ </linearGradient>
1001
+ <linearGradient
1002
+ inkscape:collect="always"
1003
+ xlink:href="#linearGradient4071-7"
1004
+ id="linearGradient4077"
1005
+ x1="313.56229"
1006
+ y1="578.41479"
1007
+ x2="153.28476"
1008
+ y2="785.55286"
1009
+ gradientUnits="userSpaceOnUse"
1010
+ gradientTransform="matrix(0.20913212,0,0,0.2044384,610.07359,-3.1054417)" />
1011
+ <linearGradient
1012
+ id="linearGradient4071-7">
1013
+ <stop
1014
+ style="stop-color:#000000;stop-opacity:1;"
1015
+ offset="0"
1016
+ id="stop4073-4" />
1017
+ <stop
1018
+ style="stop-color:#c00000;stop-opacity:1;"
1019
+ offset="1"
1020
+ id="stop4075-3" />
1021
+ </linearGradient>
1022
+ <linearGradient
1023
+ inkscape:collect="always"
1024
+ xlink:href="#linearGradient2908-1"
1025
+ id="linearGradient2914"
1026
+ x1="439.21051"
1027
+ y1="778.75781"
1028
+ x2="358.42087"
1029
+ y2="144.51556"
1030
+ gradientUnits="userSpaceOnUse"
1031
+ gradientTransform="matrix(0.1366192,0,0,0.17563497,635.47569,-10.447302)" />
1032
+ <linearGradient
1033
+ id="linearGradient2908-1">
1034
+ <stop
1035
+ style="stop-color:#000000;stop-opacity:1;"
1036
+ offset="0"
1037
+ id="stop2910-3" />
1038
+ <stop
1039
+ style="stop-color:#0000c0;stop-opacity:1;"
1040
+ offset="1"
1041
+ id="stop2912-0" />
1042
+ </linearGradient>
1043
+ <linearGradient
1044
+ inkscape:collect="always"
1045
+ xlink:href="#linearGradient3099-7"
1046
+ id="linearGradient4056"
1047
+ x1="156.27754"
1048
+ y1="889.14215"
1049
+ x2="588.54163"
1050
+ y2="889.14215"
1051
+ gradientUnits="userSpaceOnUse" />
1052
+ <linearGradient
1053
+ inkscape:collect="always"
1054
+ xlink:href="#linearGradient2816-8"
1055
+ id="linearGradient2822-3"
1056
+ x1="708.40527"
1057
+ y1="708.24023"
1058
+ x2="726.89935"
1059
+ y2="767.16583"
1060
+ gradientUnits="userSpaceOnUse"
1061
+ gradientTransform="matrix(0.12834949,0,0,0.13258606,781.58888,48.159912)" />
1062
+ <linearGradient
1063
+ id="linearGradient2816-8">
1064
+ <stop
1065
+ style="stop-color:#ff0000;stop-opacity:1;"
1066
+ offset="0"
1067
+ id="stop2818-7" />
1068
+ <stop
1069
+ style="stop-color:#ff7000;stop-opacity:1;"
1070
+ offset="1"
1071
+ id="stop2820-5" />
1072
+ </linearGradient>
1073
+ <linearGradient
1074
+ inkscape:collect="always"
1075
+ xlink:href="#linearGradient2856-4"
1076
+ id="linearGradient2862-4"
1077
+ x1="333.5834"
1078
+ y1="655.8938"
1079
+ x2="122.61045"
1080
+ y2="615.47394"
1081
+ gradientUnits="userSpaceOnUse"
1082
+ gradientTransform="matrix(-0.07814514,0.2147984,0.2147984,0.07814514,740.07211,37.771472)" />
1083
+ <linearGradient
1084
+ id="linearGradient2856-4">
1085
+ <stop
1086
+ style="stop-color:#000000;stop-opacity:1;"
1087
+ offset="0"
1088
+ id="stop2858-9" />
1089
+ <stop
1090
+ style="stop-color:#804000;stop-opacity:1;"
1091
+ offset="1"
1092
+ id="stop2860-3" />
1093
+ </linearGradient>
1094
+ <linearGradient
1095
+ inkscape:collect="always"
1096
+ xlink:href="#linearGradient2820-8"
1097
+ id="linearGradient2826-8"
1098
+ x1="482.26068"
1099
+ y1="828.54749"
1100
+ x2="661.53931"
1101
+ y2="110.39577"
1102
+ gradientUnits="userSpaceOnUse"
1103
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,800,5.3333316)" />
1104
+ <linearGradient
1105
+ id="linearGradient2820-8">
1106
+ <stop
1107
+ style="stop-color:#000000;stop-opacity:1;"
1108
+ offset="0"
1109
+ id="stop2822-8" />
1110
+ <stop
1111
+ style="stop-color:#c00000;stop-opacity:1;"
1112
+ offset="1"
1113
+ id="stop2824-7" />
1114
+ </linearGradient>
1115
+ <linearGradient
1116
+ inkscape:collect="always"
1117
+ xlink:href="#linearGradient2804-16"
1118
+ id="linearGradient2802-9"
1119
+ x1="330.99365"
1120
+ y1="329.03958"
1121
+ x2="244.44389"
1122
+ y2="252.75464"
1123
+ gradientUnits="userSpaceOnUse"
1124
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,800,1.572998e-6)" />
1125
+ <linearGradient
1126
+ id="linearGradient2804-16">
1127
+ <stop
1128
+ id="stop2806-9"
1129
+ offset="0"
1130
+ style="stop-color:#000000;stop-opacity:1;" />
1131
+ <stop
1132
+ id="stop2808-8"
1133
+ offset="1"
1134
+ style="stop-color:#008040;stop-opacity:1;" />
1135
+ </linearGradient>
1136
+ <linearGradient
1137
+ inkscape:collect="always"
1138
+ xlink:href="#linearGradient2672-9"
1139
+ id="linearGradient2319-0"
1140
+ gradientUnits="userSpaceOnUse"
1141
+ x1="97.114487"
1142
+ y1="55.559166"
1143
+ x2="755.40845"
1144
+ y2="825.62524"
1145
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,800,0.91429157)" />
1146
+ <linearGradient
1147
+ id="linearGradient2672-9">
1148
+ <stop
1149
+ style="stop-color:#000000;stop-opacity:1;"
1150
+ offset="0"
1151
+ id="stop2674-2" />
1152
+ <stop
1153
+ style="stop-color:#907050;stop-opacity:1;"
1154
+ offset="1"
1155
+ id="stop2676-9" />
1156
+ </linearGradient>
1157
+ <linearGradient
1158
+ inkscape:collect="always"
1159
+ xlink:href="#linearGradient2977-3"
1160
+ id="linearGradient2993-9"
1161
+ x1="86.188515"
1162
+ y1="245.65826"
1163
+ x2="192.44601"
1164
+ y2="150.66571"
1165
+ gradientUnits="userSpaceOnUse"
1166
+ gradientTransform="matrix(-0.17852457,-0.05376615,-0.05921966,0.18238951,1205.3719,71.755222)" />
1167
+ <linearGradient
1168
+ id="linearGradient2977-3">
1169
+ <stop
1170
+ style="stop-color:#000000;stop-opacity:1;"
1171
+ offset="0"
1172
+ id="stop2979-0" />
1173
+ <stop
1174
+ style="stop-color:#00c000;stop-opacity:1;"
1175
+ offset="1"
1176
+ id="stop2981-3" />
1177
+ </linearGradient>
1178
+ <linearGradient
1179
+ inkscape:collect="always"
1180
+ xlink:href="#linearGradient3070-6"
1181
+ id="linearGradient2292-2"
1182
+ gradientUnits="userSpaceOnUse"
1183
+ x1="118.5958"
1184
+ y1="579.19678"
1185
+ x2="232.82404"
1186
+ y2="831.39819"
1187
+ gradientTransform="matrix(0.21569052,0,0,0.21556762,1010.2916,11.391722)" />
1188
+ <linearGradient
1189
+ id="linearGradient3070-6">
1190
+ <stop
1191
+ style="stop-color:#000000;stop-opacity:1;"
1192
+ offset="0"
1193
+ id="stop3072-5" />
1194
+ <stop
1195
+ style="stop-color:#907050;stop-opacity:1;"
1196
+ offset="1"
1197
+ id="stop3074-9" />
1198
+ </linearGradient>
1199
+ <linearGradient
1200
+ inkscape:collect="always"
1201
+ xlink:href="#linearGradient3070-6"
1202
+ id="linearGradient2975-2"
1203
+ x1="432.66666"
1204
+ y1="411.33334"
1205
+ x2="634.66669"
1206
+ y2="478"
1207
+ gradientUnits="userSpaceOnUse"
1208
+ gradientTransform="matrix(-0.04270766,-0.14903138,-0.1493728,0.04835369,1198.3142,208.36197)" />
1209
+ <linearGradient
1210
+ inkscape:collect="always"
1211
+ xlink:href="#linearGradient2977-3"
1212
+ id="linearGradient2983-3"
1213
+ x1="266.05432"
1214
+ y1="588.67303"
1215
+ x2="548.09802"
1216
+ y2="789.98169"
1217
+ gradientUnits="userSpaceOnUse"
1218
+ gradientTransform="matrix(-0.04270766,-0.14903138,-0.1493728,0.04835369,1198.3142,208.36197)" />
1219
+ <linearGradient
1220
+ inkscape:collect="always"
1221
+ xlink:href="#linearGradient3224-8"
1222
+ id="linearGradient3230-7"
1223
+ x1="458.86057"
1224
+ y1="854.13947"
1225
+ x2="314.90103"
1226
+ y2="408.66223"
1227
+ gradientUnits="userSpaceOnUse"
1228
+ gradientTransform="matrix(0.22590286,0,0,0.22574011,991.14535,-33.569148)" />
1229
+ <linearGradient
1230
+ id="linearGradient3224-8">
1231
+ <stop
1232
+ style="stop-color:#000000;stop-opacity:1;"
1233
+ offset="0"
1234
+ id="stop3226-4" />
1235
+ <stop
1236
+ style="stop-color:#c0c000;stop-opacity:1;"
1237
+ offset="1"
1238
+ id="stop3228-7" />
1239
+ </linearGradient>
1240
+ <linearGradient
1241
+ inkscape:collect="always"
1242
+ xlink:href="#linearGradient3237-6"
1243
+ id="linearGradient2294-3"
1244
+ gradientUnits="userSpaceOnUse"
1245
+ gradientTransform="matrix(-0.20867612,0,0,0.20778578,1121.3734,-15.904768)"
1246
+ x1="368.841"
1247
+ y1="636.23065"
1248
+ x2="25.697485"
1249
+ y2="818.42755" />
1250
+ <linearGradient
1251
+ id="linearGradient3237-6">
1252
+ <stop
1253
+ id="stop3239-3"
1254
+ offset="0"
1255
+ style="stop-color:#008000;stop-opacity:1;" />
1256
+ <stop
1257
+ id="stop3241-6"
1258
+ offset="1"
1259
+ style="stop-color:#800080;stop-opacity:1;" />
1260
+ </linearGradient>
1261
+ <linearGradient
1262
+ inkscape:collect="always"
1263
+ xlink:href="#linearGradient3070-6"
1264
+ id="linearGradient3243-9"
1265
+ gradientUnits="userSpaceOnUse"
1266
+ x1="298.66666"
1267
+ y1="435"
1268
+ x2="550.18915"
1269
+ y2="468.76749" />
1270
+ <linearGradient
1271
+ inkscape:collect="always"
1272
+ xlink:href="#linearGradient3070-6"
1273
+ id="linearGradient2296-2"
1274
+ gradientUnits="userSpaceOnUse"
1275
+ gradientTransform="matrix(0.22590286,0,0,0.22574011,989.07826,-16.123368)"
1276
+ x1="300.27295"
1277
+ y1="623.78223"
1278
+ x2="774.0462"
1279
+ y2="764.89874" />
1280
+ </defs>
1281
+ <sodipodi:namedview
1282
+ id="base"
1283
+ pagecolor="#ffffff"
1284
+ bordercolor="#666666"
1285
+ borderopacity="1.0"
1286
+ gridtolerance="10000"
1287
+ guidetolerance="10"
1288
+ objecttolerance="10"
1289
+ inkscape:pageopacity="0.0"
1290
+ inkscape:pageshadow="2"
1291
+ inkscape:zoom="0.5"
1292
+ inkscape:cx="630.59969"
1293
+ inkscape:cy="287.76502"
1294
+ inkscape:document-units="px"
1295
+ inkscape:current-layer="svg2722"
1296
+ showgrid="false"
1297
+ inkscape:window-width="1566"
1298
+ inkscape:window-height="828"
1299
+ inkscape:window-x="247"
1300
+ inkscape:window-y="183"
1301
+ showguides="false"
1302
+ inkscape:window-maximized="0">
1303
+ <inkscape:grid
1304
+ type="xygrid"
1305
+ id="grid5039" />
1306
+ </sodipodi:namedview>
1307
+ <metadata
1308
+ id="metadata2727">
1309
+ <rdf:RDF>
1310
+ <cc:Work
1311
+ rdf:about="">
1312
+ <dc:format>image/svg+xml</dc:format>
1313
+ <dc:type
1314
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
1315
+ <dc:title></dc:title>
1316
+ </cc:Work>
1317
+ </rdf:RDF>
1318
+ </metadata>
1319
+ <g
1320
+ inkscape:label="BlackPieces"
1321
+ inkscape:groupmode="layer"
1322
+ id="BlackPieces">
1323
+ <g
1324
+ id="BlackKing">
1325
+ <rect
1326
+ y="0"
1327
+ x="0"
1328
+ height="200"
1329
+ width="200"
1330
+ id="rect5056-5"
1331
+ style="fill:none;stroke:none" />
1332
+ <path
1333
+ transform="matrix(0.21236206,-0.01003656,0.00971585,0.21937189,-18.21666,-10.576362)"
1334
+ d="m 716.66667,558.33331 a 196.66667,293.33334 0 1 1 -393.33334,0 196.66667,293.33334 0 1 1 393.33334,0 z"
1335
+ sodipodi:ry="293.33334"
1336
+ sodipodi:rx="196.66667"
1337
+ sodipodi:cy="558.33331"
1338
+ sodipodi:cx="520"
1339
+ id="path4289-4"
1340
+ style="fill:url(#linearGradient2695-6);fill-opacity:1;stroke:#000000;stroke-width:20;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1341
+ sodipodi:type="arc" />
1342
+ <path
1343
+ inkscape:connector-curvature="0"
1344
+ id="path2569-3"
1345
+ d="m 76.371313,58.087787 c -0.50817,-0.74198 -4.68974,-1.34054 -7.1759,-1.85917 -1.65376,-0.34498 -3.97427,0.18783 -5.66299,0.26764 -2.52629,0.1194 -5.18771,1.16436 -7.35172,2.17939 -4.25762,1.99703 -7.28314,5.17336 -10.59961,8.92781 -2.04673,2.31704 -3.04436,4.748831 -4.64744,7.180961 -1.5061,2.28498 -2.11237,3.78998 -4.35829,5.70176 -2.36797,2.01569 -4.07573,3.97245 -5.74165,6.49991 -1.00726,1.52818 -0.98299,3.89971 -1.54298,5.20232 -0.71242,1.65717 -1.24173,2.76434 -1.57537,4.47108"
1346
+ style="fill:none;stroke:#5a462f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1347
+ <path
1348
+ inkscape:connector-curvature="0"
1349
+ id="path2573-1"
1350
+ d="m 70.969723,72.265718 c 0.0826,1.8643 -3.50699,0.89852 -5.26048,1.34777 -4.84076,1.24024 -7.18224,5.34856 -8.07347,9.90758 -0.78554,4.01838 -1.77183,8.15253 -3.72907,11.90057 -1.80182,3.45044 -4.07478,6.832392 -6.28759,10.189572 -1.85112,2.80844 -2.52378,6.67721 -3.82622,9.70685 -1.93338,4.49727 -3.21825,9.8531 -4.67753,14.51009 -1.16738,3.72548 -2.65291,8.18941 -3.37512,11.88384 -0.72313,3.6991 -2.10541,7.31718 -3.43991,10.42137 -0.83724,1.94754 -1.88435,4.25783 -2.21847,5.96701"
1351
+ style="fill:none;stroke:#37260f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1352
+ <path
1353
+ inkscape:connector-curvature="0"
1354
+ id="path2577-9"
1355
+ d="m 62.588563,131.28347 c -2.40744,3.65247 -2.95708,7.15832 -3.71287,12.26619 -0.55013,3.71795 0.33887,7.68603 -0.20589,11.36767 -0.66446,4.49063 -3.1847,8.66743 -4.03442,13.01416 -0.45996,2.35287 -0.95163,4.04501 -2.21847,5.96702 -1.16262,1.76386 -2.63674,4.11695 -3.29648,5.65157 -0.73684,1.714 -1.26458,2.89253 -3.03969,3.44113"
1356
+ style="fill:none;stroke:#5a462f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1357
+ <path
1358
+ inkscape:connector-curvature="0"
1359
+ id="path2579-8"
1360
+ d="m 79.330043,52.818557 c -0.56914,1.32389 -7.35406,-1.923189 -8.97797,-2.506769 -2.93524,-1.05482 -5.78601,-1.56923 -8.60784,-2.15787 -3.47025,-0.72391 -8.15423,0.38538 -11.67993,0.55201 -3.7625,0.17782 -5.08348,-0.004 -6.99777,2.16265 -2.0132,2.279069 -4.629,4.088459 -6.46572,6.167739 -0.11258,0.12745 -0.22516,0.2549 -0.33774,0.38235"
1361
+ style="fill:none;stroke:#37260f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1362
+ <path
1363
+ inkscape:connector-curvature="0"
1364
+ sodipodi:nodetypes="cssc"
1365
+ id="path2581-7"
1366
+ d="m 87.792143,51.685858 c -0.0405,0.0459 -8.59686,-7.40287 -8.85074,-7.64218 -1.60836,-1.51607 -17.91692,-7.21369 -19.46885,-7.14035 -0.87347,0.0413 -8.44425,-12.05801 -9.39898,-12.01289"
1367
+ style="fill:none;stroke:#37260f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1368
+ <path
1369
+ inkscape:connector-curvature="0"
1370
+ sodipodi:nodetypes="csc"
1371
+ id="path2585-7"
1372
+ d="m 91.671563,51.188208 c -0.0695,-0.23991 3.40608,-12.42141 3.66429,-13.36306 2.19368,-7.99997 -2.53256,-14.2733 0.47655,-21.27287"
1373
+ style="fill:none;stroke:#37260f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1374
+ <path
1375
+ inkscape:connector-curvature="0"
1376
+ id="path2591-6"
1377
+ d="m 97.742623,52.126157 c -2.4862,1.43445 3.061947,-7.769009 5.015267,-14.892439 1.40913,-5.13886 9.59196,-10.0908 12.86666,-13.79797 1.01516,-1.14923 2.69286,-1.81799 3.77996,-2.74335"
1378
+ style="fill:none;stroke:#37260f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1379
+ <path
1380
+ inkscape:connector-curvature="0"
1381
+ id="path2593-8"
1382
+ d="m 101.88485,49.554278 c 1.07137,-1.21286 3.95312,-6.39494 6.33617,-9.09271 3.58723,-4.06098 8.94088,-10.083 14.02563,-11.65443 2.92174,-0.90296 6.44669,-0.67107 9.54011,-0.81727 1.06181,-0.0502 2.12362,-0.10036 3.18543,-0.15054"
1383
+ style="fill:none;stroke:#37260f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1384
+ <path
1385
+ inkscape:connector-curvature="0"
1386
+ sodipodi:nodetypes="csssc"
1387
+ id="path2597-7"
1388
+ d="m 116.25284,53.638227 c 0.66509,0.37062 10.49463,-1.25207 13.44962,-0.63565 3.4238,0.71422 6.2823,2.48781 9.71823,3.20456 4.27015,0.89077 8.50215,-3.44257 12.33921,-1.68233 2.32339,1.06586 10.45078,5.20815 13.01702,5.61335"
1389
+ style="fill:none;stroke:#37260f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1390
+ <path
1391
+ inkscape:connector-curvature="0"
1392
+ id="path2599-3"
1393
+ d="m 119.77833,61.165707 c 2.10834,0.96719 19.61756,-0.0338 26.69102,2.036 2.86878,0.83944 5.39982,3.19354 8.72119,4.71722 3.35699,1.54001 5.14643,4.715941 7.08106,7.725821 2.1929,3.41168 3.91291,6.56567 5.76246,9.98644 0.0814,0.15063 0.24675,0.2326 0.37013,0.34889"
1394
+ style="fill:none;stroke:#37260f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1395
+ <path
1396
+ inkscape:connector-curvature="0"
1397
+ id="path2601-2"
1398
+ d="m 125.58706,64.188637 c 1.90834,3.5295 13.25449,7.52866 18.55278,10.481111 3.80338,2.11942 6.5545,5.83088 7.53215,9.90281 1.32974,5.53838 2.88288,12.45266 6.07013,16.933222 1.97792,2.78052 1.61005,5.99886 3.23632,9.00668 0.39897,0.73789 0.47306,2.67276 0.51587,3.63948"
1399
+ style="fill:none;stroke:#5a462f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1400
+ <path
1401
+ inkscape:connector-curvature="0"
1402
+ id="path2605-5"
1403
+ d="m 135.5852,89.729468 c 1.66939,2.09276 5.93813,4.30368 7.43499,7.70909 1.03294,2.34999 1.08135,5.282292 1.7558,7.611112 0.97706,3.37365 2.00097,5.94996 3.9442,8.97322 2.81676,4.38227 8.01056,7.2188 9.39899,12.01289 0.90659,3.13033 1.17637,6.25208 1.83677,9.43921 0.65493,3.16071 1.30657,6.36966 2.19071,9.42248 0.83493,2.88291 1.72326,5.3308 2.47987,7.94327 0.267,0.92192 0.64343,1.91197 0.82122,2.52589"
1404
+ style="fill:none;stroke:#5a462f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1405
+ <path
1406
+ inkscape:connector-curvature="0"
1407
+ id="path2607-4"
1408
+ d="m 141.10939,110.35235 c 0.81023,2.79764 1.35126,6.48531 1.48283,9.45593 0.23896,5.39545 1.21164,10.96042 4.21948,15.18877 2.86953,4.03392 4.78612,9.22292 7.66169,12.82777 1.01819,1.2764 1.83696,3.55541 2.36652,5.38393 1.00616,3.47413 2.64413,6.65217 3.63884,10.08681 0.82127,2.83572 1.14818,5.81595 2.49606,8.30889 0.17277,0.31955 0.0324,0.73125 0.0486,1.09686"
1409
+ style="fill:none;stroke:#37260f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1410
+ <path
1411
+ inkscape:connector-curvature="0"
1412
+ id="path2611-3"
1413
+ d="m 69.331893,83.334678 c -3.89308,-0.21646 -10.39517,2.14945 -15.07356,4.00987 -0.9417,0.37448 -1.85528,0.82045 -2.78292,1.23068 -2.02643,0.89614 -1.77803,4.9425 -2.54002,6.71498 -1.74432,4.05752 -7.24847,9.357582 -10.08374,12.567292 -0.5629,0.63724 -1.12581,1.27449 -1.68872,1.91174 -1.83273,2.07477 -3.47928,4.49823 -5.01758,6.83207 -1.21143,1.83793 -2.53842,3.56761 -2.94254,5.63485"
1414
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1415
+ <path
1416
+ inkscape:connector-curvature="0"
1417
+ id="path2613-5"
1418
+ d="m 66.262123,94.104938 c -0.53412,2.73224 -4.93116,2.28266 -7.28694,3.64186 -4.76815,2.751042 -5.99325,9.088442 -9.35968,12.899452 -3.93091,4.45004 -3.61134,8.95946 -10.11612,11.83605 -2.87094,1.2696 -6.28953,6.0305 -8.12205,8.81072 -1.24767,1.8929 -1.99005,3.27933 -3.31267,5.28595 -1.15906,1.75847 -1.82869,4.42157 -2.20228,6.33263"
1419
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1420
+ <path
1421
+ inkscape:connector-curvature="0"
1422
+ id="path2615-7"
1423
+ d="m 63.534713,120.61358 c -0.53971,2.76087 -5.49596,0.30867 -8.10817,1.11597 -4.27842,1.32225 -5.89958,2.93394 -5.70926,7.23115 0.25961,5.86164 -6.79631,12.3554 -9.90561,16.58911 -4.4399,6.04549 -9.54381,11.92996 -13.01009,18.56776 -1.12286,2.15024 -2.16479,4.79551 -2.54002,6.71497 -0.0523,0.26741 -0.21437,0.49865 -0.32155,0.74797"
1424
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1425
+ <path
1426
+ inkscape:connector-curvature="0"
1427
+ id="path2621-5"
1428
+ d="m 81.224163,57.568987 c -0.45179,0.51146 -7.7627,-0.62317 -9.62107,-1.01084 -2.96365,-0.61823 -7.27493,-0.38895 -10.29656,-0.24614 -2.66791,0.12609 -5.04613,-0.1279 -7.80281,0.002 -2.82662,0.13359 -6.07846,2.88832 -8.31636,4.42328 -3.56603,2.44592 -6.06999,6.98209 -9.13528,9.95777 -1.28368,1.24615 -5.19981,3.750021 -6.88443,4.721991 -1.27316,0.73456 -3.29262,2.51821 -4.45544,3.50804"
1429
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1430
+ <path
1431
+ inkscape:connector-curvature="0"
1432
+ id="path2627-6"
1433
+ d="m 90.445513,47.530218 c -0.48003,-0.45249 -0.32244,-7.28032 -0.40482,-9.1405 -0.12955,-2.92496 -0.25909,-5.84992 -0.38864,-8.77488 -0.12375,-2.7942 -0.35145,-5.23973 -1.04793,-7.64456 -0.31042,-1.07186 -0.32743,-1.61261 -0.82122,-2.52589"
1434
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1435
+ <path
1436
+ inkscape:connector-curvature="0"
1437
+ id="path2631-5"
1438
+ d="m 98.907624,46.397518 c 1.530986,-2.32275 6.952186,-7.17953 10.567216,-9.65906 2.26008,-1.55018 5.37023,-0.62019 8.12436,-0.75035 4.00132,-0.18911 7.3647,1.11747 11.39076,0.92719 3.73856,-0.17669 7.14579,-1.43687 10.92347,-1.61541 0.16685,-0.008 0.22516,-0.2549 0.33774,-0.38235"
1439
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1440
+ <path
1441
+ inkscape:connector-curvature="0"
1442
+ id="path2633-9"
1443
+ d="m 105.08648,49.769348 c 3.11247,-0.1471 8.67652,-1.50922 13.04709,-1.71578 3.42914,-0.16207 6.98668,1.44291 10.39372,2.43985 3.18182,0.93105 6.24749,0.7599 9.28333,1.39319 5.04451,1.052309 12.8919,1.222629 17.77782,0.991719 2.23441,-0.1056 4.20301,0.7862 6.0817,1.17811"
1444
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1445
+ <path
1446
+ inkscape:connector-curvature="0"
1447
+ id="path2635-5"
1448
+ d="m 116.43097,57.660047 c 5.73019,-0.27082 12.98268,1.23437 19.66085,3.46742 0.46328,0.15492 0.95463,0.19914 1.43195,0.29872 1.38415,0.28873 3.8797,3.36724 4.81169,4.53559 2.01259,2.52301 7.1693,5.61715 9.88016,6.860761 1.97149,0.90442 2.9834,3.49956 3.78227,5.31702 0.98711,2.24572 2.28426,4.12975 3.81465,6.04826 1.20531,1.511 1.44282,2.76146 2.65568,3.90473"
1449
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1450
+ <path
1451
+ inkscape:connector-curvature="0"
1452
+ id="path2639-8"
1453
+ d="m 138.01418,88.515518 c 5.95976,7.47122 12.459,18.050512 19.53824,24.723562 2.38991,2.25278 2.42481,6.7 2.56084,9.77137 0.11506,2.598 3.33505,4.8715 4.53872,6.38043 1.82712,2.2905 2.9712,4.82394 4.21717,7.1284 0.53305,0.98589 1.21028,2.5741 1.56149,3.22367"
1454
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1455
+ <path
1456
+ inkscape:connector-curvature="0"
1457
+ id="path2643-3"
1458
+ d="m 142.55057,142.89253 c 0.0872,0.0822 0.0108,0.24374 0.0162,0.36562 0.11677,2.63652 4.67789,2.30733 6.56519,4.08634 0.61689,0.58149 1.23377,1.16298 1.85065,1.74446 1.81447,1.71036 3.52325,4.5023 4.53872,6.38043 1.11618,2.06439 1.6593,4.41158 2.76904,6.46406 1.0272,1.89984 1.83725,4.48559 2.41509,6.4808 0.0677,0.23376 0.0216,0.48749 0.0324,0.73124 0.0818,1.8466 1.36732,4.79242 2.38271,5.74955"
1459
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1460
+ <path
1461
+ inkscape:connector-curvature="0"
1462
+ id="path2659-3"
1463
+ d="m 77.143963,59.516817 c -3.1666,1.82702 -8.03437,2.69757 -13.52827,6.86791 -3.92843,2.98202 -6.44169,7.840451 -8.68418,12.134751 -0.25076,0.4802 -0.42873,0.9973 -0.6431,1.49594 -2.10853,4.9047 -2.53867,10.10744 -3.93727,15.20787 -2.60218,9.489732 -6.02141,17.404182 -10.91654,25.796522 -2.21205,3.79241 -5.98806,6.6698 -7.68714,10.6221 -0.0267,0.0622 -0.89748,1.36162 -0.99704,1.51267"
1464
+ style="fill:none;stroke:#4f3100;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1465
+ <path
1466
+ inkscape:connector-curvature="0"
1467
+ id="path2619-1"
1468
+ d="m 72.674633,70.719597 c -0.35761,1.829331 -3.5529,-0.93124 -5.35764,-0.84595 -3.74141,0.17683 -6.1309,0.96531 -9.08901,2.994261 -2.056,1.4102 -3.07756,4.2519 -4.69603,6.08411 -3.37873,3.82494 -7.50787,6.8977 -11.24271,10.42375 -3.00075,2.83299 -4.42152,6.8382 -6.64153,10.20629 -1.30951,1.986732 -3.30542,4.125902 -4.37447,5.336142 -1.28874,1.45893 -2.13081,3.56406 -3.32886,4.92033 -0.44471,0.50344 -0.66263,0.50299 -1.02943,0.78143"
1469
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1470
+ <path
1471
+ inkscape:connector-curvature="0"
1472
+ id="path2661-9"
1473
+ d="m 68.621703,75.307778 c -0.33002,0.76766 -4.34961,2.96665 -5.03377,6.46644 -0.0964,0.49307 -0.19278,0.98613 -0.28917,1.47922 -0.71298,3.64723 -0.83212,6.37178 -2.39428,10.00556 -1.37441,3.19704 -2.69888,7.186682 -3.79384,10.438072 -1.39494,4.14217 -4.17368,7.75552 -5.49875,11.98423 -0.31076,0.9917 -0.62151,1.98343 -0.93226,2.97513 -1.22638,3.91373 -2.1587,7.85804 -3.39133,11.51823 -1.68132,4.99254 -6.09551,11.12396 -9.61645,15.10989 -1.13296,1.2826 -2.71205,2.68626 -3.73138,3.8402"
1474
+ style="fill:none;stroke:#4f3100;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1475
+ <path
1476
+ inkscape:connector-curvature="0"
1477
+ id="path2663-9"
1478
+ d="m 65.137853,100.75301 c 0.34161,1.21727 -2.54021,5.68126 -3.52088,8.59326 -1.09016,3.23716 -1.43381,5.98925 -2.07272,9.2576 -0.19278,0.98613 -0.38556,1.97228 -0.57834,2.95841 -0.0935,0.47835 0.0432,0.97497 0.0648,1.46249 0.15212,3.43464 -1.55711,8.73542 -3.39132,11.5182 -2.01399,3.05554 -1.88038,5.59259 -1.7188,9.24087 0.12793,2.8885 0.55937,6.10766 0.0347,8.7916 -0.80058,4.0954 -3.84079,5.92521 -6.72249,8.3782 -1.48819,1.26679 -2.57899,4.0428 -3.65041,5.66831 -0.61347,0.93072 -0.90923,2.69987 -1.25382,3.72309"
1479
+ style="fill:none;stroke:#4f3100;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1480
+ <path
1481
+ inkscape:connector-curvature="0"
1482
+ id="path2665-6"
1483
+ d="m 69.205403,127.5046 c -2.08985,3.17063 -2.10714,7.63977 -3.005,12.23274 -0.7721,3.94966 -0.87884,7.63487 -1.62164,11.43456 -0.57634,2.94829 -0.76825,6.6782 -0.64078,9.55632 0.13393,3.02404 -0.19538,5.36885 -1.78357,7.77838 -2.88419,4.37576 -6.23007,8.94458 -10.47007,11.85276 -0.84758,0.58137 -0.95112,1.07673 -1.35097,1.5294"
1484
+ style="fill:none;stroke:#37260f;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1485
+ <path
1486
+ inkscape:connector-curvature="0"
1487
+ id="path2617-1"
1488
+ d="m 62.847653,137.13339 c -0.42915,2.19532 -4.05587,1.90383 -5.51725,3.55822 -3.47389,3.93266 -4.66317,6.8262 -4.43695,11.93402 0.17175,3.87777 -1.03021,8.38773 -1.58924,12.16583 -0.36712,2.48106 -0.99144,5.42619 -1.78357,7.77838 -0.57783,1.71581 -0.38482,4.21079 -0.78653,6.26573 -0.0523,0.2674 -0.21437,0.49864 -0.32155,0.74797"
1489
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1490
+ <path
1491
+ inkscape:connector-curvature="0"
1492
+ id="path2667-7"
1493
+ d="m 75.115183,53.750527 c -2.20005,1.50901 -5.2573,0.85043 -7.72184,1.8305 -7.07529,2.81355 -13.15569,2.99057 -18.06467,8.54785 -2.54232,2.87805 -3.80504,5.1139 -4.56649,9.009071 -1.07492,5.4987 -8.46179,13.07248 -11.64292,17.40397 -1.48031,2.01564 -3.03738,3.43576 -4.00434,5.68503 -0.43642,1.01518 -0.86705,2.01686 -1.2862,2.99188"
1494
+ style="fill:none;stroke:#4f3100;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1495
+ <path
1496
+ inkscape:connector-curvature="0"
1497
+ id="path2571-1"
1498
+ d="m 73.091033,64.104987 c -0.28109,0.65384 -10.50435,0.47666 -12.72554,0.96781 -2.18114,0.48228 -5.57372,6.51257 -6.36856,8.361461 -2.26629,5.27167 -7.97751,12.87057 -11.65911,17.03837 -2.66517,3.01714 -2.90306,4.73645 -4.26112,7.89548 -1.43075,3.328082 -3.05089,6.370262 -4.18017,9.723572 -1.92331,5.71113 -3.48955,10.99712 -5.28824,16.73727 -0.75516,2.40996 -0.88157,4.11964 -0.77033,6.63134 0.008,0.17236 -0.22516,0.2549 -0.33775,0.38235"
1499
+ style="fill:none;stroke:#37260f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1500
+ <path
1501
+ inkscape:connector-curvature="0"
1502
+ id="path2575-4"
1503
+ d="m 61.582283,100.55466 c -0.32916,1.6838 -2.62718,6.91772 -3.82622,9.70685 -2.92728,6.80922 -4.18742,15.27079 -6.10716,22.27176 -1.26464,4.61192 -1.53922,9.45238 -2.21616,14.02737 -0.57019,3.85352 -2.59096,9.1923 -4.40455,12.66527 -1.21154,2.32006 -1.69164,4.82593 -2.87777,7.09733 -1.28904,2.46847 -2.77415,4.46894 -4.30971,6.79861 -1.41255,2.14307 -3.02921,4.07554 -4.34209,6.06738 -0.84045,1.2751 -1.53473,1.97036 -2.36421,2.67644"
1504
+ style="fill:none;stroke:#37260f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1505
+ <path
1506
+ inkscape:connector-curvature="0"
1507
+ id="path2669-0"
1508
+ d="m 85.282203,51.071708 c -1.18388,2.753859 -4.97733,-3.17883 -7.64319,-4.40179 -4.55743,-2.0907 -10.22127,-4.93957 -14.8029,-5.89532 -3.29256,-0.68685 -20.39514,10.0947 -24.65993,11.790649 -1.69222,0.67293 -2.47324,0.8801 -3.4584,1.99537"
1509
+ style="fill:none;stroke:#4f3100;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1510
+ <path
1511
+ inkscape:connector-curvature="0"
1512
+ id="path2671-2"
1513
+ d="m 89.497063,50.139748 c -2.03232,0.80817 -0.0986,-4.99793 -1.70723,-6.51425 -3.06093,-2.88531 -5.10521,-7.08644 -9.52622,-6.8775 -2.46178,0.11635 -3.80715,-1.42811 -6.11409,-1.90935 -0.49319,-0.10287 -1.24987,0.0591 -1.76969,0.0836"
1514
+ style="fill:none;stroke:#4f3100;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1515
+ <path
1516
+ inkscape:connector-curvature="0"
1517
+ id="path2623-5"
1518
+ d="m 84.694263,52.439317 c -1.98461,1.14505 -6.3114,-3.374369 -8.72119,-4.717219 -2.40021,-1.33751 -4.78345,-2.80906 -7.24067,-3.32165 -3.63645,-0.75858 -7.35684,-1.31064 -11.10159,-2.4064 -2.25049,-0.65852 -3.6566,-1.12503 -5.74397,-1.56046 -0.96268,-0.20082 -1.86592,-0.60396 -2.89626,-1.32866"
1519
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1520
+ <path
1521
+ inkscape:connector-curvature="0"
1522
+ id="path2673-8"
1523
+ d="m 99.326334,47.843258 c -0.0412,-0.009 -2.158691,-7.08021 -3.960391,-9.33883 -1.2827,-1.60801 -1.9698,-4.43451 -2.07736,-6.86315 -0.0727,-1.64056 -0.51459,-3.6108 -0.59683,-5.46757"
1524
+ style="fill:none;stroke:#4f3100;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1525
+ <path
1526
+ inkscape:connector-curvature="0"
1527
+ sodipodi:nodetypes="css"
1528
+ id="path2583-0"
1529
+ d="m 91.843963,53.137707 c -2.31792,0.10954 -0.74376,-4.901649 -2.07736,-6.863149 -7.07374,-10.40427 -16.64543,-19.38344 -16.32273,-32.20324"
1530
+ style="fill:none;stroke:#37260f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1531
+ <path
1532
+ inkscape:connector-curvature="0"
1533
+ id="path2675-1"
1534
+ d="m 107.90178,49.269908 c -0.0418,-0.94459 -0.28077,-6.33941 -0.42102,-9.50613 -0.11343,-2.56119 0.49181,-4.25783 1.84834,-6.3159 0.77261,-1.17216 2.36734,-1.92512 2.3966,-1.94519"
1535
+ style="fill:none;stroke:#4f3100;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1536
+ <path
1537
+ inkscape:connector-curvature="0"
1538
+ id="path2677-6"
1539
+ d="m 111.55566,51.687958 c 1.05589,-1.60198 4.85696,-2.89089 7.28694,-3.64186 0.22629,-0.0699 0.47191,-0.0223 0.70787,-0.0335 2.37474,-0.11223 4.94864,-0.60027 7.41649,-0.7169 4.64575,-0.21957 8.01039,4.38443 12.5983,4.1676 0.5899,-0.0279 1.17979,-0.0558 1.76969,-0.0836"
1540
+ style="fill:none;stroke:#4f3100;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1541
+ <path
1542
+ inkscape:connector-curvature="0"
1543
+ id="path2629-9"
1544
+ d="m 91.329203,43.458218 c -0.36615,-1.26428 2.48178,-1.18284 3.08828,-2.34427 1.77855,-3.40585 3.887011,-6.67757 5.949837,-9.80722 1.57776,-2.3937 3.01358,-5.09231 4.63126,-7.54659 1.12825,-1.71172 3.1498,-3.31717 4.777,-4.256"
1545
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1546
+ <path
1547
+ inkscape:connector-curvature="0"
1548
+ id="path2625-7"
1549
+ d="m 86.841373,46.235018 c -1.8348,-0.38275 -6.6368,-8.00777 -9.33422,-10.55041 -1.96345,-1.8508 -2.74266,-3.286 -4.84408,-5.26685 -2.12205,-2.00029 -3.57183,-3.90215 -5.23039,-5.98135"
1550
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1551
+ <path
1552
+ inkscape:connector-curvature="0"
1553
+ sodipodi:nodetypes="csssc"
1554
+ id="path2595-0"
1555
+ d="m 105.71339,47.907788 c 0.38835,-0.0183 5.20996,-2.99997 7.28694,-3.64186 4.246,-1.31222 8.54645,-1.50307 13.04709,-1.71578 4.16685,-0.19693 6.37586,0.0594 10.00739,1.72535 5.09312,2.33646 15.59472,-3.2335 16.18395,-2.96319"
1556
+ style="fill:none;stroke:#37260f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1557
+ <path
1558
+ inkscape:connector-curvature="0"
1559
+ id="path2679-5"
1560
+ d="m 117.34705,54.319297 c 2.30725,-0.10905 9.30288,2.21479 12.63069,4.89883 2.19338,1.76906 4.57703,3.26332 6.61376,5.1832 2.21981,2.09243 3.78715,4.62092 5.97066,6.67913 2.16132,2.037311 2.88328,7.011031 4.33052,9.687731 2.13984,3.95768 5.25606,7.23922 8.9479,9.8359 1.92658,1.35509 3.5234,1.93597 5.77634,2.29171"
1561
+ style="fill:none;stroke:#4f3100;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1562
+ <path
1563
+ inkscape:connector-curvature="0"
1564
+ id="path2681-1"
1565
+ d="m 119.98884,65.918757 c 3.68069,2.58886 8.23318,5.83202 11.05533,9.369911 1.78822,2.24174 3.16801,5.23764 4.94124,7.46056 1.8124,2.27206 3.1574,5.07839 5.27898,7.07821 1.63867,1.54464 2.91217,5.09811 4.21717,7.12841 2.23641,3.479382 3.9925,6.566262 7.16202,9.553912 2.89471,2.72861 5.18867,6.12512 8.54537,8.75576 0.39919,0.31285 0.74026,0.69779 1.11039,1.04667"
1566
+ style="fill:none;stroke:#4f3100;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1567
+ <path
1568
+ inkscape:connector-curvature="0"
1569
+ id="path2683-3"
1570
+ d="m 128.40016,83.777628 c 2.74885,2.15428 11.97093,5.95915 16.07522,10.59821 1.37497,1.55412 0.8428,5.07806 1.36948,6.896602 0.75762,2.61597 0.51244,5.63525 1.08031,8.3758 0.71794,3.46479 1.25586,6.50428 2.2069,9.7881 0.88961,3.07171 2.82792,6.86993 5.00601,8.92305 4.24084,3.99749 8.89273,8.03211 12.93836,11.8456 0.12338,0.1163 0.24675,0.23259 0.37013,0.3489"
1571
+ style="fill:none;stroke:#4f3100;stroke-width:4.86142826;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1572
+ <path
1573
+ inkscape:connector-curvature="0"
1574
+ id="path2687-2"
1575
+ d="m 129.38782,133.98861 c 2.15829,2.03444 4.93656,7.3398 6.84047,10.30187 1.44179,2.24312 2.69336,4.98143 3.86323,7.14511 1.26402,2.33785 2.4293,4.57381 3.84704,6.77951 1.03415,1.60894 1.79293,4.73656 2.3989,6.11517"
1576
+ style="fill:none;stroke:#4f3100;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1577
+ <path
1578
+ inkscape:connector-curvature="0"
1579
+ id="path2641-9"
1580
+ d="m 139.74222,111.51612 c 3.14655,5.81961 8.05879,10.60867 11.71693,16.29996 1.84322,2.86767 1.93243,6.45126 3.9442,8.97323 1.87534,2.35095 4.51021,6.99902 6.1164,9.96971 1.25432,2.3199 4.30246,4.7563 5.95447,6.31352 1.04432,0.9844 1.66933,2.09269 2.25316,2.82459"
1581
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1582
+ <path
1583
+ inkscape:connector-curvature="0"
1584
+ id="path2603-9"
1585
+ d="m 126.95654,71.085237 c 2.92148,5.403331 9.26874,10.488681 13.77579,14.737111 2.86814,2.70358 5.91626,6.48104 7.86989,9.52046 1.11039,1.72754 0.44648,4.948442 1.01554,6.913332 1.28846,4.4489 2.21273,8.79188 4.47626,12.97831 1.69442,3.13388 4.77891,5.90613 7.09724,8.09144 1.56049,1.47094 2.38056,3.21449 3.76608,4.9514 0.82413,1.03314 1.35483,1.83445 1.89923,2.84132"
1586
+ style="fill:none;stroke:#37260f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1587
+ <path
1588
+ inkscape:connector-curvature="0"
1589
+ id="path2685-9"
1590
+ d="m 133.59625,106.94388 c 0.061,0.0575 1.11645,6.64231 1.82058,9.0736 1.33635,4.61423 2.04741,9.12381 3.0767,13.41085 0.56195,2.3405 0.72969,4.37775 1.35329,6.53098 1.12737,3.89264 2.78096,7.46266 5.42472,10.36878 0.63168,0.69436 1.24456,1.40673 1.86684,2.11008 3.1789,3.59309 6.86654,6.82289 10.37984,10.1346 1.9597,1.84726 3.92449,4.1286 6.25983,5.19993"
1591
+ style="fill:none;stroke:#4f3100;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1592
+ <path
1593
+ inkscape:connector-curvature="0"
1594
+ id="path2637-6"
1595
+ d="m 130.89843,71.998087 c 3.7824,4.741661 13.44395,9.869701 18.74709,14.868561 2.22324,2.09566 3.3689,4.92736 5.63292,7.06148 1.66669,1.57105 2.20842,3.34403 3.78227,5.31702 1.52902,1.916802 3.35252,3.397012 4.84408,5.266852 1.75524,2.20038 2.72854,5.15283 4.23336,7.49401"
1596
+ style="fill:none;stroke:#37260f;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1597
+ <path
1598
+ inkscape:connector-curvature="0"
1599
+ id="path2609-0"
1600
+ d="m 137.62553,135.79759 c 0.45948,0.84981 1.66931,6.77979 3.26871,9.73791 1.27883,2.36523 1.41,5.50929 2.47987,7.94328 1.21185,2.75701 2.72882,5.70578 3.57407,8.62433 0.56049,1.93532 1.58881,4.28121 2.38271,5.74955 1.05292,1.94739 1.7319,3.87452 2.73665,5.73283 0.10211,0.18886 0.68352,0.6443 0.74026,0.69778"
1601
+ style="fill:none;stroke:#37260f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1602
+ <path
1603
+ inkscape:connector-curvature="0"
1604
+ id="path2701-6"
1605
+ d="m 73.257563,139.93886 c 0.14204,1.65238 -1.67524,4.982 -2.15369,7.42951 -0.63674,3.25719 -0.80272,5.90026 -0.64079,9.55629 0.22346,5.04552 -0.62728,9.86155 -0.3979,15.0406 0.18518,4.18121 -1.14087,7.43477 -3.79384,10.4381 -0.77751,0.88019 -1.23133,1.61725 -2.02646,2.29408"
1606
+ style="fill:none;stroke:#2f1e00;stroke-width:4.57142878;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1607
+ <path
1608
+ inkscape:connector-curvature="0"
1609
+ id="path2705-4"
1610
+ d="m 87.514523,149.52385 c -0.44515,2.2771 -1.76711,8.14222 -2.31332,11.83365 -0.34404,2.32515 0.0652,5.04792 -0.38401,7.34587 -0.44018,2.2517 -3.09419,5.34468 -4.29352,7.16423 -1.44298,2.18923 -1.95843,3.83026 -1.84834,6.31592 0.0705,1.59145 0.42402,0.78421 0.77265,1.42901"
1611
+ style="fill:none;stroke:#755a00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1612
+ <path
1613
+ inkscape:connector-curvature="0"
1614
+ id="path2707-3"
1615
+ d="m 93.404213,154.37488 c 0.0833,1.88035 -2.79456,8.01709 -3.40751,11.15261 -0.46479,2.37756 0.24686,5.57402 0.35624,8.04364 0.128,2.89007 -0.57688,6.74909 -0.99472,9.57303 -0.32486,2.19546 0.34274,4.52507 -0.0625,6.59788"
1616
+ style="fill:none;stroke:#2f1e00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1617
+ <path
1618
+ inkscape:connector-curvature="0"
1619
+ id="path2711-0"
1620
+ d="m 103.41161,156.10023 c 0.0887,2.00298 1.53538,10.64245 1.72573,14.94025 0.22051,4.97889 -0.27467,11.32486 4.1709,14.0919 1.82711,1.13723 0.28814,4.57248 -0.11104,5.50103 -0.0678,0.15768 -0.22516,0.2549 -0.33775,0.38233"
1621
+ style="fill:none;stroke:#755a00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1622
+ <path
1623
+ inkscape:connector-curvature="0"
1624
+ id="path2713-5"
1625
+ d="m 109.37996,154.719 c -0.24687,0.57426 4.23584,7.54993 4.39529,11.15022 0.19265,4.34975 0.53033,7.35861 2.62561,11.23386 1.08753,2.01141 0.8948,4.187 0.99935,6.54771 0.0983,2.2198 0.0449,4.49092 0.64541,6.56443 0.44755,1.54532 0.21714,0.30524 0.75646,1.06341"
1626
+ style="fill:none;stroke:#3c2600;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1627
+ <path
1628
+ inkscape:connector-curvature="0"
1629
+ id="path2717-4"
1630
+ d="m 118.96633,146.93824 c 0.28767,6.49505 8.59868,13.27568 10.44693,19.65746 0.81946,2.82949 -0.0793,6.2178 0.0509,9.15721 0.0639,1.44222 0.24735,2.13584 0.85362,3.25712"
1631
+ style="fill:none;stroke:#2f1e00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1632
+ <path
1633
+ inkscape:connector-curvature="0"
1634
+ id="path2719-1"
1635
+ d="m 124.70798,140.43833 c 0.11083,2.5022 3.86357,11.82641 5.68381,16.21872 0.39712,0.95824 0.79424,1.91652 1.19135,2.87476 1.59705,3.85372 2.42337,7.87245 4.73304,10.76787"
1636
+ style="fill:none;stroke:#3c2600;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1637
+ <path
1638
+ inkscape:connector-curvature="0"
1639
+ id="path2721-4"
1640
+ d="m 81.217683,127.47194 c 0.0508,1.14769 0.20659,4.66446 0.30767,6.94679 0.0991,2.23671 0.15704,3.66362 -0.83511,5.16885"
1641
+ style="fill:none;stroke:#755a00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1642
+ <path
1643
+ inkscape:connector-curvature="0"
1644
+ id="path2723-5"
1645
+ d="m 86.205183,127.96901 c 0.0638,1.44061 0.23972,5.41256 0.35625,8.04362 0.0768,1.73471 -1.29931,3.67803 -1.91311,4.85344"
1646
+ style="fill:none;stroke:#755a00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1647
+ <path
1648
+ inkscape:connector-curvature="0"
1649
+ id="path2727-8"
1650
+ d="m 97.917503,128.14823 c 0.0784,1.76991 1.541651,6.71918 2.190697,9.42247 0.2719,1.13247 0.44507,2.04083 0.49968,3.27386"
1651
+ style="fill:none;stroke:#755a00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1652
+ <path
1653
+ inkscape:connector-curvature="0"
1654
+ id="path2729-5"
1655
+ d="m 104.35314,129.30962 c 0.17099,0.71217 0.9191,4.73596 1.04792,7.64457 0.0594,1.3406 0.11875,2.6812 0.17813,4.02181"
1656
+ style="fill:none;stroke:#755a00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1657
+ <path
1658
+ inkscape:connector-curvature="0"
1659
+ id="path2733-1"
1660
+ d="m 117.09487,128.70743 c 0.0545,0.22712 2.30578,4.58818 3.12297,6.44734 0.29431,0.66954 0.52694,1.1988 0.78884,1.79463"
1661
+ style="fill:none;stroke:#755a00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1662
+ <path
1663
+ inkscape:connector-curvature="0"
1664
+ id="path2737-9"
1665
+ d="m 89.069073,128.56642 c 0.12259,2.76806 -0.38718,5.47666 0.35625,8.04365"
1666
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1667
+ <path
1668
+ inkscape:connector-curvature="0"
1669
+ id="path2739-9"
1670
+ d="m 95.761493,127.51736 c 0.0286,0.64575 -0.13142,5.04101 -0.0139,7.69475 0.055,1.24169 -0.99751,2.86039 -1.23763,4.08872"
1671
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1672
+ <path
1673
+ inkscape:connector-curvature="0"
1674
+ id="path2743-6"
1675
+ d="m 109.96755,127.94512 c 0.0318,0.71772 -0.1241,5.20626 0.002,8.06035 0.0317,0.71522 -0.17397,1.17575 -0.27297,1.84485"
1676
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1677
+ <path
1678
+ inkscape:connector-curvature="0"
1679
+ id="path2747-7"
1680
+ d="m 76.813133,140.13721 c 0.63869,2.20532 -2.37587,3.91341 -3.28029,6.01721 -0.67168,1.56242 0.25109,5.66921 0.32387,7.31239 0.1523,3.4389 -2.7087,12.51086 -3.51856,16.65363 -0.15791,0.80778 -2.49121,2.97185 -3.00731,4.17236"
1681
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1682
+ <path
1683
+ inkscape:connector-curvature="0"
1684
+ id="path2751-9"
1685
+ d="m 87.917033,150.60398 c -3.08574,3.49325 -5.97336,17.28443 -5.70464,23.35189 0.16926,3.82154 0.69625,8.12107 0.16424,11.71656 -0.0399,0.26968 -0.21436,0.49866 -0.32155,0.74798"
1686
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1687
+ <path
1688
+ inkscape:connector-curvature="0"
1689
+ id="path2753-0"
1690
+ d="m 92.423373,156.25318 c -0.44696,3.02063 0.0617,10.99148 1.01785,14.97368 0.74129,3.08749 0.30332,6.96907 -0.27066,9.9052 -0.37287,1.90742 -1.52188,3.94337 -2.23467,5.60139"
1691
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1692
+ <path
1693
+ inkscape:connector-curvature="0"
1694
+ id="path2759-5"
1695
+ d="m 113.96494,154.13594 c 0.32811,7.40812 4.82509,18.82835 7.23142,27.13713 0.26123,0.90199 0.35281,2.76674 0.49967,3.27385"
1696
+ style="fill:none;stroke:#2f1e00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1697
+ <path
1698
+ inkscape:connector-curvature="0"
1699
+ id="path2763-9"
1700
+ d="m 122.66532,142.36679 c 0.55965,2.33093 10.92,11.90626 12.81113,16.98102 0.77607,2.08256 0.56109,4.66048 0.66161,6.93006 0.052,1.17456 0.83809,2.90672 0.91838,4.71959"
1701
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1702
+ <path
1703
+ inkscape:connector-curvature="0"
1704
+ id="path2767-7"
1705
+ d="m 87.685713,129.36457 c -0.7385,1.12042 -0.49103,4.92957 -0.38402,7.34585 0.0956,2.15783 -0.82651,3.33111 -1.18904,5.1856"
1706
+ style="fill:none;stroke:#130500;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1707
+ <path
1708
+ inkscape:connector-curvature="0"
1709
+ id="path2765-6"
1710
+ d="m 81.957943,128.16973 c 0.69082,1.61864 0.97795,5.14949 -0.72176,7.7282 -0.9574,1.45252 -1.95567,2.7658 -2.26705,4.87015"
1711
+ style="fill:none;stroke:#2f1e00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1712
+ <path
1713
+ inkscape:connector-curvature="0"
1714
+ id="path2735-6"
1715
+ d="m 83.614283,125.52675 c 0.0596,1.34651 0.22944,5.18054 0.34005,7.67802 0.0324,0.73123 0.0648,1.46249 0.0972,2.19372"
1716
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1717
+ <path
1718
+ inkscape:connector-curvature="0"
1719
+ id="path2769-8"
1720
+ d="m 94.764453,129.03002 c 0.0663,1.49699 0.23882,5.39233 0.35625,8.04364 0.0784,1.7706 0.0719,3.42098 -0.12724,5.13541"
1721
+ style="fill:none;stroke:#130500;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1722
+ <path
1723
+ inkscape:connector-curvature="0"
1724
+ id="path2725-1"
1725
+ d="m 92.238313,128.05024 c 0.0605,1.36632 0.25844,5.83517 0.37244,8.40928 0.053,1.19619 0.009,2.19832 -0.2082,3.30731"
1726
+ style="fill:none;stroke:#2f1e00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1727
+ <path
1728
+ inkscape:connector-curvature="0"
1729
+ id="path2771-8"
1730
+ d="m 101.21628,130.55702 c 0.12088,2.72923 0.5874,5.25468 0.71018,8.02691 0.0694,1.56664 0.0464,3.01164 -0.15961,4.40417"
1731
+ style="fill:none;stroke:#130500;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1732
+ <path
1733
+ inkscape:connector-curvature="0"
1734
+ id="path2741-9"
1735
+ d="m 102.92119,129.01091 c 0.0148,0.33386 -1.60437,3.8162 -1.4944,6.29917 0.0902,2.03708 -0.18714,3.78279 -0.0949,5.86665"
1736
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1737
+ <path
1738
+ inkscape:connector-curvature="0"
1739
+ id="path2773-2"
1740
+ d="m 107.84393,128.04548 c 0.1338,3.02106 -0.5681,8.15688 2.1907,9.42248 4.1645,1.91046 9.04804,3.55364 7.4188,7.34347"
1741
+ style="fill:none;stroke:#130500;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1742
+ <path
1743
+ inkscape:connector-curvature="0"
1744
+ id="path2775-9"
1745
+ d="m 116.01687,128.39198 c 1.9844,0.91034 1.14894,4.58658 2.75284,6.09845 1.71731,1.61877 3.26819,1.7182 3.39594,4.60251 0.0305,0.68942 -0.90065,1.01959 -1.35097,1.52939"
1746
+ style="fill:none;stroke:#130500;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1747
+ <path
1748
+ inkscape:connector-curvature="0"
1749
+ id="path2731-5"
1750
+ d="m 110.01613,129.04198 c 0.11619,2.62338 2.24572,5.47714 2.8338,7.92653 0.26471,1.10248 0.2143,2.28847 0.49968,3.27385"
1751
+ style="fill:none;stroke:#2f1e00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1752
+ <path
1753
+ inkscape:connector-curvature="0"
1754
+ id="path2745-4"
1755
+ d="m 113.82847,127.02986 c 0.0109,0.24691 3.62017,3.82821 4.1524,5.66593 0.27255,0.94109 0.42226,1.52609 0.46728,2.54261"
1756
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1757
+ <path
1758
+ inkscape:connector-curvature="0"
1759
+ id="path2777-6"
1760
+ d="m 78.279773,149.22753 c 0.046,1.03823 -2.06499,6.97568 -2.44287,8.9087 -1.24261,6.3565 -1.55815,9.64239 -5.70695,15.29151 -2.02527,2.75766 -3.99076,5.65344 -5.29055,8.6769 -0.34539,0.80343 -0.66651,1.5504 -0.96465,2.24391"
1761
+ style="fill:none;stroke:#130500;stroke-width:4.57142878;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1762
+ <path
1763
+ inkscape:connector-curvature="0"
1764
+ id="path2779-2"
1765
+ d="m 88.481483,155.34031 c -1.20405,2.80077 -4.05828,6.85783 -4.83946,10.8539 -0.56376,2.88391 -0.43402,6.21665 -0.30304,9.17395 0.13063,2.94957 -1.22744,4.8716 -2.1699,7.06387 -0.71431,1.66158 -1.59845,2.3469 -1.94549,4.12219"
1766
+ style="fill:none;stroke:#130500;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1767
+ <path
1768
+ inkscape:connector-curvature="0"
1769
+ id="path2749-7"
1770
+ d="m 83.298503,146.42563 c -0.44182,2.26011 -3.13113,7.04802 -3.79384,10.4381 -0.63334,3.23987 0.66535,7.01465 0.80735,10.22064 0.15964,3.60465 -0.81674,6.68385 -3.13455,9.30776 -1.50274,1.7012 -2.4588,3.93538 -4.00434,5.68503"
1771
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1772
+ <path
1773
+ inkscape:connector-curvature="0"
1774
+ id="path2703-6"
1775
+ d="m 79.293003,148.08049 c -0.88078,0.99711 -1.40144,8.3981 -1.2677,11.41785 0.11305,2.55259 0.54676,5.18077 -0.38401,7.34587 -1.111,2.5843 -2.35429,3.97099 -2.89396,6.7317 -0.20516,1.04946 -0.3675,1.87993 -0.57833,2.95841"
1776
+ style="fill:none;stroke:#2f1e00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1777
+ <path
1778
+ inkscape:connector-curvature="0"
1779
+ id="path2781-7"
1780
+ d="m 96.106163,151.31611 c -1.5676,3.64645 -0.59651,10.55611 -0.41409,14.67498 0.13797,3.11499 0.28149,6.81768 -0.64078,9.5563 -0.74717,2.21864 -1.39638,4.45234 -1.83215,6.68153 -0.4265,2.18173 -0.87626,4.2397 -0.77034,6.63134"
1781
+ style="fill:none;stroke:#130500;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1782
+ <path
1783
+ inkscape:connector-curvature="0"
1784
+ id="path2783-1"
1785
+ d="m 106.09737,152.67584 c -0.94346,4.82619 0.61347,13.85151 0.89062,20.10909 0.13382,3.0217 0.61188,5.80725 0.74257,8.75816 0.11989,2.70694 0.58792,5.26643 0.71018,8.02691 0.0108,0.24374 0.0216,0.48749 0.0324,0.73124"
1786
+ style="fill:none;stroke:#130500;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1787
+ <path
1788
+ inkscape:connector-curvature="0"
1789
+ id="path2785-7"
1790
+ d="m 114.89721,151.16078 c 0.14339,3.23762 -3.15162,6.13847 1.16128,10.20391 3.53446,3.33165 4.75296,3.09395 6.00305,7.41038 0.94242,3.25404 -0.46285,5.56568 -0.31924,8.80833 0.0702,1.58436 0.14034,3.16871 0.21051,4.75306"
1791
+ style="fill:none;stroke:#130500;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1792
+ <path
1793
+ inkscape:connector-curvature="0"
1794
+ id="path2757-1"
1795
+ d="m 105.84059,154.88628 c 0.37478,8.46227 8.30827,19.41863 8.72812,28.89833 0.0918,2.07184 0.18352,4.14369 0.27529,6.21553 0.005,0.12189 0.23595,-0.0112 0.35393,-0.0167"
1796
+ style="fill:none;stroke:#2f1e00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1797
+ <path
1798
+ inkscape:connector-curvature="0"
1799
+ id="path2755-8"
1800
+ d="m 102.63896,154.67122 c -1.5646,8.00365 -2.43495,17.09547 -2.00334,26.84079 0.15835,3.57519 1.71898,6.77971 1.88535,10.53609"
1801
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1802
+ <path
1803
+ inkscape:connector-curvature="0"
1804
+ id="path2709-6"
1805
+ d="m 99.180554,156.66659 c -0.63128,4.26644 -3.798341,10.3362 -3.534741,16.288 0.10202,2.30356 0.87822,3.81286 0.98315,6.1821 0.0915,2.06681 0.14127,3.89456 0.59684,5.46757"
1806
+ style="fill:none;stroke:#2f1e00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1807
+ <path
1808
+ inkscape:connector-curvature="0"
1809
+ id="path2787-8"
1810
+ d="m 122.21654,148.25017 c 0.14297,3.22817 2.4705,5.7445 5.00601,8.92304 2.37455,2.97676 3.1969,8.11657 3.36587,11.93163 0.15077,3.40426 1.05532,6.51066 2.17451,9.05687 0.28076,0.63874 0.54245,1.00326 0.77265,1.42902"
1811
+ style="fill:none;stroke:#130500;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1812
+ <path
1813
+ inkscape:connector-curvature="0"
1814
+ id="path2761-0"
1815
+ d="m 118.29084,147.70292 c 0.88549,3.05747 2.20171,5.24101 5.0384,9.65428 1.46086,2.2728 0.1908,8.84543 0.87212,11.68313 0.58812,2.44953 2.11418,4.20295 2.76903,6.46407"
1816
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1817
+ <path
1818
+ inkscape:connector-curvature="0"
1819
+ id="path2715-7"
1820
+ d="m 116.28058,150.36264 c 0.74784,2.5822 1.06903,8.62698 1.96631,12.36417 0.73152,3.04678 2.65832,4.22355 3.50929,7.16185 0.91671,3.16526 2.00298,5.18368 2.15832,8.69124 0.10059,2.27115 0.55454,4.51249 0.66161,6.93006"
1821
+ style="fill:none;stroke:#3c2600;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1822
+ <path
1823
+ inkscape:connector-curvature="0"
1824
+ sodipodi:nodetypes="csssc"
1825
+ id="path2789-8"
1826
+ d="m 94.837183,107.78165 c -1.51463,3.12926 -2.81278,3.54944 -3.41036,6.01867 -0.54674,2.25913 -1.04307,3.93618 -1.04307,7.00372 0,1.50152 6.69478,1.61624 7.823001,1.61624 2.646086,0 5.567526,-2.69374 8.344526,-2.69374"
1827
+ style="fill:none;stroke:#000000;stroke-width:4.49779892;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1828
+ <path
1829
+ inkscape:connector-curvature="0"
1830
+ sodipodi:nodetypes="csccssc"
1831
+ id="path2791-6"
1832
+ d="m 81.532803,83.849388 c -6.44249,1.00711 -10.87369,7.87225 -9.92437,15.45055 0.2371,1.892792 0.78719,3.653002 1.58112,5.219292 12.49996,4.19981 16.12593,-0.47437 21.96438,-2.93607 0.38183,-1.723452 0.48006,-3.570332 0.24296,-5.463122 -0.96058,-7.66815 -7.07116,-13.17869 -13.6378,-12.3009 -0.077,0.0103 -0.1499,0.0183 -0.22629,0.0303 z"
1833
+ style="fill:url(#linearGradient2812-2);fill-opacity:1;stroke:#130500;stroke-width:3.42857146;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1834
+ <path
1835
+ inkscape:connector-curvature="0"
1836
+ sodipodi:nodetypes="csccssc"
1837
+ style="fill:url(#linearGradient2810-9);fill-opacity:1;stroke:#130500;stroke-width:3.42857146;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1838
+ d="m 114.43999,84.901418 c -6.48929,-0.60696 -12.37582,4.97039 -13.2011,12.56417 -0.20613,1.89666 -0.0777,3.741562 0.33224,5.458102 6.76746,4.26454 14.2292,4.36342 22.00925,2.55244 0.76821,-1.57991 1.28944,-3.34947 1.49556,-5.24612 0.83507,-7.683822 -3.82915,-14.539202 -10.40919,-15.302302 -0.0771,-0.009 -0.14981,-0.0191 -0.22676,-0.0263 z"
1839
+ id="path2796-6" />
1840
+ <path
1841
+ inkscape:connector-curvature="0"
1842
+ sodipodi:nodetypes="csc"
1843
+ id="path2798-9"
1844
+ d="m 82.588833,102.41873 c -0.47776,-3.976372 -1.96716,-4.089122 2.01727,-5.118102 2.74693,-0.7094 2.31421,2.15859 3.09477,3.771232"
1845
+ style="fill:none;stroke:#000000;stroke-width:4.49779892;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1846
+ <path
1847
+ inkscape:connector-curvature="0"
1848
+ sodipodi:nodetypes="csc"
1849
+ id="path2800-6"
1850
+ d="m 109.27036,102.2464 c 1.66176,-1.34379 1.35682,-5.605182 5.38914,-4.104742 0.43033,0.16013 -0.18668,4.901612 0.23992,5.571972"
1851
+ style="fill:none;stroke:#000000;stroke-width:4.49779892;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1852
+ <path
1853
+ inkscape:connector-curvature="0"
1854
+ id="path2802-1"
1855
+ d="m 105.13352,141.20076 c 2.93097,0.60636 12.40598,2.56658 18.40963,3.80863 5.57561,1.15349 9.83108,3.13276 15.13653,4.23037 5.18914,1.07354 10.71342,3.31531 16.15928,4.44196 4.69221,0.97074 10.05929,3.17998 15.13652,4.23037 8.10594,1.67698 7.30205,3.08386 2.86205,7.18546 -7.35901,6.79815 4.19521,5.31196 4.29447,5.28402 1.96003,-0.55163 3.38655,-6.49393 1.2262,4.64925 -1.25465,6.4715 -6.53967,3.04262 -12.06964,1.89857 -5.53098,-1.14426 -10.59462,-2.41096 -13.90894,-5.0753 -3.73215,-3.00021 -8.31769,-4.65116 -12.47652,-6.97674 -5.41648,-3.02883 -10.00394,-4.03082 -14.72687,-6.3434 -4.91091,-2.40463 -9.79851,-3.06263 -13.90894,-5.0753 -2.56803,-1.25744 -5.53919,-8.93638 -6.13377,-12.25789 z"
1856
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4.49779892;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1857
+ <path
1858
+ inkscape:connector-curvature="0"
1859
+ sodipodi:nodetypes="cssssssc"
1860
+ id="path2814-8"
1861
+ d="m 167.68183,164.28483 c -1.86327,1.47682 -3.87086,5.75833 -4.69379,9.15872 -0.79954,3.3037 3.04484,4.24463 5.21533,5.92623 1.82935,1.4173 6.98791,0.53875 9.38759,0.53875 2.47391,0 3.55043,-3.35678 4.17227,-5.92623 0.55943,-2.3116 0.52153,-4.92029 0.52153,-7.54247 0,-2.76288 -4.63052,-8.08123 -6.77993,-8.08123 -2.70774,0 -5.14599,5.37316 -7.823,5.92623 z"
1862
+ style="fill:url(#linearGradient2822-1);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4.49779892;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1863
+ <path
1864
+ inkscape:connector-curvature="0"
1865
+ id="path4063-5"
1866
+ d="m 75.428583,78.476188 c 2.95914,-2.50427 9.73171,-4.03938 14.47619,-5.33333"
1867
+ style="fill:none;stroke:#000000;stroke-width:4.57142878;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1868
+ <path
1869
+ inkscape:connector-curvature="0"
1870
+ id="path4065-9"
1871
+ d="m 107.80953,74.666668 c 2.15864,-0.87008 7.90175,1.56069 10.66667,2.66666 0.91915,0.36766 1.91664,1.07379 2.66667,1.52381"
1872
+ style="fill:none;stroke:#000000;stroke-width:4.57142878;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1873
+ </g>
1874
+ <g
1875
+ id="BlackQueen">
1876
+ <rect
1877
+ y="0"
1878
+ x="200"
1879
+ height="200"
1880
+ width="200"
1881
+ id="rect5056-4"
1882
+ style="fill:none;stroke:none" />
1883
+ <path
1884
+ inkscape:connector-curvature="0"
1885
+ sodipodi:nodetypes="cccccccccc"
1886
+ id="path2901-0"
1887
+ d="m 236.05081,108.07946 c -3.63973,17.98871 -2.38687,34.80685 -16.20264,49.50303 -8.90333,9.28155 -4.18375,28.44858 8.26516,17.03677 13.54195,-10.23619 22.19631,-2.1647 36.79003,-4.96836 19.62014,4.5953 49.19054,9.49779 70.02323,6.96213 22.49327,-9.96108 39.58161,11.71025 50.09875,-7.52046 -5.16347,-13.36414 -20.35832,-19.76076 -18.99545,-38.32677 1.76301,-22.60476 -9.21524,-49.131249 -30.59752,-59.023409 -17.88217,-6.52548 -39.88302,-8.94871 -57.39638,-0.47055 -10.46246,1.40054 -34.3536,43.331849 -41.98518,36.807619 z"
1888
+ style="fill:url(#linearGradient2944-3);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1889
+ <path
1890
+ inkscape:connector-curvature="0"
1891
+ id="path2950-4"
1892
+ d="m 239.79606,129.8858 c 0.77619,2.20047 0.62378,7.8967 0,11.63946 -0.43375,2.60259 -2.2076,4.3965 -2.77124,6.65113 -0.59396,2.37588 -2.77294,4.06684 -3.87974,5.5426 -1.63366,2.17826 -2.89351,4.00209 -4.43399,5.5426 -2.10799,2.10804 -1.34117,4.37591 1.1085,4.98834 1.67177,0.41795 6.04622,-2.75867 8.31373,-3.32556 2.39723,-0.59932 3.87974,-5.76723 3.87974,-7.75964 0,-1.96445 2.28132,-4.00848 3.32549,-6.09686 1.33544,-2.67096 2.5272,2.0847 2.21699,3.32556 -0.7817,3.12685 1.42684,5.86096 2.77124,7.20538 2.99251,2.99258 6.09673,-4.26211 6.09673,-4.98834 0,-3.71474 2.54797,-1.55509 3.87974,1.10852 1.00335,2.00675 1.15498,4.48057 2.77124,6.09686 0.29211,0.29212 0.3695,0.73901 0.55425,1.10852"
1893
+ style="fill:none;stroke:#000000;stroke-width:1.82857168;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1894
+ <path
1895
+ inkscape:connector-curvature="0"
1896
+ id="path2952-0"
1897
+ d="m 358.95946,136.53692 c 2.3551,2.35516 -0.25355,6.74544 0.55424,9.97669 0.8985,3.59405 3.3665,6.13786 5.54249,8.3139 1.65654,1.65658 2.94812,4.0567 4.43398,5.5426 1.54586,1.54589 2.27857,3.57189 2.77124,5.5426 0.83037,3.32152 -1.37651,2.84286 -3.87974,2.21704 -3.10361,-0.77592 -8.05028,-4.46144 -9.42221,-7.20538 -1.17407,-2.34818 -2.3188,-4.63769 -3.3255,-6.65112 -2.09722,-4.19455 -4.30065,-2.35038 -6.09673,-0.55426 -2.90985,2.90991 -3.87974,2.1863 -3.87974,6.65112 0,2.74437 -1.10681,2.49333 -3.87973,3.87982 -2.97791,1.48899 -4.56659,2.56047 -7.20523,3.87982"
1898
+ style="fill:none;stroke:#000000;stroke-width:1.82857168;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1899
+ <path
1900
+ inkscape:connector-curvature="0"
1901
+ sodipodi:nodetypes="csssc"
1902
+ id="path2374-6"
1903
+ d="m 302.71887,43.943261 c -26.53598,0 -48.07501,31.32918 -48.07501,69.940749 0,38.61157 31.23891,69.28255 48.07501,69.94982 15.87379,0.62914 48.07503,-31.33824 48.07503,-69.94982 0,-38.611569 -21.53905,-69.940739 -48.07503,-69.940749 z"
1904
+ style="fill:url(#linearGradient2382-0);fill-opacity:1;stroke:#000000;stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1905
+ <path
1906
+ inkscape:connector-curvature="0"
1907
+ sodipodi:nodetypes="csc"
1908
+ id="path3412-2"
1909
+ d="m 299.51403,119.07221 c -0.82886,8.82491 -9.54159,19.20139 -3.12041,24.95407 3.66256,3.28127 9.82405,2.2602 11.86837,2.2602"
1910
+ style="fill:none;stroke:#000000;stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1911
+ <path
1912
+ inkscape:connector-curvature="0"
1913
+ sodipodi:nodetypes="ccsscsssss"
1914
+ id="path3433-2"
1915
+ d="m 300.59355,42.791091 c -15.59707,-0.1484 -39.23599,3.18305 -47.61233,18.23197 -9.94854,19.95926 -18.31861,22.15947 -15.3567,46.082309 2.17762,17.58835 16.26241,30.92755 17.4349,17.39377 0.85559,-9.87586 3.50144,-26.939189 7.23376,-36.388109 6.33185,-19.91146 19.0705,-26.78053 40.00158,-27.48134 22.61469,-0.75718 35.17611,7.35495 42.77695,25.08427 6.76748,15.785499 1.73822,28.209219 8.03774,42.731089 1.90951,4.40186 13.6383,-13.9347 8.64203,-43.188899 -4.81965,-35.46703 -28.99587,-39.09721 -61.15793,-42.46506 z"
1916
+ style="fill:#402000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1917
+ <path
1918
+ inkscape:connector-curvature="0"
1919
+ id="path2823-7"
1920
+ d="m 346.64213,124.76919 c -2.07921,2.11711 -3.64218,10.95381 -3.64218,21.5293 0,12.15294 2.06469,22.01922 4.60496,22.01922 2.54026,0 4.60495,-9.86628 4.60495,-22.01922 0,-8.06065 -0.90957,-15.1074 -2.2616,-18.94361 3.03682,4.96979 5.16808,16.56906 5.16808,30.0757 0,18.02909 -3.80385,32.6614 -8.48329,32.66139 -4.67943,0 -8.47421,-14.6323 -8.47421,-32.66139 0,-18.02909 3.79478,-32.66139 8.47421,-32.66139 0.003,0 0.006,-2e-5 0.009,0 z"
1921
+ style="opacity:0.98999999;fill:#a0a000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
1922
+ <path
1923
+ inkscape:connector-curvature="0"
1924
+ sodipodi:nodetypes="csc"
1925
+ id="path4323-2"
1926
+ d="m 322.75018,154.82239 c -0.89702,0.41978 -11.61548,4.4757 -19.67162,4.60909 -7.22428,0.11961 -17.08891,-3.36669 -18.23068,-3.65165"
1927
+ style="fill:none;stroke:#000000;stroke-width:3.65714407;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1928
+ <path
1929
+ inkscape:connector-curvature="0"
1930
+ sodipodi:nodetypes="cscsssc"
1931
+ id="path1928-7"
1932
+ d="m 236.40463,115.80002 c 11.22802,-23.917369 37.01504,-47.550289 68.52902,-45.631999 22.12646,1.34686 51.37881,13.04053 59.94488,44.495429 8.57058,-12.4026 2.32072,-23.679499 -2.28515,-41.915859 -6.14453,-24.3284 -28.57691,-46.17238 -60.31456,-45.39069 -31.75878,0.7822 -50.16583,18.89624 -57.50093,43.91292 -5.89126,20.09242 -12.2522,17.6582 -8.37326,44.530199 z"
1933
+ style="fill:url(#linearGradient2936-4);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1934
+ <path
1935
+ inkscape:connector-curvature="0"
1936
+ style="opacity:0.98999999;fill:#a0a000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1937
+ d="m 255.10666,123.96558 c -2.07921,2.11712 -3.64219,10.95382 -3.64219,21.52931 0,12.15294 2.06469,22.01922 4.60496,22.01922 2.54026,0 4.60496,-9.86628 4.60496,-22.01922 0,-8.06065 -0.90958,-15.1074 -2.26161,-18.94361 3.03682,4.96979 5.16809,16.56906 5.16809,30.0757 0,18.02909 -3.80386,32.6614 -8.4833,32.66139 -4.67943,0 -8.47421,-14.6323 -8.47421,-32.66139 0,-18.02909 3.79478,-32.6614 8.47421,-32.6614 0.003,0 0.006,-1e-5 0.009,0 z"
1938
+ id="path2828-5" />
1939
+ <path
1940
+ inkscape:connector-curvature="0"
1941
+ style="fill:#808080;fill-opacity:1;stroke:#000000;stroke-width:2.74285769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1942
+ d="m 297.49097,109.18643 c 1.57362,2.29269 -0.0639,4.46234 -1.7474,6.73509 -6.2051,2.79307 -18.40681,4.36645 -26.78441,-2.79722 -4.70777,-4.02561 6.46981,-10.33129 14.4572,-10.16799 9.08642,0.18011 11.56432,2.57277 14.07461,6.23012 z"
1943
+ id="path2860-1"
1944
+ sodipodi:nodetypes="ccsss" />
1945
+ <path
1946
+ sodipodi:type="arc"
1947
+ style="fill:#000000;fill-opacity:1;stroke:#713e01;stroke-width:13.15185261;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1948
+ id="path2862-9"
1949
+ sodipodi:cx="361.66666"
1950
+ sodipodi:cy="545"
1951
+ sodipodi:rx="20"
1952
+ sodipodi:ry="20"
1953
+ d="m 381.66666,545 a 20,20 0 1 1 -40,0 20,20 0 1 1 40,0 z"
1954
+ transform="matrix(-0.2368784,-0.00369816,-0.00419688,0.18354903,372.43798,12.735891)" />
1955
+ <path
1956
+ inkscape:connector-curvature="0"
1957
+ style="fill:none;stroke:#000000;stroke-width:2.74285769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1958
+ d="m 295.46948,104.52742 c -0.18142,-0.79881 1.16947,-3.19582 1.51283,-4.40123"
1959
+ id="path2864-0" />
1960
+ <path
1961
+ inkscape:connector-curvature="0"
1962
+ style="fill:none;stroke:#000000;stroke-width:2.74285769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1963
+ d="m 289.28307,101.65096 c 0.22832,-1.16564 0.6858,-5.682919 0.58778,-7.491229"
1964
+ id="path2866-0"
1965
+ sodipodi:nodetypes="cs" />
1966
+ <path
1967
+ inkscape:connector-curvature="0"
1968
+ style="fill:none;stroke:#000000;stroke-width:2.74285769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1969
+ d="m 282.75137,100.7352 c 0.0717,-0.25172 -1.47328,-6.169209 -0.77069,-11.296229"
1970
+ id="path2868-6"
1971
+ sodipodi:nodetypes="cc" />
1972
+ <path
1973
+ inkscape:connector-curvature="0"
1974
+ style="fill:none;stroke:#000000;stroke-width:2.74285769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1975
+ d="m 276.05167,102.57566 c 0.0112,-0.34569 -2.63744,-4.336089 -2.90461,-5.571559 -0.38708,-1.78989 -0.5207,-3.97975 -0.85052,-5.50491"
1976
+ id="path2870-2"
1977
+ sodipodi:nodetypes="css" />
1978
+ <path
1979
+ inkscape:connector-curvature="0"
1980
+ style="fill:none;stroke:#000000;stroke-width:2.74285769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1981
+ d="m 270.24658,105.02703 c -0.20228,-0.41123 -2.47714,-0.95812 -2.95217,-3.16619 -0.0759,-0.35259 -1.31743,-2.565409 -1.50101,-2.875919"
1982
+ id="path2872-0"
1983
+ sodipodi:nodetypes="csc" />
1984
+ <path
1985
+ inkscape:connector-curvature="0"
1986
+ sodipodi:nodetypes="csc"
1987
+ id="path2874-2"
1988
+ d="m 256.54086,119.31652 c -1.26336,9.02521 -4.59832,26.21981 2.71071,21.2151 4.63503,-3.17374 -2.2364,-11.36317 2.12825,-24.76293"
1989
+ style="fill:url(#linearGradient2891-1);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1990
+ <path
1991
+ inkscape:connector-curvature="0"
1992
+ style="fill:url(#linearGradient2895-6);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1993
+ d="m 349.30456,120.97931 c 1.26337,9.0252 4.59832,26.2198 -2.7107,21.21509 -4.63503,-3.17374 2.2364,-11.36317 -2.12825,-24.76293"
1994
+ id="path2893-4"
1995
+ sodipodi:nodetypes="csc" />
1996
+ <path
1997
+ inkscape:connector-curvature="0"
1998
+ sodipodi:nodetypes="cc"
1999
+ id="path2897-9"
2000
+ d="m 271.13079,87.269441 c 7.11907,-2.38935 14.68666,-3.88166 23.27843,-3.32556"
2001
+ style="fill:none;stroke:#000000;stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2002
+ <path
2003
+ inkscape:connector-curvature="0"
2004
+ sodipodi:nodetypes="ccsss"
2005
+ id="path2908-9"
2006
+ d="m 307.18857,109.57835 c -1.57362,2.29269 0.0639,4.46234 1.7474,6.73509 6.2051,2.79307 18.40681,4.36646 26.78441,-2.79722 4.70777,-4.0256 -6.46981,-10.33129 -14.4572,-10.16799 -9.08642,0.18011 -11.56432,2.57277 -14.07461,6.23012 z"
2007
+ style="fill:#808080;fill-opacity:1;stroke:#000000;stroke-width:2.74285769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2008
+ <path
2009
+ transform="matrix(0.2368784,-0.00369816,0.00419688,0.18354903,232.24145,13.127811)"
2010
+ d="m 381.66666,545 a 20,20 0 1 1 -40,0 20,20 0 1 1 40,0 z"
2011
+ sodipodi:ry="20"
2012
+ sodipodi:rx="20"
2013
+ sodipodi:cy="545"
2014
+ sodipodi:cx="361.66666"
2015
+ id="path2910-9"
2016
+ style="fill:#000000;fill-opacity:1;stroke:#713e01;stroke-width:13.15185261;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2017
+ sodipodi:type="arc" />
2018
+ <path
2019
+ inkscape:connector-curvature="0"
2020
+ id="path2912-5"
2021
+ d="m 309.21006,104.91935 c 0.18142,-0.79881 -1.16947,-3.19583 -1.51283,-4.40124"
2022
+ style="fill:none;stroke:#000000;stroke-width:2.74285769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2023
+ <path
2024
+ inkscape:connector-curvature="0"
2025
+ sodipodi:nodetypes="cs"
2026
+ id="path2914-0"
2027
+ d="m 315.39647,102.04289 c -0.22833,-1.16565 -0.68581,-5.682929 -0.58779,-7.491239"
2028
+ style="fill:none;stroke:#000000;stroke-width:2.74285769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2029
+ <path
2030
+ inkscape:connector-curvature="0"
2031
+ sodipodi:nodetypes="cc"
2032
+ id="path2916-3"
2033
+ d="m 321.92817,101.12712 c -0.0717,-0.25172 1.47328,-6.169199 0.77069,-11.296229"
2034
+ style="fill:none;stroke:#000000;stroke-width:2.74285769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2035
+ <path
2036
+ inkscape:connector-curvature="0"
2037
+ sodipodi:nodetypes="css"
2038
+ id="path2918-7"
2039
+ d="m 328.62787,102.96758 c -0.0111,-0.34569 2.63743,-4.336089 2.90461,-5.571559 0.38707,-1.78989 0.52069,-3.97975 0.85052,-5.5049"
2040
+ style="fill:none;stroke:#000000;stroke-width:2.74285769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2041
+ <path
2042
+ inkscape:connector-curvature="0"
2043
+ sodipodi:nodetypes="csc"
2044
+ id="path2920-0"
2045
+ d="m 334.43296,105.41895 c 0.20228,-0.41123 2.47713,-0.95812 2.95217,-3.16619 0.0759,-0.35259 1.31742,-2.565409 1.50101,-2.875909"
2046
+ style="fill:none;stroke:#000000;stroke-width:2.74285769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2047
+ <path
2048
+ inkscape:connector-curvature="0"
2049
+ style="fill:none;stroke:#000000;stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2050
+ d="m 333.54875,87.661361 c -7.11908,-2.38935 -14.68666,-3.88165 -23.27843,-3.32556"
2051
+ id="path2922-4"
2052
+ sodipodi:nodetypes="cc" />
2053
+ <path
2054
+ inkscape:connector-curvature="0"
2055
+ sodipodi:nodetypes="csc"
2056
+ id="path2924-9"
2057
+ d="m 247.72344,80.859041 c 10.87663,-11.26199 34.43608,-23.475 52.50631,-22.69611 27.46749,1.18395 44.84324,10.40555 59.28395,25.16501"
2058
+ style="fill:none;stroke:#000000;stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2059
+ </g>
2060
+ <g
2061
+ id="BlackRook">
2062
+ <rect
2063
+ y="0"
2064
+ x="400"
2065
+ height="200"
2066
+ width="200"
2067
+ id="rect5056-11"
2068
+ style="fill:none;stroke:none" />
2069
+ <path
2070
+ inkscape:connector-curvature="0"
2071
+ style="opacity:0.98999999;fill:url(#linearGradient3360-9);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2072
+ d="m 408.83651,111.60555 0,38.71019 c -0.1705,0.26226 -0.2594,0.52945 -0.2594,0.80287 0,2.91645 10.0645,5.28601 22.4613,5.28601 11.3669,0 20.7659,-1.99046 22.25,-4.56935 l 0.6292,0 0,-40.22972 -45.0811,0 z"
2073
+ id="path3356-1" />
2074
+ <path
2075
+ sodipodi:type="arc"
2076
+ style="opacity:0.98999999;fill:url(#linearGradient3362-4);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:19.3214283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2077
+ id="path3358-0"
2078
+ sodipodi:cx="579.82758"
2079
+ sodipodi:cy="321.0997"
2080
+ sodipodi:rx="146.13541"
2081
+ sodipodi:ry="30.641294"
2082
+ d="m 725.96298,321.0997 a 146.13541,30.641294 0 1 1 -292.27081,0 146.13541,30.641294 0 1 1 292.27081,0 z"
2083
+ transform="matrix(0.15368023,0,0,0.23312411,341.92811,37.424291)" />
2084
+ <path
2085
+ inkscape:connector-curvature="0"
2086
+ sodipodi:nodetypes="cc"
2087
+ id="path3333-2"
2088
+ d="m 442.45931,97.282891 0,91.342699"
2089
+ style="fill:none;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2090
+ <path
2091
+ inkscape:connector-curvature="0"
2092
+ style="fill:url(#linearGradient3354-1);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714216;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2093
+ d="m 472.83021,85.820301 c -19.2843,6.91923 -36.4764,9.82768 -58.833,0.1014 9.1018,4.72028 21.9032,9.07537 29.1727,13.84148 11.6225,-6.61275 16.0903,-8.63103 29.6603,-13.94288 z"
2094
+ id="path3344-1"
2095
+ sodipodi:nodetypes="cccc" />
2096
+ <path
2097
+ inkscape:connector-curvature="0"
2098
+ sodipodi:nodetypes="cccc"
2099
+ id="path3335-2"
2100
+ d="m 412.96821,80.962271 c 18.5954,7.80874 35.5378,9.01883 58.8299,0.60847 -9.0442,-4.82975 -21.7921,-9.33899 -29.0035,-14.19246 -11.7015,6.47203 -16.1933,8.43625 -29.8264,13.58399 z"
2101
+ style="fill:url(#linearGradient3352-3);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2102
+ <path
2103
+ sodipodi:type="arc"
2104
+ style="opacity:0.98999999;fill:url(#linearGradient3306-1);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:14.78016663;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2105
+ id="path3279-5"
2106
+ sodipodi:cx="478.47559"
2107
+ sodipodi:cy="691.15222"
2108
+ sodipodi:rx="167.3486"
2109
+ sodipodi:ry="150.84944"
2110
+ d="m 645.82419,691.15222 a 167.3486,150.84944 0 1 1 -334.69721,0 167.3486,150.84944 0 1 1 334.69721,0 z"
2111
+ transform="matrix(0.24144869,0,0,0.25357143,365.93191,-30.932369)" />
2112
+ <path
2113
+ inkscape:connector-curvature="0"
2114
+ style="opacity:0.98999999;fill:url(#linearGradient3329-4);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2115
+ d="m 540.82361,95.354171 0,31.794789 c -0.1705,0.21541 -0.2594,0.43487 -0.2594,0.65944 0,2.39544 10.0645,4.34169 22.4614,4.34169 11.3668,0 20.7658,-1.63487 22.25,-3.75306 l 0.6291,0 0,-33.042859 -45.0811,0 z"
2116
+ id="path3325-7" />
2117
+ <path
2118
+ inkscape:connector-curvature="0"
2119
+ id="path3310-3"
2120
+ d="m 518.00571,112.63067 0,40.56701 c -0.1963,0.27484 -0.2986,0.55485 -0.2986,0.84139 0,3.05634 11.5866,5.53956 25.8584,5.53956 13.0859,0 23.9064,-2.08593 25.615,-4.78853 l 0.7243,0 0,-42.15943 -51.8991,0 z"
2121
+ style="opacity:0.98999999;fill:url(#linearGradient3321-7);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714455;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
2122
+ <path
2123
+ transform="matrix(0.24144869,0,0,0.25357143,372.39691,-22.312389)"
2124
+ d="m 645.82419,691.15222 a 167.3486,150.84944 0 1 1 -334.69721,0 167.3486,150.84944 0 1 1 334.69721,0 z"
2125
+ sodipodi:ry="150.84944"
2126
+ sodipodi:rx="167.3486"
2127
+ sodipodi:cy="691.15222"
2128
+ sodipodi:cx="478.47559"
2129
+ id="path3277-5"
2130
+ style="opacity:0.98999999;fill:url(#linearGradient3298-9);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:14.78016663;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2131
+ sodipodi:type="arc" />
2132
+ <path
2133
+ transform="matrix(0.17692229,0,0,0.21002446,440.97831,45.799811)"
2134
+ d="m 725.96298,321.0997 a 146.13541,30.641294 0 1 1 -292.27081,0 146.13541,30.641294 0 1 1 292.27081,0 z"
2135
+ sodipodi:ry="30.641294"
2136
+ sodipodi:rx="146.13541"
2137
+ sodipodi:cy="321.0997"
2138
+ sodipodi:cx="579.82758"
2139
+ id="path3308-0"
2140
+ style="opacity:0.98999999;fill:url(#linearGradient3323-1);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:18.97210884;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2141
+ sodipodi:type="arc" />
2142
+ <path
2143
+ sodipodi:type="arc"
2144
+ style="opacity:0.98999999;fill:url(#linearGradient3331-3);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:21.31934929;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2145
+ id="path3327-1"
2146
+ sodipodi:cx="579.82758"
2147
+ sodipodi:cy="321.0997"
2148
+ sodipodi:rx="146.13541"
2149
+ sodipodi:ry="30.641294"
2150
+ d="m 725.96298,321.0997 a 146.13541,30.641294 0 1 1 -292.27081,0 146.13541,30.641294 0 1 1 292.27081,0 z"
2151
+ transform="matrix(0.15368023,0,0,0.19147749,473.91531,34.425031)" />
2152
+ <path
2153
+ inkscape:connector-curvature="0"
2154
+ sodipodi:nodetypes="cccccccccc"
2155
+ id="path3364-5"
2156
+ d="m 482.44261,62.257891 c -7.82,-1.61883 -15.4664,-12.02999 -20.7157,-3.79575 -3.9485,8.88953 12.6684,13.03963 17.679,19.49034 2.2767,6.98894 -2.7432,18.69454 4.6917,23.154259 7.3928,-2.535749 25.2092,6.4227 31.2996,0.87008 -2.6643,-9.772839 6.2773,-23.338549 22.4244,-22.877809 7.0337,0.46889 11.3116,-16.6733 1.485,-14.53824 -18.0762,7.1183 -32.1401,-0.52696 -29.3451,-8.54715 -4.0826,-5.63761 -5.0833,-3.85805 -11.0465,-4.7621 -0.9551,6.94224 -4.9886,13.13394 -16.4724,11.00637 z"
2157
+ style="fill:url(#linearGradient3388-0);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2158
+ <path
2159
+ inkscape:connector-curvature="0"
2160
+ sodipodi:nodetypes="ccccc"
2161
+ id="path3366-8"
2162
+ d="m 489.98131,37.031001 c -1.1947,-6.24699 5.2505,-9.51937 10.1595,-6.28946 6.1886,2.14002 12.7974,7.45433 12.019,14.69116 0.7401,5.10086 -3.7575,11.70319 -9.2819,8.34355 -9.2733,-2.0365 -11.0818,-7.17099 -12.8966,-16.74525 z"
2163
+ style="fill:url(#linearGradient3390-8);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2164
+ <path
2165
+ inkscape:connector-curvature="0"
2166
+ sodipodi:nodetypes="csssssssssssssssssc"
2167
+ id="path3368-6"
2168
+ d="m 495.89711,36.220621 c -4.1849,-1.04623 -3.2012,6.05129 -2.155,10.23621 1.1642,4.65684 2.4717,4.63487 -2.6937,5.92623 -4.175,1.04376 -2.7344,-0.22363 -7.0037,-1.07749 -4.5832,-0.91664 -3.8177,-0.62793 -8.0813,1.07749 -0.7524,0.30096 -6.0919,-1.5906 -8.0812,-1.61624 -6.2236,-0.0802 24.1369,-5.19167 12.93,-15.6237 -2.8467,-2.64985 5.7855,-6.44104 6.4649,-9.15871 1.1509,-4.60331 4.439,-3.77124 8.62,-3.77124 3.4542,0 4.9613,3.23249 9.6975,3.23249 5.1219,0 7.6884,0.68469 10.2362,3.23249 1.4774,1.47739 3.2325,8.25854 3.2325,10.77496 0,2.59866 6.3239,8.47893 7.5425,9.69746 6.2466,6.2467 1.6903,5.92623 -4.31,5.92623 -10.5163,0 -3.1846,-1.56837 -8.0813,-6.46497 -1.5923,-1.59231 -2.1328,-6.42077 -3.2324,-8.61997 -0.3133,-0.62643 -5.5976,-4.52008 -6.465,-5.38748 -1.698,-1.69798 -1.7776,-2.69374 -5.3875,-2.69374 -3.1766,0 0.615,3.54048 -3.2325,4.30998 z"
2169
+ style="fill:url(#linearGradient3398-1);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2170
+ <path
2171
+ inkscape:connector-curvature="0"
2172
+ id="path3400-7"
2173
+ d="m 466.26601,59.925531 -21.0112,-12.3912"
2174
+ style="fill:none;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2175
+ <path
2176
+ inkscape:connector-curvature="0"
2177
+ id="path3402-1"
2178
+ d="m 540.07451,71.239241 25.3211,-11.85245"
2179
+ style="fill:none;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2180
+ </g>
2181
+ <g
2182
+ id="BlackBishop">
2183
+ <rect
2184
+ y="0"
2185
+ x="600"
2186
+ height="200"
2187
+ width="200"
2188
+ id="rect5056-71"
2189
+ style="fill:none;stroke:none" />
2190
+ <path
2191
+ transform="matrix(0.20911451,0,0,0.18432023,617.55919,-21.581012)"
2192
+ d="m 584.54161,889.14215 a 212.13203,292.27081 0 1 1 -424.26407,0 212.13203,292.27081 0 1 1 424.26407,0 z"
2193
+ sodipodi:ry="292.27081"
2194
+ sodipodi:rx="212.13203"
2195
+ sodipodi:cy="889.14215"
2196
+ sodipodi:cx="372.40958"
2197
+ id="path3173-7"
2198
+ style="fill:url(#linearGradient4056);fill-opacity:1;stroke:#000000;stroke-width:23.28484535;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2199
+ sodipodi:type="arc" />
2200
+ <path
2201
+ inkscape:connector-curvature="0"
2202
+ sodipodi:nodetypes="ccccccccccccssc"
2203
+ id="path2899-8"
2204
+ d="m 669.09939,118.06983 c -4.5078,-29.197372 -24.5661,-42.233322 -41.9226,-73.666112 11.4297,-4.77019 24.5214,3.8145 33.9586,15.62662 -1.9888,-11.84117 -0.9555,-27.20763 -4.075,-41.4109 9.9577,5.97928 20.7816,24.29493 25.6994,33.17176 2.4205,-7.9625 7.5757,-28.77817 5.4267,-43.0623097 11.537,8.5771897 10.4623,30.4459097 13.9504,41.0572297 1.0346,-3.97654 9.461,-26.25689 11.7993,-40.6227697 10.1277,8.0921897 6.0856,28.2438997 9.3004,38.0704397 6.5083,-2.49757 13.9089,-16.85334 17.4713,-27.13414 11.7407,14.86377 -0.128,26.39275 21.6656,30.06015 -17.5488,26.43762 -38.5057,24.2048 -34.7041,54.444252 0.5343,8.43216 -7.9463,-4.04268 -15.1603,-5.951802 -13.1616,-3.48314 -17.4627,-1.58152 -29.8827,4.240402 -6.4878,3.04115 -10.9441,7.46856 -13.527,15.17718 z"
2205
+ style="fill:url(#linearGradient2914);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4.57142878;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2206
+ <path
2207
+ inkscape:connector-curvature="0"
2208
+ sodipodi:nodetypes="csccccccccccccc"
2209
+ id="path4058-6"
2210
+ d="m 645.56449,120.84525 c 15.355,-9.34386 2.8246,0.36289 3.9472,0.35872 3.1926,-0.0119 5.181,-0.61908 9.0111,1.63656 9.3035,3.19057 19.3585,1.72163 28.9147,3.53502 14.6814,1.16311 29.9245,-1.61562 42.5783,-9.17782 4.4715,-2.05559 13.4279,27.07989 10.0149,30.82546 -2.9062,3.30319 -1.7233,-16.26102 -15.3334,-21.21174 -6.5787,0.38478 -12.6002,3.24305 -18.8312,4.99481 -4.5241,0.67268 -10.1864,-0.50614 -13.4504,3.43995 -3.8237,5.16178 1.0067,12.42943 -3.5097,17.33497 -4.2357,4.54627 -13.2123,4.47738 -16.6413,-0.95084 -2.0252,-3.55971 -1.4925,-8.23666 -4.5579,-11.27328 -4.8984,-1.38003 -5.8195,4.98391 -7.9856,7.79036 -3.1089,4.02979 -10.5736,3.08678 -12.1571,-1.8653 -3.835,-7.82968 -5.1431,-17.16225 -1.9996,-25.43687 z"
2211
+ style="fill:url(#linearGradient4077);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4.57142878;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2212
+ <path
2213
+ inkscape:connector-curvature="0"
2214
+ sodipodi:nodetypes="csc"
2215
+ id="path4079-1"
2216
+ d="m 660.14569,149.64855 c 1.5694,4.20615 -3.1242,13.76968 -5.2283,17.88332 -3.9676,7.75716 6.9119,6.8146 12.5479,6.8146"
2217
+ style="fill:url(#linearGradient4106);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4.57142878;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2218
+ <path
2219
+ inkscape:connector-curvature="0"
2220
+ id="path4083-0"
2221
+ d="m 718.70269,131.93058 c -0.2574,0.50335 2.6841,13.42514 4.1827,16.35505 4.6564,9.10392 -6.8251,9.58801 5.5768,13.6292 4.6069,1.50118 6.9711,-9.67642 6.9711,-13.6292 0,-8.83856 0.3,-12.11964 -5.5769,-14.99213 -8.4237,-4.11733 -4.529,6.13739 -2.7884,9.54045"
2222
+ style="fill:none;stroke:#000000;stroke-width:4.57142878;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2223
+ <path
2224
+ inkscape:connector-curvature="0"
2225
+ id="path4085-8"
2226
+ d="m 729.68759,156.70675 c -5.0644,1.11577 -8.6286,6.0213 -8.1367,11.54888 0.5336,5.99601 5.6338,10.46757 11.3841,9.97854 5.7504,-0.48903 9.984,-5.75437 9.4504,-11.75038 -0.3577,-4.01962 -2.7635,-7.35046 -6.0457,-8.96399 1.7952,1.26526 3.0596,3.34734 3.2762,5.78148 0.3773,4.23907 -2.5665,7.95854 -6.5693,8.29896 -4.0028,0.34041 -7.5594,-2.82625 -7.9367,-7.06532 -0.3112,-3.49722 1.6386,-6.64453 4.5777,-7.82817 z"
2227
+ style="fill:url(#linearGradient4098);fill-opacity:1;stroke:#000000;stroke-width:4.57142878;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2228
+ </g>
2229
+ <g
2230
+ id="BlackKnight">
2231
+ <rect
2232
+ y="0"
2233
+ x="800"
2234
+ height="200"
2235
+ width="200"
2236
+ id="rect5056-39"
2237
+ style="fill:none;stroke:none" />
2238
+ <path
2239
+ inkscape:connector-curvature="0"
2240
+ sodipodi:nodetypes="csssssssccscssssc"
2241
+ id="path9661-9"
2242
+ d="m 920.82051,91.841942 c 0.049,17.483928 -20.16603,32.606288 -40.10424,24.990548 -3.05344,-1.16631 -30.75842,23.95504 -35.19852,20.51791 -3.50284,-2.71159 3.88081,-13.88996 3.34402,-12.46222 -2.55582,6.79793 -13.83929,14.36436 -22.90059,4.59712 -3.5436,-3.81967 -2.44779,-14.80596 5.18493,-23.75613 7.94898,-9.321018 16.02019,-23.674758 19.14441,-31.953348 6.28396,-16.65129 3.81839,-17.015 15.8609,-32.11561 2.26234,-2.83684 -3.67739,-13.85043 -1.51858,-21.03944 8.52749,1.52073 11.81479,10.09428 15.7361,13.69224 2.28585,-5.29182 0.74992,-19.5111 4.81349,-18.84852 4.06357,0.66257 8.73774,12.98093 15.4412,18.39137 80.28856,24.70763 79.63224,153.189418 57.19345,153.605678 -27.69633,0.51379 -60.85496,0.39751 -88.70967,-0.0463 -6.74914,-0.10753 -9.87347,-8.83916 -8.57204,-14.05721 6.20686,-24.88642 32.41901,-42.30553 45.25898,-50.93792 13.18793,-8.86634 15.60253,-17.57941 15.02616,-30.578178 z"
2243
+ style="fill:url(#linearGradient2319-0);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2244
+ <path
2245
+ inkscape:connector-curvature="0"
2246
+ sodipodi:nodetypes="cs"
2247
+ id="path31300-9"
2248
+ d="m 834.46198,118.46619 c -3.16681,-1.09379 -5.45787,4.00845 -3.43731,4.21661"
2249
+ style="fill:none;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2250
+ <path
2251
+ inkscape:connector-curvature="0"
2252
+ sodipodi:nodetypes="cc"
2253
+ id="path31308-7"
2254
+ d="m 872.42883,108.41242 2.16857,2.69497"
2255
+ style="fill:none;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2256
+ <path
2257
+ inkscape:connector-curvature="0"
2258
+ sodipodi:nodetypes="cc"
2259
+ id="path31312-9"
2260
+ d="m 920.85784,84.396782 0.0665,-5.69551"
2261
+ style="fill:none;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2262
+ <path
2263
+ inkscape:connector-curvature="0"
2264
+ sodipodi:nodetypes="cs"
2265
+ id="path32040-6"
2266
+ d="m 874.48657,37.177012 -2.31158,1.20709"
2267
+ style="fill:none;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2268
+ <path
2269
+ inkscape:connector-curvature="0"
2270
+ sodipodi:nodetypes="cs"
2271
+ id="path32768-3"
2272
+ d="m 886.69031,24.885392 c 6.89194,9.62746 9.38036,11.57494 1.18548,10.19359"
2273
+ style="fill:none;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2274
+ <path
2275
+ inkscape:connector-curvature="0"
2276
+ id="path2732-0"
2277
+ d="m 900.1479,166.74312 -5.89252,14.05538"
2278
+ style="fill:none;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2279
+ <path
2280
+ inkscape:connector-curvature="0"
2281
+ sodipodi:nodetypes="csssssc"
2282
+ id="path1898-6"
2283
+ d="m 850.60982,59.223562 c 11.26404,2.55861 38.14752,3.77999 60.58139,-0.76311 4.70064,-0.95194 12.95819,0.11144 4.15822,2.18847 -9.48449,2.2386 -15.02058,3.19686 -24.43738,4.31759 -9.67053,1.15093 -13.07282,7.30325 -15.94626,15.89671 -1.70175,5.08936 -15.19947,2.56171 -15.69878,-1.73142 -2.61958,-22.52343 -13.25929,-13.16063 -8.65719,-19.90824 z"
2284
+ style="fill:url(#linearGradient2802-9);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2285
+ <path
2286
+ inkscape:connector-curvature="0"
2287
+ sodipodi:nodetypes="cssccccccscccs"
2288
+ id="path2812-6"
2289
+ d="m 904.20152,31.176182 c -1.54791,8.07417 6.42833,42.46312 4.49936,66.99894 -1.35362,17.217538 -18.03189,43.652678 -15.54781,61.309418 0.80004,5.68669 14.33186,-13.02936 14.72824,10.88373 12.44808,3.14376 16.76474,-17.02112 19.71601,1.73792 14.58114,10.26285 4.32214,-27.5192 13.31719,-34.61166 6.04367,9.09426 -4.24493,38.73822 6.34353,35.65725 -1.02372,-11.0541 7.85547,-24.8993 9.06548,-6.32385 10.23714,14.25631 11.26019,-18.50012 16.51637,-25.21798 -5.68876,-26.18129 -0.68625,-38.45221 -9.84533,-57.779668 -1.45105,-3.06202 -6.33113,-14.59604 -9.36782,-17.92597 -2.57493,-6.16549 -11.81457,-11.43535 -14.53084,-13.39961 -1.68084,-6.55522 -15.27929,-15.54515 -19.39761,-12.65192 -3.18859,-7.61953 -14.88246,-11.88098 -15.49677,-8.6766 z"
2290
+ style="fill:url(#linearGradient2826-8);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2291
+ <path
2292
+ inkscape:connector-curvature="0"
2293
+ sodipodi:nodetypes="cccc"
2294
+ id="path2828-8"
2295
+ d="m 920.67955,48.573522 c 3.15338,11.44401 5.37018,28.14888 4.07533,39.91939 -1.96753,12.163558 -6.32601,24.109388 -5.24525,36.604888 0,2.41437 3.77123,20.45243 3.77123,22.8668"
2296
+ style="fill:none;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2297
+ <path
2298
+ inkscape:connector-curvature="0"
2299
+ sodipodi:nodetypes="ccc"
2300
+ id="path2830-3"
2301
+ d="m 938.01193,61.095452 c 3.88951,9.34941 6.96851,27.1909 4.51389,37.59389 -1.16296,8.889578 1.46507,17.276118 -1.37384,25.831788"
2302
+ style="fill:none;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2303
+ <path
2304
+ inkscape:connector-curvature="0"
2305
+ sodipodi:nodetypes="cccc"
2306
+ id="path2832-3"
2307
+ d="m 954.08193,84.931082 c 0.52223,8.38054 3.89125,23.359228 2.49888,32.011308 -0.19171,7.57801 5.07664,18.32521 2.99474,25.71768 -0.44245,2.06841 -0.96292,4.12734 -1.72238,6.10472"
2308
+ style="fill:none;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2309
+ <path
2310
+ inkscape:connector-curvature="0"
2311
+ sodipodi:nodetypes="ccccc"
2312
+ id="path2846-5"
2313
+ d="m 848.05585,126.8312 c 7.73207,6.73917 15.9703,4.28414 24.44698,9.88665 9.88036,-0.31231 11.56689,18.80793 0.59986,15.67298 -5.88378,-4.88778 -24.1971,-16.09221 -31.07341,-19.50032 3.32611,-4.1301 0.83834,0.20797 6.02657,-6.05931 z"
2314
+ style="fill:url(#linearGradient2862-4);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714502;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2315
+ <path
2316
+ inkscape:connector-curvature="0"
2317
+ sodipodi:nodetypes="cssssssc"
2318
+ id="path2814-72"
2319
+ d="m 872.04308,143.23456 c -1.08081,0.85665 -2.24534,3.34019 -2.7227,5.31263 -0.46377,1.91636 1.7662,2.46216 3.02522,3.43759 1.06114,0.82213 4.05344,0.31251 5.4454,0.31251 1.43503,0 2.05948,-1.94715 2.42019,-3.43759 0.3245,-1.34087 0.30252,-2.85408 0.30252,-4.37511 0,-1.60265 -2.686,-4.68762 -3.9328,-4.68762 -1.57065,0 -2.98499,3.11677 -4.53783,3.43759 z"
2320
+ style="fill:url(#linearGradient2822-3);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.60900903;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2321
+ </g>
2322
+ <g
2323
+ id="BlackPawn">
2324
+ <rect
2325
+ style="fill:none;stroke:none"
2326
+ id="rect9996"
2327
+ width="200"
2328
+ height="200"
2329
+ x="1000"
2330
+ y="0" />
2331
+ <path
2332
+ inkscape:connector-curvature="0"
2333
+ sodipodi:nodetypes="ccssscccccccscc"
2334
+ id="path35274-0"
2335
+ d="m 1087.7986,83.997582 c -4.4788,0.057 -8.9742,1.92359 -8.9444,5.30162 0.3318,38.415138 -19.5945,28.092838 -28.9093,34.672698 -7.724,5.45618 1.9511,62.71336 12.2,63.38363 6.3508,0.41533 46.6372,2.48448 52.7341,-0.0404 2.2015,-0.91169 5.1041,-34.70066 5.3743,-34.66821 10.443,0.54708 17.4615,12.49765 27.905,13.15861 6.3761,1.59674 8.7275,-4.41463 7.1582,-9.53214 1.0306,-10.73186 -0.1967,-45.22267 -5.2105,-45.85224 -5.6103,-0.8497 -11.0442,8.07405 -10.2114,12.58745 -0.24,7.05377 1.3331,8.10854 -1.7727,14.72597 -3.9383,3.71361 -6.7692,-4.43961 -8.5063,-6.08979 -0.6803,0.91016 -1.1599,-7.28717 -1.6783,-8.31956 -6.2762,-12.4992 -30.7607,6.12865 -31.2819,-33.951898 -0.049,-3.73056 -4.4474,-5.43186 -8.8568,-5.37572 z"
2336
+ style="fill:url(#linearGradient2296-2);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.45006442;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2337
+ <path
2338
+ transform="matrix(0.16426994,0,0,0.19426503,1018.6196,-3.285667)"
2339
+ d="m 540.00002,435 a 116.66667,116.66667 0 1 1 -233.33335,0 116.66667,116.66667 0 1 1 233.33335,0 z"
2340
+ sodipodi:ry="116.66667"
2341
+ sodipodi:rx="116.66667"
2342
+ sodipodi:cy="435"
2343
+ sodipodi:cx="423.33334"
2344
+ id="path3371-8"
2345
+ style="opacity:0.98999999;fill:url(#linearGradient3243-9);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:19.31306076;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2346
+ sodipodi:type="arc" />
2347
+ <path
2348
+ inkscape:connector-curvature="0"
2349
+ sodipodi:nodetypes="cccccccccsc"
2350
+ id="path4628-4"
2351
+ d="m 1066.2082,111.5353 c -5.2679,3.46199 -12.8574,6.44012 -15.6645,7.72675 7.1256,8.54835 39.7004,58.01413 41.0251,70.8332 3.7493,0.37746 11.3426,0.40399 19.4728,0.31662 -2.3334,-10.92307 -37.1248,-65.44492 -44.8334,-78.87657 z m 41.4126,1.10478 c -6.5029,13.69535 -47.7254,68.11909 -49.7255,77.64379 7.8235,-0.13368 15.0327,-0.29389 18.637,-0.26272 0.5111,-4.55693 41.0224,-66.61349 45.6611,-71.38559 -8.2398,-6.26594 -8.6486,-4.11225 -13.6694,-5.72602 -0.2987,-0.096 -0.598,-0.18391 -0.9032,-0.26946 z"
2352
+ style="fill:url(#linearGradient2294-3);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.45006371;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2353
+ <path
2354
+ inkscape:connector-curvature="0"
2355
+ sodipodi:nodetypes="ccccccccsscccccccscc"
2356
+ id="path3219-5"
2357
+ d="m 1085.9229,62.601042 c -10.5947,0.67991 -14.5464,13.09545 -13.2879,21.51918 -0.7143,8.47929 3.9134,17.553168 5.4848,25.776188 -4.3211,8.81198 -9.9164,-14.264458 -11.1653,-5.93671 2.0548,6.61616 -0.6721,13.71458 -8.5969,10.69479 -7.9876,3.91619 -10.4614,-4.60016 -3.9905,-8.52764 2.6192,-7.319508 -17.6221,4.19009 -8.7281,-4.74548 7.3437,-4.381568 12.2019,-9.901138 12.887,-18.445228 1.0512,-10.61098 5.8864,-20.1017 13.2245,-27.1306 5.8116,-5.56671 15.8721,-5.83986 22.9953,-3.69512 7.6759,2.31116 11.2339,6.86363 15.1627,12.98718 3.1308,6.66953 4.6297,14.01591 7.8401,20.72008 1.5125,9.27168 6.4068,15.787298 14.4546,20.919788 1.5274,4.67776 -8.7611,3.91174 -11.484,6.48789 -2.7603,-1.38374 -5.2003,-10.91793 -5.3535,-2.77368 2.9314,9.19519 -15.9269,12.79595 -14.1532,3.16118 2.6352,-3.51122 3.3803,-8.27584 -2.4024,-4.13274 -3.7018,-1.96394 3.1458,-12.450948 3.846,-18.267078 0.8896,-7.38919 1.6506,-10.72389 -1.3259,-17.75722 -3.365,-5.04961 -8.7201,-11.45246 -15.4073,-10.85478 z"
2358
+ style="fill:url(#linearGradient3230-7);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.45006442;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2359
+ <path
2360
+ inkscape:connector-curvature="0"
2361
+ sodipodi:nodetypes="sssssssssssss"
2362
+ id="path2957-3"
2363
+ d="m 1092.0357,154.0227 c 0.8912,1.12956 20.8982,0.7212 17.3432,9.63672 -1.6101,4.03809 -13.7295,4.54253 -17.2468,6.22418 -5.9437,2.84172 -10.1606,8.69724 -11.4656,15.24429 -1.0358,5.19637 -2.2547,9.73552 -7.5473,12.06916 -12.3342,5.43853 -8.1434,-8.92071 -10.2544,-14.94663 -1.9674,-5.61632 -10.6373,-5.40474 -14.3007,-10.31363 -1.6933,-2.26903 -1.0242,-5.9833 1.8112,-7.34831 5.2639,-2.53425 10.6512,-2.57578 16.0014,-3.99944 5.0236,-1.3368 12.6641,-9.48165 13.6953,-14.08526 1.9967,-8.91449 1.42,-20.03157 10.3485,-21.68279 4.3243,-0.79973 5.5404,10.31254 5.2234,14.28181 -0.4074,5.10117 -4.438,13.86808 -3.6082,14.9199 z"
2364
+ style="fill:url(#linearGradient2983-3);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.19235921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2365
+ <path
2366
+ inkscape:connector-curvature="0"
2367
+ sodipodi:nodetypes="ccccc"
2368
+ id="path2967-5"
2369
+ d="m 1072.6926,177.26177 81.9198,-69.187 -1.9507,-8.705658 -84.6507,72.568198 4.6816,5.32446 z"
2370
+ style="fill:url(#linearGradient2975-2);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.19236016;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2371
+ <path
2372
+ inkscape:connector-curvature="0"
2373
+ sodipodi:nodetypes="cccccccccccc"
2374
+ id="path1395-5"
2375
+ d="m 1052.5332,121.68823 c -1.5744,0.23051 -2.9996,0.82938 -4.1183,2.14894 -1.0028,2.59597 -0.774,5.55095 -2.0289,8.09053 -3.9902,9.66061 -6.4912,19.8557 -10.589,29.47888 -3.6278,5.47842 1.2614,9.69275 6.6122,9.91611 9.7836,4.54145 20.358,7.49906 30.9853,9.07405 4.0784,-0.66359 10.0594,1.41728 12.3214,-3.09879 2.6681,-5.00514 -2.2517,-8.72133 -6.7876,-9.43782 -6.5759,-2.57277 -14.2012,-3.5951 -19.4121,-8.72375 -2.194,-4.94731 -0.4698,-10.36434 1.3481,-15.08974 -0.1733,-3.12306 1.3565,-4.06513 3.4915,-5.15341 -4.4978,-6.71253 -8.4152,-12.97403 -11.8226,-17.205 z"
2376
+ style="fill:url(#linearGradient2292-2);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.4500649;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2377
+ <path
2378
+ inkscape:connector-curvature="0"
2379
+ id="path2985-4"
2380
+ d="m 1154.5662,107.51131 20.6161,-3.13491 -2.0086,-17.957738 -22.1866,14.007968 3.5791,7.08468 z"
2381
+ style="fill:url(#linearGradient2993-9);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.19235969;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2382
+ <path
2383
+ inkscape:connector-curvature="0"
2384
+ id="path4122-2"
2385
+ d="m 1079.8163,80.210582 c 0.3348,0.2053 3.4142,-0.85305 4.31,-1.07688"
2386
+ style="fill:none;stroke:#000000;stroke-width:3.42759466;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2387
+ <path
2388
+ inkscape:connector-curvature="0"
2389
+ id="path4124-5"
2390
+ d="m 1089.5138,79.133702 c 0.8979,-0.17948 1.7958,-0.35896 2.6937,-0.53844 0.7917,-0.15824 1.8687,0 2.6938,0"
2391
+ style="fill:none;stroke:#000000;stroke-width:3.42759466;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2392
+ <path
2393
+ inkscape:connector-curvature="0"
2394
+ style="fill:none;stroke:#000000;stroke-width:3.42759466;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2395
+ d="m 1086.2813,91.517842 c 0.3347,0.2053 3.4141,-0.85305 4.31,-1.07688"
2396
+ id="path4128-9" />
2397
+ </g>
2398
+ </g>
2399
+ <g
2400
+ inkscape:groupmode="layer"
2401
+ id="WhitePieces"
2402
+ inkscape:label="WhitePieces">
2403
+ <g
2404
+ id="WhiteKing">
2405
+ <rect
2406
+ y="200"
2407
+ x="0"
2408
+ height="200"
2409
+ width="200"
2410
+ id="rect5056"
2411
+ style="fill:none;stroke:none" />
2412
+ <path
2413
+ transform="matrix(0.21236206,-0.01003656,0.00971585,0.21937189,-18.21667,189.42362)"
2414
+ d="m 716.66667,558.33331 a 196.66667,293.33334 0 1 1 -393.33334,0 196.66667,293.33334 0 1 1 393.33334,0 z"
2415
+ sodipodi:ry="293.33334"
2416
+ sodipodi:rx="196.66667"
2417
+ sodipodi:cy="558.33331"
2418
+ sodipodi:cx="520"
2419
+ id="path4289"
2420
+ style="fill:url(#linearGradient2695);fill-opacity:1;stroke:#000000;stroke-width:20;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2421
+ sodipodi:type="arc" />
2422
+ <path
2423
+ inkscape:connector-curvature="0"
2424
+ id="path2569"
2425
+ d="m 76.3713,258.08777 c -0.50817,-0.74198 -4.68974,-1.34054 -7.1759,-1.85917 -1.65376,-0.34498 -3.97427,0.18783 -5.66299,0.26764 -2.52629,0.1194 -5.18771,1.16436 -7.35172,2.17939 -4.25762,1.99703 -7.28314,5.17336 -10.59961,8.92781 -2.04673,2.31704 -3.04436,4.74883 -4.64744,7.18096 -1.5061,2.28498 -2.11237,3.78998 -4.35829,5.70176 -2.36797,2.01569 -4.07573,3.97245 -5.74165,6.49991 -1.00726,1.52818 -0.98299,3.89971 -1.54298,5.20232 -0.71242,1.65717 -1.24173,2.76434 -1.57537,4.47108"
2426
+ style="fill:none;stroke:#5a462f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2427
+ <path
2428
+ inkscape:connector-curvature="0"
2429
+ id="path2573"
2430
+ d="m 70.96971,272.2657 c 0.0826,1.8643 -3.50699,0.89852 -5.26048,1.34777 -4.84076,1.24024 -7.18224,5.34856 -8.07347,9.90758 -0.78554,4.01838 -1.77183,8.15253 -3.72907,11.90057 -1.80182,3.45044 -4.07478,6.83239 -6.28759,10.18957 -1.85112,2.80844 -2.52378,6.67721 -3.82622,9.70685 -1.93338,4.49727 -3.21825,9.8531 -4.67753,14.51009 -1.16738,3.72548 -2.65291,8.18941 -3.37512,11.88384 -0.72313,3.6991 -2.10541,7.31718 -3.43991,10.42137 -0.83724,1.94754 -1.88435,4.25783 -2.21847,5.96701"
2431
+ style="fill:none;stroke:#5a462f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2432
+ <path
2433
+ inkscape:connector-curvature="0"
2434
+ id="path2577"
2435
+ d="m 62.58855,331.28345 c -2.40744,3.65247 -2.95708,7.15832 -3.71287,12.26619 -0.55013,3.71795 0.33887,7.68603 -0.20589,11.36767 -0.66446,4.49063 -3.1847,8.66743 -4.03442,13.01416 -0.45996,2.35287 -0.95163,4.04501 -2.21847,5.96702 -1.16262,1.76386 -2.63674,4.11695 -3.29648,5.65157 -0.73684,1.714 -1.26458,2.89253 -3.03969,3.44113"
2436
+ style="fill:none;stroke:#5a462f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2437
+ <path
2438
+ inkscape:connector-curvature="0"
2439
+ id="path2579"
2440
+ d="m 79.33003,252.81854 c -0.56914,1.32389 -7.35406,-1.92319 -8.97797,-2.50677 -2.93524,-1.05482 -5.78601,-1.56923 -8.60784,-2.15787 -3.47025,-0.72391 -8.15423,0.38538 -11.67993,0.55201 -3.7625,0.17782 -5.08348,-0.004 -6.99777,2.16265 -2.0132,2.27907 -4.629,4.08846 -6.46572,6.16774 -0.11258,0.12745 -0.22516,0.2549 -0.33774,0.38235"
2441
+ style="fill:none;stroke:#5a462f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2442
+ <path
2443
+ inkscape:connector-curvature="0"
2444
+ sodipodi:nodetypes="cssc"
2445
+ id="path2581"
2446
+ d="m 87.79213,251.68584 c -0.0405,0.0459 -8.59686,-7.40287 -8.85074,-7.64218 -1.60836,-1.51607 -17.91692,-7.21369 -19.46885,-7.14035 -0.87347,0.0413 -8.44425,-12.05801 -9.39898,-12.01289"
2447
+ style="fill:none;stroke:#5a462f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2448
+ <path
2449
+ inkscape:connector-curvature="0"
2450
+ sodipodi:nodetypes="csc"
2451
+ id="path2585"
2452
+ d="m 91.67155,251.18819 c -0.0695,-0.23991 3.40608,-12.42141 3.66429,-13.36306 2.19368,-7.99997 -2.53256,-14.2733 0.47655,-21.27287"
2453
+ style="fill:none;stroke:#5a462f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2454
+ <path
2455
+ inkscape:connector-curvature="0"
2456
+ id="path2591"
2457
+ d="m 97.74261,252.12614 c -2.4862,1.43445 3.06195,-7.76901 5.01527,-14.89244 1.40913,-5.13886 9.59196,-10.0908 12.86666,-13.79797 1.01516,-1.14923 2.69286,-1.81799 3.77996,-2.74335"
2458
+ style="fill:none;stroke:#5a462f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2459
+ <path
2460
+ inkscape:connector-curvature="0"
2461
+ id="path2593"
2462
+ d="m 101.88484,249.55426 c 1.07137,-1.21286 3.95312,-6.39494 6.33617,-9.09271 3.58723,-4.06098 8.94088,-10.083 14.02563,-11.65443 2.92174,-0.90296 6.44669,-0.67107 9.54011,-0.81727 1.06181,-0.0502 2.12362,-0.10036 3.18543,-0.15054"
2463
+ style="fill:none;stroke:#5a462f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2464
+ <path
2465
+ inkscape:connector-curvature="0"
2466
+ sodipodi:nodetypes="csssc"
2467
+ id="path2597"
2468
+ d="m 116.25283,253.63821 c 0.66509,0.37062 10.49463,-1.25207 13.44962,-0.63565 3.4238,0.71422 6.2823,2.48781 9.71823,3.20456 4.27015,0.89077 8.50215,-3.44257 12.33921,-1.68233 2.32339,1.06586 10.45078,5.20815 13.01702,5.61335"
2469
+ style="fill:none;stroke:#5a462f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2470
+ <path
2471
+ inkscape:connector-curvature="0"
2472
+ id="path2599"
2473
+ d="m 119.77832,261.16569 c 2.10834,0.96719 19.61756,-0.0338 26.69102,2.036 2.86878,0.83944 5.39982,3.19354 8.72119,4.71722 3.35699,1.54001 5.14643,4.71594 7.08106,7.72582 2.1929,3.41168 3.91291,6.56567 5.76246,9.98644 0.0814,0.15063 0.24675,0.2326 0.37013,0.34889"
2474
+ style="fill:none;stroke:#5a462f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2475
+ <path
2476
+ inkscape:connector-curvature="0"
2477
+ id="path2601"
2478
+ d="m 125.58705,264.18862 c 1.90834,3.5295 13.25449,7.52866 18.55278,10.48111 3.80338,2.11942 6.5545,5.83088 7.53215,9.90281 1.32974,5.53838 2.88288,12.45266 6.07013,16.93322 1.97792,2.78052 1.61005,5.99886 3.23632,9.00668 0.39897,0.73789 0.47306,2.67276 0.51587,3.63948"
2479
+ style="fill:none;stroke:#5a462f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2480
+ <path
2481
+ inkscape:connector-curvature="0"
2482
+ id="path2605"
2483
+ d="m 135.58519,289.72945 c 1.66939,2.09276 5.93813,4.30368 7.43499,7.70909 1.03294,2.34999 1.08135,5.28229 1.7558,7.61111 0.97706,3.37365 2.00097,5.94996 3.9442,8.97322 2.81676,4.38227 8.01056,7.2188 9.39899,12.01289 0.90659,3.13033 1.17637,6.25208 1.83677,9.43921 0.65493,3.16071 1.30657,6.36966 2.19071,9.42248 0.83493,2.88291 1.72326,5.3308 2.47987,7.94327 0.267,0.92192 0.64343,1.91197 0.82122,2.52589"
2484
+ style="fill:none;stroke:#5a462f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2485
+ <path
2486
+ inkscape:connector-curvature="0"
2487
+ id="path2607"
2488
+ d="m 141.10938,310.35233 c 0.81023,2.79764 1.35126,6.48531 1.48283,9.45593 0.23896,5.39545 1.21164,10.96042 4.21948,15.18877 2.86953,4.03392 4.78612,9.22292 7.66169,12.82777 1.01819,1.2764 1.83696,3.55541 2.36652,5.38393 1.00616,3.47413 2.64413,6.65217 3.63884,10.08681 0.82127,2.83572 1.14818,5.81595 2.49606,8.30889 0.17277,0.31955 0.0324,0.73125 0.0486,1.09686"
2489
+ style="fill:none;stroke:#5a462f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2490
+ <path
2491
+ inkscape:connector-curvature="0"
2492
+ id="path2611"
2493
+ d="m 69.33188,283.33466 c -3.89308,-0.21646 -10.39517,2.14945 -15.07356,4.00987 -0.9417,0.37448 -1.85528,0.82045 -2.78292,1.23068 -2.02643,0.89614 -1.77803,4.9425 -2.54002,6.71498 -1.74432,4.05752 -7.24847,9.35758 -10.08374,12.56729 -0.5629,0.63724 -1.12581,1.27449 -1.68872,1.91174 -1.83273,2.07477 -3.47928,4.49823 -5.01758,6.83207 -1.21143,1.83793 -2.53842,3.56761 -2.94254,5.63485"
2494
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2495
+ <path
2496
+ inkscape:connector-curvature="0"
2497
+ id="path2613"
2498
+ d="m 66.26211,294.10492 c -0.53412,2.73224 -4.93116,2.28266 -7.28694,3.64186 -4.76815,2.75104 -5.99325,9.08844 -9.35968,12.89945 -3.93091,4.45004 -3.61134,8.95946 -10.11612,11.83605 -2.87094,1.2696 -6.28953,6.0305 -8.12205,8.81072 -1.24767,1.8929 -1.99005,3.27933 -3.31267,5.28595 -1.15906,1.75847 -1.82869,4.42157 -2.20228,6.33263"
2499
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2500
+ <path
2501
+ inkscape:connector-curvature="0"
2502
+ id="path2615"
2503
+ d="m 63.5347,320.61356 c -0.53971,2.76087 -5.49596,0.30867 -8.10817,1.11597 -4.27842,1.32225 -5.89958,2.93394 -5.70926,7.23115 0.25961,5.86164 -6.79631,12.3554 -9.90561,16.58911 -4.4399,6.04549 -9.54381,11.92996 -13.01009,18.56776 -1.12286,2.15024 -2.16479,4.79551 -2.54002,6.71497 -0.0523,0.26741 -0.21437,0.49865 -0.32155,0.74797"
2504
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2505
+ <path
2506
+ inkscape:connector-curvature="0"
2507
+ id="path2621"
2508
+ d="m 81.22415,257.56897 c -0.45179,0.51146 -7.7627,-0.62317 -9.62107,-1.01084 -2.96365,-0.61823 -7.27493,-0.38895 -10.29656,-0.24614 -2.66791,0.12609 -5.04613,-0.1279 -7.80281,0.002 -2.82662,0.13359 -6.07846,2.88832 -8.31636,4.42328 -3.56603,2.44592 -6.06999,6.98209 -9.13528,9.95777 -1.28368,1.24615 -5.19981,3.75002 -6.88443,4.72199 -1.27316,0.73456 -3.29262,2.51821 -4.45544,3.50804"
2509
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2510
+ <path
2511
+ inkscape:connector-curvature="0"
2512
+ id="path2627"
2513
+ d="m 90.4455,247.5302 c -0.48003,-0.45249 -0.32244,-7.28032 -0.40482,-9.1405 -0.12955,-2.92496 -0.25909,-5.84992 -0.38864,-8.77488 -0.12375,-2.7942 -0.35145,-5.23973 -1.04793,-7.64456 -0.31042,-1.07186 -0.32743,-1.61261 -0.82122,-2.52589"
2514
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2515
+ <path
2516
+ inkscape:connector-curvature="0"
2517
+ id="path2631"
2518
+ d="m 98.90761,246.3975 c 1.53099,-2.32275 6.95219,-7.17953 10.56722,-9.65906 2.26008,-1.55018 5.37023,-0.62019 8.12436,-0.75035 4.00132,-0.18911 7.3647,1.11747 11.39076,0.92719 3.73856,-0.17669 7.14579,-1.43687 10.92347,-1.61541 0.16685,-0.008 0.22516,-0.2549 0.33774,-0.38235"
2519
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2520
+ <path
2521
+ inkscape:connector-curvature="0"
2522
+ id="path2633"
2523
+ d="m 105.08647,249.76933 c 3.11247,-0.1471 8.67652,-1.50922 13.04709,-1.71578 3.42914,-0.16207 6.98668,1.44291 10.39372,2.43985 3.18182,0.93105 6.24749,0.7599 9.28333,1.39319 5.04451,1.05231 12.8919,1.22263 17.77782,0.99172 2.23441,-0.1056 4.20301,0.7862 6.0817,1.17811"
2524
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2525
+ <path
2526
+ inkscape:connector-curvature="0"
2527
+ id="path2635"
2528
+ d="m 116.43096,257.66003 c 5.73019,-0.27082 12.98268,1.23437 19.66085,3.46742 0.46328,0.15492 0.95463,0.19914 1.43195,0.29872 1.38415,0.28873 3.8797,3.36724 4.81169,4.53559 2.01259,2.52301 7.1693,5.61715 9.88016,6.86076 1.97149,0.90442 2.9834,3.49956 3.78227,5.31702 0.98711,2.24572 2.28426,4.12975 3.81465,6.04826 1.20531,1.511 1.44282,2.76146 2.65568,3.90473"
2529
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2530
+ <path
2531
+ inkscape:connector-curvature="0"
2532
+ id="path2639"
2533
+ d="m 138.01417,288.5155 c 5.95976,7.47122 12.459,18.05051 19.53824,24.72356 2.38991,2.25278 2.42481,6.7 2.56084,9.77137 0.11506,2.598 3.33505,4.8715 4.53872,6.38043 1.82712,2.2905 2.9712,4.82394 4.21717,7.1284 0.53305,0.98589 1.21028,2.5741 1.56149,3.22367"
2534
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2535
+ <path
2536
+ inkscape:connector-curvature="0"
2537
+ id="path2643"
2538
+ d="m 142.55056,342.89251 c 0.0872,0.0822 0.0108,0.24374 0.0162,0.36562 0.11677,2.63652 4.67789,2.30733 6.56519,4.08634 0.61689,0.58149 1.23377,1.16298 1.85065,1.74446 1.81447,1.71036 3.52325,4.5023 4.53872,6.38043 1.11618,2.06439 1.6593,4.41158 2.76904,6.46406 1.0272,1.89984 1.83725,4.48559 2.41509,6.4808 0.0677,0.23376 0.0216,0.48749 0.0324,0.73124 0.0818,1.8466 1.36732,4.79242 2.38271,5.74955"
2539
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2540
+ <path
2541
+ inkscape:connector-curvature="0"
2542
+ id="path2659"
2543
+ d="m 77.14395,259.5168 c -3.1666,1.82702 -8.03437,2.69757 -13.52827,6.86791 -3.92843,2.98202 -6.44169,7.84045 -8.68418,12.13475 -0.25076,0.4802 -0.42873,0.9973 -0.6431,1.49594 -2.10853,4.9047 -2.53867,10.10744 -3.93727,15.20787 -2.60218,9.48973 -6.02141,17.40418 -10.91654,25.79652 -2.21205,3.79241 -5.98806,6.6698 -7.68714,10.6221 -0.0267,0.0622 -0.89748,1.36162 -0.99704,1.51267"
2544
+ style="fill:none;stroke:#7c5c00;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2545
+ <path
2546
+ inkscape:connector-curvature="0"
2547
+ id="path2619"
2548
+ d="m 72.67462,270.71958 c -0.35761,1.82933 -3.5529,-0.93124 -5.35764,-0.84595 -3.74141,0.17683 -6.1309,0.96531 -9.08901,2.99426 -2.056,1.4102 -3.07756,4.2519 -4.69603,6.08411 -3.37873,3.82494 -7.50787,6.8977 -11.24271,10.42375 -3.00075,2.83299 -4.42152,6.8382 -6.64153,10.20629 -1.30951,1.98673 -3.30542,4.1259 -4.37447,5.33614 -1.28874,1.45893 -2.13081,3.56406 -3.32886,4.92033 -0.44471,0.50344 -0.66263,0.50299 -1.02943,0.78143"
2549
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2550
+ <path
2551
+ inkscape:connector-curvature="0"
2552
+ id="path2661"
2553
+ d="m 68.62169,275.30776 c -0.33002,0.76766 -4.34961,2.96665 -5.03377,6.46644 -0.0964,0.49307 -0.19278,0.98613 -0.28917,1.47922 -0.71298,3.64723 -0.83212,6.37178 -2.39428,10.00556 -1.37441,3.19704 -2.69888,7.18668 -3.79384,10.43807 -1.39494,4.14217 -4.17368,7.75552 -5.49875,11.98423 -0.31076,0.9917 -0.62151,1.98343 -0.93226,2.97513 -1.22638,3.91373 -2.1587,7.85804 -3.39133,11.51823 -1.68132,4.99254 -6.09551,11.12396 -9.61645,15.10989 -1.13296,1.2826 -2.71205,2.68626 -3.73138,3.8402"
2554
+ style="fill:none;stroke:#7c5c00;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2555
+ <path
2556
+ inkscape:connector-curvature="0"
2557
+ id="path2663"
2558
+ d="m 65.13784,300.75299 c 0.34161,1.21727 -2.54021,5.68126 -3.52088,8.59326 -1.09016,3.23716 -1.43381,5.98925 -2.07272,9.2576 -0.19278,0.98613 -0.38556,1.97228 -0.57834,2.95841 -0.0935,0.47835 0.0432,0.97497 0.0648,1.46249 0.15212,3.43464 -1.55711,8.73542 -3.39132,11.5182 -2.01399,3.05554 -1.88038,5.59259 -1.7188,9.24087 0.12793,2.8885 0.55937,6.10766 0.0347,8.7916 -0.80058,4.0954 -3.84079,5.92521 -6.72249,8.3782 -1.48819,1.26679 -2.57899,4.0428 -3.65041,5.66831 -0.61347,0.93072 -0.90923,2.69987 -1.25382,3.72309"
2559
+ style="fill:none;stroke:#7c5c00;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2560
+ <path
2561
+ inkscape:connector-curvature="0"
2562
+ id="path2665"
2563
+ d="m 69.20539,327.50458 c -2.08985,3.17063 -2.10714,7.63977 -3.005,12.23274 -0.7721,3.94966 -0.87884,7.63487 -1.62164,11.43456 -0.57634,2.94829 -0.76825,6.6782 -0.64078,9.55632 0.13393,3.02404 -0.19538,5.36885 -1.78357,7.77838 -2.88419,4.37576 -6.23007,8.94458 -10.47007,11.85276 -0.84758,0.58137 -0.95112,1.07673 -1.35097,1.5294"
2564
+ style="fill:none;stroke:#7c5c00;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2565
+ <path
2566
+ inkscape:connector-curvature="0"
2567
+ id="path2617"
2568
+ d="m 62.84764,337.13337 c -0.42915,2.19532 -4.05587,1.90383 -5.51725,3.55822 -3.47389,3.93266 -4.66317,6.8262 -4.43695,11.93402 0.17175,3.87777 -1.03021,8.38773 -1.58924,12.16583 -0.36712,2.48106 -0.99144,5.42619 -1.78357,7.77838 -0.57783,1.71581 -0.38482,4.21079 -0.78653,6.26573 -0.0523,0.2674 -0.21437,0.49864 -0.32155,0.74797"
2569
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2570
+ <path
2571
+ inkscape:connector-curvature="0"
2572
+ id="path2667"
2573
+ d="m 75.11517,253.75051 c -2.20005,1.50901 -5.2573,0.85043 -7.72184,1.8305 -7.07529,2.81355 -13.15569,2.99057 -18.06467,8.54785 -2.54232,2.87805 -3.80504,5.1139 -4.56649,9.00907 -1.07492,5.4987 -8.46179,13.07248 -11.64292,17.40397 -1.48031,2.01564 -3.03738,3.43576 -4.00434,5.68503 -0.43642,1.01518 -0.86705,2.01686 -1.2862,2.99188"
2574
+ style="fill:none;stroke:#7c5c00;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2575
+ <path
2576
+ inkscape:connector-curvature="0"
2577
+ id="path2571"
2578
+ d="m 73.09102,264.10497 c -0.28109,0.65384 -10.50435,0.47666 -12.72554,0.96781 -2.18114,0.48228 -5.57372,6.51257 -6.36856,8.36146 -2.26629,5.27167 -7.97751,12.87057 -11.65911,17.03837 -2.66517,3.01714 -2.90306,4.73645 -4.26112,7.89548 -1.43075,3.32808 -3.05089,6.37026 -4.18017,9.72357 -1.92331,5.71113 -3.48955,10.99712 -5.28824,16.73727 -0.75516,2.40996 -0.88157,4.11964 -0.77033,6.63134 0.008,0.17236 -0.22516,0.2549 -0.33775,0.38235"
2579
+ style="fill:none;stroke:#5a462f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2580
+ <path
2581
+ inkscape:connector-curvature="0"
2582
+ id="path2575"
2583
+ d="m 61.58227,300.55464 c -0.32916,1.6838 -2.62718,6.91772 -3.82622,9.70685 -2.92728,6.80922 -4.18742,15.27079 -6.10716,22.27176 -1.26464,4.61192 -1.53922,9.45238 -2.21616,14.02737 -0.57019,3.85352 -2.59096,9.1923 -4.40455,12.66527 -1.21154,2.32006 -1.69164,4.82593 -2.87777,7.09733 -1.28904,2.46847 -2.77415,4.46894 -4.30971,6.79861 -1.41255,2.14307 -3.02921,4.07554 -4.34209,6.06738 -0.84045,1.2751 -1.53473,1.97036 -2.36421,2.67644"
2584
+ style="fill:none;stroke:#5a462f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2585
+ <path
2586
+ inkscape:connector-curvature="0"
2587
+ id="path2669"
2588
+ d="m 85.28219,251.07169 c -1.18388,2.75386 -4.97733,-3.17883 -7.64319,-4.40179 -4.55743,-2.0907 -10.22127,-4.93957 -14.8029,-5.89532 -3.29256,-0.68685 -20.39514,10.0947 -24.65993,11.79065 -1.69222,0.67293 -2.47324,0.8801 -3.4584,1.99537"
2589
+ style="fill:none;stroke:#7c5c00;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2590
+ <path
2591
+ inkscape:connector-curvature="0"
2592
+ id="path2671"
2593
+ d="m 89.49705,250.13973 c -2.03232,0.80817 -0.0986,-4.99793 -1.70723,-6.51425 -3.06093,-2.88531 -5.10521,-7.08644 -9.52622,-6.8775 -2.46178,0.11635 -3.80715,-1.42811 -6.11409,-1.90935 -0.49319,-0.10287 -1.24987,0.0591 -1.76969,0.0836"
2594
+ style="fill:none;stroke:#7c5c00;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2595
+ <path
2596
+ inkscape:connector-curvature="0"
2597
+ id="path2623"
2598
+ d="m 84.69425,252.4393 c -1.98461,1.14505 -6.3114,-3.37437 -8.72119,-4.71722 -2.40021,-1.33751 -4.78345,-2.80906 -7.24067,-3.32165 -3.63645,-0.75858 -7.35684,-1.31064 -11.10159,-2.4064 -2.25049,-0.65852 -3.6566,-1.12503 -5.74397,-1.56046 -0.96268,-0.20082 -1.86592,-0.60396 -2.89626,-1.32866"
2599
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2600
+ <path
2601
+ inkscape:connector-curvature="0"
2602
+ id="path2673"
2603
+ d="m 99.32632,247.84324 c -0.0412,-0.009 -2.15869,-7.08021 -3.96039,-9.33883 -1.2827,-1.60801 -1.9698,-4.43451 -2.07736,-6.86315 -0.0727,-1.64056 -0.51459,-3.6108 -0.59683,-5.46757"
2604
+ style="fill:none;stroke:#7c5c00;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2605
+ <path
2606
+ inkscape:connector-curvature="0"
2607
+ sodipodi:nodetypes="css"
2608
+ id="path2583"
2609
+ d="m 91.84395,253.13769 c -2.31792,0.10954 -0.74376,-4.90165 -2.07736,-6.86315 C 82.69285,235.87027 73.12116,226.8911 73.44386,214.0713"
2610
+ style="fill:none;stroke:#5a462f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2611
+ <path
2612
+ inkscape:connector-curvature="0"
2613
+ id="path2675"
2614
+ d="m 107.90177,249.26989 c -0.0418,-0.94459 -0.28077,-6.33941 -0.42102,-9.50613 -0.11343,-2.56119 0.49181,-4.25783 1.84834,-6.3159 0.77261,-1.17216 2.36734,-1.92512 2.3966,-1.94519"
2615
+ style="fill:none;stroke:#7c5c00;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2616
+ <path
2617
+ inkscape:connector-curvature="0"
2618
+ id="path2677"
2619
+ d="m 111.55565,251.68794 c 1.05589,-1.60198 4.85696,-2.89089 7.28694,-3.64186 0.22629,-0.0699 0.47191,-0.0223 0.70787,-0.0335 2.37474,-0.11223 4.94864,-0.60027 7.41649,-0.7169 4.64575,-0.21957 8.01039,4.38443 12.5983,4.1676 0.5899,-0.0279 1.17979,-0.0558 1.76969,-0.0836"
2620
+ style="fill:none;stroke:#7c5c00;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2621
+ <path
2622
+ inkscape:connector-curvature="0"
2623
+ id="path2629"
2624
+ d="m 91.32919,243.4582 c -0.36615,-1.26428 2.48178,-1.18284 3.08828,-2.34427 1.77855,-3.40585 3.88701,-6.67757 5.94984,-9.80722 1.57776,-2.3937 3.01358,-5.09231 4.63126,-7.54659 1.12825,-1.71172 3.1498,-3.31717 4.777,-4.256"
2625
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2626
+ <path
2627
+ inkscape:connector-curvature="0"
2628
+ id="path2625"
2629
+ d="m 86.84136,246.235 c -1.8348,-0.38275 -6.6368,-8.00777 -9.33422,-10.55041 -1.96345,-1.8508 -2.74266,-3.286 -4.84408,-5.26685 -2.12205,-2.00029 -3.57183,-3.90215 -5.23039,-5.98135"
2630
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2631
+ <path
2632
+ inkscape:connector-curvature="0"
2633
+ sodipodi:nodetypes="csssc"
2634
+ id="path2595"
2635
+ d="m 105.71338,247.90777 c 0.38835,-0.0183 5.20996,-2.99997 7.28694,-3.64186 4.246,-1.31222 8.54645,-1.50307 13.04709,-1.71578 4.16685,-0.19693 6.37586,0.0594 10.00739,1.72535 5.09312,2.33646 15.59472,-3.2335 16.18395,-2.96319"
2636
+ style="fill:none;stroke:#5a462f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2637
+ <path
2638
+ inkscape:connector-curvature="0"
2639
+ id="path2679"
2640
+ d="m 117.34704,254.31928 c 2.30725,-0.10905 9.30288,2.21479 12.63069,4.89883 2.19338,1.76906 4.57703,3.26332 6.61376,5.1832 2.21981,2.09243 3.78715,4.62092 5.97066,6.67913 2.16132,2.03731 2.88328,7.01103 4.33052,9.68773 2.13984,3.95768 5.25606,7.23922 8.9479,9.8359 1.92658,1.35509 3.5234,1.93597 5.77634,2.29171"
2641
+ style="fill:none;stroke:#7c5c00;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2642
+ <path
2643
+ inkscape:connector-curvature="0"
2644
+ id="path2681"
2645
+ d="m 119.98883,265.91874 c 3.68069,2.58886 8.23318,5.83202 11.05533,9.36991 1.78822,2.24174 3.16801,5.23764 4.94124,7.46056 1.8124,2.27206 3.1574,5.07839 5.27898,7.07821 1.63867,1.54464 2.91217,5.09811 4.21717,7.12841 2.23641,3.47938 3.9925,6.56626 7.16202,9.55391 2.89471,2.72861 5.18867,6.12512 8.54537,8.75576 0.39919,0.31285 0.74026,0.69779 1.11039,1.04667"
2646
+ style="fill:none;stroke:#7c5c00;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2647
+ <path
2648
+ inkscape:connector-curvature="0"
2649
+ id="path2683"
2650
+ d="m 128.40015,283.77761 c 2.74885,2.15428 11.97093,5.95915 16.07522,10.59821 1.37497,1.55412 0.8428,5.07806 1.36948,6.8966 0.75762,2.61597 0.51244,5.63525 1.08031,8.3758 0.71794,3.46479 1.25586,6.50428 2.2069,9.7881 0.88961,3.07171 2.82792,6.86993 5.00601,8.92305 4.24084,3.99749 8.89273,8.03211 12.93836,11.8456 0.12338,0.1163 0.24675,0.23259 0.37013,0.3489"
2651
+ style="fill:none;stroke:#7c5c00;stroke-width:4.86142826;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2652
+ <path
2653
+ inkscape:connector-curvature="0"
2654
+ id="path2687"
2655
+ d="m 129.38781,333.98859 c 2.15829,2.03444 4.93656,7.3398 6.84047,10.30187 1.44179,2.24312 2.69336,4.98143 3.86323,7.14511 1.26402,2.33785 2.4293,4.57381 3.84704,6.77951 1.03415,1.60894 1.79293,4.73656 2.3989,6.11517"
2656
+ style="fill:none;stroke:#7c5c00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2657
+ <path
2658
+ inkscape:connector-curvature="0"
2659
+ id="path2641"
2660
+ d="m 139.74221,311.5161 c 3.14655,5.81961 8.05879,10.60867 11.71693,16.29996 1.84322,2.86767 1.93243,6.45126 3.9442,8.97323 1.87534,2.35095 4.51021,6.99902 6.1164,9.96971 1.25432,2.3199 4.30246,4.7563 5.95447,6.31352 1.04432,0.9844 1.66933,2.09269 2.25316,2.82459"
2661
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2662
+ <path
2663
+ inkscape:connector-curvature="0"
2664
+ id="path2603"
2665
+ d="m 126.95653,271.08522 c 2.92148,5.40333 9.26874,10.48868 13.77579,14.73711 2.86814,2.70358 5.91626,6.48104 7.86989,9.52046 1.11039,1.72754 0.44648,4.94844 1.01554,6.91333 1.28846,4.4489 2.21273,8.79188 4.47626,12.97831 1.69442,3.13388 4.77891,5.90613 7.09724,8.09144 1.56049,1.47094 2.38056,3.21449 3.76608,4.9514 0.82413,1.03314 1.35483,1.83445 1.89923,2.84132"
2666
+ style="fill:none;stroke:#5a462f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2667
+ <path
2668
+ inkscape:connector-curvature="0"
2669
+ id="path2685"
2670
+ d="m 133.59624,306.94386 c 0.061,0.0575 1.11645,6.64231 1.82058,9.0736 1.33635,4.61423 2.04741,9.12381 3.0767,13.41085 0.56195,2.3405 0.72969,4.37775 1.35329,6.53098 1.12737,3.89264 2.78096,7.46266 5.42472,10.36878 0.63168,0.69436 1.24456,1.40673 1.86684,2.11008 3.1789,3.59309 6.86654,6.82289 10.37984,10.1346 1.9597,1.84726 3.92449,4.1286 6.25983,5.19993"
2671
+ style="fill:none;stroke:#7c5c00;stroke-width:4.86144972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2672
+ <path
2673
+ inkscape:connector-curvature="0"
2674
+ id="path2637"
2675
+ d="m 130.89842,271.99807 c 3.7824,4.74166 13.44395,9.8697 18.74709,14.86856 2.22324,2.09566 3.3689,4.92736 5.63292,7.06148 1.66669,1.57105 2.20842,3.34403 3.78227,5.31702 1.52902,1.9168 3.35252,3.39701 4.84408,5.26685 1.75524,2.20038 2.72854,5.15283 4.23336,7.49401"
2676
+ style="fill:none;stroke:#000000;stroke-width:5.40161085;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2677
+ <path
2678
+ inkscape:connector-curvature="0"
2679
+ id="path2609"
2680
+ d="m 137.62552,335.79757 c 0.45948,0.84981 1.66931,6.77979 3.26871,9.73791 1.27883,2.36523 1.41,5.50929 2.47987,7.94328 1.21185,2.75701 2.72882,5.70578 3.57407,8.62433 0.56049,1.93532 1.58881,4.28121 2.38271,5.74955 1.05292,1.94739 1.7319,3.87452 2.73665,5.73283 0.10211,0.18886 0.68352,0.6443 0.74026,0.69778"
2681
+ style="fill:none;stroke:#5a462f;stroke-width:6.48193312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2682
+ <path
2683
+ inkscape:connector-curvature="0"
2684
+ id="path2701"
2685
+ d="m 73.25755,339.93884 c 0.14204,1.65238 -1.67524,4.982 -2.15369,7.42951 -0.63674,3.25719 -0.80272,5.90026 -0.64079,9.55629 0.22346,5.04552 -0.62728,9.86155 -0.3979,15.0406 0.18518,4.18121 -1.14087,7.43477 -3.79384,10.4381 -0.77751,0.88019 -1.23133,1.61725 -2.02646,2.29408"
2686
+ style="fill:none;stroke:#755a00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2687
+ <path
2688
+ inkscape:connector-curvature="0"
2689
+ id="path2705"
2690
+ d="m 87.51451,349.52383 c -0.44515,2.2771 -1.76711,8.14222 -2.31332,11.83365 -0.34404,2.32515 0.0652,5.04792 -0.38401,7.34587 -0.44018,2.2517 -3.09419,5.34468 -4.29352,7.16423 -1.44298,2.18923 -1.95843,3.83026 -1.84834,6.31592 0.0705,1.59145 0.42402,0.78421 0.77265,1.42901"
2691
+ style="fill:none;stroke:#755a00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2692
+ <path
2693
+ inkscape:connector-curvature="0"
2694
+ id="path2707"
2695
+ d="m 93.4042,354.37486 c 0.0833,1.88035 -2.79456,8.01709 -3.40751,11.15261 -0.46479,2.37756 0.24686,5.57402 0.35624,8.04364 0.128,2.89007 -0.57688,6.74909 -0.99472,9.57303 -0.32486,2.19546 0.34274,4.52507 -0.0625,6.59788"
2696
+ style="fill:none;stroke:#755a00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2697
+ <path
2698
+ inkscape:connector-curvature="0"
2699
+ id="path2711"
2700
+ d="m 103.4116,356.10021 c 0.0887,2.00298 1.53538,10.64245 1.72573,14.94025 0.22051,4.97889 -0.27467,11.32486 4.1709,14.0919 1.82711,1.13723 0.28814,4.57248 -0.11104,5.50103 -0.0678,0.15768 -0.22516,0.2549 -0.33775,0.38233"
2701
+ style="fill:none;stroke:#755a00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2702
+ <path
2703
+ inkscape:connector-curvature="0"
2704
+ id="path2713"
2705
+ d="m 109.37995,354.71898 c -0.24687,0.57426 4.23584,7.54993 4.39529,11.15022 0.19265,4.34975 0.53033,7.35861 2.62561,11.23386 1.08753,2.01141 0.8948,4.187 0.99935,6.54771 0.0983,2.2198 0.0449,4.49092 0.64541,6.56443 0.44755,1.54532 0.21714,0.30524 0.75646,1.06341"
2706
+ style="fill:none;stroke:#755a00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2707
+ <path
2708
+ inkscape:connector-curvature="0"
2709
+ id="path2717"
2710
+ d="m 118.96632,346.93822 c 0.28767,6.49505 8.59868,13.27568 10.44693,19.65746 0.81946,2.82949 -0.0793,6.2178 0.0509,9.15721 0.0639,1.44222 0.24735,2.13584 0.85362,3.25712"
2711
+ style="fill:none;stroke:#755a00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2712
+ <path
2713
+ inkscape:connector-curvature="0"
2714
+ id="path2719"
2715
+ d="m 124.70797,340.43831 c 0.11083,2.5022 3.86357,11.82641 5.68381,16.21872 0.39712,0.95824 0.79424,1.91652 1.19135,2.87476 1.59705,3.85372 2.42337,7.87245 4.73304,10.76787"
2716
+ style="fill:none;stroke:#755a00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2717
+ <path
2718
+ inkscape:connector-curvature="0"
2719
+ id="path2721"
2720
+ d="m 81.21767,327.47192 c 0.0508,1.14769 0.20659,4.66446 0.30767,6.94679 0.0991,2.23671 0.15704,3.66362 -0.83511,5.16885"
2721
+ style="fill:none;stroke:#755a00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2722
+ <path
2723
+ inkscape:connector-curvature="0"
2724
+ id="path2723"
2725
+ d="m 86.20517,327.96899 c 0.0638,1.44061 0.23972,5.41256 0.35625,8.04362 0.0768,1.73471 -1.29931,3.67803 -1.91311,4.85344"
2726
+ style="fill:none;stroke:#755a00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2727
+ <path
2728
+ inkscape:connector-curvature="0"
2729
+ id="path2727"
2730
+ d="m 97.91749,328.14821 c 0.0784,1.76991 1.54165,6.71918 2.1907,9.42247 0.2719,1.13247 0.44507,2.04083 0.49968,3.27386"
2731
+ style="fill:none;stroke:#755a00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2732
+ <path
2733
+ inkscape:connector-curvature="0"
2734
+ id="path2729"
2735
+ d="m 104.35313,329.3096 c 0.17099,0.71217 0.9191,4.73596 1.04792,7.64457 0.0594,1.3406 0.11875,2.6812 0.17813,4.02181"
2736
+ style="fill:none;stroke:#755a00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2737
+ <path
2738
+ inkscape:connector-curvature="0"
2739
+ id="path2733"
2740
+ d="m 117.09486,328.70741 c 0.0545,0.22712 2.30578,4.58818 3.12297,6.44734 0.29431,0.66954 0.52694,1.1988 0.78884,1.79463"
2741
+ style="fill:none;stroke:#755a00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2742
+ <path
2743
+ inkscape:connector-curvature="0"
2744
+ id="path2737"
2745
+ d="m 89.06906,328.5664 c 0.12259,2.76806 -0.38718,5.47666 0.35625,8.04365"
2746
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2747
+ <path
2748
+ inkscape:connector-curvature="0"
2749
+ id="path2739"
2750
+ d="m 95.76148,327.51734 c 0.0286,0.64575 -0.13142,5.04101 -0.0139,7.69475 0.055,1.24169 -0.99751,2.86039 -1.23763,4.08872"
2751
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2752
+ <path
2753
+ inkscape:connector-curvature="0"
2754
+ id="path2743"
2755
+ d="m 109.96754,327.9451 c 0.0318,0.71772 -0.1241,5.20626 0.002,8.06035 0.0317,0.71522 -0.17397,1.17575 -0.27297,1.84485"
2756
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2757
+ <path
2758
+ inkscape:connector-curvature="0"
2759
+ id="path2747"
2760
+ d="m 76.81312,340.13719 c 0.63869,2.20532 -2.37587,3.91341 -3.28029,6.01721 -0.67168,1.56242 0.25109,5.66921 0.32387,7.31239 0.1523,3.4389 -2.7087,12.51086 -3.51856,16.65363 -0.15791,0.80778 -2.49121,2.97185 -3.00731,4.17236"
2761
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2762
+ <path
2763
+ inkscape:connector-curvature="0"
2764
+ id="path2751"
2765
+ d="m 87.91702,350.60396 c -3.08574,3.49325 -5.97336,17.28443 -5.70464,23.35189 0.16926,3.82154 0.69625,8.12107 0.16424,11.71656 -0.0399,0.26968 -0.21436,0.49866 -0.32155,0.74798"
2766
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2767
+ <path
2768
+ inkscape:connector-curvature="0"
2769
+ id="path2753"
2770
+ d="m 92.42336,356.25316 c -0.44696,3.02063 0.0617,10.99148 1.01785,14.97368 0.74129,3.08749 0.30332,6.96907 -0.27066,9.9052 -0.37287,1.90742 -1.52188,3.94337 -2.23467,5.60139"
2771
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2772
+ <path
2773
+ inkscape:connector-curvature="0"
2774
+ id="path2759"
2775
+ d="m 113.96493,354.13592 c 0.32811,7.40812 4.82509,18.82835 7.23142,27.13713 0.26123,0.90199 0.35281,2.76674 0.49967,3.27385"
2776
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2777
+ <path
2778
+ inkscape:connector-curvature="0"
2779
+ id="path2763"
2780
+ d="m 122.66531,342.36677 c 0.55965,2.33093 10.92,11.90626 12.81113,16.98102 0.77607,2.08256 0.56109,4.66048 0.66161,6.93006 0.052,1.17456 0.83809,2.90672 0.91838,4.71959"
2781
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2782
+ <path
2783
+ inkscape:connector-curvature="0"
2784
+ id="path2767"
2785
+ d="m 87.6857,329.36455 c -0.7385,1.12042 -0.49103,4.92957 -0.38402,7.34585 0.0956,2.15783 -0.82651,3.33111 -1.18904,5.1856"
2786
+ style="fill:none;stroke:#130500;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2787
+ <path
2788
+ inkscape:connector-curvature="0"
2789
+ id="path2765"
2790
+ d="m 81.95793,328.16971 c 0.69082,1.61864 0.97795,5.14949 -0.72176,7.7282 -0.9574,1.45252 -1.95567,2.7658 -2.26705,4.87015"
2791
+ style="fill:none;stroke:#130500;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2792
+ <path
2793
+ inkscape:connector-curvature="0"
2794
+ id="path2735"
2795
+ d="m 83.61427,325.52673 c 0.0596,1.34651 0.22944,5.18054 0.34005,7.67802 0.0324,0.73123 0.0648,1.46249 0.0972,2.19372"
2796
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2797
+ <path
2798
+ inkscape:connector-curvature="0"
2799
+ id="path2769"
2800
+ d="m 94.76444,329.03 c 0.0663,1.49699 0.23882,5.39233 0.35625,8.04364 0.0784,1.7706 0.0719,3.42098 -0.12724,5.13541"
2801
+ style="fill:none;stroke:#130500;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2802
+ <path
2803
+ inkscape:connector-curvature="0"
2804
+ id="path2725"
2805
+ d="m 92.2383,328.05022 c 0.0605,1.36632 0.25844,5.83517 0.37244,8.40928 0.053,1.19619 0.009,2.19832 -0.2082,3.30731"
2806
+ style="fill:none;stroke:#755a00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2807
+ <path
2808
+ inkscape:connector-curvature="0"
2809
+ id="path2771"
2810
+ d="m 101.21627,330.557 c 0.12088,2.72923 0.5874,5.25468 0.71018,8.02691 0.0694,1.56664 0.0464,3.01164 -0.15961,4.40417"
2811
+ style="fill:none;stroke:#130500;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2812
+ <path
2813
+ inkscape:connector-curvature="0"
2814
+ id="path2741"
2815
+ d="m 102.92118,329.01089 c 0.0148,0.33386 -1.60437,3.8162 -1.4944,6.29917 0.0902,2.03708 -0.18714,3.78279 -0.0949,5.86665"
2816
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2817
+ <path
2818
+ inkscape:connector-curvature="0"
2819
+ id="path2773"
2820
+ d="m 107.84392,328.04546 c 0.1338,3.02106 -0.5681,8.15688 2.1907,9.42248 4.1645,1.91046 9.04804,3.55364 7.4188,7.34347"
2821
+ style="fill:none;stroke:#130500;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2822
+ <path
2823
+ inkscape:connector-curvature="0"
2824
+ id="path2775"
2825
+ d="m 116.01686,328.39196 c 1.9844,0.91034 1.14894,4.58658 2.75284,6.09845 1.71731,1.61877 3.26819,1.7182 3.39594,4.60251 0.0305,0.68942 -0.90065,1.01959 -1.35097,1.52939"
2826
+ style="fill:none;stroke:#130500;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2827
+ <path
2828
+ inkscape:connector-curvature="0"
2829
+ id="path2731"
2830
+ d="m 110.01612,329.04196 c 0.11619,2.62338 2.24572,5.47714 2.8338,7.92653 0.26471,1.10248 0.2143,2.28847 0.49968,3.27385"
2831
+ style="fill:none;stroke:#755a00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2832
+ <path
2833
+ inkscape:connector-curvature="0"
2834
+ id="path2745"
2835
+ d="m 113.82846,327.02984 c 0.0109,0.24691 3.62017,3.82821 4.1524,5.66593 0.27255,0.94109 0.42226,1.52609 0.46728,2.54261"
2836
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2837
+ <path
2838
+ inkscape:connector-curvature="0"
2839
+ id="path2777"
2840
+ d="m 78.27976,349.22751 c 0.046,1.03823 -2.06499,6.97568 -2.44287,8.9087 -1.24261,6.3565 -1.55815,9.64239 -5.70695,15.29151 -2.02527,2.75766 -3.99076,5.65344 -5.29055,8.6769 -0.34539,0.80343 -0.66651,1.5504 -0.96465,2.24391"
2841
+ style="fill:none;stroke:#130500;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2842
+ <path
2843
+ inkscape:connector-curvature="0"
2844
+ id="path2779"
2845
+ d="m 88.48147,355.34029 c -1.20405,2.80077 -4.05828,6.85783 -4.83946,10.8539 -0.56376,2.88391 -0.43402,6.21665 -0.30304,9.17395 0.13063,2.94957 -1.22744,4.8716 -2.1699,7.06387 -0.71431,1.66158 -1.59845,2.3469 -1.94549,4.12219"
2846
+ style="fill:none;stroke:#130500;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2847
+ <path
2848
+ inkscape:connector-curvature="0"
2849
+ id="path2749"
2850
+ d="m 83.29849,346.42561 c -0.44182,2.26011 -3.13113,7.04802 -3.79384,10.4381 -0.63334,3.23987 0.66535,7.01465 0.80735,10.22064 0.15964,3.60465 -0.81674,6.68385 -3.13455,9.30776 -1.50274,1.7012 -2.4588,3.93538 -4.00434,5.68503"
2851
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2852
+ <path
2853
+ inkscape:connector-curvature="0"
2854
+ id="path2703"
2855
+ d="m 79.29299,348.08047 c -0.88078,0.99711 -1.40144,8.3981 -1.2677,11.41785 0.11305,2.55259 0.54676,5.18077 -0.38401,7.34587 -1.111,2.5843 -2.35429,3.97099 -2.89396,6.7317 -0.20516,1.04946 -0.3675,1.87993 -0.57833,2.95841"
2856
+ style="fill:none;stroke:#755a00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2857
+ <path
2858
+ inkscape:connector-curvature="0"
2859
+ id="path2781"
2860
+ d="m 96.10615,351.31609 c -1.5676,3.64645 -0.59651,10.55611 -0.41409,14.67498 0.13797,3.11499 0.28149,6.81768 -0.64078,9.5563 -0.74717,2.21864 -1.39638,4.45234 -1.83215,6.68153 -0.4265,2.18173 -0.87626,4.2397 -0.77034,6.63134"
2861
+ style="fill:none;stroke:#130500;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2862
+ <path
2863
+ inkscape:connector-curvature="0"
2864
+ id="path2783"
2865
+ d="m 106.09736,352.67582 c -0.94346,4.82619 0.61347,13.85151 0.89062,20.10909 0.13382,3.0217 0.61188,5.80725 0.74257,8.75816 0.11989,2.70694 0.58792,5.26643 0.71018,8.02691 0.0108,0.24374 0.0216,0.48749 0.0324,0.73124"
2866
+ style="fill:none;stroke:#130500;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2867
+ <path
2868
+ inkscape:connector-curvature="0"
2869
+ id="path2785"
2870
+ d="m 114.8972,351.16076 c 0.14339,3.23762 -3.15162,6.13847 1.16128,10.20391 3.53446,3.33165 4.75296,3.09395 6.00305,7.41038 0.94242,3.25404 -0.46285,5.56568 -0.31924,8.80833 0.0702,1.58436 0.14034,3.16871 0.21051,4.75306"
2871
+ style="fill:none;stroke:#130500;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2872
+ <path
2873
+ inkscape:connector-curvature="0"
2874
+ id="path2757"
2875
+ d="m 105.84058,354.88626 c 0.37478,8.46227 8.30827,19.41863 8.72812,28.89833 0.0918,2.07184 0.18352,4.14369 0.27529,6.21553 0.005,0.12189 0.23595,-0.0112 0.35393,-0.0167"
2876
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2877
+ <path
2878
+ inkscape:connector-curvature="0"
2879
+ id="path2755"
2880
+ d="m 102.63895,354.6712 c -1.5646,8.00365 -2.43495,17.09547 -2.00334,26.84079 0.15835,3.57519 1.71898,6.77971 1.88535,10.53609"
2881
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2882
+ <path
2883
+ inkscape:connector-curvature="0"
2884
+ id="path2709"
2885
+ d="m 99.18054,356.66657 c -0.63128,4.26644 -3.79834,10.3362 -3.53474,16.288 0.10202,2.30356 0.87822,3.81286 0.98315,6.1821 0.0915,2.06681 0.14127,3.89456 0.59684,5.46757"
2886
+ style="fill:none;stroke:#755a00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2887
+ <path
2888
+ inkscape:connector-curvature="0"
2889
+ id="path2787"
2890
+ d="m 122.21653,348.25015 c 0.14297,3.22817 2.4705,5.7445 5.00601,8.92304 2.37455,2.97676 3.1969,8.11657 3.36587,11.93163 0.15077,3.40426 1.05532,6.51066 2.17451,9.05687 0.28076,0.63874 0.54245,1.00326 0.77265,1.42902"
2891
+ style="fill:none;stroke:#130500;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2892
+ <path
2893
+ inkscape:connector-curvature="0"
2894
+ id="path2761"
2895
+ d="m 118.29083,347.7029 c 0.88549,3.05747 2.20171,5.24101 5.0384,9.65428 1.46086,2.2728 0.1908,8.84543 0.87212,11.68313 0.58812,2.44953 2.11418,4.20295 2.76903,6.46407"
2896
+ style="fill:none;stroke:#4e3400;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2897
+ <path
2898
+ inkscape:connector-curvature="0"
2899
+ id="path2715"
2900
+ d="m 116.28057,350.36262 c 0.74784,2.5822 1.06903,8.62698 1.96631,12.36417 0.73152,3.04678 2.65832,4.22355 3.50929,7.16185 0.91671,3.16526 2.00298,5.18368 2.15832,8.69124 0.10059,2.27115 0.55454,4.51249 0.66161,6.93006"
2901
+ style="fill:none;stroke:#755a00;stroke-width:5.71428585;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2902
+ <path
2903
+ inkscape:connector-curvature="0"
2904
+ sodipodi:nodetypes="csssc"
2905
+ id="path2789"
2906
+ d="m 94.83717,307.78163 c -1.51463,3.12926 -2.81278,3.54944 -3.41036,6.01867 -0.54674,2.25913 -1.04307,3.93618 -1.04307,7.00372 0,1.50152 6.69478,1.61624 7.823,1.61624 2.64609,0 5.56753,-2.69374 8.34453,-2.69374"
2907
+ style="fill:none;stroke:#000000;stroke-width:4.49779892;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2908
+ <path
2909
+ inkscape:connector-curvature="0"
2910
+ sodipodi:nodetypes="csccssc"
2911
+ id="path2791"
2912
+ d="m 81.53279,283.84937 c -6.44249,1.00711 -10.87369,7.87225 -9.92437,15.45055 0.2371,1.89279 0.78719,3.653 1.58112,5.21929 12.49996,4.19981 16.12593,-0.47437 21.96438,-2.93607 0.38183,-1.72345 0.48006,-3.57033 0.24296,-5.46312 -0.96058,-7.66815 -7.07116,-13.17869 -13.6378,-12.3009 -0.077,0.0103 -0.1499,0.0183 -0.22629,0.0303 z"
2913
+ style="fill:url(#linearGradient2812);fill-opacity:1;stroke:#130500;stroke-width:2.74285722;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2914
+ <path
2915
+ inkscape:connector-curvature="0"
2916
+ sodipodi:nodetypes="csccssc"
2917
+ style="fill:url(#linearGradient2810);fill-opacity:1;stroke:#130500;stroke-width:2.74285722;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2918
+ d="m 114.43998,284.9014 c -6.48929,-0.60696 -12.37582,4.97039 -13.2011,12.56417 -0.20613,1.89666 -0.0777,3.74156 0.33224,5.4581 6.76746,4.26454 14.2292,4.36342 22.00925,2.55244 0.76821,-1.57991 1.28944,-3.34947 1.49556,-5.24612 0.83507,-7.68382 -3.82915,-14.5392 -10.40919,-15.3023 -0.0771,-0.009 -0.14981,-0.0191 -0.22676,-0.0263 z"
2919
+ id="path2796" />
2920
+ <path
2921
+ inkscape:connector-curvature="0"
2922
+ sodipodi:nodetypes="csc"
2923
+ id="path2798"
2924
+ d="m 82.2624,301.69219 c -0.47776,-3.97636 -1.64074,-3.81974 2.34369,-4.84873 2.74693,-0.7094 1.48695,2.45795 2.2675,4.07059"
2925
+ style="fill:none;stroke:#000000;stroke-width:4.49779892;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2926
+ <path
2927
+ inkscape:connector-curvature="0"
2928
+ sodipodi:nodetypes="csc"
2929
+ id="path2800"
2930
+ d="m 109.55886,301.77841 c 0.83451,-1.83632 1.06831,-4.68007 5.10063,-3.17962 0.43033,0.16013 -0.65214,3.37238 -0.22554,4.04274"
2931
+ style="fill:none;stroke:#000000;stroke-width:4.49779892;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2932
+ <path
2933
+ inkscape:connector-curvature="0"
2934
+ id="path2802"
2935
+ d="m 105.13351,341.20074 c 2.93097,0.60636 12.40598,2.56658 18.40963,3.80863 5.57561,1.15349 9.83108,3.13276 15.13653,4.23037 5.18914,1.07354 10.71342,3.31531 16.15928,4.44196 4.69221,0.97074 10.05929,3.17998 15.13652,4.23037 8.10594,1.67698 7.30205,3.08386 2.86205,7.18546 -7.35901,6.79815 4.19521,5.31196 4.29447,5.28402 1.96003,-0.55163 3.38655,-6.49393 1.2262,4.64925 -1.25465,6.4715 -6.53967,3.04262 -12.06964,1.89857 -5.53098,-1.14426 -10.59462,-2.41096 -13.90894,-5.0753 -3.73215,-3.00021 -8.31769,-4.65116 -12.47652,-6.97674 -5.41648,-3.02883 -10.00394,-4.03082 -14.72687,-6.3434 -4.91091,-2.40463 -9.79851,-3.06263 -13.90894,-5.0753 -2.56803,-1.25744 -5.53919,-8.93638 -6.13377,-12.25789 z"
2936
+ style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4.49779892;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2937
+ <path
2938
+ inkscape:connector-curvature="0"
2939
+ sodipodi:nodetypes="cssssssc"
2940
+ id="path2814"
2941
+ d="m 167.68182,364.28481 c -1.86327,1.47682 -3.87086,5.75833 -4.69379,9.15872 -0.79954,3.3037 3.04484,4.24463 5.21533,5.92623 1.82935,1.4173 6.98791,0.53875 9.38759,0.53875 2.47391,0 3.55043,-3.35678 4.17227,-5.92623 0.55943,-2.3116 0.52153,-4.92029 0.52153,-7.54247 0,-2.76288 -4.63052,-8.08123 -6.77993,-8.08123 -2.70774,0 -5.14599,5.37316 -7.823,5.92623 z"
2942
+ style="fill:url(#linearGradient2822);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4.49779892;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2943
+ <path
2944
+ inkscape:connector-curvature="0"
2945
+ id="path4063"
2946
+ d="m 73.90476,278.66665 c 2.95915,-2.50428 9.73171,-4.03939 14.47619,-5.33334"
2947
+ style="fill:none;stroke:#000000;stroke-width:4.57142878;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2948
+ <path
2949
+ inkscape:connector-curvature="0"
2950
+ id="path4065"
2951
+ d="m 106.28572,274.85712 c 2.15863,-0.87008 7.90174,1.5607 10.66666,2.66667 0.91915,0.36766 1.91664,1.07379 2.66667,1.52381"
2952
+ style="fill:none;stroke:#000000;stroke-width:4.57142878;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2953
+ </g>
2954
+ <g
2955
+ id="WhiteQueen">
2956
+ <rect
2957
+ y="200"
2958
+ x="200"
2959
+ height="200"
2960
+ width="200"
2961
+ id="rect5056-7"
2962
+ style="fill:none;stroke:none" />
2963
+ <path
2964
+ inkscape:connector-curvature="0"
2965
+ sodipodi:nodetypes="cccccccccc"
2966
+ id="path2901"
2967
+ d="m 236.05082,308.07946 c -3.63973,17.98871 -2.38687,34.80685 -16.20264,49.50303 -8.90333,9.28155 -4.18375,28.44858 8.26516,17.03677 13.54195,-10.23619 22.19631,-2.1647 36.79003,-4.96836 19.62014,4.5953 49.19054,9.49779 70.02323,6.96213 22.49327,-9.96108 39.58161,11.71025 50.09875,-7.52046 -5.16347,-13.36414 -20.35832,-19.76076 -18.99545,-38.32677 1.76301,-22.60476 -9.21524,-49.13125 -30.59752,-59.02341 -17.88217,-6.52548 -39.88302,-8.94871 -57.39638,-0.47055 -10.46246,1.40054 -34.3536,43.33185 -41.98518,36.80762 z"
2968
+ style="fill:url(#linearGradient2944);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2969
+ <path
2970
+ inkscape:connector-curvature="0"
2971
+ id="path2950"
2972
+ d="m 239.79607,329.8858 c 0.77619,2.20047 0.62378,7.8967 0,11.63946 -0.43375,2.60259 -2.2076,4.3965 -2.77124,6.65113 -0.59396,2.37588 -2.77294,4.06684 -3.87974,5.5426 -1.63366,2.17826 -2.89351,4.00209 -4.43399,5.5426 -2.10799,2.10804 -1.34117,4.37591 1.1085,4.98834 1.67177,0.41795 6.04622,-2.75867 8.31373,-3.32556 2.39723,-0.59932 3.87974,-5.76723 3.87974,-7.75964 0,-1.96445 2.28132,-4.00848 3.32549,-6.09686 1.33544,-2.67096 2.5272,2.0847 2.21699,3.32556 -0.7817,3.12685 1.42684,5.86096 2.77124,7.20538 2.99251,2.99258 6.09673,-4.26211 6.09673,-4.98834 0,-3.71474 2.54797,-1.55509 3.87974,1.10852 1.00335,2.00675 1.15498,4.48057 2.77124,6.09686 0.29211,0.29212 0.3695,0.73901 0.55425,1.10852"
2973
+ style="fill:none;stroke:#000000;stroke-width:1.82857168;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2974
+ <path
2975
+ inkscape:connector-curvature="0"
2976
+ id="path2952"
2977
+ d="m 358.95947,336.53692 c 2.3551,2.35516 -0.25355,6.74544 0.55424,9.97669 0.8985,3.59405 3.3665,6.13786 5.54249,8.3139 1.65654,1.65658 2.94812,4.0567 4.43398,5.5426 1.54586,1.54589 2.27857,3.57189 2.77124,5.5426 0.83037,3.32152 -1.37651,2.84286 -3.87974,2.21704 -3.10361,-0.77592 -8.05028,-4.46144 -9.42221,-7.20538 -1.17407,-2.34818 -2.3188,-4.63769 -3.3255,-6.65112 -2.09722,-4.19455 -4.30065,-2.35038 -6.09673,-0.55426 -2.90985,2.90991 -3.87974,2.1863 -3.87974,6.65112 0,2.74437 -1.10681,2.49333 -3.87973,3.87982 -2.97791,1.48899 -4.56659,2.56047 -7.20523,3.87982"
2978
+ style="fill:none;stroke:#000000;stroke-width:1.82857168;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2979
+ <path
2980
+ inkscape:connector-curvature="0"
2981
+ sodipodi:nodetypes="csssc"
2982
+ id="path2374"
2983
+ d="m 302.71888,243.94326 c -26.53598,0 -48.07501,31.32918 -48.07501,69.94075 0,38.61157 31.23891,69.28255 48.07501,69.94982 15.87379,0.62914 48.07503,-31.33824 48.07503,-69.94982 0,-38.61157 -21.53905,-69.94074 -48.07503,-69.94075 z"
2984
+ style="fill:url(#linearGradient2382);fill-opacity:1;stroke:#000000;stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2985
+ <path
2986
+ inkscape:connector-curvature="0"
2987
+ sodipodi:nodetypes="csc"
2988
+ id="path3412"
2989
+ d="m 299.51404,319.07221 c -0.82886,8.82491 -9.54159,19.20139 -3.12041,24.95407 3.66256,3.28127 9.82405,2.2602 11.86837,2.2602"
2990
+ style="fill:none;stroke:#000000;stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2991
+ <path
2992
+ inkscape:connector-curvature="0"
2993
+ sodipodi:nodetypes="ccsscsssss"
2994
+ id="path3433"
2995
+ d="m 300.59356,242.79109 c -15.59707,-0.1484 -39.23599,3.18305 -47.61233,18.23197 -9.94854,19.95926 -18.31861,22.15947 -15.3567,46.08231 2.17762,17.58835 16.26241,30.92755 17.4349,17.39377 0.85559,-9.87586 3.50144,-26.93919 7.23376,-36.38811 6.33185,-19.91146 19.0705,-26.78053 40.00158,-27.48134 22.61469,-0.75718 35.17611,7.35495 42.77695,25.08427 6.76748,15.7855 1.73822,28.20922 8.03774,42.73109 1.90951,4.40186 13.6383,-13.9347 8.64203,-43.1889 -4.81965,-35.46703 -28.99587,-39.09721 -61.15793,-42.46506 z"
2996
+ style="fill:#804020;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2997
+ <path
2998
+ inkscape:connector-curvature="0"
2999
+ id="path2823"
3000
+ d="m 346.64214,324.76919 c -2.07921,2.11711 -3.64218,10.95381 -3.64218,21.5293 0,12.15294 2.06469,22.01922 4.60496,22.01922 2.54026,0 4.60495,-9.86628 4.60495,-22.01922 0,-8.06065 -0.90957,-15.1074 -2.2616,-18.94361 3.03682,4.96979 5.16808,16.56906 5.16808,30.0757 0,18.02909 -3.80385,32.6614 -8.48329,32.66139 -4.67943,0 -8.47421,-14.6323 -8.47421,-32.66139 0,-18.02909 3.79478,-32.66139 8.47421,-32.66139 0.003,0 0.006,-2e-5 0.009,0 z"
3001
+ style="opacity:0.98999999;fill:#ffff40;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
3002
+ <path
3003
+ inkscape:connector-curvature="0"
3004
+ sodipodi:nodetypes="csc"
3005
+ id="path4323"
3006
+ d="m 322.75019,354.82239 c -0.89702,0.41978 -11.61548,4.4757 -19.67162,4.60909 -7.22428,0.11961 -17.08891,-3.36669 -18.23068,-3.65165"
3007
+ style="fill:none;stroke:#000000;stroke-width:3.65714407;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3008
+ <path
3009
+ inkscape:connector-curvature="0"
3010
+ sodipodi:nodetypes="cscsssc"
3011
+ id="path1928"
3012
+ d="m 236.40464,315.80002 c 11.22802,-23.91737 37.01504,-47.55029 68.52902,-45.632 22.12646,1.34686 51.37881,13.04053 59.94488,44.49543 8.57058,-12.4026 2.32072,-23.6795 -2.28515,-41.91586 -6.14453,-24.3284 -28.57691,-46.17238 -60.31456,-45.39069 -31.75878,0.7822 -50.16583,18.89624 -57.50093,43.91292 -5.89126,20.09242 -12.2522,17.6582 -8.37326,44.5302 z"
3013
+ style="fill:url(#linearGradient2936);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3014
+ <path
3015
+ inkscape:connector-curvature="0"
3016
+ style="opacity:0.98999999;fill:#ffff40;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3017
+ d="m 255.10667,323.96558 c -2.07921,2.11712 -3.64219,10.95382 -3.64219,21.52931 0,12.15294 2.06469,22.01922 4.60496,22.01922 2.54026,0 4.60496,-9.86628 4.60496,-22.01922 0,-8.06065 -0.90958,-15.1074 -2.26161,-18.94361 3.03682,4.96979 5.16809,16.56906 5.16809,30.0757 0,18.02909 -3.80386,32.6614 -8.4833,32.66139 -4.67943,0 -8.47421,-14.6323 -8.47421,-32.66139 0,-18.02909 3.79478,-32.6614 8.47421,-32.6614 0.003,0 0.006,-10e-6 0.009,0 z"
3018
+ id="path2828" />
3019
+ <path
3020
+ inkscape:connector-curvature="0"
3021
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2.74285769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3022
+ d="m 297.49098,309.18643 c 1.57362,2.29269 -0.0639,4.46234 -1.7474,6.73509 -6.2051,2.79307 -18.40681,4.36645 -26.78441,-2.79722 -4.70777,-4.02561 6.46981,-10.33129 14.4572,-10.16799 9.08642,0.18011 11.56432,2.57277 14.07461,6.23012 z"
3023
+ id="path2860"
3024
+ sodipodi:nodetypes="ccsss" />
3025
+ <path
3026
+ sodipodi:type="arc"
3027
+ style="fill:#000000;fill-opacity:1;stroke:#713e01;stroke-width:13.15185261;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3028
+ id="path2862"
3029
+ sodipodi:cx="361.66666"
3030
+ sodipodi:cy="545"
3031
+ sodipodi:rx="20"
3032
+ sodipodi:ry="20"
3033
+ d="m 381.66666,545 a 20,20 0 1 1 -40,0 20,20 0 1 1 40,0 z"
3034
+ transform="matrix(-0.2368784,-0.00369816,-0.00419688,0.18354903,372.43799,212.73589)" />
3035
+ <path
3036
+ inkscape:connector-curvature="0"
3037
+ style="fill:none;stroke:#000000;stroke-width:2.74285769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3038
+ d="m 295.46949,304.52742 c -0.18142,-0.79881 1.16947,-3.19582 1.51283,-4.40123"
3039
+ id="path2864" />
3040
+ <path
3041
+ inkscape:connector-curvature="0"
3042
+ style="fill:none;stroke:#000000;stroke-width:2.74285769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3043
+ d="m 289.28308,301.65096 c 0.22832,-1.16564 0.6858,-5.68292 0.58778,-7.49123"
3044
+ id="path2866"
3045
+ sodipodi:nodetypes="cs" />
3046
+ <path
3047
+ inkscape:connector-curvature="0"
3048
+ style="fill:none;stroke:#000000;stroke-width:2.74285769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3049
+ d="m 282.75138,300.7352 c 0.0717,-0.25172 -1.47328,-6.16921 -0.77069,-11.29623"
3050
+ id="path2868"
3051
+ sodipodi:nodetypes="cc" />
3052
+ <path
3053
+ inkscape:connector-curvature="0"
3054
+ style="fill:none;stroke:#000000;stroke-width:2.74285769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3055
+ d="m 276.05168,302.57566 c 0.0112,-0.34569 -2.63744,-4.33609 -2.90461,-5.57156 -0.38708,-1.78989 -0.5207,-3.97975 -0.85052,-5.50491"
3056
+ id="path2870"
3057
+ sodipodi:nodetypes="css" />
3058
+ <path
3059
+ inkscape:connector-curvature="0"
3060
+ style="fill:none;stroke:#000000;stroke-width:2.74285769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3061
+ d="m 270.24659,305.02703 c -0.20228,-0.41123 -2.47714,-0.95812 -2.95217,-3.16619 -0.0759,-0.35259 -1.31743,-2.56541 -1.50101,-2.87592"
3062
+ id="path2872"
3063
+ sodipodi:nodetypes="csc" />
3064
+ <path
3065
+ inkscape:connector-curvature="0"
3066
+ sodipodi:nodetypes="csc"
3067
+ id="path2874"
3068
+ d="m 256.54087,319.31652 c -1.26336,9.02521 -4.59832,26.21981 2.71071,21.2151 4.63503,-3.17374 -2.2364,-11.36317 2.12825,-24.76293"
3069
+ style="fill:url(#linearGradient2891);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3070
+ <path
3071
+ inkscape:connector-curvature="0"
3072
+ style="fill:url(#linearGradient2895);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3073
+ d="m 349.30457,320.97931 c 1.26337,9.0252 4.59832,26.2198 -2.7107,21.21509 -4.63503,-3.17374 2.2364,-11.36317 -2.12825,-24.76293"
3074
+ id="path2893"
3075
+ sodipodi:nodetypes="csc" />
3076
+ <path
3077
+ inkscape:connector-curvature="0"
3078
+ sodipodi:nodetypes="cc"
3079
+ id="path2897"
3080
+ d="m 271.1308,287.26944 c 7.11907,-2.38935 14.68666,-3.88166 23.27843,-3.32556"
3081
+ style="fill:none;stroke:#000000;stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3082
+ <path
3083
+ inkscape:connector-curvature="0"
3084
+ sodipodi:nodetypes="ccsss"
3085
+ id="path2908"
3086
+ d="m 307.18858,309.57835 c -1.57362,2.29269 0.0639,4.46234 1.7474,6.73509 6.2051,2.79307 18.40681,4.36646 26.78441,-2.79722 4.70777,-4.0256 -6.46981,-10.33129 -14.4572,-10.16799 -9.08642,0.18011 -11.56432,2.57277 -14.07461,6.23012 z"
3087
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2.74285769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3088
+ <path
3089
+ transform="matrix(0.2368784,-0.00369816,0.00419688,0.18354903,232.24146,213.12781)"
3090
+ d="m 381.66666,545 a 20,20 0 1 1 -40,0 20,20 0 1 1 40,0 z"
3091
+ sodipodi:ry="20"
3092
+ sodipodi:rx="20"
3093
+ sodipodi:cy="545"
3094
+ sodipodi:cx="361.66666"
3095
+ id="path2910"
3096
+ style="fill:#000000;fill-opacity:1;stroke:#713e01;stroke-width:13.15185261;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3097
+ sodipodi:type="arc" />
3098
+ <path
3099
+ inkscape:connector-curvature="0"
3100
+ id="path2912"
3101
+ d="m 309.21007,304.91935 c 0.18142,-0.79881 -1.16947,-3.19583 -1.51283,-4.40124"
3102
+ style="fill:none;stroke:#000000;stroke-width:2.74285769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3103
+ <path
3104
+ inkscape:connector-curvature="0"
3105
+ sodipodi:nodetypes="cs"
3106
+ id="path2914"
3107
+ d="m 315.39648,302.04289 c -0.22833,-1.16565 -0.68581,-5.68293 -0.58779,-7.49124"
3108
+ style="fill:none;stroke:#000000;stroke-width:2.74285769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3109
+ <path
3110
+ inkscape:connector-curvature="0"
3111
+ sodipodi:nodetypes="cc"
3112
+ id="path2916"
3113
+ d="m 321.92818,301.12712 c -0.0717,-0.25172 1.47328,-6.1692 0.77069,-11.29623"
3114
+ style="fill:none;stroke:#000000;stroke-width:2.74285769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3115
+ <path
3116
+ inkscape:connector-curvature="0"
3117
+ sodipodi:nodetypes="css"
3118
+ id="path2918"
3119
+ d="m 328.62788,302.96758 c -0.0111,-0.34569 2.63743,-4.33609 2.90461,-5.57156 0.38707,-1.78989 0.52069,-3.97975 0.85052,-5.5049"
3120
+ style="fill:none;stroke:#000000;stroke-width:2.74285769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3121
+ <path
3122
+ inkscape:connector-curvature="0"
3123
+ sodipodi:nodetypes="csc"
3124
+ id="path2920"
3125
+ d="m 334.43297,305.41895 c 0.20228,-0.41123 2.47713,-0.95812 2.95217,-3.16619 0.0759,-0.35259 1.31742,-2.56541 1.50101,-2.87591"
3126
+ style="fill:none;stroke:#000000;stroke-width:2.74285769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3127
+ <path
3128
+ inkscape:connector-curvature="0"
3129
+ style="fill:none;stroke:#000000;stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3130
+ d="m 333.54876,287.66136 c -7.11908,-2.38935 -14.68666,-3.88165 -23.27843,-3.32556"
3131
+ id="path2922"
3132
+ sodipodi:nodetypes="cc" />
3133
+ <path
3134
+ inkscape:connector-curvature="0"
3135
+ sodipodi:nodetypes="csc"
3136
+ id="path2924"
3137
+ d="m 247.72345,280.85904 c 10.87663,-11.26199 34.43608,-23.475 52.50631,-22.69611 27.46749,1.18395 44.84324,10.40555 59.28395,25.16501"
3138
+ style="fill:none;stroke:#000000;stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3139
+ </g>
3140
+ <g
3141
+ id="WhiteRook">
3142
+ <rect
3143
+ y="200"
3144
+ x="400"
3145
+ height="200"
3146
+ width="200"
3147
+ id="rect5056-1"
3148
+ style="fill:none;stroke:none" />
3149
+ <path
3150
+ inkscape:connector-curvature="0"
3151
+ style="opacity:0.98999999;fill:url(#linearGradient3360);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3152
+ d="m 408.83649,311.60553 0,38.71019 c -0.17049,0.26226 -0.25934,0.52945 -0.25934,0.80287 0,2.91645 10.06444,5.28601 22.46132,5.28601 11.36682,0 20.76586,-1.99046 22.25001,-4.56935 l 0.62914,0 0,-40.22972 -45.08113,0 z"
3153
+ id="path3356" />
3154
+ <path
3155
+ sodipodi:type="arc"
3156
+ style="opacity:0.98999999;fill:url(#linearGradient3362);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:19.3214283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3157
+ id="path3358"
3158
+ sodipodi:cx="579.82758"
3159
+ sodipodi:cy="321.0997"
3160
+ sodipodi:rx="146.13541"
3161
+ sodipodi:ry="30.641294"
3162
+ d="m 725.96298,321.0997 a 146.13541,30.641294 0 1 1 -292.27081,0 146.13541,30.641294 0 1 1 292.27081,0 z"
3163
+ transform="matrix(0.15368023,0,0,0.23312411,341.92818,237.42427)" />
3164
+ <path
3165
+ inkscape:connector-curvature="0"
3166
+ sodipodi:nodetypes="cc"
3167
+ id="path3333"
3168
+ d="m 442.45937,297.28287 0,91.3427"
3169
+ style="fill:none;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3170
+ <path
3171
+ inkscape:connector-curvature="0"
3172
+ style="fill:url(#linearGradient3354);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714216;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3173
+ d="m 472.83019,285.82028 c -19.28424,6.91923 -36.47633,9.82768 -58.83295,0.1014 9.10182,4.72028 21.90316,9.07537 29.17265,13.84148 11.62251,-6.61275 16.09036,-8.63103 29.6603,-13.94288 z"
3174
+ id="path3344"
3175
+ sodipodi:nodetypes="cccc" />
3176
+ <path
3177
+ inkscape:connector-curvature="0"
3178
+ sodipodi:nodetypes="cccc"
3179
+ id="path3335"
3180
+ d="m 412.96824,280.96225 c 18.5954,7.80874 35.53781,9.01883 58.8299,0.60847 -9.0442,-4.82975 -21.79206,-9.33899 -29.00352,-14.19246 -11.70145,6.47203 -16.19333,8.43625 -29.82638,13.58399 z"
3181
+ style="fill:url(#linearGradient3352);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3182
+ <path
3183
+ sodipodi:type="arc"
3184
+ style="opacity:0.98999999;fill:url(#linearGradient3306);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:14.78016663;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3185
+ id="path3279"
3186
+ sodipodi:cx="478.47559"
3187
+ sodipodi:cy="691.15222"
3188
+ sodipodi:rx="167.3486"
3189
+ sodipodi:ry="150.84944"
3190
+ d="m 645.82419,691.15222 a 167.3486,150.84944 0 1 1 -334.69721,0 167.3486,150.84944 0 1 1 334.69721,0 z"
3191
+ transform="matrix(0.24144869,0,0,0.25357143,365.93195,169.06761)" />
3192
+ <path
3193
+ inkscape:connector-curvature="0"
3194
+ style="opacity:0.98999999;fill:url(#linearGradient3329);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3195
+ d="m 540.8236,295.35415 0,31.79479 c -0.17049,0.21541 -0.25934,0.43487 -0.25934,0.65944 0,2.39544 10.06444,4.34169 22.46133,4.34169 11.36681,0 20.76585,-1.63487 22.25,-3.75306 l 0.62914,0 0,-33.04286 -45.08113,0 z"
3196
+ id="path3325" />
3197
+ <path
3198
+ inkscape:connector-curvature="0"
3199
+ id="path3310"
3200
+ d="m 518.00572,312.63065 0,40.56701 c -0.19628,0.27484 -0.29856,0.55485 -0.29856,0.84139 0,3.05634 11.58657,5.53956 25.85833,5.53956 13.0859,0 23.90643,-2.08593 25.61504,-4.78853 l 0.7243,0 0,-42.15943 -51.89911,0 z"
3201
+ style="opacity:0.98999999;fill:url(#linearGradient3321);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714455;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
3202
+ <path
3203
+ transform="matrix(0.24144869,0,0,0.25357143,372.39694,177.68759)"
3204
+ d="m 645.82419,691.15222 a 167.3486,150.84944 0 1 1 -334.69721,0 167.3486,150.84944 0 1 1 334.69721,0 z"
3205
+ sodipodi:ry="150.84944"
3206
+ sodipodi:rx="167.3486"
3207
+ sodipodi:cy="691.15222"
3208
+ sodipodi:cx="478.47559"
3209
+ id="path3277"
3210
+ style="opacity:0.98999999;fill:url(#linearGradient3298);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:14.78016663;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3211
+ sodipodi:type="arc" />
3212
+ <path
3213
+ transform="matrix(0.17692229,0,0,0.21002446,440.97835,245.79979)"
3214
+ d="m 725.96298,321.0997 a 146.13541,30.641294 0 1 1 -292.27081,0 146.13541,30.641294 0 1 1 292.27081,0 z"
3215
+ sodipodi:ry="30.641294"
3216
+ sodipodi:rx="146.13541"
3217
+ sodipodi:cy="321.0997"
3218
+ sodipodi:cx="579.82758"
3219
+ id="path3308"
3220
+ style="opacity:0.98999999;fill:url(#linearGradient3323);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:18.97210884;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3221
+ sodipodi:type="arc" />
3222
+ <path
3223
+ sodipodi:type="arc"
3224
+ style="opacity:0.98999999;fill:url(#linearGradient3331);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:21.31934929;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3225
+ id="path3327"
3226
+ sodipodi:cx="579.82758"
3227
+ sodipodi:cy="321.0997"
3228
+ sodipodi:rx="146.13541"
3229
+ sodipodi:ry="30.641294"
3230
+ d="m 725.96298,321.0997 a 146.13541,30.641294 0 1 1 -292.27081,0 146.13541,30.641294 0 1 1 292.27081,0 z"
3231
+ transform="matrix(0.15368023,0,0,0.19147749,473.91529,234.42501)" />
3232
+ <path
3233
+ inkscape:connector-curvature="0"
3234
+ sodipodi:nodetypes="cccccccccc"
3235
+ id="path3364"
3236
+ d="m 482.4426,262.25787 c -7.81994,-1.61883 -15.46636,-12.02999 -20.71568,-3.79575 -3.94853,8.88953 12.66844,13.03963 17.67901,19.49034 2.27675,6.98894 -2.7432,18.69454 4.69174,23.15426 7.39274,-2.53575 25.20914,6.4227 31.29956,0.87008 -2.66425,-9.77284 6.27735,-23.33855 22.42436,-22.87781 7.03372,0.46889 11.31164,-16.6733 1.48508,-14.53824 -18.07619,7.1183 -32.14017,-0.52696 -29.34511,-8.54715 -4.08264,-5.63761 -5.0833,-3.85805 -11.04651,-4.7621 -0.9551,6.94224 -4.98857,13.13394 -16.47245,11.00637 z"
3237
+ style="fill:url(#linearGradient3388);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3238
+ <path
3239
+ inkscape:connector-curvature="0"
3240
+ sodipodi:nodetypes="ccccc"
3241
+ id="path3366"
3242
+ d="m 489.98134,237.03098 c -1.19473,-6.24699 5.2505,-9.51937 10.15945,-6.28946 6.18865,2.14002 12.79744,7.45433 12.01903,14.69116 0.74014,5.10086 -3.75751,11.70319 -9.28189,8.34355 -9.27329,-2.0365 -11.08178,-7.17099 -12.89659,-16.74525 z"
3243
+ style="fill:url(#linearGradient3390);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3244
+ <path
3245
+ inkscape:connector-curvature="0"
3246
+ sodipodi:nodetypes="csssssssssssssssssc"
3247
+ id="path3368"
3248
+ d="m 495.89715,236.2206 c -4.18493,-1.04623 -3.20123,6.05129 -2.15499,10.23621 1.16421,4.65684 2.47171,4.63487 -2.69374,5.92623 -4.17502,1.04376 -2.73442,-0.22363 -7.00373,-1.07749 -4.58315,-0.91664 -3.81767,-0.62793 -8.08122,1.07749 -0.7524,0.30096 -6.09193,-1.5906 -8.08122,-1.61624 -6.22363,-0.0802 24.13693,-5.19167 12.92996,-15.6237 -2.84671,-2.64985 5.78555,-6.44104 6.46497,-9.15871 1.15083,-4.60331 4.43898,-3.77124 8.61997,-3.77124 3.45422,0 4.96128,3.23249 9.69746,3.23249 5.12193,0 7.68841,0.68469 10.23622,3.23249 1.47739,1.47739 3.23248,8.25854 3.23248,10.77496 0,2.59866 6.32395,8.47893 7.54248,9.69746 6.24669,6.2467 1.69035,5.92623 -4.30999,5.92623 -10.51629,0 -3.18461,-1.56837 -8.08122,-6.46497 -1.59231,-1.59231 -2.13288,-6.42077 -3.23249,-8.61997 -0.31321,-0.62643 -5.59757,-4.52008 -6.46497,-5.38748 -1.69797,-1.69798 -1.77762,-2.69374 -5.38748,-2.69374 -3.17661,0 0.61503,3.54048 -3.23249,4.30998 z"
3249
+ style="fill:url(#linearGradient3398);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3250
+ <path
3251
+ inkscape:connector-curvature="0"
3252
+ id="path3400"
3253
+ d="m 466.26601,259.92551 -21.01118,-12.3912"
3254
+ style="fill:none;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3255
+ <path
3256
+ inkscape:connector-curvature="0"
3257
+ id="path3402"
3258
+ d="m 540.07449,271.23922 25.32115,-11.85245"
3259
+ style="fill:none;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3260
+ </g>
3261
+ <g
3262
+ id="WhiteBishop">
3263
+ <rect
3264
+ y="200"
3265
+ x="600"
3266
+ height="200"
3267
+ width="200"
3268
+ id="rect5056-3"
3269
+ style="fill:none;stroke:none" />
3270
+ <path
3271
+ transform="matrix(0.20911451,0,0,0.18432023,617.55921,178.419)"
3272
+ d="m 584.54161,889.14215 a 212.13203,292.27081 0 1 1 -424.26407,0 212.13203,292.27081 0 1 1 424.26407,0 z"
3273
+ sodipodi:ry="292.27081"
3274
+ sodipodi:rx="212.13203"
3275
+ sodipodi:cy="889.14215"
3276
+ sodipodi:cx="372.40958"
3277
+ id="path3173"
3278
+ style="fill:url(#linearGradient7010);fill-opacity:1;stroke:#000000;stroke-width:23.28484535;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3279
+ sodipodi:type="arc" />
3280
+ <path
3281
+ inkscape:connector-curvature="0"
3282
+ sodipodi:nodetypes="ccccccccccccssc"
3283
+ id="path2899"
3284
+ d="m 669.09944,318.06983 c -4.50786,-29.19737 -24.56616,-42.23332 -41.92261,-73.66611 11.42968,-4.77019 24.52135,3.8145 33.95858,15.62662 -1.98879,-11.84117 -0.95544,-27.20763 -4.07496,-41.4109 9.95763,5.97928 20.78162,24.29493 25.69941,33.17176 2.42045,-7.9625 7.57569,-28.77817 5.42666,-43.06231 11.53696,8.57719 10.46232,30.44591 13.95041,41.05723 1.03462,-3.97654 9.46098,-26.25689 11.79934,-40.62277 10.12763,8.09219 6.08557,28.2439 9.3004,38.07044 6.5083,-2.49757 13.90882,-16.85334 17.47124,-27.13414 11.74069,14.86377 -0.12796,26.39275 21.66557,30.06015 -17.5488,26.43762 -38.50569,24.2048 -34.70403,54.44425 0.5343,8.43216 -7.94634,-4.04268 -15.16028,-5.9518 -13.16167,-3.48314 -17.46271,-1.58152 -29.88278,4.2404 -6.48779,3.04115 -10.94404,7.46856 -13.52695,15.17718 z"
3285
+ style="fill:url(#linearGradient7002);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4.57142878;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3286
+ <path
3287
+ inkscape:connector-curvature="0"
3288
+ sodipodi:nodetypes="csccccccccccccc"
3289
+ id="path4058"
3290
+ d="m 645.56453,320.84525 c 15.35498,-9.34386 2.82455,0.36289 3.94722,0.35872 3.19256,-0.0119 5.18094,-0.61908 9.01112,1.63656 9.30347,3.19057 19.35841,1.72163 28.91464,3.53502 14.68146,1.16311 29.92455,-1.61562 42.5783,-9.17782 4.47149,-2.05559 13.42795,27.07989 10.01493,30.82546 -2.90621,3.30319 -1.7233,-16.26102 -15.33339,-21.21174 -6.57875,0.38478 -12.60026,3.24305 -18.83124,4.99481 -4.52405,0.67268 -10.18642,-0.50614 -13.45034,3.43995 -3.82374,5.16178 1.00666,12.42943 -3.50975,17.33497 -4.2357,4.54627 -13.21229,4.47738 -16.64125,-0.95084 -2.02526,-3.55971 -1.4925,-8.23666 -4.55796,-11.27328 -4.89835,-1.38003 -5.81945,4.98391 -7.98562,7.79036 -3.10887,4.02979 -10.57361,3.08678 -12.15711,-1.8653 -3.83496,-7.82968 -5.14307,-17.16225 -1.99955,-25.43687 z"
3291
+ style="fill:url(#linearGradient7004);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4.57142878;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3292
+ <path
3293
+ inkscape:connector-curvature="0"
3294
+ sodipodi:nodetypes="csc"
3295
+ id="path4079"
3296
+ d="m 660.14574,349.64855 c 1.56934,4.20615 -3.12426,13.76968 -5.22831,17.88332 -3.96763,7.75716 6.91187,6.8146 12.54793,6.8146"
3297
+ style="fill:url(#linearGradient7006);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4.57142878;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3298
+ <path
3299
+ inkscape:connector-curvature="0"
3300
+ id="path4083"
3301
+ d="m 718.70274,331.93058 c -0.25745,0.50335 2.68406,13.42514 4.18265,16.35505 4.65648,9.10392 -6.82511,9.58801 5.57685,13.6292 4.60692,1.50118 6.97108,-9.67642 6.97108,-13.6292 0,-8.83856 0.30003,-12.11964 -5.57686,-14.99213 -8.42373,-4.11733 -4.52903,6.13739 -2.78843,9.54045"
3302
+ style="fill:none;stroke:#000000;stroke-width:4.57142878;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3303
+ <path
3304
+ inkscape:connector-curvature="0"
3305
+ id="path4085"
3306
+ d="m 729.68758,356.70675 c -5.06436,1.11577 -8.62856,6.0213 -8.13664,11.54888 0.53361,5.99601 5.6338,10.46757 11.38413,9.97854 5.75033,-0.48903 9.984,-5.75437 9.45039,-11.75038 -0.35771,-4.01962 -2.7635,-7.35046 -6.04578,-8.96399 1.79529,1.26526 3.05967,3.34734 3.27629,5.78148 0.37726,4.23907 -2.56652,7.95854 -6.56935,8.29896 -4.00283,0.34041 -7.55943,-2.82625 -7.93668,-7.06532 -0.31123,-3.49722 1.63856,-6.64453 4.57764,-7.82817 z"
3307
+ style="fill:url(#linearGradient7008);fill-opacity:1;stroke:#000000;stroke-width:4.57142878;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3308
+ </g>
3309
+ <g
3310
+ id="WhiteKnight">
3311
+ <rect
3312
+ y="200"
3313
+ x="800"
3314
+ height="200"
3315
+ width="200"
3316
+ id="rect5056-8"
3317
+ style="fill:none;stroke:none" />
3318
+ <path
3319
+ inkscape:connector-curvature="0"
3320
+ sodipodi:nodetypes="csssssssccscssssc"
3321
+ id="path9661"
3322
+ d="m 920.8205,291.84194 c 0.049,17.48393 -20.16603,32.60629 -40.10424,24.99055 -3.05344,-1.16631 -30.75842,23.95504 -35.19852,20.51791 -3.50284,-2.71159 3.88081,-13.88996 3.34402,-12.46222 -2.55582,6.79793 -13.83929,14.36436 -22.90059,4.59712 -3.5436,-3.81967 -2.44779,-14.80596 5.18493,-23.75613 7.94898,-9.32102 16.02019,-23.67476 19.14441,-31.95335 6.28396,-16.65129 3.81839,-17.015 15.8609,-32.11561 2.26234,-2.83684 -3.67739,-13.85043 -1.51858,-21.03944 8.52749,1.52073 11.81479,10.09428 15.7361,13.69224 2.28585,-5.29182 0.74992,-19.5111 4.81349,-18.84852 4.06357,0.66257 8.73774,12.98093 15.4412,18.39137 80.28854,24.70763 79.63224,153.18941 57.19344,153.60567 -27.6963,0.51379 -60.85495,0.39751 -88.70966,-0.0463 -6.74914,-0.10753 -9.87347,-8.83915 -8.57204,-14.0572 6.20686,-24.88642 32.41901,-42.30553 45.25898,-50.93792 13.18793,-8.86634 15.60253,-17.57941 15.02616,-30.57818 z"
3323
+ style="fill:url(#linearGradient2319);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3324
+ <path
3325
+ inkscape:connector-curvature="0"
3326
+ sodipodi:nodetypes="cs"
3327
+ id="path31300"
3328
+ d="m 834.46197,318.46619 c -3.16681,-1.09379 -5.45787,4.00845 -3.43731,4.21661"
3329
+ style="fill:none;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3330
+ <path
3331
+ inkscape:connector-curvature="0"
3332
+ sodipodi:nodetypes="cc"
3333
+ id="path31308"
3334
+ d="m 872.42882,308.41242 2.16857,2.69497"
3335
+ style="fill:none;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3336
+ <path
3337
+ inkscape:connector-curvature="0"
3338
+ sodipodi:nodetypes="cc"
3339
+ id="path31312"
3340
+ d="m 920.85783,284.39678 0.0665,-5.69551"
3341
+ style="fill:none;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3342
+ <path
3343
+ inkscape:connector-curvature="0"
3344
+ sodipodi:nodetypes="cs"
3345
+ id="path32040"
3346
+ d="m 874.48656,237.17701 -2.31158,1.20709"
3347
+ style="fill:none;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3348
+ <path
3349
+ inkscape:connector-curvature="0"
3350
+ sodipodi:nodetypes="cs"
3351
+ id="path32768"
3352
+ d="m 886.6903,224.88539 c 6.89194,9.62746 9.38036,11.57494 1.18548,10.19359"
3353
+ style="fill:none;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3354
+ <path
3355
+ inkscape:connector-curvature="0"
3356
+ id="path2732"
3357
+ d="m 900.14789,366.74312 -5.89252,14.05537"
3358
+ style="fill:none;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3359
+ <path
3360
+ inkscape:connector-curvature="0"
3361
+ sodipodi:nodetypes="csssssc"
3362
+ id="path1898"
3363
+ d="m 850.60981,259.22356 c 11.26404,2.55861 38.14752,3.77999 60.58139,-0.76311 4.70064,-0.95194 12.95819,0.11144 4.15822,2.18847 -9.48449,2.2386 -15.02058,3.19686 -24.43738,4.31759 -9.67053,1.15093 -13.07282,7.30325 -15.94626,15.89671 -1.70175,5.08936 -15.19947,2.56171 -15.69878,-1.73142 -2.61958,-22.52343 -13.25929,-13.16063 -8.65719,-19.90824 z"
3364
+ style="fill:url(#linearGradient2802);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3365
+ <path
3366
+ inkscape:connector-curvature="0"
3367
+ sodipodi:nodetypes="cssccccccscccs"
3368
+ id="path2812"
3369
+ d="m 904.20151,231.17618 c -1.54791,8.07417 6.42833,42.46312 4.49936,66.99894 -1.35362,17.21754 -18.03189,43.65268 -15.54781,61.30942 0.80004,5.68669 14.33186,-13.02936 14.72824,10.88373 12.44808,3.14376 16.76474,-17.02112 19.71606,1.73792 14.5811,10.26284 4.3221,-27.5192 13.3171,-34.61166 6.0437,9.09426 -4.2449,38.73822 6.3436,35.65725 -1.0237,-11.0541 7.8554,-24.8993 9.0655,-6.32385 10.2371,14.2563 11.2601,-18.50012 16.5163,-25.21798 -5.6887,-26.18129 -0.6862,-38.45221 -9.8453,-57.77967 -1.4511,-3.06202 -6.3311,-14.59604 -9.3678,-17.92597 -2.575,-6.16549 -11.8146,-11.43535 -14.5309,-13.39961 -1.6808,-6.55522 -15.27926,-15.54515 -19.39758,-12.65192 -3.18859,-7.61953 -14.88246,-11.88098 -15.49677,-8.6766 z"
3370
+ style="fill:url(#linearGradient2826);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3371
+ <path
3372
+ inkscape:connector-curvature="0"
3373
+ sodipodi:nodetypes="cccc"
3374
+ id="path2828-4"
3375
+ d="m 920.67954,248.57352 c 3.15338,11.44401 5.37018,28.14888 4.07533,39.91939 -1.96753,12.16356 -6.32601,24.10939 -5.24525,36.60489 0,2.41437 3.77123,20.45243 3.77123,22.8668"
3376
+ style="fill:none;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3377
+ <path
3378
+ inkscape:connector-curvature="0"
3379
+ sodipodi:nodetypes="ccc"
3380
+ id="path2830"
3381
+ d="m 938.01196,261.09545 c 3.8895,9.34941 6.9685,27.1909 4.5139,37.59389 -1.163,8.88958 1.465,17.27612 -1.3739,25.83179"
3382
+ style="fill:none;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3383
+ <path
3384
+ inkscape:connector-curvature="0"
3385
+ sodipodi:nodetypes="cccc"
3386
+ id="path2832"
3387
+ d="m 954.08196,284.93108 c 0.5222,8.38054 3.8912,23.35923 2.4988,32.01131 -0.1917,7.57801 5.0767,18.32521 2.9948,25.71768 -0.4425,2.06841 -0.9629,4.12734 -1.7224,6.10472"
3388
+ style="fill:none;stroke:#000000;stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3389
+ <path
3390
+ inkscape:connector-curvature="0"
3391
+ sodipodi:nodetypes="ccccc"
3392
+ id="path2846"
3393
+ d="m 848.05584,326.8312 c 7.73207,6.73917 15.9703,4.28414 24.44698,9.88665 9.88036,-0.31231 11.56689,18.80793 0.59986,15.67298 -5.88378,-4.88778 -24.1971,-16.09221 -31.07341,-19.50032 3.32611,-4.1301 0.83834,0.20797 6.02657,-6.05931 z"
3394
+ style="fill:url(#linearGradient2862);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.65714502;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3395
+ <path
3396
+ inkscape:connector-curvature="0"
3397
+ sodipodi:nodetypes="cssssssc"
3398
+ id="path2814-7"
3399
+ d="m 871.75733,343.13031 c -1.08082,0.85665 -2.24534,3.34019 -2.72271,5.31264 -0.46377,1.91635 1.76621,2.46215 3.02523,3.43758 1.06114,0.82213 4.05343,0.31251 5.4454,0.31251 1.43503,0 2.05948,-1.94714 2.42018,-3.43759 0.32451,-1.34087 0.30252,-2.85408 0.30252,-4.37511 0,-1.60264 -2.68599,-4.68762 -3.93279,-4.68762 -1.57065,0 -2.985,3.11677 -4.53783,3.43759 z"
3400
+ style="fill:url(#linearGradient2822-2);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.60900903;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3401
+ </g>
3402
+ <g
3403
+ id="WhitePawn">
3404
+ <rect
3405
+ style="fill:none;stroke:none"
3406
+ id="rect9994"
3407
+ width="200"
3408
+ height="200"
3409
+ x="1000"
3410
+ y="200" />
3411
+ <path
3412
+ inkscape:connector-curvature="0"
3413
+ sodipodi:nodetypes="ccssscccccccscc"
3414
+ id="path35274"
3415
+ d="m 1087.7986,283.99759 c -4.4788,0.057 -8.9741,1.92359 -8.9444,5.30162 0.3318,38.41514 -19.5945,28.09284 -28.9093,34.6727 -7.724,5.45618 1.951,62.71335 12.2,63.38362 6.3508,0.41534 46.6372,2.48448 52.7341,-0.0404 2.2015,-0.91169 5.1041,-34.70066 5.3743,-34.66821 10.443,0.54709 17.4615,12.49766 27.905,13.15861 6.3762,1.59674 8.7275,-4.41462 7.1582,-9.53213 1.0306,-10.73187 -0.1967,-45.22267 -5.2105,-45.85224 -5.6103,-0.8497 -11.0442,8.07405 -10.2114,12.58746 -0.24,7.05376 1.3332,8.10853 -1.7727,14.72596 -3.9383,3.71361 -6.7692,-4.43961 -8.5063,-6.08979 -0.6803,0.91016 -1.1599,-7.28717 -1.6783,-8.31956 -6.2762,-12.4992 -30.7607,6.12866 -31.2819,-33.9519 -0.049,-3.73056 -4.4474,-5.43186 -8.8568,-5.37572 z"
3416
+ style="fill:url(#linearGradient2296);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.45006442;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3417
+ <path
3418
+ transform="matrix(0.16426994,0,0,0.19426503,1018.6195,196.71433)"
3419
+ d="m 540.00002,435 a 116.66667,116.66667 0 1 1 -233.33335,0 116.66667,116.66667 0 1 1 233.33335,0 z"
3420
+ sodipodi:ry="116.66667"
3421
+ sodipodi:rx="116.66667"
3422
+ sodipodi:cy="435"
3423
+ sodipodi:cx="423.33334"
3424
+ id="path3371"
3425
+ style="opacity:0.98999999;fill:url(#linearGradient3243);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:19.31306076;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3426
+ sodipodi:type="arc" />
3427
+ <path
3428
+ inkscape:connector-curvature="0"
3429
+ sodipodi:nodetypes="cccccccccsc"
3430
+ id="path4628"
3431
+ d="m 1066.2082,311.53531 c -5.2679,3.46199 -12.8574,6.44012 -15.6645,7.72675 7.1256,8.54835 39.7004,58.01412 41.0251,70.83319 3.7493,0.37746 11.3426,0.404 19.4728,0.31662 -2.3333,-10.92307 -37.1248,-65.44491 -44.8334,-78.87656 z m 41.4126,1.10478 c -6.5029,13.69535 -47.7254,68.11908 -49.7255,77.64379 7.8235,-0.13369 15.0328,-0.2939 18.6371,-0.26273 0.511,-4.55693 41.0223,-66.61347 45.661,-71.38558 -8.2398,-6.26594 -8.6486,-4.11225 -13.6694,-5.72602 -0.2987,-0.096 -0.598,-0.18391 -0.9032,-0.26946 z"
3432
+ style="fill:url(#linearGradient2294);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.45006371;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3433
+ <path
3434
+ inkscape:connector-curvature="0"
3435
+ sodipodi:nodetypes="ccccccccsscccccccscc"
3436
+ id="path3219"
3437
+ d="m 1085.9229,262.60105 c -10.5947,0.67991 -14.5464,13.09545 -13.2879,21.51918 -0.7143,8.47929 3.9134,17.55317 5.4848,25.77619 -4.3211,8.81198 -9.9164,-14.26446 -11.1653,-5.93671 2.0548,6.61616 -0.6721,13.71458 -8.5969,10.69479 -7.9876,3.91619 -10.4614,-4.60016 -3.9906,-8.52764 2.6193,-7.31951 -17.622,4.19009 -8.728,-4.74548 7.3437,-4.38157 12.2018,-9.90114 12.887,-18.44523 1.0512,-10.61099 5.8864,-20.1017 13.2245,-27.1306 5.8116,-5.56671 15.8722,-5.83986 22.9953,-3.69512 7.6759,2.31116 11.2339,6.86363 15.1627,12.98718 3.1308,6.66953 4.6297,14.01591 7.8401,20.72008 1.5125,9.27168 6.4068,15.7873 14.4546,20.91979 1.5274,4.67776 -8.7611,3.91174 -11.484,6.48789 -2.7603,-1.38374 -5.2003,-10.91793 -5.3535,-2.77368 2.9314,9.19519 -15.9269,12.79596 -14.1532,3.16118 2.6353,-3.51122 3.3803,-8.27584 -2.4024,-4.13274 -3.7018,-1.96394 3.1458,-12.45095 3.846,-18.26708 0.8896,-7.38919 1.6506,-10.72389 -1.3259,-17.75722 -3.365,-5.04962 -8.7201,-11.45246 -15.4073,-10.85478 z"
3438
+ style="fill:url(#linearGradient3230);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.45006442;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3439
+ <path
3440
+ inkscape:connector-curvature="0"
3441
+ sodipodi:nodetypes="sssssssssssss"
3442
+ id="path2957"
3443
+ d="m 1092.0357,354.0227 c 0.8912,1.12956 20.8982,0.7212 17.3432,9.63672 -1.6101,4.03809 -13.7294,4.54253 -17.2467,6.22418 -5.9438,2.84172 -10.1607,8.69724 -11.4657,15.24429 -1.0358,5.19638 -2.2547,9.73553 -7.5473,12.06916 -12.3342,5.43853 -8.1434,-8.92071 -10.2544,-14.94663 -1.9674,-5.61631 -10.6373,-5.40474 -14.3007,-10.31362 -1.6933,-2.26904 -1.0242,-5.98331 1.8111,-7.34832 5.2639,-2.53425 10.6513,-2.57578 16.0015,-3.99944 5.0236,-1.3368 12.6641,-9.48165 13.6953,-14.08526 1.9967,-8.91448 1.42,-20.03156 10.3486,-21.68278 4.3242,-0.79973 5.5403,10.31254 5.2233,14.28181 -0.4073,5.10117 -4.438,13.86807 -3.6082,14.91989 z"
3444
+ style="fill:url(#linearGradient2983);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.19235921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3445
+ <path
3446
+ inkscape:connector-curvature="0"
3447
+ sodipodi:nodetypes="ccccc"
3448
+ id="path2967"
3449
+ d="m 1072.6926,377.26178 81.9198,-69.187 -1.9506,-8.70566 -84.6508,72.56819 4.6816,5.32447 z"
3450
+ style="fill:url(#linearGradient2975);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.19236016;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3451
+ <path
3452
+ inkscape:connector-curvature="0"
3453
+ sodipodi:nodetypes="cccccccccccc"
3454
+ id="path1395"
3455
+ d="m 1052.5332,321.68824 c -1.5745,0.23051 -2.9996,0.82938 -4.1183,2.14894 -1.0029,2.59597 -0.774,5.55095 -2.0289,8.09053 -3.9902,9.66061 -6.4912,19.85569 -10.589,29.47887 -3.6278,5.47842 1.2614,9.69275 6.6122,9.91611 9.7836,4.54145 20.358,7.49907 30.9854,9.07405 4.0783,-0.66359 10.0593,1.41729 12.3213,-3.09879 2.6681,-5.00514 -2.2517,-8.72133 -6.7875,-9.43782 -6.576,-2.57277 -14.2013,-3.5951 -19.4122,-8.72375 -2.194,-4.9473 -0.4699,-10.36434 1.348,-15.08973 -0.1732,-3.12306 1.3566,-4.06513 3.4915,-5.15341 -4.4978,-6.71252 -8.4152,-12.97402 -11.8225,-17.205 z"
3456
+ style="fill:url(#linearGradient2292);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.4500649;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3457
+ <path
3458
+ inkscape:connector-curvature="0"
3459
+ id="path2985"
3460
+ d="m 1154.5662,307.51132 20.6161,-3.13491 -2.0086,-17.95774 -22.1866,14.00797 3.5791,7.08468 z"
3461
+ style="fill:url(#linearGradient2993);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.19235992;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3462
+ <path
3463
+ inkscape:connector-curvature="0"
3464
+ id="path4122"
3465
+ d="m 1079.5715,281.55921 c 0.3348,0.2053 3.4142,-0.85305 4.31,-1.07688"
3466
+ style="fill:none;stroke:#000000;stroke-width:3.42759466;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3467
+ <path
3468
+ inkscape:connector-curvature="0"
3469
+ id="path4124"
3470
+ d="m 1089.269,280.48233 c 0.8979,-0.17948 1.7958,-0.35896 2.6937,-0.53845 0.7917,-0.15823 1.8687,0 2.6938,0"
3471
+ style="fill:none;stroke:#000000;stroke-width:3.42759466;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3472
+ <path
3473
+ inkscape:connector-curvature="0"
3474
+ style="fill:none;stroke:#000000;stroke-width:3.42759466;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3475
+ d="m 1086.0365,292.86647 c 0.3347,0.2053 3.4142,-0.85305 4.31,-1.07688"
3476
+ id="path4128" />
3477
+ </g>
3478
+ </g>
3479
+ </svg>