kokopu-react 1.6.0 → 1.7.2

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 (106) hide show
  1. package/.nycrc.yml +1 -1
  2. package/CHANGELOG.md +13 -0
  3. package/README.md +2 -2
  4. package/dist/lib/Chessboard.js +27 -19
  5. package/dist/lib/Movetext.js +5 -5
  6. package/dist/lib/impl/colorsets.js +44 -44
  7. package/dist/lib/impl/util.js +1 -1
  8. package/dist/lib/markers.js +7 -7
  9. package/doc_src/demo/PageChessboardInteraction.js +4 -3
  10. package/doc_src/demo/PageChessboardMove.js +36 -5
  11. package/doc_src/demo/demo.css +4 -0
  12. package/{graphic_test_app → graphic_test_src}/01_marker_icons.js +0 -0
  13. package/{graphic_test_app → graphic_test_src}/02_chessboard_simple.js +0 -0
  14. package/{graphic_test_app → graphic_test_src}/03_chessboard_flipped.js +0 -0
  15. package/{graphic_test_app → graphic_test_src}/04_chessboard_annotations.js +8 -8
  16. package/{graphic_test_app → graphic_test_src}/05_chessboard_move.js +4 -4
  17. package/{graphic_test_app → graphic_test_src}/06_chessboard_theme.js +2 -2
  18. package/{graphic_test_app → graphic_test_src}/07_chessboard_click_squares.js +0 -0
  19. package/{graphic_test_app → graphic_test_src}/08_chessboard_move_pieces.js +1 -1
  20. package/{graphic_test_app → graphic_test_src}/09_chessboard_edit_arrows.js +0 -0
  21. package/{graphic_test_app → graphic_test_src}/10_chessboard_play_moves.js +1 -1
  22. package/{graphic_test_app → graphic_test_src}/11_chessboard_play_promotions.js +0 -0
  23. package/{graphic_test_app → graphic_test_src}/12_movetext_simple.js +0 -0
  24. package/{graphic_test_app → graphic_test_src}/13_movetext_error.js +0 -0
  25. package/{graphic_test_app → graphic_test_src}/14_movetext_html.js +0 -0
  26. package/{graphic_test_app → graphic_test_src}/15_movetext_options.js +0 -4
  27. package/{graphic_test_app → graphic_test_src}/16_movetext_interaction.js +0 -0
  28. package/{graphic_test_app → graphic_test_src}/common/dummy.pgn +0 -0
  29. package/{graphic_test_app → graphic_test_src}/common/games.pgn +0 -0
  30. package/{graphic_test_app → graphic_test_src}/common/heartbeat.txt +0 -0
  31. package/{graphic_test_app → graphic_test_src}/common/smiley.png +0 -0
  32. package/{graphic_test_app → graphic_test_src}/common/test_app.css +0 -0
  33. package/{graphic_test_app → graphic_test_src}/common/test_app.js +3 -2
  34. package/graphics/chess_sprites/cburnett/bb.svg +45 -0
  35. package/graphics/chess_sprites/cburnett/bk.svg +47 -0
  36. package/graphics/chess_sprites/cburnett/bn.svg +37 -0
  37. package/graphics/chess_sprites/cburnett/bp.svg +19 -0
  38. package/graphics/chess_sprites/cburnett/bq.svg +58 -0
  39. package/graphics/chess_sprites/cburnett/br.svg +60 -0
  40. package/graphics/chess_sprites/cburnett/bx.svg +56 -0
  41. package/graphics/chess_sprites/cburnett/wb.svg +48 -0
  42. package/graphics/chess_sprites/cburnett/wk.svg +26 -0
  43. package/graphics/chess_sprites/cburnett/wn.svg +37 -0
  44. package/graphics/chess_sprites/cburnett/wp.svg +19 -0
  45. package/graphics/chess_sprites/cburnett/wq.svg +60 -0
  46. package/graphics/chess_sprites/cburnett/wr.svg +44 -0
  47. package/graphics/chess_sprites/cburnett/wx.svg +56 -0
  48. package/graphics/chess_sprites/generate_sprites.sh +135 -0
  49. package/graphics/chess_sprites/mmonge/celtic-bx.svg +112 -0
  50. package/graphics/chess_sprites/mmonge/celtic-wx.svg +111 -0
  51. package/graphics/chess_sprites/mmonge/celtic.svg +1576 -0
  52. package/graphics/chess_sprites/mmonge/eyes-spatial-bx.svg +101 -0
  53. package/graphics/chess_sprites/mmonge/eyes-spatial-wx.svg +100 -0
  54. package/graphics/chess_sprites/mmonge/eyes.svg +2538 -0
  55. package/graphics/chess_sprites/mmonge/fantasy-bx.svg +112 -0
  56. package/graphics/chess_sprites/mmonge/fantasy-wx.svg +111 -0
  57. package/graphics/chess_sprites/mmonge/fantasy.svg +5497 -0
  58. package/graphics/chess_sprites/mmonge/fantasy_alt.svg +3742 -0
  59. package/graphics/chess_sprites/mmonge/freak.svg +3479 -0
  60. package/graphics/chess_sprites/mmonge/prmi.svg +6776 -0
  61. package/graphics/chess_sprites/mmonge/skulls-bx.svg +124 -0
  62. package/graphics/chess_sprites/mmonge/skulls-wx.svg +111 -0
  63. package/graphics/chess_sprites/mmonge/skulls.svg +12978 -0
  64. package/graphics/chess_sprites/mmonge/spatial.svg +1223 -0
  65. package/package.json +30 -24
  66. package/scripts/{test_graphic/clean-graphic-output.js → clean-graphic-output.js} +1 -1
  67. package/scripts/docker-compose.yml +14 -0
  68. package/scripts/{test_graphic/webpack-config.js → test-graphic.webpack.config.js} +7 -6
  69. package/scripts/{test_headless.webpack-config.js → test-headless.webpack.config.js} +2 -1
  70. package/src/Chessboard.js +27 -19
  71. package/src/Movetext.js +5 -5
  72. package/src/impl/colorsets.js +44 -44
  73. package/src/impl/util.js +1 -1
  74. package/src/markers.js +7 -7
  75. package/test/1_markers.js +14 -14
  76. package/test/common/graphic.js +2 -2
  77. package/test/references/04_chessboard_annotations/0.png +0 -0
  78. package/test/references/04_chessboard_annotations/1.png +0 -0
  79. package/test/references/04_chessboard_annotations/2.png +0 -0
  80. package/test/references/04_chessboard_annotations/3.png +0 -0
  81. package/test/references/04_chessboard_annotations/4.png +0 -0
  82. package/test/references/04_chessboard_annotations/5.png +0 -0
  83. package/test/references/05_chessboard_move/3.png +0 -0
  84. package/test/references/05_chessboard_move/4.png +0 -0
  85. package/test/references/05_chessboard_move/5.png +0 -0
  86. package/test/references/05_chessboard_move/6.png +0 -0
  87. package/test/references/06_chessboard_theme/0.png +0 -0
  88. package/test/references/06_chessboard_theme/1.png +0 -0
  89. package/test/references/06_chessboard_theme/2.png +0 -0
  90. package/test/references/06_chessboard_theme/3.png +0 -0
  91. package/test/references/06_chessboard_theme/4.png +0 -0
  92. package/test/references/06_chessboard_theme/5.png +0 -0
  93. package/test/references/06_chessboard_theme/6.png +0 -0
  94. package/test/references/06_chessboard_theme/7.png +0 -0
  95. package/test/references/06_chessboard_theme/8.png +0 -0
  96. package/test/references/08_chessboard_move_pieces/over_arrow_marker.png +0 -0
  97. package/test/references/08_chessboard_move_pieces/over_square_marker.png +0 -0
  98. package/test/references/08_chessboard_move_pieces/over_text_marker.png +0 -0
  99. package/test/references/09_chessboard_edit_arrows/base_1.png +0 -0
  100. package/test/references/09_chessboard_edit_arrows/base_2.png +0 -0
  101. package/test/references/09_chessboard_edit_arrows/null_vector.png +0 -0
  102. package/test/references/09_chessboard_edit_arrows/over_arrow_marker.png +0 -0
  103. package/test/references/09_chessboard_edit_arrows/over_square_marker.png +0 -0
  104. package/test/references/10_chessboard_play_moves/castling_move.png +0 -0
  105. package/test/references/10_chessboard_play_moves/regular_move_2.png +0 -0
  106. package/scripts/test_graphic/docker-compose.yml +0 -14
@@ -0,0 +1,3742 @@
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="fantasy_alt.svg"
20
+ inkscape:output_extension="org.inkscape.output.svg.inkscape">
21
+ <defs
22
+ id="defs2724">
23
+ <linearGradient
24
+ id="linearGradientWhitePiecesBorder">
25
+ <stop
26
+ style="stop-color:#000000;stop-opacity:1;"
27
+ offset="0"
28
+ id="stop7935" />
29
+ <stop
30
+ style="stop-color:#000000;stop-opacity:1;"
31
+ offset="1"
32
+ id="stop7937" />
33
+ </linearGradient>
34
+ <linearGradient
35
+ id="linearGradientWhitePieces">
36
+ <stop
37
+ id="stop7929"
38
+ offset="0"
39
+ style="stop-color:#ede3de;stop-opacity:1;" />
40
+ <stop
41
+ id="stop7931"
42
+ offset="1"
43
+ style="stop-color:#8a6737;stop-opacity:1;" />
44
+ </linearGradient>
45
+ <linearGradient
46
+ id="linearGradientBlackPiecesBorder">
47
+ <stop
48
+ style="stop-color:#808080;stop-opacity:1;"
49
+ offset="0"
50
+ id="stop7192" />
51
+ <stop
52
+ style="stop-color:#808080;stop-opacity:1;"
53
+ offset="1"
54
+ id="stop7194" />
55
+ </linearGradient>
56
+ <linearGradient
57
+ id="linearGradientBlackPieces">
58
+ <stop
59
+ id="stop2268"
60
+ offset="0"
61
+ style="stop-color:#000e1c;stop-opacity:1;" />
62
+ <stop
63
+ id="stop2270"
64
+ offset="1"
65
+ style="stop-color:#50506f;stop-opacity:1;" />
66
+ </linearGradient>
67
+ <linearGradient
68
+ inkscape:collect="always"
69
+ xlink:href="#linearGradientWhitePiecesBorder"
70
+ id="linearGradient14964"
71
+ gradientUnits="userSpaceOnUse"
72
+ x1="441.38952"
73
+ y1="59.207708"
74
+ x2="558.65944"
75
+ y2="59.207708"
76
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,200)" />
77
+ <linearGradient
78
+ inkscape:collect="always"
79
+ xlink:href="#linearGradientWhitePieces"
80
+ id="linearGradient14967"
81
+ gradientUnits="userSpaceOnUse"
82
+ gradientTransform="matrix(0.23890515,0,0,0.23188362,392.26775,197.29485)"
83
+ x1="153.41434"
84
+ y1="229.06763"
85
+ x2="712.03802"
86
+ y2="369.52274" />
87
+ <linearGradient
88
+ inkscape:collect="always"
89
+ xlink:href="#linearGradientWhitePiecesBorder"
90
+ id="linearGradient14969"
91
+ gradientUnits="userSpaceOnUse"
92
+ x1="428.33821"
93
+ y1="50.506413"
94
+ x2="573.18176"
95
+ y2="50.506413"
96
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,200)" />
97
+ <linearGradient
98
+ inkscape:collect="always"
99
+ xlink:href="#linearGradientWhitePiecesBorder"
100
+ id="linearGradient14972"
101
+ gradientUnits="userSpaceOnUse"
102
+ x1="464.99454"
103
+ y1="87.334999"
104
+ x2="483.7212"
105
+ y2="87.334999"
106
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,200)" />
107
+ <linearGradient
108
+ inkscape:collect="always"
109
+ xlink:href="#linearGradientWhitePiecesBorder"
110
+ id="linearGradient14975"
111
+ gradientUnits="userSpaceOnUse"
112
+ x1="487.57906"
113
+ y1="152.40469"
114
+ x2="491.40409"
115
+ y2="152.40469"
116
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,200)" />
117
+ <linearGradient
118
+ inkscape:collect="always"
119
+ xlink:href="#linearGradientWhitePiecesBorder"
120
+ id="linearGradient14978"
121
+ gradientUnits="userSpaceOnUse"
122
+ x1="501.57386"
123
+ y1="136.66474"
124
+ x2="505.39889"
125
+ y2="136.66474"
126
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,200)" />
127
+ <linearGradient
128
+ inkscape:collect="always"
129
+ xlink:href="#linearGradientWhitePiecesBorder"
130
+ id="linearGradient14981"
131
+ gradientUnits="userSpaceOnUse"
132
+ x1="474.82825"
133
+ y1="136.89706"
134
+ x2="478.65328"
135
+ y2="136.89706"
136
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,200)" />
137
+ <linearGradient
138
+ inkscape:collect="always"
139
+ xlink:href="#linearGradientWhitePiecesBorder"
140
+ id="linearGradient14984"
141
+ gradientUnits="userSpaceOnUse"
142
+ x1="487.57906"
143
+ y1="122.17737"
144
+ x2="491.40409"
145
+ y2="122.17737"
146
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,200)" />
147
+ <linearGradient
148
+ inkscape:collect="always"
149
+ xlink:href="#linearGradientWhitePiecesBorder"
150
+ id="linearGradient14987"
151
+ gradientUnits="userSpaceOnUse"
152
+ x1="474.82825"
153
+ y1="107.62534"
154
+ x2="478.65328"
155
+ y2="107.62534"
156
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,200)" />
157
+ <linearGradient
158
+ inkscape:collect="always"
159
+ xlink:href="#linearGradientWhitePiecesBorder"
160
+ id="linearGradient14990"
161
+ gradientUnits="userSpaceOnUse"
162
+ x1="464.70573"
163
+ y1="100.54747"
164
+ x2="491.76443"
165
+ y2="100.54747"
166
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,200)" />
167
+ <linearGradient
168
+ inkscape:collect="always"
169
+ xlink:href="#linearGradientWhitePiecesBorder"
170
+ id="linearGradient14993"
171
+ gradientUnits="userSpaceOnUse"
172
+ x1="464.70573"
173
+ y1="114.99314"
174
+ x2="503.29605"
175
+ y2="114.99314"
176
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,200)" />
177
+ <linearGradient
178
+ inkscape:collect="always"
179
+ xlink:href="#linearGradientWhitePiecesBorder"
180
+ id="linearGradient14996"
181
+ gradientUnits="userSpaceOnUse"
182
+ x1="464.58317"
183
+ y1="129.88547"
184
+ x2="507.47516"
185
+ y2="129.88547"
186
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,200)" />
187
+ <linearGradient
188
+ inkscape:collect="always"
189
+ xlink:href="#linearGradientWhitePiecesBorder"
190
+ id="linearGradient14999"
191
+ gradientUnits="userSpaceOnUse"
192
+ x1="464.89416"
193
+ y1="144.86723"
194
+ x2="517.89351"
195
+ y2="144.86723"
196
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,200)" />
197
+ <linearGradient
198
+ inkscape:collect="always"
199
+ xlink:href="#linearGradientWhitePieces"
200
+ id="linearGradient15002"
201
+ gradientUnits="userSpaceOnUse"
202
+ gradientTransform="matrix(0.23890515,0,0,0.23188362,392.26775,197.29485)"
203
+ x1="218.50157"
204
+ y1="521.53015"
205
+ x2="676.30902"
206
+ y2="660.41461" />
207
+ <linearGradient
208
+ inkscape:collect="always"
209
+ xlink:href="#linearGradientWhitePiecesBorder"
210
+ id="linearGradient15004"
211
+ gradientUnits="userSpaceOnUse"
212
+ x1="455.08686"
213
+ y1="116.35999"
214
+ x2="543.14518"
215
+ y2="116.35999"
216
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,200)" />
217
+ <linearGradient
218
+ inkscape:collect="always"
219
+ xlink:href="#linearGradientWhitePiecesBorder"
220
+ id="linearGradient15007"
221
+ gradientUnits="userSpaceOnUse"
222
+ x1="443.51943"
223
+ y1="175.82125"
224
+ x2="555.15972"
225
+ y2="175.82125"
226
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,200)" />
227
+ <linearGradient
228
+ inkscape:collect="always"
229
+ xlink:href="#linearGradientWhitePieces"
230
+ id="linearGradient15010"
231
+ gradientUnits="userSpaceOnUse"
232
+ gradientTransform="matrix(0.23890515,0,0,0.23188362,392.26775,197.29485)"
233
+ x1="193.1496"
234
+ y1="715.4057"
235
+ x2="742.91541"
236
+ y2="730.41913" />
237
+ <linearGradient
238
+ inkscape:collect="always"
239
+ xlink:href="#linearGradientWhitePiecesBorder"
240
+ id="linearGradient15012"
241
+ gradientUnits="userSpaceOnUse"
242
+ x1="429.07269"
243
+ y1="173.94605"
244
+ x2="570.07235"
245
+ y2="173.94605"
246
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,200)" />
247
+ <linearGradient
248
+ inkscape:collect="always"
249
+ xlink:href="#linearGradientWhitePieces"
250
+ id="linearGradient15015"
251
+ gradientUnits="userSpaceOnUse"
252
+ gradientTransform="matrix(0.23890515,0,0,0.23188362,392.26775,197.29485)"
253
+ x1="7.337575"
254
+ y1="207.66478"
255
+ x2="689.74506"
256
+ y2="274.33145" />
257
+ <linearGradient
258
+ inkscape:collect="always"
259
+ xlink:href="#linearGradientWhitePiecesBorder"
260
+ id="linearGradient15017"
261
+ gradientUnits="userSpaceOnUse"
262
+ x1="444.03736"
263
+ y1="57.924455"
264
+ x2="557.98109"
265
+ y2="57.924455"
266
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,200)" />
267
+ <linearGradient
268
+ inkscape:collect="always"
269
+ xlink:href="#linearGradientWhitePieces"
270
+ id="linearGradient15022"
271
+ gradientUnits="userSpaceOnUse"
272
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,200)"
273
+ x1="23.458433"
274
+ y1="337.85495"
275
+ x2="87.371216"
276
+ y2="315.46323" />
277
+ <linearGradient
278
+ inkscape:collect="always"
279
+ xlink:href="#linearGradientWhitePiecesBorder"
280
+ id="linearGradient15024"
281
+ gradientUnits="userSpaceOnUse"
282
+ x1="205.37198"
283
+ y1="77.368786"
284
+ x2="220.00801"
285
+ y2="77.368786"
286
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.374298,200)" />
287
+ <linearGradient
288
+ inkscape:collect="always"
289
+ xlink:href="#linearGradientWhitePieces"
290
+ id="linearGradient15028"
291
+ gradientUnits="userSpaceOnUse"
292
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,200)"
293
+ x1="167.87183"
294
+ y1="174.99733"
295
+ x2="234.62003"
296
+ y2="174.99733" />
297
+ <linearGradient
298
+ inkscape:collect="always"
299
+ xlink:href="#linearGradientWhitePiecesBorder"
300
+ id="linearGradient15030"
301
+ gradientUnits="userSpaceOnUse"
302
+ x1="238.44265"
303
+ y1="40.074389"
304
+ x2="253.72799"
305
+ y2="40.074389"
306
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.374298,200)" />
307
+ <linearGradient
308
+ inkscape:collect="always"
309
+ xlink:href="#linearGradientWhitePieces"
310
+ id="linearGradient15034"
311
+ gradientUnits="userSpaceOnUse"
312
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,200)"
313
+ x1="785.14124"
314
+ y1="294.75864"
315
+ x2="840.91125"
316
+ y2="363.08893" />
317
+ <linearGradient
318
+ inkscape:collect="always"
319
+ xlink:href="#linearGradientWhitePiecesBorder"
320
+ id="linearGradient15036"
321
+ gradientUnits="userSpaceOnUse"
322
+ x1="372.24073"
323
+ y1="76.675623"
324
+ x2="395.53735"
325
+ y2="76.675623"
326
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.374298,200)" />
327
+ <linearGradient
328
+ inkscape:collect="always"
329
+ xlink:href="#linearGradientWhitePieces"
330
+ id="linearGradient15040"
331
+ gradientUnits="userSpaceOnUse"
332
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,200)"
333
+ x1="649.86255"
334
+ y1="171.18027"
335
+ x2="711.11725"
336
+ y2="227.74881" />
337
+ <linearGradient
338
+ inkscape:collect="always"
339
+ xlink:href="#linearGradientWhitePiecesBorder"
340
+ id="linearGradient15042"
341
+ gradientUnits="userSpaceOnUse"
342
+ x1="341.53179"
343
+ y1="45.67738"
344
+ x2="365.54463"
345
+ y2="45.67738"
346
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.374298,200)" />
347
+ <linearGradient
348
+ inkscape:collect="always"
349
+ xlink:href="#linearGradientWhitePieces"
350
+ id="linearGradient15046"
351
+ gradientUnits="userSpaceOnUse"
352
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,200)"
353
+ x1="406.01202"
354
+ y1="103.53159"
355
+ x2="470.8349"
356
+ y2="132.99438" />
357
+ <linearGradient
358
+ inkscape:collect="always"
359
+ xlink:href="#linearGradientWhitePiecesBorder"
360
+ id="linearGradient15048"
361
+ gradientUnits="userSpaceOnUse"
362
+ x1="294.59603"
363
+ y1="29.106316"
364
+ x2="310.51999"
365
+ y2="29.106316"
366
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.374298,200)" />
367
+ <linearGradient
368
+ inkscape:collect="always"
369
+ xlink:href="#linearGradientWhitePieces"
370
+ id="linearGradient15051"
371
+ gradientUnits="userSpaceOnUse"
372
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,200)"
373
+ x1="175.43776"
374
+ y1="454.77576"
375
+ x2="687.12817"
376
+ y2="677.83978" />
377
+ <linearGradient
378
+ inkscape:collect="always"
379
+ xlink:href="#linearGradientWhitePiecesBorder"
380
+ id="linearGradient15053"
381
+ gradientUnits="userSpaceOnUse"
382
+ x1="254.17529"
383
+ y1="188.43194"
384
+ x2="334.08665"
385
+ y2="188.43194"
386
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.374298,200)" />
387
+ <linearGradient
388
+ inkscape:collect="always"
389
+ xlink:href="#linearGradientWhitePieces"
390
+ id="linearGradient15056"
391
+ gradientUnits="userSpaceOnUse"
392
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,200)"
393
+ x1="153.6037"
394
+ y1="380.53995"
395
+ x2="761.36395"
396
+ y2="682.2066" />
397
+ <linearGradient
398
+ inkscape:collect="always"
399
+ xlink:href="#linearGradientWhitePiecesBorder"
400
+ id="linearGradient15058"
401
+ gradientUnits="userSpaceOnUse"
402
+ x1="282.06701"
403
+ y1="168.87478"
404
+ x2="304.46984"
405
+ y2="168.87478"
406
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.374298,200)" />
407
+ <linearGradient
408
+ inkscape:collect="always"
409
+ xlink:href="#linearGradientWhitePieces"
410
+ id="linearGradient15061"
411
+ gradientUnits="userSpaceOnUse"
412
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,200)"
413
+ x1="153.6037"
414
+ y1="380.53995"
415
+ x2="724.24603"
416
+ y2="618.98932" />
417
+ <linearGradient
418
+ inkscape:collect="always"
419
+ xlink:href="#linearGradientWhitePiecesBorder"
420
+ id="linearGradient15063"
421
+ gradientUnits="userSpaceOnUse"
422
+ x1="215.32858"
423
+ y1="100.44596"
424
+ x2="374.35234"
425
+ y2="100.44596"
426
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.374298,200)" />
427
+ <linearGradient
428
+ inkscape:collect="always"
429
+ xlink:href="#linearGradientWhitePieces"
430
+ id="linearGradient15066"
431
+ gradientUnits="userSpaceOnUse"
432
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,200)"
433
+ x1="153.6037"
434
+ y1="380.53995"
435
+ x2="822.49933"
436
+ y2="675.41992" />
437
+ <linearGradient
438
+ inkscape:collect="always"
439
+ xlink:href="#linearGradientWhitePiecesBorder"
440
+ id="linearGradient15068"
441
+ gradientUnits="userSpaceOnUse"
442
+ x1="246.33115"
443
+ y1="171.3815"
444
+ x2="342.14333"
445
+ y2="171.3815"
446
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.374298,200)" />
447
+ <linearGradient
448
+ inkscape:collect="always"
449
+ xlink:href="#linearGradientWhitePieces"
450
+ id="linearGradient15071"
451
+ gradientUnits="userSpaceOnUse"
452
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,200)"
453
+ x1="153.6037"
454
+ y1="380.53995"
455
+ x2="761.36395"
456
+ y2="682.2066" />
457
+ <linearGradient
458
+ inkscape:collect="always"
459
+ xlink:href="#linearGradientWhitePieces"
460
+ id="linearGradient15078"
461
+ gradientUnits="userSpaceOnUse"
462
+ gradientTransform="matrix(0.22857143,0,0,0.22857144,0,199.99999)"
463
+ x1="221.55104"
464
+ y1="774.93707"
465
+ x2="611.05023"
466
+ y2="849.56549" />
467
+ <linearGradient
468
+ inkscape:collect="always"
469
+ xlink:href="#linearGradientWhitePiecesBorder"
470
+ id="linearGradient15080"
471
+ gradientUnits="userSpaceOnUse"
472
+ x1="61.303072"
473
+ y1="189.18989"
474
+ x2="139.93051"
475
+ y2="189.18989"
476
+ gradientTransform="matrix(0.99812851,0,0,1.0000063,0,199.99999)" />
477
+ <linearGradient
478
+ inkscape:collect="always"
479
+ xlink:href="#linearGradientWhitePieces"
480
+ id="linearGradient15083"
481
+ gradientUnits="userSpaceOnUse"
482
+ gradientTransform="matrix(0.22857143,0,0,0.22857144,0,199.99999)"
483
+ x1="129.96214"
484
+ y1="428.65894"
485
+ x2="701.01483"
486
+ y2="740.06274" />
487
+ <linearGradient
488
+ inkscape:collect="always"
489
+ xlink:href="#linearGradientWhitePiecesBorder"
490
+ id="linearGradient15085"
491
+ gradientUnits="userSpaceOnUse"
492
+ x1="73.393466"
493
+ y1="99.576291"
494
+ x2="128.57319"
495
+ y2="99.576291"
496
+ gradientTransform="matrix(0.99812851,0,0,1.0000063,0,199.99999)" />
497
+ <linearGradient
498
+ inkscape:collect="always"
499
+ xlink:href="#linearGradientWhitePieces"
500
+ id="linearGradient15088"
501
+ gradientUnits="userSpaceOnUse"
502
+ gradientTransform="matrix(0.22857143,0,0,0.22857144,0,199.99999)"
503
+ x1="129.96214"
504
+ y1="428.65894"
505
+ x2="698.83136"
506
+ y2="740.06268" />
507
+ <linearGradient
508
+ inkscape:collect="always"
509
+ xlink:href="#linearGradientWhitePiecesBorder"
510
+ id="linearGradient15090"
511
+ gradientUnits="userSpaceOnUse"
512
+ x1="18.694719"
513
+ y1="115.58561"
514
+ x2="183.74068"
515
+ y2="115.58561"
516
+ gradientTransform="matrix(0.99812851,0,0,1.0000063,0,199.99999)" />
517
+ <linearGradient
518
+ inkscape:collect="always"
519
+ xlink:href="#linearGradientWhitePieces"
520
+ id="linearGradient15093"
521
+ gradientUnits="userSpaceOnUse"
522
+ gradientTransform="matrix(0.22857143,0,0,0.22857144,0,199.99999)"
523
+ x1="197.64774"
524
+ y1="629.91022"
525
+ x2="664.98859"
526
+ y2="790.37555" />
527
+ <linearGradient
528
+ inkscape:collect="always"
529
+ xlink:href="#linearGradientWhitePiecesBorder"
530
+ id="linearGradient15095"
531
+ gradientUnits="userSpaceOnUse"
532
+ x1="52.179426"
533
+ y1="171.15182"
534
+ x2="149.18172"
535
+ y2="171.15182"
536
+ gradientTransform="matrix(0.99812851,0,0,1.0000063,0,199.99999)" />
537
+ <linearGradient
538
+ inkscape:collect="always"
539
+ xlink:href="#linearGradientWhitePieces"
540
+ id="linearGradient15098"
541
+ gradientUnits="userSpaceOnUse"
542
+ gradientTransform="matrix(0.22857143,0,0,0.22857144,0,199.99999)"
543
+ x1="129.96214"
544
+ y1="428.65894"
545
+ x2="812.36853"
546
+ y2="836.31329" />
547
+ <linearGradient
548
+ inkscape:collect="always"
549
+ xlink:href="#linearGradientWhitePieces"
550
+ id="linearGradient15101"
551
+ gradientUnits="userSpaceOnUse"
552
+ gradientTransform="matrix(0.22857143,0,0,0.22857144,0,199.99999)"
553
+ x1="368.47662"
554
+ y1="273.33771"
555
+ x2="494.5513"
556
+ y2="319.27548" />
557
+ <linearGradient
558
+ inkscape:collect="always"
559
+ xlink:href="#linearGradientWhitePiecesBorder"
560
+ id="linearGradient15103"
561
+ gradientUnits="userSpaceOnUse"
562
+ x1="84.38115"
563
+ y1="72.976797"
564
+ x2="113.25052"
565
+ y2="72.976797"
566
+ gradientTransform="matrix(0.99812851,0,0,1.0000063,0,199.99999)" />
567
+ <linearGradient
568
+ inkscape:collect="always"
569
+ xlink:href="#linearGradientWhitePieces"
570
+ id="linearGradient15106"
571
+ gradientUnits="userSpaceOnUse"
572
+ gradientTransform="matrix(0.22857143,0,0,0.22857144,0,199.99999)"
573
+ x1="313.69473"
574
+ y1="101.18996"
575
+ x2="536.18018"
576
+ y2="251.91928" />
577
+ <linearGradient
578
+ inkscape:collect="always"
579
+ xlink:href="#linearGradientWhitePiecesBorder"
580
+ id="linearGradient15108"
581
+ gradientUnits="userSpaceOnUse"
582
+ x1="68.517819"
583
+ y1="40.057539"
584
+ x2="130.49355"
585
+ y2="40.057539"
586
+ gradientTransform="matrix(0.99812851,0,0,1.0000063,0,199.99999)" />
587
+ <linearGradient
588
+ inkscape:collect="always"
589
+ xlink:href="#linearGradientWhitePieces"
590
+ id="linearGradient15111"
591
+ gradientUnits="userSpaceOnUse"
592
+ gradientTransform="matrix(0.22857143,0,0,0.22857144,0,199.99999)"
593
+ x1="495.29623"
594
+ y1="448.54721"
595
+ x2="595.97144"
596
+ y2="528.54724" />
597
+ <linearGradient
598
+ inkscape:collect="always"
599
+ xlink:href="#linearGradientWhitePiecesBorder"
600
+ id="linearGradient15113"
601
+ gradientUnits="userSpaceOnUse"
602
+ x1="106.05839"
603
+ y1="111.66723"
604
+ x2="136.47574"
605
+ y2="111.66723"
606
+ gradientTransform="matrix(0.99812851,0,0,1.0000063,0,199.99999)" />
607
+ <linearGradient
608
+ inkscape:collect="always"
609
+ xlink:href="#linearGradientWhitePieces"
610
+ id="linearGradient15116"
611
+ gradientUnits="userSpaceOnUse"
612
+ gradientTransform="matrix(0.22857143,0,0,0.22857144,0,199.99999)"
613
+ x1="297.55386"
614
+ y1="427.04959"
615
+ x2="368.56238"
616
+ y2="521.21625" />
617
+ <linearGradient
618
+ inkscape:collect="always"
619
+ xlink:href="#linearGradientWhitePiecesBorder"
620
+ id="linearGradient15118"
621
+ gradientUnits="userSpaceOnUse"
622
+ x1="64.019555"
623
+ y1="110.56303"
624
+ x2="94.436889"
625
+ y2="110.56303"
626
+ gradientTransform="matrix(0.99812851,0,0,1.0000063,0,199.99999)" />
627
+ <linearGradient
628
+ inkscape:collect="always"
629
+ xlink:href="#linearGradientWhitePieces"
630
+ id="linearGradient15163"
631
+ gradientUnits="userSpaceOnUse"
632
+ gradientTransform="matrix(0.21114126,0,0,0.210392,1011.288,212.82424)"
633
+ x1="213.78165"
634
+ y1="696.46155"
635
+ x2="414.65732"
636
+ y2="864.22052" />
637
+ <linearGradient
638
+ inkscape:collect="always"
639
+ xlink:href="#linearGradientWhitePiecesBorder"
640
+ id="linearGradient15165"
641
+ gradientUnits="userSpaceOnUse"
642
+ x1="1046.1874"
643
+ y1="366.56808"
644
+ x2="1098.8392"
645
+ y2="366.56808" />
646
+ <linearGradient
647
+ inkscape:collect="always"
648
+ xlink:href="#linearGradientWhitePieces"
649
+ id="linearGradient15168"
650
+ gradientUnits="userSpaceOnUse"
651
+ gradientTransform="matrix(0.16437029,1.1302757e-4,-0.00204311,0.16893829,1102.9193,220.4518)"
652
+ x1="241.75385"
653
+ y1="401.27609"
654
+ x2="522.97559"
655
+ y2="519.06158" />
656
+ <linearGradient
657
+ inkscape:collect="always"
658
+ xlink:href="#linearGradientWhitePiecesBorder"
659
+ id="linearGradient15170"
660
+ gradientUnits="userSpaceOnUse"
661
+ x1="1159.5165"
662
+ y1="297.8815"
663
+ x2="1178.6918"
664
+ y2="297.8815" />
665
+ <linearGradient
666
+ inkscape:collect="always"
667
+ xlink:href="#linearGradientWhitePieces"
668
+ id="linearGradient15173"
669
+ gradientUnits="userSpaceOnUse"
670
+ gradientTransform="matrix(0.22387292,0.04610674,-0.04610674,0.22387292,1027.3988,235.02322)"
671
+ x1="456.672"
672
+ y1="496.70807"
673
+ x2="790.85327"
674
+ y2="285.25974" />
675
+ <linearGradient
676
+ inkscape:collect="always"
677
+ xlink:href="#linearGradientWhitePiecesBorder"
678
+ id="linearGradient15175"
679
+ gradientUnits="userSpaceOnUse"
680
+ x1="1116.9076"
681
+ y1="346.82153"
682
+ x2="1171.1093"
683
+ y2="346.82153" />
684
+ <linearGradient
685
+ inkscape:collect="always"
686
+ xlink:href="#linearGradientWhitePieces"
687
+ id="linearGradient15178"
688
+ gradientUnits="userSpaceOnUse"
689
+ gradientTransform="matrix(-0.21114126,0,0,0.210392,1185.1025,212.58006)"
690
+ x1="409.6666"
691
+ y1="725.85468"
692
+ x2="101.73616"
693
+ y2="844.86835" />
694
+ <linearGradient
695
+ inkscape:collect="always"
696
+ xlink:href="#linearGradientWhitePiecesBorder"
697
+ id="linearGradient15180"
698
+ gradientUnits="userSpaceOnUse"
699
+ x1="1098.4655"
700
+ y1="366.03885"
701
+ x2="1149.8408"
702
+ y2="366.03885" />
703
+ <linearGradient
704
+ inkscape:collect="always"
705
+ xlink:href="#linearGradientWhitePieces"
706
+ id="linearGradient15183"
707
+ gradientUnits="userSpaceOnUse"
708
+ gradientTransform="matrix(0.17051017,0.01574006,-0.01481026,0.16043794,1043.8798,216.46919)"
709
+ x1="411.38654"
710
+ y1="269.9574"
711
+ x2="606.08582"
712
+ y2="442.53754" />
713
+ <linearGradient
714
+ inkscape:collect="always"
715
+ xlink:href="#linearGradientWhitePiecesBorder"
716
+ id="linearGradient15185"
717
+ gradientUnits="userSpaceOnUse"
718
+ x1="1073.6456"
719
+ y1="289.08289"
720
+ x2="1123.5177"
721
+ y2="289.08289" />
722
+ <linearGradient
723
+ inkscape:collect="always"
724
+ xlink:href="#linearGradientWhitePieces"
725
+ id="linearGradient15188"
726
+ gradientUnits="userSpaceOnUse"
727
+ gradientTransform="matrix(0.07483657,-0.03798697,0.02784731,0.06327954,1091.6156,273.77449)"
728
+ x1="307.02979"
729
+ y1="442.26321"
730
+ x2="576.54529"
731
+ y2="444.9863" />
732
+ <linearGradient
733
+ inkscape:collect="always"
734
+ xlink:href="#linearGradientWhitePiecesBorder"
735
+ id="linearGradient15190"
736
+ gradientUnits="userSpaceOnUse"
737
+ x1="1120.0306"
738
+ y1="282.81598"
739
+ x2="1140.408"
740
+ y2="282.81598" />
741
+ <linearGradient
742
+ inkscape:collect="always"
743
+ xlink:href="#linearGradientWhitePieces"
744
+ id="linearGradient15193"
745
+ gradientUnits="userSpaceOnUse"
746
+ gradientTransform="matrix(0.20193623,0.01864103,-0.01673386,0.18127612,1018.779,214.60765)"
747
+ x1="275.24356"
748
+ y1="458.6561"
749
+ x2="771.40265"
750
+ y2="497.96924" />
751
+ <linearGradient
752
+ inkscape:collect="always"
753
+ xlink:href="#linearGradientWhitePiecesBorder"
754
+ id="linearGradient15195"
755
+ gradientUnits="userSpaceOnUse"
756
+ x1="1051.5103"
757
+ y1="303.85892"
758
+ x2="1148.3424"
759
+ y2="303.85892" />
760
+ <linearGradient
761
+ inkscape:collect="always"
762
+ xlink:href="#linearGradientWhitePieces"
763
+ id="linearGradient15199"
764
+ gradientUnits="userSpaceOnUse"
765
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,998.986,217.12585)"
766
+ x1="211.03732"
767
+ y1="567.21368"
768
+ x2="502.98859"
769
+ y2="755.47064" />
770
+ <linearGradient
771
+ inkscape:collect="always"
772
+ xlink:href="#linearGradientWhitePiecesBorder"
773
+ id="linearGradient15201"
774
+ gradientUnits="userSpaceOnUse"
775
+ x1="1050.9943"
776
+ y1="351.74463"
777
+ x2="1148.2543"
778
+ y2="351.74463" />
779
+ <linearGradient
780
+ inkscape:collect="always"
781
+ xlink:href="#linearGradientWhitePieces"
782
+ id="linearGradient15249"
783
+ gradientUnits="userSpaceOnUse"
784
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,-0.49906422,1.8412176)"
785
+ x1="837.08344"
786
+ y1="316.11407"
787
+ x2="864.74457"
788
+ y2="316.98907" />
789
+ <linearGradient
790
+ inkscape:collect="always"
791
+ xlink:href="#linearGradientWhitePiecesBorder"
792
+ id="linearGradient15251"
793
+ gradientUnits="userSpaceOnUse"
794
+ x1="846.29999"
795
+ y1="319.5596"
796
+ x2="860.89307"
797
+ y2="319.5596" />
798
+ <linearGradient
799
+ inkscape:collect="always"
800
+ xlink:href="#linearGradientWhitePieces"
801
+ id="linearGradient15254"
802
+ gradientUnits="userSpaceOnUse"
803
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,-0.49906422,2.3705552)"
804
+ x1="904.49695"
805
+ y1="279.93512"
806
+ x2="893.70923"
807
+ y2="340.68512" />
808
+ <linearGradient
809
+ inkscape:collect="always"
810
+ xlink:href="#linearGradientWhitePiecesBorder"
811
+ id="linearGradient15256"
812
+ gradientUnits="userSpaceOnUse"
813
+ x1="828.73456"
814
+ y1="318.66046"
815
+ x2="974.46411"
816
+ y2="318.66046" />
817
+ <linearGradient
818
+ inkscape:collect="always"
819
+ xlink:href="#linearGradientWhitePiecesBorder"
820
+ id="linearGradient15259"
821
+ gradientUnits="userSpaceOnUse"
822
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,1.4971928,200)"
823
+ x1="892.60011"
824
+ y1="174.09663"
825
+ x2="902.16768"
826
+ y2="174.09663" />
827
+ <linearGradient
828
+ inkscape:collect="always"
829
+ xlink:href="#linearGradientWhitePieces"
830
+ id="linearGradient15262"
831
+ gradientUnits="userSpaceOnUse"
832
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,800,200.91429)"
833
+ x1="705.29126"
834
+ y1="378.28769"
835
+ x2="787.12555"
836
+ y2="465.62366" />
837
+ <linearGradient
838
+ inkscape:collect="always"
839
+ xlink:href="#linearGradientWhitePiecesBorder"
840
+ id="linearGradient15264"
841
+ gradientUnits="userSpaceOnUse"
842
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,1.4971928,200)"
843
+ x1="960.82851"
844
+ y1="96.396319"
845
+ x2="984.5351"
846
+ y2="96.396319" />
847
+ <linearGradient
848
+ inkscape:collect="always"
849
+ xlink:href="#linearGradientWhitePieces"
850
+ id="linearGradient15267"
851
+ gradientUnits="userSpaceOnUse"
852
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,800.91429,200.91429)"
853
+ x1="667.0329"
854
+ y1="299.32745"
855
+ x2="739.15356"
856
+ y2="348.42047" />
857
+ <linearGradient
858
+ inkscape:collect="always"
859
+ xlink:href="#linearGradientWhitePiecesBorder"
860
+ id="linearGradient15269"
861
+ gradientUnits="userSpaceOnUse"
862
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,1.4971928,200)"
863
+ x1="949.18222"
864
+ y1="72.811045"
865
+ x2="972.39326"
866
+ y2="72.811045" />
867
+ <linearGradient
868
+ inkscape:collect="always"
869
+ xlink:href="#linearGradientWhitePieces"
870
+ id="linearGradient15272"
871
+ gradientUnits="userSpaceOnUse"
872
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,800,200.91429)"
873
+ x1="598.67926"
874
+ y1="209.76059"
875
+ x2="705.53198"
876
+ y2="232.28799" />
877
+ <linearGradient
878
+ inkscape:collect="always"
879
+ xlink:href="#linearGradientWhitePiecesBorder"
880
+ id="linearGradient15274"
881
+ gradientUnits="userSpaceOnUse"
882
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,1.4971928,200)"
883
+ x1="930.78402"
884
+ y1="51.229487"
885
+ x2="961.56683"
886
+ y2="51.229487" />
887
+ <linearGradient
888
+ inkscape:collect="always"
889
+ xlink:href="#linearGradientWhitePieces"
890
+ id="linearGradient15277"
891
+ gradientUnits="userSpaceOnUse"
892
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,800.91429,199.54286)"
893
+ x1="493.79175"
894
+ y1="157.9061"
895
+ x2="609.8985"
896
+ y2="148.71771" />
897
+ <linearGradient
898
+ inkscape:collect="always"
899
+ xlink:href="#linearGradientWhitePiecesBorder"
900
+ id="linearGradient15279"
901
+ gradientUnits="userSpaceOnUse"
902
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,1.4971928,200)"
903
+ x1="901.95467"
904
+ y1="33.598358"
905
+ x2="940.58276"
906
+ y2="33.598358" />
907
+ <linearGradient
908
+ inkscape:collect="always"
909
+ xlink:href="#linearGradientWhitePiecesBorder"
910
+ id="linearGradient15282"
911
+ gradientUnits="userSpaceOnUse"
912
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,1.4971928,200)"
913
+ x1="885.02086"
914
+ y1="30.237432"
915
+ x2="895.02954"
916
+ y2="30.237432" />
917
+ <linearGradient
918
+ inkscape:collect="always"
919
+ xlink:href="#linearGradientWhitePiecesBorder"
920
+ id="linearGradient15285"
921
+ gradientUnits="userSpaceOnUse"
922
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,1.4971928,200)"
923
+ x1="870.47832"
924
+ y1="37.851393"
925
+ x2="876.45823"
926
+ y2="37.851393" />
927
+ <linearGradient
928
+ inkscape:collect="always"
929
+ xlink:href="#linearGradientWhitePiecesBorder"
930
+ id="linearGradient15288"
931
+ gradientUnits="userSpaceOnUse"
932
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,1.4971928,200)"
933
+ x1="919.25245"
934
+ y1="81.701929"
935
+ x2="922.98304"
936
+ y2="81.701929" />
937
+ <linearGradient
938
+ inkscape:collect="always"
939
+ xlink:href="#linearGradientWhitePiecesBorder"
940
+ id="linearGradient15291"
941
+ gradientUnits="userSpaceOnUse"
942
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,1.4971928,200)"
943
+ x1="870.73263"
944
+ y1="109.9657"
945
+ x2="876.56927"
946
+ y2="109.9657" />
947
+ <linearGradient
948
+ inkscape:collect="always"
949
+ xlink:href="#linearGradientWhitePiecesBorder"
950
+ id="linearGradient15294"
951
+ gradientUnits="userSpaceOnUse"
952
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,1.4971928,200)"
953
+ x1="828.48736"
954
+ y1="120.72367"
955
+ x2="836.35859"
956
+ y2="120.72367" />
957
+ <linearGradient
958
+ inkscape:collect="always"
959
+ xlink:href="#linearGradientWhitePiecesBorder"
960
+ id="linearGradient15297"
961
+ gradientUnits="userSpaceOnUse"
962
+ gradientTransform="matrix(0.98633187,-0.15300317,0.15300317,0.98633187,2.9194419,334.01125)"
963
+ x1="866.44156"
964
+ y1="74.656575"
965
+ x2="876.04205"
966
+ y2="74.656575" />
967
+ <linearGradient
968
+ inkscape:collect="always"
969
+ xlink:href="#linearGradientWhitePiecesBorder"
970
+ id="linearGradient15300"
971
+ gradientUnits="userSpaceOnUse"
972
+ gradientTransform="matrix(0.98633187,-0.15300317,0.15300317,0.98633187,2.9194419,334.01125)"
973
+ x1="859.85814"
974
+ y1="69.920009"
975
+ x2="880.83843"
976
+ y2="69.920009" />
977
+ <linearGradient
978
+ inkscape:collect="always"
979
+ xlink:href="#linearGradientWhitePieces"
980
+ id="linearGradient15303"
981
+ gradientUnits="userSpaceOnUse"
982
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,800,200.91429)"
983
+ x1="58.222321"
984
+ y1="511.39841"
985
+ x2="775.05908"
986
+ y2="762.62531" />
987
+ <linearGradient
988
+ inkscape:collect="always"
989
+ xlink:href="#linearGradientWhitePiecesBorder"
990
+ id="linearGradient15305"
991
+ gradientUnits="userSpaceOnUse"
992
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,1.4971928,200)"
993
+ x1="822.23922"
994
+ y1="101.81162"
995
+ x2="972.98854"
996
+ y2="101.81162" />
997
+ <linearGradient
998
+ inkscape:collect="always"
999
+ xlink:href="#linearGradientWhitePieces"
1000
+ id="linearGradient15309"
1001
+ gradientUnits="userSpaceOnUse"
1002
+ gradientTransform="matrix(0.22857144,0,0,0.22857144,631.83922,199.11026)"
1003
+ x1="321.15759"
1004
+ y1="90.161285"
1005
+ x2="395.43152"
1006
+ y2="128.46291" />
1007
+ <linearGradient
1008
+ inkscape:collect="always"
1009
+ xlink:href="#linearGradientWhitePiecesBorder"
1010
+ id="linearGradient15311"
1011
+ gradientUnits="userSpaceOnUse"
1012
+ x1="708.30733"
1013
+ y1="24.432458"
1014
+ x2="721.72052"
1015
+ y2="24.432458"
1016
+ gradientTransform="matrix(1.0000063,0,0,1.0000063,-0.00378,199.99999)" />
1017
+ <linearGradient
1018
+ inkscape:collect="always"
1019
+ xlink:href="#linearGradientWhitePieces"
1020
+ id="linearGradient15314"
1021
+ gradientUnits="userSpaceOnUse"
1022
+ x1="729.02667"
1023
+ y1="125.66114"
1024
+ x2="739.4967"
1025
+ y2="133.16115"
1026
+ gradientTransform="matrix(1.0000063,0,0,1.0000063,-0.00378,199.99999)" />
1027
+ <linearGradient
1028
+ inkscape:collect="always"
1029
+ xlink:href="#linearGradientWhitePiecesBorder"
1030
+ id="linearGradient15316"
1031
+ gradientUnits="userSpaceOnUse"
1032
+ x1="667.0267"
1033
+ y1="106.16114"
1034
+ x2="759.99669"
1035
+ y2="106.16114"
1036
+ gradientTransform="matrix(1.0000063,0,0,1.0000063,-0.00378,199.99999)" />
1037
+ <linearGradient
1038
+ inkscape:collect="always"
1039
+ xlink:href="#linearGradientWhitePieces"
1040
+ id="linearGradient15319"
1041
+ gradientUnits="userSpaceOnUse"
1042
+ gradientTransform="matrix(0.22857144,0,0,0.22857144,600,199.99999)"
1043
+ x1="155.78476"
1044
+ y1="666.80823"
1045
+ x2="733.56958"
1046
+ y2="841.04077" />
1047
+ <linearGradient
1048
+ inkscape:collect="always"
1049
+ xlink:href="#linearGradientWhitePiecesBorder"
1050
+ id="linearGradient15321"
1051
+ gradientUnits="userSpaceOnUse"
1052
+ x1="630.42201"
1053
+ y1="177.31452"
1054
+ x2="767.67199"
1055
+ y2="177.31452"
1056
+ gradientTransform="matrix(1.0000063,0,0,1.0000063,-0.00378,199.99999)" />
1057
+ <linearGradient
1058
+ inkscape:collect="always"
1059
+ xlink:href="#linearGradientWhitePieces"
1060
+ id="linearGradient15324"
1061
+ gradientUnits="userSpaceOnUse"
1062
+ x1="667.23889"
1063
+ y1="115.81965"
1064
+ x2="659.72015"
1065
+ y2="118.31965"
1066
+ gradientTransform="matrix(1.0000063,0,0,1.0000063,-0.00378,199.99999)" />
1067
+ <linearGradient
1068
+ inkscape:collect="always"
1069
+ xlink:href="#linearGradientWhitePiecesBorder"
1070
+ id="linearGradient15326"
1071
+ gradientUnits="userSpaceOnUse"
1072
+ x1="667.2389"
1073
+ y1="105.81965"
1074
+ x2="706.72016"
1075
+ y2="105.81965"
1076
+ gradientTransform="matrix(1.0000063,0,0,1.0000063,-0.00378,199.99999)" />
1077
+ <linearGradient
1078
+ inkscape:collect="always"
1079
+ xlink:href="#linearGradientWhitePiecesBorder"
1080
+ id="linearGradient15329"
1081
+ gradientUnits="userSpaceOnUse"
1082
+ x1="692.22753"
1083
+ y1="160.05825"
1084
+ x2="705.01598"
1085
+ y2="160.05825"
1086
+ gradientTransform="matrix(1.0000063,0,0,1.0000063,-0.00378,199.99999)" />
1087
+ <linearGradient
1088
+ inkscape:collect="always"
1089
+ xlink:href="#linearGradientWhitePieces"
1090
+ id="linearGradient15332"
1091
+ gradientUnits="userSpaceOnUse"
1092
+ gradientTransform="matrix(0.22857144,0,0,0.22857144,600,199.99999)"
1093
+ x1="334.55096"
1094
+ y1="110.78522"
1095
+ x2="393.23401"
1096
+ y2="127.35208" />
1097
+ <linearGradient
1098
+ inkscape:collect="always"
1099
+ xlink:href="#linearGradientWhitePiecesBorder"
1100
+ id="linearGradient15334"
1101
+ gradientUnits="userSpaceOnUse"
1102
+ x1="676.46831"
1103
+ y1="25.322179"
1104
+ x2="689.8815"
1105
+ y2="25.322179"
1106
+ gradientTransform="matrix(1.0000063,0,0,1.0000063,-0.00378,199.99999)" />
1107
+ <linearGradient
1108
+ inkscape:collect="always"
1109
+ xlink:href="#linearGradientWhitePieces"
1110
+ id="linearGradient15337"
1111
+ gradientUnits="userSpaceOnUse"
1112
+ gradientTransform="matrix(0.22857144,0,0,0.22857144,600,199.99999)"
1113
+ x1="192.30013"
1114
+ y1="446.01318"
1115
+ x2="613.59027"
1116
+ y2="649.5235" />
1117
+ <linearGradient
1118
+ inkscape:collect="always"
1119
+ xlink:href="#linearGradientWhitePiecesBorder"
1120
+ id="linearGradient15339"
1121
+ gradientUnits="userSpaceOnUse"
1122
+ x1="643.26833"
1123
+ y1="95.33782"
1124
+ x2="735.92003"
1125
+ y2="95.33782"
1126
+ gradientTransform="matrix(1.0000063,0,0,1.0000063,-0.00378,199.99999)" />
1127
+ <linearGradient
1128
+ inkscape:collect="always"
1129
+ xlink:href="#linearGradientWhitePieces"
1130
+ id="linearGradient15342"
1131
+ gradientUnits="userSpaceOnUse"
1132
+ gradientTransform="matrix(0.22857144,0,0,0.22857144,600,199.99999)"
1133
+ x1="229.48785"
1134
+ y1="640.76947"
1135
+ x2="615.77783"
1136
+ y2="730.46149" />
1137
+ <linearGradient
1138
+ inkscape:collect="always"
1139
+ xlink:href="#linearGradientWhitePiecesBorder"
1140
+ id="linearGradient15344"
1141
+ gradientUnits="userSpaceOnUse"
1142
+ x1="662.91519"
1143
+ y1="158.72688"
1144
+ x2="731.09846"
1145
+ y2="158.72688"
1146
+ gradientTransform="matrix(1.0000063,0,0,1.0000063,-0.00378,199.99999)" />
1147
+ <linearGradient
1148
+ inkscape:collect="always"
1149
+ xlink:href="#linearGradientWhitePieces"
1150
+ id="linearGradient15347"
1151
+ gradientUnits="userSpaceOnUse"
1152
+ gradientTransform="matrix(0.22857144,0,0,0.22857144,600,199.99999)"
1153
+ x1="706.30969"
1154
+ y1="193.79158"
1155
+ x2="602.51648"
1156
+ y2="612.50507" />
1157
+ <linearGradient
1158
+ inkscape:collect="always"
1159
+ xlink:href="#linearGradientWhitePiecesBorder"
1160
+ id="linearGradient15349"
1161
+ gradientUnits="userSpaceOnUse"
1162
+ x1="697.80657"
1163
+ y1="89.994812"
1164
+ x2="747.74203"
1165
+ y2="89.994812"
1166
+ gradientTransform="matrix(1.0000063,0,0,1.0000063,-0.00378,199.99999)" />
1167
+ <linearGradient
1168
+ inkscape:collect="always"
1169
+ xlink:href="#linearGradientWhitePieces"
1170
+ id="linearGradient15352"
1171
+ gradientUnits="userSpaceOnUse"
1172
+ x1="368.66669"
1173
+ y1="673.33331"
1174
+ x2="460.38913"
1175
+ y2="707.0246" />
1176
+ <linearGradient
1177
+ inkscape:collect="always"
1178
+ xlink:href="#linearGradientWhitePiecesBorder"
1179
+ id="linearGradient15354"
1180
+ gradientUnits="userSpaceOnUse"
1181
+ x1="367.99088"
1182
+ y1="673.33331"
1183
+ x2="442.00919"
1184
+ y2="673.33331" />
1185
+ <linearGradient
1186
+ inkscape:collect="always"
1187
+ xlink:href="#linearGradientWhitePieces"
1188
+ id="linearGradient15356"
1189
+ gradientUnits="userSpaceOnUse"
1190
+ x1="331.08029"
1191
+ y1="435"
1192
+ x2="572.87866"
1193
+ y2="529.0235" />
1194
+ <linearGradient
1195
+ inkscape:collect="always"
1196
+ xlink:href="#linearGradientWhitePiecesBorder"
1197
+ id="linearGradient15358"
1198
+ gradientUnits="userSpaceOnUse"
1199
+ x1="296.55371"
1200
+ y1="435"
1201
+ x2="550.11298"
1202
+ y2="435" />
1203
+ <linearGradient
1204
+ inkscape:collect="always"
1205
+ xlink:href="#linearGradientWhitePieces"
1206
+ id="linearGradient15360"
1207
+ gradientUnits="userSpaceOnUse"
1208
+ x1="822.14368"
1209
+ y1="909.1908"
1210
+ x2="844.99213"
1211
+ y2="932.17261" />
1212
+ <linearGradient
1213
+ inkscape:collect="always"
1214
+ xlink:href="#linearGradientWhitePiecesBorder"
1215
+ id="linearGradient15362"
1216
+ gradientUnits="userSpaceOnUse"
1217
+ x1="770.83986"
1218
+ y1="915"
1219
+ x2="824.16014"
1220
+ y2="915" />
1221
+ <linearGradient
1222
+ inkscape:collect="always"
1223
+ xlink:href="#linearGradientWhitePieces"
1224
+ id="linearGradient15364"
1225
+ gradientUnits="userSpaceOnUse"
1226
+ x1="804.05585"
1227
+ y1="930.06891"
1228
+ x2="809.85663"
1229
+ y2="955.65509" />
1230
+ <linearGradient
1231
+ inkscape:collect="always"
1232
+ xlink:href="#linearGradientWhitePiecesBorder"
1233
+ id="linearGradient15366"
1234
+ gradientUnits="userSpaceOnUse"
1235
+ x1="770.95651"
1236
+ y1="915"
1237
+ x2="824.04349"
1238
+ y2="915" />
1239
+ <linearGradient
1240
+ inkscape:collect="always"
1241
+ xlink:href="#linearGradientWhitePieces"
1242
+ id="linearGradient15368"
1243
+ gradientUnits="userSpaceOnUse"
1244
+ x1="797.5"
1245
+ y1="931.98047"
1246
+ x2="797.5"
1247
+ y2="947.82898" />
1248
+ <linearGradient
1249
+ inkscape:collect="always"
1250
+ xlink:href="#linearGradientWhitePiecesBorder"
1251
+ id="linearGradient15370"
1252
+ gradientUnits="userSpaceOnUse"
1253
+ x1="771.72004"
1254
+ y1="915"
1255
+ x2="823.27996"
1256
+ y2="915" />
1257
+ <linearGradient
1258
+ inkscape:collect="always"
1259
+ xlink:href="#linearGradientWhitePieces"
1260
+ id="linearGradient15372"
1261
+ gradientUnits="userSpaceOnUse"
1262
+ x1="339.47086"
1263
+ y1="530.60559"
1264
+ x2="479.95377"
1265
+ y2="569.41608" />
1266
+ <linearGradient
1267
+ inkscape:collect="always"
1268
+ xlink:href="#linearGradientWhitePiecesBorder"
1269
+ id="linearGradient15374"
1270
+ gradientUnits="userSpaceOnUse"
1271
+ x1="339.47087"
1272
+ y1="530.60559"
1273
+ x2="450.13173"
1274
+ y2="530.60559" />
1275
+ <linearGradient
1276
+ inkscape:collect="always"
1277
+ xlink:href="#linearGradientWhitePieces"
1278
+ id="linearGradient15376"
1279
+ gradientUnits="userSpaceOnUse"
1280
+ x1="339.47086"
1281
+ y1="530.60559"
1282
+ x2="473.62973"
1283
+ y2="563.92206" />
1284
+ <linearGradient
1285
+ inkscape:collect="always"
1286
+ xlink:href="#linearGradientWhitePiecesBorder"
1287
+ id="linearGradient15378"
1288
+ gradientUnits="userSpaceOnUse"
1289
+ x1="339.47087"
1290
+ y1="530.60559"
1291
+ x2="450.13173"
1292
+ y2="530.60559" />
1293
+ <linearGradient
1294
+ inkscape:collect="always"
1295
+ xlink:href="#linearGradientWhitePieces"
1296
+ id="linearGradient15380"
1297
+ gradientUnits="userSpaceOnUse"
1298
+ x1="339.47086"
1299
+ y1="530.60559"
1300
+ x2="463.12936"
1301
+ y2="571.97302" />
1302
+ <linearGradient
1303
+ inkscape:collect="always"
1304
+ xlink:href="#linearGradientWhitePiecesBorder"
1305
+ id="linearGradient15382"
1306
+ gradientUnits="userSpaceOnUse"
1307
+ x1="339.47087"
1308
+ y1="530.60559"
1309
+ x2="450.13173"
1310
+ y2="530.60559" />
1311
+ <linearGradient
1312
+ inkscape:collect="always"
1313
+ xlink:href="#linearGradientWhitePieces"
1314
+ id="linearGradient15384"
1315
+ gradientUnits="userSpaceOnUse"
1316
+ x1="339.47086"
1317
+ y1="530.60559"
1318
+ x2="436.0773"
1319
+ y2="584.75751" />
1320
+ <linearGradient
1321
+ inkscape:collect="always"
1322
+ xlink:href="#linearGradientWhitePiecesBorder"
1323
+ id="linearGradient15386"
1324
+ gradientUnits="userSpaceOnUse"
1325
+ x1="339.47087"
1326
+ y1="530.60559"
1327
+ x2="450.13173"
1328
+ y2="530.60559" />
1329
+ <linearGradient
1330
+ inkscape:collect="always"
1331
+ xlink:href="#linearGradientWhitePieces"
1332
+ id="linearGradient15388"
1333
+ gradientUnits="userSpaceOnUse"
1334
+ x1="339.47086"
1335
+ y1="530.60559"
1336
+ x2="450.13174"
1337
+ y2="571.97302" />
1338
+ <linearGradient
1339
+ inkscape:collect="always"
1340
+ xlink:href="#linearGradientWhitePiecesBorder"
1341
+ id="linearGradient15390"
1342
+ gradientUnits="userSpaceOnUse"
1343
+ x1="339.47087"
1344
+ y1="530.60559"
1345
+ x2="450.13173"
1346
+ y2="530.60559" />
1347
+ <linearGradient
1348
+ inkscape:collect="always"
1349
+ xlink:href="#linearGradientBlackPiecesBorder"
1350
+ id="linearGradient15393"
1351
+ gradientUnits="userSpaceOnUse"
1352
+ x1="441.38952"
1353
+ y1="59.207708"
1354
+ x2="558.65944"
1355
+ y2="59.207708"
1356
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,-1.9125002e-7)" />
1357
+ <linearGradient
1358
+ inkscape:collect="always"
1359
+ xlink:href="#linearGradientBlackPieces"
1360
+ id="linearGradient15396"
1361
+ gradientUnits="userSpaceOnUse"
1362
+ gradientTransform="matrix(0.23890515,0,0,0.23188362,392.26775,-2.7051453)"
1363
+ x1="153.41434"
1364
+ y1="229.06763"
1365
+ x2="712.03802"
1366
+ y2="369.52274" />
1367
+ <linearGradient
1368
+ inkscape:collect="always"
1369
+ xlink:href="#linearGradientBlackPiecesBorder"
1370
+ id="linearGradient15398"
1371
+ gradientUnits="userSpaceOnUse"
1372
+ x1="428.33821"
1373
+ y1="50.506413"
1374
+ x2="573.18176"
1375
+ y2="50.506413"
1376
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,-1.9125002e-7)" />
1377
+ <linearGradient
1378
+ inkscape:collect="always"
1379
+ xlink:href="#linearGradientBlackPiecesBorder"
1380
+ id="linearGradient15401"
1381
+ gradientUnits="userSpaceOnUse"
1382
+ x1="464.99454"
1383
+ y1="87.334999"
1384
+ x2="483.7212"
1385
+ y2="87.334999"
1386
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,-1.9125002e-7)" />
1387
+ <linearGradient
1388
+ inkscape:collect="always"
1389
+ xlink:href="#linearGradientBlackPiecesBorder"
1390
+ id="linearGradient15404"
1391
+ gradientUnits="userSpaceOnUse"
1392
+ x1="487.57906"
1393
+ y1="152.40469"
1394
+ x2="491.40409"
1395
+ y2="152.40469"
1396
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,-1.9125002e-7)" />
1397
+ <linearGradient
1398
+ inkscape:collect="always"
1399
+ xlink:href="#linearGradientBlackPiecesBorder"
1400
+ id="linearGradient15407"
1401
+ gradientUnits="userSpaceOnUse"
1402
+ x1="501.57386"
1403
+ y1="136.66474"
1404
+ x2="505.39889"
1405
+ y2="136.66474"
1406
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,-1.9125002e-7)" />
1407
+ <linearGradient
1408
+ inkscape:collect="always"
1409
+ xlink:href="#linearGradientBlackPiecesBorder"
1410
+ id="linearGradient15410"
1411
+ gradientUnits="userSpaceOnUse"
1412
+ x1="474.82825"
1413
+ y1="136.89706"
1414
+ x2="478.65328"
1415
+ y2="136.89706"
1416
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,-1.9125002e-7)" />
1417
+ <linearGradient
1418
+ inkscape:collect="always"
1419
+ xlink:href="#linearGradientBlackPiecesBorder"
1420
+ id="linearGradient15413"
1421
+ gradientUnits="userSpaceOnUse"
1422
+ x1="487.57906"
1423
+ y1="122.17737"
1424
+ x2="491.40409"
1425
+ y2="122.17737"
1426
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,-1.9125002e-7)" />
1427
+ <linearGradient
1428
+ inkscape:collect="always"
1429
+ xlink:href="#linearGradientBlackPiecesBorder"
1430
+ id="linearGradient15416"
1431
+ gradientUnits="userSpaceOnUse"
1432
+ x1="474.82825"
1433
+ y1="107.62534"
1434
+ x2="478.65328"
1435
+ y2="107.62534"
1436
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,-1.9125002e-7)" />
1437
+ <linearGradient
1438
+ inkscape:collect="always"
1439
+ xlink:href="#linearGradientBlackPiecesBorder"
1440
+ id="linearGradient15419"
1441
+ gradientUnits="userSpaceOnUse"
1442
+ x1="464.70573"
1443
+ y1="100.54747"
1444
+ x2="491.76443"
1445
+ y2="100.54747"
1446
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,-1.9125002e-7)" />
1447
+ <linearGradient
1448
+ inkscape:collect="always"
1449
+ xlink:href="#linearGradientBlackPiecesBorder"
1450
+ id="linearGradient15422"
1451
+ gradientUnits="userSpaceOnUse"
1452
+ x1="464.70573"
1453
+ y1="114.99314"
1454
+ x2="503.29605"
1455
+ y2="114.99314"
1456
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,-1.9125002e-7)" />
1457
+ <linearGradient
1458
+ inkscape:collect="always"
1459
+ xlink:href="#linearGradientBlackPiecesBorder"
1460
+ id="linearGradient15425"
1461
+ gradientUnits="userSpaceOnUse"
1462
+ x1="464.58317"
1463
+ y1="129.88547"
1464
+ x2="507.47516"
1465
+ y2="129.88547"
1466
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,-1.9125002e-7)" />
1467
+ <linearGradient
1468
+ inkscape:collect="always"
1469
+ xlink:href="#linearGradientBlackPiecesBorder"
1470
+ id="linearGradient15428"
1471
+ gradientUnits="userSpaceOnUse"
1472
+ x1="464.89416"
1473
+ y1="144.86723"
1474
+ x2="517.89351"
1475
+ y2="144.86723"
1476
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,-1.9125002e-7)" />
1477
+ <linearGradient
1478
+ inkscape:collect="always"
1479
+ xlink:href="#linearGradientBlackPieces"
1480
+ id="linearGradient15431"
1481
+ gradientUnits="userSpaceOnUse"
1482
+ gradientTransform="matrix(0.23890515,0,0,0.23188362,392.26775,-2.7051453)"
1483
+ x1="218.50157"
1484
+ y1="521.53015"
1485
+ x2="676.30902"
1486
+ y2="660.41461" />
1487
+ <linearGradient
1488
+ inkscape:collect="always"
1489
+ xlink:href="#linearGradientBlackPiecesBorder"
1490
+ id="linearGradient15433"
1491
+ gradientUnits="userSpaceOnUse"
1492
+ x1="455.08686"
1493
+ y1="116.35999"
1494
+ x2="543.14518"
1495
+ y2="116.35999"
1496
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,-1.9125002e-7)" />
1497
+ <linearGradient
1498
+ inkscape:collect="always"
1499
+ xlink:href="#linearGradientBlackPiecesBorder"
1500
+ id="linearGradient15436"
1501
+ gradientUnits="userSpaceOnUse"
1502
+ x1="443.51943"
1503
+ y1="175.82125"
1504
+ x2="555.15972"
1505
+ y2="175.82125"
1506
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,-1.9125002e-7)" />
1507
+ <linearGradient
1508
+ inkscape:collect="always"
1509
+ xlink:href="#linearGradientBlackPieces"
1510
+ id="linearGradient15439"
1511
+ gradientUnits="userSpaceOnUse"
1512
+ gradientTransform="matrix(0.23890515,0,0,0.23188362,392.26775,-2.7051453)"
1513
+ x1="193.1496"
1514
+ y1="715.4057"
1515
+ x2="742.91541"
1516
+ y2="730.41913" />
1517
+ <linearGradient
1518
+ inkscape:collect="always"
1519
+ xlink:href="#linearGradientBlackPiecesBorder"
1520
+ id="linearGradient15441"
1521
+ gradientUnits="userSpaceOnUse"
1522
+ x1="429.07269"
1523
+ y1="173.94605"
1524
+ x2="570.07235"
1525
+ y2="173.94605"
1526
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,-1.9125002e-7)" />
1527
+ <linearGradient
1528
+ inkscape:collect="always"
1529
+ xlink:href="#linearGradientBlackPieces"
1530
+ id="linearGradient15444"
1531
+ gradientUnits="userSpaceOnUse"
1532
+ gradientTransform="matrix(0.23890515,0,0,0.23188362,392.26775,-2.7051453)"
1533
+ x1="7.337575"
1534
+ y1="207.66478"
1535
+ x2="689.74506"
1536
+ y2="274.33145" />
1537
+ <linearGradient
1538
+ inkscape:collect="always"
1539
+ xlink:href="#linearGradientBlackPiecesBorder"
1540
+ id="linearGradient15446"
1541
+ gradientUnits="userSpaceOnUse"
1542
+ x1="444.03736"
1543
+ y1="57.924455"
1544
+ x2="557.98109"
1545
+ y2="57.924455"
1546
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.748596,-1.9125002e-7)" />
1547
+ <linearGradient
1548
+ inkscape:collect="always"
1549
+ xlink:href="#linearGradientBlackPieces"
1550
+ id="linearGradient15451"
1551
+ gradientUnits="userSpaceOnUse"
1552
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,-1.9125002e-7)"
1553
+ x1="23.458433"
1554
+ y1="337.85495"
1555
+ x2="87.371216"
1556
+ y2="315.46323" />
1557
+ <linearGradient
1558
+ inkscape:collect="always"
1559
+ xlink:href="#linearGradientBlackPiecesBorder"
1560
+ id="linearGradient15453"
1561
+ gradientUnits="userSpaceOnUse"
1562
+ x1="205.37198"
1563
+ y1="77.368786"
1564
+ x2="220.00801"
1565
+ y2="77.368786"
1566
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.374298,-1.9125002e-7)" />
1567
+ <linearGradient
1568
+ inkscape:collect="always"
1569
+ xlink:href="#linearGradientBlackPieces"
1570
+ id="linearGradient15457"
1571
+ gradientUnits="userSpaceOnUse"
1572
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,-1.9125002e-7)"
1573
+ x1="167.87183"
1574
+ y1="174.99733"
1575
+ x2="234.62003"
1576
+ y2="174.99733" />
1577
+ <linearGradient
1578
+ inkscape:collect="always"
1579
+ xlink:href="#linearGradientBlackPiecesBorder"
1580
+ id="linearGradient15459"
1581
+ gradientUnits="userSpaceOnUse"
1582
+ x1="238.44265"
1583
+ y1="40.074389"
1584
+ x2="253.72799"
1585
+ y2="40.074389"
1586
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.374298,-1.9125002e-7)" />
1587
+ <linearGradient
1588
+ inkscape:collect="always"
1589
+ xlink:href="#linearGradientBlackPieces"
1590
+ id="linearGradient15463"
1591
+ gradientUnits="userSpaceOnUse"
1592
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,-1.9125002e-7)"
1593
+ x1="785.14124"
1594
+ y1="294.75864"
1595
+ x2="840.91125"
1596
+ y2="363.08893" />
1597
+ <linearGradient
1598
+ inkscape:collect="always"
1599
+ xlink:href="#linearGradientBlackPiecesBorder"
1600
+ id="linearGradient15465"
1601
+ gradientUnits="userSpaceOnUse"
1602
+ x1="372.24073"
1603
+ y1="76.675623"
1604
+ x2="395.53735"
1605
+ y2="76.675623"
1606
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.374298,-1.9125002e-7)" />
1607
+ <linearGradient
1608
+ inkscape:collect="always"
1609
+ xlink:href="#linearGradientBlackPieces"
1610
+ id="linearGradient15469"
1611
+ gradientUnits="userSpaceOnUse"
1612
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,-1.9125002e-7)"
1613
+ x1="649.86255"
1614
+ y1="171.18027"
1615
+ x2="711.11725"
1616
+ y2="227.74881" />
1617
+ <linearGradient
1618
+ inkscape:collect="always"
1619
+ xlink:href="#linearGradientBlackPiecesBorder"
1620
+ id="linearGradient15471"
1621
+ gradientUnits="userSpaceOnUse"
1622
+ x1="341.53179"
1623
+ y1="45.67738"
1624
+ x2="365.54463"
1625
+ y2="45.67738"
1626
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.374298,-1.9125002e-7)" />
1627
+ <linearGradient
1628
+ inkscape:collect="always"
1629
+ xlink:href="#linearGradientBlackPieces"
1630
+ id="linearGradient15475"
1631
+ gradientUnits="userSpaceOnUse"
1632
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,-1.9125002e-7)"
1633
+ x1="406.01202"
1634
+ y1="103.53159"
1635
+ x2="470.8349"
1636
+ y2="132.99438" />
1637
+ <linearGradient
1638
+ inkscape:collect="always"
1639
+ xlink:href="#linearGradientBlackPiecesBorder"
1640
+ id="linearGradient15477"
1641
+ gradientUnits="userSpaceOnUse"
1642
+ x1="294.59603"
1643
+ y1="29.106316"
1644
+ x2="310.51999"
1645
+ y2="29.106316"
1646
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.374298,-1.9125002e-7)" />
1647
+ <linearGradient
1648
+ inkscape:collect="always"
1649
+ xlink:href="#linearGradientBlackPieces"
1650
+ id="linearGradient15480"
1651
+ gradientUnits="userSpaceOnUse"
1652
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,-1.9125002e-7)"
1653
+ x1="175.43776"
1654
+ y1="454.77576"
1655
+ x2="687.12817"
1656
+ y2="677.83978" />
1657
+ <linearGradient
1658
+ inkscape:collect="always"
1659
+ xlink:href="#linearGradientBlackPiecesBorder"
1660
+ id="linearGradient15482"
1661
+ gradientUnits="userSpaceOnUse"
1662
+ x1="254.17529"
1663
+ y1="188.43194"
1664
+ x2="334.08665"
1665
+ y2="188.43194"
1666
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.374298,-1.9125002e-7)" />
1667
+ <linearGradient
1668
+ inkscape:collect="always"
1669
+ xlink:href="#linearGradientBlackPieces"
1670
+ id="linearGradient15485"
1671
+ gradientUnits="userSpaceOnUse"
1672
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,-1.9125002e-7)"
1673
+ x1="153.6037"
1674
+ y1="380.53995"
1675
+ x2="761.36395"
1676
+ y2="682.2066" />
1677
+ <linearGradient
1678
+ inkscape:collect="always"
1679
+ xlink:href="#linearGradientBlackPiecesBorder"
1680
+ id="linearGradient15487"
1681
+ gradientUnits="userSpaceOnUse"
1682
+ x1="282.06701"
1683
+ y1="168.87478"
1684
+ x2="304.46984"
1685
+ y2="168.87478"
1686
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.374298,-1.9125002e-7)" />
1687
+ <linearGradient
1688
+ inkscape:collect="always"
1689
+ xlink:href="#linearGradientBlackPieces"
1690
+ id="linearGradient15490"
1691
+ gradientUnits="userSpaceOnUse"
1692
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,-1.9125002e-7)"
1693
+ x1="153.6037"
1694
+ y1="380.53995"
1695
+ x2="724.24603"
1696
+ y2="618.98932" />
1697
+ <linearGradient
1698
+ inkscape:collect="always"
1699
+ xlink:href="#linearGradientBlackPiecesBorder"
1700
+ id="linearGradient15492"
1701
+ gradientUnits="userSpaceOnUse"
1702
+ x1="215.32858"
1703
+ y1="100.44596"
1704
+ x2="374.35234"
1705
+ y2="100.44596"
1706
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.374298,-1.9125002e-7)" />
1707
+ <linearGradient
1708
+ inkscape:collect="always"
1709
+ xlink:href="#linearGradientBlackPieces"
1710
+ id="linearGradient15495"
1711
+ gradientUnits="userSpaceOnUse"
1712
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,-1.9125002e-7)"
1713
+ x1="153.6037"
1714
+ y1="380.53995"
1715
+ x2="822.49933"
1716
+ y2="675.41992" />
1717
+ <linearGradient
1718
+ inkscape:collect="always"
1719
+ xlink:href="#linearGradientBlackPiecesBorder"
1720
+ id="linearGradient15497"
1721
+ gradientUnits="userSpaceOnUse"
1722
+ x1="246.33115"
1723
+ y1="171.3815"
1724
+ x2="342.14333"
1725
+ y2="171.3815"
1726
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,0.374298,-1.9125002e-7)" />
1727
+ <linearGradient
1728
+ inkscape:collect="always"
1729
+ xlink:href="#linearGradientBlackPieces"
1730
+ id="linearGradient15500"
1731
+ gradientUnits="userSpaceOnUse"
1732
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,-1.9125002e-7)"
1733
+ x1="153.6037"
1734
+ y1="380.53995"
1735
+ x2="761.36395"
1736
+ y2="682.2066" />
1737
+ <linearGradient
1738
+ inkscape:collect="always"
1739
+ xlink:href="#linearGradientBlackPieces"
1740
+ id="linearGradient15507"
1741
+ gradientUnits="userSpaceOnUse"
1742
+ gradientTransform="matrix(0.22857143,0,0,0.22857144,0,-8.7714142e-6)"
1743
+ x1="221.55104"
1744
+ y1="774.93707"
1745
+ x2="611.05023"
1746
+ y2="849.56549" />
1747
+ <linearGradient
1748
+ inkscape:collect="always"
1749
+ xlink:href="#linearGradientBlackPiecesBorder"
1750
+ id="linearGradient15509"
1751
+ gradientUnits="userSpaceOnUse"
1752
+ x1="61.303072"
1753
+ y1="189.18989"
1754
+ x2="139.93051"
1755
+ y2="189.18989"
1756
+ gradientTransform="matrix(0.99812851,0,0,1.0000063,0,-8.7714142e-6)" />
1757
+ <linearGradient
1758
+ inkscape:collect="always"
1759
+ xlink:href="#linearGradientBlackPieces"
1760
+ id="linearGradient15512"
1761
+ gradientUnits="userSpaceOnUse"
1762
+ gradientTransform="matrix(0.22857143,0,0,0.22857144,0,-8.7714142e-6)"
1763
+ x1="129.96214"
1764
+ y1="428.65894"
1765
+ x2="701.01483"
1766
+ y2="740.06274" />
1767
+ <linearGradient
1768
+ inkscape:collect="always"
1769
+ xlink:href="#linearGradientBlackPiecesBorder"
1770
+ id="linearGradient15514"
1771
+ gradientUnits="userSpaceOnUse"
1772
+ x1="73.393466"
1773
+ y1="99.576291"
1774
+ x2="128.57319"
1775
+ y2="99.576291"
1776
+ gradientTransform="matrix(0.99812851,0,0,1.0000063,0,-8.7714142e-6)" />
1777
+ <linearGradient
1778
+ inkscape:collect="always"
1779
+ xlink:href="#linearGradientBlackPieces"
1780
+ id="linearGradient15517"
1781
+ gradientUnits="userSpaceOnUse"
1782
+ gradientTransform="matrix(0.22857143,0,0,0.22857144,0,-8.7714142e-6)"
1783
+ x1="129.96214"
1784
+ y1="428.65894"
1785
+ x2="698.83136"
1786
+ y2="740.06268" />
1787
+ <linearGradient
1788
+ inkscape:collect="always"
1789
+ xlink:href="#linearGradientBlackPiecesBorder"
1790
+ id="linearGradient15519"
1791
+ gradientUnits="userSpaceOnUse"
1792
+ x1="18.694719"
1793
+ y1="115.58561"
1794
+ x2="183.74067"
1795
+ y2="115.58561"
1796
+ gradientTransform="matrix(0.99812851,0,0,1.0000063,0,-8.7714142e-6)" />
1797
+ <linearGradient
1798
+ inkscape:collect="always"
1799
+ xlink:href="#linearGradientBlackPieces"
1800
+ id="linearGradient15522"
1801
+ gradientUnits="userSpaceOnUse"
1802
+ gradientTransform="matrix(0.22857143,0,0,0.22857144,0,-8.7714142e-6)"
1803
+ x1="197.64774"
1804
+ y1="629.91022"
1805
+ x2="664.98859"
1806
+ y2="790.37555" />
1807
+ <linearGradient
1808
+ inkscape:collect="always"
1809
+ xlink:href="#linearGradientBlackPiecesBorder"
1810
+ id="linearGradient15524"
1811
+ gradientUnits="userSpaceOnUse"
1812
+ x1="52.179426"
1813
+ y1="171.15182"
1814
+ x2="149.18172"
1815
+ y2="171.15182"
1816
+ gradientTransform="matrix(0.99812851,0,0,1.0000063,0,-8.7714142e-6)" />
1817
+ <linearGradient
1818
+ inkscape:collect="always"
1819
+ xlink:href="#linearGradientBlackPieces"
1820
+ id="linearGradient15527"
1821
+ gradientUnits="userSpaceOnUse"
1822
+ gradientTransform="matrix(0.22857143,0,0,0.22857144,0,-8.7714142e-6)"
1823
+ x1="129.96214"
1824
+ y1="428.65894"
1825
+ x2="812.36853"
1826
+ y2="836.31329" />
1827
+ <linearGradient
1828
+ inkscape:collect="always"
1829
+ xlink:href="#linearGradientBlackPieces"
1830
+ id="linearGradient15530"
1831
+ gradientUnits="userSpaceOnUse"
1832
+ gradientTransform="matrix(0.22857143,0,0,0.22857144,0,-8.7714142e-6)"
1833
+ x1="368.47662"
1834
+ y1="273.33771"
1835
+ x2="494.5513"
1836
+ y2="319.27548" />
1837
+ <linearGradient
1838
+ inkscape:collect="always"
1839
+ xlink:href="#linearGradientBlackPiecesBorder"
1840
+ id="linearGradient15532"
1841
+ gradientUnits="userSpaceOnUse"
1842
+ x1="84.38115"
1843
+ y1="72.976797"
1844
+ x2="113.25052"
1845
+ y2="72.976797"
1846
+ gradientTransform="matrix(0.99812851,0,0,1.0000063,0,-8.7714142e-6)" />
1847
+ <linearGradient
1848
+ inkscape:collect="always"
1849
+ xlink:href="#linearGradientBlackPieces"
1850
+ id="linearGradient15535"
1851
+ gradientUnits="userSpaceOnUse"
1852
+ gradientTransform="matrix(0.22857143,0,0,0.22857144,0,-8.7714142e-6)"
1853
+ x1="313.69473"
1854
+ y1="101.18996"
1855
+ x2="536.18018"
1856
+ y2="251.91928" />
1857
+ <linearGradient
1858
+ inkscape:collect="always"
1859
+ xlink:href="#linearGradientBlackPiecesBorder"
1860
+ id="linearGradient15537"
1861
+ gradientUnits="userSpaceOnUse"
1862
+ x1="68.517819"
1863
+ y1="40.057539"
1864
+ x2="130.49355"
1865
+ y2="40.057539"
1866
+ gradientTransform="matrix(0.99812851,0,0,1.0000063,0,-8.7714142e-6)" />
1867
+ <linearGradient
1868
+ inkscape:collect="always"
1869
+ xlink:href="#linearGradientBlackPieces"
1870
+ id="linearGradient15540"
1871
+ gradientUnits="userSpaceOnUse"
1872
+ gradientTransform="matrix(0.22857143,0,0,0.22857144,0,-8.7714142e-6)"
1873
+ x1="495.29623"
1874
+ y1="448.54721"
1875
+ x2="595.97144"
1876
+ y2="528.54724" />
1877
+ <linearGradient
1878
+ inkscape:collect="always"
1879
+ xlink:href="#linearGradientBlackPiecesBorder"
1880
+ id="linearGradient15542"
1881
+ gradientUnits="userSpaceOnUse"
1882
+ x1="106.05839"
1883
+ y1="111.66723"
1884
+ x2="136.47574"
1885
+ y2="111.66723"
1886
+ gradientTransform="matrix(0.99812851,0,0,1.0000063,0,-8.7714142e-6)" />
1887
+ <linearGradient
1888
+ inkscape:collect="always"
1889
+ xlink:href="#linearGradientBlackPieces"
1890
+ id="linearGradient15545"
1891
+ gradientUnits="userSpaceOnUse"
1892
+ gradientTransform="matrix(0.22857143,0,0,0.22857144,0,-8.7714142e-6)"
1893
+ x1="297.55386"
1894
+ y1="427.04959"
1895
+ x2="368.56238"
1896
+ y2="521.21625" />
1897
+ <linearGradient
1898
+ inkscape:collect="always"
1899
+ xlink:href="#linearGradientBlackPiecesBorder"
1900
+ id="linearGradient15547"
1901
+ gradientUnits="userSpaceOnUse"
1902
+ x1="64.019555"
1903
+ y1="110.56303"
1904
+ x2="94.436889"
1905
+ y2="110.56303"
1906
+ gradientTransform="matrix(0.99812851,0,0,1.0000063,0,-8.7714142e-6)" />
1907
+ <linearGradient
1908
+ inkscape:collect="always"
1909
+ xlink:href="#linearGradientBlackPieces"
1910
+ id="linearGradient15551"
1911
+ gradientUnits="userSpaceOnUse"
1912
+ gradientTransform="matrix(0.22857144,0,0,0.22857144,631.83922,-0.88973588)"
1913
+ x1="321.15759"
1914
+ y1="90.161285"
1915
+ x2="395.43152"
1916
+ y2="128.46291" />
1917
+ <linearGradient
1918
+ inkscape:collect="always"
1919
+ xlink:href="#linearGradientBlackPiecesBorder"
1920
+ id="linearGradient15553"
1921
+ gradientUnits="userSpaceOnUse"
1922
+ x1="708.30733"
1923
+ y1="24.432458"
1924
+ x2="721.72052"
1925
+ y2="24.432458"
1926
+ gradientTransform="matrix(1.0000063,0,0,1.0000063,-0.00378,-8.7714142e-6)" />
1927
+ <linearGradient
1928
+ inkscape:collect="always"
1929
+ xlink:href="#linearGradientBlackPieces"
1930
+ id="linearGradient15556"
1931
+ gradientUnits="userSpaceOnUse"
1932
+ x1="729.02667"
1933
+ y1="125.66114"
1934
+ x2="739.4967"
1935
+ y2="133.16115"
1936
+ gradientTransform="matrix(1.0000063,0,0,1.0000063,-0.00378,-8.7714142e-6)" />
1937
+ <linearGradient
1938
+ inkscape:collect="always"
1939
+ xlink:href="#linearGradientBlackPiecesBorder"
1940
+ id="linearGradient15558"
1941
+ gradientUnits="userSpaceOnUse"
1942
+ x1="667.0267"
1943
+ y1="106.16114"
1944
+ x2="759.99669"
1945
+ y2="106.16114"
1946
+ gradientTransform="matrix(1.0000063,0,0,1.0000063,-0.00378,-8.7714142e-6)" />
1947
+ <linearGradient
1948
+ inkscape:collect="always"
1949
+ xlink:href="#linearGradientBlackPieces"
1950
+ id="linearGradient15561"
1951
+ gradientUnits="userSpaceOnUse"
1952
+ gradientTransform="matrix(0.22857144,0,0,0.22857144,600,-8.7714142e-6)"
1953
+ x1="155.78476"
1954
+ y1="666.80823"
1955
+ x2="733.56958"
1956
+ y2="841.04077" />
1957
+ <linearGradient
1958
+ inkscape:collect="always"
1959
+ xlink:href="#linearGradientBlackPiecesBorder"
1960
+ id="linearGradient15563"
1961
+ gradientUnits="userSpaceOnUse"
1962
+ x1="630.42201"
1963
+ y1="177.31452"
1964
+ x2="767.67199"
1965
+ y2="177.31452"
1966
+ gradientTransform="matrix(1.0000063,0,0,1.0000063,-0.00378,-8.7714142e-6)" />
1967
+ <linearGradient
1968
+ inkscape:collect="always"
1969
+ xlink:href="#linearGradientBlackPieces"
1970
+ id="linearGradient15566"
1971
+ gradientUnits="userSpaceOnUse"
1972
+ x1="667.23889"
1973
+ y1="115.81965"
1974
+ x2="659.72015"
1975
+ y2="118.31965"
1976
+ gradientTransform="matrix(1.0000063,0,0,1.0000063,-0.00378,-8.7714142e-6)" />
1977
+ <linearGradient
1978
+ inkscape:collect="always"
1979
+ xlink:href="#linearGradientBlackPiecesBorder"
1980
+ id="linearGradient15568"
1981
+ gradientUnits="userSpaceOnUse"
1982
+ x1="667.2389"
1983
+ y1="105.81965"
1984
+ x2="706.72016"
1985
+ y2="105.81965"
1986
+ gradientTransform="matrix(1.0000063,0,0,1.0000063,-0.00378,-8.7714142e-6)" />
1987
+ <linearGradient
1988
+ inkscape:collect="always"
1989
+ xlink:href="#linearGradientBlackPiecesBorder"
1990
+ id="linearGradient15571"
1991
+ gradientUnits="userSpaceOnUse"
1992
+ x1="692.22753"
1993
+ y1="160.05825"
1994
+ x2="705.01598"
1995
+ y2="160.05825"
1996
+ gradientTransform="matrix(1.0000063,0,0,1.0000063,-0.00378,-8.7714142e-6)" />
1997
+ <linearGradient
1998
+ inkscape:collect="always"
1999
+ xlink:href="#linearGradientBlackPieces"
2000
+ id="linearGradient15574"
2001
+ gradientUnits="userSpaceOnUse"
2002
+ gradientTransform="matrix(0.22857144,0,0,0.22857144,600,-8.7714142e-6)"
2003
+ x1="334.55096"
2004
+ y1="110.78522"
2005
+ x2="393.23401"
2006
+ y2="127.35208" />
2007
+ <linearGradient
2008
+ inkscape:collect="always"
2009
+ xlink:href="#linearGradientBlackPiecesBorder"
2010
+ id="linearGradient15576"
2011
+ gradientUnits="userSpaceOnUse"
2012
+ x1="676.46831"
2013
+ y1="25.322179"
2014
+ x2="689.8815"
2015
+ y2="25.322179"
2016
+ gradientTransform="matrix(1.0000063,0,0,1.0000063,-0.00378,-8.7714142e-6)" />
2017
+ <linearGradient
2018
+ inkscape:collect="always"
2019
+ xlink:href="#linearGradientBlackPieces"
2020
+ id="linearGradient15579"
2021
+ gradientUnits="userSpaceOnUse"
2022
+ gradientTransform="matrix(0.22857144,0,0,0.22857144,600,-8.7714142e-6)"
2023
+ x1="192.30013"
2024
+ y1="446.01318"
2025
+ x2="613.59027"
2026
+ y2="649.5235" />
2027
+ <linearGradient
2028
+ inkscape:collect="always"
2029
+ xlink:href="#linearGradientBlackPiecesBorder"
2030
+ id="linearGradient15581"
2031
+ gradientUnits="userSpaceOnUse"
2032
+ x1="643.26833"
2033
+ y1="95.33782"
2034
+ x2="735.92003"
2035
+ y2="95.33782"
2036
+ gradientTransform="matrix(1.0000063,0,0,1.0000063,-0.00378,-8.7714142e-6)" />
2037
+ <linearGradient
2038
+ inkscape:collect="always"
2039
+ xlink:href="#linearGradientBlackPieces"
2040
+ id="linearGradient15584"
2041
+ gradientUnits="userSpaceOnUse"
2042
+ gradientTransform="matrix(0.22857144,0,0,0.22857144,600,-8.7714142e-6)"
2043
+ x1="229.48785"
2044
+ y1="640.76947"
2045
+ x2="615.77783"
2046
+ y2="730.46149" />
2047
+ <linearGradient
2048
+ inkscape:collect="always"
2049
+ xlink:href="#linearGradientBlackPiecesBorder"
2050
+ id="linearGradient15586"
2051
+ gradientUnits="userSpaceOnUse"
2052
+ x1="662.91519"
2053
+ y1="158.72688"
2054
+ x2="731.09846"
2055
+ y2="158.72688"
2056
+ gradientTransform="matrix(1.0000063,0,0,1.0000063,-0.00378,-8.7714142e-6)" />
2057
+ <linearGradient
2058
+ inkscape:collect="always"
2059
+ xlink:href="#linearGradientBlackPieces"
2060
+ id="linearGradient15589"
2061
+ gradientUnits="userSpaceOnUse"
2062
+ gradientTransform="matrix(0.22857144,0,0,0.22857144,600,-8.7714142e-6)"
2063
+ x1="706.30969"
2064
+ y1="193.79158"
2065
+ x2="602.51648"
2066
+ y2="612.50507" />
2067
+ <linearGradient
2068
+ inkscape:collect="always"
2069
+ xlink:href="#linearGradientBlackPiecesBorder"
2070
+ id="linearGradient15591"
2071
+ gradientUnits="userSpaceOnUse"
2072
+ x1="697.80657"
2073
+ y1="89.994812"
2074
+ x2="747.74203"
2075
+ y2="89.994812"
2076
+ gradientTransform="matrix(1.0000063,0,0,1.0000063,-0.00378,-8.7714142e-6)" />
2077
+ <linearGradient
2078
+ inkscape:collect="always"
2079
+ xlink:href="#linearGradientBlackPieces"
2080
+ id="linearGradient15636"
2081
+ gradientUnits="userSpaceOnUse"
2082
+ gradientTransform="matrix(0.21114126,0,0,0.210392,1011.288,12.82424)"
2083
+ x1="213.78165"
2084
+ y1="696.46155"
2085
+ x2="414.65732"
2086
+ y2="864.22052" />
2087
+ <linearGradient
2088
+ inkscape:collect="always"
2089
+ xlink:href="#linearGradientBlackPiecesBorder"
2090
+ id="linearGradient15638"
2091
+ gradientUnits="userSpaceOnUse"
2092
+ gradientTransform="translate(0,-200)"
2093
+ x1="1046.1874"
2094
+ y1="366.56808"
2095
+ x2="1098.8392"
2096
+ y2="366.56808" />
2097
+ <linearGradient
2098
+ inkscape:collect="always"
2099
+ xlink:href="#linearGradientBlackPieces"
2100
+ id="linearGradient15641"
2101
+ gradientUnits="userSpaceOnUse"
2102
+ gradientTransform="matrix(0.16437029,1.1302757e-4,-0.00204311,0.16893829,1102.9193,20.4518)"
2103
+ x1="241.75385"
2104
+ y1="401.27609"
2105
+ x2="522.97559"
2106
+ y2="519.06158" />
2107
+ <linearGradient
2108
+ inkscape:collect="always"
2109
+ xlink:href="#linearGradientBlackPiecesBorder"
2110
+ id="linearGradient15643"
2111
+ gradientUnits="userSpaceOnUse"
2112
+ gradientTransform="translate(0,-200)"
2113
+ x1="1159.5165"
2114
+ y1="297.8815"
2115
+ x2="1178.6918"
2116
+ y2="297.8815" />
2117
+ <linearGradient
2118
+ inkscape:collect="always"
2119
+ xlink:href="#linearGradientBlackPieces"
2120
+ id="linearGradient15646"
2121
+ gradientUnits="userSpaceOnUse"
2122
+ gradientTransform="matrix(0.22387292,0.04610674,-0.04610674,0.22387292,1027.3988,35.02322)"
2123
+ x1="456.672"
2124
+ y1="496.70807"
2125
+ x2="790.85327"
2126
+ y2="285.25974" />
2127
+ <linearGradient
2128
+ inkscape:collect="always"
2129
+ xlink:href="#linearGradientBlackPiecesBorder"
2130
+ id="linearGradient15648"
2131
+ gradientUnits="userSpaceOnUse"
2132
+ gradientTransform="translate(0,-200)"
2133
+ x1="1116.9076"
2134
+ y1="346.82153"
2135
+ x2="1171.1093"
2136
+ y2="346.82153" />
2137
+ <linearGradient
2138
+ inkscape:collect="always"
2139
+ xlink:href="#linearGradientBlackPieces"
2140
+ id="linearGradient15651"
2141
+ gradientUnits="userSpaceOnUse"
2142
+ gradientTransform="matrix(-0.21114126,0,0,0.210392,1185.1025,12.58006)"
2143
+ x1="409.6666"
2144
+ y1="725.85468"
2145
+ x2="101.73616"
2146
+ y2="844.86835" />
2147
+ <linearGradient
2148
+ inkscape:collect="always"
2149
+ xlink:href="#linearGradientBlackPiecesBorder"
2150
+ id="linearGradient15653"
2151
+ gradientUnits="userSpaceOnUse"
2152
+ gradientTransform="translate(0,-200)"
2153
+ x1="1098.4655"
2154
+ y1="366.03885"
2155
+ x2="1149.8408"
2156
+ y2="366.03885" />
2157
+ <linearGradient
2158
+ inkscape:collect="always"
2159
+ xlink:href="#linearGradientBlackPieces"
2160
+ id="linearGradient15656"
2161
+ gradientUnits="userSpaceOnUse"
2162
+ gradientTransform="matrix(0.17051017,0.01574006,-0.01481026,0.16043794,1043.8798,16.46919)"
2163
+ x1="411.38654"
2164
+ y1="269.9574"
2165
+ x2="606.08582"
2166
+ y2="442.53754" />
2167
+ <linearGradient
2168
+ inkscape:collect="always"
2169
+ xlink:href="#linearGradientBlackPiecesBorder"
2170
+ id="linearGradient15658"
2171
+ gradientUnits="userSpaceOnUse"
2172
+ gradientTransform="translate(0,-200)"
2173
+ x1="1073.6456"
2174
+ y1="289.08289"
2175
+ x2="1123.5177"
2176
+ y2="289.08289" />
2177
+ <linearGradient
2178
+ inkscape:collect="always"
2179
+ xlink:href="#linearGradientBlackPieces"
2180
+ id="linearGradient15661"
2181
+ gradientUnits="userSpaceOnUse"
2182
+ gradientTransform="matrix(0.07483657,-0.03798697,0.02784731,0.06327954,1091.6156,73.77449)"
2183
+ x1="307.02979"
2184
+ y1="442.26321"
2185
+ x2="576.54529"
2186
+ y2="444.9863" />
2187
+ <linearGradient
2188
+ inkscape:collect="always"
2189
+ xlink:href="#linearGradientBlackPiecesBorder"
2190
+ id="linearGradient15663"
2191
+ gradientUnits="userSpaceOnUse"
2192
+ gradientTransform="translate(0,-200)"
2193
+ x1="1120.0306"
2194
+ y1="282.81598"
2195
+ x2="1140.408"
2196
+ y2="282.81598" />
2197
+ <linearGradient
2198
+ inkscape:collect="always"
2199
+ xlink:href="#linearGradientBlackPieces"
2200
+ id="linearGradient15666"
2201
+ gradientUnits="userSpaceOnUse"
2202
+ gradientTransform="matrix(0.20193623,0.01864103,-0.01673386,0.18127612,1018.779,14.60765)"
2203
+ x1="275.24356"
2204
+ y1="458.6561"
2205
+ x2="771.40265"
2206
+ y2="497.96924" />
2207
+ <linearGradient
2208
+ inkscape:collect="always"
2209
+ xlink:href="#linearGradientBlackPiecesBorder"
2210
+ id="linearGradient15668"
2211
+ gradientUnits="userSpaceOnUse"
2212
+ gradientTransform="translate(0,-200)"
2213
+ x1="1051.5103"
2214
+ y1="303.85892"
2215
+ x2="1148.3424"
2216
+ y2="303.85892" />
2217
+ <linearGradient
2218
+ inkscape:collect="always"
2219
+ xlink:href="#linearGradientBlackPieces"
2220
+ id="linearGradient15672"
2221
+ gradientUnits="userSpaceOnUse"
2222
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,998.986,17.12585)"
2223
+ x1="211.03732"
2224
+ y1="567.21368"
2225
+ x2="502.98859"
2226
+ y2="755.47064" />
2227
+ <linearGradient
2228
+ inkscape:collect="always"
2229
+ xlink:href="#linearGradientBlackPiecesBorder"
2230
+ id="linearGradient15674"
2231
+ gradientUnits="userSpaceOnUse"
2232
+ gradientTransform="translate(0,-200)"
2233
+ x1="1050.9943"
2234
+ y1="351.74463"
2235
+ x2="1148.2543"
2236
+ y2="351.74463" />
2237
+ <linearGradient
2238
+ inkscape:collect="always"
2239
+ xlink:href="#linearGradientBlackPieces"
2240
+ id="linearGradient15722"
2241
+ gradientUnits="userSpaceOnUse"
2242
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,-0.49906422,-198.15878)"
2243
+ x1="837.08344"
2244
+ y1="316.11407"
2245
+ x2="864.74457"
2246
+ y2="316.98907" />
2247
+ <linearGradient
2248
+ inkscape:collect="always"
2249
+ xlink:href="#linearGradientBlackPiecesBorder"
2250
+ id="linearGradient15724"
2251
+ gradientUnits="userSpaceOnUse"
2252
+ x1="846.29999"
2253
+ y1="119.55961"
2254
+ x2="860.89307"
2255
+ y2="119.55961" />
2256
+ <linearGradient
2257
+ inkscape:collect="always"
2258
+ xlink:href="#linearGradientBlackPieces"
2259
+ id="linearGradient15727"
2260
+ gradientUnits="userSpaceOnUse"
2261
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,-0.49906422,-197.62944)"
2262
+ x1="904.49695"
2263
+ y1="279.93512"
2264
+ x2="893.70923"
2265
+ y2="340.68512" />
2266
+ <linearGradient
2267
+ inkscape:collect="always"
2268
+ xlink:href="#linearGradientBlackPiecesBorder"
2269
+ id="linearGradient15729"
2270
+ gradientUnits="userSpaceOnUse"
2271
+ x1="828.73456"
2272
+ y1="118.66047"
2273
+ x2="974.46411"
2274
+ y2="118.66047" />
2275
+ <linearGradient
2276
+ inkscape:collect="always"
2277
+ xlink:href="#linearGradientBlackPiecesBorder"
2278
+ id="linearGradient15732"
2279
+ gradientUnits="userSpaceOnUse"
2280
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,1.4971928,0)"
2281
+ x1="892.6001"
2282
+ y1="174.09663"
2283
+ x2="902.16766"
2284
+ y2="174.09663" />
2285
+ <linearGradient
2286
+ inkscape:collect="always"
2287
+ xlink:href="#linearGradientBlackPieces"
2288
+ id="linearGradient15735"
2289
+ gradientUnits="userSpaceOnUse"
2290
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,800,0.91429)"
2291
+ x1="705.29126"
2292
+ y1="378.28769"
2293
+ x2="787.12555"
2294
+ y2="465.62366" />
2295
+ <linearGradient
2296
+ inkscape:collect="always"
2297
+ xlink:href="#linearGradientBlackPiecesBorder"
2298
+ id="linearGradient15737"
2299
+ gradientUnits="userSpaceOnUse"
2300
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,1.4971928,0)"
2301
+ x1="960.82849"
2302
+ y1="96.396317"
2303
+ x2="984.5351"
2304
+ y2="96.396317" />
2305
+ <linearGradient
2306
+ inkscape:collect="always"
2307
+ xlink:href="#linearGradientBlackPieces"
2308
+ id="linearGradient15740"
2309
+ gradientUnits="userSpaceOnUse"
2310
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,800.91429,0.91429)"
2311
+ x1="667.0329"
2312
+ y1="299.32745"
2313
+ x2="739.15356"
2314
+ y2="348.42047" />
2315
+ <linearGradient
2316
+ inkscape:collect="always"
2317
+ xlink:href="#linearGradientBlackPiecesBorder"
2318
+ id="linearGradient15742"
2319
+ gradientUnits="userSpaceOnUse"
2320
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,1.4971928,0)"
2321
+ x1="949.18219"
2322
+ y1="72.811043"
2323
+ x2="972.39325"
2324
+ y2="72.811043" />
2325
+ <linearGradient
2326
+ inkscape:collect="always"
2327
+ xlink:href="#linearGradientBlackPieces"
2328
+ id="linearGradient15745"
2329
+ gradientUnits="userSpaceOnUse"
2330
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,800,0.91429)"
2331
+ x1="598.67926"
2332
+ y1="209.76059"
2333
+ x2="705.53198"
2334
+ y2="232.28799" />
2335
+ <linearGradient
2336
+ inkscape:collect="always"
2337
+ xlink:href="#linearGradientBlackPiecesBorder"
2338
+ id="linearGradient15747"
2339
+ gradientUnits="userSpaceOnUse"
2340
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,1.4971928,0)"
2341
+ x1="930.784"
2342
+ y1="51.229488"
2343
+ x2="961.56683"
2344
+ y2="51.229488" />
2345
+ <linearGradient
2346
+ inkscape:collect="always"
2347
+ xlink:href="#linearGradientBlackPieces"
2348
+ id="linearGradient15750"
2349
+ gradientUnits="userSpaceOnUse"
2350
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,800.91429,-0.45714)"
2351
+ x1="493.79175"
2352
+ y1="157.9061"
2353
+ x2="609.8985"
2354
+ y2="148.71771" />
2355
+ <linearGradient
2356
+ inkscape:collect="always"
2357
+ xlink:href="#linearGradientBlackPiecesBorder"
2358
+ id="linearGradient15752"
2359
+ gradientUnits="userSpaceOnUse"
2360
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,1.4971928,0)"
2361
+ x1="901.95465"
2362
+ y1="33.598358"
2363
+ x2="940.58276"
2364
+ y2="33.598358" />
2365
+ <linearGradient
2366
+ inkscape:collect="always"
2367
+ xlink:href="#linearGradientBlackPiecesBorder"
2368
+ id="linearGradient15755"
2369
+ gradientUnits="userSpaceOnUse"
2370
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,1.4971928,0)"
2371
+ x1="885.02087"
2372
+ y1="30.237432"
2373
+ x2="895.02954"
2374
+ y2="30.237432" />
2375
+ <linearGradient
2376
+ inkscape:collect="always"
2377
+ xlink:href="#linearGradientBlackPiecesBorder"
2378
+ id="linearGradient15758"
2379
+ gradientUnits="userSpaceOnUse"
2380
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,1.4971928,0)"
2381
+ x1="870.47833"
2382
+ y1="37.851395"
2383
+ x2="876.45825"
2384
+ y2="37.851395" />
2385
+ <linearGradient
2386
+ inkscape:collect="always"
2387
+ xlink:href="#linearGradientBlackPiecesBorder"
2388
+ id="linearGradient15761"
2389
+ gradientUnits="userSpaceOnUse"
2390
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,1.4971928,0)"
2391
+ x1="919.25244"
2392
+ y1="81.701927"
2393
+ x2="922.98303"
2394
+ y2="81.701927" />
2395
+ <linearGradient
2396
+ inkscape:collect="always"
2397
+ xlink:href="#linearGradientBlackPiecesBorder"
2398
+ id="linearGradient15764"
2399
+ gradientUnits="userSpaceOnUse"
2400
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,1.4971928,0)"
2401
+ x1="870.7326"
2402
+ y1="109.9657"
2403
+ x2="876.56927"
2404
+ y2="109.9657" />
2405
+ <linearGradient
2406
+ inkscape:collect="always"
2407
+ xlink:href="#linearGradientBlackPiecesBorder"
2408
+ id="linearGradient15767"
2409
+ gradientUnits="userSpaceOnUse"
2410
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,1.4971928,0)"
2411
+ x1="828.48737"
2412
+ y1="120.72367"
2413
+ x2="836.35858"
2414
+ y2="120.72367" />
2415
+ <linearGradient
2416
+ inkscape:collect="always"
2417
+ xlink:href="#linearGradientBlackPiecesBorder"
2418
+ id="linearGradient15770"
2419
+ gradientUnits="userSpaceOnUse"
2420
+ gradientTransform="matrix(0.98633187,-0.15300317,0.15300317,0.98633187,2.9194419,134.01125)"
2421
+ x1="866.44159"
2422
+ y1="74.656578"
2423
+ x2="876.04205"
2424
+ y2="74.656578" />
2425
+ <linearGradient
2426
+ inkscape:collect="always"
2427
+ xlink:href="#linearGradientBlackPiecesBorder"
2428
+ id="linearGradient15773"
2429
+ gradientUnits="userSpaceOnUse"
2430
+ gradientTransform="matrix(0.98633187,-0.15300317,0.15300317,0.98633187,2.9194419,134.01125)"
2431
+ x1="859.85815"
2432
+ y1="69.920006"
2433
+ x2="880.83844"
2434
+ y2="69.920006" />
2435
+ <linearGradient
2436
+ inkscape:collect="always"
2437
+ xlink:href="#linearGradientBlackPieces"
2438
+ id="linearGradient15776"
2439
+ gradientUnits="userSpaceOnUse"
2440
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,800,0.91429)"
2441
+ x1="58.222321"
2442
+ y1="511.39841"
2443
+ x2="775.05908"
2444
+ y2="762.62531" />
2445
+ <linearGradient
2446
+ inkscape:collect="always"
2447
+ xlink:href="#linearGradientBlackPiecesBorder"
2448
+ id="linearGradient15778"
2449
+ gradientUnits="userSpaceOnUse"
2450
+ gradientTransform="matrix(0.99812851,0,0,0.99812851,1.4971928,0)"
2451
+ x1="822.2392"
2452
+ y1="101.81162"
2453
+ x2="972.98853"
2454
+ y2="101.81162" />
2455
+ <linearGradient
2456
+ inkscape:collect="always"
2457
+ xlink:href="#linearGradientBlackPieces"
2458
+ id="linearGradient15781"
2459
+ gradientUnits="userSpaceOnUse"
2460
+ x1="368.66669"
2461
+ y1="673.33331"
2462
+ x2="460.38913"
2463
+ y2="707.0246" />
2464
+ <linearGradient
2465
+ inkscape:collect="always"
2466
+ xlink:href="#linearGradientBlackPiecesBorder"
2467
+ id="linearGradient15783"
2468
+ gradientUnits="userSpaceOnUse"
2469
+ x1="367.99088"
2470
+ y1="673.33331"
2471
+ x2="442.00919"
2472
+ y2="673.33331" />
2473
+ <linearGradient
2474
+ inkscape:collect="always"
2475
+ xlink:href="#linearGradientBlackPieces"
2476
+ id="linearGradient15785"
2477
+ gradientUnits="userSpaceOnUse"
2478
+ x1="331.08029"
2479
+ y1="435"
2480
+ x2="572.87866"
2481
+ y2="529.0235" />
2482
+ <linearGradient
2483
+ inkscape:collect="always"
2484
+ xlink:href="#linearGradientBlackPiecesBorder"
2485
+ id="linearGradient15787"
2486
+ gradientUnits="userSpaceOnUse"
2487
+ x1="296.55371"
2488
+ y1="435"
2489
+ x2="550.11298"
2490
+ y2="435" />
2491
+ <linearGradient
2492
+ inkscape:collect="always"
2493
+ xlink:href="#linearGradientBlackPieces"
2494
+ id="linearGradient15789"
2495
+ gradientUnits="userSpaceOnUse"
2496
+ x1="822.14368"
2497
+ y1="909.1908"
2498
+ x2="844.99213"
2499
+ y2="932.17261" />
2500
+ <linearGradient
2501
+ inkscape:collect="always"
2502
+ xlink:href="#linearGradientBlackPiecesBorder"
2503
+ id="linearGradient15791"
2504
+ gradientUnits="userSpaceOnUse"
2505
+ x1="770.83986"
2506
+ y1="915"
2507
+ x2="824.16014"
2508
+ y2="915" />
2509
+ <linearGradient
2510
+ inkscape:collect="always"
2511
+ xlink:href="#linearGradientBlackPieces"
2512
+ id="linearGradient15793"
2513
+ gradientUnits="userSpaceOnUse"
2514
+ x1="804.05585"
2515
+ y1="930.06891"
2516
+ x2="809.85663"
2517
+ y2="955.65509" />
2518
+ <linearGradient
2519
+ inkscape:collect="always"
2520
+ xlink:href="#linearGradientBlackPiecesBorder"
2521
+ id="linearGradient15795"
2522
+ gradientUnits="userSpaceOnUse"
2523
+ x1="770.95651"
2524
+ y1="915"
2525
+ x2="824.04349"
2526
+ y2="915" />
2527
+ <linearGradient
2528
+ inkscape:collect="always"
2529
+ xlink:href="#linearGradientBlackPieces"
2530
+ id="linearGradient15797"
2531
+ gradientUnits="userSpaceOnUse"
2532
+ x1="797.5"
2533
+ y1="931.98047"
2534
+ x2="797.5"
2535
+ y2="947.82898" />
2536
+ <linearGradient
2537
+ inkscape:collect="always"
2538
+ xlink:href="#linearGradientBlackPiecesBorder"
2539
+ id="linearGradient15799"
2540
+ gradientUnits="userSpaceOnUse"
2541
+ x1="771.72004"
2542
+ y1="915"
2543
+ x2="823.27996"
2544
+ y2="915" />
2545
+ <linearGradient
2546
+ inkscape:collect="always"
2547
+ xlink:href="#linearGradientBlackPieces"
2548
+ id="linearGradient15801"
2549
+ gradientUnits="userSpaceOnUse"
2550
+ x1="339.47086"
2551
+ y1="530.60559"
2552
+ x2="479.95377"
2553
+ y2="569.41608" />
2554
+ <linearGradient
2555
+ inkscape:collect="always"
2556
+ xlink:href="#linearGradientBlackPiecesBorder"
2557
+ id="linearGradient15803"
2558
+ gradientUnits="userSpaceOnUse"
2559
+ x1="339.47087"
2560
+ y1="530.60559"
2561
+ x2="450.13173"
2562
+ y2="530.60559" />
2563
+ <linearGradient
2564
+ inkscape:collect="always"
2565
+ xlink:href="#linearGradientBlackPieces"
2566
+ id="linearGradient15805"
2567
+ gradientUnits="userSpaceOnUse"
2568
+ x1="339.47086"
2569
+ y1="530.60559"
2570
+ x2="473.62973"
2571
+ y2="563.92206" />
2572
+ <linearGradient
2573
+ inkscape:collect="always"
2574
+ xlink:href="#linearGradientBlackPiecesBorder"
2575
+ id="linearGradient15807"
2576
+ gradientUnits="userSpaceOnUse"
2577
+ x1="339.47087"
2578
+ y1="530.60559"
2579
+ x2="450.13173"
2580
+ y2="530.60559" />
2581
+ <linearGradient
2582
+ inkscape:collect="always"
2583
+ xlink:href="#linearGradientBlackPieces"
2584
+ id="linearGradient15809"
2585
+ gradientUnits="userSpaceOnUse"
2586
+ x1="339.47086"
2587
+ y1="530.60559"
2588
+ x2="463.12936"
2589
+ y2="571.97302" />
2590
+ <linearGradient
2591
+ inkscape:collect="always"
2592
+ xlink:href="#linearGradientBlackPiecesBorder"
2593
+ id="linearGradient15811"
2594
+ gradientUnits="userSpaceOnUse"
2595
+ x1="339.47087"
2596
+ y1="530.60559"
2597
+ x2="450.13173"
2598
+ y2="530.60559" />
2599
+ <linearGradient
2600
+ inkscape:collect="always"
2601
+ xlink:href="#linearGradientBlackPieces"
2602
+ id="linearGradient15813"
2603
+ gradientUnits="userSpaceOnUse"
2604
+ x1="339.47086"
2605
+ y1="530.60559"
2606
+ x2="436.0773"
2607
+ y2="584.75751" />
2608
+ <linearGradient
2609
+ inkscape:collect="always"
2610
+ xlink:href="#linearGradientBlackPiecesBorder"
2611
+ id="linearGradient15815"
2612
+ gradientUnits="userSpaceOnUse"
2613
+ x1="339.47087"
2614
+ y1="530.60559"
2615
+ x2="450.13173"
2616
+ y2="530.60559" />
2617
+ <linearGradient
2618
+ inkscape:collect="always"
2619
+ xlink:href="#linearGradientBlackPieces"
2620
+ id="linearGradient15817"
2621
+ gradientUnits="userSpaceOnUse"
2622
+ x1="339.47086"
2623
+ y1="530.60559"
2624
+ x2="450.13174"
2625
+ y2="571.97302" />
2626
+ <linearGradient
2627
+ inkscape:collect="always"
2628
+ xlink:href="#linearGradientBlackPiecesBorder"
2629
+ id="linearGradient15819"
2630
+ gradientUnits="userSpaceOnUse"
2631
+ x1="339.47087"
2632
+ y1="530.60559"
2633
+ x2="450.13173"
2634
+ y2="530.60559" />
2635
+ </defs>
2636
+ <sodipodi:namedview
2637
+ id="base"
2638
+ pagecolor="#ffffff"
2639
+ bordercolor="#666666"
2640
+ borderopacity="1.0"
2641
+ gridtolerance="10000"
2642
+ guidetolerance="10"
2643
+ objecttolerance="10"
2644
+ inkscape:pageopacity="0.0"
2645
+ inkscape:pageshadow="2"
2646
+ inkscape:zoom="1.4142136"
2647
+ inkscape:cx="965.70925"
2648
+ inkscape:cy="213.82747"
2649
+ inkscape:document-units="px"
2650
+ inkscape:current-layer="WhitePieces"
2651
+ showgrid="false"
2652
+ inkscape:window-width="1920"
2653
+ inkscape:window-height="1018"
2654
+ inkscape:window-x="-3"
2655
+ inkscape:window-y="-4"
2656
+ showguides="false"
2657
+ inkscape:window-maximized="1">
2658
+ <inkscape:grid
2659
+ type="xygrid"
2660
+ id="grid5039" />
2661
+ </sodipodi:namedview>
2662
+ <metadata
2663
+ id="metadata2727">
2664
+ <rdf:RDF>
2665
+ <cc:Work
2666
+ rdf:about="">
2667
+ <dc:format>image/svg+xml</dc:format>
2668
+ <dc:type
2669
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
2670
+ <dc:title />
2671
+ </cc:Work>
2672
+ </rdf:RDF>
2673
+ </metadata>
2674
+ <g
2675
+ inkscape:label="BlackPieces"
2676
+ inkscape:groupmode="layer"
2677
+ id="BlackPieces">
2678
+ <g
2679
+ id="BlackKnight">
2680
+ <rect
2681
+ y="0"
2682
+ x="800"
2683
+ height="200"
2684
+ width="200"
2685
+ id="rect14709"
2686
+ style="fill:none;stroke:none" />
2687
+ <path
2688
+ inkscape:connector-curvature="0"
2689
+ sodipodi:nodetypes="csssssssccscsssscc"
2690
+ id="path14711"
2691
+ d="m 920.82051,91.84195 c 0.049,17.48391 -20.16603,32.60628 -40.10424,24.99054 -3.05344,-1.16631 -32.75468,25.95129 -37.19477,22.51417 -3.50284,-2.71159 3.8808,-13.88996 3.34401,-12.46223 -2.55582,6.79794 -13.83928,14.36437 -22.90058,4.59713 -3.54361,-3.81967 -2.216,-16.57043 7.18118,-23.75614 9.73123,-7.44115 16.02018,-25.67101 19.14441,-33.9496 6.28395,-16.65129 3.81839,-17.015 15.8609,-32.11561 2.26233,-2.83684 -3.67739,-13.85043 -1.51858,-21.03944 8.52749,1.52073 11.81478,10.09428 15.7361,13.69223 2.28585,-5.2918 0.74991,-19.51109 4.81348,-18.84851 4.06357,0.66257 8.73775,12.98093 15.4412,18.39137 80.28857,24.70762 79.63225,153.18942 57.19346,153.60568 -27.69634,0.51379 -60.85496,0.39751 -88.70968,-0.0463 -6.74913,-0.10754 -9.87345,-8.83917 -8.57203,-14.05723 6.20686,-24.88641 32.41901,-42.30551 45.25898,-50.93791 13.18793,-8.86633 15.60252,-17.57942 15.02616,-30.57817 z"
2692
+ style="fill:url(#linearGradient15776);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15778);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2693
+ <path
2694
+ inkscape:connector-curvature="0"
2695
+ sodipodi:nodetypes="cs"
2696
+ id="path14713"
2697
+ d="m 880.21604,65.94855 c -6.75466,-0.19322 -12.21666,2.60708 -16.23762,8.0773"
2698
+ style="fill:none;stroke:url(#linearGradient15773);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2699
+ <path
2700
+ inkscape:connector-curvature="0"
2701
+ sodipodi:nodetypes="cs"
2702
+ id="path14715"
2703
+ d="m 870.7407,74.75167 c 2.73159,2.03747 5.74913,1.67201 5.61021,-2.48862"
2704
+ style="fill:none;stroke:url(#linearGradient15770);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2705
+ <path
2706
+ inkscape:connector-curvature="0"
2707
+ sodipodi:nodetypes="cs"
2708
+ id="path14717"
2709
+ d="m 834.46197,118.46619 c -3.1668,-1.09378 -5.45786,4.00845 -3.4373,4.21661"
2710
+ style="fill:none;stroke:url(#linearGradient15767);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2711
+ <path
2712
+ inkscape:connector-curvature="0"
2713
+ sodipodi:nodetypes="cc"
2714
+ id="path14719"
2715
+ d="m 872.42883,108.41242 2.16857,2.69497"
2716
+ style="fill:none;stroke:url(#linearGradient15764);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2717
+ <path
2718
+ inkscape:connector-curvature="0"
2719
+ sodipodi:nodetypes="cc"
2720
+ id="path14721"
2721
+ d="m 920.85784,84.39679 0.0665,-5.69552"
2722
+ style="fill:none;stroke:url(#linearGradient15761);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2723
+ <path
2724
+ inkscape:connector-curvature="0"
2725
+ sodipodi:nodetypes="cs"
2726
+ id="path14723"
2727
+ d="m 874.48657,37.17701 -2.31158,1.20709"
2728
+ style="fill:none;stroke:url(#linearGradient15758);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2729
+ <path
2730
+ inkscape:connector-curvature="0"
2731
+ sodipodi:nodetypes="cs"
2732
+ id="path14725"
2733
+ d="m 886.69032,24.88539 c 6.89193,9.62746 9.38036,11.57494 1.18547,10.1936"
2734
+ style="fill:none;stroke:url(#linearGradient15755);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2735
+ <path
2736
+ inkscape:connector-curvature="0"
2737
+ sodipodi:nodetypes="cssss"
2738
+ id="path14727"
2739
+ d="m 903.87285,29.97164 c 19.78804,5.80204 16.45047,1.61424 20.62382,8.41048 2.33812,3.80761 5.57796,-1.29778 13.29052,-0.81481 4.16519,0.26083 -11.42877,-6.22198 -13.46256,-8.81433 -2.8235,-3.59896 -23.35496,0.36742 -20.45178,1.21866 z"
2740
+ style="fill:url(#linearGradient15750);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15752);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2741
+ <path
2742
+ inkscape:connector-curvature="0"
2743
+ sodipodi:nodetypes="csssss"
2744
+ id="path14729"
2745
+ d="m 932.46887,45.65085 c 6.21536,4.72518 10.76795,-0.0742 10.52243,8.12477 -0.16858,5.62961 7.42995,1.8683 11.12002,4.21661 3.39955,2.16343 6.80931,-6.56348 4.64701,-6.56348 -3.25317,0 -8.77717,1.52621 -7.77769,-2.14735 2.19387,-8.06354 -20.29693,-4.9877 -18.51177,-3.63055 z"
2746
+ style="fill:url(#linearGradient15745);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15747);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2747
+ <path
2748
+ inkscape:connector-curvature="0"
2749
+ sodipodi:nodetypes="csssss"
2750
+ id="path14731"
2751
+ d="m 950.75005,63.47787 c 1.20981,0.42324 7.79901,4.8845 7.49392,7.00599 -1.57365,10.94237 6.49501,10.23309 9.96743,11.38982 4.86586,1.62091 -0.22674,-4.18829 -2.68195,-7.17506 -2.45521,-2.98676 1.67773,-4.32408 1.38837,-6.21855 -1.01786,-6.66421 -16.79938,-5.22317 -16.16777,-5.0022 z"
2752
+ style="fill:url(#linearGradient15740);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15742);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2753
+ <path
2754
+ inkscape:connector-curvature="0"
2755
+ sodipodi:nodetypes="csssss"
2756
+ id="path14733"
2757
+ d="m 962.3748,86.54793 c 1.15613,2.01595 3.867,4.29922 4.72632,7.46168 0.85933,3.16246 1.18283,5.98193 2.90148,9.37864 1.71865,3.39671 8.63367,2.95394 11.61554,1.95703 4.0178,-1.34325 -9.71342,-5.51474 -6.61953,-11.87464 1.9582,-4.02531 -13.24774,-8.01066 -12.62381,-6.92271 z"
2758
+ style="fill:url(#linearGradient15735);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15737);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2759
+ <path
2760
+ inkscape:connector-curvature="0"
2761
+ id="path14735"
2762
+ d="m 900.1479,166.74312 -5.89252,14.05538"
2763
+ style="fill:none;stroke:url(#linearGradient15732);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2764
+ <path
2765
+ style="fill:url(#linearGradient15727);fill-opacity:1;stroke:url(#linearGradient15729);stroke-width:3.65714288;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2766
+ d="m 903.76482,127.08285 c 20.46274,0.67006 43.40859,0.40112 64.17841,-6.3017 7.34028,-2.36885 5.14467,5.9227 -0.26791,6.15977 -47.76912,13.0376 -97.24962,4.0943 -111.91307,-4.39714 3.57818,0.49536 5.56646,8.97506 4.38923,11.75551 -1.70649,4.03046 -4.24913,3.19022 -4.91849,-1.66797 -0.69139,-5.01798 -1.36764,-10.83586 -6.06511,-14.22084 -4.76858,-3.43622 -7.75628,-5.37513 -12.20901,-9.63808 -3.88102,-3.71561 -8.36262,-3.44372 -5.4749,-7.95648 4.80102,-2.87446 17.87493,12.31305 22.95111,16.13705 12.30945,5.48275 32.08199,9.5651 49.32974,10.12988 z"
2767
+ id="path14737"
2768
+ inkscape:connector-curvature="0"
2769
+ sodipodi:nodetypes="ssccssssccs" />
2770
+ <path
2771
+ style="fill:url(#linearGradient15722);fill-opacity:1;stroke:url(#linearGradient15724);stroke-width:3.65714288;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2772
+ d="m 853.71179,114.59855 c -4.08727,0.0993 -6.86835,2.99333 -4.97811,7.21502 2.02871,4.53093 7.89366,2.58984 9.46969,-0.10336 2.12175,-3.62578 0.20935,-7.22589 -4.49158,-7.11166 z"
2773
+ id="path14739"
2774
+ inkscape:connector-curvature="0"
2775
+ sodipodi:nodetypes="ssss" />
2776
+ </g>
2777
+ <g
2778
+ id="BlackPawn">
2779
+ <rect
2780
+ style="fill:none;stroke:none"
2781
+ id="rect14451"
2782
+ width="200"
2783
+ height="200"
2784
+ x="1000"
2785
+ y="0" />
2786
+ <path
2787
+ style="fill:url(#linearGradient15672);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15674);stroke-width:3.65714287999999987;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2788
+ d="M 1099.25 92.75 C 1088.5405 92.75 1079.8438 103.01337 1079.8438 115.6875 C 1079.8438 124.00489 1083.5903 131.28762 1089.1875 135.3125 C 1085.7079 160.58519 1068.9143 153.06495 1060.5625 158.96875 C 1052.7472 164.49335 1048.6613 183.88382 1059.0312 184.5625 C 1065.457 184.98305 1132.1753 185.26378 1138.8125 184.53125 C 1150.5567 183.23515 1147.0791 163.02381 1139.5 158.3125 C 1128.8373 151.68434 1112.5951 161.66299 1108.6875 135.71875 C 1114.6098 131.7909 1118.625 124.29323 1118.625 115.6875 C 1118.625 103.01337 1109.9595 92.75 1099.25 92.75 z "
2789
+ id="path14453" />
2790
+ <path
2791
+ style="fill:url(#linearGradient15666);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15668);stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2792
+ d="m 1081.5541,92.81195 c -22.7723,4.05282 -24.2153,18.60609 -24.2153,18.60609 20.4738,-0.36153 34.7728,7.77429 55.295,4.76036 23.2878,-3.42011 21.0371,-9.19037 29.88,-16.57337 -16.0551,-7.99444 -36.7627,-11.09944 -60.9597,-6.79308 z"
2793
+ id="path14457"
2794
+ sodipodi:nodetypes="scscs"
2795
+ inkscape:connector-curvature="0" />
2796
+ <path
2797
+ style="fill:url(#linearGradient15656);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15658);stroke-width:3.65714264;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2798
+ d="m 1095.162,77.46381 c -17.6378,-0.0934 -18.9427,19.83488 -19.6878,22.48467 14.0396,-0.68991 30.8797,6.35566 45.9319,-1.7902 1.2902,-11.00692 -2.0379,-17.87775 -5.7945,-20.59067 -4.6991,-3.39362 -11.1316,-0.0544 -20.4496,-0.1038 z"
2799
+ id="path14461"
2800
+ sodipodi:nodetypes="cccss"
2801
+ inkscape:connector-curvature="0" />
2802
+ <path
2803
+ sodipodi:nodetypes="cccscc"
2804
+ id="path14463"
2805
+ d="m 1100.2941,153.7531 c 7.2098,8.65556 12.3667,21.23448 13.7071,34.21434 8.836,0.89021 24.641,0.3882 33.422,0.4642 0.8831,-7.88027 2.456,-29.08669 -9.8008,-33.02905 -12.985,-4.17661 -13.9095,-5.85507 -20.8668,-11.82995 -4.5142,4.66077 -12.8619,8.52942 -16.4615,10.18046 z"
2806
+ style="fill:url(#linearGradient15651);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15653);stroke-width:3.65714216;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2807
+ inkscape:connector-curvature="0" />
2808
+ <path
2809
+ style="fill:url(#linearGradient15636);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15638);stroke-width:3.65714216;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2810
+ d="m 1097.0106,153.99726 c -7.2097,8.65556 -13.2809,21.69164 -14.6213,34.6715 -8.836,0.89021 -24.1077,0.0834 -32.8887,0.15944 -3.1688,-5.59455 -1.9135,-28.07259 10.1817,-33.18144 12.367,-5.22362 14.5953,-5.6265 21.9336,-11.60138 3.3713,3.89886 11.7952,8.30085 15.3947,9.95188 z"
2811
+ id="path14469"
2812
+ sodipodi:nodetypes="cccscc"
2813
+ inkscape:connector-curvature="0" />
2814
+ <path
2815
+ sodipodi:type="arc"
2816
+ style="opacity:0.98999999;fill:url(#linearGradient15781);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15783);stroke-width:17.35164642;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2817
+ id="path14471"
2818
+ sodipodi:cx="405.00003"
2819
+ sodipodi:cy="673.33331"
2820
+ sodipodi:rx="28.333334"
2821
+ sodipodi:ry="25.000002"
2822
+ d="m 433.33336,673.33331 a 28.333334,25.000002 0 1 1 -56.66666,0 28.333334,25.000002 0 1 1 56.66666,0 z"
2823
+ transform="matrix(0.21114126,0,0,0.210392,1013.1685,12.2294)" />
2824
+ </g>
2825
+ <g
2826
+ id="BlackBishop">
2827
+ <rect
2828
+ y="-8.7714143e-06"
2829
+ x="600"
2830
+ height="200.00002"
2831
+ width="200.00002"
2832
+ id="rect3532"
2833
+ style="fill:none;stroke:none" />
2834
+ <path
2835
+ sodipodi:nodetypes="ccsss"
2836
+ id="path9790"
2837
+ d="m 699.63576,49.570115 c 2.47308,-4.17302 8.95019,-11.540435 15.62922,-15.371943 8.28185,7.784208 19.57487,25.913335 25.16109,43.334027 4.3538,13.57739 5.25671,19.678129 5.48338,34.182521 0.22668,14.50438 -7.40135,28.79221 -12.08341,34.07785"
2838
+ style="fill:url(#linearGradient15589);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15591);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2839
+ inkscape:connector-curvature="0" />
2840
+ <path
2841
+ sodipodi:nodetypes="cccscc"
2842
+ id="path9792"
2843
+ d="m 729.25016,157.04188 c 1.38027,-12.22151 -67.22774,-11.31942 -64.42223,0.6871 2.26677,5.00281 0.47896,11.4366 0.47896,11.4366 0,0 15.83487,-2.24695 33.45899,-1.96695 17.62412,0.28002 29.55199,1.6774 29.55199,1.6774 0,0 -0.44798,-8.23262 0.93229,-11.83415 z"
2844
+ style="fill:url(#linearGradient15584);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15586);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2845
+ inkscape:connector-curvature="0" />
2846
+ <path
2847
+ sodipodi:nodetypes="csscscc"
2848
+ id="path9786"
2849
+ d="m 663.87068,155.95066 c -5.20925,-1.84795 -9.00165,-9.24249 -12.28799,-13.95878 -5.24562,-7.52812 -8.33831,-23.18378 -5.26619,-40.73935 3.07213,-17.555567 19.76846,-51.478735 36.86548,-66.52637 20.83702,15.047635 34.27476,37.797126 44.87973,68.11034 5.67522,16.22203 8.49209,33.97462 3.28283,52.58617 -12.15493,-2.50794 -53.31428,-4.88687 -67.47386,0.52799 z"
2850
+ style="fill:url(#linearGradient15579);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15581);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2851
+ inkscape:connector-curvature="0" />
2852
+ <path
2853
+ sodipodi:nodetypes="csss"
2854
+ id="path12426"
2855
+ d="m 680.09809,31.707124 c 2.85251,-4.844739 -4.50992,-7.935602 -0.65876,-11.31926 2.16269,-1.900157 5.86256,-2.090257 7.93989,0.374469 2.99515,3.553696 -5.19882,6.63662 -1.16731,10.897601"
2856
+ style="fill:url(#linearGradient15574);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15576);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2857
+ inkscape:connector-curvature="0" />
2858
+ <path
2859
+ sodipodi:nodetypes="cssss"
2860
+ id="path13305"
2861
+ d="m 699.74397,162.82256 c -2.17892,-0.58828 -4.13767,0.44725 -4.93659,-0.21476 -0.98036,-0.81235 -0.92296,-4.19213 -0.2739,-5.05008 0.55496,-0.73356 7.68718,-0.82513 8.38705,-0.14934 0.65242,0.62893 -0.0189,4.7234 -0.62337,5.75943"
2862
+ style="fill:none;stroke:url(#linearGradient15571);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2863
+ inkscape:connector-curvature="0" />
2864
+ <path
2865
+ id="path18555"
2866
+ d="m 687.15715,79.671424 c -2.61208,0.414251 -3.91212,3.278245 -3.58511,5.707013 -0.045,2.076336 0.86451,4.751529 -0.84347,6.378701 -2.31052,0.768723 -4.81096,-0.193961 -7.16527,-0.395208 -1.93832,-0.1771 -4.27577,-0.909831 -5.99901,0.338066 -1.31897,1.562455 0.22173,3.923461 1.92143,4.45 3.41781,1.486779 7.47558,0.711268 10.76429,2.471429 1.13526,1.047316 0.9031,2.871425 1.25,4.264285 1.06913,8.29763 1.01265,16.82705 3.52142,24.86429 0.65668,1.76462 1.68241,4.21295 3.87857,4.22857 1.69536,-0.58013 1.48132,-2.83199 1.57143,-4.28571 -0.20534,-9.11358 -2.73457,-17.99682 -3.13571,-27.09286 -0.0451,-0.895481 0.035,-2.019286 1.19286,-2.114289 4.10561,-1.181656 8.90265,0.132752 12.63571,-2.364286 1.53308,-0.830759 2.81271,-3.93038 0.32857,-4.335715 -4.37871,-0.644439 -8.80472,1.242763 -13.15714,0.421429 -1.3474,-0.477036 -1.2294,-2.342197 -1.38572,-3.514286 -0.25509,-2.761218 0.58401,-5.700293 -0.46428,-8.335715 -0.26287,-0.459659 -0.79112,-0.752151 -1.32857,-0.685714 z"
2867
+ style="fill:url(#linearGradient15566);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15568);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2868
+ inkscape:connector-curvature="0" />
2869
+ <path
2870
+ sodipodi:nodetypes="csssssssss"
2871
+ id="path5000"
2872
+ d="m 672.65542,183.60888 c 12.75959,-0.14292 18.9024,-7.40146 24.55023,-7.41003 5.64784,-0.009 10.8007,7.2328 24.53757,7.25691 7.37046,0.0129 46.17117,0.78733 44.01473,-5.09378 -2.15638,-5.88111 -26.66058,2.01679 -34.86539,-2.16602 -4.29474,-2.18945 -5.55472,-2.70835 -11.11038,-3.55005 -14.98719,-2.27064 -30.31065,-2.18012 -43.86266,-0.0859 -6.03322,0.93234 -8.48726,1.97054 -11.88523,4.25765 -5.71575,3.84714 -29.79279,-4.15201 -31.68783,1.46771 -1.89502,5.61974 24.8043,5.49712 40.30896,5.32346 z"
2873
+ style="fill:url(#linearGradient15561);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15563);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2874
+ inkscape:connector-curvature="0" />
2875
+ <path
2876
+ id="path5875"
2877
+ d="m 745.30001,20.835706 c -4.70532,0.0451 -8.21547,3.906819 -10.16705,7.832047 -1.29109,2.492668 -3.56778,4.307326 -4.83295,6.796526 -0.26622,1.499325 1.87191,1.987869 3,1.664285 2.75386,-0.582731 4.93531,-2.759885 5.86528,-5.376478 1.10356,-2.694302 3.59551,-4.813961 6.54901,-5.009236 2.90063,-0.509955 5.58003,1.770158 6.16428,4.542857 0.84429,2.906627 0.46231,6.332846 -1.87858,8.442858 -3.65372,3.832471 -9.19591,5.547494 -12.27142,9.992857 -16.87919,33.309355 -33.73271,66.640308 -50.38525,100.064468 -5.91165,12.12292 -12.15817,24.10908 -17.33618,36.56412 -0.40285,1.55401 -1.61197,3.27714 -0.96429,4.89285 1.02162,0.79382 2.30836,-0.43381 3.19286,-0.97143 3.64051,-3.32308 5.65874,-8.01742 8.07143,-12.25 10.16578,-19.72331 19.69309,-39.77213 29.58769,-59.63428 10.74342,-21.690553 21.48757,-43.388078 32.46231,-64.958584 3.10474,-4.595265 8.99767,-6.134712 12.47878,-10.379435 2.21678,-2.433147 3.63519,-5.654388 3.27837,-8.991995 -0.22871,-5.553797 -3.44458,-11.564379 -9.19286,-12.885715 -1.17966,-0.298962 -2.40003,-0.390238 -3.62143,-0.335715 z"
2878
+ style="fill:url(#linearGradient15556);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15558);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2879
+ inkscape:connector-curvature="0" />
2880
+ <path
2881
+ style="fill:url(#linearGradient15551);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15553);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2882
+ d="m 711.93732,30.817396 c 2.8525,-4.844738 -4.50993,-7.935603 -0.65878,-11.31926 2.16269,-1.900156 5.86257,-2.090256 7.9399,0.37447 2.99515,3.553695 -5.19883,6.636618 -1.16731,10.897599"
2883
+ id="path3155"
2884
+ sodipodi:nodetypes="csss"
2885
+ inkscape:connector-curvature="0" />
2886
+ </g>
2887
+ <g
2888
+ id="BlackKing">
2889
+ <rect
2890
+ y="-8.7714143e-06"
2891
+ x="0"
2892
+ height="200.00002"
2893
+ width="200"
2894
+ id="rect5257"
2895
+ style="fill:none;stroke:none" />
2896
+ <path
2897
+ sodipodi:nodetypes="csssc"
2898
+ id="path3299"
2899
+ d="m 65.973661,139.99661 c 5.301121,-7.65948 -1.61168,-28.76318 0.0042,-38.41182 2.622423,-15.658995 23.197554,-26.169234 25.943908,-17.090675 3.257851,10.769371 -9.968434,11.785943 -13.648343,20.775695 -3.380091,8.25732 -2.65696,22.05308 3.923681,30.35652"
2900
+ style="fill:url(#linearGradient15545);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15547);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2901
+ inkscape:connector-curvature="0" />
2902
+ <path
2903
+ style="fill:url(#linearGradient15540);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15542);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2904
+ d="m 134.1464,141.10081 c -5.30112,-7.65947 1.61167,-28.76317 -0.004,-38.41181 -2.62245,-15.658977 -23.19758,-26.169229 -25.94393,-17.09068 -3.25785,10.769372 9.96844,11.785944 13.64834,20.77573 3.38009,8.2573 2.65699,22.05307 -3.92368,30.3565"
2905
+ id="path3303"
2906
+ sodipodi:nodetypes="csssc"
2907
+ inkscape:connector-curvature="0" />
2908
+ <path
2909
+ sodipodi:nodetypes="cccccccccccc"
2910
+ id="path24710"
2911
+ d="m 91.706667,65.854911 c 1.201738,-3.428681 4.320983,-16.211443 3.180846,-19.977313 -5.10032,-0.403604 -15.756639,4.27477 -22.663337,2.776012 -1.945257,-3.51675 -3.159817,-11.084184 -0.365554,-15.238216 6.252639,-1.902638 20.052731,1.432798 23.867154,1.9439 1.352229,-3.852085 -3.312983,-15.459995 -2.409234,-19.663205 4.285829,-2.048761 14.929028,-1.846206 18.092208,0.23633 -0.1611,4.414548 -6.60458,15.137098 -6.76098,18.803167 4.29349,-0.220128 17.6671,-3.857177 22.23266,-2.968901 1.96944,3.819529 2.39676,10.643422 -0.78042,15.00476 -4.86738,1.621319 -17.75428,-2.041109 -23.1237,-0.976014 -2.26279,4.563872 1.25507,16.348118 2.12059,19.795516"
2912
+ style="fill:url(#linearGradient15535);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15537);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2913
+ inkscape:connector-curvature="0" />
2914
+ <path
2915
+ sodipodi:nodetypes="csss"
2916
+ id="path3297"
2917
+ d="M 93.350804,84.990183 C 87.697045,80.094571 85.205913,80.053909 86.30333,67.8002 c 0.937143,-10.464289 24.28729,-9.924343 24.83067,-0.45506 0.68136,11.873589 -3.26639,12.76278 -6.01133,18.511809"
2918
+ style="fill:url(#linearGradient15530);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15532);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2919
+ inkscape:connector-curvature="0" />
2920
+ <path
2921
+ sodipodi:nodetypes="ccccc"
2922
+ id="path25586"
2923
+ d="M 61.93411,189.78267 47.311207,144.92716 155.02166,144.45455 137.90395,191.15732 61.93411,189.78267 z"
2924
+ style="fill:url(#linearGradient15527);fill-opacity:1;fill-rule:evenodd;stroke:none"
2925
+ inkscape:connector-curvature="0" />
2926
+ <path
2927
+ style="fill:url(#linearGradient15522);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15524);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2928
+ d="m 147.07567,163.91069 c -21.41174,-10.9747 -70.203183,-11.49032 -93.167044,0.42869 3.216853,10.16521 4.503609,21.47961 4.503609,21.47961 20.952382,-6.50601 63.513955,-6.76563 84.085385,0.94693 0,0 2.12105,-15.24106 4.57805,-22.85523 z"
2929
+ id="path5264"
2930
+ sodipodi:nodetypes="ccccc"
2931
+ inkscape:connector-curvature="0" />
2932
+ <path
2933
+ sodipodi:nodetypes="cccsccscsccssccsc"
2934
+ id="path23833"
2935
+ d="m 126.52143,131.20714 c -8.28366,-3.50016 -17.5324,-13.44604 -27.880719,-13.765 -9.959906,0.23071 -17.955641,8.81458 -23.633568,13.35072 -26.348092,-11.99245 -26.033255,-34.946631 -7.6,-39.157149 3.002269,-0.685779 11.938672,0.10596 17.842857,-0.164287 -1.880069,-5.192135 -3.929534,-8.874 -1.985714,-15.785715 -4.16645,-2.681577 -9.711511,-4.604432 -16.028572,-4.978571 -1.886107,-0.111708 -3.801403,-0.159355 -5.721428,-0.135714 -18.560243,0.228527 -37.817434,6.979632 -40.55,24.057143 -3.988286,24.925303 18.078258,39.614913 26.021429,65.978573 25.213151,-14.37905 83.351925,-13.46346 107.507145,-1.03571 6.41093,-20.37991 31.9659,-44.19671 26.25,-64.971434 -5.29335,-19.238892 -31.02682,-24.868876 -48.00715,-23.907144 -6.88197,0.38978 -13.48859,2.617669 -18.45,5.678571 0.96046,5.479119 -0.98626,9.958726 -2.59999,14.692859 7.85031,0.0034 21.62321,-1.822129 27.02857,1.235714 11.93817,6.753486 12.84843,31.062084 -12.19286,38.907144 z"
2936
+ style="fill:url(#linearGradient15517);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15519);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2937
+ inkscape:connector-curvature="0" />
2938
+ <path
2939
+ style="fill:url(#linearGradient15512);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15514);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2940
+ d="m 75.082965,130.86356 c 8.684594,-6.09788 12.799611,-18.20826 12.452319,-27.9851 -0.500777,-14.097396 -8.041005,-16.554654 -3.734857,-28.894655 2.919886,-8.367415 27.237323,-8.79747 29.983703,0.281084 3.25783,10.769363 -5.10677,17.474094 -3.8029,28.376131 1.521,12.71774 1.61532,21.14791 16.52448,28.93081"
2941
+ id="path2408"
2942
+ sodipodi:nodetypes="cssssc"
2943
+ inkscape:connector-curvature="0" />
2944
+ <path
2945
+ sodipodi:nodetypes="ccc"
2946
+ id="path8563"
2947
+ d="m 63.015198,190.32635 c 20.083219,2.39646 52.162572,2.78987 74.826582,0.53929 -15.67932,-6.39544 -58.641204,-6.32588 -74.826582,-0.53929 z"
2948
+ style="fill:url(#linearGradient15507);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15509);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2949
+ inkscape:connector-curvature="0" />
2950
+ <path
2951
+ transform="matrix(0.22084302,0,0,0.22084299,-76.302058,-33.60625)"
2952
+ d="m 815,915 a 17.5,16.666666 0 1 1 -35,0 17.5,16.666666 0 1 1 35,0 z"
2953
+ sodipodi:ry="16.666666"
2954
+ sodipodi:rx="17.5"
2955
+ sodipodi:cy="915"
2956
+ sodipodi:cx="797.5"
2957
+ id="path21809"
2958
+ style="fill:url(#linearGradient15797);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15799);stroke-width:16.55992508;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2959
+ sodipodi:type="arc" />
2960
+ <path
2961
+ transform="matrix(0.24288439,-0.0439872,0.02951635,0.16298103,-143.5593,57.039743)"
2962
+ sodipodi:type="arc"
2963
+ style="fill:url(#linearGradient15793);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15795);stroke-width:18.08697128;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2964
+ id="path21811"
2965
+ sodipodi:cx="797.5"
2966
+ sodipodi:cy="915"
2967
+ sodipodi:rx="17.5"
2968
+ sodipodi:ry="16.666666"
2969
+ d="m 815,915 a 17.5,16.666666 0 1 1 -35,0 17.5,16.666666 0 1 1 35,0 z" />
2970
+ <path
2971
+ d="m 815,915 a 17.5,16.666666 0 1 1 -35,0 17.5,16.666666 0 1 1 35,0 z"
2972
+ sodipodi:ry="16.666666"
2973
+ sodipodi:rx="17.5"
2974
+ sodipodi:cy="915"
2975
+ sodipodi:cx="797.5"
2976
+ id="path21815"
2977
+ style="fill:url(#linearGradient15789);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15791);stroke-width:18.32027817;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2978
+ sodipodi:type="arc"
2979
+ transform="matrix(0.23748182,0.03854011,-0.02653303,0.16349303,-43.120388,-9.2446104)" />
2980
+ </g>
2981
+ <g
2982
+ id="BlackQueen">
2983
+ <rect
2984
+ y="-1.9125002e-07"
2985
+ x="200"
2986
+ height="200"
2987
+ width="200"
2988
+ id="rect5420"
2989
+ style="fill:none;stroke:none" />
2990
+ <path
2991
+ sodipodi:nodetypes="ccccc"
2992
+ id="path5422"
2993
+ d="m 255.7566,188.54634 -11.51501,-37.99134 99.14697,0.30124 -11.31854,38.78422 -76.31342,-1.09412 z"
2994
+ style="fill:url(#linearGradient15500);fill-opacity:1;fill-rule:evenodd;stroke:none"
2995
+ inkscape:connector-curvature="0" />
2996
+ <path
2997
+ sodipodi:nodetypes="ccccc"
2998
+ id="path5424"
2999
+ d="m 340.04874,163.72108 c -27.93136,-9.98142 -64.77863,-10.03939 -91.97573,-0.0238 2.87639,6.9782 3.63842,21.2567 3.63842,21.2567 23.02155,-6.4396 62.16105,-6.24382 85.00231,0.95725 0,0 0.52796,-15.24721 3.335,-22.19017 z"
3000
+ style="fill:url(#linearGradient15495);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15497);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3001
+ inkscape:connector-curvature="0" />
3002
+ <path
3003
+ sodipodi:nodetypes="cccccccccccc"
3004
+ id="path28221"
3005
+ d="m 244.59516,159.52352 c 27.85155,-12.04272 71.44711,-12.23302 99.56053,0.0937 2.7717,-24.0083 11.50797,-53.64495 28.04178,-74.902734 -12.53664,4.905644 -30.73811,36.311554 -41.32007,42.230354 -8.29808,-17.4316 8.12443,-62.675195 14.50944,-72.258029 -10.71977,6.450011 -33.40524,46.403659 -40.10731,65.093699 -9.66079,-21.587315 -7.39948,-61.961528 -7.63058,-78.881893 -7.26764,15.897915 -16.80412,52.42813 -17.78025,78.243313 -18.55827,-13.91178 -25.1076,-51.490537 -30.05734,-66.378457 -2.72535,21.439477 2.03068,58.782217 5.17107,73.880327 -12.06681,-8.13546 -26.15763,-26.03872 -37.85397,-41.212562 14.8707,35.559682 20.25328,46.329812 27.4667,74.092222 z"
3006
+ style="fill:url(#linearGradient15490);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15492);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3007
+ inkscape:connector-curvature="0" />
3008
+ <path
3009
+ sodipodi:nodetypes="ccscscscs"
3010
+ id="path7672"
3011
+ d="m 293.20307,159.95009 c -4.34242,-0.0223 -1.96238,3.3453 -2.81575,4.82632 -1.95143,1.13118 -8.28466,-0.87581 -6.24601,3.27771 1.4443,2.94263 3.60368,1.5574 6.02905,2.50551 1.20576,1.66093 -0.83269,6.71218 3.43692,6.6062 3.52628,-0.0875 1.60418,-5.12706 2.3579,-6.48491 2.1317,-1.39293 4.92849,0.49481 6.33928,-3.07474 1.07104,-2.70994 -4.23143,-1.70479 -6.32528,-2.87179 -0.87707,-1.31001 1.74188,-4.76063 -2.77611,-4.7843 z"
3012
+ style="fill:url(#linearGradient15485);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15487);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3013
+ inkscape:connector-curvature="0" />
3014
+ <path
3015
+ sodipodi:nodetypes="ccc"
3016
+ id="path5428"
3017
+ d="m 255.90247,188.63381 c 20.30223,2.42259 53.19352,3.28242 76.10467,1.00729 -12.92995,-5.77856 -59.40347,-5.7297 -76.10467,-1.00729 z"
3018
+ style="fill:url(#linearGradient15480);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15482);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3019
+ inkscape:connector-curvature="0" />
3020
+ <path
3021
+ sodipodi:nodetypes="cccc"
3022
+ id="path1323"
3023
+ d="m 308.48458,18.861369 c -1.95657,0.04289 -7.98708,1.055847 -11.61107,2.863445 -1.09938,2.768007 -0.52829,10.881355 0.0301,17.517505 3.47071,-5.570278 11.13967,-15.143592 11.58093,-20.38095 z"
3024
+ style="fill:url(#linearGradient15475);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15477);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3025
+ inkscape:connector-curvature="0" />
3026
+ <path
3027
+ transform="matrix(0.19518313,0,0,0.19518313,219.9395,-62.058583)"
3028
+ d="m 440.76324,530.60559 a 45.961941,44.783428 0 1 1 -91.92388,0 45.961941,44.783428 0 1 1 91.92388,0 z"
3029
+ sodipodi:ry="44.783428"
3030
+ sodipodi:rx="45.961941"
3031
+ sodipodi:cy="530.60559"
3032
+ sodipodi:cx="394.8013"
3033
+ id="path29102"
3034
+ style="fill:url(#linearGradient15817);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15819);stroke-width:18.73698616;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3035
+ sodipodi:type="arc" />
3036
+ <path
3037
+ style="fill:url(#linearGradient15469);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15471);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3038
+ d="m 363.40624,47.086749 c -1.0783,-1.292098 -0.39089,-3.657122 -9.14369,-8.469503 l -11.16706,13.949298 c 6.26539,-1.954215 16.17474,-4.905131 20.31075,-5.479795 z"
3039
+ id="path2211"
3040
+ sodipodi:nodetypes="cccc"
3041
+ inkscape:connector-curvature="0" />
3042
+ <path
3043
+ sodipodi:type="arc"
3044
+ style="fill:url(#linearGradient15813);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15815);stroke-width:18.73698616;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3045
+ id="path2203"
3046
+ sodipodi:cx="394.8013"
3047
+ sodipodi:cy="530.60559"
3048
+ sodipodi:rx="45.961941"
3049
+ sodipodi:ry="44.783428"
3050
+ d="m 440.76324,530.60559 a 45.961941,44.783428 0 1 1 -91.92388,0 45.961941,44.783428 0 1 1 91.92388,0 z"
3051
+ transform="matrix(0.19518313,0,0,0.19518313,267.48235,-48.344298)" />
3052
+ <path
3053
+ sodipodi:nodetypes="cccc"
3054
+ id="path2213"
3055
+ d="m 393.27089,80.432313 c 0.61126,-3.160512 -2.78183,-4.175618 -6.03682,-8.531246 -4.53406,1.856475 -9.78677,4.070773 -13.48712,9.262115 9.34106,-1.926412 13.58725,0.927561 19.52394,-0.730869 z"
3056
+ style="fill:url(#linearGradient15463);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15465);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3057
+ inkscape:connector-curvature="0" />
3058
+ <path
3059
+ transform="matrix(0.19518313,0,0,0.19518313,295.50864,-19.599749)"
3060
+ d="m 440.76324,530.60559 a 45.961941,44.783428 0 1 1 -91.92388,0 45.961941,44.783428 0 1 1 91.92388,0 z"
3061
+ sodipodi:ry="44.783428"
3062
+ sodipodi:rx="45.961941"
3063
+ sodipodi:cy="530.60559"
3064
+ sodipodi:cx="394.8013"
3065
+ id="path2205"
3066
+ style="fill:url(#linearGradient15809);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15811);stroke-width:18.73698616;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3067
+ sodipodi:type="arc" />
3068
+ <path
3069
+ style="fill:url(#linearGradient15457);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15459);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3070
+ d="m 251.79887,35.318512 c -2.41372,-2.699971 -5.23276,-2.312505 -11.59959,-3.247765 0.2223,7.708942 4.82388,9.859582 7.56151,15.857287 3.47071,-5.570279 2.9111,-5.772164 4.03808,-12.609522 z"
3071
+ id="path2215"
3072
+ sodipodi:nodetypes="cccc"
3073
+ inkscape:connector-curvature="0" />
3074
+ <path
3075
+ sodipodi:type="arc"
3076
+ style="fill:url(#linearGradient15805);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15807);stroke-width:18.73698616;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3077
+ id="path2207"
3078
+ sodipodi:cx="394.8013"
3079
+ sodipodi:cy="530.60559"
3080
+ sodipodi:rx="45.961941"
3081
+ sodipodi:ry="44.783428"
3082
+ d="m 440.76324,530.60559 a 45.961941,44.783428 0 1 1 -91.92388,0 45.961941,44.783428 0 1 1 91.92388,0 z"
3083
+ transform="matrix(0.19518313,0,0,0.19518313,171.71088,-50.172869)" />
3084
+ <path
3085
+ sodipodi:nodetypes="cccc"
3086
+ id="path2217"
3087
+ d="m 211.48865,66.235947 c -3.0736,0.639985 -3.33367,6.928343 -4.29815,10.154396 3.44153,3.793177 6.94093,5.954215 9.94755,11.821691 3.21471,-5.721856 -2.0022,-17.58522 -5.6494,-21.976087 z"
3088
+ style="fill:url(#linearGradient15451);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15453);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3089
+ inkscape:connector-curvature="0" />
3090
+ <path
3091
+ transform="matrix(0.19518313,0,0,0.19518313,143.06101,-15.753258)"
3092
+ d="m 440.76324,530.60559 a 45.961941,44.783428 0 1 1 -91.92388,0 45.961941,44.783428 0 1 1 91.92388,0 z"
3093
+ sodipodi:ry="44.783428"
3094
+ sodipodi:rx="45.961941"
3095
+ sodipodi:cy="530.60559"
3096
+ sodipodi:cx="394.8013"
3097
+ id="path2209"
3098
+ style="fill:url(#linearGradient15801);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15803);stroke-width:18.73698616;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3099
+ sodipodi:type="arc" />
3100
+ </g>
3101
+ <g
3102
+ id="BlackRook">
3103
+ <rect
3104
+ y="-1.9125002e-07"
3105
+ x="400"
3106
+ height="200"
3107
+ width="200"
3108
+ id="rect5557"
3109
+ style="fill:none;stroke:none" />
3110
+ <path
3111
+ sodipodi:nodetypes="ccccccccccc"
3112
+ id="path5877"
3113
+ d="m 445.78352,73.909629 c 0,0 0.74294,-26.795976 4.03537,-35.704134 6.87967,-1.485205 20.42276,-2.185836 28.83567,-0.958005 0.0941,5.449697 -1.24165,16.911936 -0.36368,22.15203 7.64469,-0.362183 23.13148,0.566139 32.98671,-0.541993 0.2195,-6.392917 -1.66181,-15.444709 0.2039,-22.571239 6.25561,-0.470065 20.39748,-0.967262 26.98233,1.862388 -0.87797,9.11776 0.12858,21.652599 0.12858,21.652599 l 17.26446,0.597419 -2.57076,13.714369 c -21.55516,8.079339 -94.01815,6.879755 -107.50258,-0.203434 z"
3114
+ style="fill:url(#linearGradient15444);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15446);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3115
+ inkscape:connector-curvature="0" />
3116
+ <path
3117
+ sodipodi:nodetypes="cccccc"
3118
+ id="path30874"
3119
+ d="m 457.30676,160.56585 c -5.48294,5.47516 -16.9404,10.98428 -25.1102,12.71378 -1.18486,3.91126 -2.35068,8.4338 0.0549,13.29682 29.11926,0.2639 106.00895,-0.0742 133.83217,-0.17069 1.50133,-5.42439 2.63666,-9.34807 1.1353,-13.61155 -8.56656,-1.69588 -18.91267,-4.25676 -26.57123,-12.22767"
3120
+ style="fill:url(#linearGradient15439);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15441);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3121
+ inkscape:connector-curvature="0" />
3122
+ <path
3123
+ style="fill:none;stroke:url(#linearGradient15436);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3124
+ d="m 445.26656,175.6852 c 34.16186,0.0166 71.23736,-1.26013 107.77421,0.13268"
3125
+ id="path28104"
3126
+ sodipodi:nodetypes="cc"
3127
+ inkscape:connector-curvature="0" />
3128
+ <path
3129
+ sodipodi:nodetypes="cccc"
3130
+ id="path29124"
3131
+ d="m 457.76994,71.056158 c -0.86145,10.251586 -1.10949,81.665672 -0.8726,90.172142 12.61195,-1.06648 71.22563,-1.13348 84.15137,-0.12963 -0.7319,-16.00677 -0.5294,-89.817639 -0.5294,-89.817639"
3132
+ style="fill:url(#linearGradient15431);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15433);stroke-width:3.6571424;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3133
+ inkscape:connector-curvature="0" />
3134
+ <path
3135
+ sodipodi:nodetypes="cs"
3136
+ id="path34378"
3137
+ d="m 466.60128,145.10477 c 9.11731,-0.67214 28.2216,-1.42914 49.24302,-0.75316"
3138
+ style="fill:none;stroke:url(#linearGradient15428);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3139
+ inkscape:connector-curvature="0" />
3140
+ <path
3141
+ style="fill:none;stroke:url(#linearGradient15425);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3142
+ d="m 466.29087,130.31945 c 11.60061,-1.1168 22.82244,-1.48459 39.15458,-1.31463"
3143
+ id="path2302"
3144
+ sodipodi:nodetypes="cs"
3145
+ inkscape:connector-curvature="0" />
3146
+ <path
3147
+ style="fill:none;stroke:url(#linearGradient15422);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3148
+ d="m 466.41321,115.4173 c 16.51853,-1.14223 16.98386,-1.02096 34.86095,-1.27874"
3149
+ id="path2304"
3150
+ sodipodi:nodetypes="cs"
3151
+ inkscape:connector-curvature="0" />
3152
+ <path
3153
+ sodipodi:nodetypes="cs"
3154
+ id="path2306"
3155
+ d="m 466.41321,100.8027 c 8.38523,-0.69331 13.31611,-1.053493 23.35091,-0.811573"
3156
+ style="fill:none;stroke:url(#linearGradient15419);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3157
+ inkscape:connector-curvature="0" />
3158
+ <path
3159
+ style="fill:none;stroke:url(#linearGradient15416);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3160
+ d="m 476.51678,104.61814 c 0.20091,6.8416 -0.0402,-0.30543 0.16073,5.61156"
3161
+ id="path28065"
3162
+ sodipodi:nodetypes="cs"
3163
+ inkscape:connector-curvature="0" />
3164
+ <path
3165
+ sodipodi:nodetypes="cs"
3166
+ id="path2309"
3167
+ d="m 489.24373,119.14294 c 0.20091,6.84159 -0.0402,-0.30544 0.16073,5.61157"
3168
+ style="fill:none;stroke:url(#linearGradient15413);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3169
+ inkscape:connector-curvature="0" />
3170
+ <path
3171
+ style="fill:none;stroke:url(#linearGradient15410);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3172
+ d="m 476.51678,133.83509 c 0.20091,6.84158 -0.0402,-0.30544 0.16073,5.61154"
3173
+ id="path2311"
3174
+ sodipodi:nodetypes="cs"
3175
+ inkscape:connector-curvature="0" />
3176
+ <path
3177
+ sodipodi:nodetypes="cs"
3178
+ id="path2313"
3179
+ d="m 503.21234,133.37132 c 0.2009,6.84159 -0.0402,0.15833 0.16073,6.07531"
3180
+ style="fill:none;stroke:url(#linearGradient15407);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3181
+ inkscape:connector-curvature="0" />
3182
+ <path
3183
+ style="fill:none;stroke:url(#linearGradient15404);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3184
+ d="m 489.24373,149.08181 c 0.20091,6.84158 -0.0402,0.15832 0.16073,6.0753"
3185
+ id="path2315"
3186
+ sodipodi:nodetypes="cs"
3187
+ inkscape:connector-curvature="0" />
3188
+ <path
3189
+ style="fill:none;stroke:url(#linearGradient15401);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3190
+ d="m 466.70147,87.589543 c 6.36738,-0.693308 9.61192,-0.915861 15.03448,-0.811584"
3191
+ id="path5035"
3192
+ sodipodi:nodetypes="cs"
3193
+ inkscape:connector-curvature="0" />
3194
+ <path
3195
+ sodipodi:nodetypes="ccccccccccccccc"
3196
+ id="path29999"
3197
+ d="m 430.11375,36.863589 c 1.17855,6.450932 2.0691,12.57112 3.2111,21.837835 7.33191,5.112121 11.43607,6.897506 12.22117,15.464228 22.0234,-3.968271 88.44983,-3.053457 108.42368,-0.08037 1.39189,-7.721737 3.6692,-9.04106 14.42942,-15.52219 1.35941,-10.139883 2.55301,-15.028594 2.62996,-21.091168 -3.22448,-0.784064 -26.3927,-7.722038 -29.25458,-6.725392 -1.01791,6.03259 0.42138,11.21536 -0.91776,16.888691 -8.67267,0.43472 -16.39895,0.104555 -25.37453,-2.231486 0.0446,-7.583552 0.0334,-11.742521 0.40606,-17.611874 -3.79049,-1.349987 -26.3333,-1.589964 -30.58647,-0.197854 -0.73305,7.309339 0.19362,11.291138 -0.39386,17.789961 -7.69911,2.177811 -15.00049,1.612908 -24.19151,2.129139 -0.7405,-7.726821 0.62683,-10.438154 0.45301,-15.861982 -3.79211,-1.036796 -27.47526,4.111421 -31.05569,5.212462 z"
3198
+ style="fill:url(#linearGradient15396);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15398);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3199
+ inkscape:connector-curvature="0" />
3200
+ <path
3201
+ sodipodi:nodetypes="cc"
3202
+ id="path27172"
3203
+ d="m 443.14063,59.942256 c 33.97809,-3.359008 84.23139,-3.567879 113.39331,0.810011"
3204
+ style="fill:none;stroke:url(#linearGradient15393);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3205
+ inkscape:connector-curvature="0" />
3206
+ </g>
3207
+ </g>
3208
+ <g
3209
+ inkscape:groupmode="layer"
3210
+ id="WhitePieces"
3211
+ inkscape:label="WhitePieces">
3212
+ <g
3213
+ id="WhiteBishop">
3214
+ <rect
3215
+ style="fill:none;stroke:none"
3216
+ id="rect7539"
3217
+ width="200.00002"
3218
+ height="200.00002"
3219
+ x="600"
3220
+ y="199.99998" />
3221
+ <path
3222
+ style="fill:url(#linearGradient15347);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15349);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3223
+ d="m 699.63576,249.57011 c 2.47308,-4.17302 8.95019,-11.54043 15.62922,-15.37194 8.28185,7.78421 19.57487,25.91334 25.16109,43.33403 4.3538,13.57739 5.25671,19.67813 5.48338,34.18251 0.22668,14.50439 -7.40135,28.79222 -12.08341,34.07786"
3224
+ id="path7541"
3225
+ sodipodi:nodetypes="ccsss"
3226
+ inkscape:connector-curvature="0" />
3227
+ <path
3228
+ style="fill:url(#linearGradient15342);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15344);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3229
+ d="m 729.25016,357.04188 c 1.38027,-12.22151 -67.22774,-11.31942 -64.42223,0.6871 2.26677,5.00281 0.47896,11.4366 0.47896,11.4366 0,0 15.83487,-2.24695 33.45899,-1.96695 17.62412,0.28002 29.55199,1.67739 29.55199,1.67739 0,0 -0.44798,-8.23261 0.93229,-11.83414 z"
3230
+ id="path7543"
3231
+ sodipodi:nodetypes="cccscc"
3232
+ inkscape:connector-curvature="0" />
3233
+ <path
3234
+ style="fill:url(#linearGradient15337);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15339);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3235
+ d="m 663.87068,355.95066 c -5.20925,-1.84795 -9.00165,-9.2425 -12.28799,-13.95879 -5.24562,-7.52811 -8.33831,-23.18377 -5.26619,-40.73934 3.07213,-17.55557 19.76846,-51.47874 36.86548,-66.52637 20.83702,15.04763 34.27476,37.79712 44.87973,68.11034 5.67522,16.22203 8.49209,33.97462 3.28283,52.58617 -12.15493,-2.50794 -53.31428,-4.88687 -67.47386,0.52799 z"
3236
+ id="path7545"
3237
+ sodipodi:nodetypes="csscscc"
3238
+ inkscape:connector-curvature="0" />
3239
+ <path
3240
+ style="fill:url(#linearGradient15332);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15334);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3241
+ d="m 680.09809,231.70712 c 2.85251,-4.84474 -4.50992,-7.9356 -0.65876,-11.31926 2.16269,-1.90015 5.86256,-2.09025 7.93989,0.37447 2.99515,3.5537 -5.19882,6.63662 -1.16731,10.8976"
3242
+ id="path7547"
3243
+ sodipodi:nodetypes="csss"
3244
+ inkscape:connector-curvature="0" />
3245
+ <path
3246
+ style="fill:none;stroke:url(#linearGradient15329);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3247
+ d="m 699.74397,362.82256 c -2.17892,-0.58828 -4.13767,0.44725 -4.93659,-0.21477 -0.98036,-0.81234 -0.92296,-4.19212 -0.2739,-5.05007 0.55496,-0.73356 7.68718,-0.82513 8.38705,-0.14934 0.65242,0.62893 -0.0189,4.7234 -0.62337,5.75943"
3248
+ id="path7549"
3249
+ sodipodi:nodetypes="cssss"
3250
+ inkscape:connector-curvature="0" />
3251
+ <path
3252
+ style="fill:url(#linearGradient15324);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15326);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3253
+ d="m 687.15715,279.67142 c -2.61208,0.41425 -3.91212,3.27825 -3.58511,5.70702 -0.045,2.07633 0.86451,4.75152 -0.84347,6.3787 -2.31052,0.76872 -4.81096,-0.19396 -7.16527,-0.39521 -1.93832,-0.1771 -4.27577,-0.90983 -5.99901,0.33806 -1.31897,1.56246 0.22173,3.92347 1.92143,4.45 3.41781,1.48678 7.47558,0.71127 10.76429,2.47143 1.13526,1.04732 0.9031,2.87143 1.25,4.26429 1.06913,8.29763 1.01265,16.82704 3.52142,24.86428 0.65668,1.76463 1.68241,4.21296 3.87857,4.22858 1.69536,-0.58013 1.48132,-2.83199 1.57143,-4.28572 -0.20534,-9.11357 -2.73457,-17.99681 -3.13571,-27.09286 -0.0451,-0.89547 0.035,-2.01928 1.19286,-2.11428 4.10561,-1.18166 8.90265,0.13275 12.63571,-2.36429 1.53308,-0.83076 2.81271,-3.93038 0.32857,-4.33571 -4.37871,-0.64444 -8.80472,1.24276 -13.15714,0.42143 -1.3474,-0.47704 -1.2294,-2.3422 -1.38572,-3.51429 -0.25509,-2.76122 0.58401,-5.70029 -0.46428,-8.33571 -0.26287,-0.45966 -0.79112,-0.75215 -1.32857,-0.68572 z"
3254
+ id="path7551"
3255
+ inkscape:connector-curvature="0" />
3256
+ <path
3257
+ style="fill:url(#linearGradient15319);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15321);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3258
+ d="m 672.65542,383.60888 c 12.75959,-0.14292 18.9024,-7.40146 24.55023,-7.41003 5.64784,-0.009 10.8007,7.2328 24.53757,7.25691 7.37046,0.0129 46.17117,0.78733 44.01473,-5.09378 -2.15638,-5.88111 -26.66058,2.01679 -34.86539,-2.16602 -4.29474,-2.18945 -5.55472,-2.70835 -11.11038,-3.55005 -14.98719,-2.27064 -30.31065,-2.18013 -43.86266,-0.0859 -6.03322,0.93234 -8.48726,1.97054 -11.88523,4.25764 -5.71575,3.84715 -29.79279,-4.152 -31.68783,1.46772 -1.89502,5.61974 24.8043,5.49712 40.30896,5.32346 z"
3259
+ id="path7553"
3260
+ sodipodi:nodetypes="csssssssss"
3261
+ inkscape:connector-curvature="0" />
3262
+ <path
3263
+ style="fill:url(#linearGradient15314);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15316);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3264
+ d="m 745.30001,220.83571 c -4.70532,0.0451 -8.21547,3.90681 -10.16705,7.83204 -1.29109,2.49267 -3.56778,4.30733 -4.83295,6.79653 -0.26622,1.49932 1.87191,1.98787 3,1.66428 2.75386,-0.58273 4.93531,-2.75988 5.86528,-5.37647 1.10356,-2.69431 3.59551,-4.81397 6.54901,-5.00924 2.90063,-0.50996 5.58003,1.77016 6.16428,4.54286 0.84429,2.90662 0.46231,6.33284 -1.87858,8.44285 -3.65372,3.83247 -9.19591,5.5475 -12.27142,9.99286 -16.87919,33.30936 -33.73271,66.64031 -50.38525,100.06447 -5.91165,12.12292 -12.15817,24.10908 -17.33618,36.56411 -0.40285,1.55401 -1.61197,3.27714 -0.96429,4.89285 1.02162,0.79383 2.30836,-0.4338 3.19286,-0.97142 3.64051,-3.32308 5.65874,-8.01742 8.07143,-12.25 10.16578,-19.72331 19.69309,-39.77213 29.58769,-59.63428 10.74342,-21.69055 21.48757,-43.38808 32.46231,-64.95859 3.10474,-4.59526 8.99767,-6.13471 12.47878,-10.37943 2.21678,-2.43315 3.63519,-5.65439 3.27837,-8.992 -0.22871,-5.55379 -3.44458,-11.56437 -9.19286,-12.88571 -1.17966,-0.29896 -2.40003,-0.39024 -3.62143,-0.33571 z"
3265
+ id="path7555"
3266
+ inkscape:connector-curvature="0" />
3267
+ <path
3268
+ sodipodi:nodetypes="csss"
3269
+ id="path7557"
3270
+ d="m 711.93732,230.8174 c 2.8525,-4.84474 -4.50993,-7.93561 -0.65878,-11.31927 2.16269,-1.90015 5.86257,-2.09025 7.9399,0.37448 2.99515,3.55369 -5.19883,6.63661 -1.16731,10.89759"
3271
+ style="fill:url(#linearGradient15309);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15311);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3272
+ inkscape:connector-curvature="0" />
3273
+ </g>
3274
+ <g
3275
+ id="WhiteRook">
3276
+ <rect
3277
+ style="fill:none;stroke:none"
3278
+ id="rect7623"
3279
+ width="200"
3280
+ height="200"
3281
+ x="400"
3282
+ y="200" />
3283
+ <path
3284
+ style="fill:url(#linearGradient15015);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15017);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3285
+ d="m 445.78352,273.90963 c 0,0 0.74294,-26.79598 4.03537,-35.70414 6.87967,-1.4852 20.42276,-2.18583 28.83567,-0.958 0.0941,5.4497 -1.24165,16.91194 -0.36368,22.15203 7.64469,-0.36218 23.13148,0.56614 32.98671,-0.54199 0.2195,-6.39292 -1.66181,-15.44471 0.2039,-22.57124 6.25561,-0.47007 20.39748,-0.96726 26.98233,1.86239 -0.87797,9.11776 0.12858,21.6526 0.12858,21.6526 l 17.26446,0.59741 -2.57076,13.71437 c -21.55516,8.07934 -94.01815,6.87976 -107.50258,-0.20343 z"
3286
+ id="path7625"
3287
+ sodipodi:nodetypes="ccccccccccc"
3288
+ inkscape:connector-curvature="0" />
3289
+ <path
3290
+ style="fill:url(#linearGradient15010);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15012);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3291
+ d="m 457.30676,360.56585 c -5.48294,5.47516 -16.9404,10.98428 -25.1102,12.71378 -1.18486,3.91126 -2.35068,8.4338 0.0549,13.29682 29.11926,0.2639 106.00895,-0.0742 133.83217,-0.17069 1.50133,-5.42439 2.63666,-9.34807 1.1353,-13.61155 -8.56656,-1.69588 -18.91267,-4.25676 -26.57123,-12.22767"
3292
+ id="path7627"
3293
+ sodipodi:nodetypes="cccccc"
3294
+ inkscape:connector-curvature="0" />
3295
+ <path
3296
+ sodipodi:nodetypes="cc"
3297
+ id="path7629"
3298
+ d="m 445.26656,375.6852 c 34.16186,0.0166 71.23736,-1.26013 107.77421,0.13268"
3299
+ style="fill:none;stroke:url(#linearGradient15007);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3300
+ inkscape:connector-curvature="0" />
3301
+ <path
3302
+ style="fill:url(#linearGradient15002);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15004);stroke-width:3.6571424;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3303
+ d="m 457.76994,271.05616 c -0.86145,10.25158 -1.10949,81.66567 -0.8726,90.17214 12.61195,-1.06648 71.22563,-1.13348 84.15137,-0.12963 -0.7319,-16.00677 -0.5294,-89.81764 -0.5294,-89.81764"
3304
+ id="path7631"
3305
+ sodipodi:nodetypes="cccc"
3306
+ inkscape:connector-curvature="0" />
3307
+ <path
3308
+ style="fill:none;stroke:url(#linearGradient14999);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3309
+ d="m 466.60128,345.10477 c 9.11731,-0.67214 28.2216,-1.42914 49.24302,-0.75316"
3310
+ id="path7633"
3311
+ sodipodi:nodetypes="cs"
3312
+ inkscape:connector-curvature="0" />
3313
+ <path
3314
+ sodipodi:nodetypes="cs"
3315
+ id="path7635"
3316
+ d="m 466.29087,330.31945 c 11.60061,-1.11679 22.82244,-1.48459 39.15458,-1.31463"
3317
+ style="fill:none;stroke:url(#linearGradient14996);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3318
+ inkscape:connector-curvature="0" />
3319
+ <path
3320
+ sodipodi:nodetypes="cs"
3321
+ id="path7637"
3322
+ d="m 466.41321,315.4173 c 16.51853,-1.14223 16.98386,-1.02096 34.86095,-1.27874"
3323
+ style="fill:none;stroke:url(#linearGradient14993);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3324
+ inkscape:connector-curvature="0" />
3325
+ <path
3326
+ style="fill:none;stroke:url(#linearGradient14990);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3327
+ d="m 466.41321,300.80271 c 8.38523,-0.69332 13.31611,-1.0535 23.35091,-0.81158"
3328
+ id="path7639"
3329
+ sodipodi:nodetypes="cs"
3330
+ inkscape:connector-curvature="0" />
3331
+ <path
3332
+ sodipodi:nodetypes="cs"
3333
+ id="path7641"
3334
+ d="m 476.51678,304.61814 c 0.20091,6.8416 -0.0402,-0.30543 0.16073,5.61156"
3335
+ style="fill:none;stroke:url(#linearGradient14987);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3336
+ inkscape:connector-curvature="0" />
3337
+ <path
3338
+ style="fill:none;stroke:url(#linearGradient14984);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3339
+ d="m 489.24373,319.14294 c 0.20091,6.84159 -0.0402,-0.30544 0.16073,5.61157"
3340
+ id="path7643"
3341
+ sodipodi:nodetypes="cs"
3342
+ inkscape:connector-curvature="0" />
3343
+ <path
3344
+ sodipodi:nodetypes="cs"
3345
+ id="path7645"
3346
+ d="m 476.51678,333.83509 c 0.20091,6.84158 -0.0402,-0.30544 0.16073,5.61154"
3347
+ style="fill:none;stroke:url(#linearGradient14981);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3348
+ inkscape:connector-curvature="0" />
3349
+ <path
3350
+ style="fill:none;stroke:url(#linearGradient14978);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3351
+ d="m 503.21234,333.37132 c 0.2009,6.84159 -0.0402,0.15833 0.16073,6.07531"
3352
+ id="path7647"
3353
+ sodipodi:nodetypes="cs"
3354
+ inkscape:connector-curvature="0" />
3355
+ <path
3356
+ sodipodi:nodetypes="cs"
3357
+ id="path7649"
3358
+ d="m 489.24373,349.08181 c 0.20091,6.84158 -0.0402,0.15832 0.16073,6.0753"
3359
+ style="fill:none;stroke:url(#linearGradient14975);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3360
+ inkscape:connector-curvature="0" />
3361
+ <path
3362
+ sodipodi:nodetypes="cs"
3363
+ id="path7651"
3364
+ d="m 466.70147,287.58954 c 6.36738,-0.6933 9.61192,-0.91586 15.03448,-0.81158"
3365
+ style="fill:none;stroke:url(#linearGradient14972);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3366
+ inkscape:connector-curvature="0" />
3367
+ <path
3368
+ style="fill:url(#linearGradient14967);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient14969);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3369
+ d="m 430.11375,236.86359 c 1.17855,6.45093 2.0691,12.57112 3.2111,21.83783 7.33191,5.11213 11.43607,6.89751 12.22117,15.46423 22.0234,-3.96827 88.44983,-3.05346 108.42368,-0.0804 1.39189,-7.72173 3.6692,-9.04106 14.42942,-15.52219 1.35941,-10.13988 2.55301,-15.02859 2.62996,-21.09116 -3.22448,-0.78407 -26.3927,-7.72204 -29.25458,-6.7254 -1.01791,6.03259 0.42138,11.21536 -0.91776,16.88869 -8.67267,0.43472 -16.39895,0.10456 -25.37453,-2.23148 0.0446,-7.58355 0.0334,-11.74252 0.40606,-17.61188 -3.79049,-1.34998 -26.3333,-1.58996 -30.58647,-0.19785 -0.73305,7.30934 0.19362,11.29114 -0.39386,17.78996 -7.69911,2.17781 -15.00049,1.61291 -24.19151,2.12914 -0.7405,-7.72682 0.62683,-10.43815 0.45301,-15.86198 -3.79211,-1.0368 -27.47526,4.11142 -31.05569,5.21246 z"
3370
+ id="path7653"
3371
+ sodipodi:nodetypes="ccccccccccccccc"
3372
+ inkscape:connector-curvature="0" />
3373
+ <path
3374
+ style="fill:none;stroke:url(#linearGradient14964);stroke-width:3.6571424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3375
+ d="m 443.14063,259.94226 c 33.97809,-3.35901 84.23139,-3.56788 113.39331,0.81001"
3376
+ id="path7655"
3377
+ sodipodi:nodetypes="cc"
3378
+ inkscape:connector-curvature="0" />
3379
+ </g>
3380
+ <g
3381
+ id="WhiteQueen">
3382
+ <rect
3383
+ style="fill:none;stroke:none"
3384
+ id="rect7589"
3385
+ width="200"
3386
+ height="200"
3387
+ x="200"
3388
+ y="200" />
3389
+ <path
3390
+ style="fill:url(#linearGradient15071);fill-opacity:1;fill-rule:evenodd;stroke:none"
3391
+ d="m 255.7566,388.54634 -11.51501,-37.99134 99.14697,0.30124 -11.31854,38.78422 -76.31342,-1.09412 z"
3392
+ id="path7591"
3393
+ sodipodi:nodetypes="ccccc"
3394
+ inkscape:connector-curvature="0" />
3395
+ <path
3396
+ style="fill:url(#linearGradient15066);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15068);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3397
+ d="m 340.04874,363.72108 c -27.93136,-9.98142 -64.77863,-10.03939 -91.97573,-0.0237 2.87639,6.9782 3.63842,21.2567 3.63842,21.2567 23.02155,-6.4396 62.16105,-6.24382 85.00231,0.95725 0,0 0.52796,-15.2472 3.335,-22.19017 z"
3398
+ id="path7593"
3399
+ sodipodi:nodetypes="ccccc"
3400
+ inkscape:connector-curvature="0" />
3401
+ <path
3402
+ style="fill:url(#linearGradient15061);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15063);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3403
+ d="m 244.59516,359.52352 c 27.85155,-12.04272 71.44711,-12.23302 99.56053,0.0937 2.7717,-24.0083 11.50797,-53.64495 28.04178,-74.90273 -12.53664,4.90564 -30.73811,36.31155 -41.32007,42.23035 -8.29808,-17.4316 8.12443,-62.67519 14.50944,-72.25803 -10.71977,6.45001 -33.40524,46.40366 -40.10731,65.0937 -9.66079,-21.58732 -7.39948,-61.96153 -7.63058,-78.88189 -7.26764,15.89791 -16.80412,52.42813 -17.78025,78.24331 -18.55827,-13.91178 -25.1076,-51.49054 -30.05734,-66.37846 -2.72535,21.43948 2.03068,58.78222 5.17107,73.88033 -12.06681,-8.13546 -26.15763,-26.03872 -37.85397,-41.21256 14.8707,35.55968 20.25328,46.32981 27.4667,74.09222 z"
3404
+ id="path7595"
3405
+ sodipodi:nodetypes="cccccccccccc"
3406
+ inkscape:connector-curvature="0" />
3407
+ <path
3408
+ style="fill:url(#linearGradient15056);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15058);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3409
+ d="m 293.20307,359.95009 c -4.34242,-0.0224 -1.96238,3.3453 -2.81575,4.82632 -1.95143,1.13118 -8.28466,-0.87581 -6.24601,3.27771 1.4443,2.94263 3.60368,1.5574 6.02905,2.50551 1.20576,1.66093 -0.83269,6.71218 3.43692,6.6062 3.52628,-0.0875 1.60418,-5.12706 2.3579,-6.48491 2.1317,-1.39292 4.92849,0.49481 6.33928,-3.07474 1.07104,-2.70994 -4.23143,-1.70478 -6.32528,-2.87179 -0.87707,-1.31001 1.74188,-4.76063 -2.77611,-4.7843 z"
3410
+ id="path7597"
3411
+ sodipodi:nodetypes="ccscscscs"
3412
+ inkscape:connector-curvature="0" />
3413
+ <path
3414
+ style="fill:url(#linearGradient15051);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15053);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3415
+ d="m 255.90247,388.63381 c 20.30223,2.42259 53.19352,3.28242 76.10467,1.00729 -12.92995,-5.77856 -59.40347,-5.7297 -76.10467,-1.00729 z"
3416
+ id="path7599"
3417
+ sodipodi:nodetypes="ccc"
3418
+ inkscape:connector-curvature="0" />
3419
+ <path
3420
+ style="fill:url(#linearGradient15046);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15048);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3421
+ d="m 308.48458,218.86137 c -1.95657,0.0429 -7.98708,1.05585 -11.61107,2.86344 -1.09938,2.76801 -0.52829,10.88136 0.0301,17.51751 3.47071,-5.57028 11.13967,-15.14359 11.58093,-20.38095 z"
3422
+ id="path7601"
3423
+ sodipodi:nodetypes="cccc"
3424
+ inkscape:connector-curvature="0" />
3425
+ <path
3426
+ sodipodi:type="arc"
3427
+ style="fill:url(#linearGradient15388);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15390);stroke-width:18.73698616;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3428
+ id="path7603"
3429
+ sodipodi:cx="394.8013"
3430
+ sodipodi:cy="530.60559"
3431
+ sodipodi:rx="45.961941"
3432
+ sodipodi:ry="44.783428"
3433
+ d="m 440.76324,530.60559 a 45.961941,44.783428 0 1 1 -91.92388,0 45.961941,44.783428 0 1 1 91.92388,0 z"
3434
+ transform="matrix(0.19518313,0,0,0.19518313,219.9395,137.94142)" />
3435
+ <path
3436
+ sodipodi:nodetypes="cccc"
3437
+ id="path7605"
3438
+ d="m 363.40624,247.08675 c -1.0783,-1.2921 -0.39089,-3.65712 -9.14369,-8.4695 l -11.16706,13.94929 c 6.26539,-1.95421 16.17474,-4.90513 20.31075,-5.47979 z"
3439
+ style="fill:url(#linearGradient15040);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15042);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3440
+ inkscape:connector-curvature="0" />
3441
+ <path
3442
+ transform="matrix(0.19518313,0,0,0.19518313,267.48235,151.6557)"
3443
+ d="m 440.76324,530.60559 a 45.961941,44.783428 0 1 1 -91.92388,0 45.961941,44.783428 0 1 1 91.92388,0 z"
3444
+ sodipodi:ry="44.783428"
3445
+ sodipodi:rx="45.961941"
3446
+ sodipodi:cy="530.60559"
3447
+ sodipodi:cx="394.8013"
3448
+ id="path7607"
3449
+ style="fill:url(#linearGradient15384);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15386);stroke-width:18.73698616;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3450
+ sodipodi:type="arc" />
3451
+ <path
3452
+ style="fill:url(#linearGradient15034);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15036);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3453
+ d="m 393.27089,280.43231 c 0.61126,-3.16051 -2.78183,-4.17562 -6.03682,-8.53124 -4.53406,1.85647 -9.78677,4.07077 -13.48712,9.26211 9.34106,-1.92641 13.58725,0.92756 19.52394,-0.73087 z"
3454
+ id="path7609"
3455
+ sodipodi:nodetypes="cccc"
3456
+ inkscape:connector-curvature="0" />
3457
+ <path
3458
+ sodipodi:type="arc"
3459
+ style="fill:url(#linearGradient15380);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15382);stroke-width:18.73698616;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3460
+ id="path7611"
3461
+ sodipodi:cx="394.8013"
3462
+ sodipodi:cy="530.60559"
3463
+ sodipodi:rx="45.961941"
3464
+ sodipodi:ry="44.783428"
3465
+ d="m 440.76324,530.60559 a 45.961941,44.783428 0 1 1 -91.92388,0 45.961941,44.783428 0 1 1 91.92388,0 z"
3466
+ transform="matrix(0.19518313,0,0,0.19518313,295.50864,180.40025)" />
3467
+ <path
3468
+ sodipodi:nodetypes="cccc"
3469
+ id="path7613"
3470
+ d="m 251.79887,235.31851 c -2.41372,-2.69997 -5.23276,-2.3125 -11.59959,-3.24776 0.2223,7.70894 4.82388,9.85958 7.56151,15.85728 3.47071,-5.57027 2.9111,-5.77216 4.03808,-12.60952 z"
3471
+ style="fill:url(#linearGradient15028);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15030);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3472
+ inkscape:connector-curvature="0" />
3473
+ <path
3474
+ transform="matrix(0.19518313,0,0,0.19518313,171.71088,149.82713)"
3475
+ d="m 440.76324,530.60559 a 45.961941,44.783428 0 1 1 -91.92388,0 45.961941,44.783428 0 1 1 91.92388,0 z"
3476
+ sodipodi:ry="44.783428"
3477
+ sodipodi:rx="45.961941"
3478
+ sodipodi:cy="530.60559"
3479
+ sodipodi:cx="394.8013"
3480
+ id="path7615"
3481
+ style="fill:url(#linearGradient15376);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15378);stroke-width:18.73698616;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3482
+ sodipodi:type="arc" />
3483
+ <path
3484
+ style="fill:url(#linearGradient15022);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15024);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3485
+ d="m 211.48865,266.23595 c -3.0736,0.63998 -3.33367,6.92834 -4.29815,10.15439 3.44153,3.79318 6.94093,5.95422 9.94755,11.82169 3.21471,-5.72185 -2.0022,-17.58522 -5.6494,-21.97608 z"
3486
+ id="path7617"
3487
+ sodipodi:nodetypes="cccc"
3488
+ inkscape:connector-curvature="0" />
3489
+ <path
3490
+ sodipodi:type="arc"
3491
+ style="fill:url(#linearGradient15372);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15374);stroke-width:18.73698616;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3492
+ id="path7619"
3493
+ sodipodi:cx="394.8013"
3494
+ sodipodi:cy="530.60559"
3495
+ sodipodi:rx="45.961941"
3496
+ sodipodi:ry="44.783428"
3497
+ d="m 440.76324,530.60559 a 45.961941,44.783428 0 1 1 -91.92388,0 45.961941,44.783428 0 1 1 91.92388,0 z"
3498
+ transform="matrix(0.19518313,0,0,0.19518313,143.06101,184.24674)" />
3499
+ </g>
3500
+ <g
3501
+ id="WhiteKing">
3502
+ <rect
3503
+ style="fill:none;stroke:none"
3504
+ id="rect7561"
3505
+ width="200"
3506
+ height="200.00002"
3507
+ x="0"
3508
+ y="199.99998" />
3509
+ <path
3510
+ style="fill:url(#linearGradient15116);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15118);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3511
+ d="m 65.973661,339.99661 c 5.301121,-7.65948 -1.61168,-28.76318 0.0042,-38.41182 2.622423,-15.659 23.197554,-26.16923 25.943908,-17.09068 3.257851,10.76938 -9.968434,11.78595 -13.648343,20.7757 -3.380091,8.25732 -2.65696,22.05308 3.923681,30.35651"
3512
+ id="path7563"
3513
+ sodipodi:nodetypes="csssc"
3514
+ inkscape:connector-curvature="0" />
3515
+ <path
3516
+ sodipodi:nodetypes="csssc"
3517
+ id="path7565"
3518
+ d="m 134.1464,341.10081 c -5.30112,-7.65947 1.61167,-28.76317 -0.004,-38.41181 -2.62245,-15.65898 -23.19758,-26.16923 -25.94393,-17.09068 -3.25785,10.76937 9.96844,11.78594 13.64834,20.77573 3.38009,8.2573 2.65699,22.05307 -3.92368,30.3565"
3519
+ style="fill:url(#linearGradient15111);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15113);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3520
+ inkscape:connector-curvature="0" />
3521
+ <path
3522
+ style="fill:url(#linearGradient15106);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15108);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3523
+ d="m 91.706667,265.85491 c 1.201738,-3.42868 4.320983,-16.21144 3.180846,-19.97731 -5.10032,-0.40361 -15.756639,4.27477 -22.663337,2.77601 -1.945257,-3.51675 -3.159817,-11.08419 -0.365554,-15.23822 6.252639,-1.90264 20.052731,1.4328 23.867154,1.9439 1.352229,-3.85208 -3.312983,-15.45999 -2.409234,-19.6632 4.285829,-2.04876 14.929028,-1.84621 18.092208,0.23633 -0.1611,4.41455 -6.60458,15.1371 -6.76098,18.80316 4.29349,-0.22012 17.6671,-3.85717 22.23266,-2.9689 1.96944,3.81953 2.39676,10.64343 -0.78042,15.00476 -4.86738,1.62132 -17.75428,-2.04111 -23.1237,-0.97601 -2.26279,4.56387 1.25507,16.34812 2.12059,19.79552"
3524
+ id="path7567"
3525
+ sodipodi:nodetypes="cccccccccccc"
3526
+ inkscape:connector-curvature="0" />
3527
+ <path
3528
+ style="fill:url(#linearGradient15101);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15103);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3529
+ d="m 93.350804,284.99018 c -5.653759,-4.89561 -8.144891,-4.93627 -7.047474,-17.18998 0.937143,-10.46429 24.28729,-9.92434 24.83067,-0.45506 0.68136,11.87359 -3.26639,12.76278 -6.01133,18.51181"
3530
+ id="path7569"
3531
+ sodipodi:nodetypes="csss"
3532
+ inkscape:connector-curvature="0" />
3533
+ <path
3534
+ style="fill:url(#linearGradient15098);fill-opacity:1;fill-rule:evenodd;stroke:none"
3535
+ d="M 61.93411,389.78267 47.311207,344.92716 155.02166,344.45455 137.90395,391.15731 61.93411,389.78267 z"
3536
+ id="path7571"
3537
+ sodipodi:nodetypes="ccccc"
3538
+ inkscape:connector-curvature="0" />
3539
+ <path
3540
+ sodipodi:nodetypes="ccccc"
3541
+ id="path7573"
3542
+ d="m 147.07567,363.91069 c -21.41174,-10.9747 -70.203183,-11.49032 -93.167044,0.42869 3.216853,10.16521 4.503609,21.47961 4.503609,21.47961 20.952382,-6.50601 63.513955,-6.76563 84.085385,0.94693 0,0 2.12105,-15.24106 4.57805,-22.85523 z"
3543
+ style="fill:url(#linearGradient15093);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15095);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3544
+ inkscape:connector-curvature="0" />
3545
+ <path
3546
+ style="fill:url(#linearGradient15088);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15090);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3547
+ d="m 126.52143,331.20714 c -8.28366,-3.50017 -17.5324,-13.44604 -27.880719,-13.765 -9.959906,0.23071 -17.955641,8.81458 -23.633568,13.35071 -26.348092,-11.99244 -26.033255,-34.94662 -7.6,-39.15714 3.002269,-0.68578 11.938672,0.10596 17.842857,-0.16429 -1.880069,-5.19213 -3.929534,-8.874 -1.985714,-15.78571 -4.16645,-2.68158 -9.711511,-4.60443 -16.028572,-4.97857 -1.886107,-0.11171 -3.801403,-0.15936 -5.721428,-0.13572 -18.560243,0.22853 -37.817434,6.97963 -40.55,24.05715 -3.988286,24.9253 18.078258,39.61491 26.021429,65.97857 25.213151,-14.37905 83.351925,-13.46346 107.507145,-1.03571 6.41093,-20.37991 31.9659,-44.19671 26.25,-64.97144 -5.29335,-19.23889 -31.02682,-24.86887 -48.00715,-23.90714 -6.88197,0.38978 -13.48859,2.61767 -18.45,5.67857 0.96046,5.47912 -0.98626,9.95873 -2.59999,14.69286 7.85031,0.003 21.62321,-1.82213 27.02857,1.23571 11.93817,6.75349 12.84843,31.06209 -12.19286,38.90715 z"
3548
+ id="path7575"
3549
+ sodipodi:nodetypes="cccsccscsccssccsc"
3550
+ inkscape:connector-curvature="0" />
3551
+ <path
3552
+ sodipodi:nodetypes="cssssc"
3553
+ id="path7577"
3554
+ d="m 75.082965,330.86355 c 8.684594,-6.09787 12.799611,-18.20825 12.452319,-27.98509 -0.500777,-14.0974 -8.041005,-16.55466 -3.734857,-28.89466 2.919886,-8.36741 27.237323,-8.79747 29.983703,0.28109 3.25783,10.76936 -5.10677,17.47409 -3.8029,28.37613 1.521,12.71774 1.61532,21.14791 16.52448,28.93081"
3555
+ style="fill:url(#linearGradient15083);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15085);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3556
+ inkscape:connector-curvature="0" />
3557
+ <path
3558
+ style="fill:url(#linearGradient15078);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15080);stroke-width:3.65714312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3559
+ d="m 63.015198,390.32635 c 20.083219,2.39645 52.162572,2.78987 74.826582,0.53929 -15.67932,-6.39544 -58.641204,-6.32588 -74.826582,-0.53929 z"
3560
+ id="path7579"
3561
+ sodipodi:nodetypes="ccc"
3562
+ inkscape:connector-curvature="0" />
3563
+ <path
3564
+ sodipodi:type="arc"
3565
+ style="fill:url(#linearGradient15368);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15370);stroke-width:16.55992508;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3566
+ id="path7581"
3567
+ sodipodi:cx="797.5"
3568
+ sodipodi:cy="915"
3569
+ sodipodi:rx="17.5"
3570
+ sodipodi:ry="16.666666"
3571
+ d="m 815,915 a 17.5,16.666666 0 1 1 -35,0 17.5,16.666666 0 1 1 35,0 z"
3572
+ transform="matrix(0.22084302,0,0,0.22084299,-76.302058,166.39375)" />
3573
+ <path
3574
+ d="m 815,915 a 17.5,16.666666 0 1 1 -35,0 17.5,16.666666 0 1 1 35,0 z"
3575
+ sodipodi:ry="16.666666"
3576
+ sodipodi:rx="17.5"
3577
+ sodipodi:cy="915"
3578
+ sodipodi:cx="797.5"
3579
+ id="path7583"
3580
+ style="fill:url(#linearGradient15364);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15366);stroke-width:18.08697128;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3581
+ sodipodi:type="arc"
3582
+ transform="matrix(0.24288439,-0.0439872,0.02951635,0.16298103,-143.5593,257.03974)" />
3583
+ <path
3584
+ transform="matrix(0.23748182,0.03854011,-0.02653303,0.16349303,-43.120388,190.75539)"
3585
+ sodipodi:type="arc"
3586
+ style="fill:url(#linearGradient15360);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15362);stroke-width:18.32027817;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3587
+ id="path7585"
3588
+ sodipodi:cx="797.5"
3589
+ sodipodi:cy="915"
3590
+ sodipodi:rx="17.5"
3591
+ sodipodi:ry="16.666666"
3592
+ d="m 815,915 a 17.5,16.666666 0 1 1 -35,0 17.5,16.666666 0 1 1 35,0 z" />
3593
+ </g>
3594
+ <g
3595
+ id="WhitePawn">
3596
+ <rect
3597
+ y="200"
3598
+ x="1000"
3599
+ height="200"
3600
+ width="200"
3601
+ id="rect13193"
3602
+ style="fill:none;stroke:none" />
3603
+ <path
3604
+ style="fill:url(#linearGradient15199);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15201);stroke-width:3.65714287999999987;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3605
+ d="M 1099.25 292.75 C 1088.5405 292.75 1079.8438 303.01337 1079.8438 315.6875 C 1079.8438 324.00489 1083.5903 331.28762 1089.1875 335.3125 C 1085.7079 360.58519 1068.9143 353.06495 1060.5625 358.96875 C 1052.7472 364.49335 1048.6613 383.88382 1059.0312 384.5625 C 1065.457 384.98305 1132.1753 385.26378 1138.8125 384.53125 C 1150.5567 383.23515 1147.0791 363.02381 1139.5 358.3125 C 1128.8373 351.68434 1112.5951 361.66299 1108.6875 335.71875 C 1114.6098 331.7909 1118.625 324.29323 1118.625 315.6875 C 1118.625 303.01337 1109.9595 292.75 1099.25 292.75 z "
3606
+ id="path35274-3" />
3607
+ <path
3608
+ inkscape:connector-curvature="0"
3609
+ sodipodi:nodetypes="scscs"
3610
+ id="path34396-9"
3611
+ d="m 1081.5541,292.81195 c -22.7723,4.05282 -24.2153,18.60609 -24.2153,18.60609 20.4738,-0.36153 34.7728,7.77429 55.295,4.76036 23.2878,-3.42011 21.0371,-9.19037 29.88,-16.57337 -16.0551,-7.99444 -36.7627,-11.09944 -60.9597,-6.79308 z"
3612
+ style="fill:url(#linearGradient15193);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15195);stroke-width:3.65714335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3613
+ <path
3614
+ inkscape:connector-curvature="0"
3615
+ sodipodi:nodetypes="cccss"
3616
+ id="path3363"
3617
+ d="m 1095.162,277.46381 c -17.6378,-0.0934 -18.9427,19.83488 -19.6878,22.48467 14.0396,-0.68991 30.8797,6.35566 45.9319,-1.7902 1.2902,-11.00692 -2.0379,-17.87775 -5.7945,-20.59067 -4.6991,-3.39362 -11.1316,-0.0544 -20.4496,-0.1038 z"
3618
+ style="fill:url(#linearGradient15183);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15185);stroke-width:3.65714264;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3619
+ <path
3620
+ inkscape:connector-curvature="0"
3621
+ style="fill:url(#linearGradient15178);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15180);stroke-width:3.65714216;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3622
+ d="m 1100.2941,353.7531 c 7.2098,8.65556 12.3667,21.23448 13.7071,34.21434 8.836,0.89021 24.641,0.3882 33.422,0.4642 0.8831,-7.88027 2.456,-29.08669 -9.8008,-33.02905 -12.985,-4.17661 -13.9095,-5.85507 -20.8668,-11.82995 -4.5142,4.66077 -12.8619,8.52942 -16.4615,10.18046 z"
3623
+ id="path4628"
3624
+ sodipodi:nodetypes="cccscc" />
3625
+ <path
3626
+ inkscape:connector-curvature="0"
3627
+ sodipodi:nodetypes="cccscc"
3628
+ id="path4642"
3629
+ d="m 1097.0106,353.99726 c -7.2097,8.65556 -13.2809,21.69164 -14.6213,34.6715 -8.836,0.89021 -24.1077,0.0834 -32.8887,0.15944 -3.1688,-5.59455 -1.9135,-28.07259 10.1817,-33.18144 12.367,-5.22362 14.5953,-5.6265 21.9336,-11.60138 3.3713,3.89886 11.7952,8.30085 15.3947,9.95188 z"
3630
+ style="fill:url(#linearGradient15163);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15165);stroke-width:3.65714216;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3631
+ <path
3632
+ transform="matrix(0.21114126,0,0,0.210392,1013.1685,212.2294)"
3633
+ d="m 433.33336,673.33331 a 28.333334,25.000002 0 1 1 -56.66666,0 28.333334,25.000002 0 1 1 56.66666,0 z"
3634
+ sodipodi:ry="25.000002"
3635
+ sodipodi:rx="28.333334"
3636
+ sodipodi:cy="673.33331"
3637
+ sodipodi:cx="405.00003"
3638
+ id="path4632"
3639
+ style="opacity:0.98999999;fill:url(#linearGradient15352);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15354);stroke-width:17.35164642;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3640
+ sodipodi:type="arc" />
3641
+ </g>
3642
+ <g
3643
+ id="WhiteKnight">
3644
+ <rect
3645
+ style="fill:none;stroke:none"
3646
+ id="rect7659"
3647
+ width="200"
3648
+ height="200"
3649
+ x="800"
3650
+ y="200" />
3651
+ <path
3652
+ style="fill:url(#linearGradient15303);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15305);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3653
+ d="m 920.82051,291.84195 c 0.049,17.48391 -20.16603,32.60628 -40.10424,24.99054 -3.05344,-1.16631 -32.75468,25.95129 -37.19477,22.51417 -3.50284,-2.71159 3.8808,-13.88996 3.34401,-12.46223 -2.55582,6.79794 -13.83928,14.36437 -22.90058,4.59713 -3.54361,-3.81967 -2.216,-16.57043 7.18118,-23.75614 9.73123,-7.44115 16.02018,-25.67101 19.14441,-33.9496 6.28395,-16.65129 3.81839,-17.015 15.8609,-32.11561 2.26233,-2.83684 -3.67739,-13.85043 -1.51858,-21.03944 8.52749,1.52073 11.81478,10.09428 15.7361,13.69223 2.28585,-5.2918 0.74991,-19.51109 4.81348,-18.84851 4.06357,0.66257 8.73775,12.98093 15.4412,18.39137 80.28857,24.70762 79.63225,153.18942 57.19346,153.60568 -27.69634,0.51379 -60.85496,0.39751 -88.70968,-0.0463 -6.74913,-0.10754 -9.87345,-8.83917 -8.57203,-14.05723 6.20686,-24.88641 32.41901,-42.30551 45.25898,-50.93791 13.18793,-8.86633 15.60252,-17.57942 15.02616,-30.57817 z"
3654
+ id="path7661"
3655
+ sodipodi:nodetypes="csssssssccscsssscc"
3656
+ inkscape:connector-curvature="0" />
3657
+ <path
3658
+ style="fill:none;stroke:url(#linearGradient15300);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3659
+ d="m 880.21604,265.94855 c -6.75466,-0.19322 -12.21666,2.60708 -16.23762,8.0773"
3660
+ id="path7663"
3661
+ sodipodi:nodetypes="cs"
3662
+ inkscape:connector-curvature="0" />
3663
+ <path
3664
+ style="fill:none;stroke:url(#linearGradient15297);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3665
+ d="m 870.7407,274.75167 c 2.73159,2.03747 5.74913,1.67201 5.61021,-2.48862"
3666
+ id="path7665"
3667
+ sodipodi:nodetypes="cs"
3668
+ inkscape:connector-curvature="0" />
3669
+ <path
3670
+ style="fill:none;stroke:url(#linearGradient15294);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3671
+ d="m 834.46197,318.46619 c -3.1668,-1.09378 -5.45786,4.00845 -3.4373,4.21661"
3672
+ id="path7667"
3673
+ sodipodi:nodetypes="cs"
3674
+ inkscape:connector-curvature="0" />
3675
+ <path
3676
+ style="fill:none;stroke:url(#linearGradient15291);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3677
+ d="m 872.42883,308.41242 2.16857,2.69497"
3678
+ id="path7669"
3679
+ sodipodi:nodetypes="cc"
3680
+ inkscape:connector-curvature="0" />
3681
+ <path
3682
+ style="fill:none;stroke:url(#linearGradient15288);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3683
+ d="m 920.85784,284.39679 0.0665,-5.69552"
3684
+ id="path7671"
3685
+ sodipodi:nodetypes="cc"
3686
+ inkscape:connector-curvature="0" />
3687
+ <path
3688
+ style="fill:none;stroke:url(#linearGradient15285);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3689
+ d="m 874.48657,237.17701 -2.31158,1.20709"
3690
+ id="path7673"
3691
+ sodipodi:nodetypes="cs"
3692
+ inkscape:connector-curvature="0" />
3693
+ <path
3694
+ style="fill:none;stroke:url(#linearGradient15282);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3695
+ d="m 886.69032,224.88539 c 6.89193,9.62746 9.38036,11.57494 1.18547,10.1936"
3696
+ id="path7675"
3697
+ sodipodi:nodetypes="cs"
3698
+ inkscape:connector-curvature="0" />
3699
+ <path
3700
+ style="fill:url(#linearGradient15277);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15279);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3701
+ d="m 903.87285,229.97164 c 19.78804,5.80204 16.45047,1.61424 20.62382,8.41048 2.33812,3.80761 5.57796,-1.29778 13.29052,-0.81481 4.16519,0.26083 -11.42877,-6.22198 -13.46256,-8.81433 -2.8235,-3.59896 -23.35496,0.36742 -20.45178,1.21866 z"
3702
+ id="path7677"
3703
+ sodipodi:nodetypes="cssss"
3704
+ inkscape:connector-curvature="0" />
3705
+ <path
3706
+ style="fill:url(#linearGradient15272);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15274);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3707
+ d="m 932.46887,245.65085 c 6.21536,4.72518 10.76795,-0.0742 10.52243,8.12477 -0.16858,5.62961 7.42995,1.8683 11.12002,4.21661 3.39955,2.16343 6.80931,-6.56348 4.64701,-6.56348 -3.25317,0 -8.77717,1.52621 -7.77769,-2.14735 2.19387,-8.06354 -20.29693,-4.9877 -18.51177,-3.63055 z"
3708
+ id="path7679"
3709
+ sodipodi:nodetypes="csssss"
3710
+ inkscape:connector-curvature="0" />
3711
+ <path
3712
+ style="fill:url(#linearGradient15267);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15269);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3713
+ d="m 950.75005,263.47787 c 1.20981,0.42324 7.79901,4.8845 7.49392,7.00599 -1.57365,10.94237 6.49501,10.23309 9.96743,11.38982 4.86586,1.62091 -0.22674,-4.18829 -2.68195,-7.17506 -2.45521,-2.98676 1.67773,-4.32408 1.38837,-6.21855 -1.01786,-6.66421 -16.79938,-5.22317 -16.16777,-5.0022 z"
3714
+ id="path7681"
3715
+ sodipodi:nodetypes="csssss"
3716
+ inkscape:connector-curvature="0" />
3717
+ <path
3718
+ style="fill:url(#linearGradient15262);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient15264);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3719
+ d="m 962.3748,286.54793 c 1.15613,2.01595 3.867,4.29922 4.72632,7.46168 0.85933,3.16246 1.18283,5.98193 2.90148,9.37864 1.71865,3.39671 8.63367,2.95394 11.61554,1.95703 4.0178,-1.34325 -9.71342,-5.51474 -6.61953,-11.87464 1.9582,-4.02531 -13.24774,-8.01066 -12.62381,-6.92271 z"
3720
+ id="path7683"
3721
+ sodipodi:nodetypes="csssss"
3722
+ inkscape:connector-curvature="0" />
3723
+ <path
3724
+ style="fill:none;stroke:url(#linearGradient15259);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3725
+ d="m 900.1479,366.74312 -5.89252,14.05538"
3726
+ id="path7685"
3727
+ inkscape:connector-curvature="0" />
3728
+ <path
3729
+ sodipodi:nodetypes="ssccssssccs"
3730
+ inkscape:connector-curvature="0"
3731
+ id="path14541"
3732
+ d="m 903.76482,327.08285 c 20.46274,0.67006 43.40859,0.40112 64.17841,-6.3017 7.34028,-2.36885 5.14467,5.9227 -0.26791,6.15977 -47.76912,13.0376 -97.24962,4.0943 -111.91307,-4.39714 3.57818,0.49536 5.56646,8.97506 4.38923,11.75551 -1.70649,4.03046 -4.24913,3.19022 -4.91849,-1.66797 -0.69139,-5.01798 -1.36764,-10.83586 -6.06511,-14.22084 -4.76858,-3.43622 -7.75628,-5.37513 -12.20901,-9.63808 -3.88102,-3.71561 -8.36262,-3.44372 -5.4749,-7.95648 4.80102,-2.87446 17.87493,12.31305 22.95111,16.13705 12.30945,5.48275 32.08199,9.5651 49.32974,10.12988 z"
3733
+ style="fill:url(#linearGradient15254);fill-opacity:1;stroke:url(#linearGradient15256);stroke-width:3.65714288;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3734
+ <path
3735
+ sodipodi:nodetypes="ssss"
3736
+ inkscape:connector-curvature="0"
3737
+ id="path14543"
3738
+ d="m 853.71179,314.59855 c -4.08727,0.0993 -6.86835,2.99333 -4.97811,7.21502 2.02871,4.53093 7.89366,2.58984 9.46969,-0.10336 2.12175,-3.62578 0.20935,-7.22589 -4.49158,-7.11166 z"
3739
+ style="fill:url(#linearGradient15249);fill-opacity:1;stroke:url(#linearGradient15251);stroke-width:3.65714288;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
3740
+ </g>
3741
+ </g>
3742
+ </svg>