kokopu-react 1.5.5 → 1.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (116) hide show
  1. package/.nycrc.yml +1 -1
  2. package/CHANGELOG.md +18 -0
  3. package/README.md +2 -2
  4. package/dist/lib/ArrowMarkerIcon.js +2 -2
  5. package/dist/lib/Chessboard.js +26 -18
  6. package/dist/lib/Movetext.js +41 -82
  7. package/dist/lib/formatmove.js +119 -0
  8. package/dist/lib/impl/HtmlSanitizer.js +8 -3
  9. package/dist/lib/impl/colorsets.js +44 -44
  10. package/dist/lib/impl/util.js +1 -1
  11. package/dist/lib/index.js +14 -0
  12. package/dist/lib/markers.js +7 -7
  13. package/doc_src/demo/PageChessboardInteraction.js +4 -3
  14. package/doc_src/demo/PageChessboardMove.js +36 -5
  15. package/doc_src/demo/demo.css +4 -0
  16. package/{graphic_test_app → graphic_test_src}/01_marker_icons.js +0 -0
  17. package/{graphic_test_app → graphic_test_src}/02_chessboard_simple.js +0 -0
  18. package/{graphic_test_app → graphic_test_src}/03_chessboard_flipped.js +0 -0
  19. package/{graphic_test_app → graphic_test_src}/04_chessboard_annotations.js +8 -8
  20. package/{graphic_test_app → graphic_test_src}/05_chessboard_move.js +4 -4
  21. package/{graphic_test_app → graphic_test_src}/06_chessboard_theme.js +2 -2
  22. package/{graphic_test_app → graphic_test_src}/07_chessboard_click_squares.js +0 -0
  23. package/{graphic_test_app → graphic_test_src}/08_chessboard_move_pieces.js +1 -1
  24. package/{graphic_test_app → graphic_test_src}/09_chessboard_edit_arrows.js +0 -0
  25. package/{graphic_test_app → graphic_test_src}/10_chessboard_play_moves.js +1 -1
  26. package/{graphic_test_app → graphic_test_src}/11_chessboard_play_promotions.js +0 -0
  27. package/{graphic_test_app → graphic_test_src}/12_movetext_simple.js +0 -0
  28. package/{graphic_test_app → graphic_test_src}/13_movetext_error.js +0 -0
  29. package/{graphic_test_app → graphic_test_src}/14_movetext_html.js +0 -0
  30. package/{graphic_test_app → graphic_test_src}/15_movetext_options.js +0 -4
  31. package/{graphic_test_app → graphic_test_src}/16_movetext_interaction.js +0 -0
  32. package/{graphic_test_app → graphic_test_src}/common/dummy.pgn +0 -0
  33. package/{graphic_test_app → graphic_test_src}/common/games.pgn +11 -5
  34. package/{graphic_test_app → graphic_test_src}/common/heartbeat.txt +0 -0
  35. package/graphic_test_src/common/smiley.png +0 -0
  36. package/{graphic_test_app → graphic_test_src}/common/test_app.css +0 -0
  37. package/{graphic_test_app → graphic_test_src}/common/test_app.js +3 -2
  38. package/graphics/chess_sprites/cburnett/bb.svg +45 -0
  39. package/graphics/chess_sprites/cburnett/bk.svg +47 -0
  40. package/graphics/chess_sprites/cburnett/bn.svg +37 -0
  41. package/graphics/chess_sprites/cburnett/bp.svg +19 -0
  42. package/graphics/chess_sprites/cburnett/bq.svg +58 -0
  43. package/graphics/chess_sprites/cburnett/br.svg +60 -0
  44. package/graphics/chess_sprites/cburnett/bx.svg +56 -0
  45. package/graphics/chess_sprites/cburnett/wb.svg +48 -0
  46. package/graphics/chess_sprites/cburnett/wk.svg +26 -0
  47. package/graphics/chess_sprites/cburnett/wn.svg +37 -0
  48. package/graphics/chess_sprites/cburnett/wp.svg +19 -0
  49. package/graphics/chess_sprites/cburnett/wq.svg +60 -0
  50. package/graphics/chess_sprites/cburnett/wr.svg +44 -0
  51. package/graphics/chess_sprites/cburnett/wx.svg +56 -0
  52. package/graphics/chess_sprites/generate_sprites.sh +135 -0
  53. package/graphics/chess_sprites/mmonge/celtic-bx.svg +112 -0
  54. package/graphics/chess_sprites/mmonge/celtic-wx.svg +111 -0
  55. package/graphics/chess_sprites/mmonge/celtic.svg +1576 -0
  56. package/graphics/chess_sprites/mmonge/eyes-spatial-bx.svg +101 -0
  57. package/graphics/chess_sprites/mmonge/eyes-spatial-wx.svg +100 -0
  58. package/graphics/chess_sprites/mmonge/eyes.svg +2538 -0
  59. package/graphics/chess_sprites/mmonge/fantasy-bx.svg +112 -0
  60. package/graphics/chess_sprites/mmonge/fantasy-wx.svg +111 -0
  61. package/graphics/chess_sprites/mmonge/fantasy.svg +5497 -0
  62. package/graphics/chess_sprites/mmonge/fantasy_alt.svg +3742 -0
  63. package/graphics/chess_sprites/mmonge/freak.svg +3479 -0
  64. package/graphics/chess_sprites/mmonge/prmi.svg +6776 -0
  65. package/graphics/chess_sprites/mmonge/skulls-bx.svg +124 -0
  66. package/graphics/chess_sprites/mmonge/skulls-wx.svg +111 -0
  67. package/graphics/chess_sprites/mmonge/skulls.svg +12978 -0
  68. package/graphics/chess_sprites/mmonge/spatial.svg +1223 -0
  69. package/package.json +28 -22
  70. package/scripts/{test_graphic/clean-graphic-output.js → clean-graphic-output.js} +1 -1
  71. package/scripts/docker-compose.yml +14 -0
  72. package/scripts/{test_graphic/webpack-config.js → test-graphic.webpack.config.js} +9 -5
  73. package/scripts/{test_headless.webpack-config.js → test-headless.webpack.config.js} +2 -1
  74. package/src/Chessboard.js +24 -16
  75. package/src/Movetext.js +37 -59
  76. package/src/formatmove.js +91 -0
  77. package/src/impl/HtmlSanitizer.js +8 -2
  78. package/src/impl/colorsets.js +44 -44
  79. package/src/impl/util.js +1 -1
  80. package/src/index.js +1 -0
  81. package/src/markers.js +7 -7
  82. package/test/1_markers.js +14 -14
  83. package/test/common/graphic.js +2 -2
  84. package/test/references/04_chessboard_annotations/0.png +0 -0
  85. package/test/references/04_chessboard_annotations/1.png +0 -0
  86. package/test/references/04_chessboard_annotations/2.png +0 -0
  87. package/test/references/04_chessboard_annotations/3.png +0 -0
  88. package/test/references/04_chessboard_annotations/4.png +0 -0
  89. package/test/references/04_chessboard_annotations/5.png +0 -0
  90. package/test/references/05_chessboard_move/3.png +0 -0
  91. package/test/references/05_chessboard_move/4.png +0 -0
  92. package/test/references/05_chessboard_move/5.png +0 -0
  93. package/test/references/05_chessboard_move/6.png +0 -0
  94. package/test/references/06_chessboard_theme/0.png +0 -0
  95. package/test/references/06_chessboard_theme/1.png +0 -0
  96. package/test/references/06_chessboard_theme/2.png +0 -0
  97. package/test/references/06_chessboard_theme/3.png +0 -0
  98. package/test/references/06_chessboard_theme/4.png +0 -0
  99. package/test/references/06_chessboard_theme/5.png +0 -0
  100. package/test/references/06_chessboard_theme/6.png +0 -0
  101. package/test/references/06_chessboard_theme/7.png +0 -0
  102. package/test/references/06_chessboard_theme/8.png +0 -0
  103. package/test/references/08_chessboard_move_pieces/over_arrow_marker.png +0 -0
  104. package/test/references/08_chessboard_move_pieces/over_square_marker.png +0 -0
  105. package/test/references/08_chessboard_move_pieces/over_text_marker.png +0 -0
  106. package/test/references/09_chessboard_edit_arrows/base_1.png +0 -0
  107. package/test/references/09_chessboard_edit_arrows/base_2.png +0 -0
  108. package/test/references/09_chessboard_edit_arrows/null_vector.png +0 -0
  109. package/test/references/09_chessboard_edit_arrows/over_arrow_marker.png +0 -0
  110. package/test/references/09_chessboard_edit_arrows/over_square_marker.png +0 -0
  111. package/test/references/10_chessboard_play_moves/castling_move.png +0 -0
  112. package/test/references/10_chessboard_play_moves/regular_move_2.png +0 -0
  113. package/test/references/14_movetext_html/0.png +0 -0
  114. package/test/references/14_movetext_html/1.png +0 -0
  115. package/test/references/14_movetext_html/2.png +0 -0
  116. package/scripts/test_graphic/docker-compose.yml +0 -14
@@ -0,0 +1,1223 @@
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="spatial.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:#d0b090;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:#000000;stop-opacity:1;" />
62
+ <stop
63
+ id="stop2270"
64
+ offset="1"
65
+ style="stop-color:#505070;stop-opacity:1;" />
66
+ </linearGradient>
67
+ <linearGradient
68
+ inkscape:collect="always"
69
+ xlink:href="#linearGradientBlackPieces"
70
+ id="linearGradient2472"
71
+ gradientUnits="userSpaceOnUse"
72
+ x1="163.1134"
73
+ y1="776.63849"
74
+ x2="702.69696"
75
+ y2="778.81091"
76
+ gradientTransform="scale(0.22857143,0.22857143)" />
77
+ <linearGradient
78
+ inkscape:collect="always"
79
+ xlink:href="#linearGradientBlackPieces"
80
+ id="linearGradient2475"
81
+ gradientUnits="userSpaceOnUse"
82
+ x1="150.07878"
83
+ y1="255.25356"
84
+ x2="694.0072"
85
+ y2="740.0625"
86
+ gradientTransform="scale(0.22857143,0.22857143)" />
87
+ <linearGradient
88
+ inkscape:collect="always"
89
+ xlink:href="#linearGradientBlackPieces"
90
+ id="linearGradient2483"
91
+ x1="375.06781"
92
+ y1="176.41568"
93
+ x2="535.5755"
94
+ y2="308.93436"
95
+ gradientUnits="userSpaceOnUse"
96
+ gradientTransform="scale(0.22857143,0.22857143)" />
97
+ <linearGradient
98
+ inkscape:collect="always"
99
+ xlink:href="#linearGradientBlackPieces"
100
+ id="linearGradient2361"
101
+ x1="199"
102
+ y1="789.83331"
103
+ x2="661.66669"
104
+ y2="789.83331"
105
+ gradientUnits="userSpaceOnUse"
106
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,0)" />
107
+ <linearGradient
108
+ inkscape:collect="always"
109
+ xlink:href="#linearGradientBlackPieces"
110
+ id="linearGradient2363"
111
+ x1="166.78125"
112
+ y1="239.89061"
113
+ x2="718.88538"
114
+ y2="746.55731"
115
+ gradientUnits="userSpaceOnUse"
116
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,0)" />
117
+ <linearGradient
118
+ inkscape:collect="always"
119
+ xlink:href="#linearGradientBlackPieces"
120
+ id="linearGradient2371"
121
+ x1="285.63937"
122
+ y1="287.11978"
123
+ x2="466.66666"
124
+ y2="587.11981"
125
+ gradientUnits="userSpaceOnUse"
126
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,0)" />
127
+ <linearGradient
128
+ inkscape:collect="always"
129
+ xlink:href="#linearGradientBlackPieces"
130
+ id="linearGradient2413"
131
+ gradientUnits="userSpaceOnUse"
132
+ x1="88.715729"
133
+ y1="286.24783"
134
+ x2="772.14215"
135
+ y2="750.5813"
136
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,400,0)" />
137
+ <linearGradient
138
+ inkscape:collect="always"
139
+ xlink:href="#linearGradientBlackPieces"
140
+ id="linearGradient2416"
141
+ gradientUnits="userSpaceOnUse"
142
+ x1="88.715729"
143
+ y1="286.24783"
144
+ x2="772.14215"
145
+ y2="750.5813"
146
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,400,0)" />
147
+ <linearGradient
148
+ inkscape:collect="always"
149
+ xlink:href="#linearGradientBlackPieces"
150
+ id="linearGradient2419"
151
+ gradientUnits="userSpaceOnUse"
152
+ x1="88.715729"
153
+ y1="286.24783"
154
+ x2="772.14215"
155
+ y2="750.5813"
156
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,400,0)" />
157
+ <linearGradient
158
+ inkscape:collect="always"
159
+ xlink:href="#linearGradientBlackPieces"
160
+ id="linearGradient2422"
161
+ gradientUnits="userSpaceOnUse"
162
+ x1="88.715729"
163
+ y1="286.24783"
164
+ x2="772.14215"
165
+ y2="750.5813"
166
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,400,0)" />
167
+ <linearGradient
168
+ inkscape:collect="always"
169
+ xlink:href="#linearGradientBlackPieces"
170
+ id="linearGradient2425"
171
+ gradientUnits="userSpaceOnUse"
172
+ x1="88.715729"
173
+ y1="286.24783"
174
+ x2="772.14215"
175
+ y2="750.5813"
176
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,400,0)" />
177
+ <linearGradient
178
+ inkscape:collect="always"
179
+ xlink:href="#linearGradientBlackPieces"
180
+ id="linearGradient2428"
181
+ gradientUnits="userSpaceOnUse"
182
+ x1="88.715729"
183
+ y1="286.24783"
184
+ x2="772.14215"
185
+ y2="750.5813"
186
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,400,0)" />
187
+ <linearGradient
188
+ inkscape:collect="always"
189
+ xlink:href="#linearGradientBlackPieces"
190
+ id="linearGradient2275"
191
+ gradientUnits="userSpaceOnUse"
192
+ x1="322.64999"
193
+ y1="156.50154"
194
+ x2="501.10233"
195
+ y2="209.83487"
196
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,600,3.58095)" />
197
+ <linearGradient
198
+ inkscape:collect="always"
199
+ xlink:href="#linearGradientBlackPieces"
200
+ id="linearGradient2278"
201
+ gradientUnits="userSpaceOnUse"
202
+ x1="130.98332"
203
+ y1="444.83487"
204
+ x2="720.01697"
205
+ y2="623.16821"
206
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,600,0.91429)" />
207
+ <linearGradient
208
+ inkscape:collect="always"
209
+ xlink:href="#linearGradientBlackPieces"
210
+ id="linearGradient2281"
211
+ gradientUnits="userSpaceOnUse"
212
+ x1="130.98332"
213
+ y1="444.83487"
214
+ x2="720.01697"
215
+ y2="623.16821"
216
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,600,0.91429)" />
217
+ <linearGradient
218
+ inkscape:collect="always"
219
+ xlink:href="#linearGradientBlackPieces"
220
+ id="linearGradient2284"
221
+ gradientUnits="userSpaceOnUse"
222
+ x1="130.98332"
223
+ y1="444.83487"
224
+ x2="720.01697"
225
+ y2="623.16821"
226
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,598.17143,0.91429)" />
227
+ <linearGradient
228
+ inkscape:collect="always"
229
+ xlink:href="#linearGradientBlackPieces"
230
+ id="linearGradient2287"
231
+ gradientUnits="userSpaceOnUse"
232
+ x1="130.98332"
233
+ y1="444.83487"
234
+ x2="720.01697"
235
+ y2="623.16821"
236
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,602.28571,0.91429)" />
237
+ <linearGradient
238
+ inkscape:collect="always"
239
+ xlink:href="#linearGradientBlackPieces"
240
+ id="linearGradient2513"
241
+ x1="163.67708"
242
+ y1="244.15625"
243
+ x2="741.16382"
244
+ y2="814.15625"
245
+ gradientUnits="userSpaceOnUse"
246
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,800.45714,2.74286)" />
247
+ <linearGradient
248
+ inkscape:collect="always"
249
+ xlink:href="#linearGradientBlackPieces"
250
+ id="linearGradient2232"
251
+ x1="250.33334"
252
+ y1="541.66669"
253
+ x2="671.33337"
254
+ y2="718.33331"
255
+ gradientUnits="userSpaceOnUse" />
256
+ <linearGradient
257
+ inkscape:collect="always"
258
+ xlink:href="#linearGradientBlackPiecesBorder"
259
+ id="linearGradient17655"
260
+ x1="265.33334"
261
+ y1="605"
262
+ x2="644.66669"
263
+ y2="605"
264
+ gradientUnits="userSpaceOnUse" />
265
+ <linearGradient
266
+ inkscape:collect="always"
267
+ xlink:href="#linearGradientBlackPiecesBorder"
268
+ id="linearGradient17657"
269
+ x1="827.92651"
270
+ y1="104.44271"
271
+ x2="974.56012"
272
+ y2="104.44271"
273
+ gradientUnits="userSpaceOnUse" />
274
+ <linearGradient
275
+ inkscape:collect="always"
276
+ xlink:href="#linearGradientBlackPiecesBorder"
277
+ id="linearGradient17659"
278
+ x1="681.69147"
279
+ y1="32.30088"
280
+ x2="717.96625"
281
+ y2="32.30088"
282
+ gradientUnits="userSpaceOnUse" />
283
+ <linearGradient
284
+ inkscape:collect="always"
285
+ xlink:href="#linearGradientBlackPiecesBorder"
286
+ id="linearGradient17661"
287
+ x1="644.22748"
288
+ y1="93.363823"
289
+ x2="754.01538"
290
+ y2="93.363823"
291
+ gradientUnits="userSpaceOnUse" />
292
+ <linearGradient
293
+ inkscape:collect="always"
294
+ xlink:href="#linearGradientBlackPiecesBorder"
295
+ id="linearGradient17663"
296
+ x1="656.23303"
297
+ y1="150.81651"
298
+ x2="737.67212"
299
+ y2="150.81651"
300
+ gradientUnits="userSpaceOnUse" />
301
+ <linearGradient
302
+ inkscape:collect="always"
303
+ xlink:href="#linearGradientBlackPiecesBorder"
304
+ id="linearGradient17665"
305
+ x1="699.29651"
306
+ y1="174.58551"
307
+ x2="766.55627"
308
+ y2="174.58551"
309
+ gradientUnits="userSpaceOnUse" />
310
+ <linearGradient
311
+ inkscape:collect="always"
312
+ xlink:href="#linearGradientBlackPiecesBorder"
313
+ id="linearGradient17667"
314
+ x1="632.22473"
315
+ y1="174.58551"
316
+ x2="699.48456"
317
+ y2="174.58551"
318
+ gradientUnits="userSpaceOnUse" />
319
+ <linearGradient
320
+ inkscape:collect="always"
321
+ xlink:href="#linearGradientBlackPiecesBorder"
322
+ id="linearGradient17669"
323
+ x1="539.12384"
324
+ y1="171.96191"
325
+ x2="564.87622"
326
+ y2="171.96191"
327
+ gradientUnits="userSpaceOnUse" />
328
+ <linearGradient
329
+ inkscape:collect="always"
330
+ xlink:href="#linearGradientBlackPiecesBorder"
331
+ id="linearGradient17671"
332
+ x1="435.50476"
333
+ y1="178.81903"
334
+ x2="530.97144"
335
+ y2="178.81903"
336
+ gradientUnits="userSpaceOnUse" />
337
+ <linearGradient
338
+ inkscape:collect="always"
339
+ xlink:href="#linearGradientBlackPiecesBorder"
340
+ id="linearGradient17673"
341
+ x1="540.64764"
342
+ y1="59.123825"
343
+ x2="573.25714"
344
+ y2="59.123825"
345
+ gradientUnits="userSpaceOnUse" />
346
+ <linearGradient
347
+ inkscape:collect="always"
348
+ xlink:href="#linearGradientBlackPiecesBorder"
349
+ id="linearGradient17675"
350
+ x1="481.21906"
351
+ y1="55.885723"
352
+ x2="518.01904"
353
+ y2="55.885723"
354
+ gradientUnits="userSpaceOnUse" />
355
+ <linearGradient
356
+ inkscape:collect="always"
357
+ xlink:href="#linearGradientBlackPiecesBorder"
358
+ id="linearGradient17677"
359
+ x1="426.74286"
360
+ y1="58.552391"
361
+ x2="466.20953"
362
+ y2="58.552391"
363
+ gradientUnits="userSpaceOnUse" />
364
+ <linearGradient
365
+ inkscape:collect="always"
366
+ xlink:href="#linearGradientBlackPiecesBorder"
367
+ id="linearGradient17679"
368
+ x1="452.26666"
369
+ y1="125.40951"
370
+ x2="550.40002"
371
+ y2="125.40951"
372
+ gradientUnits="userSpaceOnUse" />
373
+ <linearGradient
374
+ inkscape:collect="always"
375
+ xlink:href="#linearGradientBlackPiecesBorder"
376
+ id="linearGradient17681"
377
+ x1="245.48573"
378
+ y1="180.53334"
379
+ x2="351.2381"
380
+ y2="180.53334"
381
+ gradientUnits="userSpaceOnUse" />
382
+ <linearGradient
383
+ inkscape:collect="always"
384
+ xlink:href="#linearGradientBlackPiecesBorder"
385
+ id="linearGradient17683"
386
+ x1="218.3119"
387
+ y1="95.213097"
388
+ x2="382.98334"
389
+ y2="95.213097"
390
+ gradientUnits="userSpaceOnUse" />
391
+ <linearGradient
392
+ inkscape:collect="always"
393
+ xlink:href="#linearGradientBlackPiecesBorder"
394
+ id="linearGradient17685"
395
+ x1="252.33662"
396
+ y1="96.103577"
397
+ x2="353.14285"
398
+ y2="96.103577"
399
+ gradientUnits="userSpaceOnUse" />
400
+ <linearGradient
401
+ inkscape:collect="always"
402
+ xlink:href="#linearGradientBlackPiecesBorder"
403
+ id="linearGradient17687"
404
+ x1="43.504772"
405
+ y1="180.95239"
406
+ x2="156.87621"
407
+ y2="180.95239"
408
+ gradientUnits="userSpaceOnUse" />
409
+ <linearGradient
410
+ inkscape:collect="always"
411
+ xlink:href="#linearGradientBlackPiecesBorder"
412
+ id="linearGradient17689"
413
+ x1="19.407007"
414
+ y1="119.72302"
415
+ x2="182.46497"
416
+ y2="119.72302"
417
+ gradientUnits="userSpaceOnUse" />
418
+ <linearGradient
419
+ inkscape:collect="always"
420
+ xlink:href="#linearGradientBlackPiecesBorder"
421
+ id="linearGradient17691"
422
+ x1="72.322746"
423
+ y1="53.730625"
424
+ x2="129.8656"
425
+ y2="53.730625"
426
+ gradientUnits="userSpaceOnUse" />
427
+ <linearGradient
428
+ inkscape:collect="always"
429
+ xlink:href="#linearGradientWhitePieces"
430
+ id="linearGradient17743"
431
+ gradientUnits="userSpaceOnUse"
432
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,0,200)"
433
+ x1="375.06781"
434
+ y1="176.41568"
435
+ x2="535.5755"
436
+ y2="308.93436" />
437
+ <linearGradient
438
+ inkscape:collect="always"
439
+ xlink:href="#linearGradientWhitePiecesBorder"
440
+ id="linearGradient17745"
441
+ gradientUnits="userSpaceOnUse"
442
+ x1="72.322746"
443
+ y1="53.730625"
444
+ x2="129.8656"
445
+ y2="53.730625"
446
+ gradientTransform="translate(0,200)" />
447
+ <linearGradient
448
+ inkscape:collect="always"
449
+ xlink:href="#linearGradientWhitePieces"
450
+ id="linearGradient17747"
451
+ gradientUnits="userSpaceOnUse"
452
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,0,200)"
453
+ x1="150.07878"
454
+ y1="255.25356"
455
+ x2="694.0072"
456
+ y2="740.0625" />
457
+ <linearGradient
458
+ inkscape:collect="always"
459
+ xlink:href="#linearGradientWhitePiecesBorder"
460
+ id="linearGradient17749"
461
+ gradientUnits="userSpaceOnUse"
462
+ x1="19.407007"
463
+ y1="119.72302"
464
+ x2="182.46497"
465
+ y2="119.72302"
466
+ gradientTransform="translate(0,200)" />
467
+ <linearGradient
468
+ inkscape:collect="always"
469
+ xlink:href="#linearGradientWhitePieces"
470
+ id="linearGradient17751"
471
+ gradientUnits="userSpaceOnUse"
472
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,0,200)"
473
+ x1="163.1134"
474
+ y1="776.63849"
475
+ x2="702.69696"
476
+ y2="778.81091" />
477
+ <linearGradient
478
+ inkscape:collect="always"
479
+ xlink:href="#linearGradientWhitePiecesBorder"
480
+ id="linearGradient17753"
481
+ gradientUnits="userSpaceOnUse"
482
+ x1="43.504772"
483
+ y1="180.95239"
484
+ x2="156.87621"
485
+ y2="180.95239"
486
+ gradientTransform="translate(0,200)" />
487
+ <linearGradient
488
+ inkscape:collect="always"
489
+ xlink:href="#linearGradientWhitePieces"
490
+ id="linearGradient17755"
491
+ gradientUnits="userSpaceOnUse"
492
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,200)"
493
+ x1="285.63937"
494
+ y1="287.11978"
495
+ x2="466.66666"
496
+ y2="587.11981" />
497
+ <linearGradient
498
+ inkscape:collect="always"
499
+ xlink:href="#linearGradientWhitePiecesBorder"
500
+ id="linearGradient17757"
501
+ gradientUnits="userSpaceOnUse"
502
+ x1="252.33662"
503
+ y1="96.103577"
504
+ x2="353.14285"
505
+ y2="96.103577"
506
+ gradientTransform="translate(0,200)" />
507
+ <linearGradient
508
+ inkscape:collect="always"
509
+ xlink:href="#linearGradientWhitePieces"
510
+ id="linearGradient17759"
511
+ gradientUnits="userSpaceOnUse"
512
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,200)"
513
+ x1="166.78125"
514
+ y1="239.89061"
515
+ x2="718.88538"
516
+ y2="746.55731" />
517
+ <linearGradient
518
+ inkscape:collect="always"
519
+ xlink:href="#linearGradientWhitePiecesBorder"
520
+ id="linearGradient17761"
521
+ gradientUnits="userSpaceOnUse"
522
+ x1="218.3119"
523
+ y1="95.213097"
524
+ x2="382.98334"
525
+ y2="95.213097"
526
+ gradientTransform="translate(0,200)" />
527
+ <linearGradient
528
+ inkscape:collect="always"
529
+ xlink:href="#linearGradientWhitePieces"
530
+ id="linearGradient17763"
531
+ gradientUnits="userSpaceOnUse"
532
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,200)"
533
+ x1="199"
534
+ y1="789.83331"
535
+ x2="661.66669"
536
+ y2="789.83331" />
537
+ <linearGradient
538
+ inkscape:collect="always"
539
+ xlink:href="#linearGradientWhitePiecesBorder"
540
+ id="linearGradient17765"
541
+ gradientUnits="userSpaceOnUse"
542
+ x1="245.48573"
543
+ y1="180.53334"
544
+ x2="351.2381"
545
+ y2="180.53334"
546
+ gradientTransform="translate(0,200)" />
547
+ <linearGradient
548
+ inkscape:collect="always"
549
+ xlink:href="#linearGradientWhitePieces"
550
+ id="linearGradient17767"
551
+ gradientUnits="userSpaceOnUse"
552
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,400,200)"
553
+ x1="88.715729"
554
+ y1="286.24783"
555
+ x2="772.14215"
556
+ y2="750.5813" />
557
+ <linearGradient
558
+ inkscape:collect="always"
559
+ xlink:href="#linearGradientWhitePiecesBorder"
560
+ id="linearGradient17769"
561
+ gradientUnits="userSpaceOnUse"
562
+ x1="452.26666"
563
+ y1="125.40951"
564
+ x2="550.40002"
565
+ y2="125.40951"
566
+ gradientTransform="translate(0,200)" />
567
+ <linearGradient
568
+ inkscape:collect="always"
569
+ xlink:href="#linearGradientWhitePieces"
570
+ id="linearGradient17771"
571
+ gradientUnits="userSpaceOnUse"
572
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,400,200)"
573
+ x1="88.715729"
574
+ y1="286.24783"
575
+ x2="772.14215"
576
+ y2="750.5813" />
577
+ <linearGradient
578
+ inkscape:collect="always"
579
+ xlink:href="#linearGradientWhitePiecesBorder"
580
+ id="linearGradient17773"
581
+ gradientUnits="userSpaceOnUse"
582
+ x1="426.74286"
583
+ y1="58.552391"
584
+ x2="466.20953"
585
+ y2="58.552391"
586
+ gradientTransform="translate(0,200)" />
587
+ <linearGradient
588
+ inkscape:collect="always"
589
+ xlink:href="#linearGradientWhitePieces"
590
+ id="linearGradient17775"
591
+ gradientUnits="userSpaceOnUse"
592
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,400,200)"
593
+ x1="88.715729"
594
+ y1="286.24783"
595
+ x2="772.14215"
596
+ y2="750.5813" />
597
+ <linearGradient
598
+ inkscape:collect="always"
599
+ xlink:href="#linearGradientWhitePiecesBorder"
600
+ id="linearGradient17777"
601
+ gradientUnits="userSpaceOnUse"
602
+ x1="481.21906"
603
+ y1="55.885723"
604
+ x2="518.01904"
605
+ y2="55.885723"
606
+ gradientTransform="translate(0,200)" />
607
+ <linearGradient
608
+ inkscape:collect="always"
609
+ xlink:href="#linearGradientWhitePieces"
610
+ id="linearGradient17779"
611
+ gradientUnits="userSpaceOnUse"
612
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,400,200)"
613
+ x1="88.715729"
614
+ y1="286.24783"
615
+ x2="772.14215"
616
+ y2="750.5813" />
617
+ <linearGradient
618
+ inkscape:collect="always"
619
+ xlink:href="#linearGradientWhitePiecesBorder"
620
+ id="linearGradient17781"
621
+ gradientUnits="userSpaceOnUse"
622
+ x1="540.64764"
623
+ y1="59.123825"
624
+ x2="573.25714"
625
+ y2="59.123825"
626
+ gradientTransform="translate(0,200)" />
627
+ <linearGradient
628
+ inkscape:collect="always"
629
+ xlink:href="#linearGradientWhitePieces"
630
+ id="linearGradient17783"
631
+ gradientUnits="userSpaceOnUse"
632
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,400,200)"
633
+ x1="88.715729"
634
+ y1="286.24783"
635
+ x2="772.14215"
636
+ y2="750.5813" />
637
+ <linearGradient
638
+ inkscape:collect="always"
639
+ xlink:href="#linearGradientWhitePiecesBorder"
640
+ id="linearGradient17785"
641
+ gradientUnits="userSpaceOnUse"
642
+ x1="435.50476"
643
+ y1="178.81903"
644
+ x2="530.97144"
645
+ y2="178.81903"
646
+ gradientTransform="translate(0,200)" />
647
+ <linearGradient
648
+ inkscape:collect="always"
649
+ xlink:href="#linearGradientWhitePieces"
650
+ id="linearGradient17787"
651
+ gradientUnits="userSpaceOnUse"
652
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,400,200)"
653
+ x1="88.715729"
654
+ y1="286.24783"
655
+ x2="772.14215"
656
+ y2="750.5813" />
657
+ <linearGradient
658
+ inkscape:collect="always"
659
+ xlink:href="#linearGradientWhitePiecesBorder"
660
+ id="linearGradient17789"
661
+ gradientUnits="userSpaceOnUse"
662
+ x1="539.12384"
663
+ y1="171.96191"
664
+ x2="564.87622"
665
+ y2="171.96191"
666
+ gradientTransform="translate(0,200)" />
667
+ <linearGradient
668
+ inkscape:collect="always"
669
+ xlink:href="#linearGradientWhitePieces"
670
+ id="linearGradient17791"
671
+ gradientUnits="userSpaceOnUse"
672
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,602.28571,200.91429)"
673
+ x1="130.98332"
674
+ y1="444.83487"
675
+ x2="720.01697"
676
+ y2="623.16821" />
677
+ <linearGradient
678
+ inkscape:collect="always"
679
+ xlink:href="#linearGradientWhitePiecesBorder"
680
+ id="linearGradient17793"
681
+ gradientUnits="userSpaceOnUse"
682
+ x1="632.22473"
683
+ y1="174.58551"
684
+ x2="699.48456"
685
+ y2="174.58551"
686
+ gradientTransform="translate(0,200)" />
687
+ <linearGradient
688
+ inkscape:collect="always"
689
+ xlink:href="#linearGradientWhitePieces"
690
+ id="linearGradient17795"
691
+ gradientUnits="userSpaceOnUse"
692
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,598.17143,200.91429)"
693
+ x1="130.98332"
694
+ y1="444.83487"
695
+ x2="720.01697"
696
+ y2="623.16821" />
697
+ <linearGradient
698
+ inkscape:collect="always"
699
+ xlink:href="#linearGradientWhitePiecesBorder"
700
+ id="linearGradient17797"
701
+ gradientUnits="userSpaceOnUse"
702
+ x1="699.29651"
703
+ y1="174.58551"
704
+ x2="766.55627"
705
+ y2="174.58551"
706
+ gradientTransform="translate(0,200)" />
707
+ <linearGradient
708
+ inkscape:collect="always"
709
+ xlink:href="#linearGradientWhitePieces"
710
+ id="linearGradient17799"
711
+ gradientUnits="userSpaceOnUse"
712
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,600,200.91429)"
713
+ x1="130.98332"
714
+ y1="444.83487"
715
+ x2="720.01697"
716
+ y2="623.16821" />
717
+ <linearGradient
718
+ inkscape:collect="always"
719
+ xlink:href="#linearGradientWhitePiecesBorder"
720
+ id="linearGradient17801"
721
+ gradientUnits="userSpaceOnUse"
722
+ x1="656.23303"
723
+ y1="150.81651"
724
+ x2="737.67212"
725
+ y2="150.81651"
726
+ gradientTransform="translate(0,200)" />
727
+ <linearGradient
728
+ inkscape:collect="always"
729
+ xlink:href="#linearGradientWhitePieces"
730
+ id="linearGradient17803"
731
+ gradientUnits="userSpaceOnUse"
732
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,600,200.91429)"
733
+ x1="130.98332"
734
+ y1="444.83487"
735
+ x2="720.01697"
736
+ y2="623.16821" />
737
+ <linearGradient
738
+ inkscape:collect="always"
739
+ xlink:href="#linearGradientWhitePiecesBorder"
740
+ id="linearGradient17805"
741
+ gradientUnits="userSpaceOnUse"
742
+ x1="644.22748"
743
+ y1="93.363823"
744
+ x2="754.01538"
745
+ y2="93.363823"
746
+ gradientTransform="translate(0,200)" />
747
+ <linearGradient
748
+ inkscape:collect="always"
749
+ xlink:href="#linearGradientWhitePieces"
750
+ id="linearGradient17807"
751
+ gradientUnits="userSpaceOnUse"
752
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,600,203.58095)"
753
+ x1="322.64999"
754
+ y1="156.50154"
755
+ x2="501.10233"
756
+ y2="209.83487" />
757
+ <linearGradient
758
+ inkscape:collect="always"
759
+ xlink:href="#linearGradientWhitePiecesBorder"
760
+ id="linearGradient17809"
761
+ gradientUnits="userSpaceOnUse"
762
+ x1="681.69147"
763
+ y1="32.30088"
764
+ x2="717.96625"
765
+ y2="32.30088"
766
+ gradientTransform="translate(0,200)" />
767
+ <linearGradient
768
+ inkscape:collect="always"
769
+ xlink:href="#linearGradientWhitePieces"
770
+ id="linearGradient17811"
771
+ gradientUnits="userSpaceOnUse"
772
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,800.45714,202.74286)"
773
+ x1="163.67708"
774
+ y1="244.15625"
775
+ x2="741.16382"
776
+ y2="814.15625" />
777
+ <linearGradient
778
+ inkscape:collect="always"
779
+ xlink:href="#linearGradientWhitePiecesBorder"
780
+ id="linearGradient17813"
781
+ gradientUnits="userSpaceOnUse"
782
+ x1="827.92651"
783
+ y1="104.44271"
784
+ x2="974.56012"
785
+ y2="104.44271"
786
+ gradientTransform="translate(0,200)" />
787
+ <linearGradient
788
+ inkscape:collect="always"
789
+ xlink:href="#linearGradientWhitePieces"
790
+ id="linearGradient17815"
791
+ gradientUnits="userSpaceOnUse"
792
+ x1="250.33334"
793
+ y1="541.66669"
794
+ x2="671.33337"
795
+ y2="718.33331" />
796
+ <linearGradient
797
+ inkscape:collect="always"
798
+ xlink:href="#linearGradientWhitePiecesBorder"
799
+ id="linearGradient17817"
800
+ gradientUnits="userSpaceOnUse"
801
+ x1="265.33334"
802
+ y1="605"
803
+ x2="644.66669"
804
+ y2="605" />
805
+ </defs>
806
+ <sodipodi:namedview
807
+ id="base"
808
+ pagecolor="#ffffff"
809
+ bordercolor="#666666"
810
+ borderopacity="1.0"
811
+ gridtolerance="10000"
812
+ guidetolerance="10"
813
+ objecttolerance="10"
814
+ inkscape:pageopacity="0.0"
815
+ inkscape:pageshadow="2"
816
+ inkscape:zoom="0.70710678"
817
+ inkscape:cx="536.97605"
818
+ inkscape:cy="323.82747"
819
+ inkscape:document-units="px"
820
+ inkscape:current-layer="BlackPieces"
821
+ showgrid="false"
822
+ inkscape:window-width="1566"
823
+ inkscape:window-height="828"
824
+ inkscape:window-x="98"
825
+ inkscape:window-y="99"
826
+ showguides="false"
827
+ inkscape:window-maximized="0">
828
+ <inkscape:grid
829
+ type="xygrid"
830
+ id="grid5039" />
831
+ </sodipodi:namedview>
832
+ <metadata
833
+ id="metadata2727">
834
+ <rdf:RDF>
835
+ <cc:Work
836
+ rdf:about="">
837
+ <dc:format>image/svg+xml</dc:format>
838
+ <dc:type
839
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
840
+ </cc:Work>
841
+ </rdf:RDF>
842
+ </metadata>
843
+ <g
844
+ inkscape:label="BlackPieces"
845
+ inkscape:groupmode="layer"
846
+ id="BlackPieces">
847
+ <g
848
+ id="BlackKing">
849
+ <rect
850
+ y="0"
851
+ x="0"
852
+ height="200"
853
+ width="200"
854
+ id="rect8054"
855
+ style="fill:none;stroke:none" />
856
+ <path
857
+ inkscape:connector-curvature="0"
858
+ id="rect4417"
859
+ d="m 92.1156,25.14491 0,13.62857 -17.96428,0 0,15.55 17.96428,0 0,27.99286 14.34286,0 0,-27.99286 21.57857,0 0,-15.55 -21.57857,0 0,-13.62857 -14.34286,0 z"
860
+ style="fill:url(#linearGradient2483);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17691);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
861
+ <path
862
+ inkscape:connector-curvature="0"
863
+ sodipodi:nodetypes="csccscsccsc"
864
+ id="path4423"
865
+ d="m 116.7685,105.41059 c 45.6543,-24.41897 31.02431,22.10128 8.36721,36.48227 -14.59749,9.26537 -22.22965,-25.69457 -14.48571,-51.95 l -19.56429,0.23571 c 7.21432,23.23396 2.81457,58.938 -13.05714,51.71429 C 49.75695,129.02555 39.24695,81.68205 84.38469,105.43227 58.3013,52.11164 17.67351,72.50058 21.48571,99.6 c 4.14121,29.43815 37.73984,55.92746 37.05715,67.72857 l 84.30714,0 C 141.4993,153.65548 179.40131,125.53604 180.61429,98.8 181.77855,72.641 136.63157,52.38136 116.7685,105.41059 z"
866
+ style="fill:url(#linearGradient2475);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17689);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
867
+ <rect
868
+ y="173.33334"
869
+ x="45.333344"
870
+ height="15.238094"
871
+ width="109.71429"
872
+ id="rect4429"
873
+ style="fill:url(#linearGradient2472);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17687);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
874
+ </g>
875
+ <g
876
+ id="BlackQueen">
877
+ <rect
878
+ y="0"
879
+ x="200"
880
+ height="200"
881
+ width="200"
882
+ id="rect8054-3"
883
+ style="fill:none;stroke:none" />
884
+ <path
885
+ inkscape:connector-curvature="0"
886
+ sodipodi:nodetypes="ccccc"
887
+ id="path4435"
888
+ d="m 351.31429,34.26429 c -47.85856,143.39987 -55.2529,143.66612 -97.14286,0.67857 -0.25771,58.27118 7.49175,99.25943 18.72143,123 l 54.41428,0 c 12.30698,-23.85133 21.84012,-65.09315 24.00715,-123.67857 z"
889
+ style="fill:url(#linearGradient2371);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17685);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
890
+ <path
891
+ inkscape:connector-curvature="0"
892
+ sodipodi:nodetypes="cccccc"
893
+ id="path4433"
894
+ d="m 302.54762,24.48095 c -17.36795,94.11121 -8.84667,194.98248 -82.40714,42.58572 2.51734,46.59316 13.44436,79.60587 32.82142,98.87857 l 91.9,0 c 19.74371,-19.03196 31.7104,-51.53341 36.29286,-97.65 -70.24868,152.42869 -64.15014,50.38385 -78.60714,-43.81429 z"
895
+ style="fill:url(#linearGradient2363);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17683);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
896
+ <rect
897
+ y="173.10477"
898
+ x="247.3143"
899
+ height="14.857148"
900
+ width="102.09524"
901
+ id="rect4429-1"
902
+ style="fill:url(#linearGradient2361);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17681);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
903
+ </g>
904
+ <g
905
+ id="BlackRook">
906
+ <rect
907
+ y="0"
908
+ x="400"
909
+ height="200"
910
+ width="200"
911
+ id="rect8054-2"
912
+ style="fill:none;stroke:none" />
913
+ <rect
914
+ y="70.552368"
915
+ x="454.09525"
916
+ height="109.71428"
917
+ width="94.476204"
918
+ id="rect1316"
919
+ style="fill:url(#linearGradient2428);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17679);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
920
+ <rect
921
+ y="40.076202"
922
+ x="428.57144"
923
+ height="36.952377"
924
+ width="35.809528"
925
+ id="rect2191"
926
+ style="fill:url(#linearGradient2425);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17677);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
927
+ <rect
928
+ y="48.076202"
929
+ x="483.04761"
930
+ height="15.619044"
931
+ width="33.142853"
932
+ id="rect2193"
933
+ style="fill:url(#linearGradient2422);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17675);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
934
+ <rect
935
+ y="31.314301"
936
+ x="542.4762"
937
+ height="55.619049"
938
+ width="28.952374"
939
+ id="rect2195"
940
+ style="fill:url(#linearGradient2419);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17673);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
941
+ <rect
942
+ y="171.19998"
943
+ x="437.33334"
944
+ height="15.238094"
945
+ width="91.809525"
946
+ id="rect4521"
947
+ style="fill:url(#linearGradient2416);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17671);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
948
+ <rect
949
+ y="157.10477"
950
+ x="540.95239"
951
+ height="29.714285"
952
+ width="22.095238"
953
+ id="rect4523"
954
+ style="fill:url(#linearGradient2413);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17669);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
955
+ </g>
956
+ <g
957
+ id="BlackBishop">
958
+ <rect
959
+ y="0"
960
+ x="600"
961
+ height="200"
962
+ width="200"
963
+ id="rect8054-1"
964
+ style="fill:none;stroke:none" />
965
+ <path
966
+ inkscape:connector-curvature="0"
967
+ id="path2203"
968
+ d="m 697.65596,158.07329 c -1.22313,2.44625 -63.60263,33.02444 -63.60263,33.02444 l 51.54461,-6.52334 12.05802,-26.5011 z"
969
+ style="fill:url(#linearGradient2287);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17667);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
970
+ sodipodi:nodetypes="cccc" />
971
+ <path
972
+ inkscape:connector-curvature="0"
973
+ sodipodi:nodetypes="cccc"
974
+ style="fill:url(#linearGradient2284);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17665);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
975
+ d="m 701.12507,158.07329 c 1.22312,2.44625 63.60263,33.02444 63.60263,33.02444 l -54.59223,-6.52334 -9.0104,-26.5011 z"
976
+ id="path2205" />
977
+ <path
978
+ inkscape:connector-curvature="0"
979
+ style="fill:url(#linearGradient2281);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17663);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
980
+ d="m 675.03331,142.22256 c -1.37551,2.75102 -16.9717,19.31718 -16.9717,19.31718 l 77.78194,5.35345 -19.82495,-32.15336 -40.98529,7.48273 z"
981
+ id="path2237"
982
+ sodipodi:nodetypes="ccccc" />
983
+ <path
984
+ inkscape:connector-curvature="0"
985
+ sodipodi:nodetypes="cccccccc"
986
+ id="path2201"
987
+ d="m 698.71979,35.63264 c -1.3755,2.75102 -52.66374,115.46237 -52.66374,115.46237 L 752.18681,141.74693 698.71979,35.63264 z m 10.32205,35.74563 8.10502,17.76035 -41.81033,41.4087 c 0,0 32.3298,-56.41804 33.70531,-59.16905 z"
988
+ style="fill:url(#linearGradient2278);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17661);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
989
+ <path
990
+ inkscape:connector-curvature="0"
991
+ sodipodi:nodetypes="cccc"
992
+ id="path2199"
993
+ d="m 699.17989,16.75058 c -1.37551,2.75101 -15.65983,26.07067 -15.65983,26.07067 l 32.61761,5.02993 -16.95778,-31.1006 z"
994
+ style="fill:url(#linearGradient2275);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17659);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
995
+ </g>
996
+ <g
997
+ id="BlackKnight">
998
+ <rect
999
+ y="0"
1000
+ x="800"
1001
+ height="200"
1002
+ width="200"
1003
+ id="rect8054-29"
1004
+ style="fill:none;stroke:none" />
1005
+ <path
1006
+ inkscape:connector-curvature="0"
1007
+ sodipodi:nodetypes="ccssscccccsccssc"
1008
+ id="path4618"
1009
+ d="m 886.00254,20.22922 c -0.38571,26.59625 0.97294,16.55231 -15.81037,4.27446 2.59012,17.34932 0.83202,17.92092 -3.65158,25.3449 -2.45377,4.06296 -4.6162,16.85608 -6.15158,19.67596 -9.30365,17.08709 -30.67072,39.3941 -30.63386,46.66632 0.0467,9.20542 10.99488,17.4454 21.00958,7.71103 -9.36939,13.71566 18.91836,-0.0622 30.77285,-8.52211 15.69174,9.65995 37.61437,-0.9107 38.02187,-16.4317 7.14077,35.10764 -59.5404,41.20523 -63.10231,86.74289 49.69674,11.34467 77.37707,-25.61697 107.66824,2.96523 15.48475,-44.89767 16.91373,-119.94615 -55.07284,-148.08412 -9.78397,-3.82434 -13.89416,-13.66176 -23.05,-20.34286 z m -0.30032,49.52554 c -1.62694,2.30834 -5.04835,6.07614 -8.05031,5.52444 -2.77559,-0.5101 -3.89238,-1.45087 -4.02046,-4.73784 -0.10785,-2.76752 9.69853,-2.67825 12.07077,-0.7866 z"
1010
+ style="fill:url(#linearGradient2513);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17657);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1011
+ </g>
1012
+ <g
1013
+ id="BlackPawn">
1014
+ <rect
1015
+ y="0"
1016
+ x="1000"
1017
+ height="200"
1018
+ width="200"
1019
+ id="rect8054-9"
1020
+ style="fill:none;stroke:none" />
1021
+ <path
1022
+ transform="matrix(0.22857143,0,0,0.22857143,996.95238,0.38095)"
1023
+ d="m 636.66667,605 a 181.66667,185 0 1 1 -363.33334,0 181.66667,185 0 1 1 363.33334,0 z"
1024
+ sodipodi:ry="185"
1025
+ sodipodi:rx="181.66667"
1026
+ sodipodi:cy="605"
1027
+ sodipodi:cx="455"
1028
+ id="path1351"
1029
+ style="opacity:0.98999999;fill:url(#linearGradient2232);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17655);stroke-width:16;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1030
+ sodipodi:type="arc" />
1031
+ </g>
1032
+ </g>
1033
+ <g
1034
+ inkscape:groupmode="layer"
1035
+ id="WhitePieces"
1036
+ inkscape:label="WhitePieces">
1037
+ <g
1038
+ id="WhiteKing">
1039
+ <rect
1040
+ style="fill:none;stroke:none"
1041
+ id="rect17693"
1042
+ width="200"
1043
+ height="200"
1044
+ x="0"
1045
+ y="200" />
1046
+ <path
1047
+ style="fill:url(#linearGradient17743);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17745);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1048
+ d="m 92.1156,225.14491 0,13.62857 -17.96428,0 0,15.55 17.96428,0 0,27.99286 14.34286,0 0,-27.99286 21.57857,0 0,-15.55 -21.57857,0 0,-13.62857 -14.34286,0 z"
1049
+ id="path17695"
1050
+ inkscape:connector-curvature="0" />
1051
+ <path
1052
+ style="fill:url(#linearGradient17747);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17749);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1053
+ d="m 116.7685,305.41059 c 45.6543,-24.41897 31.02431,22.10128 8.36721,36.48227 -14.59749,9.26537 -22.22965,-25.69457 -14.48571,-51.95 l -19.56429,0.23571 c 7.21432,23.23396 2.81457,58.938 -13.05714,51.71429 C 49.75695,329.02555 39.24695,281.68205 84.38469,305.43227 58.3013,252.11164 17.67351,272.50058 21.48571,299.6 c 4.14121,29.43815 37.73984,55.92746 37.05715,67.72857 l 84.30714,0 c -1.3507,-13.67309 36.55131,-41.79253 37.76429,-68.52857 1.16426,-26.159 -43.98272,-46.41864 -63.84579,6.61059 z"
1054
+ id="path17697"
1055
+ sodipodi:nodetypes="csccscsccsc"
1056
+ inkscape:connector-curvature="0" />
1057
+ <rect
1058
+ style="fill:url(#linearGradient17751);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17753);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1059
+ id="rect17699"
1060
+ width="109.71429"
1061
+ height="15.238094"
1062
+ x="45.333344"
1063
+ y="373.33334" />
1064
+ </g>
1065
+ <g
1066
+ id="WhiteQueen">
1067
+ <rect
1068
+ style="fill:none;stroke:none"
1069
+ id="rect17701"
1070
+ width="200"
1071
+ height="200"
1072
+ x="200"
1073
+ y="200" />
1074
+ <path
1075
+ style="fill:url(#linearGradient17755);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17757);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1076
+ d="m 351.31429,234.26429 c -47.85856,143.39987 -55.2529,143.66612 -97.14286,0.67857 -0.25771,58.27118 7.49175,99.25943 18.72143,123 l 54.41428,0 c 12.30698,-23.85133 21.84012,-65.09315 24.00715,-123.67857 z"
1077
+ id="path17703"
1078
+ sodipodi:nodetypes="ccccc"
1079
+ inkscape:connector-curvature="0" />
1080
+ <path
1081
+ style="fill:url(#linearGradient17759);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17761);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1082
+ d="m 302.54762,224.48095 c -17.36795,94.11121 -8.84667,194.98248 -82.40714,42.58572 2.51734,46.59316 13.44436,79.60587 32.82142,98.87857 l 91.9,0 c 19.74371,-19.03196 31.7104,-51.53341 36.29286,-97.65 -70.24868,152.42869 -64.15014,50.38385 -78.60714,-43.81429 z"
1083
+ id="path17705"
1084
+ sodipodi:nodetypes="cccccc"
1085
+ inkscape:connector-curvature="0" />
1086
+ <rect
1087
+ style="fill:url(#linearGradient17763);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17765);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1088
+ id="rect17707"
1089
+ width="102.09524"
1090
+ height="14.857148"
1091
+ x="247.3143"
1092
+ y="373.10477" />
1093
+ </g>
1094
+ <g
1095
+ id="WhiteRook">
1096
+ <rect
1097
+ style="fill:none;stroke:none"
1098
+ id="rect17709"
1099
+ width="200"
1100
+ height="200"
1101
+ x="400"
1102
+ y="200" />
1103
+ <rect
1104
+ style="fill:url(#linearGradient17767);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17769);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1105
+ id="rect17711"
1106
+ width="94.476204"
1107
+ height="109.71428"
1108
+ x="454.09525"
1109
+ y="270.55237" />
1110
+ <rect
1111
+ style="fill:url(#linearGradient17771);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17773);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1112
+ id="rect17713"
1113
+ width="35.809528"
1114
+ height="36.952377"
1115
+ x="428.57144"
1116
+ y="240.0762" />
1117
+ <rect
1118
+ style="fill:url(#linearGradient17775);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17777);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1119
+ id="rect17715"
1120
+ width="33.142853"
1121
+ height="15.619044"
1122
+ x="483.04761"
1123
+ y="248.0762" />
1124
+ <rect
1125
+ style="fill:url(#linearGradient17779);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17781);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1126
+ id="rect17717"
1127
+ width="28.952374"
1128
+ height="55.619049"
1129
+ x="542.4762"
1130
+ y="231.3143" />
1131
+ <rect
1132
+ style="fill:url(#linearGradient17783);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17785);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1133
+ id="rect17719"
1134
+ width="91.809525"
1135
+ height="15.238094"
1136
+ x="437.33334"
1137
+ y="371.19998" />
1138
+ <rect
1139
+ style="fill:url(#linearGradient17787);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17789);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1140
+ id="rect17721"
1141
+ width="22.095238"
1142
+ height="29.714285"
1143
+ x="540.95239"
1144
+ y="357.10477" />
1145
+ </g>
1146
+ <g
1147
+ id="WhiteBishop">
1148
+ <rect
1149
+ style="fill:none;stroke:none"
1150
+ id="rect17723"
1151
+ width="200"
1152
+ height="200"
1153
+ x="600"
1154
+ y="200" />
1155
+ <path
1156
+ sodipodi:nodetypes="cccc"
1157
+ style="fill:url(#linearGradient17791);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17793);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1158
+ d="m 697.65596,358.07329 c -1.22313,2.44625 -63.60263,33.02444 -63.60263,33.02444 l 51.54461,-6.52334 12.05802,-26.5011 z"
1159
+ id="path17725"
1160
+ inkscape:connector-curvature="0" />
1161
+ <path
1162
+ id="path17727"
1163
+ d="m 701.12507,358.07329 c 1.22312,2.44625 63.60263,33.02444 63.60263,33.02444 l -54.59223,-6.52334 -9.0104,-26.5011 z"
1164
+ style="fill:url(#linearGradient17795);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17797);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1165
+ sodipodi:nodetypes="cccc"
1166
+ inkscape:connector-curvature="0" />
1167
+ <path
1168
+ sodipodi:nodetypes="ccccc"
1169
+ id="path17729"
1170
+ d="m 675.03331,342.22256 c -1.37551,2.75102 -16.9717,19.31718 -16.9717,19.31718 l 77.78194,5.35345 -19.82495,-32.15336 -40.98529,7.48273 z"
1171
+ style="fill:url(#linearGradient17799);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17801);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1172
+ inkscape:connector-curvature="0" />
1173
+ <path
1174
+ style="fill:url(#linearGradient17803);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17805);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1175
+ d="m 698.71979,235.63264 c -1.3755,2.75102 -52.66374,115.46237 -52.66374,115.46237 l 106.13076,-9.34808 -53.46702,-106.11429 z m 10.32205,35.74563 8.10502,17.76035 -41.81033,41.4087 c 0,0 32.3298,-56.41804 33.70531,-59.16905 z"
1176
+ id="path17731"
1177
+ sodipodi:nodetypes="cccccccc"
1178
+ inkscape:connector-curvature="0" />
1179
+ <path
1180
+ style="fill:url(#linearGradient17807);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17809);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1181
+ d="m 699.17989,216.75058 c -1.37551,2.75101 -15.65983,26.07067 -15.65983,26.07067 l 32.61761,5.02993 -16.95778,-31.1006 z"
1182
+ id="path17733"
1183
+ sodipodi:nodetypes="cccc"
1184
+ inkscape:connector-curvature="0" />
1185
+ </g>
1186
+ <g
1187
+ id="WhiteKnight">
1188
+ <rect
1189
+ style="fill:none;stroke:none"
1190
+ id="rect17735"
1191
+ width="200"
1192
+ height="200"
1193
+ x="800"
1194
+ y="200" />
1195
+ <path
1196
+ style="fill:url(#linearGradient17811);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17813);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1197
+ d="m 886.00254,220.22922 c -0.38571,26.59625 0.97294,16.55231 -15.81037,4.27446 2.59012,17.34932 0.83202,17.92092 -3.65158,25.3449 -2.45377,4.06296 -4.6162,16.85608 -6.15158,19.67596 -9.30365,17.08709 -30.67072,39.3941 -30.63386,46.66632 0.0467,9.20542 10.99488,17.4454 21.00958,7.71103 -9.36939,13.71566 18.91836,-0.0622 30.77285,-8.52211 15.69174,9.65995 37.61437,-0.9107 38.02187,-16.4317 7.14077,35.10764 -59.5404,41.20523 -63.10231,86.74289 49.69674,11.34467 77.37707,-25.61697 107.66824,2.96523 15.48475,-44.89767 16.91373,-119.94615 -55.07284,-148.08412 -9.78397,-3.82434 -13.89416,-13.66176 -23.05,-20.34286 z m -0.30032,49.52554 c -1.62694,2.30834 -5.04835,6.07614 -8.05031,5.52444 -2.77559,-0.5101 -3.89238,-1.45087 -4.02046,-4.73784 -0.10785,-2.76752 9.69853,-2.67825 12.07077,-0.7866 z"
1198
+ id="path17737"
1199
+ sodipodi:nodetypes="ccssscccccsccssc"
1200
+ inkscape:connector-curvature="0" />
1201
+ </g>
1202
+ <g
1203
+ id="WhitePawn">
1204
+ <rect
1205
+ style="fill:none;stroke:none"
1206
+ id="rect17739"
1207
+ width="200"
1208
+ height="200"
1209
+ x="1000"
1210
+ y="200" />
1211
+ <path
1212
+ sodipodi:type="arc"
1213
+ style="opacity:0.98999999;fill:url(#linearGradient17815);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient17817);stroke-width:16;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1214
+ id="path17741"
1215
+ sodipodi:cx="455"
1216
+ sodipodi:cy="605"
1217
+ sodipodi:rx="181.66667"
1218
+ sodipodi:ry="185"
1219
+ d="m 636.66667,605 a 181.66667,185 0 1 1 -363.33334,0 181.66667,185 0 1 1 363.33334,0 z"
1220
+ transform="matrix(0.22857143,0,0,0.22857143,996.95238,200.38095)" />
1221
+ </g>
1222
+ </g>
1223
+ </svg>