kokopu-react 1.8.0 → 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.
Files changed (141) hide show
  1. package/dist/lib/Chessboard.js +64 -67
  2. package/dist/lib/impl/ArrowTip.js +2 -2
  3. package/dist/lib/impl/Motion.js +133 -0
  4. package/graphic_test_src/05_chessboard_move.js +2 -2
  5. package/graphic_test_src/06a_chessboard_animated_move.js +36 -0
  6. package/graphic_test_src/06b_chessboard_animated_move.js +36 -0
  7. package/graphic_test_src/06c_chessboard_animated_move.js +36 -0
  8. package/graphic_test_src/{06_chessboard_theme.js → 07_chessboard_theme.js} +0 -0
  9. package/graphic_test_src/{07_chessboard_click_squares.js → 08_chessboard_click_squares.js} +0 -0
  10. package/graphic_test_src/{08_chessboard_move_pieces.js → 09_chessboard_move_pieces.js} +0 -0
  11. package/graphic_test_src/{09_chessboard_edit_arrows.js → 10_chessboard_edit_arrows.js} +0 -0
  12. package/graphic_test_src/{10_chessboard_play_moves.js → 11_chessboard_play_moves.js} +0 -0
  13. package/graphic_test_src/{11_chessboard_play_promotions.js → 12_chessboard_play_promotions.js} +0 -0
  14. package/graphic_test_src/{12_movetext_simple.js → 13_movetext_simple.js} +0 -0
  15. package/graphic_test_src/{13_movetext_error.js → 14_movetext_error.js} +0 -0
  16. package/graphic_test_src/{14_movetext_html.js → 15_movetext_html.js} +0 -0
  17. package/graphic_test_src/{15_movetext_options.js → 16_movetext_options.js} +0 -0
  18. package/graphic_test_src/{16_movetext_interaction.js → 17_movetext_interaction.js} +0 -0
  19. package/package.json +6 -8
  20. package/src/Chessboard.js +24 -20
  21. package/src/impl/ArrowTip.js +2 -2
  22. package/src/impl/Motion.js +99 -0
  23. package/test/4_chessboard_graphic.js +4 -1
  24. package/test/5_chessboard_interaction.js +5 -5
  25. package/test/6_chessboard_play_moves.js +4 -4
  26. package/test/7_movetext_graphic.js +4 -4
  27. package/test/8_movetext_interaction.js +2 -2
  28. package/test/common/graphic.js +6 -0
  29. package/test/references/06a_chessboard_animated_move/0.png +0 -0
  30. package/test/references/06a_chessboard_animated_move/1.png +0 -0
  31. package/test/references/06a_chessboard_animated_move/2.png +0 -0
  32. package/test/references/06a_chessboard_animated_move/3.png +0 -0
  33. package/test/references/06a_chessboard_animated_move/4.png +0 -0
  34. package/test/references/06a_chessboard_animated_move/5.png +0 -0
  35. package/test/references/06b_chessboard_animated_move/0.png +0 -0
  36. package/test/references/06b_chessboard_animated_move/1.png +0 -0
  37. package/test/references/06b_chessboard_animated_move/2.png +0 -0
  38. package/test/references/06b_chessboard_animated_move/3.png +0 -0
  39. package/test/references/06b_chessboard_animated_move/4.png +0 -0
  40. package/test/references/06b_chessboard_animated_move/5.png +0 -0
  41. package/test/references/06c_chessboard_animated_move/0.png +0 -0
  42. package/test/references/06c_chessboard_animated_move/1.png +0 -0
  43. package/test/references/06c_chessboard_animated_move/2.png +0 -0
  44. package/test/references/06c_chessboard_animated_move/3.png +0 -0
  45. package/test/references/06c_chessboard_animated_move/4.png +0 -0
  46. package/test/references/06c_chessboard_animated_move/5.png +0 -0
  47. package/test/references/{06_chessboard_theme → 07_chessboard_theme}/0.png +0 -0
  48. package/test/references/{06_chessboard_theme → 07_chessboard_theme}/1.png +0 -0
  49. package/test/references/{06_chessboard_theme → 07_chessboard_theme}/2.png +0 -0
  50. package/test/references/{06_chessboard_theme → 07_chessboard_theme}/3.png +0 -0
  51. package/test/references/{06_chessboard_theme → 07_chessboard_theme}/4.png +0 -0
  52. package/test/references/{06_chessboard_theme → 07_chessboard_theme}/5.png +0 -0
  53. package/test/references/{06_chessboard_theme → 07_chessboard_theme}/6.png +0 -0
  54. package/test/references/{06_chessboard_theme → 07_chessboard_theme}/7.png +0 -0
  55. package/test/references/{06_chessboard_theme → 07_chessboard_theme}/8.png +0 -0
  56. package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/after_move.png +0 -0
  57. package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/empty_square.png +0 -0
  58. package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/null_vector.png +0 -0
  59. package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/out_of_board.png +0 -0
  60. package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/over_arrow_marker.png +0 -0
  61. package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/over_empty.png +0 -0
  62. package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/over_non_empty_1.png +0 -0
  63. package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/over_non_empty_2.png +0 -0
  64. package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/over_square_marker.png +0 -0
  65. package/test/references/{08_chessboard_move_pieces → 09_chessboard_move_pieces}/over_text_marker.png +0 -0
  66. package/test/references/{09_chessboard_edit_arrows → 10_chessboard_edit_arrows}/base_1.png +0 -0
  67. package/test/references/{09_chessboard_edit_arrows → 10_chessboard_edit_arrows}/base_2.png +0 -0
  68. package/test/references/{09_chessboard_edit_arrows → 10_chessboard_edit_arrows}/edit_color_not_set.png +0 -0
  69. package/test/references/{09_chessboard_edit_arrows → 10_chessboard_edit_arrows}/null_vector.png +0 -0
  70. package/test/references/{09_chessboard_edit_arrows → 10_chessboard_edit_arrows}/out_of_board.png +0 -0
  71. package/test/references/{09_chessboard_edit_arrows → 10_chessboard_edit_arrows}/over_arrow_marker.png +0 -0
  72. package/test/references/{09_chessboard_edit_arrows → 10_chessboard_edit_arrows}/over_square_marker.png +0 -0
  73. package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/castling_move.png +0 -0
  74. package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/chess960_ambiguous_king_move.png +0 -0
  75. package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/chess960_castling_move_1.png +0 -0
  76. package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/chess960_castling_move_2.png +0 -0
  77. package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/chess960_non_kxr_castling.png +0 -0
  78. package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/illegal_move.png +0 -0
  79. package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/illegal_position.png +0 -0
  80. package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/null_vector.png +0 -0
  81. package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/out_of_board.png +0 -0
  82. package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/regular_move_1.png +0 -0
  83. package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/regular_move_2.png +0 -0
  84. package/test/references/{10_chessboard_play_moves → 11_chessboard_play_moves}/wrong_color.png +0 -0
  85. package/test/references/{11_chessboard_play_promotions → 12_chessboard_play_promotions}/antichess_promotion.png +0 -0
  86. package/test/references/{11_chessboard_play_promotions → 12_chessboard_play_promotions}/cancel_promotion.png +0 -0
  87. package/test/references/{11_chessboard_play_promotions → 12_chessboard_play_promotions}/regular_promotion_1.png +0 -0
  88. package/test/references/{11_chessboard_play_promotions → 12_chessboard_play_promotions}/regular_promotion_2.png +0 -0
  89. package/test/references/{12_movetext_simple → 13_movetext_simple}/0.png +0 -0
  90. package/test/references/{12_movetext_simple → 13_movetext_simple}/1.png +0 -0
  91. package/test/references/{12_movetext_simple → 13_movetext_simple}/2.png +0 -0
  92. package/test/references/{12_movetext_simple → 13_movetext_simple}/3.png +0 -0
  93. package/test/references/{13_movetext_error → 14_movetext_error}/0.png +0 -0
  94. package/test/references/{13_movetext_error → 14_movetext_error}/1.png +0 -0
  95. package/test/references/{13_movetext_error → 14_movetext_error}/2.png +0 -0
  96. package/test/references/{13_movetext_error → 14_movetext_error}/3.png +0 -0
  97. package/test/references/{13_movetext_error → 14_movetext_error}/4.png +0 -0
  98. package/test/references/{14_movetext_html → 15_movetext_html}/0.png +0 -0
  99. package/test/references/{14_movetext_html → 15_movetext_html}/1.png +0 -0
  100. package/test/references/{14_movetext_html → 15_movetext_html}/2.png +0 -0
  101. package/test/references/{15_movetext_options → 16_movetext_options}/0.png +0 -0
  102. package/test/references/{15_movetext_options → 16_movetext_options}/1.png +0 -0
  103. package/test/references/{15_movetext_options → 16_movetext_options}/2.png +0 -0
  104. package/test/references/{15_movetext_options → 16_movetext_options}/3.png +0 -0
  105. package/test/references/{16_movetext_interaction → 17_movetext_interaction}/0.png +0 -0
  106. package/test/references/{16_movetext_interaction → 17_movetext_interaction}/1.png +0 -0
  107. package/test/references/{16_movetext_interaction → 17_movetext_interaction}/2.png +0 -0
  108. package/CHANGELOG.md +0 -141
  109. package/graphics/chess_sprites/cburnett/bb.svg +0 -45
  110. package/graphics/chess_sprites/cburnett/bk.svg +0 -47
  111. package/graphics/chess_sprites/cburnett/bn.svg +0 -37
  112. package/graphics/chess_sprites/cburnett/bp.svg +0 -19
  113. package/graphics/chess_sprites/cburnett/bq.svg +0 -58
  114. package/graphics/chess_sprites/cburnett/br.svg +0 -60
  115. package/graphics/chess_sprites/cburnett/bx.svg +0 -56
  116. package/graphics/chess_sprites/cburnett/wb.svg +0 -48
  117. package/graphics/chess_sprites/cburnett/wk.svg +0 -26
  118. package/graphics/chess_sprites/cburnett/wn.svg +0 -37
  119. package/graphics/chess_sprites/cburnett/wp.svg +0 -19
  120. package/graphics/chess_sprites/cburnett/wq.svg +0 -60
  121. package/graphics/chess_sprites/cburnett/wr.svg +0 -44
  122. package/graphics/chess_sprites/cburnett/wx.svg +0 -56
  123. package/graphics/chess_sprites/generate_sprites.sh +0 -135
  124. package/graphics/chess_sprites/mmonge/celtic-bx.svg +0 -112
  125. package/graphics/chess_sprites/mmonge/celtic-wx.svg +0 -111
  126. package/graphics/chess_sprites/mmonge/celtic.svg +0 -1576
  127. package/graphics/chess_sprites/mmonge/eyes-spatial-bx.svg +0 -101
  128. package/graphics/chess_sprites/mmonge/eyes-spatial-wx.svg +0 -100
  129. package/graphics/chess_sprites/mmonge/eyes.svg +0 -2538
  130. package/graphics/chess_sprites/mmonge/fantasy-bx.svg +0 -112
  131. package/graphics/chess_sprites/mmonge/fantasy-wx.svg +0 -111
  132. package/graphics/chess_sprites/mmonge/fantasy.svg +0 -5497
  133. package/graphics/chess_sprites/mmonge/fantasy_alt.svg +0 -3742
  134. package/graphics/chess_sprites/mmonge/freak.svg +0 -3479
  135. package/graphics/chess_sprites/mmonge/prmi.svg +0 -6776
  136. package/graphics/chess_sprites/mmonge/skulls-bx.svg +0 -124
  137. package/graphics/chess_sprites/mmonge/skulls-wx.svg +0 -111
  138. package/graphics/chess_sprites/mmonge/skulls.svg +0 -12978
  139. package/graphics/chess_sprites/mmonge/spatial.svg +0 -1223
  140. package/graphics/logo-small.svg +0 -14
  141. package/graphics/logo.svg +0 -26
package/CHANGELOG.md DELETED
@@ -1,141 +0,0 @@
1
- ChangeLog
2
- =========
3
-
4
- 1.8.0 (August 26, 2022)
5
- -----------------------
6
- * Upgrade Kokopu to Kokopu 3.0.
7
- * Upgrade dependencies.
8
-
9
- 1.7.2 (August 3, 2022)
10
- ----------------------
11
- * Fix URLs in documentation.
12
- * Upgrade dependencies.
13
-
14
- 1.7.1 (June 23, 2022)
15
- ---------------------
16
- * `React` and `kokopu` declared as peer dependencies.
17
- * Minor fixes.
18
-
19
- 1.7.0 (June 22, 2022)
20
- ---------------------
21
- * Upgrade React to React 18.
22
- * Add support for color blue for markers.
23
- * Allow customization of the move arrow color in the `Chessboard` component.
24
- * Change the property names used to define the marker colors in the objects returned by `Chessboard.colorsets()`:
25
- `g`, `r`, `y` and `highlight` have become respectively `cg`, `cr`, `cy` and `cb`.
26
-
27
- 1.6.0 (June 1, 2022)
28
- --------------------
29
- * Allow block-formatting HTML tags in PGN comments.
30
- * Provide `formatMove` and `moveFormatter`.
31
-
32
- 1.5.5 (May 18, 2022)
33
- --------------------
34
- * Upgrade dependencies.
35
- * Remove dependency with security issue.
36
-
37
- 1.5.4 (May 1, 2022)
38
- -------------------
39
- * Provide method `Chessboard#size(..)` to retrieve the width/height of a `Chessboard` component instance.
40
-
41
- 1.5.3 (April 30, 2022)
42
- ----------------------
43
- * Add method `Movetext#focus()`.
44
- * Expose static methods `Movetext#firstNodeId(..)`, `Movetext#previousNodeId(..)`, `Movetext#nextNodeId(..)`
45
- and `Movetext#lastNodeId(..)`.
46
-
47
- 1.5.2 (April 29, 2022)
48
- ----------------------
49
- * Prevent default actions when handling key events in component `Movetext`.
50
-
51
- 1.5.1 (April 29, 2022)
52
- ----------------------
53
- * Add argument `evtOrigin` in `onMoveSelected(..)` callback in component `Movetext`.
54
-
55
- 1.5.0 (April 27, 2022)
56
- ----------------------
57
- * Add component `Movetext` to display chess games.
58
-
59
- 1.4.1 (January 1, 2022)
60
- -----------------------
61
- * Upgrade dependencies.
62
-
63
- 1.4.0 (October 21, 2021)
64
- ------------------------
65
- * Add support for plus/times/dot/circle in text markers.
66
-
67
- 1.3.1 (September 27, 2021)
68
- --------------------------
69
- * Fix missing export for `ErrorBox`.
70
-
71
- 1.3.0 (September 26, 2021)
72
- --------------------------
73
- * Expose component `ErrorBox`.
74
- * Minor fixes in documentation.
75
-
76
- 1.2.0 (September 13, 2021)
77
- --------------------------
78
- * Fix ambiguous castling move issue at Chess960.
79
-
80
- 1.1.0 (August 15, 2021)
81
- -----------------------
82
- * Provide interaction mode `playMoves`.
83
- * Add code coverage.
84
-
85
- 1.0.2 (August 10, 2021)
86
- -----------------------
87
- * No need for ReactDOM in dependencies (dev-dependencies only).
88
-
89
- 1.0.1 (July 30, 2021)
90
- ---------------------
91
- * Wrong config in `package.json`.
92
-
93
- 1.0.0 (July 30, 2021)
94
- ---------------------
95
- * Implement graphic tests (using Selenium).
96
- * Provide documentation.
97
- * Fewer exported symbols: `adaptSquareSize(..)`, `colorsets` and `piecesets` are now defined as static members of `Chessboard`.
98
-
99
- 0.99.11 (June 6, 2021)
100
- ----------------------
101
- * Proper handling of small-screen limits in `adaptSquareSize(..)`.
102
-
103
- 0.99.10 (May 30, 2021)
104
- ----------------------
105
- * Support limits for square-size and coordinate-visible on small-screen devices.
106
-
107
- 0.99.9 (May 24, 2021)
108
- ---------------------
109
- * Utility functions to parse/flatten marker sets.
110
- * SVG icons for markers.
111
-
112
- 0.99.8 (May 19, 2021)
113
- ---------------------
114
- * Simplify arrow marker parameter definition.
115
-
116
- 0.99.6 (May 7, 2021)
117
- --------------------
118
- * Revert change brought by version 0.99.5.
119
-
120
- 0.99.5 (May 7, 2021)
121
- --------------------
122
- * Limit chessboard with to 90% of available space.
123
-
124
- 0.99.4 (May 5, 2021)
125
- --------------------
126
- * Provide function `adaptSquareSize(..)`.
127
- * Minor fixes.
128
-
129
- 0.99.3 (May 3, 2021)
130
- --------------------
131
- * Change attribute 'isFlipped' into 'flipped'.
132
- * Minor fixes.
133
-
134
- 0.99.2 (April 25, 2021)
135
- -----------------------
136
- * Improve chessboard attribute validation.
137
- * Upgrade to Kokopu 1.8.0.
138
-
139
- 0.99.0 (April 3, 2021)
140
- ----------------------
141
- * 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>
@@ -1,56 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <svg
3
- xmlns:dc="http://purl.org/dc/elements/1.1/"
4
- xmlns:cc="http://creativecommons.org/ns#"
5
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
- xmlns:svg="http://www.w3.org/2000/svg"
7
- xmlns="http://www.w3.org/2000/svg"
8
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
- version="1.1"
11
- width="45"
12
- height="45"
13
- id="svg3128"
14
- inkscape:version="0.91 r"
15
- sodipodi:docname="bx.svg">
16
- <metadata
17
- id="metadata14">
18
- <rdf:RDF>
19
- <cc:Work
20
- rdf:about="">
21
- <dc:format>image/svg+xml</dc:format>
22
- <dc:type
23
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
24
- <dc:title />
25
- </cc:Work>
26
- </rdf:RDF>
27
- </metadata>
28
- <sodipodi:namedview
29
- pagecolor="#ffffff"
30
- bordercolor="#666666"
31
- borderopacity="1"
32
- objecttolerance="10"
33
- gridtolerance="10"
34
- guidetolerance="10"
35
- inkscape:pageopacity="0"
36
- inkscape:pageshadow="2"
37
- inkscape:window-width="1680"
38
- inkscape:window-height="973"
39
- id="namedview12"
40
- showgrid="false"
41
- inkscape:zoom="10.488889"
42
- inkscape:cx="1.2168363"
43
- inkscape:cy="30.050919"
44
- inkscape:window-x="0"
45
- inkscape:window-y="25"
46
- inkscape:window-maximized="1"
47
- inkscape:current-layer="svg3128" />
48
- <defs
49
- id="defs3130" />
50
- <circle
51
- style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
52
- id="path2991"
53
- cx="22.5"
54
- cy="22.5"
55
- r="13.25" />
56
- </svg>
@@ -1,48 +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:#ffffff;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:#ffffff;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:#ffffff;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:#000000;stroke-width:1.5;stroke-linecap:butt;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:#000000;stroke-width:1.5;stroke-linecap:butt;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:#000000;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:#000000;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
- <g
46
- style="display:inline"
47
- id="layer2" />
48
- </svg>
@@ -1,26 +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
- <defs />
10
- <g style="fill-rule:evenodd; fill-opacity:1; stroke:#000000; stroke-width:1.5; stroke-linejoin:miter; stroke-miterlimit:4;stroke-dasharray:none; stroke-opacity:1;">
11
- <path d="M 22.5,11.625 L 22.5,6"
12
- style="fill:none;fill-opacity:0.75; stroke-linecap:round;" />
13
- <path 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"
14
- style="fill:#ffffff; stroke-linecap:butt;" />
15
- <path 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 "
16
- style="fill:#ffffff; stroke-linecap:round; stroke-linejoin:round;" />
17
- <path d="M 20,8 L 25,8"
18
- style="fill:none; fill-opacity:0.75; stroke-linecap:round;" />
19
- <path d="M 11.5,29.5 C 17,27 27,27 32.5,30"
20
- style="fill:none; fill-opacity:0.75; stroke-linecap:round;" />
21
- <path d="M 11.5,37 C 17,34.5 27,34.5 32.5,37"
22
- style="fill:none; fill-opacity:0.75; stroke-linecap:round; stroke-linejoin:round;" />
23
- <path d="M 11.5,33.5 C 17,31.5 27,31.5 32.5,33.5"
24
- style="fill:none; fill-opacity:0.75; stroke-linecap:round; stroke-linejoin:round;" />
25
- </g>
26
- </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:#ffffff;fill-opacity:1;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="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:#ffffff;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"
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:#000000;stroke-width:1.5;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:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
31
- id="path3501" />
32
- <path
33
- d="M 37,39 C 38,19 31.5,11.5 25,10.5"
34
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;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:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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>