@volverjs/ui-vue 0.0.1-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (933) hide show
  1. package/README.md +32 -0
  2. package/dist/DesignSystem.d.ts +67 -0
  3. package/dist/components/VvAccordion/VvAccordion.d.ts +32 -0
  4. package/dist/components/VvAccordion/VvAccordion.vue.d.ts +104 -0
  5. package/dist/components/VvAccordion/useAccordionProps.d.ts +16 -0
  6. package/dist/components/VvAccordion/vv-accordion.es.js +262 -0
  7. package/dist/components/VvAccordion/vv-accordion.umd.js +1 -0
  8. package/dist/components/VvAccordionGroup/VvAccordionGroup.d.ts +50 -0
  9. package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +170 -0
  10. package/dist/components/VvAccordionGroup/vv-accordion-group.es.js +315 -0
  11. package/dist/components/VvAccordionGroup/vv-accordion-group.umd.js +1 -0
  12. package/dist/components/VvBadge/VvBadge.d.ts +4 -0
  13. package/dist/components/VvBadge/VvBadge.vue.d.ts +56 -0
  14. package/dist/components/VvBadge/vv-badge.es.js +18 -0
  15. package/dist/components/VvBadge/vv-badge.umd.js +1 -0
  16. package/dist/components/VvBreadcrumb/VvBreadcrumb.d.ts +26 -0
  17. package/dist/components/VvBreadcrumb/VvBreadcrumb.vue.d.ts +118 -0
  18. package/dist/components/VvBreadcrumb/vv-breadcrumb.es.js +206 -0
  19. package/dist/components/VvBreadcrumb/vv-breadcrumb.umd.js +1 -0
  20. package/dist/components/VvButton/VvButton.d.ts +115 -0
  21. package/dist/components/VvButton/VvButton.vue.d.ts +228 -0
  22. package/dist/components/VvButton/useButtonGroupProps.d.ts +23 -0
  23. package/dist/components/VvButton/vv-button.es.js +424 -0
  24. package/dist/components/VvButton/vv-button.umd.js +1 -0
  25. package/dist/components/VvButtonGroup/VvButtonGroup.d.ts +57 -0
  26. package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +210 -0
  27. package/dist/components/VvButtonGroup/vv-button-group.es.js +210 -0
  28. package/dist/components/VvButtonGroup/vv-button-group.umd.js +1 -0
  29. package/dist/components/VvCard/VvCard.d.ts +4 -0
  30. package/dist/components/VvCard/VvCard.vue.d.ts +63 -0
  31. package/dist/components/VvCard/vv-card.es.js +188 -0
  32. package/dist/components/VvCard/vv-card.umd.js +1 -0
  33. package/dist/components/VvCheck/VvCheck.d.ts +47 -0
  34. package/dist/components/VvCheck/VvCheck.vue.d.ts +165 -0
  35. package/dist/components/VvCheck/useCheckProps.d.ts +16 -0
  36. package/dist/components/VvCheck/vv-check.es.js +321 -0
  37. package/dist/components/VvCheck/vv-check.umd.js +1 -0
  38. package/dist/components/VvCheckGroup/VvCheckGroup.d.ts +65 -0
  39. package/dist/components/VvCheckGroup/VvCheckGroup.vue.d.ts +272 -0
  40. package/dist/components/VvCheckGroup/vv-check-group.es.js +434 -0
  41. package/dist/components/VvCheckGroup/vv-check-group.umd.js +2 -0
  42. package/dist/components/VvDialog/VvDialog.d.ts +22 -0
  43. package/dist/components/VvDialog/VvDialog.vue.d.ts +153 -0
  44. package/dist/components/VvDialog/constants.d.ts +5 -0
  45. package/dist/components/VvDialog/vv-dialog.es.js +315 -0
  46. package/dist/components/VvDialog/vv-dialog.umd.js +1 -0
  47. package/dist/components/VvDropdown/VvDropdown.d.ts +52 -0
  48. package/dist/components/VvDropdown/VvDropdown.vue.d.ts +166 -0
  49. package/dist/components/VvDropdown/vv-dropdown.es.js +236 -0
  50. package/dist/components/VvDropdown/vv-dropdown.umd.js +1 -0
  51. package/dist/components/VvIcon/VvIcon.d.ts +92 -0
  52. package/dist/components/VvIcon/VvIcon.vue.d.ts +183 -0
  53. package/dist/components/VvIcon/vv-icon.es.js +229 -0
  54. package/dist/components/VvIcon/vv-icon.umd.js +1 -0
  55. package/dist/components/VvInputText/VvInputText.d.ts +59 -0
  56. package/dist/components/VvInputText/VvInputText.vue.d.ts +292 -0
  57. package/dist/components/VvInputText/constants.d.ts +55 -0
  58. package/dist/components/VvInputText/useInputNumber.d.ts +16 -0
  59. package/dist/components/VvInputText/useInputPassword.d.ts +16 -0
  60. package/dist/components/VvInputText/vv-input-text.es.js +596 -0
  61. package/dist/components/VvInputText/vv-input-text.umd.js +2 -0
  62. package/dist/components/VvNativeSelect/VvNativeSelect.d.ts +70 -0
  63. package/dist/components/VvNativeSelect/VvNativeSelect.vue.d.ts +228 -0
  64. package/dist/components/VvNativeSelect/vv-native-select.es.js +395 -0
  65. package/dist/components/VvNativeSelect/vv-native-select.umd.js +2 -0
  66. package/dist/components/VvProgress/VvProgress.d.ts +29 -0
  67. package/dist/components/VvProgress/VvProgress.vue.d.ts +117 -0
  68. package/dist/components/VvProgress/vv-progress.es.js +185 -0
  69. package/dist/components/VvProgress/vv-progress.umd.js +1 -0
  70. package/dist/components/VvRadio/VvRadio.d.ts +22 -0
  71. package/dist/components/VvRadio/VvRadio.vue.d.ts +136 -0
  72. package/dist/components/VvRadio/useRadioProps.d.ts +15 -0
  73. package/dist/components/VvRadio/vv-radio.es.js +309 -0
  74. package/dist/components/VvRadio/vv-radio.umd.js +1 -0
  75. package/dist/components/VvRadioGroup/VvRadioGroup.d.ts +54 -0
  76. package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +264 -0
  77. package/dist/components/VvRadioGroup/vv-radio-group.es.js +423 -0
  78. package/dist/components/VvRadioGroup/vv-radio-group.umd.js +2 -0
  79. package/dist/components/VvSelect/VvSelect.d.ts +99 -0
  80. package/dist/components/VvSelect/VvSelect.vue.d.ts +294 -0
  81. package/dist/components/VvSelect/vv-select.es.js +427 -0
  82. package/dist/components/VvSelect/vv-select.umd.js +2 -0
  83. package/dist/components/VvTextarea/VvTextarea.d.ts +67 -0
  84. package/dist/components/VvTextarea/VvTextarea.vue.d.ts +314 -0
  85. package/dist/components/VvTextarea/constants.d.ts +19 -0
  86. package/dist/components/VvTextarea/vv-textarea.es.js +472 -0
  87. package/dist/components/VvTextarea/vv-textarea.umd.js +2 -0
  88. package/dist/components/common/HintSlot.d.ts +25 -0
  89. package/dist/components/index.d.ts +12 -0
  90. package/dist/composables/focus/useComponentFocus.d.ts +7 -0
  91. package/dist/composables/group/types/IAccordionGroupState.d.ts +10 -0
  92. package/dist/composables/group/types/IButtonGroupState.d.ts +19 -0
  93. package/dist/composables/group/types/IGroupState.d.ts +11 -0
  94. package/dist/composables/group/types/IInputGroup.d.ts +11 -0
  95. package/dist/composables/group/useInjectedGroupState.d.ts +10 -0
  96. package/dist/composables/group/useProvideGroupState.d.ts +6 -0
  97. package/dist/composables/icons/useComponentIcons.d.ts +20 -0
  98. package/dist/composables/options/useOptions.d.ts +5 -0
  99. package/dist/composables/useModifiers.d.ts +9 -0
  100. package/dist/constants.d.ts +4 -0
  101. package/dist/icons.es.js +1885 -0
  102. package/dist/icons.umd.js +1 -0
  103. package/dist/index.d.ts +4 -0
  104. package/dist/props/index.d.ts +50 -0
  105. package/dist/stories/Icon/IconList.vue.d.ts +44 -0
  106. package/dist/ui-vue.es.js +2985 -0
  107. package/dist/ui-vue.umd.js +2 -0
  108. package/dist/utils/ObjectUtilities.d.ts +96 -0
  109. package/package.json +187 -0
  110. package/src/DesignSystem.ts +115 -0
  111. package/src/assets/icons/detailed/add-circle.svg +1 -0
  112. package/src/assets/icons/detailed/add.svg +1 -0
  113. package/src/assets/icons/detailed/align-center.svg +1 -0
  114. package/src/assets/icons/detailed/align-justify.svg +1 -0
  115. package/src/assets/icons/detailed/align-left.svg +1 -0
  116. package/src/assets/icons/detailed/align-right.svg +1 -0
  117. package/src/assets/icons/detailed/analysis-2.svg +1 -0
  118. package/src/assets/icons/detailed/analysis-3.svg +1 -0
  119. package/src/assets/icons/detailed/analysis.svg +1 -0
  120. package/src/assets/icons/detailed/apple.svg +1 -0
  121. package/src/assets/icons/detailed/arrow-down.svg +1 -0
  122. package/src/assets/icons/detailed/arrow-left.svg +1 -0
  123. package/src/assets/icons/detailed/arrow-right.svg +1 -0
  124. package/src/assets/icons/detailed/arrow-up.svg +1 -0
  125. package/src/assets/icons/detailed/attachment.svg +1 -0
  126. package/src/assets/icons/detailed/back-to-front.svg +1 -0
  127. package/src/assets/icons/detailed/bell-active.svg +1 -0
  128. package/src/assets/icons/detailed/bell.svg +1 -0
  129. package/src/assets/icons/detailed/bold.svg +1 -0
  130. package/src/assets/icons/detailed/bookmark-active.svg +1 -0
  131. package/src/assets/icons/detailed/bookmark.svg +1 -0
  132. package/src/assets/icons/detailed/building.svg +1 -0
  133. package/src/assets/icons/detailed/bullet-list.svg +1 -0
  134. package/src/assets/icons/detailed/calendar.svg +1 -0
  135. package/src/assets/icons/detailed/camera-off.svg +1 -0
  136. package/src/assets/icons/detailed/camera-on.svg +1 -0
  137. package/src/assets/icons/detailed/catalog.svg +1 -0
  138. package/src/assets/icons/detailed/certificate.svg +1 -0
  139. package/src/assets/icons/detailed/chat.svg +1 -0
  140. package/src/assets/icons/detailed/check-badge.svg +1 -0
  141. package/src/assets/icons/detailed/check-circle.svg +1 -0
  142. package/src/assets/icons/detailed/check.svg +1 -0
  143. package/src/assets/icons/detailed/checkbox.svg +1 -0
  144. package/src/assets/icons/detailed/chevron-down-circle.svg +1 -0
  145. package/src/assets/icons/detailed/chevron-down.svg +1 -0
  146. package/src/assets/icons/detailed/chevron-left-circle.svg +1 -0
  147. package/src/assets/icons/detailed/chevron-left.svg +1 -0
  148. package/src/assets/icons/detailed/chevron-right-circle.svg +1 -0
  149. package/src/assets/icons/detailed/chevron-up-circle.svg +1 -0
  150. package/src/assets/icons/detailed/chevron-up.svg +1 -0
  151. package/src/assets/icons/detailed/classroom.svg +1 -0
  152. package/src/assets/icons/detailed/clear-field.svg +1 -0
  153. package/src/assets/icons/detailed/clear-style.svg +1 -0
  154. package/src/assets/icons/detailed/close-circle.svg +1 -0
  155. package/src/assets/icons/detailed/close-loader.svg +1 -0
  156. package/src/assets/icons/detailed/close.svg +1 -0
  157. package/src/assets/icons/detailed/coffee.svg +1 -0
  158. package/src/assets/icons/detailed/color.svg +1 -0
  159. package/src/assets/icons/detailed/contact-us.svg +1 -0
  160. package/src/assets/icons/detailed/copy.svg +1 -0
  161. package/src/assets/icons/detailed/courses.svg +1 -0
  162. package/src/assets/icons/detailed/dashboard.svg +1 -0
  163. package/src/assets/icons/detailed/download.svg +1 -0
  164. package/src/assets/icons/detailed/drag.svg +1 -0
  165. package/src/assets/icons/detailed/duplicate.svg +1 -0
  166. package/src/assets/icons/detailed/edit.svg +1 -0
  167. package/src/assets/icons/detailed/elearning.svg +1 -0
  168. package/src/assets/icons/detailed/email.svg +1 -0
  169. package/src/assets/icons/detailed/error-2.svg +1 -0
  170. package/src/assets/icons/detailed/error.svg +1 -0
  171. package/src/assets/icons/detailed/exercise.svg +1 -0
  172. package/src/assets/icons/detailed/external-link.svg +1 -0
  173. package/src/assets/icons/detailed/extract.svg +1 -0
  174. package/src/assets/icons/detailed/eye-off.svg +1 -0
  175. package/src/assets/icons/detailed/eye-on.svg +1 -0
  176. package/src/assets/icons/detailed/fail.svg +1 -0
  177. package/src/assets/icons/detailed/fast-back.svg +1 -0
  178. package/src/assets/icons/detailed/fast-forward.svg +1 -0
  179. package/src/assets/icons/detailed/file-add.svg +1 -0
  180. package/src/assets/icons/detailed/file-duplicate.svg +1 -0
  181. package/src/assets/icons/detailed/file-remove.svg +1 -0
  182. package/src/assets/icons/detailed/file-required.svg +1 -0
  183. package/src/assets/icons/detailed/file.svg +1 -0
  184. package/src/assets/icons/detailed/filter-2.svg +1 -0
  185. package/src/assets/icons/detailed/filter-active.svg +1 -0
  186. package/src/assets/icons/detailed/filter.svg +1 -0
  187. package/src/assets/icons/detailed/flag.svg +1 -0
  188. package/src/assets/icons/detailed/folder.svg +1 -0
  189. package/src/assets/icons/detailed/full-width.svg +1 -0
  190. package/src/assets/icons/detailed/go-to-back.svg +1 -0
  191. package/src/assets/icons/detailed/grid.svg +1 -0
  192. package/src/assets/icons/detailed/group-add.svg +1 -0
  193. package/src/assets/icons/detailed/group.svg +1 -0
  194. package/src/assets/icons/detailed/heart-active.svg +1 -0
  195. package/src/assets/icons/detailed/heart.svg +1 -0
  196. package/src/assets/icons/detailed/highlighter.svg +1 -0
  197. package/src/assets/icons/detailed/home.svg +1 -0
  198. package/src/assets/icons/detailed/hourglass.svg +1 -0
  199. package/src/assets/icons/detailed/image.svg +1 -0
  200. package/src/assets/icons/detailed/info-badge.svg +1 -0
  201. package/src/assets/icons/detailed/information.svg +1 -0
  202. package/src/assets/icons/detailed/italic.svg +1 -0
  203. package/src/assets/icons/detailed/key.svg +1 -0
  204. package/src/assets/icons/detailed/language.svg +1 -0
  205. package/src/assets/icons/detailed/learning-path.svg +1 -0
  206. package/src/assets/icons/detailed/light-off.svg +1 -0
  207. package/src/assets/icons/detailed/light-on.svg +1 -0
  208. package/src/assets/icons/detailed/link.svg +1 -0
  209. package/src/assets/icons/detailed/lock.svg +1 -0
  210. package/src/assets/icons/detailed/login.svg +1 -0
  211. package/src/assets/icons/detailed/logout.svg +1 -0
  212. package/src/assets/icons/detailed/maximaze.svg +1 -0
  213. package/src/assets/icons/detailed/menu.svg +1 -0
  214. package/src/assets/icons/detailed/merge.svg +1 -0
  215. package/src/assets/icons/detailed/minimize.svg +1 -0
  216. package/src/assets/icons/detailed/mixed-class.svg +1 -0
  217. package/src/assets/icons/detailed/more-horizontal.svg +1 -0
  218. package/src/assets/icons/detailed/more-vertical.svg +1 -0
  219. package/src/assets/icons/detailed/news.svg +1 -0
  220. package/src/assets/icons/detailed/no-prerequisites.svg +1 -0
  221. package/src/assets/icons/detailed/notes.svg +1 -0
  222. package/src/assets/icons/detailed/number-code.svg +1 -0
  223. package/src/assets/icons/detailed/numbered-list.svg +1 -0
  224. package/src/assets/icons/detailed/on-site.svg +1 -0
  225. package/src/assets/icons/detailed/order-down.svg +1 -0
  226. package/src/assets/icons/detailed/order-up.svg +1 -0
  227. package/src/assets/icons/detailed/paste.svg +1 -0
  228. package/src/assets/icons/detailed/pausa.svg +1 -0
  229. package/src/assets/icons/detailed/pdf.svg +1 -0
  230. package/src/assets/icons/detailed/phone.svg +1 -0
  231. package/src/assets/icons/detailed/pin-map.svg +1 -0
  232. package/src/assets/icons/detailed/pin.svg +1 -0
  233. package/src/assets/icons/detailed/pizza.svg +1 -0
  234. package/src/assets/icons/detailed/play.svg +1 -0
  235. package/src/assets/icons/detailed/plug-in.svg +1 -0
  236. package/src/assets/icons/detailed/pointer.svg +1 -0
  237. package/src/assets/icons/detailed/printer.svg +1 -0
  238. package/src/assets/icons/detailed/profile-add.svg +1 -0
  239. package/src/assets/icons/detailed/profile.svg +1 -0
  240. package/src/assets/icons/detailed/push-pin-off.svg +1 -0
  241. package/src/assets/icons/detailed/push-pin-on.svg +1 -0
  242. package/src/assets/icons/detailed/qrcode.svg +1 -0
  243. package/src/assets/icons/detailed/question-badge.svg +1 -0
  244. package/src/assets/icons/detailed/radio.svg +1 -0
  245. package/src/assets/icons/detailed/redo.svg +1 -0
  246. package/src/assets/icons/detailed/relations.svg +1 -0
  247. package/src/assets/icons/detailed/reload.svg +1 -0
  248. package/src/assets/icons/detailed/remove-circle.svg +1 -0
  249. package/src/assets/icons/detailed/remove.svg +1 -0
  250. package/src/assets/icons/detailed/reorder.svg +1 -0
  251. package/src/assets/icons/detailed/repeat.svg +1 -0
  252. package/src/assets/icons/detailed/repository.svg +1 -0
  253. package/src/assets/icons/detailed/request-form.svg +1 -0
  254. package/src/assets/icons/detailed/resize-100%.svg +1 -0
  255. package/src/assets/icons/detailed/resize-height.svg +1 -0
  256. package/src/assets/icons/detailed/resize-width.svg +1 -0
  257. package/src/assets/icons/detailed/search.svg +1 -0
  258. package/src/assets/icons/detailed/sequential-prerequisites.svg +1 -0
  259. package/src/assets/icons/detailed/settings.svg +1 -0
  260. package/src/assets/icons/detailed/share.svg +1 -0
  261. package/src/assets/icons/detailed/sketch.svg +1 -0
  262. package/src/assets/icons/detailed/skills.svg +1 -0
  263. package/src/assets/icons/detailed/skip-back.svg +1 -0
  264. package/src/assets/icons/detailed/skip-forward.svg +1 -0
  265. package/src/assets/icons/detailed/sms.svg +1 -0
  266. package/src/assets/icons/detailed/sso-access.svg +1 -0
  267. package/src/assets/icons/detailed/star-active.svg +1 -0
  268. package/src/assets/icons/detailed/star.svg +1 -0
  269. package/src/assets/icons/detailed/success.svg +1 -0
  270. package/src/assets/icons/detailed/sun.svg +1 -0
  271. package/src/assets/icons/detailed/sunrise.svg +1 -0
  272. package/src/assets/icons/detailed/support.svg +1 -0
  273. package/src/assets/icons/detailed/survey.svg +1 -0
  274. package/src/assets/icons/detailed/table.svg +1 -0
  275. package/src/assets/icons/detailed/tematic-channels.svg +1 -0
  276. package/src/assets/icons/detailed/test.svg +1 -0
  277. package/src/assets/icons/detailed/text-body.svg +1 -0
  278. package/src/assets/icons/detailed/text-edit.svg +1 -0
  279. package/src/assets/icons/detailed/text-style.svg +1 -0
  280. package/src/assets/icons/detailed/time.svg +1 -0
  281. package/src/assets/icons/detailed/toilet-piper.svg +1 -0
  282. package/src/assets/icons/detailed/training-points.svg +1 -0
  283. package/src/assets/icons/detailed/trash.svg +1 -0
  284. package/src/assets/icons/detailed/underline.svg +1 -0
  285. package/src/assets/icons/detailed/undo.svg +1 -0
  286. package/src/assets/icons/detailed/unlock.svg +1 -0
  287. package/src/assets/icons/detailed/upload.svg +1 -0
  288. package/src/assets/icons/detailed/user-add.svg +1 -0
  289. package/src/assets/icons/detailed/user-badge.svg +1 -0
  290. package/src/assets/icons/detailed/user.svg +1 -0
  291. package/src/assets/icons/detailed/video-off.svg +1 -0
  292. package/src/assets/icons/detailed/video-on.svg +1 -0
  293. package/src/assets/icons/detailed/video-rec.svg +1 -0
  294. package/src/assets/icons/detailed/view-card.svg +1 -0
  295. package/src/assets/icons/detailed/view-list.svg +1 -0
  296. package/src/assets/icons/detailed/view.svg +1 -0
  297. package/src/assets/icons/detailed/voice-off.svg +1 -0
  298. package/src/assets/icons/detailed/voice-on.svg +1 -0
  299. package/src/assets/icons/detailed/volume-down.svg +1 -0
  300. package/src/assets/icons/detailed/volume-off.svg +1 -0
  301. package/src/assets/icons/detailed/volume-up.svg +1 -0
  302. package/src/assets/icons/detailed/warning.svg +1 -0
  303. package/src/assets/icons/detailed/webinar.svg +1 -0
  304. package/src/assets/icons/detailed/whiteboard.svg +1 -0
  305. package/src/assets/icons/detailed/wine.svg +1 -0
  306. package/src/assets/icons/detailed/zip.svg +1 -0
  307. package/src/assets/icons/detailed/zoom-in.svg +1 -0
  308. package/src/assets/icons/detailed/zoom-out.svg +1 -0
  309. package/src/assets/icons/detailed.json +1 -0
  310. package/src/assets/icons/index.js +7 -0
  311. package/src/assets/icons/normal/add-circle.svg +1 -0
  312. package/src/assets/icons/normal/add.svg +1 -0
  313. package/src/assets/icons/normal/align-center.svg +1 -0
  314. package/src/assets/icons/normal/align-justify.svg +1 -0
  315. package/src/assets/icons/normal/align-left.svg +1 -0
  316. package/src/assets/icons/normal/align-right.svg +1 -0
  317. package/src/assets/icons/normal/analysis-2.svg +1 -0
  318. package/src/assets/icons/normal/analysis-3.svg +1 -0
  319. package/src/assets/icons/normal/analysis.svg +1 -0
  320. package/src/assets/icons/normal/apple.svg +1 -0
  321. package/src/assets/icons/normal/arrow-down.svg +1 -0
  322. package/src/assets/icons/normal/arrow-left.svg +1 -0
  323. package/src/assets/icons/normal/arrow-right.svg +1 -0
  324. package/src/assets/icons/normal/arrow-up.svg +1 -0
  325. package/src/assets/icons/normal/attachment.svg +1 -0
  326. package/src/assets/icons/normal/back-to-front.svg +1 -0
  327. package/src/assets/icons/normal/bell-active.svg +1 -0
  328. package/src/assets/icons/normal/bell.svg +1 -0
  329. package/src/assets/icons/normal/bold.svg +1 -0
  330. package/src/assets/icons/normal/bookmark active.svg +1 -0
  331. package/src/assets/icons/normal/bookmark.svg +1 -0
  332. package/src/assets/icons/normal/building.svg +1 -0
  333. package/src/assets/icons/normal/bulleted-list.svg +1 -0
  334. package/src/assets/icons/normal/calendar.svg +1 -0
  335. package/src/assets/icons/normal/camera-off.svg +1 -0
  336. package/src/assets/icons/normal/camera-on.svg +1 -0
  337. package/src/assets/icons/normal/catalog.svg +1 -0
  338. package/src/assets/icons/normal/certificate.svg +1 -0
  339. package/src/assets/icons/normal/chat.svg +1 -0
  340. package/src/assets/icons/normal/check-badge.svg +1 -0
  341. package/src/assets/icons/normal/check-circle.svg +1 -0
  342. package/src/assets/icons/normal/check.svg +1 -0
  343. package/src/assets/icons/normal/checkbox.svg +1 -0
  344. package/src/assets/icons/normal/chevron-down-circle.svg +1 -0
  345. package/src/assets/icons/normal/chevron-down.svg +1 -0
  346. package/src/assets/icons/normal/chevron-left-circle.svg +1 -0
  347. package/src/assets/icons/normal/chevron-left.svg +1 -0
  348. package/src/assets/icons/normal/chevron-right-circle.svg +1 -0
  349. package/src/assets/icons/normal/chevron-right.svg +1 -0
  350. package/src/assets/icons/normal/chevron-up-circle.svg +1 -0
  351. package/src/assets/icons/normal/chevron-up.svg +1 -0
  352. package/src/assets/icons/normal/classroom.svg +1 -0
  353. package/src/assets/icons/normal/clear-field.svg +1 -0
  354. package/src/assets/icons/normal/clear-style.svg +1 -0
  355. package/src/assets/icons/normal/close-circle.svg +1 -0
  356. package/src/assets/icons/normal/close-loader.svg +1 -0
  357. package/src/assets/icons/normal/close.svg +1 -0
  358. package/src/assets/icons/normal/coffee.svg +1 -0
  359. package/src/assets/icons/normal/color.svg +1 -0
  360. package/src/assets/icons/normal/contact-us.svg +1 -0
  361. package/src/assets/icons/normal/copy.svg +1 -0
  362. package/src/assets/icons/normal/courses.svg +1 -0
  363. package/src/assets/icons/normal/dashboard.svg +1 -0
  364. package/src/assets/icons/normal/download.svg +1 -0
  365. package/src/assets/icons/normal/drag.svg +1 -0
  366. package/src/assets/icons/normal/dulicate.svg +1 -0
  367. package/src/assets/icons/normal/edit.svg +1 -0
  368. package/src/assets/icons/normal/elearning.svg +1 -0
  369. package/src/assets/icons/normal/email.svg +1 -0
  370. package/src/assets/icons/normal/error-2.svg +1 -0
  371. package/src/assets/icons/normal/error.svg +1 -0
  372. package/src/assets/icons/normal/exercise.svg +1 -0
  373. package/src/assets/icons/normal/external-link.svg +1 -0
  374. package/src/assets/icons/normal/extract.svg +1 -0
  375. package/src/assets/icons/normal/eye-off.svg +1 -0
  376. package/src/assets/icons/normal/eye-on.svg +1 -0
  377. package/src/assets/icons/normal/fail.svg +1 -0
  378. package/src/assets/icons/normal/fast-back.svg +1 -0
  379. package/src/assets/icons/normal/fast-forward.svg +1 -0
  380. package/src/assets/icons/normal/file-add.svg +1 -0
  381. package/src/assets/icons/normal/file-duplicate.svg +1 -0
  382. package/src/assets/icons/normal/file-remove.svg +1 -0
  383. package/src/assets/icons/normal/file-required.svg +1 -0
  384. package/src/assets/icons/normal/file.svg +1 -0
  385. package/src/assets/icons/normal/filter-2.svg +1 -0
  386. package/src/assets/icons/normal/filter-active.svg +1 -0
  387. package/src/assets/icons/normal/filter.svg +1 -0
  388. package/src/assets/icons/normal/flag.svg +1 -0
  389. package/src/assets/icons/normal/folder.svg +1 -0
  390. package/src/assets/icons/normal/full-width.svg +1 -0
  391. package/src/assets/icons/normal/go-to-back.svg +1 -0
  392. package/src/assets/icons/normal/grid.svg +1 -0
  393. package/src/assets/icons/normal/group-add.svg +1 -0
  394. package/src/assets/icons/normal/group.svg +1 -0
  395. package/src/assets/icons/normal/heart-active.svg +1 -0
  396. package/src/assets/icons/normal/heart.svg +1 -0
  397. package/src/assets/icons/normal/highlighter.svg +1 -0
  398. package/src/assets/icons/normal/home.svg +1 -0
  399. package/src/assets/icons/normal/hourglass.svg +1 -0
  400. package/src/assets/icons/normal/image.svg +1 -0
  401. package/src/assets/icons/normal/info-badge.svg +1 -0
  402. package/src/assets/icons/normal/information.svg +1 -0
  403. package/src/assets/icons/normal/italic.svg +1 -0
  404. package/src/assets/icons/normal/key.svg +1 -0
  405. package/src/assets/icons/normal/language.svg +1 -0
  406. package/src/assets/icons/normal/learning-path.svg +1 -0
  407. package/src/assets/icons/normal/light-off.svg +1 -0
  408. package/src/assets/icons/normal/light-on.svg +1 -0
  409. package/src/assets/icons/normal/link.svg +1 -0
  410. package/src/assets/icons/normal/lock.svg +1 -0
  411. package/src/assets/icons/normal/login.svg +1 -0
  412. package/src/assets/icons/normal/logout.svg +1 -0
  413. package/src/assets/icons/normal/maximize.svg +1 -0
  414. package/src/assets/icons/normal/menu.svg +1 -0
  415. package/src/assets/icons/normal/merge.svg +1 -0
  416. package/src/assets/icons/normal/minimize.svg +1 -0
  417. package/src/assets/icons/normal/mixed-class.svg +1 -0
  418. package/src/assets/icons/normal/more-horizontal.svg +1 -0
  419. package/src/assets/icons/normal/more-vertical.svg +1 -0
  420. package/src/assets/icons/normal/news.svg +1 -0
  421. package/src/assets/icons/normal/no-prerequisites.svg +1 -0
  422. package/src/assets/icons/normal/notes.svg +1 -0
  423. package/src/assets/icons/normal/number-code.svg +1 -0
  424. package/src/assets/icons/normal/numbered-list.svg +1 -0
  425. package/src/assets/icons/normal/on-site.svg +1 -0
  426. package/src/assets/icons/normal/order-down.svg +1 -0
  427. package/src/assets/icons/normal/order-up.svg +1 -0
  428. package/src/assets/icons/normal/paste.svg +1 -0
  429. package/src/assets/icons/normal/pausa.svg +1 -0
  430. package/src/assets/icons/normal/pdf.svg +1 -0
  431. package/src/assets/icons/normal/phone.svg +1 -0
  432. package/src/assets/icons/normal/pin-map.svg +1 -0
  433. package/src/assets/icons/normal/pin.svg +1 -0
  434. package/src/assets/icons/normal/pizza.svg +1 -0
  435. package/src/assets/icons/normal/play.svg +1 -0
  436. package/src/assets/icons/normal/plug-in.svg +1 -0
  437. package/src/assets/icons/normal/pointer.svg +1 -0
  438. package/src/assets/icons/normal/printer.svg +1 -0
  439. package/src/assets/icons/normal/profile-add.svg +1 -0
  440. package/src/assets/icons/normal/profile.svg +1 -0
  441. package/src/assets/icons/normal/push pin on.svg +1 -0
  442. package/src/assets/icons/normal/push-pin-off.svg +1 -0
  443. package/src/assets/icons/normal/qrcode.svg +1 -0
  444. package/src/assets/icons/normal/question-badge.svg +1 -0
  445. package/src/assets/icons/normal/radio.svg +1 -0
  446. package/src/assets/icons/normal/redo.svg +1 -0
  447. package/src/assets/icons/normal/relations.svg +1 -0
  448. package/src/assets/icons/normal/reload.svg +1 -0
  449. package/src/assets/icons/normal/remove-circle.svg +1 -0
  450. package/src/assets/icons/normal/remove.svg +1 -0
  451. package/src/assets/icons/normal/reorder.svg +1 -0
  452. package/src/assets/icons/normal/repeat.svg +1 -0
  453. package/src/assets/icons/normal/repository.svg +1 -0
  454. package/src/assets/icons/normal/request-form.svg +1 -0
  455. package/src/assets/icons/normal/resize-100%.svg +1 -0
  456. package/src/assets/icons/normal/resize-height.svg +1 -0
  457. package/src/assets/icons/normal/resize-width.svg +1 -0
  458. package/src/assets/icons/normal/search.svg +1 -0
  459. package/src/assets/icons/normal/sequential-prerequisites.svg +1 -0
  460. package/src/assets/icons/normal/settings.svg +1 -0
  461. package/src/assets/icons/normal/share.svg +1 -0
  462. package/src/assets/icons/normal/sketch.svg +1 -0
  463. package/src/assets/icons/normal/skills.svg +1 -0
  464. package/src/assets/icons/normal/skip-back.svg +1 -0
  465. package/src/assets/icons/normal/skip-forward.svg +1 -0
  466. package/src/assets/icons/normal/sms.svg +1 -0
  467. package/src/assets/icons/normal/sso-access.svg +1 -0
  468. package/src/assets/icons/normal/star-active.svg +1 -0
  469. package/src/assets/icons/normal/star.svg +1 -0
  470. package/src/assets/icons/normal/success.svg +1 -0
  471. package/src/assets/icons/normal/sun.svg +1 -0
  472. package/src/assets/icons/normal/sunrise.svg +1 -0
  473. package/src/assets/icons/normal/support.svg +1 -0
  474. package/src/assets/icons/normal/survey.svg +1 -0
  475. package/src/assets/icons/normal/table.svg +1 -0
  476. package/src/assets/icons/normal/tematic-channels.svg +1 -0
  477. package/src/assets/icons/normal/test.svg +1 -0
  478. package/src/assets/icons/normal/text-body.svg +1 -0
  479. package/src/assets/icons/normal/text-edit.svg +1 -0
  480. package/src/assets/icons/normal/text-style.svg +1 -0
  481. package/src/assets/icons/normal/time.svg +1 -0
  482. package/src/assets/icons/normal/toilet-paper.svg +1 -0
  483. package/src/assets/icons/normal/training-points.svg +1 -0
  484. package/src/assets/icons/normal/trash.svg +1 -0
  485. package/src/assets/icons/normal/underline.svg +1 -0
  486. package/src/assets/icons/normal/undo.svg +1 -0
  487. package/src/assets/icons/normal/unlock.svg +1 -0
  488. package/src/assets/icons/normal/upload.svg +1 -0
  489. package/src/assets/icons/normal/user-add.svg +1 -0
  490. package/src/assets/icons/normal/user-badge.svg +1 -0
  491. package/src/assets/icons/normal/user.svg +1 -0
  492. package/src/assets/icons/normal/video-off.svg +1 -0
  493. package/src/assets/icons/normal/video-on.svg +1 -0
  494. package/src/assets/icons/normal/video-rec.svg +1 -0
  495. package/src/assets/icons/normal/view-card.svg +1 -0
  496. package/src/assets/icons/normal/view-list.svg +1 -0
  497. package/src/assets/icons/normal/view.svg +1 -0
  498. package/src/assets/icons/normal/voice-off.svg +1 -0
  499. package/src/assets/icons/normal/voice-on.svg +1 -0
  500. package/src/assets/icons/normal/volume-down.svg +1 -0
  501. package/src/assets/icons/normal/volume-off.svg +1 -0
  502. package/src/assets/icons/normal/volume-up.svg +1 -0
  503. package/src/assets/icons/normal/warning.svg +1 -0
  504. package/src/assets/icons/normal/webinar.svg +1 -0
  505. package/src/assets/icons/normal/whiteboard.svg +1 -0
  506. package/src/assets/icons/normal/wine.svg +1 -0
  507. package/src/assets/icons/normal/zip.svg +1 -0
  508. package/src/assets/icons/normal/zoom-in.svg +1 -0
  509. package/src/assets/icons/normal/zoom-out.svg +1 -0
  510. package/src/assets/icons/normal.json +1 -0
  511. package/src/assets/icons/simple/add-circle.svg +1 -0
  512. package/src/assets/icons/simple/add.svg +1 -0
  513. package/src/assets/icons/simple/align-center.svg +1 -0
  514. package/src/assets/icons/simple/align-justify.svg +1 -0
  515. package/src/assets/icons/simple/align-left.svg +1 -0
  516. package/src/assets/icons/simple/align-right.svg +1 -0
  517. package/src/assets/icons/simple/analysis-2.svg +1 -0
  518. package/src/assets/icons/simple/analysis-3.svg +1 -0
  519. package/src/assets/icons/simple/analysis.svg +1 -0
  520. package/src/assets/icons/simple/apple.svg +1 -0
  521. package/src/assets/icons/simple/arrow-down.svg +1 -0
  522. package/src/assets/icons/simple/arrow-left.svg +1 -0
  523. package/src/assets/icons/simple/arrow-right.svg +1 -0
  524. package/src/assets/icons/simple/arrow-up.svg +1 -0
  525. package/src/assets/icons/simple/attachment.svg +1 -0
  526. package/src/assets/icons/simple/bck-to-front.svg +1 -0
  527. package/src/assets/icons/simple/bell-active.svg +1 -0
  528. package/src/assets/icons/simple/bell.svg +1 -0
  529. package/src/assets/icons/simple/bold.svg +1 -0
  530. package/src/assets/icons/simple/bookmark-active.svg +1 -0
  531. package/src/assets/icons/simple/bookmark.svg +1 -0
  532. package/src/assets/icons/simple/building.svg +1 -0
  533. package/src/assets/icons/simple/bulleted-list.svg +1 -0
  534. package/src/assets/icons/simple/calendar.svg +1 -0
  535. package/src/assets/icons/simple/camera-off.svg +1 -0
  536. package/src/assets/icons/simple/camera-on.svg +1 -0
  537. package/src/assets/icons/simple/catalog.svg +1 -0
  538. package/src/assets/icons/simple/certificate.svg +1 -0
  539. package/src/assets/icons/simple/chat.svg +1 -0
  540. package/src/assets/icons/simple/check-badge.svg +1 -0
  541. package/src/assets/icons/simple/check-circle.svg +1 -0
  542. package/src/assets/icons/simple/check.svg +1 -0
  543. package/src/assets/icons/simple/checkbox.svg +1 -0
  544. package/src/assets/icons/simple/chevron-down-circle.svg +1 -0
  545. package/src/assets/icons/simple/chevron-down.svg +1 -0
  546. package/src/assets/icons/simple/chevron-left-circle.svg +1 -0
  547. package/src/assets/icons/simple/chevron-left.svg +1 -0
  548. package/src/assets/icons/simple/chevron-right-circle.svg +1 -0
  549. package/src/assets/icons/simple/chevron-right.svg +1 -0
  550. package/src/assets/icons/simple/chevron-up-circle.svg +1 -0
  551. package/src/assets/icons/simple/chevron-up.svg +1 -0
  552. package/src/assets/icons/simple/classroom.svg +1 -0
  553. package/src/assets/icons/simple/clear-field.svg +1 -0
  554. package/src/assets/icons/simple/clear-style.svg +1 -0
  555. package/src/assets/icons/simple/close-circle.svg +1 -0
  556. package/src/assets/icons/simple/close-loader.svg +1 -0
  557. package/src/assets/icons/simple/close.svg +1 -0
  558. package/src/assets/icons/simple/coffee.svg +1 -0
  559. package/src/assets/icons/simple/color.svg +1 -0
  560. package/src/assets/icons/simple/contact-us.svg +1 -0
  561. package/src/assets/icons/simple/copy.svg +1 -0
  562. package/src/assets/icons/simple/courses.svg +1 -0
  563. package/src/assets/icons/simple/dashboard.svg +1 -0
  564. package/src/assets/icons/simple/download.svg +1 -0
  565. package/src/assets/icons/simple/drag.svg +1 -0
  566. package/src/assets/icons/simple/duplicate.svg +1 -0
  567. package/src/assets/icons/simple/edit.svg +1 -0
  568. package/src/assets/icons/simple/elearning.svg +1 -0
  569. package/src/assets/icons/simple/email.svg +1 -0
  570. package/src/assets/icons/simple/error-2.svg +1 -0
  571. package/src/assets/icons/simple/error.svg +1 -0
  572. package/src/assets/icons/simple/exercise.svg +1 -0
  573. package/src/assets/icons/simple/external-link.svg +1 -0
  574. package/src/assets/icons/simple/extract.svg +1 -0
  575. package/src/assets/icons/simple/eye-off.svg +1 -0
  576. package/src/assets/icons/simple/eye-on.svg +1 -0
  577. package/src/assets/icons/simple/fail.svg +1 -0
  578. package/src/assets/icons/simple/fast-back.svg +1 -0
  579. package/src/assets/icons/simple/fast-forward.svg +1 -0
  580. package/src/assets/icons/simple/file-add.svg +1 -0
  581. package/src/assets/icons/simple/file-duplicate.svg +1 -0
  582. package/src/assets/icons/simple/file-remove.svg +1 -0
  583. package/src/assets/icons/simple/file-required.svg +1 -0
  584. package/src/assets/icons/simple/file.svg +1 -0
  585. package/src/assets/icons/simple/filter-2.svg +1 -0
  586. package/src/assets/icons/simple/filter-active.svg +1 -0
  587. package/src/assets/icons/simple/filter.svg +1 -0
  588. package/src/assets/icons/simple/flag.svg +1 -0
  589. package/src/assets/icons/simple/folder.svg +1 -0
  590. package/src/assets/icons/simple/full-width.svg +1 -0
  591. package/src/assets/icons/simple/go-to-back.svg +1 -0
  592. package/src/assets/icons/simple/grid.svg +1 -0
  593. package/src/assets/icons/simple/group-add.svg +1 -0
  594. package/src/assets/icons/simple/group.svg +1 -0
  595. package/src/assets/icons/simple/heart-active.svg +1 -0
  596. package/src/assets/icons/simple/heart.svg +1 -0
  597. package/src/assets/icons/simple/highlighter.svg +1 -0
  598. package/src/assets/icons/simple/home.svg +1 -0
  599. package/src/assets/icons/simple/hourglass.svg +1 -0
  600. package/src/assets/icons/simple/image.svg +1 -0
  601. package/src/assets/icons/simple/info-badge.svg +1 -0
  602. package/src/assets/icons/simple/information.svg +1 -0
  603. package/src/assets/icons/simple/italic.svg +1 -0
  604. package/src/assets/icons/simple/key.svg +1 -0
  605. package/src/assets/icons/simple/language.svg +1 -0
  606. package/src/assets/icons/simple/learning-path.svg +1 -0
  607. package/src/assets/icons/simple/light-off.svg +1 -0
  608. package/src/assets/icons/simple/light-on.svg +1 -0
  609. package/src/assets/icons/simple/link.svg +1 -0
  610. package/src/assets/icons/simple/lock.svg +1 -0
  611. package/src/assets/icons/simple/login.svg +1 -0
  612. package/src/assets/icons/simple/logout.svg +1 -0
  613. package/src/assets/icons/simple/maximaze.svg +1 -0
  614. package/src/assets/icons/simple/menu.svg +1 -0
  615. package/src/assets/icons/simple/merge.svg +1 -0
  616. package/src/assets/icons/simple/minimaze.svg +1 -0
  617. package/src/assets/icons/simple/mixed-class.svg +1 -0
  618. package/src/assets/icons/simple/more-horizontal.svg +1 -0
  619. package/src/assets/icons/simple/more-vertical.svg +1 -0
  620. package/src/assets/icons/simple/news.svg +1 -0
  621. package/src/assets/icons/simple/no-prerequisites.svg +1 -0
  622. package/src/assets/icons/simple/notes.svg +1 -0
  623. package/src/assets/icons/simple/number-code.svg +1 -0
  624. package/src/assets/icons/simple/numbered-list.svg +1 -0
  625. package/src/assets/icons/simple/on-site.svg +1 -0
  626. package/src/assets/icons/simple/order-down.svg +1 -0
  627. package/src/assets/icons/simple/order-up.svg +1 -0
  628. package/src/assets/icons/simple/paste.svg +1 -0
  629. package/src/assets/icons/simple/pausa.svg +1 -0
  630. package/src/assets/icons/simple/pdf.svg +1 -0
  631. package/src/assets/icons/simple/phone.svg +1 -0
  632. package/src/assets/icons/simple/pin-map.svg +1 -0
  633. package/src/assets/icons/simple/pin.svg +1 -0
  634. package/src/assets/icons/simple/pizza.svg +1 -0
  635. package/src/assets/icons/simple/play.svg +1 -0
  636. package/src/assets/icons/simple/plug-in.svg +1 -0
  637. package/src/assets/icons/simple/pointer.svg +1 -0
  638. package/src/assets/icons/simple/printer.svg +1 -0
  639. package/src/assets/icons/simple/profile-add.svg +1 -0
  640. package/src/assets/icons/simple/profile.svg +1 -0
  641. package/src/assets/icons/simple/push-pin-off.svg +1 -0
  642. package/src/assets/icons/simple/push-pin-on.svg +1 -0
  643. package/src/assets/icons/simple/qrcode.svg +1 -0
  644. package/src/assets/icons/simple/question-badge.svg +1 -0
  645. package/src/assets/icons/simple/radio.svg +1 -0
  646. package/src/assets/icons/simple/redo.svg +1 -0
  647. package/src/assets/icons/simple/relations.svg +1 -0
  648. package/src/assets/icons/simple/reload.svg +1 -0
  649. package/src/assets/icons/simple/remove-circle.svg +1 -0
  650. package/src/assets/icons/simple/remove.svg +1 -0
  651. package/src/assets/icons/simple/repeart.svg +1 -0
  652. package/src/assets/icons/simple/repository.svg +1 -0
  653. package/src/assets/icons/simple/request-form.svg +1 -0
  654. package/src/assets/icons/simple/resize-100%.svg +1 -0
  655. package/src/assets/icons/simple/resize-height.svg +1 -0
  656. package/src/assets/icons/simple/resize-width.svg +1 -0
  657. package/src/assets/icons/simple/search.svg +1 -0
  658. package/src/assets/icons/simple/sequential-prerequisites.svg +1 -0
  659. package/src/assets/icons/simple/settings.svg +1 -0
  660. package/src/assets/icons/simple/share.svg +1 -0
  661. package/src/assets/icons/simple/sketch.svg +1 -0
  662. package/src/assets/icons/simple/skills.svg +1 -0
  663. package/src/assets/icons/simple/skip-back.svg +1 -0
  664. package/src/assets/icons/simple/skip-forward.svg +1 -0
  665. package/src/assets/icons/simple/sms.svg +1 -0
  666. package/src/assets/icons/simple/sso-access.svg +1 -0
  667. package/src/assets/icons/simple/star-active.svg +1 -0
  668. package/src/assets/icons/simple/star.svg +1 -0
  669. package/src/assets/icons/simple/success.svg +1 -0
  670. package/src/assets/icons/simple/sun.svg +1 -0
  671. package/src/assets/icons/simple/sunrise.svg +1 -0
  672. package/src/assets/icons/simple/support.svg +1 -0
  673. package/src/assets/icons/simple/survey.svg +1 -0
  674. package/src/assets/icons/simple/table.svg +1 -0
  675. package/src/assets/icons/simple/tematic-channels.svg +1 -0
  676. package/src/assets/icons/simple/test.svg +1 -0
  677. package/src/assets/icons/simple/text-body.svg +1 -0
  678. package/src/assets/icons/simple/text-edit.svg +1 -0
  679. package/src/assets/icons/simple/text-style.svg +1 -0
  680. package/src/assets/icons/simple/time.svg +1 -0
  681. package/src/assets/icons/simple/toilet-paper.svg +1 -0
  682. package/src/assets/icons/simple/training-points.svg +1 -0
  683. package/src/assets/icons/simple/trash.svg +1 -0
  684. package/src/assets/icons/simple/underline.svg +1 -0
  685. package/src/assets/icons/simple/undo.svg +1 -0
  686. package/src/assets/icons/simple/unlock.svg +1 -0
  687. package/src/assets/icons/simple/upload.svg +1 -0
  688. package/src/assets/icons/simple/user-add.svg +1 -0
  689. package/src/assets/icons/simple/user-badge.svg +1 -0
  690. package/src/assets/icons/simple/user.svg +1 -0
  691. package/src/assets/icons/simple/video-off.svg +1 -0
  692. package/src/assets/icons/simple/video-on.svg +1 -0
  693. package/src/assets/icons/simple/video-rec.svg +1 -0
  694. package/src/assets/icons/simple/view-card.svg +1 -0
  695. package/src/assets/icons/simple/view-list.svg +1 -0
  696. package/src/assets/icons/simple/view.svg +1 -0
  697. package/src/assets/icons/simple/voice-off.svg +1 -0
  698. package/src/assets/icons/simple/voice-on.svg +1 -0
  699. package/src/assets/icons/simple/volume-down.svg +1 -0
  700. package/src/assets/icons/simple/volume-off.svg +1 -0
  701. package/src/assets/icons/simple/volume-up.svg +1 -0
  702. package/src/assets/icons/simple/warning.svg +1 -0
  703. package/src/assets/icons/simple/webinar.svg +1 -0
  704. package/src/assets/icons/simple/whiteboard.svg +1 -0
  705. package/src/assets/icons/simple/wine.svg +1 -0
  706. package/src/assets/icons/simple/zip.svg +1 -0
  707. package/src/assets/icons/simple/zoom-in.svg +1 -0
  708. package/src/assets/icons/simple/zoom-out.svg +1 -0
  709. package/src/assets/icons/simple.json +1 -0
  710. package/src/components/VvAccordion/VvAccordion.ts +34 -0
  711. package/src/components/VvAccordion/VvAccordion.vue +92 -0
  712. package/src/components/VvAccordion/useAccordionProps.ts +45 -0
  713. package/src/components/VvAccordionGroup/VvAccordionGroup.ts +36 -0
  714. package/src/components/VvAccordionGroup/VvAccordionGroup.vue +63 -0
  715. package/src/components/VvBadge/VvBadge.ts +4 -0
  716. package/src/components/VvBadge/VvBadge.vue +12 -0
  717. package/src/components/VvBreadcrumb/VvBreadcrumb.ts +14 -0
  718. package/src/components/VvBreadcrumb/VvBreadcrumb.vue +52 -0
  719. package/src/components/VvButton/VvButton.ts +117 -0
  720. package/src/components/VvButton/VvButton.vue +190 -0
  721. package/src/components/VvButton/useButtonGroupProps.ts +51 -0
  722. package/src/components/VvButtonGroup/VvButtonGroup.ts +37 -0
  723. package/src/components/VvButtonGroup/VvButtonGroup.vue +55 -0
  724. package/src/components/VvCard/VvCard.ts +4 -0
  725. package/src/components/VvCard/VvCard.vue +37 -0
  726. package/src/components/VvCheck/VvCheck.ts +48 -0
  727. package/src/components/VvCheck/VvCheck.vue +149 -0
  728. package/src/components/VvCheck/useCheckProps.ts +41 -0
  729. package/src/components/VvCheckGroup/VvCheckGroup.ts +34 -0
  730. package/src/components/VvCheckGroup/VvCheckGroup.vue +84 -0
  731. package/src/components/VvDialog/VvDialog.ts +17 -0
  732. package/src/components/VvDialog/VvDialog.vue +91 -0
  733. package/src/components/VvDialog/constants.ts +5 -0
  734. package/src/components/VvDropdown/VvDropdown.ts +46 -0
  735. package/src/components/VvDropdown/VvDropdown.vue +130 -0
  736. package/src/components/VvIcon/VvIcon.ts +94 -0
  737. package/src/components/VvIcon/VvIcon.vue +123 -0
  738. package/src/components/VvInputText/VvInputText.ts +49 -0
  739. package/src/components/VvInputText/VvInputText.vue +276 -0
  740. package/src/components/VvInputText/constants.ts +34 -0
  741. package/src/components/VvInputText/useInputNumber.ts +40 -0
  742. package/src/components/VvInputText/useInputPassword.ts +38 -0
  743. package/src/components/VvNativeSelect/VvNativeSelect.ts +70 -0
  744. package/src/components/VvNativeSelect/VvNativeSelect.vue +106 -0
  745. package/src/components/VvProgress/VvProgress.ts +28 -0
  746. package/src/components/VvProgress/VvProgress.vue +34 -0
  747. package/src/components/VvRadio/VvRadio.ts +25 -0
  748. package/src/components/VvRadio/VvRadio.vue +130 -0
  749. package/src/components/VvRadio/useRadioProps.ts +40 -0
  750. package/src/components/VvRadioGroup/VvRadioGroup.ts +25 -0
  751. package/src/components/VvRadioGroup/VvRadioGroup.vue +80 -0
  752. package/src/components/VvSelect/VvSelect.ts +91 -0
  753. package/src/components/VvSelect/VvSelect.vue +194 -0
  754. package/src/components/VvTextarea/VvTextarea.ts +55 -0
  755. package/src/components/VvTextarea/VvTextarea.vue +189 -0
  756. package/src/components/VvTextarea/constants.ts +14 -0
  757. package/src/components/common/HintSlot.ts +164 -0
  758. package/src/components/index.ts +12 -0
  759. package/src/composables/focus/useComponentFocus.ts +22 -0
  760. package/src/composables/group/types/IAccordionGroupState.ts +12 -0
  761. package/src/composables/group/types/IButtonGroupState.ts +21 -0
  762. package/src/composables/group/types/IGroupState.ts +12 -0
  763. package/src/composables/group/types/IInputGroup.ts +13 -0
  764. package/src/composables/group/useInjectedGroupState.ts +64 -0
  765. package/src/composables/group/useProvideGroupState.ts +23 -0
  766. package/src/composables/icons/useComponentIcons.ts +52 -0
  767. package/src/composables/options/useOptions.ts +27 -0
  768. package/src/composables/useModifiers.ts +54 -0
  769. package/src/constants.ts +7 -0
  770. package/src/directives/.README +0 -0
  771. package/src/index.ts +7 -0
  772. package/src/props/index.ts +45 -0
  773. package/src/stories/Accordion/Accordion.stories.mdx +37 -0
  774. package/src/stories/Accordion/AccordionBordered.stories.mdx +26 -0
  775. package/src/stories/Accordion/AccordionIconRight.stories.mdx +32 -0
  776. package/src/stories/Accordion/AccordionSlots.stories.mdx +82 -0
  777. package/src/stories/Accordion/accordionTest.js +36 -0
  778. package/src/stories/AccordionGroup/Accordion.stories.mdx +42 -0
  779. package/src/stories/AccordionGroup/AccordionGroup.stories.mdx +43 -0
  780. package/src/stories/AccordionGroup/AccordionItems.stories.mdx +51 -0
  781. package/src/stories/AccordionGroup/accordionGroupTest.js +51 -0
  782. package/src/stories/Badge/Badge.stories.mdx +38 -0
  783. package/src/stories/Badge/BadgeColor.stories.mdx +54 -0
  784. package/src/stories/Badge/BadgeDot.stories.mdx +20 -0
  785. package/src/stories/Badge/BadgeTest.js +21 -0
  786. package/src/stories/Breadcrumb/Breadcrumb.stories.mdx +46 -0
  787. package/src/stories/Breadcrumb/BreadcrumbMultiline.stories.mdx +41 -0
  788. package/src/stories/Button/Button.stories.mdx +73 -0
  789. package/src/stories/Button/ButtonBadge.stories.mdx +33 -0
  790. package/src/stories/Button/ButtonIcon.stories.mdx +51 -0
  791. package/src/stories/Button/ButtonIconPosition.stories.mdx +103 -0
  792. package/src/stories/Button/ButtonLink.stories.mdx +156 -0
  793. package/src/stories/Button/ButtonLoading.stories.mdx +62 -0
  794. package/src/stories/Button/ButtonModifiers.stories.mdx +194 -0
  795. package/src/stories/Button/ButtonSlots.stories.mdx +123 -0
  796. package/src/stories/Button/ButtonVariant.stories.mdx +223 -0
  797. package/src/stories/Button/test.js +41 -0
  798. package/src/stories/ButtonGroup/ButtonGroup.stories.mdx +39 -0
  799. package/src/stories/ButtonGroup/ButtonGroupAction.stories.mdx +83 -0
  800. package/src/stories/ButtonGroup/ButtonGroupActionQuiet.stories.mdx +50 -0
  801. package/src/stories/ButtonGroup/ButtonGroupBlock.stories.mdx +40 -0
  802. package/src/stories/ButtonGroup/ButtonGroupCompact.stories.mdx +38 -0
  803. package/src/stories/ButtonGroup/ButtonGroupRounded.stories.mdx +77 -0
  804. package/src/stories/ButtonGroup/ButtonGroupTest.js +61 -0
  805. package/src/stories/ButtonGroup/ButtonGroupToggle.stories.mdx +131 -0
  806. package/src/stories/ButtonGroup/ButtonGroupVertical.stories.mdx +38 -0
  807. package/src/stories/Card/Card.stories.mdx +23 -0
  808. package/src/stories/Card/CardSlots.stories.mdx +42 -0
  809. package/src/stories/Card/CardVariant.stories.mdx +37 -0
  810. package/src/stories/Check/Check.stories.mdx +62 -0
  811. package/src/stories/Check/CheckBinary.stories.mdx +80 -0
  812. package/src/stories/Check/CheckDisabled.stories.mdx +30 -0
  813. package/src/stories/Check/CheckError.stories.mdx +64 -0
  814. package/src/stories/Check/CheckErrorTests.js +72 -0
  815. package/src/stories/Check/CheckHintLabel.stories.mdx +30 -0
  816. package/src/stories/Check/CheckPropertyTest.js +101 -0
  817. package/src/stories/Check/CheckReadonly.stories.mdx +30 -0
  818. package/src/stories/Check/CheckSlots.stories.mdx +51 -0
  819. package/src/stories/Check/CheckSwitch.stories.mdx +30 -0
  820. package/src/stories/CheckGroup/CheckGroup.stories.mdx +69 -0
  821. package/src/stories/CheckGroup/CheckGroupDisabled.stories.mdx +26 -0
  822. package/src/stories/CheckGroup/CheckGroupError.stories.mdx +28 -0
  823. package/src/stories/CheckGroup/CheckGroupHintLabel.stories.mdx +27 -0
  824. package/src/stories/CheckGroup/CheckGroupLabel.stories.mdx +26 -0
  825. package/src/stories/CheckGroup/CheckGroupOptionLabel.stories.mdx +48 -0
  826. package/src/stories/CheckGroup/CheckGroupOptionValue.stories.mdx +48 -0
  827. package/src/stories/CheckGroup/CheckGroupOptions.stories.mdx +40 -0
  828. package/src/stories/CheckGroup/CheckGroupReadonly.stories.mdx +26 -0
  829. package/src/stories/CheckGroup/CheckGroupSlots.stories.mdx +152 -0
  830. package/src/stories/CheckGroup/CheckGroupValid.stories.mdx +28 -0
  831. package/src/stories/CheckGroup/CheckGroupVertical.stories.mdx +26 -0
  832. package/src/stories/Dialog/Dialog.stories.mdx +29 -0
  833. package/src/stories/Dialog/DialogAutoClose.stories.mdx +18 -0
  834. package/src/stories/Dialog/DialogSize.stories.mdx +36 -0
  835. package/src/stories/Dropdown/Dropdown.stories.mdx +50 -0
  836. package/src/stories/Dropdown/DropdownDisabled.stories.mdx +25 -0
  837. package/src/stories/Dropdown/DropdownLabelNoResults.stories.mdx +25 -0
  838. package/src/stories/Dropdown/DropdownMaxValues.stories.mdx +26 -0
  839. package/src/stories/Dropdown/DropdownMultiple.stories.mdx +56 -0
  840. package/src/stories/Dropdown/DropdownOptions.stories.mdx +76 -0
  841. package/src/stories/Dropdown/DropdownUseObject.stories.mdx +58 -0
  842. package/src/stories/Icon/Icon.stories.mdx +73 -0
  843. package/src/stories/Icon/IconList.vue +34 -0
  844. package/src/stories/Icon/IconPrefix.stories.mdx +79 -0
  845. package/src/stories/Icon/IconRemote.stories.mdx +39 -0
  846. package/src/stories/Icon/IconTest.js +27 -0
  847. package/src/stories/Icon/IconsList.stories.mdx +35 -0
  848. package/src/stories/InputText/InputText.stories.mdx +94 -0
  849. package/src/stories/InputText/InputTextAutocomplete.stories.mdx +15 -0
  850. package/src/stories/InputText/InputTextAutofocus.stories.mdx +20 -0
  851. package/src/stories/InputText/InputTextDisabled.stories.mdx +19 -0
  852. package/src/stories/InputText/InputTextError.stories.mdx +19 -0
  853. package/src/stories/InputText/InputTextFloating.stories.mdx +20 -0
  854. package/src/stories/InputText/InputTextHintLabel.stories.mdx +18 -0
  855. package/src/stories/InputText/InputTextIcon.stories.mdx +18 -0
  856. package/src/stories/InputText/InputTextIconPosition.stories.mdx +31 -0
  857. package/src/stories/InputText/InputTextLabel.stories.mdx +15 -0
  858. package/src/stories/InputText/InputTextLoading.stories.mdx +19 -0
  859. package/src/stories/InputText/InputTextMax.stories.mdx +31 -0
  860. package/src/stories/InputText/InputTextMaxLength.stories.mdx +15 -0
  861. package/src/stories/InputText/InputTextMin.stories.mdx +31 -0
  862. package/src/stories/InputText/InputTextMinLength.stories.mdx +15 -0
  863. package/src/stories/InputText/InputTextPlaceholder.stories.mdx +15 -0
  864. package/src/stories/InputText/InputTextReadonly.stories.mdx +19 -0
  865. package/src/stories/InputText/InputTextSlots.stories.mdx +30 -0
  866. package/src/stories/InputText/InputTextStep.stories.mdx +31 -0
  867. package/src/stories/InputText/InputTextType.stories.mdx +81 -0
  868. package/src/stories/InputText/InputTextValid.stories.mdx +19 -0
  869. package/src/stories/NativeSelect/NativeSelect.stories.mdx +53 -0
  870. package/src/stories/NativeSelect/NativeSelectDisabled.stories.mdx +32 -0
  871. package/src/stories/NativeSelect/NativeSelectError.stories.mdx +36 -0
  872. package/src/stories/NativeSelect/NativeSelectHintLabel.stories.mdx +34 -0
  873. package/src/stories/NativeSelect/NativeSelectIconLeftRight.stories.mdx +42 -0
  874. package/src/stories/NativeSelect/NativeSelectLoading.stories.mdx +27 -0
  875. package/src/stories/NativeSelect/NativeSelectOptions.stories.mdx +78 -0
  876. package/src/stories/NativeSelect/NativeSelectReadonly.stories.mdx +34 -0
  877. package/src/stories/NativeSelect/NativeSelectUseObject.stories.mdx +66 -0
  878. package/src/stories/NativeSelect/NativeSelectValid.stories.mdx +36 -0
  879. package/src/stories/NativeSelect/NativeSelectValueKey.stories.mdx +66 -0
  880. package/src/stories/Progress/Progress.stories.mdx +29 -0
  881. package/src/stories/Progress/ProgressDeterminate.stories.mdx +19 -0
  882. package/src/stories/Radio/Radio.stories.mdx +67 -0
  883. package/src/stories/Radio/RadioDisabled.stories.mdx +30 -0
  884. package/src/stories/Radio/RadioError.stories.mdx +64 -0
  885. package/src/stories/Radio/RadioHintLabel.stories.mdx +30 -0
  886. package/src/stories/Radio/RadioSlots.stories.mdx +29 -0
  887. package/src/stories/Radio/RadioTest.js +89 -0
  888. package/src/stories/RadioGroup/RadioGroup.stories.mdx +73 -0
  889. package/src/stories/RadioGroup/RadioGroupDisabled.stories.mdx +29 -0
  890. package/src/stories/RadioGroup/RadioGroupError.stories.mdx +31 -0
  891. package/src/stories/RadioGroup/RadioGroupHintLabel.stories.mdx +28 -0
  892. package/src/stories/RadioGroup/RadioGroupLabel.stories.mdx +29 -0
  893. package/src/stories/RadioGroup/RadioGroupOptionLabel.stories.mdx +65 -0
  894. package/src/stories/RadioGroup/RadioGroupOptionValue.stories.mdx +65 -0
  895. package/src/stories/RadioGroup/RadioGroupOptions.stories.mdx +58 -0
  896. package/src/stories/RadioGroup/RadioGroupReadonly.stories.mdx +29 -0
  897. package/src/stories/RadioGroup/RadioGroupSlots.stories.mdx +162 -0
  898. package/src/stories/RadioGroup/RadioGroupValid.stories.mdx +31 -0
  899. package/src/stories/RadioGroup/RadioGroupVertical.stories.mdx +29 -0
  900. package/src/stories/RadioGroup/RadioOptionsTest.js +78 -0
  901. package/src/stories/RadioGroup/RadioPropertyTest.js +131 -0
  902. package/src/stories/RadioGroup/RadioSlotsTest.js +20 -0
  903. package/src/stories/Select/Select.stories.mdx +55 -0
  904. package/src/stories/Select/SelectDisabled.stories.mdx +32 -0
  905. package/src/stories/Select/SelectMaxValues.stories.mdx +33 -0
  906. package/src/stories/Select/SelectMultiple.stories.mdx +64 -0
  907. package/src/stories/Select/SelectOptions.stories.mdx +78 -0
  908. package/src/stories/Select/SelectSearchable.stories.mdx +80 -0
  909. package/src/stories/Select/SelectSeparator.stories.mdx +64 -0
  910. package/src/stories/Select/SelectUseObject.stories.mdx +66 -0
  911. package/src/stories/Textarea/Textarea.stories.mdx +84 -0
  912. package/src/stories/Textarea/TextareaAutocomplete.stories.mdx +15 -0
  913. package/src/stories/Textarea/TextareaAutofocus.stories.mdx +20 -0
  914. package/src/stories/Textarea/TextareaDisabled.stories.mdx +19 -0
  915. package/src/stories/Textarea/TextareaError.stories.mdx +19 -0
  916. package/src/stories/Textarea/TextareaFloating.stories.mdx +20 -0
  917. package/src/stories/Textarea/TextareaHintLabel.stories.mdx +18 -0
  918. package/src/stories/Textarea/TextareaIcon.stories.mdx +18 -0
  919. package/src/stories/Textarea/TextareaIconPosition.stories.mdx +31 -0
  920. package/src/stories/Textarea/TextareaLabel.stories.mdx +15 -0
  921. package/src/stories/Textarea/TextareaLoading.stories.mdx +19 -0
  922. package/src/stories/Textarea/TextareaMaxLength.stories.mdx +15 -0
  923. package/src/stories/Textarea/TextareaMinLength.stories.mdx +15 -0
  924. package/src/stories/Textarea/TextareaPlaceholder.stories.mdx +15 -0
  925. package/src/stories/Textarea/TextareaReadonly.stories.mdx +19 -0
  926. package/src/stories/Textarea/TextareaRowsCols.stories.mdx +31 -0
  927. package/src/stories/Textarea/TextareaSlots.stories.mdx +31 -0
  928. package/src/stories/Textarea/TextareaValid.stories.mdx +19 -0
  929. package/src/stories/stories.scss +24 -0
  930. package/src/stories/volver-ui-vue.stories.mdx +70 -0
  931. package/src/types/.README +0 -0
  932. package/src/types/generic.d.ts +1 -0
  933. package/src/utils/ObjectUtilities.ts +275 -0
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2 2)"><g fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="28" height="28" rx="3" stroke="none"/><rect x="1" y="1" width="26" height="26" rx="2" fill="none"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(1.667 1.667)"><g transform="translate(0.333 0.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13" fill="none"/></g><path d="M11,13.5l5,5,5-5" transform="translate(-1.667 -1.167)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6 11)"><path d="M10,0,0,10,10,20" transform="translate(0 10) rotate(-90)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(1.667 1.666)"><g transform="translate(0.333 0.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13" fill="none"/></g><path d="M204.5,11l-5,5,5,5" transform="translate(-188.166 -1.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(11 6)"><path d="M136-49,126-39l10,10" transform="translate(-126 49)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" transform="translate(0 32) rotate(-90)" fill="#fff" opacity="0"/><g transform="translate(12 26) rotate(-90)"><path d="M0,0,10,10,20,0" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(1.667 1.667)"><g transform="translate(0.333 0.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13" fill="none"/></g><path d="M-609,80.5l5-5,5,5" transform="translate(618.334 -64.167)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6 10)"><path d="M10,0,0,10,10,20" transform="translate(20) rotate(90)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 3.666)"><line x2="24" transform="translate(0 10.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="24" transform="translate(0 24.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><g transform="translate(-5 -14.666)"><path d="M0,0A3,3,0,0,1,3,3,3,3,0,0,1,0,6" transform="translate(9 24) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/><g transform="translate(-13 -0.68)" fill="none" stroke-miterlimit="10"><path d="M22,17.679a3,3,0,1,1,.879,2.121A2.994,2.994,0,0,1,22,17.679Z" stroke="none"/><path d="M 25.00000381469727 16.67900276184082 C 24.65928649902344 16.67900276184082 24.42787170410156 16.8371467590332 24.29323959350586 16.97069931030273 C 24.18279647827148 17.08208084106445 24.00000381469727 17.32065200805664 24.00000381469727 17.67900276184082 C 24.00000381469727 18.01902770996094 24.15946578979492 18.25118827819824 24.29384994506836 18.38641357421875 C 24.42925453186035 18.52052688598633 24.66101837158203 18.67900276184082 25.00000381469727 18.67900276184082 C 25.34115409851074 18.67900276184082 25.57370376586914 18.51850318908691 25.70676422119141 18.38580322265625 C 25.84054374694824 18.25202369689941 26.00000381469727 18.02081298828125 26.00000381469727 17.67900276184082 C 26.00000381469727 17.33595275878906 25.84054374694824 17.10448265075684 25.7087230682373 16.97265243530273 C 25.57439422607422 16.83869361877441 25.34239387512207 16.67900276184082 25.00000381469727 16.67900276184082 M 25.00000381469727 14.67900276184082 C 25.82950401306152 14.67900276184082 26.57650375366211 15.01350212097168 27.12099456787109 15.55650329589844 C 27.66549301147461 16.10100364685059 28.00000381469727 16.84950256347656 28.00000381469727 17.67900276184082 C 28.00000381469727 18.50850296020508 27.66549301147461 19.2554931640625 27.12099456787109 19.80000305175781 C 26.57650375366211 20.34300231933594 25.82950401306152 20.67900276184082 25.00000381469727 20.67900276184082 C 24.17050361633301 20.67900276184082 23.42350387573242 20.34300231933594 22.87900352478027 19.80000305175781 C 22.33600425720215 19.2554931640625 22.00000381469727 18.50850296020508 22.00000381469727 17.67900276184082 C 22.00000381469727 16.84950256347656 22.33600425720215 16.10100364685059 22.87900352478027 15.55650329589844 C 23.42350387573242 15.01350212097168 24.17050361633301 14.67900276184082 25.00000381469727 14.67900276184082 Z" stroke="none" fill="#000"/></g></g><g transform="translate(0 -0.666)"><path d="M0,0A3,3,0,0,1,3,3,3,3,0,0,1,0,6" transform="translate(9 24) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/><g transform="translate(-13 -0.68)" fill="none" stroke-miterlimit="10"><path d="M22,17.679a3,3,0,1,1,.879,2.121A2.994,2.994,0,0,1,22,17.679Z" stroke="none"/><path d="M 25.00000381469727 16.67900276184082 C 24.65928649902344 16.67900276184082 24.42787170410156 16.8371467590332 24.29323959350586 16.97069931030273 C 24.18279647827148 17.08208084106445 24.00000381469727 17.32065200805664 24.00000381469727 17.67900276184082 C 24.00000381469727 18.01902770996094 24.15946578979492 18.25118827819824 24.29384994506836 18.38641357421875 C 24.42925453186035 18.52052688598633 24.66101837158203 18.67900276184082 25.00000381469727 18.67900276184082 C 25.34115409851074 18.67900276184082 25.57370376586914 18.51850318908691 25.70676422119141 18.38580322265625 C 25.84054374694824 18.25202369689941 26.00000381469727 18.02081298828125 26.00000381469727 17.67900276184082 C 26.00000381469727 17.33595275878906 25.84054374694824 17.10448265075684 25.7087230682373 16.97265243530273 C 25.57439422607422 16.83869361877441 25.34239387512207 16.67900276184082 25.00000381469727 16.67900276184082 M 25.00000381469727 14.67900276184082 C 25.82950401306152 14.67900276184082 26.57650375366211 15.01350212097168 27.12099456787109 15.55650329589844 C 27.66549301147461 16.10100364685059 28.00000381469727 16.84950256347656 28.00000381469727 17.67900276184082 C 28.00000381469727 18.50850296020508 27.66549301147461 19.2554931640625 27.12099456787109 19.80000305175781 C 26.57650375366211 20.34300231933594 25.82950401306152 20.67900276184082 25.00000381469727 20.67900276184082 C 24.17050361633301 20.67900276184082 23.42350387573242 20.34300231933594 22.87900352478027 19.80000305175781 C 22.33600425720215 19.2554931640625 22.00000381469727 18.50850296020508 22.00000381469727 17.67900276184082 C 22.00000381469727 16.84950256347656 22.33600425720215 16.10100364685059 22.87900352478027 15.55650329589844 C 23.42350387573242 15.01350212097168 24.17050361633301 14.67900276184082 25.00000381469727 14.67900276184082 Z" stroke="none" fill="#000"/></g></g><g transform="translate(5 -14.666)"><path d="M0,0A3,3,0,0,1,3,3,3,3,0,0,1,0,6" transform="translate(9 24) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/><g transform="translate(-13 -0.68)" fill="none" stroke-miterlimit="10"><path d="M22,17.679a3,3,0,1,1,.879,2.121A2.994,2.994,0,0,1,22,17.679Z" stroke="none"/><path d="M 25.00000381469727 16.67900276184082 C 24.65928649902344 16.67900276184082 24.42787170410156 16.8371467590332 24.29323959350586 16.97069931030273 C 24.18279647827148 17.08208084106445 24.00000381469727 17.32065200805664 24.00000381469727 17.67900276184082 C 24.00000381469727 18.01902770996094 24.15946578979492 18.25118827819824 24.29384994506836 18.38641357421875 C 24.42925453186035 18.52052688598633 24.66101837158203 18.67900276184082 25.00000381469727 18.67900276184082 C 25.34115409851074 18.67900276184082 25.57370376586914 18.51850318908691 25.70676422119141 18.38580322265625 C 25.84054374694824 18.25202369689941 26.00000381469727 18.02081298828125 26.00000381469727 17.67900276184082 C 26.00000381469727 17.33595275878906 25.84054374694824 17.10448265075684 25.7087230682373 16.97265243530273 C 25.57439422607422 16.83869361877441 25.34239387512207 16.67900276184082 25.00000381469727 16.67900276184082 M 25.00000381469727 14.67900276184082 C 25.82950401306152 14.67900276184082 26.57650375366211 15.01350212097168 27.12099456787109 15.55650329589844 C 27.66549301147461 16.10100364685059 28.00000381469727 16.84950256347656 28.00000381469727 17.67900276184082 C 28.00000381469727 18.50850296020508 27.66549301147461 19.2554931640625 27.12099456787109 19.80000305175781 C 26.57650375366211 20.34300231933594 25.82950401306152 20.67900276184082 25.00000381469727 20.67900276184082 C 24.17050361633301 20.67900276184082 23.42350387573242 20.34300231933594 22.87900352478027 19.80000305175781 C 22.33600425720215 19.2554931640625 22.00000381469727 18.50850296020508 22.00000381469727 17.67900276184082 C 22.00000381469727 16.84950256347656 22.33600425720215 16.10100364685059 22.87900352478027 15.55650329589844 C 23.42350387573242 15.01350212097168 24.17050361633301 14.67900276184082 25.00000381469727 14.67900276184082 Z" stroke="none" fill="#000"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(3.362 3.362)"><g transform="translate(-0.362 -0.362)" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="13" cy="13" r="13" stroke="none"/><circle cx="13" cy="13" r="12" fill="none"/></g><g transform="translate(8.638 8.638)"><line y1="8" x2="8" transform="translate(0 0)" fill="none" stroke="#fff" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="8" y2="8" transform="translate(0 0)" fill="none" stroke="#fff" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(-464 -5346)"><path d="M6316,22388h-4a1,1,0,0,1,0-2h1v-4.76l2-2v6.76h1a1,1,0,1,1,0,2Zm-3-15.244V22368h-7v1a1,1,0,0,1-2,0v-4a.99.99,0,0,1,1-1,1,1,0,0,1,1,1v1h13.75l-2,2H6315v2.754l-2,2Z" transform="translate(-5834 -17014)"/><line y1="22" x2="22" transform="translate(469 5351)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(1.823 1.823)"><g transform="translate(0.177 0.178)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13" fill="none"/></g><g transform="translate(8.946 8.946)"><line y1="10" x2="10" transform="translate(0.231 0.232)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="10" y2="10" transform="translate(0.231 0.232)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(12 12)"><line y1="8" x2="8" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="8" y2="8" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(7.533 7.533)"><line y1="16" x2="16" transform="translate(0.467 0.467)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="16" y2="16" transform="translate(0.467 0.467)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.267 4.333)"><g transform="translate(0.733 6.666)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"><path d="M1,0H17a1,1,0,0,1,1,1V8a8,8,0,0,1-8,8H8A8,8,0,0,1,0,8V1A1,1,0,0,1,1,0Z" stroke="none"/><path d="M1,1H17a0,0,0,0,1,0,0V8a7,7,0,0,1-7,7H8A7,7,0,0,1,1,8V1A0,0,0,0,1,1,1Z" fill="none"/></g><g transform="translate(16.733 14.666) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"><path d="M0,0H8A0,0,0,0,1,8,0V3A3,3,0,0,1,5,6H3A3,3,0,0,1,0,3V0A0,0,0,0,1,0,0Z" stroke="none"/><path d="M1,1H7A0,0,0,0,1,7,1V3A2,2,0,0,1,5,5H3A2,2,0,0,1,1,3V1A0,0,0,0,1,1,1Z" fill="none"/></g><line x2="22" transform="translate(-1.267 22.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y1="2" transform="translate(4.733 1.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line y1="2" transform="translate(9.733 1.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line y1="2" transform="translate(14.733 1.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32" viewBox="0 0 32 32"><defs><radialGradient id="a" cx="0.5" cy="0.5" r="0.5" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="red"/><stop offset="0.148" stop-color="#ff9d00"/><stop offset="0.32" stop-color="#ffe200"/><stop offset="0.493" stop-color="#00ff27"/><stop offset="0.66" stop-color="blue"/><stop offset="0.833" stop-color="#f0f"/><stop offset="1" stop-color="red"/></radialGradient></defs><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(3.667 3.666)"><g transform="translate(0.333 0.334)" stroke="#fff" stroke-width="1" fill="url(#a)"><circle cx="12" cy="12" r="12" stroke="none"/><circle cx="12" cy="12" r="11.5" fill="none"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(9.001 8)"><path d="M1291.177,10.648V6.84c0-3.934-3.513-8.192-8-8.192s-8,4.257-8,8.192v1.8" transform="translate(-1276.178 -2.647)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M1289.251,8.8v3.912a7.6,7.6,0,0,1-2,5.588" transform="translate(-1277.252 -4.799)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M1280.029,1.387c0,2.143,7.7,5,11,5" transform="translate(-1279.031 -2.386)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M1279.58,4.471c-.862.606-1.949,3.279-2,4.889v1.222a6.65,6.65,0,0,0,2,4.889" transform="translate(-1275.581 -1.971)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M1285.752,19.12a1.113,1.113,0,0,1-1.2,1h-.6a1.113,1.113,0,0,1-1.2-1h0a1.112,1.112,0,0,1,1.2-1h.6a1.114,1.114,0,0,1,1.2,1Z" transform="translate(-1275.754 -0.119)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M1286.128,23.7h.469c2.493.021,4.522-4.31,4.531-9.671,0-.11,0-.218,0-.328" transform="translate(-1276.128 -4.702)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M1293.193,8.08h-1v4h1a.95.95,0,0,0,1-.889V8.968A.951.951,0,0,0,1293.193,8.08Z" transform="translate(-1277.194 -2.08)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M1273.685,8.08h1v4h-1a.949.949,0,0,1-1-.887V8.97a.949.949,0,0,1,1-.89h0Z" transform="translate(-1275.686 -2.078)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.667 2.666)"><g transform="translate(4.334 0.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="16" height="22" rx="2" stroke="none"/><rect x="1" y="1" width="14" height="20" rx="1" fill="none"/></g><path d="M14.5,26.5h-9a2.665,2.665,0,0,1-3-3V8.5" transform="translate(-1.167 -1.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 6.662)"><path d="M0,0H2A0,0,0,0,1,2,0V7A1,1,0,0,1,1,8H1A1,1,0,0,1,0,7V0A0,0,0,0,1,0,0Z" transform="translate(24 6.338)"/><g transform="translate(-8034 -17771.004)" fill="rgba(0,0,0,0)" stroke-miterlimit="10"><path d="M 8052.00048828125 17790.337890625 L 8039.99853515625 17790.337890625 C 8038.8955078125 17790.337890625 8037.998046875 17789.44140625 8037.998046875 17788.337890625 L 8037.998046875 17780.58984375 L 8037.998046875 17779.994140625 L 8037.4736328125 17779.7109375 L 8033.0869140625 17777.337890625 L 8045.9990234375 17770.353515625 L 8058.91162109375 17777.337890625 L 8054.525390625 17779.7109375 L 8054.0009765625 17779.994140625 L 8054.0009765625 17780.58984375 L 8054.0009765625 17788.337890625 C 8054.0009765625 17789.44140625 8053.103515625 17790.337890625 8052.00048828125 17790.337890625 Z" stroke="none"/><path d="M 8052.00048828125 17789.337890625 C 8052.55224609375 17789.337890625 8053.0009765625 17788.888671875 8053.0009765625 17788.337890625 L 8053.0009765625 17779.3984375 L 8054.0498046875 17778.830078125 L 8056.80908203125 17777.337890625 L 8045.9990234375 17771.490234375 L 8035.189453125 17777.337890625 L 8038.998046875 17779.3984375 L 8038.998046875 17788.337890625 C 8038.998046875 17788.888671875 8039.44677734375 17789.337890625 8039.99853515625 17789.337890625 L 8052.00048828125 17789.337890625 M 8052.00048828125 17791.337890625 L 8039.99853515625 17791.337890625 C 8038.341796875 17791.337890625 8036.998046875 17789.994140625 8036.998046875 17788.337890625 L 8036.998046875 17780.58984375 L 8032.474609375 17778.14453125 C 8031.8408203125 17777.80078125 8031.8408203125 17776.876953125 8032.474609375 17776.533203125 L 8045.583984375 17769.44140625 C 8045.8427734375 17769.3046875 8046.15576171875 17769.3046875 8046.41455078125 17769.44140625 L 8059.52392578125 17776.533203125 C 8060.158203125 17776.876953125 8060.158203125 17777.80078125 8059.52392578125 17778.14453125 L 8055.0009765625 17780.58984375 L 8055.0009765625 17788.337890625 C 8055.0009765625 17789.994140625 8053.65673828125 17791.337890625 8052.00048828125 17791.337890625 Z" stroke="none" fill="#000"/></g><g transform="translate(51.001 -9.328)" fill="rgba(0,0,0,0)" stroke-miterlimit="10"><path d="M -39.00025939941406 22.6452579498291 L -51.91369247436523 15.66250991821289 L -39.00027465820312 8.679754257202148 L -26.08683204650879 15.66250133514404 L -39.00025939941406 22.6452579498291 Z" stroke="none"/><path d="M -39.00026702880859 21.50841903686523 L -28.1892204284668 15.66250610351562 L -39.00026702880859 9.816591262817383 L -49.81130599975586 15.66250514984131 L -39.00026702880859 21.50841903686523 M -39.00026702880859 23.66250228881836 C -39.14347076416016 23.66250228881836 -39.28667831420898 23.62729454040527 -39.41675567626953 23.55688095092773 L -52.52513885498047 16.46870994567871 C -53.15862655639648 16.12618064880371 -53.15862655639648 15.19883060455322 -52.52513885498047 14.85630035400391 L -39.41675567626953 7.768130302429199 C -39.15660095214844 7.627290725708008 -38.84393310546875 7.627290725708008 -38.58377838134766 7.768130302429199 L -25.47538757324219 14.85630035400391 C -24.84189796447754 15.19883060455322 -24.84189796447754 16.12618064880371 -25.47538757324219 16.46870994567871 L -38.58377838134766 23.55688095092773 C -38.7138557434082 23.62729454040527 -38.85706329345703 23.66250228881836 -39.00026702880859 23.66250228881836 Z" stroke="none" fill="#000"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(10 3)"><g transform="translate(-5)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="10" height="10" rx="2" stroke="none"/><rect x="1" y="1" width="8" height="8" rx="1" fill="none"/></g><g transform="translate(7 16)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="10" height="10" rx="2" stroke="none"/><rect x="1" y="1" width="8" height="8" rx="1" fill="none"/></g><g transform="translate(7)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="10" height="14" rx="2" stroke="none"/><rect x="1" y="1" width="8" height="12" rx="1" fill="none"/></g><g transform="translate(-5 12)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="10" height="14" rx="2" stroke="none"/><rect x="1" y="1" width="8" height="12" rx="1" fill="none"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.333 6.334)"><path d="M135.648,24.4l4,4,4-4" transform="translate(-128.981 -15.734)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y1="14" transform="translate(10.667 -1.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M25-3V1H1V-3" transform="translate(-2.333 19.667)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(10.667 4.333)"><line y2="24" transform="translate(10.333 -0.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line y2="24" transform="translate(5.333 -0.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line y2="24" transform="translate(0.333 -0.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(1.667 1.669)"><g transform="translate(-8274 -20866)" fill="rgba(0,0,0,0)" stroke-miterlimit="10"><path d="M 8289.3310546875 20893.330078125 L 8277.3330078125 20893.330078125 C 8276.23046875 20893.330078125 8275.333984375 20892.43359375 8275.333984375 20891.33203125 L 8275.333984375 20879.328125 C 8275.333984375 20878.224609375 8276.23046875 20877.328125 8277.3330078125 20877.328125 L 8284.333984375 20877.328125 L 8285.333984375 20877.328125 L 8285.333984375 20876.328125 L 8285.333984375 20869.333984375 C 8285.333984375 20868.23046875 8286.23046875 20867.333984375 8287.3330078125 20867.333984375 L 8299.3310546875 20867.333984375 C 8300.43359375 20867.333984375 8301.3310546875 20868.23046875 8301.3310546875 20869.333984375 L 8301.3310546875 20881.33203125 C 8301.3310546875 20882.43359375 8300.43359375 20883.330078125 8299.3310546875 20883.330078125 L 8292.3310546875 20883.330078125 L 8291.3310546875 20883.330078125 L 8291.3310546875 20884.330078125 L 8291.3310546875 20891.33203125 C 8291.3310546875 20892.43359375 8290.43359375 20893.330078125 8289.3310546875 20893.330078125 Z" stroke="none"/><path d="M 8289.3310546875 20892.330078125 C 8289.8828125 20892.330078125 8290.3310546875 20891.8828125 8290.3310546875 20891.33203125 L 8290.3310546875 20882.330078125 L 8299.3310546875 20882.330078125 C 8299.8828125 20882.330078125 8300.3310546875 20881.8828125 8300.3310546875 20881.33203125 L 8300.3310546875 20869.333984375 C 8300.3310546875 20868.783203125 8299.8828125 20868.333984375 8299.3310546875 20868.333984375 L 8287.3330078125 20868.333984375 C 8286.7822265625 20868.333984375 8286.333984375 20868.783203125 8286.333984375 20869.333984375 L 8286.333984375 20878.328125 L 8277.3330078125 20878.328125 C 8276.7822265625 20878.328125 8276.333984375 20878.77734375 8276.333984375 20879.328125 L 8276.333984375 20891.33203125 C 8276.333984375 20891.8828125 8276.7822265625 20892.330078125 8277.3330078125 20892.330078125 L 8289.3310546875 20892.330078125 M 8289.3310546875 20894.330078125 L 8277.3330078125 20894.330078125 C 8275.6767578125 20894.330078125 8274.333984375 20892.98828125 8274.333984375 20891.33203125 L 8274.333984375 20879.328125 C 8274.333984375 20877.67578125 8275.6767578125 20876.328125 8277.3330078125 20876.328125 L 8284.333984375 20876.328125 L 8284.333984375 20869.333984375 C 8284.333984375 20867.67578125 8285.6767578125 20866.333984375 8287.3330078125 20866.333984375 L 8299.3310546875 20866.333984375 C 8300.98828125 20866.333984375 8302.3310546875 20867.67578125 8302.3310546875 20869.333984375 L 8302.3310546875 20881.33203125 C 8302.3310546875 20882.98828125 8300.98828125 20884.330078125 8299.3310546875 20884.330078125 L 8292.3310546875 20884.330078125 L 8292.3310546875 20891.33203125 C 8292.3310546875 20892.98828125 8290.98828125 20894.330078125 8289.3310546875 20894.330078125 Z" stroke="none" fill="#000"/></g><g transform="translate(10.333 0.332)" fill="rgba(0,0,0,0)" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="18" height="18" rx="3" stroke="none"/><rect x="1" y="1" width="16" height="16" rx="2" fill="none"/></g><g transform="translate(16.985 7.639)"><line x2="6" transform="translate(-0.652 1.693)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y2="6" transform="translate(2.348 -1.307)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(3 3)"><g transform="translate(181.318 -66.664)" fill="none" stroke-miterlimit="10"><path d="M-159.189,67.336l3.175,3.169a2.371,2.371,0,0,1,.008,3.348l-16.735,16.88a2.369,2.369,0,0,1-1.2.654l-6,1.254a1.143,1.143,0,0,1-1.354-1.354l1.3-6.114a2.37,2.37,0,0,1,.656-1.2l16.911-16.65A2.3,2.3,0,0,1-159.189,67.336Z" stroke="none"/><path d="M -160.8125 68.66448974609375 C -160.8687286376953 68.66448974609375 -160.9509582519531 68.67945098876953 -161.0223999023438 68.74967956542969 L -177.9334259033203 85.39939117431641 C -177.9854583740234 85.45060729980469 -178.0209045410156 85.51518249511719 -178.0362396240234 85.58756256103516 L -179.0625305175781 90.41334533691406 L -174.3513336181641 89.42839050292969 C -174.2795867919922 89.41341400146484 -174.2148895263672 89.37837982177734 -174.1615753173828 89.32440948486328 L -157.4260864257812 72.44399261474609 C -157.282470703125 72.29917907714844 -157.2833251953125 72.063720703125 -157.4268493652344 71.92024993896484 L -160.6018981933594 68.75127410888672 C -160.6737365722656 68.67954254150391 -160.7560729980469 68.66448974609375 -160.8125 68.66448974609375 M -160.8125 66.66448974609375 C -160.2245635986328 66.66448974609375 -159.6370697021484 66.88836669921875 -159.1887664794922 67.33598327636719 L -156.0139770507812 70.50467681884766 C -155.0893402099609 71.42902374267578 -155.0859222412109 72.92450714111328 -156.0059661865234 73.85227966308594 L -172.7412719726562 90.73251342773438 C -173.0686340332031 91.06394958496094 -173.4867248535156 91.29103088378906 -173.9427185058594 91.38619995117188 L -179.9384765625 92.63971710205078 C -180.7482604980469 92.80831146240234 -181.4638824462891 92.09152221679688 -181.2926788330078 91.28530120849609 L -179.9924926757812 85.17153167724609 C -179.8960113525391 84.71621704101562 -179.6674346923828 84.29994201660156 -179.3366241455078 83.97422790527344 L -162.4255523681641 67.32450103759766 C -161.9779510498047 66.88445281982422 -161.3950042724609 66.66448974609375 -160.8125 66.66448974609375 Z" stroke="none" fill="#000"/></g><line x2="4" y2="4" transform="translate(17 5)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><line x2="5" y2="5" transform="translate(5 16)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4.001 5.332)"><g transform="translate(-2 -3.332)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="28" height="18" rx="3" stroke="none"/><rect x="1" y="1" width="26" height="16" rx="2" fill="none"/></g><line x2="24" transform="translate(-0.001 20.668)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><circle cx="3" cy="3" r="3" transform="translate(3 17.668)"/><path d="M3.106,1.789a1,1,0,0,1,1.789,0L7.276,6.553A1,1,0,0,1,6.382,8H1.618A1,1,0,0,1,.724,6.553Z" transform="translate(16.999 1.668) rotate(90)"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.667 6.667)"><g transform="translate(27.333 -0.666) rotate(90)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="20" height="28" rx="3" stroke="none"/><rect x="1" y="1" width="18" height="26" rx="2" fill="none"/></g><path d="M376.438-363.477l12,9,12-9" transform="translate(-375.105 364.811)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.667 2.666)"><line y2="13" transform="translate(13.333 2.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y2="3" transform="translate(13.333 21.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.667 2.666)"><line y2="7" transform="translate(13.333 6.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y2="2" transform="translate(13.333 18.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><g transform="translate(-0.667 -0.666)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13" fill="none"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6.333 4)"><g transform="translate(-44.001 1.726)" fill="none" stroke-miterlimit="10"><path d="M47.547,23.846a1.115,1.115,0,0,1-1.758,0c-1.177-1.462-3.121-4.014-3.121-4.939V-1.322a2.347,2.347,0,0,1,2.287-2.4H48.38a2.347,2.347,0,0,1,2.288,2.4V18.907C50.668,19.832,48.724,22.384,47.547,23.846Z" stroke="none"/><path d="M 46.66799163818359 21.73119354248047 C 47.975830078125 20.03742599487305 48.52814865112305 19.08638191223145 48.66800308227539 18.73761940002441 L 48.66800308227539 -1.322219133377075 C 48.66800308227539 -1.559579133987427 48.51623153686523 -1.724999189376831 48.38001251220703 -1.724999189376831 L 44.95485305786133 -1.724999189376831 C 44.81917190551758 -1.724999189376831 44.66800308227539 -1.559579133987427 44.66800308227539 -1.322219133377075 L 44.66800308227539 18.73761940002441 C 44.80786514282227 19.08640480041504 45.36041641235352 20.03777313232422 46.66799163818359 21.73119354248047 M 46.66757202148438 24.2744255065918 C 46.34342956542969 24.2744255065918 46.01942825317383 24.13157081604004 45.78914260864258 23.84586143493652 C 44.61200332641602 22.38358116149902 42.66800308227539 19.83190155029297 42.66800308227539 18.90667152404785 L 42.66800308227539 -1.322219133377075 C 42.66800308227539 -2.649609088897705 43.69200134277344 -3.724999189376831 44.95485305786133 -3.724999189376831 L 48.38001251220703 -3.724999189376831 C 49.64400482177734 -3.724999189376831 50.66800308227539 -2.649609088897705 50.66800308227539 -1.322219133377075 L 50.66800308227539 18.90667152404785 C 50.66800308227539 19.83190155029297 48.72400283813477 22.38358116149902 47.5468635559082 23.84586143493652 C 47.31600189208984 24.13157081604004 46.99171447753906 24.2744255065918 46.66757202148438 24.2744255065918 Z" stroke="none" fill="#000"/></g><line x2="6" transform="translate(-0.333 5)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><g transform="translate(10.667 -2)"><g transform="translate(0)" fill="none"><path d="M0,0H10V28H0Z" stroke="none"/><path d="M 2 2 L 2 26 L 8 26 L 8 2 L 2 2 M 0 0 L 10 0 L 10 28 L 0 28 L 0 0 Z" stroke="none" fill="#000"/></g><line x2="3" transform="translate(1 7)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="3" transform="translate(1 14)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="3" transform="translate(1 21)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6.667 1)"><path d="M-533,82.1V87.81a3,3,0,0,1-2.857,2.857h-14.286A3,3,0,0,1-553,87.81V73.524a3,3,0,0,1,2.857-2.857h5.714" transform="translate(550.333 -63.667)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-538.333,67h8v8" transform="translate(550.666 -63)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y1="12" x2="12" transform="translate(7.333 5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="33" height="33" viewBox="0 0 33 33"><g transform="translate(0.5 0.5)"><rect width="32" height="32" fill="#fff" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1" opacity="0"/><g transform="translate(5.333 6.666)"><line x2="14" transform="translate(3.667 6.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="8" transform="translate(3.667 12.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><path d="M-2868.324,228.505v-7h-7" transform="translate(2890.992 -223.171)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-2875.273,242.9h7v-7" transform="translate(2890.941 -222.569)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-2889.122,221.558h-7v7" transform="translate(2894.79 -223.223)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-2896.072,235.958v7h7" transform="translate(2894.739 -222.62)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><circle cx="3" cy="3" r="3" transform="translate(18.667 17.334)"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.333 5.333)"><g transform="translate(0 2.668)"><path d="M16,1.167A16.765,16.765,0,0,0,13.723,1h-.017A15.052,15.052,0,0,0,7.594,2.207,12.771,12.771,0,0,0,2.462,6.3,10.707,10.707,0,0,0,1.038,8.792a.64.64,0,0,0,0,.423A11.254,11.254,0,0,0,3.479,13" transform="translate(-2.333 -1)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><path d="M8.353,15.858a17.331,17.331,0,0,0,2.32.167,15.265,15.265,0,0,0,6.188-1.207,12.343,12.343,0,0,0,5.093-4.1A10.208,10.208,0,0,0,23.32,8.207a.652.652,0,0,0,0-.424,11.887,11.887,0,0,0-2.494-3.758" transform="translate(-0.686 -0.026)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/></g><line y1="22" x2="22" transform="translate(-0.333 -0.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(3 7.333)"><path d="M30.465,17.254a13.5,13.5,0,0,0-2.712-4.4,13.06,13.06,0,0,0-3.993-3A14.206,14.206,0,0,0,17.5,8.5a14.2,14.2,0,0,0-6.257,1.356A13.386,13.386,0,0,0,6,14.452a12.391,12.391,0,0,0-1.455,2.8.793.793,0,0,0-.006.475,12.89,12.89,0,0,0,2.634,4.415,12.747,12.747,0,0,0,3.987,3A14.5,14.5,0,0,0,17.5,26.5a14.5,14.5,0,0,0,6.345-1.355,12.986,12.986,0,0,0,5.221-4.6,11.871,11.871,0,0,0,1.4-2.812A.793.793,0,0,0,30.465,17.254Z" transform="translate(-4.504 -8.834)" fill="none" stroke="#000" stroke-width="2"/><circle cx="5" cy="5" r="5" transform="translate(8 3.667)" fill="none" stroke="#000" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" transform="translate(32 32) rotate(180)" fill="#fff" opacity="0"/><g transform="translate(4 4)"><rect width="6" height="14" rx="2.005" transform="translate(18 0)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><path d="M12.426,15.423h1.226l-.1.678h-1.13a1.677,1.677,0,0,0,0,3.354h2.715l3.951.083s-.855,6.084,2.775,8.125c2.33,1.177,2.764-1.065,2.764-1.065V22.361l1.385-1.412s2.771-2.62,2.771-4.264l0-9.857A2.622,2.622,0,0,0,26.015,4H14.682a1.678,1.678,0,0,0,0,3.354h.111l-.1.679H13.555a1.677,1.677,0,0,0,0,3.353h.668l-.1.679h-1.7a1.677,1.677,0,0,0,0,3.354Z" transform="translate(-10.786 -4.003)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.999 7)"><g transform="translate(26.001 18) rotate(180)" fill="none"><path d="M10,2.926V3.8L4,.352A2.728,2.728,0,0,0,0,2.926V15.074a2.732,2.732,0,0,0,4,2.578L10,14.2v.873a2.731,2.731,0,0,0,4,2.578l10.563-6.076a3.031,3.031,0,0,0,0-5.152L14,.352A2.566,2.566,0,0,0,12.72,0,2.825,2.825,0,0,0,10,2.926Z" stroke="none"/><path d="M 12.72021579742432 2 C 12.41847610473633 2 12.00048637390137 2.321720123291016 12.00048637390137 2.925780296325684 L 12.00048637390137 7.255499839782715 L 3.004796981811523 2.08411979675293 C 2.907316207885742 2.027910232543945 2.814676284790039 2.000590324401855 2.721565246582031 2.000590324401855 C 2.419055938720703 2.000590324401855 1.999996185302734 2.322110176086426 1.999996185302734 2.925780296325684 L 1.999996185302734 15.07421970367432 C 1.999996185302734 15.67889976501465 2.421316146850586 16.00094985961914 2.725456237792969 16.00094985961914 C 2.81834602355957 16.00094985961914 2.910636901855469 15.97387027740479 3.00628662109375 15.91892051696777 L 12.00048637390137 10.74254989624023 L 12.00048637390137 15.07421970367432 C 12.00048637390137 15.67889976501465 12.42075634002686 16.00094985961914 12.72414588928223 16.00094985961914 C 12.81800651550293 16.00094985961914 12.91147613525391 15.97352981567383 13.00715637207031 15.91870021820068 L 23.56635665893555 9.844710350036621 C 23.97009658813477 9.611300468444824 24.00146675109863 9.13914966583252 24.00146675109863 9 C 24.00146675109863 8.86085033416748 23.97009658813477 8.388699531555176 23.57062530517578 8.157750129699707 L 13.00865650177002 2.0860595703125 C 12.90777587890625 2.028149604797363 12.81342601776123 2 12.72021579742432 2 M 12.72021579742432 0 C 13.14745616912842 0 13.58593654632568 0.1113300323486328 14.00439643859863 0.3515605926513672 L 24.56738662719727 6.423830032348633 C 26.47949600219727 7.529299736022949 26.47949600219727 10.47069931030273 24.56738662719727 11.57616996765137 L 14.00439643859863 17.65233993530273 C 12.19140243530273 18.69141006469727 10.00048637390137 17.28320121765137 10.00048637390137 15.07421970367432 L 10.00048637390137 14.20116996765137 L 4.00390625 17.65233993530273 C 2.195323944091797 18.69140625 -3.814697265625e-06 17.28320121765137 -3.814697265625e-06 15.07421970367432 L -3.814697265625e-06 2.925780296325684 C -3.814697265625e-06 0.7148380279541016 2.195314407348633 -0.6914100646972656 4.00390625 0.3515605926513672 L 10.00048637390137 3.798830032348633 L 10.00048637390137 2.925780296325684 C 10.00048637390137 1.224609375 11.29687595367432 0 12.72021579742432 0 Z" stroke="none" fill="#000"/></g><g transform="translate(26 0) rotate(90)" fill="none"><path d="M6.425,14.564a3.027,3.027,0,0,0,5.149,0L17.65,4a2.729,2.729,0,0,0-2.575-4H2.925A2.729,2.729,0,0,0,.35,4Z" stroke="none"/><path d="M 8.999999046325684 14 C 9.138898849487305 14 9.610058784484863 13.96877956390381 9.841129302978516 13.56711959838867 L 15.91615867614746 3.007139682769775 C 15.95712947845459 2.935919761657715 16.08181953430176 2.719169616699219 15.91665935516357 2.433619737625122 C 15.85781860351562 2.331889629364014 15.62324905395508 1.999999761581421 15.07501888275146 1.999999761581421 L 2.924978971481323 1.999999761581421 C 2.376749038696289 1.999999761581421 2.142179012298584 2.331889629364014 2.083338975906372 2.433619737625122 C 1.918179035186768 2.719169616699219 2.042869091033936 2.935919761657715 2.083838939666748 3.007129669189453 L 8.158848762512207 13.56711006164551 C 8.389928817749023 13.96877956390381 8.861099243164062 14 8.999999046325684 14 M 8.999998092651367 16 C 7.987916469573975 16 6.975833892822266 15.52147960662842 6.425259113311768 14.56443977355957 L 0.3502390384674072 4.004449844360352 C -0.692160964012146 2.192469835281372 0.7175290584564209 -2.801513687700208e-07 2.924978971481323 -2.801513687700208e-07 L 15.07501888275146 -2.801513687700208e-07 C 17.28246879577637 -2.801513687700208e-07 18.69215965270996 2.192469835281372 17.64975929260254 4.004449844360352 L 11.57472896575928 14.56443977355957 C 11.02415943145752 15.52147960662842 10.0120792388916 16 8.999998092651367 16 Z" stroke="none" fill="#000"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(-0.476 2.439)"><g transform="translate(-8032 -18791)" fill="none"><path d="M8045.476,18810.635v-.873l-6,3.447a2.728,2.728,0,0,1-4-2.574v-12.148a2.732,2.732,0,0,1,4-2.578l6,3.451v-.873a2.731,2.731,0,0,1,4-2.578l10.563,6.076a3.031,3.031,0,0,1,0,5.152l-10.563,6.072a2.566,2.566,0,0,1-1.284.352A2.825,2.825,0,0,1,8045.476,18810.635Z" stroke="none"/><path d="M 8048.1953125 18811.560546875 C 8048.28857421875 18811.560546875 8048.3828125 18811.533203125 8048.48291015625 18811.474609375 L 8059.04150390625 18805.404296875 C 8059.4453125 18805.171875 8059.4765625 18804.69921875 8059.4765625 18804.560546875 C 8059.4765625 18804.421875 8059.4453125 18803.94921875 8059.04541015625 18803.71875 L 8048.48486328125 18797.642578125 C 8048.38671875 18797.587890625 8048.29296875 18797.560546875 8048.19921875 18797.560546875 C 8047.89599609375 18797.560546875 8047.4755859375 18797.880859375 8047.4755859375 18798.486328125 L 8047.4755859375 18802.818359375 L 8038.48291015625 18797.642578125 C 8038.3857421875 18797.5859375 8038.29345703125 18797.560546875 8038.20068359375 18797.560546875 C 8037.896484375 18797.560546875 8037.47509765625 18797.880859375 8037.47509765625 18798.486328125 L 8037.47509765625 18810.634765625 C 8037.47509765625 18810.99609375 8037.61865234375 18811.21875 8037.73876953125 18811.34375 C 8037.8720703125 18811.48046875 8038.0390625 18811.560546875 8038.1962890625 18811.560546875 C 8038.28955078125 18811.560546875 8038.38232421875 18811.533203125 8038.482421875 18811.474609375 L 8047.4755859375 18806.3046875 L 8047.4755859375 18810.634765625 C 8047.4755859375 18811.23828125 8047.8935546875 18811.560546875 8048.1953125 18811.560546875 M 8048.1953125 18813.560546875 C 8046.77197265625 18813.560546875 8045.4755859375 18812.3359375 8045.4755859375 18810.634765625 L 8045.4755859375 18809.76171875 L 8039.47900390625 18813.208984375 C 8037.67041015625 18814.251953125 8035.47509765625 18812.845703125 8035.47509765625 18810.634765625 L 8035.47509765625 18798.486328125 C 8035.47509765625 18796.27734375 8037.6689453125 18794.87109375 8039.47900390625 18795.908203125 L 8045.4755859375 18799.359375 L 8045.4755859375 18798.486328125 C 8045.47509765625 18796.275390625 8047.6669921875 18794.87109375 8049.4794921875 18795.908203125 L 8060.04248046875 18801.984375 C 8061.95458984375 18803.08984375 8061.95458984375 18806.03125 8060.04248046875 18807.13671875 L 8049.4794921875 18813.208984375 C 8049.06103515625 18813.44921875 8048.62255859375 18813.560546875 8048.1953125 18813.560546875 Z" stroke="none" fill="#000"/></g><g transform="translate(19.476 4.561) rotate(90)" fill="none"><path d="M6.425,1.436a3.027,3.027,0,0,1,5.149,0L17.65,12a2.729,2.729,0,0,1-2.575,4H2.925A2.729,2.729,0,0,1,.35,12Z" stroke="none"/><path d="M 9 2 C 8.861100196838379 2 8.38992977142334 2.031220436096191 8.158860206604004 2.432880401611328 L 2.083840370178223 12.99286079406738 C 2.042869567871094 13.06408023834229 1.918180465698242 13.28083038330078 2.083339691162109 13.56638050079346 C 2.142180442810059 13.66810989379883 2.376749992370605 14 2.924980163574219 14 L 15.07503032684326 14 C 15.62325000762939 14 15.85782051086426 13.66810989379883 15.91666030883789 13.56639003753662 C 16.08181953430176 13.28083038330078 15.95713043212891 13.06408023834229 15.91616058349609 12.99287033081055 L 9.841150283813477 2.432889938354492 C 9.61007022857666 2.031220436096191 9.138899803161621 2 9 2 M 9 0 C 10.01208305358887 0 11.02416515350342 0.478520393371582 11.57473945617676 1.43556022644043 L 17.64975929260254 11.99555015563965 C 18.69215965270996 13.80753040313721 17.282470703125 16 15.07503032684326 16 L 2.924980163574219 16 C 0.717529296875 16 -0.6921596527099609 13.80753040313721 0.3502407073974609 11.99555015563965 L 6.425259590148926 1.43556022644043 C 6.975834846496582 0.478520393371582 7.987917900085449 0 9 0 Z" stroke="none" fill="#000"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6.667 4)"><g transform="translate(-0.668 -0.857)"><g transform="translate(-131.314 -5.143)" fill="none" stroke-linejoin="round"><path d="M151.315,12V28a2.864,2.864,0,0,1-3,3h-14a2.864,2.864,0,0,1-3-3V8a2.864,2.864,0,0,1,3-3h10Z" stroke="none"/><path d="M 134.3154296875 7 C 133.6518859863281 7 133.3154296875 7.336450576782227 133.3154296875 8 L 133.3154296875 28 C 133.3154296875 28.66354942321777 133.6518859863281 29 134.3154296875 29 L 148.3154296875 29 C 148.9789733886719 29 149.3154296875 28.66354942321777 149.3154296875 28 L 149.3154296875 12.82842063903809 L 143.4870147705078 7 L 134.3154296875 7 M 134.3154296875 5 L 144.3154296875 5 L 151.3154296875 12 L 151.3154296875 28 C 151.3154296875 29.79517936706543 150.0643463134766 31 148.3154296875 31 L 134.3154296875 31 C 132.5665130615234 31 131.3154296875 29.79517936706543 131.3154296875 28 L 131.3154296875 8 C 131.3154296875 6.20482063293457 132.5665130615234 5 134.3154296875 5 Z" stroke="none" fill="#000"/></g><path d="M148.477,11.915h-6v-6Z" transform="translate(-129.477 -5.058)" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g><path d="M1,0H7" transform="translate(5.333 13.999)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line y2="6" transform="translate(9.333 11)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><path d="M6301,23194c-.489,0-1-.117-1-1v-16c0-.885.506-1,1-1h7v-5c0-.885.506-1,1-1h8.016l4.982,5v12c0,.881-.506,1-1,1h-7v5c0,.885-.507,1-1,1Z" transform="translate(-6295 -23166)" fill="rgba(0,0,0,0)" stroke="#000" stroke-linejoin="round" stroke-width="2"/><g transform="translate(5 10)"><path d="M145.314,24h-12c-.495,0-1-.119-1-1V7c0-.881.505-1,1-1h8.013l4.987,5V23C146.314,23.881,145.809,24,145.314,24Z" transform="translate(-132.314 -6)" fill="rgba(0,0,0,0)" stroke="#000" stroke-linejoin="round" stroke-width="2"/><path d="M146.478,9.916h-4v-4Z" transform="translate(-133.478 -4.917)" stroke="#000" stroke-linejoin="round" stroke-width="2"/><path d="M146.478,9.916h-4v-4Z" transform="translate(-125.479 -10.916)" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6.667 4)"><g transform="translate(-0.668 -0.857)"><g transform="translate(-131.314 -5.143)" fill="none" stroke-linejoin="round"><path d="M151.315,12V28a2.864,2.864,0,0,1-3,3h-14a2.864,2.864,0,0,1-3-3V8a2.864,2.864,0,0,1,3-3h10Z" stroke="none"/><path d="M 134.3154296875 7 C 133.6518859863281 7 133.3154296875 7.336450576782227 133.3154296875 8 L 133.3154296875 28 C 133.3154296875 28.66354942321777 133.6518859863281 29 134.3154296875 29 L 148.3154296875 29 C 148.9789733886719 29 149.3154296875 28.66354942321777 149.3154296875 28 L 149.3154296875 12.82842063903809 L 143.4870147705078 7 L 134.3154296875 7 M 134.3154296875 5 L 144.3154296875 5 L 151.3154296875 12 L 151.3154296875 28 C 151.3154296875 29.79517936706543 150.0643463134766 31 148.3154296875 31 L 134.3154296875 31 C 132.5665130615234 31 131.3154296875 29.79517936706543 131.3154296875 28 L 131.3154296875 8 C 131.3154296875 6.20482063293457 132.5665130615234 5 134.3154296875 5 Z" stroke="none" fill="#000"/></g><path d="M148.477,11.915h-6v-6Z" transform="translate(-129.477 -5.058)" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g><path d="M1,0H7" transform="translate(5.333 14)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.334 4)"><g transform="translate(-2.334 4)"><g transform="translate(-131.314 -8)" fill="none" stroke-linejoin="round"><path d="M149.314,11.172V26.333A2.431,2.431,0,0,1,146.743,29H133.886a2.431,2.431,0,0,1-2.571-2.667V7.667A2.431,2.431,0,0,1,133.886,5h9.2Z" stroke="none"/><path d="M 133.8858795166016 7 C 133.6359558105469 7 133.4942474365234 7.05426025390625 133.4449462890625 7.105030059814453 C 133.3847503662109 7.16703987121582 133.314453125 7.351339340209961 133.314453125 7.666669845581055 L 133.314453125 26.33333015441895 C 133.314453125 26.64866065979004 133.3847503662109 26.83296012878418 133.4449462890625 26.89496994018555 C 133.4942474365234 26.94573974609375 133.6359558105469 27 133.8858795166016 27 L 146.7430419921875 27 C 146.9929504394531 27 147.1346740722656 26.94575119018555 147.1839599609375 26.89496994018555 C 147.2441558837891 26.83296012878418 147.314453125 26.6486701965332 147.314453125 26.33333015441895 L 147.314453125 12.00579643249512 L 142.2656860351562 7 L 133.8858795166016 7 M 133.8858795166016 5 L 143.089111328125 5 L 149.314453125 11.17235946655273 L 149.314453125 26.33333015441895 C 149.314453125 27.99041938781738 148.3169860839844 29 146.7430419921875 29 L 133.8858795166016 29 C 132.3119354248047 29 131.314453125 27.99041938781738 131.314453125 26.33333015441895 L 131.314453125 7.666669845581055 C 131.314453125 6.009580612182617 132.3119354248047 5 133.8858795166016 5 Z" stroke="none" fill="#000"/></g><path d="M146.478,9.917h-4v-4Z" transform="translate(-130.478 -6.915)" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g><g transform="translate(17.666 -1)"><line y2="8" transform="translate(3)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x1="6" y2="4" transform="translate(0 2)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x1="6" y1="4" transform="translate(0 2)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.999 3.143)"><g transform="translate(-131.314 -5.143)" fill="none" stroke-linejoin="round"><path d="M151.315,12V28a2.864,2.864,0,0,1-3,3h-14a2.864,2.864,0,0,1-3-3V8a2.864,2.864,0,0,1,3-3h10Z" stroke="none"/><path d="M 134.3154296875 7 C 133.6518859863281 7 133.3154296875 7.336450576782227 133.3154296875 8 L 133.3154296875 28 C 133.3154296875 28.66354942321777 133.6518859863281 29 134.3154296875 29 L 148.3154296875 29 C 148.9789733886719 29 149.3154296875 28.66354942321777 149.3154296875 28 L 149.3154296875 12.82842063903809 L 143.4870147705078 7 L 134.3154296875 7 M 134.3154296875 5 L 144.3154296875 5 L 151.3154296875 12 L 151.3154296875 28 C 151.3154296875 29.79517936706543 150.0643463134766 31 148.3154296875 31 L 134.3154296875 31 C 132.5665130615234 31 131.3154296875 29.79517936706543 131.3154296875 28 L 131.3154296875 8 C 131.3154296875 6.20482063293457 132.5665130615234 5 134.3154296875 5 Z" stroke="none" fill="#000"/></g><path d="M148.477,11.915h-6v-6Z" transform="translate(-129.477 -5.058)" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6.667 5.333)"><line x2="22" transform="translate(-1.667 2.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="22" transform="translate(-1.667 10.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="22" transform="translate(-1.667 18.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(0.333 -0.334)" stroke="#000" stroke-width="1"><circle cx="3" cy="3" r="3" stroke="none"/><circle cx="3" cy="3" r="2.5" fill="none"/></g><g transform="translate(12.333 7.666)" stroke="#000" stroke-width="1"><circle cx="3" cy="3" r="3" stroke="none"/><circle cx="3" cy="3" r="2.5" fill="none"/></g><g transform="translate(7.333 15.666)" stroke="#000" stroke-width="1"><circle cx="3" cy="3" r="3" stroke="none"/><circle cx="3" cy="3" r="2.5" fill="none"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6.371 3)"><g transform="translate(674.381 -65.96)" stroke-linejoin="round"><path d="M -662.2048950195312 90.95999145507812 C -662.3107299804688 90.95999145507812 -662.4077758789062 90.92786407470703 -662.49365234375 90.86445617675781 L -667.0604858398438 87.06781768798828 L -667.0735473632812 87.05696105957031 L -667.0869750976562 87.04653930664062 C -667.5095825195312 86.71884155273438 -667.751953125 86.24175262451172 -667.751953125 85.73760223388672 L -667.751953125 78.85758972167969 C -667.751953125 78.50293731689453 -667.8397827148438 77.69725799560547 -668.1716918945312 77.18000030517578 L -673.5753784179688 68.69412994384766 C -673.87353515625 68.22946929931641 -673.7302856445312 67.81752014160156 -673.6185302734375 67.61305236816406 C -673.3965454101562 67.20680999755859 -672.964111328125 66.96427154541016 -672.4618530273438 66.96427154541016 L -657.0423583984375 66.95999145507812 C -656.5393676757812 66.95999145507812 -656.1063842773438 67.20339965820312 -655.8843994140625 67.61110687255859 C -655.77294921875 67.81582641601562 -655.63037109375 68.22804260253906 -655.927978515625 68.68857574462891 L -655.9334106445312 68.697021484375 L -655.9386596679688 68.70556640625 L -661.3329467773438 77.43450927734375 C -661.6071166992188 77.86263275146484 -661.751953125 78.35444641113281 -661.751953125 78.85758972167969 L -661.751953125 90.59654998779297 C -661.751953125 90.844482421875 -662.022216796875 90.95999145507812 -662.2048950195312 90.95999145507812 Z" stroke="none"/><path d="M -657.0425415039062 67.95997619628906 L -657.0421142578125 67.95997619628906 L -672.4618530273438 67.96427154541016 C -672.710205078125 67.96427154541016 -672.7515258789062 68.11821746826172 -672.7523803710938 68.11821746826172 C -672.7523803710938 68.11821746826172 -672.7523803710938 68.11820983886719 -672.7523803710938 68.11820220947266 C -672.7517700195312 68.12110900878906 -672.7474365234375 68.13270568847656 -672.735595703125 68.15122222900391 C -672.7343139648438 68.15315246582031 -672.7330932617188 68.15506744384766 -672.7318725585938 68.15699768066406 L -667.329833984375 76.64030456542969 C -666.7681884765625 77.51592254638672 -666.751953125 78.72252655029297 -666.751953125 78.85758972167969 L -666.751953125 85.73760223388672 C -666.751953125 85.93035888671875 -666.6506958007812 86.11941528320312 -666.4741821289062 86.25630187988281 C -666.456298828125 86.27017974853516 -666.4385986328125 86.28437042236328 -666.4212036132812 86.29885101318359 L -662.751953125 89.34928894042969 L -662.751953125 78.85758972167969 C -662.751953125 78.1658935546875 -662.5542602539062 77.49059295654297 -662.1799926757812 76.90298461914062 L -656.7893676757812 68.17987060546875 C -656.7822875976562 68.16847229003906 -656.775146484375 68.15715026855469 -656.7678833007812 68.14588928222656 C -656.7561645507812 68.12775421142578 -656.7517700195312 68.11681365966797 -656.751708984375 68.11818695068359 C -656.7517700195312 68.11660766601562 -656.7930297851562 67.96001434326172 -657.0425415039062 67.95997619628906 M -657.0426635742188 65.95997619628906 C -655.2591552734375 65.95997619628906 -654.161376953125 67.79706573486328 -655.0880126953125 69.23126220703125 L -660.4871215820312 77.96805572509766 C -660.66064453125 78.23664855957031 -660.751953125 78.54389190673828 -660.751953125 78.85758972167969 L -660.751953125 90.59654998779297 C -660.751953125 91.74710845947266 -662.1736450195312 92.37779235839844 -663.1163330078125 91.64723968505859 L -667.6997680664062 87.8367919921875 C -668.3661499023438 87.32004547119141 -668.751953125 86.54975128173828 -668.751953125 85.73760223388672 L -668.751953125 78.85758972167969 C -668.751953125 78.54495239257812 -668.8421020507812 77.98490905761719 -669.0143432617188 77.71846771240234 L -674.4188842773438 69.23126220703125 C -675.3397827148438 67.79598236083984 -674.2432250976562 65.96427154541016 -672.4618530273438 65.96427154541016 L -657.0426635742188 65.95997619628906 Z" stroke="none" fill="#000"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6.371 3)"><g transform="translate(674.381 -65.96)" fill="none" stroke-linejoin="round"><path d="M-672.462,65.964l15.419,0a2.154,2.154,0,0,1,1.955,3.271l-5.4,8.737a1.636,1.636,0,0,0-.265.89V90.6a1.455,1.455,0,0,1-2.364,1.051l-4.583-3.81a2.66,2.66,0,0,1-1.052-2.1v-6.88a2.589,2.589,0,0,0-.262-1.139l-5.4-8.487A2.154,2.154,0,0,1-672.462,65.964Z" stroke="none"/><path d="M -657.0425415039062 67.95997619628906 L -657.0421142578125 67.95997619628906 L -672.4618530273438 67.96427154541016 C -672.710205078125 67.96427154541016 -672.7515258789062 68.11821746826172 -672.7523803710938 68.11821746826172 C -672.7523803710938 68.11821746826172 -672.7523803710938 68.11820983886719 -672.7523803710938 68.11820220947266 C -672.7517700195312 68.12110900878906 -672.7474365234375 68.13270568847656 -672.735595703125 68.15122222900391 C -672.7343139648438 68.15315246582031 -672.7330932617188 68.15506744384766 -672.7318725585938 68.15699768066406 L -667.329833984375 76.64030456542969 C -666.7681884765625 77.51592254638672 -666.751953125 78.72252655029297 -666.751953125 78.85758972167969 L -666.751953125 85.73760223388672 C -666.751953125 85.93035888671875 -666.6506958007812 86.11941528320312 -666.4741821289062 86.25630187988281 C -666.456298828125 86.27017974853516 -666.4385986328125 86.28437042236328 -666.4212036132812 86.29885101318359 L -662.751953125 89.34928894042969 L -662.751953125 78.85758972167969 C -662.751953125 78.1658935546875 -662.5542602539062 77.49059295654297 -662.1799926757812 76.90298461914062 L -656.7893676757812 68.17987060546875 C -656.7822875976562 68.16847229003906 -656.775146484375 68.15715026855469 -656.7678833007812 68.14588928222656 C -656.7561645507812 68.12775421142578 -656.7517700195312 68.11681365966797 -656.751708984375 68.11818695068359 C -656.7517700195312 68.11660766601562 -656.7930297851562 67.96001434326172 -657.0425415039062 67.95997619628906 M -657.0426635742188 65.95997619628906 C -655.2591552734375 65.95997619628906 -654.161376953125 67.79706573486328 -655.0880126953125 69.23126220703125 L -660.4871215820312 77.96805572509766 C -660.66064453125 78.23664855957031 -660.751953125 78.54389190673828 -660.751953125 78.85758972167969 L -660.751953125 90.59654998779297 C -660.751953125 91.74710845947266 -662.1736450195312 92.37779235839844 -663.1163330078125 91.64723968505859 L -667.6997680664062 87.8367919921875 C -668.3661499023438 87.32004547119141 -668.751953125 86.54975128173828 -668.751953125 85.73760223388672 L -668.751953125 78.85758972167969 C -668.751953125 78.54495239257812 -668.8421020507812 77.98490905761719 -669.0143432617188 77.71846771240234 L -674.4188842773438 69.23126220703125 C -675.3397827148438 67.79598236083984 -674.2432250976562 65.96427154541016 -672.4618530273438 65.96427154541016 L -657.0426635742188 65.95997619628906 Z" stroke="none" fill="#000"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6.667 5.333)"><path d="M17.888-830.507c3.925.769,6.176,2.506,6.176,4.769,0,2.933-5.271,5.231-12,5.231s-12-2.3-12-5.231c0-2.263,2.252-4,6.176-4.769" transform="translate(-2.73 844.173)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M7.451,16.379v-16h10l-4,4,4,4h-10" transform="translate(1.882 -2.713)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><ellipse cx="3" cy="1.5" rx="3" ry="1.5" transform="translate(6.333 16.666)"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.669 5.328)"><g transform="translate(0.331 -0.328)" fill="none"><path d="M1,21a2,2,0,0,1-2-2V2.407A2.53,2.53,0,0,1,1.287.006l8,0,1.113,0L12.7,3H25a2,2,0,0,1,2,2V19a2,2,0,0,1-2,2Z" stroke="none"/><path d="M 25.00020027160645 18.99970054626465 L 25 18.99900054931641 L 25.00020027160645 4.999700546264648 L 11.70983982086182 4.999700546264648 L 9.409381866455078 2.002314805984497 L 9.282688140869141 2.001802682876587 L 1.337342143058777 2.006272792816162 C 1.205820202827454 2.058528900146484 1.014733791351318 2.28501296043396 1.000099539756775 2.410799026489258 L 0.9998995661735535 18.99970054626465 L 25.00020027160645 18.99970054626465 M 25.00020027160645 20.99970054626465 L 0.9998995661735535 20.99970054626465 C -0.1044004112482071 20.99970054626465 -0.9999004006385803 20.10420036315918 -0.9999004006385803 18.99900054931641 L -0.9999004006385803 4.999500751495361 C -0.9999004006385803 4.199270725250244 -0.9999004006385803 3.10088062286377 -0.9999004006385803 2.406600475311279 C -0.9999004006385803 1.206900596618652 0.1448995918035507 0.01350054144859314 1.286999583244324 0.006300541572272778 L 9.285299301147461 0.001800541649572551 L 10.39859962463379 0.006300541572272778 L 12.69599914550781 2.999700546264648 L 25.00020027160645 2.999700546264648 C 26.10449981689453 2.999700546264648 27 3.89430046081543 27 4.999500751495361 L 27 18.99900054931641 C 27 20.10420036315918 26.10449981689453 20.99970054626465 25.00020027160645 20.99970054626465 Z" stroke="none" fill="#000"/></g><path d="M3.662,19.1l5-9h20" transform="translate(-2.332 -0.429)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.333 8)"><line y2="16" transform="translate(14.667)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><g transform="translate(-3.333 -2)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><rect width="28" height="20" stroke="none"/><rect x="1" y="1" width="26" height="18" fill="none"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 7)"><path d="M-51,68.914h-4a3.008,3.008,0,0,0-2.278.709A2.636,2.636,0,0,0-58,71.748V83.082a2.64,2.64,0,0,0,.722,2.125A3.007,3.007,0,0,0-55,85.914h20a3.007,3.007,0,0,0,2.278-.707A2.634,2.634,0,0,0-32,83.082V71.748a2.634,2.634,0,0,0-.722-2.125A3.008,3.008,0,0,0-35,68.914h-4" transform="translate(57 -68.914)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(59.1 -66.417)" fill="none" stroke-miterlimit="10"><path d="M-51.306,84.416h8.4l.719,1.594c.306.678-.28,1.406-1.132,1.406h-7.572c-.85,0-1.436-.726-1.134-1.4Z" stroke="none"/><path d="M -51.30584335327148 84.41600036621094 L -42.90125274658203 84.41600036621094 L -42.18243026733398 86.00969696044922 C -41.87671279907227 86.68733215332031 -42.46275329589844 87.41600036621094 -43.31435012817383 87.41600036621094 L -50.88618087768555 87.41600036621094 C -51.73614120483398 87.41600036621094 -52.32218170166016 86.69011688232422 -52.01974105834961 86.01249694824219 L -51.30584335327148 84.41600036621094 Z" stroke="none" fill="#000"/></g><path d="M-49.5,74.181l4,4,4-4" transform="translate(57.5 -66.514)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y1="9" transform="translate(12 0.998)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.333 5.333)"><g transform="translate(-2.333 -2.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="12" height="12" rx="2" stroke="none"/><rect x="1" y="1" width="10" height="10" rx="1" fill="none"/></g><g transform="translate(-2.333 11.666)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="12" height="12" rx="2" stroke="none"/><rect x="1" y="1" width="10" height="10" rx="1" fill="none"/></g><g transform="translate(11.667 -2.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="12" height="12" rx="2" stroke="none"/><rect x="1" y="1" width="10" height="10" rx="1" fill="none"/></g><g transform="translate(11.667 11.666)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="12" height="12" rx="2" stroke="none"/><rect x="1" y="1" width="10" height="10" rx="1" fill="none"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2 3)"><line x2="10" transform="translate(17 5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y2="10" transform="translate(22)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(0 1)"><g transform="translate(1 10)" fill="none" stroke="#000" stroke-width="2"><rect width="10" height="10" rx="5" stroke="none"/><rect x="1" y="1" width="8" height="8" rx="4" fill="none"/></g><path d="M0,0A5,5,0,0,1,5,5a5,5,0,0,1-5,5" transform="translate(1 26) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g><g transform="translate(0 1)"><g transform="translate(12 13)" fill="none" stroke="#000" stroke-width="2"><rect width="8" height="8" rx="4" stroke="none"/><rect x="1" y="1" width="6" height="6" rx="3" fill="none"/></g><path d="M0,0A4,4,0,0,1,4,4,4,4,0,0,1,0,8" transform="translate(12 26) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2 5.444)"><g transform="translate(1 1.557)" fill="none" stroke="#000" stroke-width="2"><rect width="12" height="12" rx="6" stroke="none"/><rect x="1" y="1" width="10" height="10" rx="5" fill="none"/></g><path d="M0,0A6,6,0,0,1,6,6a6,6,0,0,1-6,6" transform="translate(1 20.555) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><path d="M0,0A5,5,0,0,1,5,5a5,5,0,0,1-5,5" transform="translate(17 20.555) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><g transform="translate(17 4.557)" fill="none" stroke="#000" stroke-width="2"><rect width="10" height="10" rx="5" stroke="none"/><rect x="1" y="1" width="8" height="8" rx="4" fill="none"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2 4)"><g transform="translate(554 -67.531)" stroke-miterlimit="10"><path d="M -540 90.531005859375 C -540.1371459960938 90.531005859375 -540.2698364257812 90.47766876220703 -540.3641357421875 90.38467407226562 L -551.0101928710938 79.92605590820312 C -552.2933349609375 78.66538238525391 -553 76.99039459228516 -553 75.20967864990234 C -553 73.42894744873047 -552.2933349609375 71.75396728515625 -551.0101928710938 70.4932861328125 C -549.7223510742188 69.22787475585938 -548.008544921875 68.531005859375 -546.1844482421875 68.531005859375 C -544.3604736328125 68.531005859375 -542.6467895507812 69.22787475585938 -541.3590087890625 70.49324798583984 L -540.7007446289062 71.13982391357422 L -539.9998779296875 71.82826232910156 L -539.2991333007812 71.13969421386719 L -538.6412353515625 70.49323272705078 C -537.3533325195312 69.22788238525391 -535.6395263671875 68.531005859375 -533.8155517578125 68.531005859375 C -531.9916381835938 68.531005859375 -530.2777709960938 69.22789764404297 -528.98974609375 70.49329376220703 C -527.7066650390625 71.75401306152344 -527 73.42900848388672 -527 75.20967864990234 C -527 76.99033355712891 -527.7066650390625 78.66533660888672 -528.9898071289062 79.92612457275391 L -539.63330078125 90.38322448730469 C -539.7289428710938 90.4771728515625 -539.862548828125 90.531005859375 -540 90.531005859375 Z" stroke="none"/><path d="M -546.1844482421875 69.531005859375 C -547.7447509765625 69.531005859375 -549.2096557617188 70.12605285644531 -550.309326171875 71.20661926269531 C -551.3995971679688 72.27774810791016 -552 73.69939422607422 -552 75.20967864990234 C -552 76.71994781494141 -551.3995971679688 78.14160919189453 -550.3093872070312 79.21269226074219 L -539.9994506835938 89.34107971191406 L -529.690673828125 79.21282958984375 C -528.6004028320312 78.14157867431641 -528 76.71989440917969 -528 75.20967864990234 C -528 73.69944763183594 -528.6004028320312 72.27777862548828 -529.6905517578125 71.20664215087891 C -530.7904663085938 70.1260986328125 -532.25537109375 69.531005859375 -533.8155517578125 69.531005859375 C -535.3757934570312 69.531005859375 -536.8406982421875 70.12607574462891 -537.9403686523438 71.20651245117188 L -539.999755859375 73.2301025390625 L -542.0598754882812 71.20652770996094 C -543.1594848632812 70.12605285644531 -544.6243286132812 69.531005859375 -546.1844482421875 69.531005859375 M -546.1844482421875 67.531005859375 C -544.0973510742188 67.531005859375 -542.1338500976562 68.32992553710938 -540.6581420898438 69.77995300292969 L -540 70.42641448974609 L -539.3421020507812 69.77995300292969 C -537.8662719726562 68.32992553710938 -535.9026489257812 67.531005859375 -533.8155517578125 67.531005859375 C -531.728271484375 67.531005859375 -529.764892578125 68.32992553710938 -528.2889404296875 69.77995300292969 C -526.813232421875 71.22992706298828 -526 73.15789794921875 -526 75.20967864990234 C -526 77.26029205322266 -526.813232421875 79.18941497802734 -528.2889404296875 80.63941955566406 L -538.9324951171875 91.0965576171875 C -539.2159423828125 91.37510681152344 -539.599853515625 91.531005859375 -540 91.531005859375 C -540.4002075195312 91.531005859375 -540.7840576171875 91.37510681152344 -541.06640625 91.0965576171875 L -551.7109985351562 80.63941955566406 C -553.1868286132812 79.18941497802734 -554 77.26142883300781 -554 75.20967864990234 C -554 73.1590576171875 -553.1868286132812 71.22992706298828 -551.7109985351562 69.77995300292969 C -550.2352905273438 68.32992553710938 -548.2716674804688 67.531005859375 -546.1844482421875 67.531005859375 Z" stroke="none" fill="#000"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2 4)"><g transform="translate(554 -67.531)" fill="none" stroke-miterlimit="10"><path d="M-533.816,67.531a7.837,7.837,0,0,0-5.527,2.249l-.658.646-.658-.646a7.836,7.836,0,0,0-5.526-2.249,7.836,7.836,0,0,0-5.527,2.249A7.563,7.563,0,0,0-554,75.21a7.561,7.561,0,0,0,2.289,5.43L-541.066,91.1a1.518,1.518,0,0,0,1.066.434,1.523,1.523,0,0,0,1.068-.434l10.644-10.457A7.563,7.563,0,0,0-526,75.21a7.561,7.561,0,0,0-2.289-5.43A7.837,7.837,0,0,0-533.816,67.531Z" stroke="none"/><path d="M -546.1844482421875 69.53099822998047 C -547.7447509765625 69.53099822998047 -549.2096557617188 70.12604522705078 -550.309326171875 71.20661163330078 C -551.3995971679688 72.27774047851562 -552 73.69938659667969 -552 75.20967102050781 C -552 76.71994781494141 -551.3995971679688 78.14160919189453 -550.3093872070312 79.21269989013672 L -539.9994506835938 89.34107971191406 L -529.690673828125 79.21282958984375 C -528.6004028320312 78.14157867431641 -528 76.71990203857422 -528 75.20967102050781 C -528 73.69944000244141 -528.6004028320312 72.27777099609375 -529.6905517578125 71.20663452148438 C -530.7904663085938 70.12609100341797 -532.25537109375 69.53099822998047 -533.8155517578125 69.53099822998047 C -535.375732421875 69.53099822998047 -536.8406982421875 70.12606811523438 -537.9403076171875 71.20649719238281 L -539.999755859375 73.23012542724609 L -542.0598754882812 71.20652770996094 C -543.1594848632812 70.12604522705078 -544.6243286132812 69.53099822998047 -546.1844482421875 69.53099822998047 M -546.1844482421875 67.53099822998047 C -544.0973510742188 67.53099822998047 -542.1338500976562 68.32992553710938 -540.6581420898438 69.77994537353516 L -540 70.42641448974609 L -539.3421020507812 69.77994537353516 C -537.8662719726562 68.32992553710938 -535.9026489257812 67.53099822998047 -533.8155517578125 67.53099822998047 C -531.728271484375 67.53099822998047 -529.764892578125 68.32992553710938 -528.2889404296875 69.77994537353516 C -526.813232421875 71.22991943359375 -526 73.15789794921875 -526 75.20967102050781 C -526 77.26028442382812 -526.813232421875 79.18941497802734 -528.2889404296875 80.63941955566406 L -538.9324951171875 91.0965576171875 C -539.2159423828125 91.37510681152344 -539.599853515625 91.53099822998047 -540 91.53099822998047 C -540.4002075195312 91.53099822998047 -540.7840576171875 91.37510681152344 -541.06640625 91.0965576171875 L -551.7109985351562 80.63941955566406 C -553.1868286132812 79.18941497802734 -554 77.26142120361328 -554 75.20967102050781 C -554 73.1590576171875 -553.1868286132812 71.22991943359375 -551.7109985351562 69.77994537353516 C -550.2352905273438 68.32992553710938 -548.2716674804688 67.53099822998047 -546.1844482421875 67.53099822998047 Z" stroke="none" fill="#000"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(3 6.334)"><path d="M.289,6.423,7.657,13.8,20.289,1.136,12.921-6.2Z" transform="translate(4.711 3.867)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><path d="M6.089,7.8l4.2,4.2-2.8,2.8h-2.8l-1.4-1.4V10.6Z" transform="translate(-0.289 4.868)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><path d="M2.289,11.8l-2,2,2,1,2-2Z" transform="translate(0.711 6.868)" stroke="#000" stroke-linejoin="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.333 2.753)"><g transform="translate(-0.333 0.247)" fill="rgba(0,0,0,0)" stroke-miterlimit="10"><path d="M 12.00049591064453 24.99928092956543 L 8.000125885009766 24.99920082092285 C 7.285126209259033 24.99825096130371 6.532956123352051 24.65635108947754 5.937786102294922 24.06119155883789 C 5.342746257781982 23.46615028381348 5.001126289367676 22.71442031860352 5.000506401062012 21.99874114990234 L 5.000506401062012 13.12650108337402 L 5.000506401062012 12.12650108337402 L 4.000506401062012 12.12650108337402 L 1.692896366119385 12.12650108337402 C 1.489395380020142 12.12586784362793 1.333836078643799 12.10609340667725 1.206862330436707 12.06429004669189 C 1.076960206031799 12.01883125305176 1.047551035881042 11.9750804901123 1.033336281776428 11.95394134521484 C 1.026206374168396 11.94211101531982 1.018476366996765 11.91622066497803 1.017916321754456 11.90355110168457 L 1.017956376075745 11.90009117126465 L 1.017986297607422 11.8985013961792 C 1.018145442008972 11.87161445617676 1.018571615219116 11.80046558380127 1.104555606842041 11.66526317596436 C 1.181066989898682 11.5475902557373 1.287948250770569 11.43204784393311 1.440686345100403 11.30186080932617 L 1.445816278457642 11.2974910736084 L 1.450886368751526 11.29305076599121 L 12.67558097839355 1.461541175842285 C 13.0303430557251 1.164495348930359 13.50092697143555 1.000647187232971 14.00169658660889 1.000000953674316 C 14.50133609771729 1.000648975372314 14.97334098815918 1.165639638900757 15.32876205444336 1.464666366577148 L 26.56596565246582 11.1698112487793 L 26.56844711303711 11.17196083068848 L 26.57094573974609 11.17409133911133 C 26.71883201599121 11.30013179779053 26.82921600341797 11.41964912414551 26.90824317932129 11.53934955596924 C 26.98307228088379 11.65753364562988 26.99323081970215 11.72660350799561 26.9936466217041 11.77368068695068 C 26.99377632141113 11.78885078430176 26.98535537719727 11.81601142883301 26.9786262512207 11.8265209197998 C 26.96637535095215 11.84482860565186 26.94707679748535 11.86847877502441 26.90006446838379 11.89411163330078 C 26.79821968078613 11.94753932952881 26.65578651428223 11.99692344665527 26.31521987915039 11.99959564208984 L 23.99426651000977 11.99690055847168 L 22.99230575561523 11.99574089050293 L 22.99310684204102 12.99770069122314 L 23.00030708312988 22.00040054321289 C 22.99968719482422 22.71437072753906 22.65798568725586 23.4660816192627 22.06282615661621 24.06111145019531 C 21.46747589111328 24.65632057189941 20.71504592895508 24.99825096130371 19.99847602844238 24.99920082092285 L 16.00120544433594 24.99920082092285 L 16.00119590759277 18.99990081787109 L 16.00119590759277 18.00035095214844 L 15.00164604187012 17.99990081787109 L 13.00094604492188 17.99900054931641 L 12.00049591064453 17.99855041503906 L 12.00049591064453 18.99900054931641 L 12.00049591064453 24.99928092956543 Z" stroke="none"/><path d="M 11.00049591064453 23.9992618560791 L 11.00049591064453 16.99810028076172 L 17.00119590759277 17.00080108642578 L 17.0012035369873 23.99920082092285 L 19.99713706970215 23.99920082092285 C 20.95109558105469 23.9979305267334 21.99948692321777 22.95051002502441 22.00030708312988 22.00120162963867 L 21.99150657653809 10.9945707321167 L 24.83696937561035 10.997878074646 L 14.68089008331299 2.226459264755249 C 14.5059871673584 2.081173181533813 14.26477146148682 2.000854253768921 14.00040626525879 2.000007390975952 C 13.73806762695312 2.00084662437439 13.49869155883789 2.079753160476685 13.32441520690918 2.22258996963501 L 3.15876579284668 11.12650108337402 L 6.000506401062012 11.12650108337402 L 6.000506401062012 21.99788093566895 C 6.001326560974121 22.95051002502441 7.049246311187744 23.9979305267334 8.00014591217041 23.99920082092285 L 11.00049591064453 23.9992618560791 M 13.00049591064453 25.99930000305176 L 8.000105857849121 25.99920082092285 C 5.946006298065186 25.99646186828613 4.002276420593262 24.05273056030273 4.000506401062012 21.99960136413574 L 4.000506401062012 13.12650108337402 L 1.692896366119385 13.12650108337402 C 1.374146342277527 13.12552070617676 1.117626309394836 13.08891105651855 0.8856063485145569 13.01130104064941 C 0.5822763442993164 12.90686130523682 0.3591363131999969 12.74348068237305 0.2034063190221786 12.51180076599121 C 0.08459632843732834 12.33624076843262 0.01528632547706366 12.10476112365723 0.01800632476806641 11.89260101318359 C 0.01954632624983788 11.63139057159424 0.09991632401943207 11.37998104095459 0.2636963129043579 11.12400054931641 C 0.3945363163948059 10.9218111038208 0.5624163150787354 10.73649120330811 0.7920063138008118 10.54080104827881 L 12.02399635314941 0.7029009461402893 C 12.55934619903564 0.2505709528923035 13.2612361907959 0.0009509552037343383 14.00040626525879 9.552002211421495e-07 C 14.73976612091064 0.0009509552037343383 15.44198608398438 0.2509009540081024 15.97769641876221 0.7038009762763977 L 27.21959686279297 10.41300106048584 C 27.44290542602539 10.60332107543945 27.6157169342041 10.79409122467041 27.74790573120117 10.99620056152344 C 27.9109058380127 11.25095081329346 27.99127578735352 11.50236129760742 27.99360656738281 11.76480102539062 C 27.99544715881348 11.98117065429688 27.92787551879883 12.20719051361084 27.80820655822754 12.38490104675293 C 27.69982719421387 12.54707050323486 27.55265617370605 12.67879104614258 27.37080574035645 12.77640056610107 C 27.08105659484863 12.9297513961792 26.76640701293945 12.99650096893311 26.31870651245117 12.99960136413574 L 23.99310684204102 12.99690055847168 L 24.00030708312988 21.99960136413574 C 23.99853706359863 24.05273056030273 22.05436706542969 25.99646186828613 19.99980545043945 25.99920082092285 L 15.00120639801025 25.99920082092285 L 15.00119590759277 18.99990081787109 L 13.00049591064453 18.99900054931641 L 13.00049591064453 25.99930000305176 Z" stroke="none" fill="#000"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(7.999 3.999)"><path d="M200.433,257.189c0-.572,1.967-1.785,3-2.889a10.728,10.728,0,0,0,3-7.222v-2.889h-18v2.889a10.723,10.723,0,0,0,3,7.222c1.033,1.1,3,2.317,3,2.889s-1.967,1.785-3,2.889a10.724,10.724,0,0,0-3,7.222v2.889h18V267.3a10.734,10.734,0,0,0-3-7.222C202.4,258.973,200.433,257.763,200.433,257.189Z" transform="translate(-189.433 -245.189)" fill="none" stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/><line x1="16" transform="translate(0.001 6)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><path d="M6,0C7.657,0,9,2.686,9,6s-1.343,6-3,6" transform="translate(2.001 30) rotate(-90)" stroke="#000" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.667 5.333)"><g transform="translate(27.333 0.666) rotate(90)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="20" height="28" rx="2" stroke="none"/><rect x="1" y="1" width="18" height="26" rx="1" fill="none"/></g><path d="M-550.534,88.088l13-13,9,9" transform="translate(554.867 -68.421)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><circle cx="2" cy="2" r="2" transform="translate(4.333 5.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-542.622,77.258l4,4,5-5" transform="translate(554.956 -65.592)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(3.2 3.2)"><circle cx="14" cy="14" r="14" transform="translate(-1.2 -1.199)"/><line y1="10" transform="translate(12.8 11.801)" fill="none" stroke="#fff" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y1="2" transform="translate(12.8 3.801)" fill="none" stroke="#fff" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.667 2.666)"><line y2="2" transform="translate(13.333 6.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y2="7" transform="translate(13.333 13.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><g transform="translate(-0.667 -0.666)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13" fill="none"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6 4.418)"><line x1="14" transform="translate(6 0.583)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="14" transform="translate(0 22.583)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="8" y2="22" transform="translate(6 0.582)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><path d="M15234.5,23850v-5l10.419-10.424a8,8,0,1,1,5.026,5.01l-1.218,1.242-.228.174h-2v2h-2l-1,1v2h-2v2l-2,2Z" transform="translate(-15231.5 -23821)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><circle cx="2.5" cy="2.5" r="2.5" transform="translate(20 7)"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2 2)"><g fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13" fill="none"/></g><line x2="24" transform="translate(2 9)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><line x2="24" transform="translate(2 19)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><path d="M0,5S6.5,0,13,0,26,5,26,5" transform="translate(8 26.999) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/><path d="M0,0S6.5,5,13,5,26,0,26,0" transform="translate(15 26.999) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 3.244)"><path d="M3.405,23.667,5.17,17.119a.282.282,0,0,1,.507-.081A3.125,3.125,0,1,0,6.9,12.508a.28.28,0,0,1-.4-.322l1.765-6.55,6.59,1.756a.281.281,0,0,0,.324-.4,3.084,3.084,0,0,1-.216-2.184,3.135,3.135,0,0,1,6.084,1.51,3.1,3.1,0,0,1-1.311,1.888.279.279,0,0,0,.082.5l6.588,1.756L21.545,28.5Z" transform="translate(-3.405 -2.744)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6.667 2.666)"><path d="M7564.333,18705.334a4.968,4.968,0,0,1-3.277-1.2,3.99,3.99,0,0,1-1.406-2.875l2-2v1.863a2.006,2.006,0,0,0,.728,1.5,3.084,3.084,0,0,0,3.92,0,2.032,2.032,0,0,0,.723-1.5v-3.605l.465-.559a18.957,18.957,0,0,0,2.718-4.15,12.184,12.184,0,0,0,.97-3.072l2.158-2.158,0,.1c0,.049,0,.1,0,.145a13.8,13.8,0,0,1-1.314,5.826,21.077,21.077,0,0,1-3,4.6v2.883a4.02,4.02,0,0,1-1.409,3.01A4.968,4.968,0,0,1,7564.333,18705.334Zm-6.948-10.3v0c-.272-.465-.518-.936-.732-1.4a13.785,13.785,0,0,1-1.319-5.816,8.21,8.21,0,0,1,2.653-6.02,9.4,9.4,0,0,1,12.664-.029l-1.416,1.416a7.4,7.4,0,0,0-9.882.074,6.219,6.219,0,0,0-2.019,4.559,11.622,11.622,0,0,0,1.136,4.977c.122.262.251.521.386.77l-1.469,1.467Z" transform="translate(-7555 -18679)"/><path d="M7568.333,18699.334h-6.756l2-2h4.756v2Z" transform="translate(-7555 -18679)"/><line y1="24" x2="24" transform="translate(-2.667 1.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6.667 2.667)"><g transform="translate(178.333 -66.166)" fill="none" stroke-miterlimit="10"><path d="M-160,74.988a8.232,8.232,0,0,0-2.653-6.018A9.255,9.255,0,0,0-169,66.5a9.256,9.256,0,0,0-6.347,2.47A8.232,8.232,0,0,0-178,74.988a13.682,13.682,0,0,0,1.321,5.817,21.257,21.257,0,0,0,2.994,4.584v2.9a4,4,0,0,0,1.407,3.007A4.96,4.96,0,0,0-169,92.5a4.96,4.96,0,0,0,3.278-1.2,4,4,0,0,0,1.407-3.007V85.411a21.054,21.054,0,0,0,3-4.6A13.746,13.746,0,0,0-160,74.988Z" stroke="none"/><path d="M -168.9999694824219 68.49997711181641 C -170.8851928710938 68.49997711181641 -172.6533660888672 69.18486785888672 -173.9798126220703 70.42948150634766 C -175.2834014892578 71.65084838867188 -176.0008392333984 73.26956939697266 -175.9999847412109 74.98954772949219 C -176.0009307861328 76.68714904785156 -175.6295776367188 78.31449127197266 -174.8650360107422 79.96385192871094 C -174.2469940185547 81.29582214355469 -173.3577728271484 82.65280914306641 -172.1465454101562 84.11238098144531 L -171.6856231689453 84.66780853271484 L -171.6856231689453 88.29554748535156 C -171.6863250732422 89.04930114746094 -171.2327423095703 89.55825042724609 -170.9588928222656 89.79753112792969 C -170.4427947998047 90.25052642822266 -169.7471008300781 90.50000762939453 -168.9999694824219 90.50000762939453 C -168.2528533935547 90.50000762939453 -167.5571746826172 90.25052642822266 -167.0376586914062 89.79454040527344 C -166.7672119140625 89.55824279785156 -166.3136138916016 89.04929351806641 -166.3143463134766 88.29367065429688 L -166.3143463134766 84.68759155273438 L -165.8515167236328 84.13153839111328 C -164.6382141113281 82.67391967773438 -163.7478332519531 81.31491088867188 -163.1298370361328 79.97756195068359 C -162.3686065673828 78.32862854003906 -161.9990234375 76.69703674316406 -161.9999542236328 74.98745727539062 C -161.9991149902344 73.26956939697266 -162.716552734375 71.65084838867188 -164.0212249755859 70.428466796875 C -165.3465881347656 69.18486785888672 -167.11474609375 68.49997711181641 -168.9999694824219 68.49997711181641 M -168.9999694824219 66.49997711181641 C -166.5305786132812 66.49997711181641 -164.2839508056641 67.43937683105469 -162.6527099609375 68.96999359130859 C -161.0214691162109 70.49835205078125 -159.9987945556641 72.63262176513672 -159.9999542236328 74.98844146728516 C -159.9987945556641 77.11251831054688 -160.4983062744141 79.0489501953125 -161.3139801025391 80.81582641601562 C -162.0834655761719 82.48098754882812 -163.1353302001953 83.99461364746094 -164.3143463134766 85.41104888916016 L -164.3143463134766 88.29367065429688 C -164.3132019042969 89.48403930664062 -164.8678283691406 90.55455780029297 -165.7217254638672 91.30063629150391 C -166.5756072998047 92.05011749267578 -167.7343444824219 92.50000762939453 -168.9999694824219 92.50000762939453 C -170.2655944824219 92.50000762939453 -171.4243469238281 92.05011749267578 -172.2782287597656 91.30063629150391 C -173.1321411132812 90.55455780029297 -173.6867370605469 89.48403930664062 -173.6856231689453 88.29367065429688 L -173.6856231689453 85.38957977294922 C -174.860107421875 83.97428131103516 -175.9097595214844 82.46401214599609 -176.6792449951172 80.80565643310547 C -177.4982452392578 79.03880310058594 -178.0011596679688 77.10459899902344 -177.9999847412109 74.98844146728516 C -178.0011596679688 72.63262176513672 -176.9784851074219 70.49835205078125 -175.3472442626953 68.96999359130859 C -173.7159881591797 67.43937683105469 -171.4693756103516 66.49997711181641 -168.9999694824219 66.49997711181641 Z" stroke="none" fill="#000"/></g><line x2="8" transform="translate(5.333 19.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><line x1="3" y2="4" transform="translate(9.333 10.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-172.261,76.4l3,4v4" transform="translate(178.594 -66.063)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 4)"><path d="M-606.212,80.532a6.344,6.344,0,0,0,8.79,1.248,6.17,6.17,0,0,0,.68-.579l3.767-3.71a6.115,6.115,0,0,0-.154-8.743,6.351,6.351,0,0,0-8.725,0l-2.16,2.114" transform="translate(615.212 -67.011)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-600,77.155a6.344,6.344,0,0,0-8.79-1.248,6.186,6.186,0,0,0-.68.579l-3.767,3.71a6.115,6.115,0,0,0,.155,8.743,6.351,6.351,0,0,0,8.725,0l2.148-2.114" transform="translate(615 -66.676)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.333 3.999)"><line y2="4" transform="translate(10.667 15)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(-1.333 8)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="24" height="18" rx="3" stroke="none"/><rect x="1" y="1" width="22" height="16" rx="2" fill="none"/></g><path d="M259.1,13V9.536A4.785,4.785,0,0,1,264.1,5h0a4.784,4.784,0,0,1,5,4.536V13" transform="translate(-253.428 -5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 4)"><path d="M763.833,4.5h5.333a3.208,3.208,0,0,1,2.667,2.667V25.833a3.213,3.213,0,0,1-2.667,2.667h-5.333" transform="translate(-747.833 -4.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M757.444,21.611l6-6-6-6" transform="translate(-745.444 -3.612)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="16" transform="translate(0 12)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 4)"><path d="M771.833,4.5H766.5a3.208,3.208,0,0,0-2.667,2.667V25.833A3.213,3.213,0,0,0,766.5,28.5h5.333" transform="translate(-763.833 -4.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M757.444,21.611l6-6-6-6" transform="translate(-739.444 -3.612)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="16" transform="translate(6 12)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2 7)"><g transform="translate(0 -1)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"><rect width="28" height="20" rx="2" stroke="none"/><rect x="1" y="1" width="26" height="18" rx="1" fill="none"/></g><path d="M21.05,6.008v4h4" transform="translate(-16.05 3.992)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M0,0V4H4" transform="translate(23.001 8) rotate(180)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5 12)"><line x2="18" transform="translate(0 8)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="14" transform="translate(0 4)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="22" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.333 5.334)"><g transform="translate(-0.333 15.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"><circle cx="4" cy="4" r="4" stroke="none"/><circle cx="4" cy="4" r="3" fill="none"/></g><g transform="translate(13.666 15.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"><circle cx="4" cy="4" r="4" stroke="none"/><circle cx="4" cy="4" r="3" fill="none"/></g><path d="M81.125,8.588l-4-4-4,4" transform="translate(-66.458 -5.588)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y2="11" transform="translate(10.667 0.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M75.091,21.977l5-5,5,5" transform="translate(-69.424 -5.31)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(3.2 6.667)"><g transform="translate(-0.2 10.334)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"><rect width="11" height="9" rx="1" stroke="none"/><rect x="1" y="1" width="9" height="7" fill="none"/></g><path d="M24.05,10.008v-4h-6" transform="translate(0.75 -5.676)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M4,6V0H0" transform="translate(24.8 14.333) rotate(90)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M0,0V6H4" transform="translate(6.8 0.334) rotate(90)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 4)"><path d="M68.888,22.487a2.717,2.717,0,0,1-2.889-3v-12a2.717,2.717,0,0,1,2.889-3H89.111a2.717,2.717,0,0,1,2.889,3v12a2.717,2.717,0,0,1-2.889,3" transform="translate(-67 -5.486)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(0 2)"><path d="M0,0A3,3,0,0,1,3,3,3,3,0,0,1,0,6" transform="translate(9 24) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/><g transform="translate(-13 -0.68)" stroke-miterlimit="10"><path d="M 25.00000381469727 19.67900276184082 C 24.46724319458008 19.67900276184082 23.96476364135742 19.47050285339355 23.58513450622559 19.09192276000977 C 23.20850372314453 18.7142333984375 23.00000381469727 18.21175193786621 23.00000381469727 17.67900276184082 C 23.00000381469727 17.14527320861816 23.20850372314453 16.64226341247559 23.58708381652832 16.26263236999512 C 23.96379470825195 15.886962890625 24.46627426147461 15.67900276184082 25.00000381469727 15.67900276184082 C 25.53373336791992 15.67900276184082 26.03620338439941 15.886962890625 26.41485404968262 16.26457214355469 C 26.7918529510498 16.64157295227051 27.00000381469727 17.14423370361328 27.00000381469727 17.67900276184082 C 27.00000381469727 18.21279335021973 26.79184341430664 18.71493339538574 26.41388320922852 19.09290313720703 C 26.03523445129395 19.47051239013672 25.53276443481445 19.67900276184082 25.00000381469727 19.67900276184082 Z" stroke="none"/><path d="M 25.00000381469727 16.67900276184082 C 24.65928649902344 16.67900276184082 24.42787170410156 16.8371467590332 24.29323959350586 16.97069931030273 C 24.18279647827148 17.08208084106445 24.00000381469727 17.32065200805664 24.00000381469727 17.67900276184082 C 24.00000381469727 18.01902770996094 24.15946578979492 18.25118827819824 24.29384994506836 18.38641357421875 C 24.42925453186035 18.52052688598633 24.66101837158203 18.67900276184082 25.00000381469727 18.67900276184082 C 25.34115409851074 18.67900276184082 25.57370376586914 18.51850318908691 25.70676422119141 18.38580322265625 C 25.84054374694824 18.25202369689941 26.00000381469727 18.02081298828125 26.00000381469727 17.67900276184082 C 26.00000381469727 17.33595275878906 25.84054374694824 17.10448265075684 25.7087230682373 16.97265243530273 C 25.57439422607422 16.83869361877441 25.34239387512207 16.67900276184082 25.00000381469727 16.67900276184082 M 25.00000381469727 14.67900276184082 C 25.82950401306152 14.67900276184082 26.57650375366211 15.01350212097168 27.12099456787109 15.55650329589844 C 27.66549301147461 16.10100364685059 28.00000381469727 16.84950256347656 28.00000381469727 17.67900276184082 C 28.00000381469727 18.50850296020508 27.66549301147461 19.2554931640625 27.12099456787109 19.80000305175781 C 26.57650375366211 20.34300231933594 25.82950401306152 20.67900276184082 25.00000381469727 20.67900276184082 C 24.17050361633301 20.67900276184082 23.42350387573242 20.34300231933594 22.87900352478027 19.80000305175781 C 22.33600425720215 19.2554931640625 22.00000381469727 18.50850296020508 22.00000381469727 17.67900276184082 C 22.00000381469727 16.84950256347656 22.33600425720215 16.10100364685059 22.87900352478027 15.55650329589844 C 23.42350387573242 15.01350212097168 24.17050361633301 14.67900276184082 25.00000381469727 14.67900276184082 Z" stroke="none" fill="#000"/></g></g><g transform="translate(-5 -11)"><path d="M0,0A3,3,0,0,1,3,3,3,3,0,0,1,0,6" transform="translate(9 24) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/><g transform="translate(-13 -0.68)" fill="none" stroke-miterlimit="10"><path d="M22,17.679a3,3,0,1,1,.879,2.121A2.994,2.994,0,0,1,22,17.679Z" stroke="none"/><path d="M 25.00000381469727 16.67900276184082 C 24.65928649902344 16.67900276184082 24.42787170410156 16.8371467590332 24.29323959350586 16.97069931030273 C 24.18279647827148 17.08208084106445 24.00000381469727 17.32065200805664 24.00000381469727 17.67900276184082 C 24.00000381469727 18.01902770996094 24.15946578979492 18.25118827819824 24.29384994506836 18.38641357421875 C 24.42925453186035 18.52052688598633 24.66101837158203 18.67900276184082 25.00000381469727 18.67900276184082 C 25.34115409851074 18.67900276184082 25.57370376586914 18.51850318908691 25.70676422119141 18.38580322265625 C 25.84054374694824 18.25202369689941 26.00000381469727 18.02081298828125 26.00000381469727 17.67900276184082 C 26.00000381469727 17.33595275878906 25.84054374694824 17.10448265075684 25.7087230682373 16.97265243530273 C 25.57439422607422 16.83869361877441 25.34239387512207 16.67900276184082 25.00000381469727 16.67900276184082 M 25.00000381469727 14.67900276184082 C 25.82950401306152 14.67900276184082 26.57650375366211 15.01350212097168 27.12099456787109 15.55650329589844 C 27.66549301147461 16.10100364685059 28.00000381469727 16.84950256347656 28.00000381469727 17.67900276184082 C 28.00000381469727 18.50850296020508 27.66549301147461 19.2554931640625 27.12099456787109 19.80000305175781 C 26.57650375366211 20.34300231933594 25.82950401306152 20.67900276184082 25.00000381469727 20.67900276184082 C 24.17050361633301 20.67900276184082 23.42350387573242 20.34300231933594 22.87900352478027 19.80000305175781 C 22.33600425720215 19.2554931640625 22.00000381469727 18.50850296020508 22.00000381469727 17.67900276184082 C 22.00000381469727 16.84950256347656 22.33600425720215 16.10100364685059 22.87900352478027 15.55650329589844 C 23.42350387573242 15.01350212097168 24.17050361633301 14.67900276184082 25.00000381469727 14.67900276184082 Z" stroke="none" fill="#000"/></g></g><g transform="translate(5 -11)"><path d="M0,0A3,3,0,0,1,3,3,3,3,0,0,1,0,6" transform="translate(9 24) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/><g transform="translate(-13 -0.68)" fill="none" stroke-miterlimit="10"><path d="M22,17.679a3,3,0,1,1,.879,2.121A2.994,2.994,0,0,1,22,17.679Z" stroke="none"/><path d="M 25.00000381469727 16.67900276184082 C 24.65928649902344 16.67900276184082 24.42787170410156 16.8371467590332 24.29323959350586 16.97069931030273 C 24.18279647827148 17.08208084106445 24.00000381469727 17.32065200805664 24.00000381469727 17.67900276184082 C 24.00000381469727 18.01902770996094 24.15946578979492 18.25118827819824 24.29384994506836 18.38641357421875 C 24.42925453186035 18.52052688598633 24.66101837158203 18.67900276184082 25.00000381469727 18.67900276184082 C 25.34115409851074 18.67900276184082 25.57370376586914 18.51850318908691 25.70676422119141 18.38580322265625 C 25.84054374694824 18.25202369689941 26.00000381469727 18.02081298828125 26.00000381469727 17.67900276184082 C 26.00000381469727 17.33595275878906 25.84054374694824 17.10448265075684 25.7087230682373 16.97265243530273 C 25.57439422607422 16.83869361877441 25.34239387512207 16.67900276184082 25.00000381469727 16.67900276184082 M 25.00000381469727 14.67900276184082 C 25.82950401306152 14.67900276184082 26.57650375366211 15.01350212097168 27.12099456787109 15.55650329589844 C 27.66549301147461 16.10100364685059 28.00000381469727 16.84950256347656 28.00000381469727 17.67900276184082 C 28.00000381469727 18.50850296020508 27.66549301147461 19.2554931640625 27.12099456787109 19.80000305175781 C 26.57650375366211 20.34300231933594 25.82950401306152 20.67900276184082 25.00000381469727 20.67900276184082 C 24.17050361633301 20.67900276184082 23.42350387573242 20.34300231933594 22.87900352478027 19.80000305175781 C 22.33600425720215 19.2554931640625 22.00000381469727 18.50850296020508 22.00000381469727 17.67900276184082 C 22.00000381469727 16.84950256347656 22.33600425720215 16.10100364685059 22.87900352478027 15.55650329589844 C 23.42350387573242 15.01350212097168 24.17050361633301 14.67900276184082 25.00000381469727 14.67900276184082 Z" stroke="none" fill="#000"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(31.667 13.867) rotate(90)"><circle cx="3" cy="3" r="3" transform="translate(-0.867 3.666)"/><circle cx="3" cy="3" r="3" transform="translate(-0.867 12.666)"/><circle cx="3" cy="3" r="3" transform="translate(-0.867 21.667)"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(13.333 5.333)"><circle cx="3" cy="3" r="3" transform="translate(-0.333 -1.334)"/><circle cx="3" cy="3" r="3" transform="translate(-0.333 7.666)"/><circle cx="3" cy="3" r="3" transform="translate(-0.333 16.666)"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 6.666)"><path d="M15,14.334l-5,.055V27.334c0,1.879.845,3,2.5,3s2.5-1.121,2.5-3v-19H34v19a2.94,2.94,0,0,1-3,3H13" transform="translate(-10 -9)" fill="none" stroke="#000" stroke-width="2"/><line x2="5" transform="translate(10 15.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="9" transform="translate(10 5.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="9" transform="translate(10 10.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></g></svg>