kokopu-react 1.7.1 → 1.9.0
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.
- package/dist/lib/Chessboard.js +84 -97
- package/dist/lib/ErrorBox.js +3 -1
- package/dist/lib/Movetext.js +24 -15
- package/dist/lib/i18n.js +2 -1
- package/dist/lib/impl/ArrowTip.js +2 -2
- package/dist/lib/impl/Motion.js +133 -0
- package/dist/lib/impl/util.js +12 -0
- package/doc_src/demo/PageChessboardInteraction.js +9 -9
- package/doc_src/demo/PageChessboardMove.js +8 -8
- package/doc_src/demo/PageMovetextInteraction.js +2 -2
- package/graphic_test_src/02_chessboard_simple.js +2 -2
- package/graphic_test_src/03_chessboard_flipped.js +2 -2
- package/graphic_test_src/05_chessboard_move.js +4 -4
- package/graphic_test_src/06a_chessboard_animated_move.js +36 -0
- package/graphic_test_src/06b_chessboard_animated_move.js +36 -0
- package/graphic_test_src/06c_chessboard_animated_move.js +36 -0
- package/graphic_test_src/{06_chessboard_theme.js → 07_chessboard_theme.js} +0 -0
- package/graphic_test_src/{07_chessboard_click_squares.js → 08_chessboard_click_squares.js} +0 -0
- package/graphic_test_src/{08_chessboard_move_pieces.js → 09_chessboard_move_pieces.js} +0 -0
- package/graphic_test_src/{09_chessboard_edit_arrows.js → 10_chessboard_edit_arrows.js} +0 -0
- package/graphic_test_src/{10_chessboard_play_moves.js → 11_chessboard_play_moves.js} +0 -0
- package/graphic_test_src/{11_chessboard_play_promotions.js → 12_chessboard_play_promotions.js} +0 -0
- package/graphic_test_src/{12_movetext_simple.js → 13_movetext_simple.js} +3 -3
- package/graphic_test_src/{13_movetext_error.js → 14_movetext_error.js} +4 -3
- package/graphic_test_src/{14_movetext_html.js → 15_movetext_html.js} +0 -0
- package/graphic_test_src/{15_movetext_options.js → 16_movetext_options.js} +0 -0
- package/graphic_test_src/{16_movetext_interaction.js → 17_movetext_interaction.js} +0 -0
- package/graphic_test_src/common/games.pgn +3 -3
- package/package.json +17 -19
- package/scripts/docker-compose.yml +1 -1
- package/src/Chessboard.js +42 -42
- package/src/ErrorBox.js +2 -1
- package/src/Movetext.js +20 -16
- package/src/i18n.js +1 -0
- package/src/impl/ArrowTip.js +2 -2
- package/src/impl/Motion.js +99 -0
- package/src/impl/util.js +8 -0
- package/test/4_chessboard_graphic.js +4 -1
- package/test/5_chessboard_interaction.js +5 -5
- package/test/6_chessboard_play_moves.js +4 -4
- package/test/7_movetext_graphic.js +4 -4
- package/test/8_movetext_interaction.js +2 -2
- package/test/common/graphic.js +6 -0
- package/test/references/06a_chessboard_animated_move/0.png +0 -0
- package/test/references/06a_chessboard_animated_move/1.png +0 -0
- package/test/references/06a_chessboard_animated_move/2.png +0 -0
- package/test/references/06a_chessboard_animated_move/3.png +0 -0
- package/test/references/06a_chessboard_animated_move/4.png +0 -0
- package/test/references/06a_chessboard_animated_move/5.png +0 -0
- package/test/references/06b_chessboard_animated_move/0.png +0 -0
- package/test/references/06b_chessboard_animated_move/1.png +0 -0
- package/test/references/06b_chessboard_animated_move/2.png +0 -0
- package/test/references/06b_chessboard_animated_move/3.png +0 -0
- package/test/references/06b_chessboard_animated_move/4.png +0 -0
- package/test/references/06b_chessboard_animated_move/5.png +0 -0
- package/test/references/06c_chessboard_animated_move/0.png +0 -0
- package/test/references/06c_chessboard_animated_move/1.png +0 -0
- package/test/references/06c_chessboard_animated_move/2.png +0 -0
- package/test/references/06c_chessboard_animated_move/3.png +0 -0
- package/test/references/06c_chessboard_animated_move/4.png +0 -0
- package/test/references/06c_chessboard_animated_move/5.png +0 -0
- package/test/references/{06_chessboard_theme → 07_chessboard_theme}/0.png +0 -0
- package/test/references/{06_chessboard_theme → 07_chessboard_theme}/1.png +0 -0
- package/test/references/{06_chessboard_theme → 07_chessboard_theme}/2.png +0 -0
- package/test/references/{06_chessboard_theme → 07_chessboard_theme}/3.png +0 -0
- package/test/references/{06_chessboard_theme → 07_chessboard_theme}/4.png +0 -0
- package/test/references/{06_chessboard_theme → 07_chessboard_theme}/5.png +0 -0
- package/test/references/{06_chessboard_theme → 07_chessboard_theme}/6.png +0 -0
- package/test/references/{06_chessboard_theme → 07_chessboard_theme}/7.png +0 -0
- package/test/references/{06_chessboard_theme → 07_chessboard_theme}/8.png +0 -0
- package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/after_move.png +0 -0
- package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/empty_square.png +0 -0
- package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/null_vector.png +0 -0
- package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/out_of_board.png +0 -0
- package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/over_arrow_marker.png +0 -0
- package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/over_empty.png +0 -0
- package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/over_non_empty_1.png +0 -0
- package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/over_non_empty_2.png +0 -0
- package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/over_square_marker.png +0 -0
- package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/over_text_marker.png +0 -0
- package/test/references/{09_chessboard_edit_arrows → 10_chessboard_edit_arrows}/base_1.png +0 -0
- package/test/references/{09_chessboard_edit_arrows → 10_chessboard_edit_arrows}/base_2.png +0 -0
- package/test/references/{09_chessboard_edit_arrows → 10_chessboard_edit_arrows}/edit_color_not_set.png +0 -0
- package/test/references/{09_chessboard_edit_arrows → 10_chessboard_edit_arrows}/null_vector.png +0 -0
- package/test/references/{09_chessboard_edit_arrows → 10_chessboard_edit_arrows}/out_of_board.png +0 -0
- package/test/references/{09_chessboard_edit_arrows → 10_chessboard_edit_arrows}/over_arrow_marker.png +0 -0
- package/test/references/{09_chessboard_edit_arrows → 10_chessboard_edit_arrows}/over_square_marker.png +0 -0
- package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/castling_move.png +0 -0
- package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/chess960_ambiguous_king_move.png +0 -0
- package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/chess960_castling_move_1.png +0 -0
- package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/chess960_castling_move_2.png +0 -0
- package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/chess960_non_kxr_castling.png +0 -0
- package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/illegal_move.png +0 -0
- package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/illegal_position.png +0 -0
- package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/null_vector.png +0 -0
- package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/out_of_board.png +0 -0
- package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/regular_move_1.png +0 -0
- package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/regular_move_2.png +0 -0
- package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/wrong_color.png +0 -0
- package/test/references/{11_chessboard_play_promotions → 12_chessboard_play_promotions}/antichess_promotion.png +0 -0
- package/test/references/{11_chessboard_play_promotions → 12_chessboard_play_promotions}/cancel_promotion.png +0 -0
- package/test/references/{11_chessboard_play_promotions → 12_chessboard_play_promotions}/regular_promotion_1.png +0 -0
- package/test/references/{11_chessboard_play_promotions → 12_chessboard_play_promotions}/regular_promotion_2.png +0 -0
- package/test/references/{12_movetext_simple → 13_movetext_simple}/0.png +0 -0
- package/test/references/{12_movetext_simple → 13_movetext_simple}/1.png +0 -0
- package/test/references/{12_movetext_simple → 13_movetext_simple}/2.png +0 -0
- package/test/references/{12_movetext_simple → 13_movetext_simple}/3.png +0 -0
- package/test/references/14_movetext_error/0.png +0 -0
- package/test/references/14_movetext_error/1.png +0 -0
- package/test/references/{13_movetext_error/1.png → 14_movetext_error/2.png} +0 -0
- package/test/references/14_movetext_error/3.png +0 -0
- package/test/references/14_movetext_error/4.png +0 -0
- package/test/references/15_movetext_html/0.png +0 -0
- package/test/references/15_movetext_html/1.png +0 -0
- package/test/references/{14_movetext_html → 15_movetext_html}/2.png +0 -0
- package/test/references/{15_movetext_options → 16_movetext_options}/0.png +0 -0
- package/test/references/{15_movetext_options → 16_movetext_options}/1.png +0 -0
- package/test/references/{15_movetext_options → 16_movetext_options}/2.png +0 -0
- package/test/references/{15_movetext_options → 16_movetext_options}/3.png +0 -0
- package/test/references/{16_movetext_interaction → 17_movetext_interaction}/0.png +0 -0
- package/test/references/{16_movetext_interaction → 17_movetext_interaction}/1.png +0 -0
- package/test/references/{16_movetext_interaction → 17_movetext_interaction}/2.png +0 -0
- package/CHANGELOG.md +0 -131
- package/graphics/chess_sprites/cburnett/bb.svg +0 -45
- package/graphics/chess_sprites/cburnett/bk.svg +0 -47
- package/graphics/chess_sprites/cburnett/bn.svg +0 -37
- package/graphics/chess_sprites/cburnett/bp.svg +0 -19
- package/graphics/chess_sprites/cburnett/bq.svg +0 -58
- package/graphics/chess_sprites/cburnett/br.svg +0 -60
- package/graphics/chess_sprites/cburnett/bx.svg +0 -56
- package/graphics/chess_sprites/cburnett/wb.svg +0 -48
- package/graphics/chess_sprites/cburnett/wk.svg +0 -26
- package/graphics/chess_sprites/cburnett/wn.svg +0 -37
- package/graphics/chess_sprites/cburnett/wp.svg +0 -19
- package/graphics/chess_sprites/cburnett/wq.svg +0 -60
- package/graphics/chess_sprites/cburnett/wr.svg +0 -44
- package/graphics/chess_sprites/cburnett/wx.svg +0 -56
- package/graphics/chess_sprites/generate_sprites.sh +0 -135
- package/graphics/chess_sprites/mmonge/celtic-bx.svg +0 -112
- package/graphics/chess_sprites/mmonge/celtic-wx.svg +0 -111
- package/graphics/chess_sprites/mmonge/celtic.svg +0 -1576
- package/graphics/chess_sprites/mmonge/eyes-spatial-bx.svg +0 -101
- package/graphics/chess_sprites/mmonge/eyes-spatial-wx.svg +0 -100
- package/graphics/chess_sprites/mmonge/eyes.svg +0 -2538
- package/graphics/chess_sprites/mmonge/fantasy-bx.svg +0 -112
- package/graphics/chess_sprites/mmonge/fantasy-wx.svg +0 -111
- package/graphics/chess_sprites/mmonge/fantasy.svg +0 -5497
- package/graphics/chess_sprites/mmonge/fantasy_alt.svg +0 -3742
- package/graphics/chess_sprites/mmonge/freak.svg +0 -3479
- package/graphics/chess_sprites/mmonge/prmi.svg +0 -6776
- package/graphics/chess_sprites/mmonge/skulls-bx.svg +0 -124
- package/graphics/chess_sprites/mmonge/skulls-wx.svg +0 -111
- package/graphics/chess_sprites/mmonge/skulls.svg +0 -12978
- package/graphics/chess_sprites/mmonge/spatial.svg +0 -1223
- package/graphics/logo-small.svg +0 -14
- package/graphics/logo.svg +0 -26
- package/test/references/13_movetext_error/0.png +0 -0
- package/test/references/13_movetext_error/2.png +0 -0
- package/test/references/13_movetext_error/3.png +0 -0
- package/test/references/14_movetext_html/0.png +0 -0
- package/test/references/14_movetext_html/1.png +0 -0
package/test/common/graphic.js
CHANGED
|
@@ -38,6 +38,9 @@ const UNREACHABLE_TEST_CLIENT_MESSAGE =
|
|
|
38
38
|
'Do not forget to run `npm run test_env:stop` when finished.\n';
|
|
39
39
|
|
|
40
40
|
|
|
41
|
+
const ANIMATION_DELAY = 200;
|
|
42
|
+
|
|
43
|
+
|
|
41
44
|
/**
|
|
42
45
|
* Open a browser in the client (+ ensure everything else is ready to execute graphic tests).
|
|
43
46
|
*/
|
|
@@ -111,6 +114,9 @@ async function fetchTestCase(browserContext, testCaseName) {
|
|
|
111
114
|
// Fetch the new page.
|
|
112
115
|
await browserContext.driver.get(`file:///app/build/test_graphic/${testCaseName}/index.html`);
|
|
113
116
|
browserContext.latestTestCase = testCaseName;
|
|
117
|
+
|
|
118
|
+
// Wait until the end of the animations.
|
|
119
|
+
await new Promise(resolve => setTimeout(resolve, ANIMATION_DELAY));
|
|
114
120
|
}
|
|
115
121
|
|
|
116
122
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/after_move.png
RENAMED
|
File without changes
|
package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/empty_square.png
RENAMED
|
File without changes
|
package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/null_vector.png
RENAMED
|
File without changes
|
package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/out_of_board.png
RENAMED
|
File without changes
|
|
File without changes
|
package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/over_empty.png
RENAMED
|
File without changes
|
package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/over_non_empty_1.png
RENAMED
|
File without changes
|
package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/over_non_empty_2.png
RENAMED
|
File without changes
|
|
File without changes
|
package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/over_text_marker.png
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/test/references/{09_chessboard_edit_arrows → 10_chessboard_edit_arrows}/null_vector.png
RENAMED
|
File without changes
|
package/test/references/{09_chessboard_edit_arrows → 10_chessboard_edit_arrows}/out_of_board.png
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/castling_move.png
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/illegal_move.png
RENAMED
|
File without changes
|
package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/illegal_position.png
RENAMED
|
File without changes
|
package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/null_vector.png
RENAMED
|
File without changes
|
package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/out_of_board.png
RENAMED
|
File without changes
|
package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/regular_move_1.png
RENAMED
|
File without changes
|
package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/regular_move_2.png
RENAMED
|
File without changes
|
package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/wrong_color.png
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/CHANGELOG.md
DELETED
|
@@ -1,131 +0,0 @@
|
|
|
1
|
-
ChangeLog
|
|
2
|
-
=========
|
|
3
|
-
|
|
4
|
-
1.7.1 (June 23, 2022)
|
|
5
|
-
---------------------
|
|
6
|
-
* `React` and `kokopu` declared as peer dependencies.
|
|
7
|
-
* Minor fixes.
|
|
8
|
-
|
|
9
|
-
1.7.0 (June 22, 2022)
|
|
10
|
-
---------------------
|
|
11
|
-
* Upgrade React to React 18.
|
|
12
|
-
* Add support for color blue for markers.
|
|
13
|
-
* Allow customization of the move arrow color in the `Chessboard` component.
|
|
14
|
-
* Change the property names used to define the marker colors in the objects returned by `Chessboard.colorsets()`:
|
|
15
|
-
`g`, `r`, `y` and `highlight` have become respectively `cg`, `cr`, `cy` and `cb`.
|
|
16
|
-
|
|
17
|
-
1.6.0 (June 1, 2022)
|
|
18
|
-
--------------------
|
|
19
|
-
* Allow block-formatting HTML tags in PGN comments.
|
|
20
|
-
* Provide `formatMove` and `moveFormatter`.
|
|
21
|
-
|
|
22
|
-
1.5.5 (May 18, 2022)
|
|
23
|
-
--------------------
|
|
24
|
-
* Upgrade dependencies.
|
|
25
|
-
* Remove dependency with security issue.
|
|
26
|
-
|
|
27
|
-
1.5.4 (May 1, 2022)
|
|
28
|
-
-------------------
|
|
29
|
-
* Provide method `Chessboard#size(..)` to retrieve the width/height of a `Chessboard` component instance.
|
|
30
|
-
|
|
31
|
-
1.5.3 (April 30, 2022)
|
|
32
|
-
----------------------
|
|
33
|
-
* Add method `Movetext#focus()`.
|
|
34
|
-
* Expose static methods `Movetext#firstNodeId(..)`, `Movetext#previousNodeId(..)`, `Movetext#nextNodeId(..)`
|
|
35
|
-
and `Movetext#lastNodeId(..)`.
|
|
36
|
-
|
|
37
|
-
1.5.2 (April 29, 2022)
|
|
38
|
-
----------------------
|
|
39
|
-
* Prevent default actions when handling key events in component `Movetext`.
|
|
40
|
-
|
|
41
|
-
1.5.1 (April 29, 2022)
|
|
42
|
-
----------------------
|
|
43
|
-
* Add argument `evtOrigin` in `onMoveSelected(..)` callback in component `Movetext`.
|
|
44
|
-
|
|
45
|
-
1.5.0 (April 27, 2022)
|
|
46
|
-
----------------------
|
|
47
|
-
* Add component `Movetext` to display chess games.
|
|
48
|
-
|
|
49
|
-
1.4.1 (January 1, 2022)
|
|
50
|
-
-----------------------
|
|
51
|
-
* Upgrade dependencies.
|
|
52
|
-
|
|
53
|
-
1.4.0 (October 21, 2021)
|
|
54
|
-
------------------------
|
|
55
|
-
* Add support for plus/times/dot/circle in text markers.
|
|
56
|
-
|
|
57
|
-
1.3.1 (September 27, 2021)
|
|
58
|
-
--------------------------
|
|
59
|
-
* Fix missing export for `ErrorBox`.
|
|
60
|
-
|
|
61
|
-
1.3.0 (September 26, 2021)
|
|
62
|
-
--------------------------
|
|
63
|
-
* Expose component `ErrorBox`.
|
|
64
|
-
* Minor fixes in documentation.
|
|
65
|
-
|
|
66
|
-
1.2.0 (September 13, 2021)
|
|
67
|
-
--------------------------
|
|
68
|
-
* Fix ambiguous castling move issue at Chess960.
|
|
69
|
-
|
|
70
|
-
1.1.0 (August 15, 2021)
|
|
71
|
-
-----------------------
|
|
72
|
-
* Provide interaction mode `playMoves`.
|
|
73
|
-
* Add code coverage.
|
|
74
|
-
|
|
75
|
-
1.0.2 (August 10, 2021)
|
|
76
|
-
-----------------------
|
|
77
|
-
* No need for ReactDOM in dependencies (dev-dependencies only).
|
|
78
|
-
|
|
79
|
-
1.0.1 (July 30, 2021)
|
|
80
|
-
---------------------
|
|
81
|
-
* Wrong config in `package.json`.
|
|
82
|
-
|
|
83
|
-
1.0.0 (July 30, 2021)
|
|
84
|
-
---------------------
|
|
85
|
-
* Implement graphic tests (using Selenium).
|
|
86
|
-
* Provide documentation.
|
|
87
|
-
* Fewer exported symbols: `adaptSquareSize(..)`, `colorsets` and `piecesets` are now defined as static members of `Chessboard`.
|
|
88
|
-
|
|
89
|
-
0.99.11 (June 6, 2021)
|
|
90
|
-
----------------------
|
|
91
|
-
* Proper handling of small-screen limits in `adaptSquareSize(..)`.
|
|
92
|
-
|
|
93
|
-
0.99.10 (May 30, 2021)
|
|
94
|
-
----------------------
|
|
95
|
-
* Support limits for square-size and coordinate-visible on small-screen devices.
|
|
96
|
-
|
|
97
|
-
0.99.9 (May 24, 2021)
|
|
98
|
-
---------------------
|
|
99
|
-
* Utility functions to parse/flatten marker sets.
|
|
100
|
-
* SVG icons for markers.
|
|
101
|
-
|
|
102
|
-
0.99.8 (May 19, 2021)
|
|
103
|
-
---------------------
|
|
104
|
-
* Simplify arrow marker parameter definition.
|
|
105
|
-
|
|
106
|
-
0.99.6 (May 7, 2021)
|
|
107
|
-
--------------------
|
|
108
|
-
* Revert change brought by version 0.99.5.
|
|
109
|
-
|
|
110
|
-
0.99.5 (May 7, 2021)
|
|
111
|
-
--------------------
|
|
112
|
-
* Limit chessboard with to 90% of available space.
|
|
113
|
-
|
|
114
|
-
0.99.4 (May 5, 2021)
|
|
115
|
-
--------------------
|
|
116
|
-
* Provide function `adaptSquareSize(..)`.
|
|
117
|
-
* Minor fixes.
|
|
118
|
-
|
|
119
|
-
0.99.3 (May 3, 2021)
|
|
120
|
-
--------------------
|
|
121
|
-
* Change attribute 'isFlipped' into 'flipped'.
|
|
122
|
-
* Minor fixes.
|
|
123
|
-
|
|
124
|
-
0.99.2 (April 25, 2021)
|
|
125
|
-
-----------------------
|
|
126
|
-
* Improve chessboard attribute validation.
|
|
127
|
-
* Upgrade to Kokopu 1.8.0.
|
|
128
|
-
|
|
129
|
-
0.99.0 (April 3, 2021)
|
|
130
|
-
----------------------
|
|
131
|
-
* First public draft.
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
-
<svg
|
|
4
|
-
xmlns:svg="http://www.w3.org/2000/svg"
|
|
5
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
-
version="1.1"
|
|
7
|
-
width="45"
|
|
8
|
-
height="45"
|
|
9
|
-
id="svg3128">
|
|
10
|
-
<defs
|
|
11
|
-
id="defs3130" />
|
|
12
|
-
<g
|
|
13
|
-
style="display:inline"
|
|
14
|
-
id="layer1">
|
|
15
|
-
<path
|
|
16
|
-
d="M 9,36 C 12.385,35.028 19.115,36.431 22.5,34 C 25.885,36.431 32.615,35.028 36,36 C 36,36 37.646,36.542 39,38 C 38.323,38.972 37.354,38.986 36,38.5 C 32.615,37.528 25.885,38.958 22.5,37.5 C 19.115,38.958 12.385,37.528 9,38.5 C 7.6459,38.986 6.6771,38.972 6,38 C 7.3541,36.055 9,36 9,36 z "
|
|
17
|
-
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
18
|
-
id="path4582" />
|
|
19
|
-
<path
|
|
20
|
-
d="M 15,32 C 17.5,34.5 27.5,34.5 30,32 C 30.5,30.5 30,30 30,30 C 30,27.5 27.5,26 27.5,26 C 33,24.5 33.5,14.5 22.5,10.5 C 11.5,14.5 12,24.5 17.5,26 C 17.5,26 15,27.5 15,30 C 15,30 14.5,30.5 15,32 z "
|
|
21
|
-
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
22
|
-
id="path4584" />
|
|
23
|
-
<path
|
|
24
|
-
d="M 25 10 A 2.5 2.5 0 1 1 20,10 A 2.5 2.5 0 1 1 25 10 z"
|
|
25
|
-
transform="translate(0,-2)"
|
|
26
|
-
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
27
|
-
id="path4586" />
|
|
28
|
-
<path
|
|
29
|
-
d="M 17.5,26 L 27.5,26"
|
|
30
|
-
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
31
|
-
id="path4588" />
|
|
32
|
-
<path
|
|
33
|
-
d="M 15,30 L 30,30"
|
|
34
|
-
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
35
|
-
id="path4590" />
|
|
36
|
-
<path
|
|
37
|
-
d="M 22.5,15.5 L 22.5,20.5"
|
|
38
|
-
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
39
|
-
id="path4592" />
|
|
40
|
-
<path
|
|
41
|
-
d="M 20,18 L 25,18"
|
|
42
|
-
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
43
|
-
id="path4594" />
|
|
44
|
-
</g>
|
|
45
|
-
</svg>
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
-
<svg
|
|
4
|
-
xmlns:svg="http://www.w3.org/2000/svg"
|
|
5
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
-
version="1.1"
|
|
7
|
-
width="45"
|
|
8
|
-
height="45"
|
|
9
|
-
id="svg3128">
|
|
10
|
-
<defs
|
|
11
|
-
id="defs3130" />
|
|
12
|
-
<g
|
|
13
|
-
id="layer1">
|
|
14
|
-
<path
|
|
15
|
-
d="M 22.5,11.625 L 22.5,6"
|
|
16
|
-
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
17
|
-
id="path6570" />
|
|
18
|
-
<path
|
|
19
|
-
d="M 22.5,25 C 22.5,25 27,17.5 25.5,14.5 C 25.5,14.5 24.5,12 22.5,12 C 20.5,12 19.5,14.5 19.5,14.5 C 18,17.5 22.5,25 22.5,25"
|
|
20
|
-
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
21
|
-
id="path5683" />
|
|
22
|
-
<path
|
|
23
|
-
d="M 11.5,37 C 17,40.5 27,40.5 32.5,37 L 32.5,30 C 32.5,30 41.5,25.5 38.5,19.5 C 34.5,13 25,16 22.5,23.5 L 22.5,27 L 22.5,23.5 C 19,16 9.5,13 6.5,19.5 C 3.5,25.5 11.5,29.5 11.5,29.5 L 11.5,37 z "
|
|
24
|
-
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
25
|
-
id="path5681" />
|
|
26
|
-
<path
|
|
27
|
-
d="M 20,8 L 25,8"
|
|
28
|
-
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
29
|
-
id="path6572" />
|
|
30
|
-
<path
|
|
31
|
-
d="M 11.5,29.5 C 17,27 27,27 32.5,30"
|
|
32
|
-
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
33
|
-
id="path6574" />
|
|
34
|
-
<path
|
|
35
|
-
d="M 11.5,37 C 17,34.5 27,34.5 32.5,37"
|
|
36
|
-
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
37
|
-
id="path6576" />
|
|
38
|
-
<path
|
|
39
|
-
d="M 11.5,33.5 C 17,31.5 27,31.5 32.5,33.5"
|
|
40
|
-
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
41
|
-
id="path6578" />
|
|
42
|
-
<path
|
|
43
|
-
d="M 32,29.5 C 32,29.5 40.5,25.5 38.026,19.847 C 34.147,13.997 25,18 22.5,24.5 L 22.512,26.597 L 22.5,24.5 C 20,18 9.9064,13.997 6.9975,19.847 C 4.5,25.5 11.846,28.847 11.846,28.847"
|
|
44
|
-
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
45
|
-
id="path5638" />
|
|
46
|
-
</g>
|
|
47
|
-
</svg>
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
-
<svg
|
|
4
|
-
xmlns:svg="http://www.w3.org/2000/svg"
|
|
5
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
-
version="1.1"
|
|
7
|
-
width="45"
|
|
8
|
-
height="45"
|
|
9
|
-
id="svg3128">
|
|
10
|
-
<defs
|
|
11
|
-
id="defs3130" />
|
|
12
|
-
<g
|
|
13
|
-
id="layer1">
|
|
14
|
-
<path
|
|
15
|
-
d="M 22,10 C 32.5,11 38.5,18 38,39 L 15,39 C 15,30 25,32.5 23,18"
|
|
16
|
-
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
|
17
|
-
id="path3491" />
|
|
18
|
-
<path
|
|
19
|
-
d="M 24,18 C 24.384,20.911 18.447,25.369 16,27 C 13,29 13.181,31.343 11,31 C 9.9583,30.056 12.413,27.962 11,28 C 10,28 11.187,29.232 10,30 C 9,30 5.9968,31 6,26 C 6,24 12,14 12,14 C 12,14 13.886,12.098 14,10.5 C 13.274,9.5056 13.5,8.5 13.5,7.5 C 14.5,6.5 16.5,10 16.5,10 L 18.5,10 C 18.5,10 19.282,8.0081 21,7 C 22,7 22,10 22,10"
|
|
20
|
-
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
|
21
|
-
id="path3495" />
|
|
22
|
-
<path
|
|
23
|
-
d="M 9 23.5 A 0.5 0.5 0 1 1 8,23.5 A 0.5 0.5 0 1 1 9 23.5 z"
|
|
24
|
-
transform="translate(0.5,2)"
|
|
25
|
-
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
26
|
-
id="path3499" />
|
|
27
|
-
<path
|
|
28
|
-
d="M 15 15.5 A 0.5 1.5 0 1 1 14,15.5 A 0.5 1.5 0 1 1 15 15.5 z"
|
|
29
|
-
transform="matrix(0.866,0.5,-0.5,0.866,9.6926,-5.1734)"
|
|
30
|
-
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
31
|
-
id="path3501" />
|
|
32
|
-
<path
|
|
33
|
-
d="M 24.55,10.4 L 24.25,11.5 L 24.8,11.6 C 27.901,12.077 31.124,13.834 33.375,18.094 C 35.626,22.353 36.297,29.057 35.8,39 L 35.75,39.5 L 37.5,39.5 L 37.5,39 C 38.003,28.943 36.624,22.147 34.25,17.656 C 31.876,13.166 28.461,11.023 25.063,10.5 L 24.55,10.4 z "
|
|
34
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
35
|
-
id="path8049" />
|
|
36
|
-
</g>
|
|
37
|
-
</svg>
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
-
<svg
|
|
4
|
-
xmlns:svg="http://www.w3.org/2000/svg"
|
|
5
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
-
version="1.1"
|
|
7
|
-
width="45"
|
|
8
|
-
height="45"
|
|
9
|
-
id="svg3128">
|
|
10
|
-
<defs
|
|
11
|
-
id="defs3130" />
|
|
12
|
-
<g
|
|
13
|
-
id="layer1">
|
|
14
|
-
<path
|
|
15
|
-
d="M 22,9 C 19.792,9 18,10.792 18,13 C 18,13.885 18.294,14.712 18.781,15.375 C 16.829,16.497 15.5,18.588 15.5,21 C 15.5,23.034 16.442,24.839 17.906,26.031 C 14.907,27.089 10.5,31.578 10.5,39.5 L 33.5,39.5 C 33.5,31.578 29.093,27.089 26.094,26.031 C 27.558,24.839 28.5,23.034 28.5,21 C 28.5,18.588 27.171,16.497 25.219,15.375 C 25.706,14.712 26,13.885 26,13 C 26,10.792 24.208,9 22,9 z "
|
|
16
|
-
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:10;stroke-opacity:1"
|
|
17
|
-
id="path3194" />
|
|
18
|
-
</g>
|
|
19
|
-
</svg>
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
-
<svg
|
|
4
|
-
xmlns:svg="http://www.w3.org/2000/svg"
|
|
5
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
-
version="1.1"
|
|
7
|
-
width="45"
|
|
8
|
-
height="45"
|
|
9
|
-
id="svg3128">
|
|
10
|
-
<defs />
|
|
11
|
-
<g
|
|
12
|
-
id="layer1">
|
|
13
|
-
<path
|
|
14
|
-
d="M 8 12 A 2 2 0 1 1 4,12 A 2 2 0 1 1 8 12 z"
|
|
15
|
-
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
16
|
-
id="path5571" />
|
|
17
|
-
<path
|
|
18
|
-
d="M 9 13 A 2 2 0 1 1 5,13 A 2 2 0 1 1 9 13 z"
|
|
19
|
-
transform="translate(15.5,-5.5)"
|
|
20
|
-
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
21
|
-
id="path5573" />
|
|
22
|
-
<path
|
|
23
|
-
d="M 9 13 A 2 2 0 1 1 5,13 A 2 2 0 1 1 9 13 z"
|
|
24
|
-
transform="translate(32,-1)"
|
|
25
|
-
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
26
|
-
id="path5575" />
|
|
27
|
-
<path
|
|
28
|
-
d="M 9 13 A 2 2 0 1 1 5,13 A 2 2 0 1 1 9 13 z"
|
|
29
|
-
transform="translate(7,-4.5)"
|
|
30
|
-
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
31
|
-
id="path5577" />
|
|
32
|
-
<path
|
|
33
|
-
d="M 9 13 A 2 2 0 1 1 5,13 A 2 2 0 1 1 9 13 z"
|
|
34
|
-
transform="translate(24,-4)"
|
|
35
|
-
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
36
|
-
id="path5579" />
|
|
37
|
-
<path
|
|
38
|
-
d="M 9,26 C 17.5,24.5 30,24.5 36,26 L 38,14 L 31,25 L 31,11 L 25.5,24.5 L 22.5,9.5 L 19.5,24.5 L 14,10.5 L 14,25 L 7,14 L 9,26 z "
|
|
39
|
-
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
|
|
40
|
-
id="path5581" />
|
|
41
|
-
<path
|
|
42
|
-
d="M 9,26 C 9,28 10.5,28 11.5,30 C 12.5,31.5 12.5,31 12,33.5 C 10.5,34.5 10.5,36 10.5,36 C 9,37.5 11,38.5 11,38.5 C 17.5,39.5 27.5,39.5 34,38.5 C 34,38.5 35.5,37.5 34,36 C 34,36 34.5,34.5 33,33.5 C 32.5,31 32.5,31.5 33.5,30 C 34.5,28 36,28 36,26 C 27.5,24.5 17.5,24.5 9,26 z "
|
|
43
|
-
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
|
|
44
|
-
id="path5583" />
|
|
45
|
-
<path
|
|
46
|
-
d="M 11.5,30 C 15,29 30,29 33.5,30"
|
|
47
|
-
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
|
48
|
-
id="path5585" />
|
|
49
|
-
<path
|
|
50
|
-
d="M 12,33.5 C 18,32.5 27,32.5 33,33.5"
|
|
51
|
-
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
|
52
|
-
id="path5587" />
|
|
53
|
-
<path
|
|
54
|
-
d="M 10.5,36 C 15.5,35 29,35 34,36"
|
|
55
|
-
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
|
56
|
-
id="path5589" />
|
|
57
|
-
</g>
|
|
58
|
-
</svg>
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
-
<svg
|
|
4
|
-
xmlns:svg="http://www.w3.org/2000/svg"
|
|
5
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
-
version="1.1"
|
|
7
|
-
width="45"
|
|
8
|
-
height="45"
|
|
9
|
-
id="svg3128">
|
|
10
|
-
<defs
|
|
11
|
-
id="defs3130" />
|
|
12
|
-
<g
|
|
13
|
-
style="display:inline"
|
|
14
|
-
id="layer1">
|
|
15
|
-
<path
|
|
16
|
-
d="M 9,39 L 36,39 L 36,36 L 9,36 L 9,39 z "
|
|
17
|
-
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
18
|
-
id="path3119" />
|
|
19
|
-
<path
|
|
20
|
-
d="M 12.5,32 L 14,29.5 L 31,29.5 L 32.5,32 L 12.5,32 z "
|
|
21
|
-
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
22
|
-
id="path3123" />
|
|
23
|
-
<path
|
|
24
|
-
d="M 12,36 L 12,32 L 33,32 L 33,36 L 12,36 z "
|
|
25
|
-
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
26
|
-
id="path3121" />
|
|
27
|
-
<path
|
|
28
|
-
d="M 14,29.5 L 14,16.5 L 31,16.5 L 31,29.5 L 14,29.5 z "
|
|
29
|
-
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
30
|
-
id="path3125" />
|
|
31
|
-
<path
|
|
32
|
-
d="M 14,16.5 L 11,14 L 34,14 L 31,16.5 L 14,16.5 z "
|
|
33
|
-
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
34
|
-
id="path3127" />
|
|
35
|
-
<path
|
|
36
|
-
d="M 11,14 L 11,9 L 15,9 L 15,11 L 20,11 L 20,9 L 25,9 L 25,11 L 30,11 L 30,9 L 34,9 L 34,14 L 11,14 z "
|
|
37
|
-
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
38
|
-
id="path3129" />
|
|
39
|
-
<path
|
|
40
|
-
d="M 12,35.5 L 33,35.5 L 33,35.5"
|
|
41
|
-
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
|
42
|
-
id="path4967" />
|
|
43
|
-
<path
|
|
44
|
-
d="M 13,31.5 L 32,31.5"
|
|
45
|
-
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
|
46
|
-
id="path4969" />
|
|
47
|
-
<path
|
|
48
|
-
d="M 14,29.5 L 31,29.5"
|
|
49
|
-
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
|
50
|
-
id="path4971" />
|
|
51
|
-
<path
|
|
52
|
-
d="M 14,16.5 L 31,16.5"
|
|
53
|
-
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
|
54
|
-
id="path5050" />
|
|
55
|
-
<path
|
|
56
|
-
d="M 11,14 L 34,14"
|
|
57
|
-
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
|
58
|
-
id="path5052" />
|
|
59
|
-
</g>
|
|
60
|
-
</svg>
|