@adcops/autocore-react 3.0.1 → 3.0.3

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 (284) hide show
  1. package/dist/assets/BlocklyLogo.d.ts +3 -0
  2. package/dist/assets/BlocklyLogo.js +1 -0
  3. package/dist/assets/Distance.d.ts +3 -0
  4. package/dist/assets/Distance.js +1 -0
  5. package/dist/assets/JogLong.d.ts +3 -0
  6. package/dist/assets/JogLong.js +1 -0
  7. package/dist/assets/JogMedium.d.ts +3 -0
  8. package/dist/assets/JogMedium.js +1 -0
  9. package/dist/assets/JogShort.d.ts +3 -0
  10. package/dist/assets/JogShort.js +1 -0
  11. package/dist/assets/PythonLogo.d.ts +3 -0
  12. package/dist/assets/PythonLogo.js +1 -0
  13. package/dist/assets/Rotation3D.d.ts +3 -0
  14. package/dist/assets/Rotation3D.js +1 -0
  15. package/dist/assets/RotationCcw.d.ts +3 -0
  16. package/dist/assets/RotationCcw.js +1 -0
  17. package/dist/assets/RotationCcwA.d.ts +3 -0
  18. package/dist/assets/RotationCcwA.js +1 -0
  19. package/dist/assets/RotationCcwB.d.ts +3 -0
  20. package/dist/assets/RotationCcwB.js +1 -0
  21. package/dist/assets/RotationCcwC.d.ts +3 -0
  22. package/dist/assets/RotationCcwC.js +1 -0
  23. package/dist/assets/RotationCw.d.ts +3 -0
  24. package/dist/assets/RotationCw.js +1 -0
  25. package/dist/assets/RotationCwA.d.ts +3 -0
  26. package/dist/assets/RotationCwA.js +1 -0
  27. package/dist/assets/RotationCwB.d.ts +3 -0
  28. package/dist/assets/RotationCwB.js +1 -0
  29. package/dist/assets/RotationCwC.d.ts +3 -0
  30. package/dist/assets/RotationCwC.js +1 -0
  31. package/dist/assets/Run.d.ts +3 -0
  32. package/dist/assets/Run.js +1 -0
  33. package/dist/assets/Speed.d.ts +3 -0
  34. package/dist/assets/Speed.js +1 -0
  35. package/dist/assets/SpeedFast.d.ts +3 -0
  36. package/dist/assets/SpeedFast.js +1 -0
  37. package/dist/assets/SpeedMedium.d.ts +3 -0
  38. package/dist/assets/SpeedMedium.js +1 -0
  39. package/dist/assets/SpeedNone.d.ts +3 -0
  40. package/dist/assets/SpeedNone.js +1 -0
  41. package/dist/assets/SpeedSlow.d.ts +3 -0
  42. package/dist/assets/SpeedSlow.js +1 -0
  43. package/dist/assets/Walk.d.ts +3 -0
  44. package/dist/assets/Walk.js +1 -0
  45. package/dist/assets/index.d.ts +22 -0
  46. package/dist/assets/index.js +1 -0
  47. package/dist/assets/svg/blockly_logo.svg +82 -0
  48. package/dist/assets/svg/distance.svg +40 -0
  49. package/dist/assets/svg/jog_long.svg +1 -0
  50. package/dist/assets/svg/jog_medium.svg +1 -0
  51. package/dist/assets/svg/jog_short.svg +1 -0
  52. package/dist/assets/svg/python_logo.svg +246 -0
  53. package/dist/assets/svg/rotation_3d.svg +1 -0
  54. package/dist/assets/svg/rotation_ccw.svg +50 -0
  55. package/dist/assets/svg/rotation_ccw_a.svg +57 -0
  56. package/dist/assets/svg/rotation_ccw_b.svg +57 -0
  57. package/dist/assets/svg/rotation_ccw_c.svg +57 -0
  58. package/dist/assets/svg/rotation_cw.svg +49 -0
  59. package/dist/assets/svg/rotation_cw_a.svg +30 -0
  60. package/dist/assets/svg/rotation_cw_b.svg +30 -0
  61. package/dist/assets/svg/rotation_cw_c.svg +30 -0
  62. package/dist/assets/svg/run.svg +1 -0
  63. package/dist/assets/svg/speed.svg +39 -0
  64. package/dist/assets/svg/speed_fast.svg +1 -0
  65. package/dist/assets/svg/speed_medium.svg +1 -0
  66. package/dist/assets/svg/speed_none.svg +1 -0
  67. package/dist/assets/svg/speed_slow.svg +1 -0
  68. package/dist/assets/svg/walk.svg +1 -0
  69. package/dist/components/BlocklyEditor.css +25 -0
  70. package/dist/components/BlocklyEditor.d.ts +120 -0
  71. package/dist/components/BlocklyEditor.js +1 -0
  72. package/dist/components/CodeEditor.d.ts +76 -0
  73. package/dist/components/CodeEditor.js +1 -0
  74. package/dist/components/Indicator.d.ts +12 -27
  75. package/dist/components/Indicator.js +1 -1
  76. package/dist/components/IndicatorButton.d.ts +56 -37
  77. package/dist/components/IndicatorButton.js +1 -1
  78. package/dist/components/JogPanel.css +41 -0
  79. package/dist/components/JogPanel.d.ts +115 -0
  80. package/dist/components/JogPanel.js +1 -0
  81. package/dist/components/Lamp.d.ts +81 -0
  82. package/dist/components/Lamp.js +1 -0
  83. package/dist/components/ToggleGroup.d.ts +103 -0
  84. package/dist/components/ToggleGroup.js +1 -0
  85. package/dist/core/ActionMode.d.ts +9 -0
  86. package/dist/core/ActionMode.js +1 -0
  87. package/dist/core/IndicatorButtonState.d.ts +21 -0
  88. package/dist/core/IndicatorButtonState.js +1 -0
  89. package/docs/assets/highlight.css +25 -18
  90. package/docs/assets/navigation.js +1 -1
  91. package/docs/assets/search.js +1 -1
  92. package/docs/classes/components_BlocklyEditor.BlocklyEditor.html +124 -0
  93. package/docs/classes/components_CodeEditor.CodeEditor.html +128 -0
  94. package/docs/classes/components_Indicator.Indicator.html +8 -8
  95. package/docs/classes/components_IndicatorButton.IndicatorButton.html +17 -17
  96. package/docs/classes/components_JogPanel.JogPanel.html +138 -0
  97. package/docs/classes/components_Lamp.Lamp.html +105 -0
  98. package/docs/classes/components_OskDialog.OskDialog.html +5 -5
  99. package/docs/classes/components_ToggleGroup.ToggleGroup.html +118 -0
  100. package/docs/classes/components_ValueDisplay.ValueDisplay.html +4 -4
  101. package/docs/classes/core_ValueSimulator.ValueSimulator.html +2 -2
  102. package/docs/classes/hub_HubBase.HubBase.html +4 -4
  103. package/docs/classes/hub_HubSimulate.HubSimulate.html +2 -2
  104. package/docs/classes/hub_HubSocketIo.HubSocketIo.html +5 -5
  105. package/docs/classes/hub_HubTauri.HubTauri.html +5 -5
  106. package/docs/enums/components_JogPanel.JogDistanceAction.html +5 -0
  107. package/docs/enums/components_JogPanel.JogPanelAction.html +18 -0
  108. package/docs/enums/components_JogPanel.JogSpeedAction.html +5 -0
  109. package/docs/enums/core_ActionMode.ActionMode.html +6 -0
  110. package/docs/enums/core_IndicatorColor.IndicatorColor.html +23 -0
  111. package/docs/functions/assets_BlocklyLogo.default.html +1 -0
  112. package/docs/functions/assets_Distance.default.html +1 -0
  113. package/docs/functions/assets_JogLong.default.html +1 -0
  114. package/docs/functions/assets_JogMedium.default.html +1 -0
  115. package/docs/functions/assets_JogShort.default.html +1 -0
  116. package/docs/functions/assets_PythonLogo.default.html +1 -0
  117. package/docs/functions/assets_Rotation3D.default.html +1 -0
  118. package/docs/functions/assets_RotationCcw.default.html +1 -0
  119. package/docs/functions/assets_RotationCcwA.default.html +1 -0
  120. package/docs/functions/assets_RotationCcwB.default.html +1 -0
  121. package/docs/functions/assets_RotationCcwC.default.html +1 -0
  122. package/docs/functions/assets_RotationCw.default.html +1 -0
  123. package/docs/functions/assets_RotationCwA.default.html +1 -0
  124. package/docs/functions/assets_RotationCwB.default.html +1 -0
  125. package/docs/functions/assets_RotationCwC.default.html +1 -0
  126. package/docs/functions/assets_Run.default.html +1 -0
  127. package/docs/functions/assets_Speed.default.html +1 -0
  128. package/docs/functions/assets_SpeedFast.default.html +1 -0
  129. package/docs/functions/assets_SpeedMedium.default.html +1 -0
  130. package/docs/functions/assets_SpeedNone.default.html +1 -0
  131. package/docs/functions/assets_SpeedSlow.default.html +1 -0
  132. package/docs/functions/assets_Walk.default.html +1 -0
  133. package/docs/functions/components_BlocklyEditor.createCustomToolbox.html +6 -0
  134. package/docs/functions/components_Osk.Osk.html +2 -2
  135. package/docs/functions/core_EventEmitterContext.EventEmitterProvider.html +2 -2
  136. package/docs/functions/core_UniqueId.UniqueId.html +2 -2
  137. package/docs/functions/core_hoc.hocAddSubscription.html +2 -2
  138. package/docs/functions/hub.createHub.html +2 -2
  139. package/docs/hierarchy.html +1 -1
  140. package/docs/index.html +18 -2
  141. package/docs/interfaces/components_IndicatorButton.IndicatorButtonProps.html +160 -132
  142. package/docs/interfaces/components_JogPanel.JogPanelButtonDefinition.html +5 -0
  143. package/docs/interfaces/components_ToggleGroup.ToggleGroupProps.html +636 -0
  144. package/docs/interfaces/core_EventEmitterContext.Action.html +2 -2
  145. package/docs/interfaces/core_EventEmitterContext.EventEmitterContextType.html +2 -2
  146. package/docs/interfaces/core_EventEmitterContext.State.html +2 -2
  147. package/docs/interfaces/core_EventEmitterContext.Subscription.html +2 -2
  148. package/docs/interfaces/core_IndicatorButtonState.IndicatorButtonState.html +10 -0
  149. package/docs/interfaces/core_PositionContext.IPositionContext.html +2 -2
  150. package/docs/modules/assets.html +23 -0
  151. package/docs/modules/assets_BlocklyLogo.html +2 -0
  152. package/docs/modules/assets_Distance.html +2 -0
  153. package/docs/modules/assets_JogLong.html +2 -0
  154. package/docs/modules/assets_JogMedium.html +2 -0
  155. package/docs/modules/assets_JogShort.html +2 -0
  156. package/docs/modules/assets_PythonLogo.html +2 -0
  157. package/docs/modules/assets_Rotation3D.html +2 -0
  158. package/docs/modules/assets_RotationCcw.html +2 -0
  159. package/docs/modules/assets_RotationCcwA.html +2 -0
  160. package/docs/modules/assets_RotationCcwB.html +2 -0
  161. package/docs/modules/assets_RotationCcwC.html +2 -0
  162. package/docs/modules/assets_RotationCw.html +2 -0
  163. package/docs/modules/assets_RotationCwA.html +2 -0
  164. package/docs/modules/assets_RotationCwB.html +2 -0
  165. package/docs/modules/assets_RotationCwC.html +2 -0
  166. package/docs/modules/assets_Run.html +2 -0
  167. package/docs/modules/assets_Speed.html +2 -0
  168. package/docs/modules/assets_SpeedFast.html +2 -0
  169. package/docs/modules/assets_SpeedMedium.html +2 -0
  170. package/docs/modules/assets_SpeedNone.html +2 -0
  171. package/docs/modules/assets_SpeedSlow.html +2 -0
  172. package/docs/modules/assets_Walk.html +2 -0
  173. package/docs/modules/components_BlocklyEditor.html +5 -0
  174. package/docs/modules/components_CodeEditor.html +3 -0
  175. package/docs/modules/components_Indicator.html +2 -2
  176. package/docs/modules/components_IndicatorButton.html +4 -4
  177. package/docs/modules/components_JogPanel.html +9 -0
  178. package/docs/modules/components_Lamp.html +4 -0
  179. package/docs/modules/components_Osk.html +2 -2
  180. package/docs/modules/components_OskDialog.html +2 -2
  181. package/docs/modules/components_ToggleGroup.html +5 -0
  182. package/docs/modules/components_ValueDisplay.html +2 -2
  183. package/docs/modules/core_ActionMode.html +2 -0
  184. package/docs/modules/core_EventEmitterContext.html +2 -2
  185. package/docs/modules/{components_IndicatorColor.html → core_IndicatorButtonState.html} +2 -2
  186. package/docs/modules/core_IndicatorColor.html +2 -0
  187. package/docs/modules/core_MaskPatterns.html +2 -2
  188. package/docs/modules/core_NumerableTypes.html +2 -2
  189. package/docs/modules/core_PositionContext.html +2 -2
  190. package/docs/modules/core_UniqueId.html +2 -2
  191. package/docs/modules/core_ValueSimulator.html +2 -2
  192. package/docs/modules/core_hoc.html +2 -2
  193. package/docs/modules/hub.html +2 -2
  194. package/docs/modules/hub_HubBase.html +2 -2
  195. package/docs/modules/hub_HubSimulate.html +2 -2
  196. package/docs/modules/hub_HubSocketIo.html +2 -2
  197. package/docs/modules/hub_HubTauri.html +2 -2
  198. package/docs/types/components_IndicatorButton.IndicatorButtonOptionsType.html +1 -0
  199. package/docs/types/core_EventEmitterContext.EmitterDispatchFunction.html +2 -2
  200. package/docs/types/core_EventEmitterContext.EmitterSubscribeFunction.html +2 -2
  201. package/docs/types/core_EventEmitterContext.EmitterUnsubscribeFunction.html +2 -2
  202. package/docs/types/core_NumerableTypes.NumerableFormatOptions.html +2 -2
  203. package/docs/types/core_hoc.HocAddSubscriptionProps.html +2 -2
  204. package/docs/variables/components_BlocklyEditor.StandardToolbox.html +1 -0
  205. package/docs/variables/components_JogPanel.kDefaultButtonDefinitions.html +2 -0
  206. package/docs/variables/components_JogPanel.kRotationButtonDefinitions.html +1 -0
  207. package/docs/variables/core_EventEmitterContext.EventEmitterContext.html +6 -6
  208. package/docs/variables/core_MaskPatterns.PrimeReactMaskPatterns.html +2 -2
  209. package/docs/variables/core_MaskPatterns.RegExMaskPatterns.html +2 -2
  210. package/docs/variables/core_PositionContext.DimensionsContext.html +2 -2
  211. package/package.json +7 -3
  212. package/readme.md +33 -0
  213. package/src/assets/BlocklyLogo.tsx +27 -0
  214. package/src/assets/Distance.tsx +18 -0
  215. package/src/assets/JogLong.tsx +13 -0
  216. package/src/assets/JogMedium.tsx +13 -0
  217. package/src/assets/JogShort.tsx +13 -0
  218. package/src/assets/PythonLogo.tsx +83 -0
  219. package/src/assets/Rotation3D.tsx +13 -0
  220. package/src/assets/RotationCcw.tsx +33 -0
  221. package/src/assets/RotationCcwA.tsx +45 -0
  222. package/src/assets/RotationCcwB.tsx +45 -0
  223. package/src/assets/RotationCcwC.tsx +45 -0
  224. package/src/assets/RotationCw.tsx +31 -0
  225. package/src/assets/RotationCwA.tsx +42 -0
  226. package/src/assets/RotationCwB.tsx +42 -0
  227. package/src/assets/RotationCwC.tsx +42 -0
  228. package/src/assets/Run.tsx +13 -0
  229. package/src/assets/Speed.tsx +18 -0
  230. package/src/assets/SpeedFast.tsx +13 -0
  231. package/src/assets/SpeedMedium.tsx +13 -0
  232. package/src/assets/SpeedNone.tsx +13 -0
  233. package/src/assets/SpeedSlow.tsx +13 -0
  234. package/src/assets/Walk.tsx +13 -0
  235. package/src/assets/index.ts +22 -0
  236. package/src/assets/svg/blockly_logo.svg +82 -0
  237. package/src/assets/svg/distance.svg +40 -0
  238. package/src/assets/svg/jog_long.svg +1 -0
  239. package/src/assets/svg/jog_medium.svg +1 -0
  240. package/src/assets/svg/jog_short.svg +1 -0
  241. package/src/assets/svg/python_logo.svg +246 -0
  242. package/src/assets/svg/rotation_3d.svg +1 -0
  243. package/src/assets/svg/rotation_ccw.svg +50 -0
  244. package/src/assets/svg/rotation_ccw_a.svg +57 -0
  245. package/src/assets/svg/rotation_ccw_b.svg +57 -0
  246. package/src/assets/svg/rotation_ccw_c.svg +57 -0
  247. package/src/assets/svg/rotation_cw.svg +49 -0
  248. package/src/assets/svg/rotation_cw_a.svg +30 -0
  249. package/src/assets/svg/rotation_cw_b.svg +30 -0
  250. package/src/assets/svg/rotation_cw_c.svg +30 -0
  251. package/src/assets/svg/run.svg +1 -0
  252. package/src/assets/svg/speed.svg +39 -0
  253. package/src/assets/svg/speed_fast.svg +1 -0
  254. package/src/assets/svg/speed_medium.svg +1 -0
  255. package/src/assets/svg/speed_none.svg +1 -0
  256. package/src/assets/svg/speed_slow.svg +1 -0
  257. package/src/assets/svg/walk.svg +1 -0
  258. package/src/components/BlocklyEditor.css +25 -0
  259. package/src/components/BlocklyEditor.tsx +598 -0
  260. package/src/components/CodeEditor.tsx +156 -0
  261. package/src/components/Indicator.tsx +63 -118
  262. package/src/components/IndicatorButton.tsx +104 -50
  263. package/src/components/JogPanel.css +41 -0
  264. package/src/components/JogPanel.tsx +458 -0
  265. package/src/components/Lamp.tsx +243 -0
  266. package/src/components/ToggleGroup.tsx +429 -0
  267. package/src/core/ActionMode.ts +20 -0
  268. package/src/core/IndicatorButtonState.ts +34 -0
  269. package/tools/copy-distribution-files.cjs +3 -2
  270. package/dist/components/DPad.css +0 -522
  271. package/dist/components/DPad.d.ts +0 -34
  272. package/dist/components/DPad.js +0 -1
  273. package/docs/enums/components_DPad.VcJoyPadAction.html +0 -10
  274. package/docs/enums/components_DPad.VcJoyPadButtonId.html +0 -7
  275. package/docs/enums/components_IndicatorButton.ActionMode.html +0 -6
  276. package/docs/enums/components_IndicatorColor.IndicatorColor.html +0 -23
  277. package/docs/functions/components_DPad.VcDPad.html +0 -5
  278. package/docs/interfaces/components_IndicatorButton.IndicatorButtonState.html +0 -10
  279. package/docs/modules/components_DPad.html +0 -5
  280. package/src/components/DPad.css +0 -522
  281. package/src/components/DPad.tsx +0 -94
  282. /package/dist/{components → core}/IndicatorColor.d.ts +0 -0
  283. /package/dist/{components → core}/IndicatorColor.js +0 -0
  284. /package/src/{components → core}/IndicatorColor.ts +0 -0
@@ -0,0 +1,246 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ version="1.0"
6
+ width="33.348408"
7
+ height="33.716702"
8
+ id="svg2"
9
+ sodipodi:version="0.32"
10
+ inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
11
+ sodipodi:docname="python_logo.svg"
12
+ viewBox="0 0 111.16136 112.38901"
13
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
14
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
15
+ xmlns:xlink="http://www.w3.org/1999/xlink"
16
+ xmlns="http://www.w3.org/2000/svg"
17
+ xmlns:svg="http://www.w3.org/2000/svg"
18
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
19
+ xmlns:cc="http://creativecommons.org/ns#"
20
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
21
+ <metadata
22
+ id="metadata2193">
23
+ <rdf:RDF>
24
+ <cc:Work
25
+ rdf:about="">
26
+ <dc:format>image/svg+xml</dc:format>
27
+ <dc:type
28
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
29
+ </cc:Work>
30
+ </rdf:RDF>
31
+ </metadata>
32
+ <sodipodi:namedview
33
+ inkscape:window-height="1494"
34
+ inkscape:window-width="2400"
35
+ inkscape:pageshadow="2"
36
+ inkscape:pageopacity="0.0"
37
+ borderopacity="1.0"
38
+ bordercolor="#666666"
39
+ pagecolor="#ffffff"
40
+ id="base"
41
+ inkscape:zoom="1.4340089"
42
+ inkscape:cx="237.44623"
43
+ inkscape:cy="65.201827"
44
+ inkscape:window-x="-11"
45
+ inkscape:window-y="-11"
46
+ inkscape:current-layer="svg2"
47
+ inkscape:showpageshadow="0"
48
+ inkscape:pagecheckerboard="0"
49
+ inkscape:deskcolor="#505050"
50
+ inkscape:document-units="px"
51
+ showgrid="false"
52
+ showborder="false"
53
+ borderlayer="false"
54
+ inkscape:window-maximized="1" />
55
+ <defs
56
+ id="defs4">
57
+ <linearGradient
58
+ id="linearGradient2795">
59
+ <stop
60
+ style="stop-color:#b8b8b8;stop-opacity:0.49803922"
61
+ offset="0"
62
+ id="stop2797" />
63
+ <stop
64
+ style="stop-color:#7f7f7f;stop-opacity:0"
65
+ offset="1"
66
+ id="stop2799" />
67
+ </linearGradient>
68
+ <linearGradient
69
+ id="linearGradient2787">
70
+ <stop
71
+ style="stop-color:#7f7f7f;stop-opacity:0.5"
72
+ offset="0"
73
+ id="stop2789" />
74
+ <stop
75
+ style="stop-color:#7f7f7f;stop-opacity:0"
76
+ offset="1"
77
+ id="stop2791" />
78
+ </linearGradient>
79
+ <linearGradient
80
+ id="linearGradient3676">
81
+ <stop
82
+ style="stop-color:#b2b2b2;stop-opacity:0.5"
83
+ offset="0"
84
+ id="stop3678" />
85
+ <stop
86
+ style="stop-color:#b3b3b3;stop-opacity:0"
87
+ offset="1"
88
+ id="stop3680" />
89
+ </linearGradient>
90
+ <linearGradient
91
+ id="linearGradient3236">
92
+ <stop
93
+ style="stop-color:#f4f4f4;stop-opacity:1"
94
+ offset="0"
95
+ id="stop3244" />
96
+ <stop
97
+ style="stop-color:#ffffff;stop-opacity:1"
98
+ offset="1"
99
+ id="stop3240" />
100
+ </linearGradient>
101
+ <linearGradient
102
+ id="linearGradient4671">
103
+ <stop
104
+ style="stop-color:#ffd43b;stop-opacity:1"
105
+ offset="0"
106
+ id="stop4673" />
107
+ <stop
108
+ style="stop-color:#ffe873;stop-opacity:1"
109
+ offset="1"
110
+ id="stop4675" />
111
+ </linearGradient>
112
+ <linearGradient
113
+ id="linearGradient4689">
114
+ <stop
115
+ style="stop-color:#5a9fd4;stop-opacity:1"
116
+ offset="0"
117
+ id="stop4691" />
118
+ <stop
119
+ style="stop-color:#306998;stop-opacity:1"
120
+ offset="1"
121
+ id="stop4693" />
122
+ </linearGradient>
123
+ <linearGradient
124
+ x1="224.23996"
125
+ y1="144.75717"
126
+ x2="-65.308502"
127
+ y2="144.75717"
128
+ id="linearGradient2987"
129
+ xlink:href="#linearGradient4671"
130
+ gradientUnits="userSpaceOnUse"
131
+ gradientTransform="translate(100.2702,99.61116)" />
132
+ <linearGradient
133
+ x1="172.94208"
134
+ y1="77.475983"
135
+ x2="26.670298"
136
+ y2="76.313133"
137
+ id="linearGradient2990"
138
+ xlink:href="#linearGradient4689"
139
+ gradientUnits="userSpaceOnUse"
140
+ gradientTransform="translate(100.2702,99.61116)" />
141
+ <linearGradient
142
+ x1="172.94208"
143
+ y1="77.475983"
144
+ x2="26.670298"
145
+ y2="76.313133"
146
+ id="linearGradient2587"
147
+ xlink:href="#linearGradient4689"
148
+ gradientUnits="userSpaceOnUse"
149
+ gradientTransform="translate(100.2702,99.61116)" />
150
+ <linearGradient
151
+ x1="224.23996"
152
+ y1="144.75717"
153
+ x2="-65.308502"
154
+ y2="144.75717"
155
+ id="linearGradient2589"
156
+ xlink:href="#linearGradient4671"
157
+ gradientUnits="userSpaceOnUse"
158
+ gradientTransform="translate(100.2702,99.61116)" />
159
+ <linearGradient
160
+ x1="172.94208"
161
+ y1="77.475983"
162
+ x2="26.670298"
163
+ y2="76.313133"
164
+ id="linearGradient2248"
165
+ xlink:href="#linearGradient4689"
166
+ gradientUnits="userSpaceOnUse"
167
+ gradientTransform="translate(100.2702,99.61116)" />
168
+ <linearGradient
169
+ x1="224.23996"
170
+ y1="144.75717"
171
+ x2="-65.308502"
172
+ y2="144.75717"
173
+ id="linearGradient2250"
174
+ xlink:href="#linearGradient4671"
175
+ gradientUnits="userSpaceOnUse"
176
+ gradientTransform="translate(100.2702,99.61116)" />
177
+ <linearGradient
178
+ x1="224.23996"
179
+ y1="144.75717"
180
+ x2="-65.308502"
181
+ y2="144.75717"
182
+ id="linearGradient2255"
183
+ xlink:href="#linearGradient4671"
184
+ gradientUnits="userSpaceOnUse"
185
+ gradientTransform="matrix(0.562541,0,0,0.567972,-11.5974,-7.60954)" />
186
+ <linearGradient
187
+ x1="172.94208"
188
+ y1="76.176224"
189
+ x2="26.670298"
190
+ y2="76.313133"
191
+ id="linearGradient2258"
192
+ xlink:href="#linearGradient4689"
193
+ gradientUnits="userSpaceOnUse"
194
+ gradientTransform="matrix(0.562541,0,0,0.567972,-11.5974,-7.60954)" />
195
+ <radialGradient
196
+ cx="61.518883"
197
+ cy="132.28575"
198
+ r="29.036913"
199
+ fx="61.518883"
200
+ fy="132.28575"
201
+ id="radialGradient2801"
202
+ xlink:href="#linearGradient2795"
203
+ gradientUnits="userSpaceOnUse"
204
+ gradientTransform="matrix(1,0,0,0.177966,0,108.7434)" />
205
+ <linearGradient
206
+ x1="150.96111"
207
+ y1="192.35176"
208
+ x2="112.03144"
209
+ y2="137.27299"
210
+ id="linearGradient1475"
211
+ xlink:href="#linearGradient4671"
212
+ gradientUnits="userSpaceOnUse"
213
+ gradientTransform="matrix(0.562541,0,0,0.567972,-9.399749,-5.305317)" />
214
+ <linearGradient
215
+ x1="26.648937"
216
+ y1="20.603781"
217
+ x2="135.66525"
218
+ y2="114.39767"
219
+ id="linearGradient1478"
220
+ xlink:href="#linearGradient4689"
221
+ gradientUnits="userSpaceOnUse"
222
+ gradientTransform="matrix(0.562541,0,0,0.567972,-9.399749,-5.305317)" />
223
+ <radialGradient
224
+ cx="61.518883"
225
+ cy="132.28575"
226
+ r="29.036913"
227
+ fx="61.518883"
228
+ fy="132.28575"
229
+ id="radialGradient1480"
230
+ xlink:href="#linearGradient2795"
231
+ gradientUnits="userSpaceOnUse"
232
+ gradientTransform="matrix(2.382716e-8,-0.296405,1.43676,4.683673e-7,-128.544,150.5202)" />
233
+ </defs>
234
+ <g
235
+ id="g2303"
236
+ transform="translate(-5.5913706,-6.3970536)">
237
+ <path
238
+ id="path1948"
239
+ style="fill:url(#linearGradient1478);fill-opacity:1"
240
+ d="m 60.510156,6.3979729 c -4.583653,0.021298 -8.960939,0.4122177 -12.8125,1.09375 C 36.35144,9.4962267 34.291407,13.691825 34.291406,21.429223 v 10.21875 h 26.8125 v 3.40625 h -26.8125 -10.0625 c -7.792459,0 -14.6157592,4.683717 -16.7500002,13.59375 -2.46182,10.212966 -2.5710151,16.586023 0,27.25 1.9059283,7.937852 6.4575432,13.593748 14.2500002,13.59375 h 9.21875 v -12.25 c 0,-8.849902 7.657144,-16.656248 16.75,-16.65625 h 26.78125 c 7.454951,0 13.406253,-6.138164 13.40625,-13.625 v -25.53125 c 0,-7.266339 -6.12998,-12.7247775 -13.40625,-13.9375001 -4.605987,-0.7667253 -9.385097,-1.1150483 -13.96875,-1.09375 z m -14.5,8.2187501 c 2.769547,0 5.03125,2.298646 5.03125,5.125 -2e-6,2.816336 -2.261703,5.09375 -5.03125,5.09375 -2.779476,-1e-6 -5.03125,-2.277415 -5.03125,-5.09375 -1e-6,-2.826353 2.251774,-5.125 5.03125,-5.125 z" />
241
+ <path
242
+ id="path1950"
243
+ style="fill:url(#linearGradient1475);fill-opacity:1"
244
+ d="m 91.228906,35.054223 v 11.90625 c 0,9.230755 -7.825895,16.999999 -16.75,17 h -26.78125 c -7.335833,0 -13.406249,6.278483 -13.40625,13.625 v 25.531247 c 0,7.26634 6.318588,11.54032 13.40625,13.625 8.487331,2.49561 16.626237,2.94663 26.78125,0 6.750155,-1.95439 13.406253,-5.88761 13.40625,-13.625 V 92.897973 h -26.78125 v -3.40625 h 26.78125 13.406254 c 7.79246,0 10.69625,-5.435408 13.40624,-13.59375 2.79933,-8.398886 2.68022,-16.475776 0,-27.25 -1.92578,-7.757441 -5.60387,-13.59375 -13.40624,-13.59375 z m -15.0625,64.65625 c 2.779478,3e-6 5.03125,2.277417 5.03125,5.093747 -2e-6,2.82635 -2.251775,5.125 -5.03125,5.125 -2.76955,0 -5.03125,-2.29865 -5.03125,-5.125 2e-6,-2.81633 2.261697,-5.093747 5.03125,-5.093747 z" />
245
+ </g>
246
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24" fill="white"><path d="M620-360H520q-8 0-14-6t-6-14v-200q0-8 6-14t14-6h100q17 0 28.5 11.5T660-560v160q0 17-11.5 28.5T620-360Zm-200 0h-90q-13 0-21.5-8.5T300-390q0-13 8.5-21.5T330-420h70v-40h-40q-8 0-14-6t-6-14q0-8 6-14t14-6h40v-40h-70q-13 0-21.5-8.5T300-570q0-13 8.5-21.5T330-600h90q17 0 28.5 11.5T460-560v160q0 17-11.5 28.5T420-360Zm140-60h40v-120h-40v120Zm280-20q-17 0-28.5-11.5T800-480q0-115-72.5-203T542-794l30 30q11 11 11 28t-11 28q-11 11-28 11t-28-11L387-837q-8-8-5-20t15-15q20-5 41-6.5t42-1.5q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 17-11.5 28.5T840-440ZM480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-17 11.5-28.5T120-520q17 0 28.5 11.5T160-480q0 115 72.5 203T418-166l-30-30q-11-11-11-28t11-28q11-11 28-11t28 11l129 129q8 8 5 20t-15 15q-20 5-41 6.5T480-80Z"/></svg>
@@ -0,0 +1,50 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ height="24"
4
+ viewBox="0 -960 960 960"
5
+ width="24"
6
+ version="1.1"
7
+ id="svg1"
8
+ fill="white"
9
+ sodipodi:docname="rotation_ccw.svg"
10
+ inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ xmlns:svg="http://www.w3.org/2000/svg">
15
+ <defs
16
+ id="defs1" />
17
+ <sodipodi:namedview
18
+ id="namedview1"
19
+ pagecolor="#505050"
20
+ bordercolor="#eeeeee"
21
+ borderopacity="1"
22
+ inkscape:showpageshadow="0"
23
+ inkscape:pageopacity="0"
24
+ inkscape:pagecheckerboard="0"
25
+ inkscape:deskcolor="#505050"
26
+ inkscape:zoom="33.875"
27
+ inkscape:cx="9.6383764"
28
+ inkscape:cy="12"
29
+ inkscape:window-width="1920"
30
+ inkscape:window-height="1009"
31
+ inkscape:window-x="1912"
32
+ inkscape:window-y="-8"
33
+ inkscape:window-maximized="1"
34
+ inkscape:current-layer="layer1" />
35
+ <g
36
+ inkscape:groupmode="layer"
37
+ id="layer1"
38
+ inkscape:label="rot1"
39
+ style="display:inline"
40
+ transform="matrix(-1,0,0,1,958.8,0)">
41
+ <path
42
+ d="m 480,-880 c -55.33327,0 -107.349,10.4844 -156.01563,31.48438 -48.66662,20.99997 -90.95316,49.54691 -126.95312,85.54687 -35.99996,35.99996 -64.5469,78.2865 -85.54687,126.95313 C 90.484396,-587.349 80,-535.33327 80,-480 c 0,11.33332 3.817716,20.84896 11.484375,28.51563 C 99.151034,-443.81771 108.66668,-440 120,-440 c 11.33332,0 20.84896,-3.81771 28.51562,-11.48437 C 156.18229,-459.15104 160,-468.66668 160,-480 c 0,-76.66659 24.16672,-144.30214 72.5,-202.96875 48.33328,-58.66661 110.1355,-95.68231 185.46875,-111.01562 l -30,30 c -7.33332,7.33332 -10.9375,16.63543 -10.9375,27.96875 0,11.33331 3.60418,20.71355 10.9375,28.04687 7.33332,7.33332 16.71356,10.9375 28.04687,10.9375 11.33332,0 20.63543,-3.60418 27.96875,-10.9375 l 128.98438,-129.0625 c 5.33332,-5.33332 7,-12.00001 5,-20 -2,-7.99999 -7.00001,-13 -15,-15 -13.33332,-3.33333 -26.93751,-5.48438 -40.9375,-6.48437 C 508.03126,-879.51562 493.99999,-880 480,-880 Z"
43
+ style="display:inline"
44
+ id="path2" />
45
+ <path
46
+ d="m 478.78951,-80 c 55.33474,0 107.3518,-10.4844 156.01978,-31.48438 48.66788,-20.99997 90.95549,-49.54691 126.95644,-85.54687 36.00084,-35.99996 64.54859,-78.2865 85.54904,-126.95313 C 868.31532,-372.651 878.8,-424.66673 878.8,-480 c 0,-11.33332 -3.8178,-20.84896 -11.4846,-28.51563 C 859.6485,-516.18229 850.13255,-520 838.79895,-520 c -11.3336,0 -20.84945,3.81771 -28.51635,11.48437 -7.6669,7.66667 -11.4847,17.18231 -11.4847,28.51563 0,76.66659 -24.16734,144.30214 -72.50191,202.96875 -48.33456,58.66661 -110.13839,95.68231 -185.47357,111.01562 l 30.00079,-30 c 7.33349,-7.33332 10.93779,-16.63543 10.93779,-27.96875 0,-11.33331 -3.6043,-20.71355 -10.93779,-28.04687 -7.33349,-7.33332 -16.71404,-10.9375 -28.04764,-10.9375 -11.33359,0 -20.63594,3.60418 -27.96943,10.9375 l -128.98781,129.0625 c -5.33346,5.33332 -7.00018,12.00001 -5.00013,20 2.00005,7.99999 7.00019,13 15.0004,15 13.33366,3.33333 26.9382,5.48438 40.93856,6.48437 14.00036,1 28.032,1.48438 42.03235,1.48438 z"
47
+ style="display:inline;stroke-width:1.00001"
48
+ id="path3" />
49
+ </g>
50
+ </svg>
@@ -0,0 +1,57 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ height="24"
4
+ viewBox="0 -960 960 960"
5
+ width="24"
6
+ version="1.1"
7
+ id="svg1"
8
+ fill="white"
9
+ sodipodi:docname="rotation_ccw_a.svg"
10
+ inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ xmlns:svg="http://www.w3.org/2000/svg">
15
+ <defs
16
+ id="defs1" />
17
+ <sodipodi:namedview
18
+ id="namedview1"
19
+ pagecolor="#505050"
20
+ bordercolor="#eeeeee"
21
+ borderopacity="1"
22
+ inkscape:showpageshadow="0"
23
+ inkscape:pageopacity="0"
24
+ inkscape:pagecheckerboard="0"
25
+ inkscape:deskcolor="#505050"
26
+ inkscape:zoom="33.875"
27
+ inkscape:cx="9.6383764"
28
+ inkscape:cy="12"
29
+ inkscape:window-width="1920"
30
+ inkscape:window-height="1009"
31
+ inkscape:window-x="1912"
32
+ inkscape:window-y="-8"
33
+ inkscape:window-maximized="1"
34
+ inkscape:current-layer="layer1"
35
+ showgrid="false" />
36
+ <g
37
+ inkscape:groupmode="layer"
38
+ id="layer1"
39
+ inkscape:label="rot1"
40
+ style="display:inline"
41
+ transform="matrix(-1,0,0,1,958.8,0)">
42
+ <path
43
+ d="m 480,-880 c -55.33327,0 -107.349,10.4844 -156.01563,31.48438 -48.66662,20.99997 -90.95316,49.54691 -126.95312,85.54687 -35.99996,35.99996 -64.5469,78.2865 -85.54687,126.95313 C 90.484396,-587.349 80,-535.33327 80,-480 c 0,11.33332 3.817716,20.84896 11.484375,28.51563 C 99.151034,-443.81771 108.66668,-440 120,-440 c 11.33332,0 20.84896,-3.81771 28.51562,-11.48437 C 156.18229,-459.15104 160,-468.66668 160,-480 c 0,-76.66659 24.16672,-144.30214 72.5,-202.96875 48.33328,-58.66661 110.1355,-95.68231 185.46875,-111.01562 l -30,30 c -7.33332,7.33332 -10.9375,16.63543 -10.9375,27.96875 0,11.33331 3.60418,20.71355 10.9375,28.04687 7.33332,7.33332 16.71356,10.9375 28.04687,10.9375 11.33332,0 20.63543,-3.60418 27.96875,-10.9375 l 128.98438,-129.0625 c 5.33332,-5.33332 7,-12.00001 5,-20 -2,-7.99999 -7.00001,-13 -15,-15 -13.33332,-3.33333 -26.93751,-5.48438 -40.9375,-6.48437 C 508.03126,-879.51562 493.99999,-880 480,-880 Z"
44
+ style="display:inline"
45
+ id="path2" />
46
+ <path
47
+ d="m 478.78951,-80 c 55.33474,0 107.3518,-10.4844 156.01978,-31.48438 48.66788,-20.99997 90.95549,-49.54691 126.95644,-85.54687 36.00084,-35.99996 64.54859,-78.2865 85.54904,-126.95313 C 868.31532,-372.651 878.8,-424.66673 878.8,-480 c 0,-11.33332 -3.8178,-20.84896 -11.4846,-28.51563 C 859.6485,-516.18229 850.13255,-520 838.79895,-520 c -11.3336,0 -20.84945,3.81771 -28.51635,11.48437 -7.6669,7.66667 -11.4847,17.18231 -11.4847,28.51563 0,76.66659 -24.16734,144.30214 -72.50191,202.96875 -48.33456,58.66661 -110.13839,95.68231 -185.47357,111.01562 l 30.00079,-30 c 7.33349,-7.33332 10.93779,-16.63543 10.93779,-27.96875 0,-11.33331 -3.6043,-20.71355 -10.93779,-28.04687 -7.33349,-7.33332 -16.71404,-10.9375 -28.04764,-10.9375 -11.33359,0 -20.63594,3.60418 -27.96943,10.9375 l -128.98781,129.0625 c -5.33346,5.33332 -7.00018,12.00001 -5.00013,20 2.00005,7.99999 7.00019,13 15.0004,15 13.33366,3.33333 26.9382,5.48438 40.93856,6.48437 14.00036,1 28.032,1.48438 42.03235,1.48438 z"
48
+ style="display:inline;stroke-width:1.00001"
49
+ id="path3" />
50
+ <path
51
+ style="font-size:480px;font-family:'Nova Round';-inkscape-font-specification:'Nova Round';text-align:center;text-anchor:middle;stroke-width:40"
52
+ d="M -596.92001,-296.03125 V -546.8125 q 0,-50.625 31.64062,-83.20312 Q -531.99814,-664 -478.56064,-664 q 52.5,0 86.71875,33.98438 31.64063,31.40625 31.64063,83.20312 v 229.6875 l -44.53125,21.09375 h -2.34375 v -165 H -550.04501 V -317.125 l -44.53125,21.09375 z m 46.875,-207.65625 h 142.96875 v -43.125 q 0,-31.40625 -16.875,-50.85937 -20.85938,-24.14063 -54.60938,-24.14063 -33.75,0 -54.60937,24.14063 -16.875,19.45312 -16.875,50.85937 z"
53
+ id="text3"
54
+ transform="scale(-1,1)"
55
+ aria-label="A" />
56
+ </g>
57
+ </svg>
@@ -0,0 +1,57 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ height="24"
4
+ viewBox="0 -960 960 960"
5
+ width="24"
6
+ version="1.1"
7
+ id="svg1"
8
+ fill="white"
9
+ sodipodi:docname="rotation_ccw_b.svg"
10
+ inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ xmlns:svg="http://www.w3.org/2000/svg">
15
+ <defs
16
+ id="defs1" />
17
+ <sodipodi:namedview
18
+ id="namedview1"
19
+ pagecolor="#505050"
20
+ bordercolor="#eeeeee"
21
+ borderopacity="1"
22
+ inkscape:showpageshadow="0"
23
+ inkscape:pageopacity="0"
24
+ inkscape:pagecheckerboard="0"
25
+ inkscape:deskcolor="#505050"
26
+ inkscape:zoom="33.875"
27
+ inkscape:cx="9.6678967"
28
+ inkscape:cy="12"
29
+ inkscape:window-width="1920"
30
+ inkscape:window-height="1009"
31
+ inkscape:window-x="1912"
32
+ inkscape:window-y="-8"
33
+ inkscape:window-maximized="1"
34
+ inkscape:current-layer="layer1"
35
+ showgrid="false" />
36
+ <g
37
+ inkscape:groupmode="layer"
38
+ id="layer1"
39
+ inkscape:label="rot1"
40
+ style="display:inline"
41
+ transform="matrix(-1,0,0,1,958.8,0)">
42
+ <path
43
+ d="m 480,-880 c -55.33327,0 -107.349,10.4844 -156.01563,31.48438 -48.66662,20.99997 -90.95316,49.54691 -126.95312,85.54687 -35.99996,35.99996 -64.5469,78.2865 -85.54687,126.95313 C 90.484396,-587.349 80,-535.33327 80,-480 c 0,11.33332 3.817716,20.84896 11.484375,28.51563 C 99.151034,-443.81771 108.66668,-440 120,-440 c 11.33332,0 20.84896,-3.81771 28.51562,-11.48437 C 156.18229,-459.15104 160,-468.66668 160,-480 c 0,-76.66659 24.16672,-144.30214 72.5,-202.96875 48.33328,-58.66661 110.1355,-95.68231 185.46875,-111.01562 l -30,30 c -7.33332,7.33332 -10.9375,16.63543 -10.9375,27.96875 0,11.33331 3.60418,20.71355 10.9375,28.04687 7.33332,7.33332 16.71356,10.9375 28.04687,10.9375 11.33332,0 20.63543,-3.60418 27.96875,-10.9375 l 128.98438,-129.0625 c 5.33332,-5.33332 7,-12.00001 5,-20 -2,-7.99999 -7.00001,-13 -15,-15 -13.33332,-3.33333 -26.93751,-5.48438 -40.9375,-6.48437 C 508.03126,-879.51562 493.99999,-880 480,-880 Z"
44
+ style="display:inline"
45
+ id="path2" />
46
+ <path
47
+ d="m 478.78951,-80 c 55.33474,0 107.3518,-10.4844 156.01978,-31.48438 48.66788,-20.99997 90.95549,-49.54691 126.95644,-85.54687 36.00084,-35.99996 64.54859,-78.2865 85.54904,-126.95313 C 868.31532,-372.651 878.8,-424.66673 878.8,-480 c 0,-11.33332 -3.8178,-20.84896 -11.4846,-28.51563 C 859.6485,-516.18229 850.13255,-520 838.79895,-520 c -11.3336,0 -20.84945,3.81771 -28.51635,11.48437 -7.6669,7.66667 -11.4847,17.18231 -11.4847,28.51563 0,76.66659 -24.16734,144.30214 -72.50191,202.96875 -48.33456,58.66661 -110.13839,95.68231 -185.47357,111.01562 l 30.00079,-30 c 7.33349,-7.33332 10.93779,-16.63543 10.93779,-27.96875 0,-11.33331 -3.6043,-20.71355 -10.93779,-28.04687 -7.33349,-7.33332 -16.71404,-10.9375 -28.04764,-10.9375 -11.33359,0 -20.63594,3.60418 -27.96943,10.9375 l -128.98781,129.0625 c -5.33346,5.33332 -7.00018,12.00001 -5.00013,20 2.00005,7.99999 7.00019,13 15.0004,15 13.33366,3.33333 26.9382,5.48438 40.93856,6.48437 14.00036,1 28.032,1.48438 42.03235,1.48438 z"
48
+ style="display:inline;stroke-width:1.00001"
49
+ id="path3" />
50
+ <path
51
+ style="font-size:480px;font-family:'Nova Round';-inkscape-font-specification:'Nova Round';text-align:center;text-anchor:middle;stroke-width:40"
52
+ d="m -545.35751,-347.59375 h 66.79687 q 35.39063,0 56.25,-22.26562 15.23438,-16.17188 15.23438,-42.65625 0,-27.42188 -16.17188,-46.17188 -17.57812,-21.5625 -55.3125,-21.5625 h -66.79687 z m 0,-174.84375 h 66.79687 q 23.4375,0 37.73438,-15.23437 12.65625,-13.59375 12.65625,-35.39063 0,-17.8125 -15.23438,-32.10937 -13.59375,-11.95313 -35.15625,-11.95313 h -66.79687 z m -46.875,217.03125 v -342.1875 l 24.84375,-11.71875 h 88.82812 q 39.60938,0 65.85938,21.5625 31.17187,25.3125 31.17187,64.92188 0,40.3125 -35.625,67.03125 11.48438,4.92187 22.73438,14.76562 34.21875,31.17188 34.21875,77.34375 0,46.40625 -30,76.17188 -32.10938,32.10937 -88.35938,32.10937 z"
53
+ id="text3"
54
+ transform="scale(-1,1)"
55
+ aria-label="B" />
56
+ </g>
57
+ </svg>
@@ -0,0 +1,57 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ height="24"
4
+ viewBox="0 -960 960 960"
5
+ width="24"
6
+ version="1.1"
7
+ id="svg1"
8
+ fill="white"
9
+ sodipodi:docname="rotation_ccw_c.svg"
10
+ inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ xmlns:svg="http://www.w3.org/2000/svg">
15
+ <defs
16
+ id="defs1" />
17
+ <sodipodi:namedview
18
+ id="namedview1"
19
+ pagecolor="#505050"
20
+ bordercolor="#eeeeee"
21
+ borderopacity="1"
22
+ inkscape:showpageshadow="0"
23
+ inkscape:pageopacity="0"
24
+ inkscape:pagecheckerboard="0"
25
+ inkscape:deskcolor="#505050"
26
+ inkscape:zoom="33.875"
27
+ inkscape:cx="9.6678967"
28
+ inkscape:cy="12"
29
+ inkscape:window-width="1920"
30
+ inkscape:window-height="1009"
31
+ inkscape:window-x="1912"
32
+ inkscape:window-y="-8"
33
+ inkscape:window-maximized="1"
34
+ inkscape:current-layer="layer1"
35
+ showgrid="false" />
36
+ <g
37
+ inkscape:groupmode="layer"
38
+ id="layer1"
39
+ inkscape:label="rot1"
40
+ style="display:inline"
41
+ transform="matrix(-1,0,0,1,958.8,0)">
42
+ <path
43
+ d="m 480,-880 c -55.33327,0 -107.349,10.4844 -156.01563,31.48438 -48.66662,20.99997 -90.95316,49.54691 -126.95312,85.54687 -35.99996,35.99996 -64.5469,78.2865 -85.54687,126.95313 C 90.484396,-587.349 80,-535.33327 80,-480 c 0,11.33332 3.817716,20.84896 11.484375,28.51563 C 99.151034,-443.81771 108.66668,-440 120,-440 c 11.33332,0 20.84896,-3.81771 28.51562,-11.48437 C 156.18229,-459.15104 160,-468.66668 160,-480 c 0,-76.66659 24.16672,-144.30214 72.5,-202.96875 48.33328,-58.66661 110.1355,-95.68231 185.46875,-111.01562 l -30,30 c -7.33332,7.33332 -10.9375,16.63543 -10.9375,27.96875 0,11.33331 3.60418,20.71355 10.9375,28.04687 7.33332,7.33332 16.71356,10.9375 28.04687,10.9375 11.33332,0 20.63543,-3.60418 27.96875,-10.9375 l 128.98438,-129.0625 c 5.33332,-5.33332 7,-12.00001 5,-20 -2,-7.99999 -7.00001,-13 -15,-15 -13.33332,-3.33333 -26.93751,-5.48438 -40.9375,-6.48437 C 508.03126,-879.51562 493.99999,-880 480,-880 Z"
44
+ style="display:inline"
45
+ id="path2" />
46
+ <path
47
+ d="m 478.78951,-80 c 55.33474,0 107.3518,-10.4844 156.01978,-31.48438 48.66788,-20.99997 90.95549,-49.54691 126.95644,-85.54687 36.00084,-35.99996 64.54859,-78.2865 85.54904,-126.95313 C 868.31532,-372.651 878.8,-424.66673 878.8,-480 c 0,-11.33332 -3.8178,-20.84896 -11.4846,-28.51563 C 859.6485,-516.18229 850.13255,-520 838.79895,-520 c -11.3336,0 -20.84945,3.81771 -28.51635,11.48437 -7.6669,7.66667 -11.4847,17.18231 -11.4847,28.51563 0,76.66659 -24.16734,144.30214 -72.50191,202.96875 -48.33456,58.66661 -110.13839,95.68231 -185.47357,111.01562 l 30.00079,-30 c 7.33349,-7.33332 10.93779,-16.63543 10.93779,-27.96875 0,-11.33331 -3.6043,-20.71355 -10.93779,-28.04687 -7.33349,-7.33332 -16.71404,-10.9375 -28.04764,-10.9375 -11.33359,0 -20.63594,3.60418 -27.96943,10.9375 l -128.98781,129.0625 c -5.33346,5.33332 -7.00018,12.00001 -5.00013,20 2.00005,7.99999 7.00019,13 15.0004,15 13.33366,3.33333 26.9382,5.48438 40.93856,6.48437 14.00036,1 28.032,1.48438 42.03235,1.48438 z"
48
+ style="display:inline;stroke-width:1.00001"
49
+ id="path3" />
50
+ <path
51
+ style="font-size:480px;font-family:'Nova Round';-inkscape-font-specification:'Nova Round';text-align:center;text-anchor:middle;stroke-width:40"
52
+ d="m -360.20126,-434.3125 v 16.40625 q 0,50.85938 -31.64063,83.20313 -33.28125,33.98437 -86.71875,33.98437 -53.4375,0 -86.71875,-33.98437 -31.64062,-32.34375 -31.64062,-83.20313 V -546.8125 q 0,-50.85937 31.64062,-83.20312 Q -531.99814,-664 -478.56064,-664 q 55.3125,0 86.71875,33.98438 31.64063,33.98437 31.64063,78.51562 l -44.53125,21.09375 h -2.34375 v -16.40625 q 0,-31.40625 -16.875,-50.85937 -20.85938,-24.14063 -54.60938,-24.14063 -33.75,0 -54.60937,24.14063 -16.875,19.45312 -16.875,50.85937 v 128.90625 q 0,31.40625 16.875,50.85938 20.85937,24.14062 54.60937,24.14062 33.75,0 54.60938,-24.14062 16.875,-19.45313 16.875,-46.17188 l 44.53125,-21.09375 z"
53
+ id="text3"
54
+ transform="scale(-1,1)"
55
+ aria-label="C" />
56
+ </g>
57
+ </svg>
@@ -0,0 +1,49 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ height="24"
4
+ viewBox="0 -960 960 960"
5
+ width="24"
6
+ version="1.1"
7
+ id="svg1"
8
+ fill="white"
9
+ sodipodi:docname="rotation_cw.svg"
10
+ inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ xmlns:svg="http://www.w3.org/2000/svg">
15
+ <defs
16
+ id="defs1" />
17
+ <sodipodi:namedview
18
+ id="namedview1"
19
+ pagecolor="#505050"
20
+ bordercolor="#eeeeee"
21
+ borderopacity="1"
22
+ inkscape:showpageshadow="0"
23
+ inkscape:pageopacity="0"
24
+ inkscape:pagecheckerboard="0"
25
+ inkscape:deskcolor="#505050"
26
+ inkscape:zoom="33.875"
27
+ inkscape:cx="9.6383764"
28
+ inkscape:cy="12"
29
+ inkscape:window-width="1920"
30
+ inkscape:window-height="1009"
31
+ inkscape:window-x="1912"
32
+ inkscape:window-y="-8"
33
+ inkscape:window-maximized="1"
34
+ inkscape:current-layer="svg1" />
35
+ <g
36
+ inkscape:groupmode="layer"
37
+ id="layer1"
38
+ inkscape:label="rot1"
39
+ style="display:inline">
40
+ <path
41
+ d="m 480,-880 c -55.33327,0 -107.349,10.4844 -156.01563,31.48438 -48.66662,20.99997 -90.95316,49.54691 -126.95312,85.54687 -35.99996,35.99996 -64.5469,78.2865 -85.54687,126.95313 C 90.484396,-587.349 80,-535.33327 80,-480 c 0,11.33332 3.817716,20.84896 11.484375,28.51563 C 99.151034,-443.81771 108.66668,-440 120,-440 c 11.33332,0 20.84896,-3.81771 28.51562,-11.48437 C 156.18229,-459.15104 160,-468.66668 160,-480 c 0,-76.66659 24.16672,-144.30214 72.5,-202.96875 48.33328,-58.66661 110.1355,-95.68231 185.46875,-111.01562 l -30,30 c -7.33332,7.33332 -10.9375,16.63543 -10.9375,27.96875 0,11.33331 3.60418,20.71355 10.9375,28.04687 7.33332,7.33332 16.71356,10.9375 28.04687,10.9375 11.33332,0 20.63543,-3.60418 27.96875,-10.9375 l 128.98438,-129.0625 c 5.33332,-5.33332 7,-12.00001 5,-20 -2,-7.99999 -7.00001,-13 -15,-15 -13.33332,-3.33333 -26.93751,-5.48438 -40.9375,-6.48437 C 508.03126,-879.51562 493.99999,-880 480,-880 Z"
42
+ style="display:inline"
43
+ id="path2" />
44
+ <path
45
+ d="m 478.78951,-80 c 55.33474,0 107.3518,-10.4844 156.01978,-31.48438 48.66788,-20.99997 90.95549,-49.54691 126.95644,-85.54687 36.00084,-35.99996 64.54859,-78.2865 85.54904,-126.95313 C 868.31532,-372.651 878.8,-424.66673 878.8,-480 c 0,-11.33332 -3.8178,-20.84896 -11.4846,-28.51563 C 859.6485,-516.18229 850.13255,-520 838.79895,-520 c -11.3336,0 -20.84945,3.81771 -28.51635,11.48437 -7.6669,7.66667 -11.4847,17.18231 -11.4847,28.51563 0,76.66659 -24.16734,144.30214 -72.50191,202.96875 -48.33456,58.66661 -110.13839,95.68231 -185.47357,111.01562 l 30.00079,-30 c 7.33349,-7.33332 10.93779,-16.63543 10.93779,-27.96875 0,-11.33331 -3.6043,-20.71355 -10.93779,-28.04687 -7.33349,-7.33332 -16.71404,-10.9375 -28.04764,-10.9375 -11.33359,0 -20.63594,3.60418 -27.96943,10.9375 l -128.98781,129.0625 c -5.33346,5.33332 -7.00018,12.00001 -5.00013,20 2.00005,7.99999 7.00019,13 15.0004,15 13.33366,3.33333 26.9382,5.48438 40.93856,6.48437 14.00036,1 28.032,1.48438 42.03235,1.48438 z"
46
+ style="display:inline;stroke-width:1.00001"
47
+ id="path3" />
48
+ </g>
49
+ </svg>
@@ -0,0 +1,30 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ height="24"
4
+ viewBox="0 -960 960 960"
5
+ width="24"
6
+ version="1.1"
7
+ id="svg1"
8
+ fill="white"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:svg="http://www.w3.org/2000/svg">
11
+ <defs
12
+ id="defs1" />
13
+ <g
14
+ id="layer1"
15
+ style="display:inline">
16
+ <path
17
+ d="m 480,-880 c -55.33327,0 -107.349,10.4844 -156.01563,31.48438 -48.66662,20.99997 -90.95316,49.54691 -126.95312,85.54687 -35.99996,35.99996 -64.5469,78.2865 -85.54687,126.95313 C 90.484396,-587.349 80,-535.33327 80,-480 c 0,11.33332 3.817716,20.84896 11.484375,28.51563 C 99.151034,-443.81771 108.66668,-440 120,-440 c 11.33332,0 20.84896,-3.81771 28.51562,-11.48437 C 156.18229,-459.15104 160,-468.66668 160,-480 c 0,-76.66659 24.16672,-144.30214 72.5,-202.96875 48.33328,-58.66661 110.1355,-95.68231 185.46875,-111.01562 l -30,30 c -7.33332,7.33332 -10.9375,16.63543 -10.9375,27.96875 0,11.33331 3.60418,20.71355 10.9375,28.04687 7.33332,7.33332 16.71356,10.9375 28.04687,10.9375 11.33332,0 20.63543,-3.60418 27.96875,-10.9375 l 128.98438,-129.0625 c 5.33332,-5.33332 7,-12.00001 5,-20 -2,-7.99999 -7.00001,-13 -15,-15 -13.33332,-3.33333 -26.93751,-5.48438 -40.9375,-6.48437 C 508.03126,-879.51562 493.99999,-880 480,-880 Z"
18
+ style="display:inline"
19
+ id="path2" />
20
+ <path
21
+ d="m 478.78951,-80 c 55.33474,0 107.3518,-10.4844 156.01978,-31.48438 48.66788,-20.99997 90.95549,-49.54691 126.95644,-85.54687 36.00084,-35.99996 64.54859,-78.2865 85.54904,-126.95313 C 868.31532,-372.651 878.8,-424.66673 878.8,-480 c 0,-11.33332 -3.8178,-20.84896 -11.4846,-28.51563 C 859.6485,-516.18229 850.13255,-520 838.79895,-520 c -11.3336,0 -20.84945,3.81771 -28.51635,11.48437 -7.6669,7.66667 -11.4847,17.18231 -11.4847,28.51563 0,76.66659 -24.16734,144.30214 -72.50191,202.96875 -48.33456,58.66661 -110.13839,95.68231 -185.47357,111.01562 l 30.00079,-30 c 7.33349,-7.33332 10.93779,-16.63543 10.93779,-27.96875 0,-11.33331 -3.6043,-20.71355 -10.93779,-28.04687 -7.33349,-7.33332 -16.71404,-10.9375 -28.04764,-10.9375 -11.33359,0 -20.63594,3.60418 -27.96943,10.9375 l -128.98781,129.0625 c -5.33346,5.33332 -7.00018,12.00001 -5.00013,20 2.00005,7.99999 7.00019,13 15.0004,15 13.33366,3.33333 26.9382,5.48438 40.93856,6.48437 14.00036,1 28.032,1.48438 42.03235,1.48438 z"
22
+ style="display:inline;stroke-width:1.00001"
23
+ id="path3" />
24
+ <path
25
+ style="font-size:480px;font-family:'Nova Round';-inkscape-font-specification:'Nova Round';text-align:center;text-anchor:middle;stroke-width:40"
26
+ d="m 361.87906,-296.01126 v -250.78125 q 0,-50.625 31.64062,-83.20313 33.28125,-33.98437 86.71875,-33.98437 52.5,0 86.71875,33.98437 31.64063,31.40625 31.64063,83.20313 v 229.6875 l -44.53125,21.09375 h -2.34375 v -165 H 408.75406 v 143.90625 l -44.53125,21.09375 z m 46.875,-207.65625 h 142.96875 v -43.125 q 0,-31.40625 -16.875,-50.85938 -20.85938,-24.14062 -54.60938,-24.14062 -33.75,0 -54.60937,24.14062 -16.875,19.45313 -16.875,50.85938 z"
27
+ id="text3"
28
+ aria-label="A" />
29
+ </g>
30
+ </svg>
@@ -0,0 +1,30 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ height="24"
4
+ viewBox="0 -960 960 960"
5
+ width="24"
6
+ version="1.1"
7
+ id="svg1"
8
+ fill="white"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:svg="http://www.w3.org/2000/svg">
11
+ <defs
12
+ id="defs1" />
13
+ <g
14
+ id="layer1"
15
+ style="display:inline">
16
+ <path
17
+ d="m 480,-880 c -55.33327,0 -107.349,10.4844 -156.01563,31.48438 -48.66662,20.99997 -90.95316,49.54691 -126.95312,85.54687 -35.99996,35.99996 -64.5469,78.2865 -85.54687,126.95313 C 90.484396,-587.349 80,-535.33327 80,-480 c 0,11.33332 3.817716,20.84896 11.484375,28.51563 C 99.151034,-443.81771 108.66668,-440 120,-440 c 11.33332,0 20.84896,-3.81771 28.51562,-11.48437 C 156.18229,-459.15104 160,-468.66668 160,-480 c 0,-76.66659 24.16672,-144.30214 72.5,-202.96875 48.33328,-58.66661 110.1355,-95.68231 185.46875,-111.01562 l -30,30 c -7.33332,7.33332 -10.9375,16.63543 -10.9375,27.96875 0,11.33331 3.60418,20.71355 10.9375,28.04687 7.33332,7.33332 16.71356,10.9375 28.04687,10.9375 11.33332,0 20.63543,-3.60418 27.96875,-10.9375 l 128.98438,-129.0625 c 5.33332,-5.33332 7,-12.00001 5,-20 -2,-7.99999 -7.00001,-13 -15,-15 -13.33332,-3.33333 -26.93751,-5.48438 -40.9375,-6.48437 C 508.03126,-879.51562 493.99999,-880 480,-880 Z"
18
+ style="display:inline"
19
+ id="path2" />
20
+ <path
21
+ d="m 478.78951,-80 c 55.33474,0 107.3518,-10.4844 156.01978,-31.48438 48.66788,-20.99997 90.95549,-49.54691 126.95644,-85.54687 36.00084,-35.99996 64.54859,-78.2865 85.54904,-126.95313 C 868.31532,-372.651 878.8,-424.66673 878.8,-480 c 0,-11.33332 -3.8178,-20.84896 -11.4846,-28.51563 C 859.6485,-516.18229 850.13255,-520 838.79895,-520 c -11.3336,0 -20.84945,3.81771 -28.51635,11.48437 -7.6669,7.66667 -11.4847,17.18231 -11.4847,28.51563 0,76.66659 -24.16734,144.30214 -72.50191,202.96875 -48.33456,58.66661 -110.13839,95.68231 -185.47357,111.01562 l 30.00079,-30 c 7.33349,-7.33332 10.93779,-16.63543 10.93779,-27.96875 0,-11.33331 -3.6043,-20.71355 -10.93779,-28.04687 -7.33349,-7.33332 -16.71404,-10.9375 -28.04764,-10.9375 -11.33359,0 -20.63594,3.60418 -27.96943,10.9375 l -128.98781,129.0625 c -5.33346,5.33332 -7.00018,12.00001 -5.00013,20 2.00005,7.99999 7.00019,13 15.0004,15 13.33366,3.33333 26.9382,5.48438 40.93856,6.48437 14.00036,1 28.032,1.48438 42.03235,1.48438 z"
22
+ style="display:inline;stroke-width:1.00001"
23
+ id="path3" />
24
+ <path
25
+ style="font-size:480px;font-family:'Nova Round';-inkscape-font-specification:'Nova Round';text-align:center;text-anchor:middle;stroke-width:40"
26
+ d="m 413.44156,-347.57376 h 66.79687 q 35.39063,0 56.25,-22.26563 15.23438,-16.17187 15.23438,-42.65625 0,-27.42187 -16.17188,-46.17187 -17.57812,-21.5625 -55.3125,-21.5625 h -66.79687 z m 0,-174.84375 h 66.79687 q 23.4375,0 37.73438,-15.23438 12.65625,-13.59375 12.65625,-35.39062 0,-17.8125 -15.23438,-32.10938 -13.59375,-11.95312 -35.15625,-11.95312 h -66.79687 z m -46.875,217.03125 v -342.1875 l 24.84375,-11.71875 h 88.82812 q 39.60938,0 65.85938,21.5625 31.17187,25.3125 31.17187,64.92187 0,40.3125 -35.625,67.03125 11.48438,4.92188 22.73438,14.76563 34.21875,31.17187 34.21875,77.34375 0,46.40625 -30,76.17187 -32.10938,32.10938 -88.35938,32.10938 z"
27
+ id="text3"
28
+ aria-label="B" />
29
+ </g>
30
+ </svg>
@@ -0,0 +1,30 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ height="24"
4
+ viewBox="0 -960 960 960"
5
+ width="24"
6
+ version="1.1"
7
+ id="svg1"
8
+ fill="white"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:svg="http://www.w3.org/2000/svg">
11
+ <defs
12
+ id="defs1" />
13
+ <g
14
+ id="layer1"
15
+ style="display:inline">
16
+ <path
17
+ d="m 480,-880 c -55.33327,0 -107.349,10.4844 -156.01563,31.48438 -48.66662,20.99997 -90.95316,49.54691 -126.95312,85.54687 -35.99996,35.99996 -64.5469,78.2865 -85.54687,126.95313 C 90.484396,-587.349 80,-535.33327 80,-480 c 0,11.33332 3.817716,20.84896 11.484375,28.51563 C 99.151034,-443.81771 108.66668,-440 120,-440 c 11.33332,0 20.84896,-3.81771 28.51562,-11.48437 C 156.18229,-459.15104 160,-468.66668 160,-480 c 0,-76.66659 24.16672,-144.30214 72.5,-202.96875 48.33328,-58.66661 110.1355,-95.68231 185.46875,-111.01562 l -30,30 c -7.33332,7.33332 -10.9375,16.63543 -10.9375,27.96875 0,11.33331 3.60418,20.71355 10.9375,28.04687 7.33332,7.33332 16.71356,10.9375 28.04687,10.9375 11.33332,0 20.63543,-3.60418 27.96875,-10.9375 l 128.98438,-129.0625 c 5.33332,-5.33332 7,-12.00001 5,-20 -2,-7.99999 -7.00001,-13 -15,-15 -13.33332,-3.33333 -26.93751,-5.48438 -40.9375,-6.48437 C 508.03126,-879.51562 493.99999,-880 480,-880 Z"
18
+ style="display:inline"
19
+ id="path2" />
20
+ <path
21
+ d="m 478.78951,-80 c 55.33474,0 107.3518,-10.4844 156.01978,-31.48438 48.66788,-20.99997 90.95549,-49.54691 126.95644,-85.54687 36.00084,-35.99996 64.54859,-78.2865 85.54904,-126.95313 C 868.31532,-372.651 878.8,-424.66673 878.8,-480 c 0,-11.33332 -3.8178,-20.84896 -11.4846,-28.51563 C 859.6485,-516.18229 850.13255,-520 838.79895,-520 c -11.3336,0 -20.84945,3.81771 -28.51635,11.48437 -7.6669,7.66667 -11.4847,17.18231 -11.4847,28.51563 0,76.66659 -24.16734,144.30214 -72.50191,202.96875 -48.33456,58.66661 -110.13839,95.68231 -185.47357,111.01562 l 30.00079,-30 c 7.33349,-7.33332 10.93779,-16.63543 10.93779,-27.96875 0,-11.33331 -3.6043,-20.71355 -10.93779,-28.04687 -7.33349,-7.33332 -16.71404,-10.9375 -28.04764,-10.9375 -11.33359,0 -20.63594,3.60418 -27.96943,10.9375 l -128.98781,129.0625 c -5.33346,5.33332 -7.00018,12.00001 -5.00013,20 2.00005,7.99999 7.00019,13 15.0004,15 13.33366,3.33333 26.9382,5.48438 40.93856,6.48437 14.00036,1 28.032,1.48438 42.03235,1.48438 z"
22
+ style="display:inline;stroke-width:1.00001"
23
+ id="path3" />
24
+ <path
25
+ style="font-size:480px;font-family:'Nova Round';-inkscape-font-specification:'Nova Round';text-align:center;text-anchor:middle;stroke-width:40"
26
+ d="m 598.59781,-434.29251 v 16.40625 q 0,50.85937 -31.64063,83.20312 -33.28125,33.98438 -86.71875,33.98438 -53.4375,0 -86.71875,-33.98438 -31.64062,-32.34375 -31.64062,-83.20312 v -128.90625 q 0,-50.85938 31.64062,-83.20313 33.28125,-33.98437 86.71875,-33.98437 55.3125,0 86.71875,33.98437 31.64063,33.98438 31.64063,78.51563 l -44.53125,21.09375 h -2.34375 v -16.40625 q 0,-31.40625 -16.875,-50.85938 -20.85938,-24.14062 -54.60938,-24.14062 -33.75,0 -54.60937,24.14062 -16.875,19.45313 -16.875,50.85938 v 128.90625 q 0,31.40625 16.875,50.85937 20.85937,24.14063 54.60937,24.14063 33.75,0 54.60938,-24.14063 16.875,-19.45312 16.875,-46.17187 l 44.53125,-21.09375 z"
27
+ id="text3"
28
+ aria-label="C" />
29
+ </g>
30
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24" fill="white"><path d="M520-80v-200l-84-80-31 138q-4 16-17.5 24.5T358-192l-198-40q-17-3-26-17t-6-31q3-17 17-26.5t31-5.5l152 32 64-324-72 28v96q0 17-11.5 28.5T280-440q-17 0-28.5-11.5T240-480v-122q0-12 6.5-21.5T264-638l134-58q35-15 51.5-19.5T480-720q21 0 39 11t29 29l40 64q21 34 54.5 59t77.5 33q17 3 28.5 15t11.5 29q0 17-11.5 28t-27.5 9q-54-8-101-33.5T540-540l-24 120 72 68q6 6 9 13.5t3 15.5v243q0 17-11.5 28.5T560-40q-17 0-28.5-11.5T520-80Zm20-660q-33 0-56.5-23.5T460-820q0-33 23.5-56.5T540-900q33 0 56.5 23.5T620-820q0 33-23.5 56.5T540-740Z"/></svg>