@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.
- package/README.md +32 -0
- package/dist/DesignSystem.d.ts +67 -0
- package/dist/components/VvAccordion/VvAccordion.d.ts +32 -0
- package/dist/components/VvAccordion/VvAccordion.vue.d.ts +104 -0
- package/dist/components/VvAccordion/useAccordionProps.d.ts +16 -0
- package/dist/components/VvAccordion/vv-accordion.es.js +262 -0
- package/dist/components/VvAccordion/vv-accordion.umd.js +1 -0
- package/dist/components/VvAccordionGroup/VvAccordionGroup.d.ts +50 -0
- package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +170 -0
- package/dist/components/VvAccordionGroup/vv-accordion-group.es.js +315 -0
- package/dist/components/VvAccordionGroup/vv-accordion-group.umd.js +1 -0
- package/dist/components/VvBadge/VvBadge.d.ts +4 -0
- package/dist/components/VvBadge/VvBadge.vue.d.ts +56 -0
- package/dist/components/VvBadge/vv-badge.es.js +18 -0
- package/dist/components/VvBadge/vv-badge.umd.js +1 -0
- package/dist/components/VvBreadcrumb/VvBreadcrumb.d.ts +26 -0
- package/dist/components/VvBreadcrumb/VvBreadcrumb.vue.d.ts +118 -0
- package/dist/components/VvBreadcrumb/vv-breadcrumb.es.js +206 -0
- package/dist/components/VvBreadcrumb/vv-breadcrumb.umd.js +1 -0
- package/dist/components/VvButton/VvButton.d.ts +115 -0
- package/dist/components/VvButton/VvButton.vue.d.ts +228 -0
- package/dist/components/VvButton/useButtonGroupProps.d.ts +23 -0
- package/dist/components/VvButton/vv-button.es.js +424 -0
- package/dist/components/VvButton/vv-button.umd.js +1 -0
- package/dist/components/VvButtonGroup/VvButtonGroup.d.ts +57 -0
- package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +210 -0
- package/dist/components/VvButtonGroup/vv-button-group.es.js +210 -0
- package/dist/components/VvButtonGroup/vv-button-group.umd.js +1 -0
- package/dist/components/VvCard/VvCard.d.ts +4 -0
- package/dist/components/VvCard/VvCard.vue.d.ts +63 -0
- package/dist/components/VvCard/vv-card.es.js +188 -0
- package/dist/components/VvCard/vv-card.umd.js +1 -0
- package/dist/components/VvCheck/VvCheck.d.ts +47 -0
- package/dist/components/VvCheck/VvCheck.vue.d.ts +165 -0
- package/dist/components/VvCheck/useCheckProps.d.ts +16 -0
- package/dist/components/VvCheck/vv-check.es.js +321 -0
- package/dist/components/VvCheck/vv-check.umd.js +1 -0
- package/dist/components/VvCheckGroup/VvCheckGroup.d.ts +65 -0
- package/dist/components/VvCheckGroup/VvCheckGroup.vue.d.ts +272 -0
- package/dist/components/VvCheckGroup/vv-check-group.es.js +434 -0
- package/dist/components/VvCheckGroup/vv-check-group.umd.js +2 -0
- package/dist/components/VvDialog/VvDialog.d.ts +22 -0
- package/dist/components/VvDialog/VvDialog.vue.d.ts +153 -0
- package/dist/components/VvDialog/constants.d.ts +5 -0
- package/dist/components/VvDialog/vv-dialog.es.js +315 -0
- package/dist/components/VvDialog/vv-dialog.umd.js +1 -0
- package/dist/components/VvDropdown/VvDropdown.d.ts +52 -0
- package/dist/components/VvDropdown/VvDropdown.vue.d.ts +166 -0
- package/dist/components/VvDropdown/vv-dropdown.es.js +236 -0
- package/dist/components/VvDropdown/vv-dropdown.umd.js +1 -0
- package/dist/components/VvIcon/VvIcon.d.ts +92 -0
- package/dist/components/VvIcon/VvIcon.vue.d.ts +183 -0
- package/dist/components/VvIcon/vv-icon.es.js +229 -0
- package/dist/components/VvIcon/vv-icon.umd.js +1 -0
- package/dist/components/VvInputText/VvInputText.d.ts +59 -0
- package/dist/components/VvInputText/VvInputText.vue.d.ts +292 -0
- package/dist/components/VvInputText/constants.d.ts +55 -0
- package/dist/components/VvInputText/useInputNumber.d.ts +16 -0
- package/dist/components/VvInputText/useInputPassword.d.ts +16 -0
- package/dist/components/VvInputText/vv-input-text.es.js +596 -0
- package/dist/components/VvInputText/vv-input-text.umd.js +2 -0
- package/dist/components/VvNativeSelect/VvNativeSelect.d.ts +70 -0
- package/dist/components/VvNativeSelect/VvNativeSelect.vue.d.ts +228 -0
- package/dist/components/VvNativeSelect/vv-native-select.es.js +395 -0
- package/dist/components/VvNativeSelect/vv-native-select.umd.js +2 -0
- package/dist/components/VvProgress/VvProgress.d.ts +29 -0
- package/dist/components/VvProgress/VvProgress.vue.d.ts +117 -0
- package/dist/components/VvProgress/vv-progress.es.js +185 -0
- package/dist/components/VvProgress/vv-progress.umd.js +1 -0
- package/dist/components/VvRadio/VvRadio.d.ts +22 -0
- package/dist/components/VvRadio/VvRadio.vue.d.ts +136 -0
- package/dist/components/VvRadio/useRadioProps.d.ts +15 -0
- package/dist/components/VvRadio/vv-radio.es.js +309 -0
- package/dist/components/VvRadio/vv-radio.umd.js +1 -0
- package/dist/components/VvRadioGroup/VvRadioGroup.d.ts +54 -0
- package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +264 -0
- package/dist/components/VvRadioGroup/vv-radio-group.es.js +423 -0
- package/dist/components/VvRadioGroup/vv-radio-group.umd.js +2 -0
- package/dist/components/VvSelect/VvSelect.d.ts +99 -0
- package/dist/components/VvSelect/VvSelect.vue.d.ts +294 -0
- package/dist/components/VvSelect/vv-select.es.js +427 -0
- package/dist/components/VvSelect/vv-select.umd.js +2 -0
- package/dist/components/VvTextarea/VvTextarea.d.ts +67 -0
- package/dist/components/VvTextarea/VvTextarea.vue.d.ts +314 -0
- package/dist/components/VvTextarea/constants.d.ts +19 -0
- package/dist/components/VvTextarea/vv-textarea.es.js +472 -0
- package/dist/components/VvTextarea/vv-textarea.umd.js +2 -0
- package/dist/components/common/HintSlot.d.ts +25 -0
- package/dist/components/index.d.ts +12 -0
- package/dist/composables/focus/useComponentFocus.d.ts +7 -0
- package/dist/composables/group/types/IAccordionGroupState.d.ts +10 -0
- package/dist/composables/group/types/IButtonGroupState.d.ts +19 -0
- package/dist/composables/group/types/IGroupState.d.ts +11 -0
- package/dist/composables/group/types/IInputGroup.d.ts +11 -0
- package/dist/composables/group/useInjectedGroupState.d.ts +10 -0
- package/dist/composables/group/useProvideGroupState.d.ts +6 -0
- package/dist/composables/icons/useComponentIcons.d.ts +20 -0
- package/dist/composables/options/useOptions.d.ts +5 -0
- package/dist/composables/useModifiers.d.ts +9 -0
- package/dist/constants.d.ts +4 -0
- package/dist/icons.es.js +1885 -0
- package/dist/icons.umd.js +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/props/index.d.ts +50 -0
- package/dist/stories/Icon/IconList.vue.d.ts +44 -0
- package/dist/ui-vue.es.js +2985 -0
- package/dist/ui-vue.umd.js +2 -0
- package/dist/utils/ObjectUtilities.d.ts +96 -0
- package/package.json +187 -0
- package/src/DesignSystem.ts +115 -0
- package/src/assets/icons/detailed/add-circle.svg +1 -0
- package/src/assets/icons/detailed/add.svg +1 -0
- package/src/assets/icons/detailed/align-center.svg +1 -0
- package/src/assets/icons/detailed/align-justify.svg +1 -0
- package/src/assets/icons/detailed/align-left.svg +1 -0
- package/src/assets/icons/detailed/align-right.svg +1 -0
- package/src/assets/icons/detailed/analysis-2.svg +1 -0
- package/src/assets/icons/detailed/analysis-3.svg +1 -0
- package/src/assets/icons/detailed/analysis.svg +1 -0
- package/src/assets/icons/detailed/apple.svg +1 -0
- package/src/assets/icons/detailed/arrow-down.svg +1 -0
- package/src/assets/icons/detailed/arrow-left.svg +1 -0
- package/src/assets/icons/detailed/arrow-right.svg +1 -0
- package/src/assets/icons/detailed/arrow-up.svg +1 -0
- package/src/assets/icons/detailed/attachment.svg +1 -0
- package/src/assets/icons/detailed/back-to-front.svg +1 -0
- package/src/assets/icons/detailed/bell-active.svg +1 -0
- package/src/assets/icons/detailed/bell.svg +1 -0
- package/src/assets/icons/detailed/bold.svg +1 -0
- package/src/assets/icons/detailed/bookmark-active.svg +1 -0
- package/src/assets/icons/detailed/bookmark.svg +1 -0
- package/src/assets/icons/detailed/building.svg +1 -0
- package/src/assets/icons/detailed/bullet-list.svg +1 -0
- package/src/assets/icons/detailed/calendar.svg +1 -0
- package/src/assets/icons/detailed/camera-off.svg +1 -0
- package/src/assets/icons/detailed/camera-on.svg +1 -0
- package/src/assets/icons/detailed/catalog.svg +1 -0
- package/src/assets/icons/detailed/certificate.svg +1 -0
- package/src/assets/icons/detailed/chat.svg +1 -0
- package/src/assets/icons/detailed/check-badge.svg +1 -0
- package/src/assets/icons/detailed/check-circle.svg +1 -0
- package/src/assets/icons/detailed/check.svg +1 -0
- package/src/assets/icons/detailed/checkbox.svg +1 -0
- package/src/assets/icons/detailed/chevron-down-circle.svg +1 -0
- package/src/assets/icons/detailed/chevron-down.svg +1 -0
- package/src/assets/icons/detailed/chevron-left-circle.svg +1 -0
- package/src/assets/icons/detailed/chevron-left.svg +1 -0
- package/src/assets/icons/detailed/chevron-right-circle.svg +1 -0
- package/src/assets/icons/detailed/chevron-up-circle.svg +1 -0
- package/src/assets/icons/detailed/chevron-up.svg +1 -0
- package/src/assets/icons/detailed/classroom.svg +1 -0
- package/src/assets/icons/detailed/clear-field.svg +1 -0
- package/src/assets/icons/detailed/clear-style.svg +1 -0
- package/src/assets/icons/detailed/close-circle.svg +1 -0
- package/src/assets/icons/detailed/close-loader.svg +1 -0
- package/src/assets/icons/detailed/close.svg +1 -0
- package/src/assets/icons/detailed/coffee.svg +1 -0
- package/src/assets/icons/detailed/color.svg +1 -0
- package/src/assets/icons/detailed/contact-us.svg +1 -0
- package/src/assets/icons/detailed/copy.svg +1 -0
- package/src/assets/icons/detailed/courses.svg +1 -0
- package/src/assets/icons/detailed/dashboard.svg +1 -0
- package/src/assets/icons/detailed/download.svg +1 -0
- package/src/assets/icons/detailed/drag.svg +1 -0
- package/src/assets/icons/detailed/duplicate.svg +1 -0
- package/src/assets/icons/detailed/edit.svg +1 -0
- package/src/assets/icons/detailed/elearning.svg +1 -0
- package/src/assets/icons/detailed/email.svg +1 -0
- package/src/assets/icons/detailed/error-2.svg +1 -0
- package/src/assets/icons/detailed/error.svg +1 -0
- package/src/assets/icons/detailed/exercise.svg +1 -0
- package/src/assets/icons/detailed/external-link.svg +1 -0
- package/src/assets/icons/detailed/extract.svg +1 -0
- package/src/assets/icons/detailed/eye-off.svg +1 -0
- package/src/assets/icons/detailed/eye-on.svg +1 -0
- package/src/assets/icons/detailed/fail.svg +1 -0
- package/src/assets/icons/detailed/fast-back.svg +1 -0
- package/src/assets/icons/detailed/fast-forward.svg +1 -0
- package/src/assets/icons/detailed/file-add.svg +1 -0
- package/src/assets/icons/detailed/file-duplicate.svg +1 -0
- package/src/assets/icons/detailed/file-remove.svg +1 -0
- package/src/assets/icons/detailed/file-required.svg +1 -0
- package/src/assets/icons/detailed/file.svg +1 -0
- package/src/assets/icons/detailed/filter-2.svg +1 -0
- package/src/assets/icons/detailed/filter-active.svg +1 -0
- package/src/assets/icons/detailed/filter.svg +1 -0
- package/src/assets/icons/detailed/flag.svg +1 -0
- package/src/assets/icons/detailed/folder.svg +1 -0
- package/src/assets/icons/detailed/full-width.svg +1 -0
- package/src/assets/icons/detailed/go-to-back.svg +1 -0
- package/src/assets/icons/detailed/grid.svg +1 -0
- package/src/assets/icons/detailed/group-add.svg +1 -0
- package/src/assets/icons/detailed/group.svg +1 -0
- package/src/assets/icons/detailed/heart-active.svg +1 -0
- package/src/assets/icons/detailed/heart.svg +1 -0
- package/src/assets/icons/detailed/highlighter.svg +1 -0
- package/src/assets/icons/detailed/home.svg +1 -0
- package/src/assets/icons/detailed/hourglass.svg +1 -0
- package/src/assets/icons/detailed/image.svg +1 -0
- package/src/assets/icons/detailed/info-badge.svg +1 -0
- package/src/assets/icons/detailed/information.svg +1 -0
- package/src/assets/icons/detailed/italic.svg +1 -0
- package/src/assets/icons/detailed/key.svg +1 -0
- package/src/assets/icons/detailed/language.svg +1 -0
- package/src/assets/icons/detailed/learning-path.svg +1 -0
- package/src/assets/icons/detailed/light-off.svg +1 -0
- package/src/assets/icons/detailed/light-on.svg +1 -0
- package/src/assets/icons/detailed/link.svg +1 -0
- package/src/assets/icons/detailed/lock.svg +1 -0
- package/src/assets/icons/detailed/login.svg +1 -0
- package/src/assets/icons/detailed/logout.svg +1 -0
- package/src/assets/icons/detailed/maximaze.svg +1 -0
- package/src/assets/icons/detailed/menu.svg +1 -0
- package/src/assets/icons/detailed/merge.svg +1 -0
- package/src/assets/icons/detailed/minimize.svg +1 -0
- package/src/assets/icons/detailed/mixed-class.svg +1 -0
- package/src/assets/icons/detailed/more-horizontal.svg +1 -0
- package/src/assets/icons/detailed/more-vertical.svg +1 -0
- package/src/assets/icons/detailed/news.svg +1 -0
- package/src/assets/icons/detailed/no-prerequisites.svg +1 -0
- package/src/assets/icons/detailed/notes.svg +1 -0
- package/src/assets/icons/detailed/number-code.svg +1 -0
- package/src/assets/icons/detailed/numbered-list.svg +1 -0
- package/src/assets/icons/detailed/on-site.svg +1 -0
- package/src/assets/icons/detailed/order-down.svg +1 -0
- package/src/assets/icons/detailed/order-up.svg +1 -0
- package/src/assets/icons/detailed/paste.svg +1 -0
- package/src/assets/icons/detailed/pausa.svg +1 -0
- package/src/assets/icons/detailed/pdf.svg +1 -0
- package/src/assets/icons/detailed/phone.svg +1 -0
- package/src/assets/icons/detailed/pin-map.svg +1 -0
- package/src/assets/icons/detailed/pin.svg +1 -0
- package/src/assets/icons/detailed/pizza.svg +1 -0
- package/src/assets/icons/detailed/play.svg +1 -0
- package/src/assets/icons/detailed/plug-in.svg +1 -0
- package/src/assets/icons/detailed/pointer.svg +1 -0
- package/src/assets/icons/detailed/printer.svg +1 -0
- package/src/assets/icons/detailed/profile-add.svg +1 -0
- package/src/assets/icons/detailed/profile.svg +1 -0
- package/src/assets/icons/detailed/push-pin-off.svg +1 -0
- package/src/assets/icons/detailed/push-pin-on.svg +1 -0
- package/src/assets/icons/detailed/qrcode.svg +1 -0
- package/src/assets/icons/detailed/question-badge.svg +1 -0
- package/src/assets/icons/detailed/radio.svg +1 -0
- package/src/assets/icons/detailed/redo.svg +1 -0
- package/src/assets/icons/detailed/relations.svg +1 -0
- package/src/assets/icons/detailed/reload.svg +1 -0
- package/src/assets/icons/detailed/remove-circle.svg +1 -0
- package/src/assets/icons/detailed/remove.svg +1 -0
- package/src/assets/icons/detailed/reorder.svg +1 -0
- package/src/assets/icons/detailed/repeat.svg +1 -0
- package/src/assets/icons/detailed/repository.svg +1 -0
- package/src/assets/icons/detailed/request-form.svg +1 -0
- package/src/assets/icons/detailed/resize-100%.svg +1 -0
- package/src/assets/icons/detailed/resize-height.svg +1 -0
- package/src/assets/icons/detailed/resize-width.svg +1 -0
- package/src/assets/icons/detailed/search.svg +1 -0
- package/src/assets/icons/detailed/sequential-prerequisites.svg +1 -0
- package/src/assets/icons/detailed/settings.svg +1 -0
- package/src/assets/icons/detailed/share.svg +1 -0
- package/src/assets/icons/detailed/sketch.svg +1 -0
- package/src/assets/icons/detailed/skills.svg +1 -0
- package/src/assets/icons/detailed/skip-back.svg +1 -0
- package/src/assets/icons/detailed/skip-forward.svg +1 -0
- package/src/assets/icons/detailed/sms.svg +1 -0
- package/src/assets/icons/detailed/sso-access.svg +1 -0
- package/src/assets/icons/detailed/star-active.svg +1 -0
- package/src/assets/icons/detailed/star.svg +1 -0
- package/src/assets/icons/detailed/success.svg +1 -0
- package/src/assets/icons/detailed/sun.svg +1 -0
- package/src/assets/icons/detailed/sunrise.svg +1 -0
- package/src/assets/icons/detailed/support.svg +1 -0
- package/src/assets/icons/detailed/survey.svg +1 -0
- package/src/assets/icons/detailed/table.svg +1 -0
- package/src/assets/icons/detailed/tematic-channels.svg +1 -0
- package/src/assets/icons/detailed/test.svg +1 -0
- package/src/assets/icons/detailed/text-body.svg +1 -0
- package/src/assets/icons/detailed/text-edit.svg +1 -0
- package/src/assets/icons/detailed/text-style.svg +1 -0
- package/src/assets/icons/detailed/time.svg +1 -0
- package/src/assets/icons/detailed/toilet-piper.svg +1 -0
- package/src/assets/icons/detailed/training-points.svg +1 -0
- package/src/assets/icons/detailed/trash.svg +1 -0
- package/src/assets/icons/detailed/underline.svg +1 -0
- package/src/assets/icons/detailed/undo.svg +1 -0
- package/src/assets/icons/detailed/unlock.svg +1 -0
- package/src/assets/icons/detailed/upload.svg +1 -0
- package/src/assets/icons/detailed/user-add.svg +1 -0
- package/src/assets/icons/detailed/user-badge.svg +1 -0
- package/src/assets/icons/detailed/user.svg +1 -0
- package/src/assets/icons/detailed/video-off.svg +1 -0
- package/src/assets/icons/detailed/video-on.svg +1 -0
- package/src/assets/icons/detailed/video-rec.svg +1 -0
- package/src/assets/icons/detailed/view-card.svg +1 -0
- package/src/assets/icons/detailed/view-list.svg +1 -0
- package/src/assets/icons/detailed/view.svg +1 -0
- package/src/assets/icons/detailed/voice-off.svg +1 -0
- package/src/assets/icons/detailed/voice-on.svg +1 -0
- package/src/assets/icons/detailed/volume-down.svg +1 -0
- package/src/assets/icons/detailed/volume-off.svg +1 -0
- package/src/assets/icons/detailed/volume-up.svg +1 -0
- package/src/assets/icons/detailed/warning.svg +1 -0
- package/src/assets/icons/detailed/webinar.svg +1 -0
- package/src/assets/icons/detailed/whiteboard.svg +1 -0
- package/src/assets/icons/detailed/wine.svg +1 -0
- package/src/assets/icons/detailed/zip.svg +1 -0
- package/src/assets/icons/detailed/zoom-in.svg +1 -0
- package/src/assets/icons/detailed/zoom-out.svg +1 -0
- package/src/assets/icons/detailed.json +1 -0
- package/src/assets/icons/index.js +7 -0
- package/src/assets/icons/normal/add-circle.svg +1 -0
- package/src/assets/icons/normal/add.svg +1 -0
- package/src/assets/icons/normal/align-center.svg +1 -0
- package/src/assets/icons/normal/align-justify.svg +1 -0
- package/src/assets/icons/normal/align-left.svg +1 -0
- package/src/assets/icons/normal/align-right.svg +1 -0
- package/src/assets/icons/normal/analysis-2.svg +1 -0
- package/src/assets/icons/normal/analysis-3.svg +1 -0
- package/src/assets/icons/normal/analysis.svg +1 -0
- package/src/assets/icons/normal/apple.svg +1 -0
- package/src/assets/icons/normal/arrow-down.svg +1 -0
- package/src/assets/icons/normal/arrow-left.svg +1 -0
- package/src/assets/icons/normal/arrow-right.svg +1 -0
- package/src/assets/icons/normal/arrow-up.svg +1 -0
- package/src/assets/icons/normal/attachment.svg +1 -0
- package/src/assets/icons/normal/back-to-front.svg +1 -0
- package/src/assets/icons/normal/bell-active.svg +1 -0
- package/src/assets/icons/normal/bell.svg +1 -0
- package/src/assets/icons/normal/bold.svg +1 -0
- package/src/assets/icons/normal/bookmark active.svg +1 -0
- package/src/assets/icons/normal/bookmark.svg +1 -0
- package/src/assets/icons/normal/building.svg +1 -0
- package/src/assets/icons/normal/bulleted-list.svg +1 -0
- package/src/assets/icons/normal/calendar.svg +1 -0
- package/src/assets/icons/normal/camera-off.svg +1 -0
- package/src/assets/icons/normal/camera-on.svg +1 -0
- package/src/assets/icons/normal/catalog.svg +1 -0
- package/src/assets/icons/normal/certificate.svg +1 -0
- package/src/assets/icons/normal/chat.svg +1 -0
- package/src/assets/icons/normal/check-badge.svg +1 -0
- package/src/assets/icons/normal/check-circle.svg +1 -0
- package/src/assets/icons/normal/check.svg +1 -0
- package/src/assets/icons/normal/checkbox.svg +1 -0
- package/src/assets/icons/normal/chevron-down-circle.svg +1 -0
- package/src/assets/icons/normal/chevron-down.svg +1 -0
- package/src/assets/icons/normal/chevron-left-circle.svg +1 -0
- package/src/assets/icons/normal/chevron-left.svg +1 -0
- package/src/assets/icons/normal/chevron-right-circle.svg +1 -0
- package/src/assets/icons/normal/chevron-right.svg +1 -0
- package/src/assets/icons/normal/chevron-up-circle.svg +1 -0
- package/src/assets/icons/normal/chevron-up.svg +1 -0
- package/src/assets/icons/normal/classroom.svg +1 -0
- package/src/assets/icons/normal/clear-field.svg +1 -0
- package/src/assets/icons/normal/clear-style.svg +1 -0
- package/src/assets/icons/normal/close-circle.svg +1 -0
- package/src/assets/icons/normal/close-loader.svg +1 -0
- package/src/assets/icons/normal/close.svg +1 -0
- package/src/assets/icons/normal/coffee.svg +1 -0
- package/src/assets/icons/normal/color.svg +1 -0
- package/src/assets/icons/normal/contact-us.svg +1 -0
- package/src/assets/icons/normal/copy.svg +1 -0
- package/src/assets/icons/normal/courses.svg +1 -0
- package/src/assets/icons/normal/dashboard.svg +1 -0
- package/src/assets/icons/normal/download.svg +1 -0
- package/src/assets/icons/normal/drag.svg +1 -0
- package/src/assets/icons/normal/dulicate.svg +1 -0
- package/src/assets/icons/normal/edit.svg +1 -0
- package/src/assets/icons/normal/elearning.svg +1 -0
- package/src/assets/icons/normal/email.svg +1 -0
- package/src/assets/icons/normal/error-2.svg +1 -0
- package/src/assets/icons/normal/error.svg +1 -0
- package/src/assets/icons/normal/exercise.svg +1 -0
- package/src/assets/icons/normal/external-link.svg +1 -0
- package/src/assets/icons/normal/extract.svg +1 -0
- package/src/assets/icons/normal/eye-off.svg +1 -0
- package/src/assets/icons/normal/eye-on.svg +1 -0
- package/src/assets/icons/normal/fail.svg +1 -0
- package/src/assets/icons/normal/fast-back.svg +1 -0
- package/src/assets/icons/normal/fast-forward.svg +1 -0
- package/src/assets/icons/normal/file-add.svg +1 -0
- package/src/assets/icons/normal/file-duplicate.svg +1 -0
- package/src/assets/icons/normal/file-remove.svg +1 -0
- package/src/assets/icons/normal/file-required.svg +1 -0
- package/src/assets/icons/normal/file.svg +1 -0
- package/src/assets/icons/normal/filter-2.svg +1 -0
- package/src/assets/icons/normal/filter-active.svg +1 -0
- package/src/assets/icons/normal/filter.svg +1 -0
- package/src/assets/icons/normal/flag.svg +1 -0
- package/src/assets/icons/normal/folder.svg +1 -0
- package/src/assets/icons/normal/full-width.svg +1 -0
- package/src/assets/icons/normal/go-to-back.svg +1 -0
- package/src/assets/icons/normal/grid.svg +1 -0
- package/src/assets/icons/normal/group-add.svg +1 -0
- package/src/assets/icons/normal/group.svg +1 -0
- package/src/assets/icons/normal/heart-active.svg +1 -0
- package/src/assets/icons/normal/heart.svg +1 -0
- package/src/assets/icons/normal/highlighter.svg +1 -0
- package/src/assets/icons/normal/home.svg +1 -0
- package/src/assets/icons/normal/hourglass.svg +1 -0
- package/src/assets/icons/normal/image.svg +1 -0
- package/src/assets/icons/normal/info-badge.svg +1 -0
- package/src/assets/icons/normal/information.svg +1 -0
- package/src/assets/icons/normal/italic.svg +1 -0
- package/src/assets/icons/normal/key.svg +1 -0
- package/src/assets/icons/normal/language.svg +1 -0
- package/src/assets/icons/normal/learning-path.svg +1 -0
- package/src/assets/icons/normal/light-off.svg +1 -0
- package/src/assets/icons/normal/light-on.svg +1 -0
- package/src/assets/icons/normal/link.svg +1 -0
- package/src/assets/icons/normal/lock.svg +1 -0
- package/src/assets/icons/normal/login.svg +1 -0
- package/src/assets/icons/normal/logout.svg +1 -0
- package/src/assets/icons/normal/maximize.svg +1 -0
- package/src/assets/icons/normal/menu.svg +1 -0
- package/src/assets/icons/normal/merge.svg +1 -0
- package/src/assets/icons/normal/minimize.svg +1 -0
- package/src/assets/icons/normal/mixed-class.svg +1 -0
- package/src/assets/icons/normal/more-horizontal.svg +1 -0
- package/src/assets/icons/normal/more-vertical.svg +1 -0
- package/src/assets/icons/normal/news.svg +1 -0
- package/src/assets/icons/normal/no-prerequisites.svg +1 -0
- package/src/assets/icons/normal/notes.svg +1 -0
- package/src/assets/icons/normal/number-code.svg +1 -0
- package/src/assets/icons/normal/numbered-list.svg +1 -0
- package/src/assets/icons/normal/on-site.svg +1 -0
- package/src/assets/icons/normal/order-down.svg +1 -0
- package/src/assets/icons/normal/order-up.svg +1 -0
- package/src/assets/icons/normal/paste.svg +1 -0
- package/src/assets/icons/normal/pausa.svg +1 -0
- package/src/assets/icons/normal/pdf.svg +1 -0
- package/src/assets/icons/normal/phone.svg +1 -0
- package/src/assets/icons/normal/pin-map.svg +1 -0
- package/src/assets/icons/normal/pin.svg +1 -0
- package/src/assets/icons/normal/pizza.svg +1 -0
- package/src/assets/icons/normal/play.svg +1 -0
- package/src/assets/icons/normal/plug-in.svg +1 -0
- package/src/assets/icons/normal/pointer.svg +1 -0
- package/src/assets/icons/normal/printer.svg +1 -0
- package/src/assets/icons/normal/profile-add.svg +1 -0
- package/src/assets/icons/normal/profile.svg +1 -0
- package/src/assets/icons/normal/push pin on.svg +1 -0
- package/src/assets/icons/normal/push-pin-off.svg +1 -0
- package/src/assets/icons/normal/qrcode.svg +1 -0
- package/src/assets/icons/normal/question-badge.svg +1 -0
- package/src/assets/icons/normal/radio.svg +1 -0
- package/src/assets/icons/normal/redo.svg +1 -0
- package/src/assets/icons/normal/relations.svg +1 -0
- package/src/assets/icons/normal/reload.svg +1 -0
- package/src/assets/icons/normal/remove-circle.svg +1 -0
- package/src/assets/icons/normal/remove.svg +1 -0
- package/src/assets/icons/normal/reorder.svg +1 -0
- package/src/assets/icons/normal/repeat.svg +1 -0
- package/src/assets/icons/normal/repository.svg +1 -0
- package/src/assets/icons/normal/request-form.svg +1 -0
- package/src/assets/icons/normal/resize-100%.svg +1 -0
- package/src/assets/icons/normal/resize-height.svg +1 -0
- package/src/assets/icons/normal/resize-width.svg +1 -0
- package/src/assets/icons/normal/search.svg +1 -0
- package/src/assets/icons/normal/sequential-prerequisites.svg +1 -0
- package/src/assets/icons/normal/settings.svg +1 -0
- package/src/assets/icons/normal/share.svg +1 -0
- package/src/assets/icons/normal/sketch.svg +1 -0
- package/src/assets/icons/normal/skills.svg +1 -0
- package/src/assets/icons/normal/skip-back.svg +1 -0
- package/src/assets/icons/normal/skip-forward.svg +1 -0
- package/src/assets/icons/normal/sms.svg +1 -0
- package/src/assets/icons/normal/sso-access.svg +1 -0
- package/src/assets/icons/normal/star-active.svg +1 -0
- package/src/assets/icons/normal/star.svg +1 -0
- package/src/assets/icons/normal/success.svg +1 -0
- package/src/assets/icons/normal/sun.svg +1 -0
- package/src/assets/icons/normal/sunrise.svg +1 -0
- package/src/assets/icons/normal/support.svg +1 -0
- package/src/assets/icons/normal/survey.svg +1 -0
- package/src/assets/icons/normal/table.svg +1 -0
- package/src/assets/icons/normal/tematic-channels.svg +1 -0
- package/src/assets/icons/normal/test.svg +1 -0
- package/src/assets/icons/normal/text-body.svg +1 -0
- package/src/assets/icons/normal/text-edit.svg +1 -0
- package/src/assets/icons/normal/text-style.svg +1 -0
- package/src/assets/icons/normal/time.svg +1 -0
- package/src/assets/icons/normal/toilet-paper.svg +1 -0
- package/src/assets/icons/normal/training-points.svg +1 -0
- package/src/assets/icons/normal/trash.svg +1 -0
- package/src/assets/icons/normal/underline.svg +1 -0
- package/src/assets/icons/normal/undo.svg +1 -0
- package/src/assets/icons/normal/unlock.svg +1 -0
- package/src/assets/icons/normal/upload.svg +1 -0
- package/src/assets/icons/normal/user-add.svg +1 -0
- package/src/assets/icons/normal/user-badge.svg +1 -0
- package/src/assets/icons/normal/user.svg +1 -0
- package/src/assets/icons/normal/video-off.svg +1 -0
- package/src/assets/icons/normal/video-on.svg +1 -0
- package/src/assets/icons/normal/video-rec.svg +1 -0
- package/src/assets/icons/normal/view-card.svg +1 -0
- package/src/assets/icons/normal/view-list.svg +1 -0
- package/src/assets/icons/normal/view.svg +1 -0
- package/src/assets/icons/normal/voice-off.svg +1 -0
- package/src/assets/icons/normal/voice-on.svg +1 -0
- package/src/assets/icons/normal/volume-down.svg +1 -0
- package/src/assets/icons/normal/volume-off.svg +1 -0
- package/src/assets/icons/normal/volume-up.svg +1 -0
- package/src/assets/icons/normal/warning.svg +1 -0
- package/src/assets/icons/normal/webinar.svg +1 -0
- package/src/assets/icons/normal/whiteboard.svg +1 -0
- package/src/assets/icons/normal/wine.svg +1 -0
- package/src/assets/icons/normal/zip.svg +1 -0
- package/src/assets/icons/normal/zoom-in.svg +1 -0
- package/src/assets/icons/normal/zoom-out.svg +1 -0
- package/src/assets/icons/normal.json +1 -0
- package/src/assets/icons/simple/add-circle.svg +1 -0
- package/src/assets/icons/simple/add.svg +1 -0
- package/src/assets/icons/simple/align-center.svg +1 -0
- package/src/assets/icons/simple/align-justify.svg +1 -0
- package/src/assets/icons/simple/align-left.svg +1 -0
- package/src/assets/icons/simple/align-right.svg +1 -0
- package/src/assets/icons/simple/analysis-2.svg +1 -0
- package/src/assets/icons/simple/analysis-3.svg +1 -0
- package/src/assets/icons/simple/analysis.svg +1 -0
- package/src/assets/icons/simple/apple.svg +1 -0
- package/src/assets/icons/simple/arrow-down.svg +1 -0
- package/src/assets/icons/simple/arrow-left.svg +1 -0
- package/src/assets/icons/simple/arrow-right.svg +1 -0
- package/src/assets/icons/simple/arrow-up.svg +1 -0
- package/src/assets/icons/simple/attachment.svg +1 -0
- package/src/assets/icons/simple/bck-to-front.svg +1 -0
- package/src/assets/icons/simple/bell-active.svg +1 -0
- package/src/assets/icons/simple/bell.svg +1 -0
- package/src/assets/icons/simple/bold.svg +1 -0
- package/src/assets/icons/simple/bookmark-active.svg +1 -0
- package/src/assets/icons/simple/bookmark.svg +1 -0
- package/src/assets/icons/simple/building.svg +1 -0
- package/src/assets/icons/simple/bulleted-list.svg +1 -0
- package/src/assets/icons/simple/calendar.svg +1 -0
- package/src/assets/icons/simple/camera-off.svg +1 -0
- package/src/assets/icons/simple/camera-on.svg +1 -0
- package/src/assets/icons/simple/catalog.svg +1 -0
- package/src/assets/icons/simple/certificate.svg +1 -0
- package/src/assets/icons/simple/chat.svg +1 -0
- package/src/assets/icons/simple/check-badge.svg +1 -0
- package/src/assets/icons/simple/check-circle.svg +1 -0
- package/src/assets/icons/simple/check.svg +1 -0
- package/src/assets/icons/simple/checkbox.svg +1 -0
- package/src/assets/icons/simple/chevron-down-circle.svg +1 -0
- package/src/assets/icons/simple/chevron-down.svg +1 -0
- package/src/assets/icons/simple/chevron-left-circle.svg +1 -0
- package/src/assets/icons/simple/chevron-left.svg +1 -0
- package/src/assets/icons/simple/chevron-right-circle.svg +1 -0
- package/src/assets/icons/simple/chevron-right.svg +1 -0
- package/src/assets/icons/simple/chevron-up-circle.svg +1 -0
- package/src/assets/icons/simple/chevron-up.svg +1 -0
- package/src/assets/icons/simple/classroom.svg +1 -0
- package/src/assets/icons/simple/clear-field.svg +1 -0
- package/src/assets/icons/simple/clear-style.svg +1 -0
- package/src/assets/icons/simple/close-circle.svg +1 -0
- package/src/assets/icons/simple/close-loader.svg +1 -0
- package/src/assets/icons/simple/close.svg +1 -0
- package/src/assets/icons/simple/coffee.svg +1 -0
- package/src/assets/icons/simple/color.svg +1 -0
- package/src/assets/icons/simple/contact-us.svg +1 -0
- package/src/assets/icons/simple/copy.svg +1 -0
- package/src/assets/icons/simple/courses.svg +1 -0
- package/src/assets/icons/simple/dashboard.svg +1 -0
- package/src/assets/icons/simple/download.svg +1 -0
- package/src/assets/icons/simple/drag.svg +1 -0
- package/src/assets/icons/simple/duplicate.svg +1 -0
- package/src/assets/icons/simple/edit.svg +1 -0
- package/src/assets/icons/simple/elearning.svg +1 -0
- package/src/assets/icons/simple/email.svg +1 -0
- package/src/assets/icons/simple/error-2.svg +1 -0
- package/src/assets/icons/simple/error.svg +1 -0
- package/src/assets/icons/simple/exercise.svg +1 -0
- package/src/assets/icons/simple/external-link.svg +1 -0
- package/src/assets/icons/simple/extract.svg +1 -0
- package/src/assets/icons/simple/eye-off.svg +1 -0
- package/src/assets/icons/simple/eye-on.svg +1 -0
- package/src/assets/icons/simple/fail.svg +1 -0
- package/src/assets/icons/simple/fast-back.svg +1 -0
- package/src/assets/icons/simple/fast-forward.svg +1 -0
- package/src/assets/icons/simple/file-add.svg +1 -0
- package/src/assets/icons/simple/file-duplicate.svg +1 -0
- package/src/assets/icons/simple/file-remove.svg +1 -0
- package/src/assets/icons/simple/file-required.svg +1 -0
- package/src/assets/icons/simple/file.svg +1 -0
- package/src/assets/icons/simple/filter-2.svg +1 -0
- package/src/assets/icons/simple/filter-active.svg +1 -0
- package/src/assets/icons/simple/filter.svg +1 -0
- package/src/assets/icons/simple/flag.svg +1 -0
- package/src/assets/icons/simple/folder.svg +1 -0
- package/src/assets/icons/simple/full-width.svg +1 -0
- package/src/assets/icons/simple/go-to-back.svg +1 -0
- package/src/assets/icons/simple/grid.svg +1 -0
- package/src/assets/icons/simple/group-add.svg +1 -0
- package/src/assets/icons/simple/group.svg +1 -0
- package/src/assets/icons/simple/heart-active.svg +1 -0
- package/src/assets/icons/simple/heart.svg +1 -0
- package/src/assets/icons/simple/highlighter.svg +1 -0
- package/src/assets/icons/simple/home.svg +1 -0
- package/src/assets/icons/simple/hourglass.svg +1 -0
- package/src/assets/icons/simple/image.svg +1 -0
- package/src/assets/icons/simple/info-badge.svg +1 -0
- package/src/assets/icons/simple/information.svg +1 -0
- package/src/assets/icons/simple/italic.svg +1 -0
- package/src/assets/icons/simple/key.svg +1 -0
- package/src/assets/icons/simple/language.svg +1 -0
- package/src/assets/icons/simple/learning-path.svg +1 -0
- package/src/assets/icons/simple/light-off.svg +1 -0
- package/src/assets/icons/simple/light-on.svg +1 -0
- package/src/assets/icons/simple/link.svg +1 -0
- package/src/assets/icons/simple/lock.svg +1 -0
- package/src/assets/icons/simple/login.svg +1 -0
- package/src/assets/icons/simple/logout.svg +1 -0
- package/src/assets/icons/simple/maximaze.svg +1 -0
- package/src/assets/icons/simple/menu.svg +1 -0
- package/src/assets/icons/simple/merge.svg +1 -0
- package/src/assets/icons/simple/minimaze.svg +1 -0
- package/src/assets/icons/simple/mixed-class.svg +1 -0
- package/src/assets/icons/simple/more-horizontal.svg +1 -0
- package/src/assets/icons/simple/more-vertical.svg +1 -0
- package/src/assets/icons/simple/news.svg +1 -0
- package/src/assets/icons/simple/no-prerequisites.svg +1 -0
- package/src/assets/icons/simple/notes.svg +1 -0
- package/src/assets/icons/simple/number-code.svg +1 -0
- package/src/assets/icons/simple/numbered-list.svg +1 -0
- package/src/assets/icons/simple/on-site.svg +1 -0
- package/src/assets/icons/simple/order-down.svg +1 -0
- package/src/assets/icons/simple/order-up.svg +1 -0
- package/src/assets/icons/simple/paste.svg +1 -0
- package/src/assets/icons/simple/pausa.svg +1 -0
- package/src/assets/icons/simple/pdf.svg +1 -0
- package/src/assets/icons/simple/phone.svg +1 -0
- package/src/assets/icons/simple/pin-map.svg +1 -0
- package/src/assets/icons/simple/pin.svg +1 -0
- package/src/assets/icons/simple/pizza.svg +1 -0
- package/src/assets/icons/simple/play.svg +1 -0
- package/src/assets/icons/simple/plug-in.svg +1 -0
- package/src/assets/icons/simple/pointer.svg +1 -0
- package/src/assets/icons/simple/printer.svg +1 -0
- package/src/assets/icons/simple/profile-add.svg +1 -0
- package/src/assets/icons/simple/profile.svg +1 -0
- package/src/assets/icons/simple/push-pin-off.svg +1 -0
- package/src/assets/icons/simple/push-pin-on.svg +1 -0
- package/src/assets/icons/simple/qrcode.svg +1 -0
- package/src/assets/icons/simple/question-badge.svg +1 -0
- package/src/assets/icons/simple/radio.svg +1 -0
- package/src/assets/icons/simple/redo.svg +1 -0
- package/src/assets/icons/simple/relations.svg +1 -0
- package/src/assets/icons/simple/reload.svg +1 -0
- package/src/assets/icons/simple/remove-circle.svg +1 -0
- package/src/assets/icons/simple/remove.svg +1 -0
- package/src/assets/icons/simple/repeart.svg +1 -0
- package/src/assets/icons/simple/repository.svg +1 -0
- package/src/assets/icons/simple/request-form.svg +1 -0
- package/src/assets/icons/simple/resize-100%.svg +1 -0
- package/src/assets/icons/simple/resize-height.svg +1 -0
- package/src/assets/icons/simple/resize-width.svg +1 -0
- package/src/assets/icons/simple/search.svg +1 -0
- package/src/assets/icons/simple/sequential-prerequisites.svg +1 -0
- package/src/assets/icons/simple/settings.svg +1 -0
- package/src/assets/icons/simple/share.svg +1 -0
- package/src/assets/icons/simple/sketch.svg +1 -0
- package/src/assets/icons/simple/skills.svg +1 -0
- package/src/assets/icons/simple/skip-back.svg +1 -0
- package/src/assets/icons/simple/skip-forward.svg +1 -0
- package/src/assets/icons/simple/sms.svg +1 -0
- package/src/assets/icons/simple/sso-access.svg +1 -0
- package/src/assets/icons/simple/star-active.svg +1 -0
- package/src/assets/icons/simple/star.svg +1 -0
- package/src/assets/icons/simple/success.svg +1 -0
- package/src/assets/icons/simple/sun.svg +1 -0
- package/src/assets/icons/simple/sunrise.svg +1 -0
- package/src/assets/icons/simple/support.svg +1 -0
- package/src/assets/icons/simple/survey.svg +1 -0
- package/src/assets/icons/simple/table.svg +1 -0
- package/src/assets/icons/simple/tematic-channels.svg +1 -0
- package/src/assets/icons/simple/test.svg +1 -0
- package/src/assets/icons/simple/text-body.svg +1 -0
- package/src/assets/icons/simple/text-edit.svg +1 -0
- package/src/assets/icons/simple/text-style.svg +1 -0
- package/src/assets/icons/simple/time.svg +1 -0
- package/src/assets/icons/simple/toilet-paper.svg +1 -0
- package/src/assets/icons/simple/training-points.svg +1 -0
- package/src/assets/icons/simple/trash.svg +1 -0
- package/src/assets/icons/simple/underline.svg +1 -0
- package/src/assets/icons/simple/undo.svg +1 -0
- package/src/assets/icons/simple/unlock.svg +1 -0
- package/src/assets/icons/simple/upload.svg +1 -0
- package/src/assets/icons/simple/user-add.svg +1 -0
- package/src/assets/icons/simple/user-badge.svg +1 -0
- package/src/assets/icons/simple/user.svg +1 -0
- package/src/assets/icons/simple/video-off.svg +1 -0
- package/src/assets/icons/simple/video-on.svg +1 -0
- package/src/assets/icons/simple/video-rec.svg +1 -0
- package/src/assets/icons/simple/view-card.svg +1 -0
- package/src/assets/icons/simple/view-list.svg +1 -0
- package/src/assets/icons/simple/view.svg +1 -0
- package/src/assets/icons/simple/voice-off.svg +1 -0
- package/src/assets/icons/simple/voice-on.svg +1 -0
- package/src/assets/icons/simple/volume-down.svg +1 -0
- package/src/assets/icons/simple/volume-off.svg +1 -0
- package/src/assets/icons/simple/volume-up.svg +1 -0
- package/src/assets/icons/simple/warning.svg +1 -0
- package/src/assets/icons/simple/webinar.svg +1 -0
- package/src/assets/icons/simple/whiteboard.svg +1 -0
- package/src/assets/icons/simple/wine.svg +1 -0
- package/src/assets/icons/simple/zip.svg +1 -0
- package/src/assets/icons/simple/zoom-in.svg +1 -0
- package/src/assets/icons/simple/zoom-out.svg +1 -0
- package/src/assets/icons/simple.json +1 -0
- package/src/components/VvAccordion/VvAccordion.ts +34 -0
- package/src/components/VvAccordion/VvAccordion.vue +92 -0
- package/src/components/VvAccordion/useAccordionProps.ts +45 -0
- package/src/components/VvAccordionGroup/VvAccordionGroup.ts +36 -0
- package/src/components/VvAccordionGroup/VvAccordionGroup.vue +63 -0
- package/src/components/VvBadge/VvBadge.ts +4 -0
- package/src/components/VvBadge/VvBadge.vue +12 -0
- package/src/components/VvBreadcrumb/VvBreadcrumb.ts +14 -0
- package/src/components/VvBreadcrumb/VvBreadcrumb.vue +52 -0
- package/src/components/VvButton/VvButton.ts +117 -0
- package/src/components/VvButton/VvButton.vue +190 -0
- package/src/components/VvButton/useButtonGroupProps.ts +51 -0
- package/src/components/VvButtonGroup/VvButtonGroup.ts +37 -0
- package/src/components/VvButtonGroup/VvButtonGroup.vue +55 -0
- package/src/components/VvCard/VvCard.ts +4 -0
- package/src/components/VvCard/VvCard.vue +37 -0
- package/src/components/VvCheck/VvCheck.ts +48 -0
- package/src/components/VvCheck/VvCheck.vue +149 -0
- package/src/components/VvCheck/useCheckProps.ts +41 -0
- package/src/components/VvCheckGroup/VvCheckGroup.ts +34 -0
- package/src/components/VvCheckGroup/VvCheckGroup.vue +84 -0
- package/src/components/VvDialog/VvDialog.ts +17 -0
- package/src/components/VvDialog/VvDialog.vue +91 -0
- package/src/components/VvDialog/constants.ts +5 -0
- package/src/components/VvDropdown/VvDropdown.ts +46 -0
- package/src/components/VvDropdown/VvDropdown.vue +130 -0
- package/src/components/VvIcon/VvIcon.ts +94 -0
- package/src/components/VvIcon/VvIcon.vue +123 -0
- package/src/components/VvInputText/VvInputText.ts +49 -0
- package/src/components/VvInputText/VvInputText.vue +276 -0
- package/src/components/VvInputText/constants.ts +34 -0
- package/src/components/VvInputText/useInputNumber.ts +40 -0
- package/src/components/VvInputText/useInputPassword.ts +38 -0
- package/src/components/VvNativeSelect/VvNativeSelect.ts +70 -0
- package/src/components/VvNativeSelect/VvNativeSelect.vue +106 -0
- package/src/components/VvProgress/VvProgress.ts +28 -0
- package/src/components/VvProgress/VvProgress.vue +34 -0
- package/src/components/VvRadio/VvRadio.ts +25 -0
- package/src/components/VvRadio/VvRadio.vue +130 -0
- package/src/components/VvRadio/useRadioProps.ts +40 -0
- package/src/components/VvRadioGroup/VvRadioGroup.ts +25 -0
- package/src/components/VvRadioGroup/VvRadioGroup.vue +80 -0
- package/src/components/VvSelect/VvSelect.ts +91 -0
- package/src/components/VvSelect/VvSelect.vue +194 -0
- package/src/components/VvTextarea/VvTextarea.ts +55 -0
- package/src/components/VvTextarea/VvTextarea.vue +189 -0
- package/src/components/VvTextarea/constants.ts +14 -0
- package/src/components/common/HintSlot.ts +164 -0
- package/src/components/index.ts +12 -0
- package/src/composables/focus/useComponentFocus.ts +22 -0
- package/src/composables/group/types/IAccordionGroupState.ts +12 -0
- package/src/composables/group/types/IButtonGroupState.ts +21 -0
- package/src/composables/group/types/IGroupState.ts +12 -0
- package/src/composables/group/types/IInputGroup.ts +13 -0
- package/src/composables/group/useInjectedGroupState.ts +64 -0
- package/src/composables/group/useProvideGroupState.ts +23 -0
- package/src/composables/icons/useComponentIcons.ts +52 -0
- package/src/composables/options/useOptions.ts +27 -0
- package/src/composables/useModifiers.ts +54 -0
- package/src/constants.ts +7 -0
- package/src/directives/.README +0 -0
- package/src/index.ts +7 -0
- package/src/props/index.ts +45 -0
- package/src/stories/Accordion/Accordion.stories.mdx +37 -0
- package/src/stories/Accordion/AccordionBordered.stories.mdx +26 -0
- package/src/stories/Accordion/AccordionIconRight.stories.mdx +32 -0
- package/src/stories/Accordion/AccordionSlots.stories.mdx +82 -0
- package/src/stories/Accordion/accordionTest.js +36 -0
- package/src/stories/AccordionGroup/Accordion.stories.mdx +42 -0
- package/src/stories/AccordionGroup/AccordionGroup.stories.mdx +43 -0
- package/src/stories/AccordionGroup/AccordionItems.stories.mdx +51 -0
- package/src/stories/AccordionGroup/accordionGroupTest.js +51 -0
- package/src/stories/Badge/Badge.stories.mdx +38 -0
- package/src/stories/Badge/BadgeColor.stories.mdx +54 -0
- package/src/stories/Badge/BadgeDot.stories.mdx +20 -0
- package/src/stories/Badge/BadgeTest.js +21 -0
- package/src/stories/Breadcrumb/Breadcrumb.stories.mdx +46 -0
- package/src/stories/Breadcrumb/BreadcrumbMultiline.stories.mdx +41 -0
- package/src/stories/Button/Button.stories.mdx +73 -0
- package/src/stories/Button/ButtonBadge.stories.mdx +33 -0
- package/src/stories/Button/ButtonIcon.stories.mdx +51 -0
- package/src/stories/Button/ButtonIconPosition.stories.mdx +103 -0
- package/src/stories/Button/ButtonLink.stories.mdx +156 -0
- package/src/stories/Button/ButtonLoading.stories.mdx +62 -0
- package/src/stories/Button/ButtonModifiers.stories.mdx +194 -0
- package/src/stories/Button/ButtonSlots.stories.mdx +123 -0
- package/src/stories/Button/ButtonVariant.stories.mdx +223 -0
- package/src/stories/Button/test.js +41 -0
- package/src/stories/ButtonGroup/ButtonGroup.stories.mdx +39 -0
- package/src/stories/ButtonGroup/ButtonGroupAction.stories.mdx +83 -0
- package/src/stories/ButtonGroup/ButtonGroupActionQuiet.stories.mdx +50 -0
- package/src/stories/ButtonGroup/ButtonGroupBlock.stories.mdx +40 -0
- package/src/stories/ButtonGroup/ButtonGroupCompact.stories.mdx +38 -0
- package/src/stories/ButtonGroup/ButtonGroupRounded.stories.mdx +77 -0
- package/src/stories/ButtonGroup/ButtonGroupTest.js +61 -0
- package/src/stories/ButtonGroup/ButtonGroupToggle.stories.mdx +131 -0
- package/src/stories/ButtonGroup/ButtonGroupVertical.stories.mdx +38 -0
- package/src/stories/Card/Card.stories.mdx +23 -0
- package/src/stories/Card/CardSlots.stories.mdx +42 -0
- package/src/stories/Card/CardVariant.stories.mdx +37 -0
- package/src/stories/Check/Check.stories.mdx +62 -0
- package/src/stories/Check/CheckBinary.stories.mdx +80 -0
- package/src/stories/Check/CheckDisabled.stories.mdx +30 -0
- package/src/stories/Check/CheckError.stories.mdx +64 -0
- package/src/stories/Check/CheckErrorTests.js +72 -0
- package/src/stories/Check/CheckHintLabel.stories.mdx +30 -0
- package/src/stories/Check/CheckPropertyTest.js +101 -0
- package/src/stories/Check/CheckReadonly.stories.mdx +30 -0
- package/src/stories/Check/CheckSlots.stories.mdx +51 -0
- package/src/stories/Check/CheckSwitch.stories.mdx +30 -0
- package/src/stories/CheckGroup/CheckGroup.stories.mdx +69 -0
- package/src/stories/CheckGroup/CheckGroupDisabled.stories.mdx +26 -0
- package/src/stories/CheckGroup/CheckGroupError.stories.mdx +28 -0
- package/src/stories/CheckGroup/CheckGroupHintLabel.stories.mdx +27 -0
- package/src/stories/CheckGroup/CheckGroupLabel.stories.mdx +26 -0
- package/src/stories/CheckGroup/CheckGroupOptionLabel.stories.mdx +48 -0
- package/src/stories/CheckGroup/CheckGroupOptionValue.stories.mdx +48 -0
- package/src/stories/CheckGroup/CheckGroupOptions.stories.mdx +40 -0
- package/src/stories/CheckGroup/CheckGroupReadonly.stories.mdx +26 -0
- package/src/stories/CheckGroup/CheckGroupSlots.stories.mdx +152 -0
- package/src/stories/CheckGroup/CheckGroupValid.stories.mdx +28 -0
- package/src/stories/CheckGroup/CheckGroupVertical.stories.mdx +26 -0
- package/src/stories/Dialog/Dialog.stories.mdx +29 -0
- package/src/stories/Dialog/DialogAutoClose.stories.mdx +18 -0
- package/src/stories/Dialog/DialogSize.stories.mdx +36 -0
- package/src/stories/Dropdown/Dropdown.stories.mdx +50 -0
- package/src/stories/Dropdown/DropdownDisabled.stories.mdx +25 -0
- package/src/stories/Dropdown/DropdownLabelNoResults.stories.mdx +25 -0
- package/src/stories/Dropdown/DropdownMaxValues.stories.mdx +26 -0
- package/src/stories/Dropdown/DropdownMultiple.stories.mdx +56 -0
- package/src/stories/Dropdown/DropdownOptions.stories.mdx +76 -0
- package/src/stories/Dropdown/DropdownUseObject.stories.mdx +58 -0
- package/src/stories/Icon/Icon.stories.mdx +73 -0
- package/src/stories/Icon/IconList.vue +34 -0
- package/src/stories/Icon/IconPrefix.stories.mdx +79 -0
- package/src/stories/Icon/IconRemote.stories.mdx +39 -0
- package/src/stories/Icon/IconTest.js +27 -0
- package/src/stories/Icon/IconsList.stories.mdx +35 -0
- package/src/stories/InputText/InputText.stories.mdx +94 -0
- package/src/stories/InputText/InputTextAutocomplete.stories.mdx +15 -0
- package/src/stories/InputText/InputTextAutofocus.stories.mdx +20 -0
- package/src/stories/InputText/InputTextDisabled.stories.mdx +19 -0
- package/src/stories/InputText/InputTextError.stories.mdx +19 -0
- package/src/stories/InputText/InputTextFloating.stories.mdx +20 -0
- package/src/stories/InputText/InputTextHintLabel.stories.mdx +18 -0
- package/src/stories/InputText/InputTextIcon.stories.mdx +18 -0
- package/src/stories/InputText/InputTextIconPosition.stories.mdx +31 -0
- package/src/stories/InputText/InputTextLabel.stories.mdx +15 -0
- package/src/stories/InputText/InputTextLoading.stories.mdx +19 -0
- package/src/stories/InputText/InputTextMax.stories.mdx +31 -0
- package/src/stories/InputText/InputTextMaxLength.stories.mdx +15 -0
- package/src/stories/InputText/InputTextMin.stories.mdx +31 -0
- package/src/stories/InputText/InputTextMinLength.stories.mdx +15 -0
- package/src/stories/InputText/InputTextPlaceholder.stories.mdx +15 -0
- package/src/stories/InputText/InputTextReadonly.stories.mdx +19 -0
- package/src/stories/InputText/InputTextSlots.stories.mdx +30 -0
- package/src/stories/InputText/InputTextStep.stories.mdx +31 -0
- package/src/stories/InputText/InputTextType.stories.mdx +81 -0
- package/src/stories/InputText/InputTextValid.stories.mdx +19 -0
- package/src/stories/NativeSelect/NativeSelect.stories.mdx +53 -0
- package/src/stories/NativeSelect/NativeSelectDisabled.stories.mdx +32 -0
- package/src/stories/NativeSelect/NativeSelectError.stories.mdx +36 -0
- package/src/stories/NativeSelect/NativeSelectHintLabel.stories.mdx +34 -0
- package/src/stories/NativeSelect/NativeSelectIconLeftRight.stories.mdx +42 -0
- package/src/stories/NativeSelect/NativeSelectLoading.stories.mdx +27 -0
- package/src/stories/NativeSelect/NativeSelectOptions.stories.mdx +78 -0
- package/src/stories/NativeSelect/NativeSelectReadonly.stories.mdx +34 -0
- package/src/stories/NativeSelect/NativeSelectUseObject.stories.mdx +66 -0
- package/src/stories/NativeSelect/NativeSelectValid.stories.mdx +36 -0
- package/src/stories/NativeSelect/NativeSelectValueKey.stories.mdx +66 -0
- package/src/stories/Progress/Progress.stories.mdx +29 -0
- package/src/stories/Progress/ProgressDeterminate.stories.mdx +19 -0
- package/src/stories/Radio/Radio.stories.mdx +67 -0
- package/src/stories/Radio/RadioDisabled.stories.mdx +30 -0
- package/src/stories/Radio/RadioError.stories.mdx +64 -0
- package/src/stories/Radio/RadioHintLabel.stories.mdx +30 -0
- package/src/stories/Radio/RadioSlots.stories.mdx +29 -0
- package/src/stories/Radio/RadioTest.js +89 -0
- package/src/stories/RadioGroup/RadioGroup.stories.mdx +73 -0
- package/src/stories/RadioGroup/RadioGroupDisabled.stories.mdx +29 -0
- package/src/stories/RadioGroup/RadioGroupError.stories.mdx +31 -0
- package/src/stories/RadioGroup/RadioGroupHintLabel.stories.mdx +28 -0
- package/src/stories/RadioGroup/RadioGroupLabel.stories.mdx +29 -0
- package/src/stories/RadioGroup/RadioGroupOptionLabel.stories.mdx +65 -0
- package/src/stories/RadioGroup/RadioGroupOptionValue.stories.mdx +65 -0
- package/src/stories/RadioGroup/RadioGroupOptions.stories.mdx +58 -0
- package/src/stories/RadioGroup/RadioGroupReadonly.stories.mdx +29 -0
- package/src/stories/RadioGroup/RadioGroupSlots.stories.mdx +162 -0
- package/src/stories/RadioGroup/RadioGroupValid.stories.mdx +31 -0
- package/src/stories/RadioGroup/RadioGroupVertical.stories.mdx +29 -0
- package/src/stories/RadioGroup/RadioOptionsTest.js +78 -0
- package/src/stories/RadioGroup/RadioPropertyTest.js +131 -0
- package/src/stories/RadioGroup/RadioSlotsTest.js +20 -0
- package/src/stories/Select/Select.stories.mdx +55 -0
- package/src/stories/Select/SelectDisabled.stories.mdx +32 -0
- package/src/stories/Select/SelectMaxValues.stories.mdx +33 -0
- package/src/stories/Select/SelectMultiple.stories.mdx +64 -0
- package/src/stories/Select/SelectOptions.stories.mdx +78 -0
- package/src/stories/Select/SelectSearchable.stories.mdx +80 -0
- package/src/stories/Select/SelectSeparator.stories.mdx +64 -0
- package/src/stories/Select/SelectUseObject.stories.mdx +66 -0
- package/src/stories/Textarea/Textarea.stories.mdx +84 -0
- package/src/stories/Textarea/TextareaAutocomplete.stories.mdx +15 -0
- package/src/stories/Textarea/TextareaAutofocus.stories.mdx +20 -0
- package/src/stories/Textarea/TextareaDisabled.stories.mdx +19 -0
- package/src/stories/Textarea/TextareaError.stories.mdx +19 -0
- package/src/stories/Textarea/TextareaFloating.stories.mdx +20 -0
- package/src/stories/Textarea/TextareaHintLabel.stories.mdx +18 -0
- package/src/stories/Textarea/TextareaIcon.stories.mdx +18 -0
- package/src/stories/Textarea/TextareaIconPosition.stories.mdx +31 -0
- package/src/stories/Textarea/TextareaLabel.stories.mdx +15 -0
- package/src/stories/Textarea/TextareaLoading.stories.mdx +19 -0
- package/src/stories/Textarea/TextareaMaxLength.stories.mdx +15 -0
- package/src/stories/Textarea/TextareaMinLength.stories.mdx +15 -0
- package/src/stories/Textarea/TextareaPlaceholder.stories.mdx +15 -0
- package/src/stories/Textarea/TextareaReadonly.stories.mdx +19 -0
- package/src/stories/Textarea/TextareaRowsCols.stories.mdx +31 -0
- package/src/stories/Textarea/TextareaSlots.stories.mdx +31 -0
- package/src/stories/Textarea/TextareaValid.stories.mdx +19 -0
- package/src/stories/stories.scss +24 -0
- package/src/stories/volver-ui-vue.stories.mdx +70 -0
- package/src/types/.README +0 -0
- package/src/types/generic.d.ts +1 -0
- package/src/utils/ObjectUtilities.ts +275 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0 1)"><g transform="translate(554 -67.531)" stroke-miterlimit="10"><path d="M -545.999755859375 80.47274780273438 L -551.9839477539062 74.47150421142578 C -552.63916015625 73.81432342529297 -553 72.94020080566406 -553 72.01023864746094 C -553 71.08026885986328 -552.63916015625 70.20616149902344 -551.98388671875 69.54892730712891 C -551.3294677734375 68.89250946044922 -550.4594116210938 68.53101348876953 -549.5339965820312 68.53101348876953 C -548.6087036132812 68.53101348876953 -547.73876953125 68.89250946044922 -547.0843505859375 69.54891967773438 L -546.7080078125 69.92622375488281 L -545.999755859375 70.63623809814453 L -545.2918090820312 69.92600250244141 L -544.9158325195312 69.54888916015625 C -544.261474609375 68.89252471923828 -543.3914184570312 68.53101348876953 -542.466064453125 68.53101348876953 C -541.5407104492188 68.53101348876953 -540.670654296875 68.89252471923828 -540.0161743164062 69.5489501953125 C -539.3609008789062 70.20623779296875 -539 71.08035278320312 -539 72.01023864746094 C -539 72.94013214111328 -539.3609008789062 73.81425476074219 -540.0162353515625 74.47157287597656 L -545.999755859375 80.47274780273438 Z" stroke="none"/><path d="M -549.5339965820312 69.53101348876953 C -550.1917724609375 69.53101348876953 -550.810302734375 69.78810882568359 -551.2756958007812 70.25497436523438 C -551.7427978515625 70.72344207763672 -552 71.34680938720703 -552 72.01023864746094 C -552 72.67366790771484 -551.7427978515625 73.29705047607422 -551.27587890625 73.76540374755859 L -545.999755859375 79.05648803710938 L -540.7244262695312 73.76554870605469 C -540.2572631835938 73.29697418212891 -540 72.67359161376953 -540 72.01023864746094 C -540 71.34689331054688 -540.2572631835938 70.72351837158203 -540.724365234375 70.2550048828125 C -541.1898193359375 69.78813171386719 -541.8084106445312 69.53101348876953 -542.466064453125 69.53101348876953 C -543.1237182617188 69.53101348876953 -543.7423095703125 69.78813171386719 -544.2076416015625 70.2548828125 L -545.9995727539062 72.05245971679688 L -547.7925415039062 70.25494384765625 C -548.2579345703125 69.78810882568359 -548.8764038085938 69.53101348876953 -549.5339965820312 69.53101348876953 M -549.5339965820312 67.53101348876953 C -548.3413696289062 67.53101348876953 -547.2194213867188 67.99704742431641 -546.3761596679688 68.84290313720703 L -546 69.22000885009766 L -545.6240844726562 68.84290313720703 C -544.78076171875 67.99704742431641 -543.65869140625 67.53101348876953 -542.466064453125 67.53101348876953 C -541.2733764648438 67.53101348876953 -540.1513671875 67.99704742431641 -539.3080444335938 68.84290313720703 C -538.4647827148438 69.688720703125 -538 70.81336975097656 -538 72.01023864746094 C -538 73.20642852783203 -538.4647827148438 74.33176422119141 -539.3080444335938 75.17760467529297 L -545.3900756835938 81.27760314941406 C -545.552001953125 81.44007873535156 -545.7714233398438 81.53102111816406 -546 81.53102111816406 C -546.2286987304688 81.53102111816406 -546.4480590820312 81.44007873535156 -546.609375 81.27760314941406 L -552.6920776367188 75.17760467529297 C -553.5353393554688 74.33176422119141 -554 73.20709228515625 -554 72.01023864746094 C -554 70.81404876708984 -553.5353393554688 69.688720703125 -552.6920776367188 68.84290313720703 C -551.8488159179688 67.99704742431641 -550.7267456054688 67.53101348876953 -549.5339965820312 67.53101348876953 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0 1)"><g transform="translate(554 -67.531)" fill="none" stroke-miterlimit="10"><path d="M-542.466,67.531a4.431,4.431,0,0,0-3.158,1.312l-.376.377-.376-.377a4.431,4.431,0,0,0-3.158-1.312,4.431,4.431,0,0,0-3.158,1.312A4.458,4.458,0,0,0-554,72.01a4.457,4.457,0,0,0,1.308,3.167l6.083,6.1a.858.858,0,0,0,.609.253.861.861,0,0,0,.61-.253l6.082-6.1A4.458,4.458,0,0,0-538,72.01a4.457,4.457,0,0,0-1.308-3.167A4.431,4.431,0,0,0-542.466,67.531Z" stroke="none"/><path d="M -549.5339965820312 68.53101348876953 C -550.4594116210938 68.53101348876953 -551.3295288085938 68.89251708984375 -551.98388671875 69.54894256591797 C -552.63916015625 70.20616149902344 -553 71.08026123046875 -553 72.01024627685547 C -553 72.94020080566406 -552.63916015625 73.81431579589844 -551.9839477539062 74.47149658203125 L -545.999755859375 80.47276306152344 L -540.0162353515625 74.47156524658203 C -539.3609008789062 73.81424713134766 -539 72.94012451171875 -539 72.01024627685547 C -539 71.08034515380859 -539.3609008789062 70.20624542236328 -540.0162353515625 69.5489501953125 C -540.670654296875 68.89252471923828 -541.5407104492188 68.53101348876953 -542.466064453125 68.53101348876953 C -543.3914184570312 68.53101348876953 -544.261474609375 68.89252471923828 -544.9158325195312 69.54889678955078 L -545.999755859375 70.63624572753906 L -547.0843505859375 69.54891967773438 C -547.73876953125 68.89251708984375 -548.6087036132812 68.53101348876953 -549.5339965820312 68.53101348876953 M -549.5339965820312 67.53101348876953 C -548.3413696289062 67.53101348876953 -547.2194213867188 67.99703979492188 -546.3761596679688 68.84290313720703 L -546 69.22001647949219 L -545.6240844726562 68.84290313720703 C -544.78076171875 67.99703979492188 -543.65869140625 67.53101348876953 -542.466064453125 67.53101348876953 C -541.2733764648438 67.53101348876953 -540.1513671875 67.99703979492188 -539.3080444335938 68.84290313720703 C -538.4647827148438 69.68871307373047 -538 70.81336975097656 -538 72.01024627685547 C -538 73.20643615722656 -538.4647827148438 74.33175659179688 -539.3080444335938 75.17759704589844 L -545.3900756835938 81.27760314941406 C -545.552001953125 81.44007110595703 -545.7714233398438 81.53101348876953 -546 81.53101348876953 C -546.2286987304688 81.53101348876953 -546.4480590820312 81.44007110595703 -546.609375 81.27760314941406 L -552.6920776367188 75.17759704589844 C -553.5353393554688 74.33175659179688 -554 73.20708465576172 -554 72.01024627685547 C -554 70.81405639648438 -553.5353393554688 69.68871307373047 -552.6920776367188 68.84290313720703 C -551.8488159179688 67.99703979492188 -550.7267456054688 67.53101348876953 -549.5339965820312 67.53101348876953 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g transform="translate(0 0)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2 2.666)"><path d="M.289,1.513,4.575,5.8l7.714-7.714L8-6.2Z" transform="translate(1.211 4.035)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/><path d="M4.789,7.8l2.5,2.5-1.5,1.5h-1.5l-1-1V9.3Z" transform="translate(-2.789 -0.964)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M1.289,11.8l-1,.667,1,.333,1-.667Z" transform="translate(-0.789 -1.465)" stroke="#000" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" transform="translate(0)" fill="#fff" opacity="0"/><g transform="translate(-0.09 -0.352)"><g transform="translate(0.09 0.352)" fill="rgba(0,0,0,0)" stroke-miterlimit="10"><path d="M 6.500200271606445 14.49947547912598 L 5.000430107116699 14.49940013885498 C 4.14663028717041 14.49806976318359 3.501140117645264 13.77134037017822 3.49970006942749 12.80895042419434 L 3.49970006942749 7.999199867248535 L 3.49970006942749 7.499199867248535 L 2.99970006942749 7.499199867248535 L 0.9567001461982727 7.499199867248535 C 0.8324501514434814 7.499199867248535 0.7371201515197754 7.486480236053467 0.6567001342773438 7.459159851074219 C 0.5731701254844666 7.430240154266357 0.5416601300239563 7.396399974822998 0.5222301483154297 7.367249965667725 C 0.5104201436042786 7.349760055541992 0.499780148267746 7.318809986114502 0.4999901354312897 7.29095983505249 C 0.5001983642578125 7.249019145965576 0.5079524517059326 7.19917106628418 0.5624661445617676 7.111691474914551 C 0.6091914772987366 7.039515495300293 0.6727991104125977 6.969462394714355 0.7620422840118408 6.891958713531494 L 7.181450366973877 1.796520113945007 L 7.188390254974365 1.791020035743713 L 7.195120334625244 1.785280108451843 C 7.410820007324219 1.601250052452087 7.696700096130371 1.499900102615356 8.000100135803223 1.499900102615356 C 8.303520202636719 1.499900102615356 8.589179992675781 1.601380109786987 8.804470062255859 1.785660028457642 L 8.811530113220215 1.791700124740601 L 8.81881046295166 1.797470092773438 L 15.23848438262939 6.891508102416992 C 15.3276424407959 6.969587326049805 15.39114284515381 7.039757251739502 15.43764019012451 7.111541271209717 C 15.491868019104 7.198548793792725 15.49979400634766 7.249892711639404 15.50022983551025 7.292409896850586 C 15.50042057037354 7.318809986114502 15.48978042602539 7.349760055541992 15.47966003417969 7.364729881286621 L 15.47825050354004 7.366819858551025 L 15.4768705368042 7.368919849395752 C 15.46095561981201 7.39299201965332 15.43653964996338 7.414951324462891 15.40792465209961 7.430988788604736 C 15.3406867980957 7.466127872467041 15.24885272979736 7.498362064361572 15.04147052764893 7.499199867248535 L 13.0004997253418 7.499199867248535 L 12.5004997253418 7.499199867248535 L 12.5004997253418 7.999199867248535 L 12.5004997253418 12.99960041046143 C 12.49917030334473 13.89498043060303 11.89577007293701 14.49800968170166 10.99902057647705 14.49940013885498 L 9.5 14.49940013885498 L 9.5 11.00069999694824 L 9.5 10.50069999694824 L 9 10.50069999694824 L 7.000200271606445 10.50069999694824 L 6.500200271606445 10.50069999694824 L 6.500200271606445 11.00069999694824 L 6.500200271606445 14.49947547912598 Z" stroke="none"/><path d="M 6.000200271606445 13.99944972991943 L 6.000200271606445 10.00069999694824 L 10 10.00069999694824 L 10 13.99940013885498 L 10.99824047088623 13.99940013885498 C 11.62489032745361 13.9984302520752 11.9995698928833 13.62411022186279 12.0004997253418 12.99960041046143 L 12.0004997253418 6.999199867248535 L 14.56981563568115 6.999207973480225 L 8.479340553283691 2.165510177612305 C 8.354570388793945 2.058720111846924 8.184370040893555 1.999900102615356 8.000100135803223 1.999900102615356 C 7.815560340881348 1.999900102615356 7.644930362701416 2.058770179748535 7.51963996887207 2.165650129318237 L 7.492310047149658 2.18815016746521 L 1.431184887886047 6.999199867248535 L 3.99970006942749 6.999199867248535 L 3.99970006942749 12.8082103729248 C 4.000730037689209 13.49752998352051 4.422240257263184 13.99849987030029 5.000450134277344 13.99940013885498 L 6.000200271606445 13.99944972991943 M 7.000200271606445 14.9995002746582 L 5.000400066375732 14.99940013885498 C 3.861670017242432 14.99763011932373 3.001560211181641 14.05626010894775 2.99970006942749 12.80970001220703 L 2.99970006942749 7.999199867248535 L 0.9567001461982727 7.999199867248535 C 0.776120126247406 7.999199867248535 0.6296901106834412 7.978040218353271 0.4959001243114471 7.932600021362305 C 0.3229501247406006 7.872730255126953 0.1954801380634308 7.778520107269287 0.106200136244297 7.644599914550781 C 0.03779013454914093 7.543320178985596 -0.0009198642219416797 7.413080215454102 1.358032193365943e-07 7.287300109863281 C 0.0007701357826590538 7.135960102081299 0.0453801341354847 6.994969844818115 0.1404001414775848 6.843600273132324 C 0.2152901291847229 6.727020263671875 0.3113701343536377 6.620069980621338 0.4428001344203949 6.506999969482422 L 6.87060022354126 1.404900074005127 C 7.17671012878418 1.143740057945251 7.577850341796875 0.9999000430107117 8.000100135803223 0.9999000430107117 C 8.422659873962402 0.9999000430107117 8.823790550231934 1.144050121307373 9.129600524902344 1.405800104141235 L 15.55830001831055 6.506999969482422 C 15.68955993652344 6.620759963989258 15.78534984588623 6.727710247039795 15.85980033874512 6.843600273132324 C 15.95403003692627 6.993710041046143 15.9986400604248 7.134690284729004 16.00020027160645 7.287300109863281 C 16.00111961364746 7.413090229034424 15.96240997314453 7.543320178985596 15.89400005340576 7.644599914550781 C 15.83250999450684 7.737639904022217 15.74629974365234 7.816070079803467 15.644700050354 7.871399879455566 C 15.47735023498535 7.959949970245361 15.29755973815918 7.998169898986816 15.04349994659424 7.999199867248535 L 13.0004997253418 7.999199867248535 L 13.0004997253418 12.99960041046143 C 12.99874973297119 14.17522048950195 12.17603015899658 14.9975700378418 10.99979972839355 14.99940013885498 L 9 14.99940013885498 L 9 11.00069999694824 L 7.000200271606445 11.00069999694824 L 7.000200271606445 14.9995002746582 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2 0.375)"><path d="M195.767,251.689c0-.33,1.2-1.03,1.833-1.667a6.017,6.017,0,0,0,1.833-4.167v-1.667h-11v1.667a6.014,6.014,0,0,0,1.833,4.167c.631.637,1.833,1.337,1.833,1.667s-1.2,1.03-1.833,1.667a6.015,6.015,0,0,0-1.833,4.167v1.667h11v-1.667a6.02,6.02,0,0,0-1.833-4.167C196.968,252.718,195.767,252.02,195.767,251.689Z" transform="translate(-187.933 -244.064)" fill="none" stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1"/><line x1="9" transform="translate(1.5 4.125)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><ellipse cx="4" cy="1" rx="4" ry="1" transform="translate(2 13.625)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.667 0.999)"><g transform="translate(16.667 1.001) rotate(90)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="12" height="16" rx="2" stroke="none"/><rect x="0.5" y="0.5" width="11" height="15" rx="1.5" fill="none"/></g><path d="M-551.037,82.09l9.5-5.5,3.5,5.5" transform="translate(553.2 -70.088)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><circle cx="1.5" cy="1.5" r="1.5" transform="translate(2.667 3.001)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M9.165,8l1,2,2.5-1.5" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.001" viewBox="0 0 16 16.001"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.333 0.334)"><circle cx="8" cy="8" r="8" transform="translate(-0.333 -0.333)"/><line y1="5" transform="translate(7.667 7.166)" fill="none" stroke="#fff" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line y1="1" transform="translate(7.668 3.166)" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.334 -0.334)"><line y2="1" transform="translate(8.334 3.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y2="5" transform="translate(8.334 7.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><g transform="translate(0.334 0.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.265" viewBox="0 0 16 16.265"><g transform="translate(0 0.131)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.699 1.301)"><line x1="7" transform="translate(3.801 -0.8)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line x1="7" transform="translate(-0.199 14.2)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line x1="5" y2="15" transform="translate(2.801 -0.8)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.004" viewBox="0 0 16 16.004"><g transform="translate(0 0.002)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-948 -1896)"><path d="M22191,24962h-2.5v-2.707l.145-.15,6.5-6.5.063-.064a4.252,4.252,0,1,1,8.289-1.332,4.255,4.255,0,0,1-5.578,4.035l-.066.066-1.5,1.5-.145.15h-1.709v2h-2v1.705l-.143.15-1,1-.143.15Z" transform="translate(-21240 -23050.5)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/><circle cx="1" cy="1" r="1" transform="translate(959 1899)"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g><line x2="14" transform="translate(1 5)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"/><line x2="14" transform="translate(1 11)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"/><path d="M0,2A16.394,16.394,0,0,1,7,0a16.394,16.394,0,0,1,7,2" transform="translate(4.5 15) rotate(-90)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><path d="M0,0A16.394,16.394,0,0,0,7,2a16.394,16.394,0,0,0,7-2" transform="translate(9.5 15) rotate(-90)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.007" viewBox="0 0 16 16.007"><g transform="translate(0 0.007)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.5 0.5)"><path d="M3.4,14.712l1-3.778a.158.158,0,0,1,.287-.047,1.762,1.762,0,0,0,3.161-.452A1.8,1.8,0,0,0,6.621,8.15a1.741,1.741,0,0,0-1.242.124.16.16,0,0,1-.225-.186l1-3.779L9.876,5.322a.161.161,0,0,0,.183-.229,1.812,1.812,0,0,1-.122-1.26A1.768,1.768,0,0,1,12.19,2.586,1.807,1.807,0,0,1,13.376,4.7a1.788,1.788,0,0,1-.741,1.089.162.162,0,0,0,.046.291L16.405,7.1,13.658,17.5Z" transform="translate(-3.405 -2.5)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><path d="M12197,18688a2.8,2.8,0,0,1-1.825-.648,2.119,2.119,0,0,1-.778-1.617v-.014l1-1v1.018a1.109,1.109,0,0,0,.432.854,1.784,1.784,0,0,0,1.173.408,1.8,1.8,0,0,0,1.173-.408,1.143,1.143,0,0,0,.431-.857v-1.924l.239-.281a10.14,10.14,0,0,0,1.524-2.252,6.226,6.226,0,0,0,.606-2.135l1-1a4.332,4.332,0,0,1,.022.434,7.244,7.244,0,0,1-.731,3.137,11.083,11.083,0,0,1-1.665,2.473v1.553a2.124,2.124,0,0,1-.784,1.617A2.772,2.772,0,0,1,12197,18688Zm-3.755-5.369v0a9,9,0,0,1-.513-.924,7.153,7.153,0,0,1-.731-3.133,4.328,4.328,0,0,1,1.473-3.242,5.336,5.336,0,0,1,7.055,0,.027.027,0,0,0,.006.008h0l0,0-.71.709a4.344,4.344,0,0,0-5.684.023,3.347,3.347,0,0,0-1.145,2.5,6.2,6.2,0,0,0,.633,2.7c.1.205.21.412.34.631l-.726.725Z" transform="translate(-12189 -18673)"/><line y1="14" x2="14" transform="translate(1 1)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.666 0.443)"><g transform="translate(178.333 -65.943)" fill="none" stroke-miterlimit="10"><path d="M-168,71.071a4.372,4.372,0,0,0-1.474-3.241A5.233,5.233,0,0,0-173,66.5a5.233,5.233,0,0,0-3.527,1.33A4.372,4.372,0,0,0-178,71.071a7.179,7.179,0,0,0,.734,3.132,11.418,11.418,0,0,0,1.663,2.468v1.564a2.126,2.126,0,0,0,.782,1.619A2.808,2.808,0,0,0-173,80.5a2.808,2.808,0,0,0,1.821-.646,2.126,2.126,0,0,0,.782-1.619V76.683a11.308,11.308,0,0,0,1.667-2.474A7.213,7.213,0,0,0-168,71.071Z" stroke="none"/><path d="M -172.9994964599609 67.49998474121094 C -174.0811309814453 67.49998474121094 -175.0946350097656 67.87992095947266 -175.8538513183594 68.5703125 C -176.5934295654297 69.24186706542969 -177.0004730224609 70.12965393066406 -176.9999847412109 71.07126617431641 C -177.0005187988281 71.99250793457031 -176.7924957275391 72.87577819824219 -176.3642272949219 73.77119445800781 C -176.0182189941406 74.49388122558594 -175.5207214355469 75.22975158691406 -174.8433074951172 76.0208740234375 L -174.6028900146484 76.30164337158203 L -174.6028900146484 78.23600769042969 C -174.6033020019531 78.66413116455078 -174.3348083496094 78.95545196533203 -174.1730041503906 79.09246826171875 C -173.8640441894531 79.35525512695312 -173.4472961425781 79.49998474121094 -172.9994964599609 79.49998474121094 C -172.5516967773438 79.49998474121094 -172.1349334716797 79.35525512695312 -171.8242950439453 79.09102630615234 C -171.6641998291016 78.95546722412109 -171.3956909179688 78.66412353515625 -171.3961181640625 78.23503112792969 L -171.3961181640625 76.31236267089844 L -171.1547241210938 76.03130340576172 C -170.4760589599609 75.24112701416016 -169.9778900146484 74.50409698486328 -169.6318969726562 73.77846527099609 C -169.2055053710938 72.88332366943359 -168.9984893798828 71.99778747558594 -168.9990081787109 71.07018280029297 C -168.99853515625 70.12965393066406 -169.4055786132812 69.24185180664062 -170.1456756591797 68.56982421875 C -170.9043579101562 67.87992095947266 -171.9178619384766 67.49998474121094 -172.9994964599609 67.49998474121094 M -172.9994964599609 66.49998474121094 C -171.6274719238281 66.49998474121094 -170.3792419433594 67.00580596923828 -169.472900390625 67.82997131347656 C -168.5665740966797 68.65294647216797 -167.9983673095703 69.80216217041016 -167.9990081787109 71.07068634033203 C -167.9983673095703 72.21441650390625 -168.2759094238281 73.25711822509766 -168.7290954589844 74.20850372314453 C -169.1566162109375 75.10513305664062 -169.7410583496094 75.92015838623047 -170.3961181640625 76.68285369873047 L -170.3961181640625 78.23503112792969 C -170.3954772949219 78.87599182128906 -170.7036437988281 79.45243835449219 -171.1780700683594 79.85417175292969 C -171.6524963378906 80.25772094726562 -172.2962951660156 80.49998474121094 -172.9994964599609 80.49998474121094 C -173.7026977539062 80.49998474121094 -174.3464965820312 80.25772094726562 -174.8209228515625 79.85417175292969 C -175.2953796386719 79.45243835449219 -175.603515625 78.87599182128906 -175.6028900146484 78.23503112792969 L -175.6028900146484 76.67128753662109 C -176.2554321289062 75.90921783447266 -176.8386383056641 75.09599304199219 -177.2661743164062 74.20303344726562 C -177.7212219238281 73.25164794921875 -178.0006408691406 72.21015167236328 -177.9999847412109 71.07068634033203 C -178.0006408691406 69.80216217041016 -177.4324340820312 68.65294647216797 -176.5260925292969 67.82997131347656 C -175.6197509765625 67.00580596923828 -174.3715209960938 66.49998474121094 -172.9994964599609 66.49998474121094 Z" stroke="none" fill="#000"/></g><line x2="4" transform="translate(3.335 10.557)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"/><line x1="1" y2="3" transform="translate(5.334 6.057)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M-172.261,76.4l1,2.5v1.5" transform="translate(176.595 -70.339)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.479" viewBox="0 0 16 16.479"><g transform="translate(0 0.24)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.5 0.5)"><path d="M-606.212,75.462a3.82,3.82,0,0,0,5.371.78,3.8,3.8,0,0,0,.416-.362l2.3-2.319a3.883,3.883,0,0,0-.094-5.464,3.819,3.819,0,0,0-5.332,0l-1.32,1.321" transform="translate(612.045 -67.011)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M-605.834,76.226a3.82,3.82,0,0,0-5.371-.78,3.806,3.806,0,0,0-.416.362l-2.3,2.319a3.883,3.883,0,0,0,.094,5.464,3.819,3.819,0,0,0,5.332,0l1.313-1.321" transform="translate(615 -69.676)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.194 -1.481)"><line y2="3" transform="translate(8.194 10.481)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><g transform="translate(0.194 6.481)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="16" height="11" rx="2" stroke="none"/><rect x="0.5" y="0.5" width="15" height="10" rx="1.5" fill="none"/></g><path d="M259.1,10V7.835C259.1,6.269,260.662,5,262.6,5h0c1.933,0,3.5,1.269,3.5,2.835V10" transform="translate(-254.401 -3.019)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16.005" height="16" viewBox="0 0 16.005 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2 2)"><path d="M763.833,4.5h3.5a1.664,1.664,0,0,1,1.5,1.5V18a1.668,1.668,0,0,1-1.5,1.5h-3.5" transform="translate(-755.333 -6)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M757.444,16.611l4-3.5-4-3.5" transform="translate(-751.945 -7.11)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line x1="10" transform="translate(-1.5 6)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(4.5 2)"><path d="M768.833,4.5h-3.5a1.661,1.661,0,0,0-1.5,1.5l0,12a1.659,1.659,0,0,0,1.5,1.5h3.5" transform="translate(-767.833 -6)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M757.444,16.611l4-3.5-4-3.5" transform="translate(-750.445 -7.11)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line x1="10" transform="translate(0 6)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.654 2.268)"><g transform="translate(-0.654 -0.268)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"><rect width="16" height="12" rx="2" stroke="none"/><rect x="0.5" y="0.5" width="15" height="11" rx="1.5" fill="none"/></g><path d="M21.05,6.008v3h3" transform="translate(-19.204 0.225)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M0,0V3H3" transform="translate(12.846 5.232) rotate(180)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.333 5.334)"><line x2="11" transform="translate(-0.833 5.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="7.5" transform="translate(-0.833 2.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="13" transform="translate(-0.833 -0.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.667 2.666)"><g transform="translate(-1.667 8.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"><circle cx="2.5" cy="2.5" r="2.5" stroke="none"/><circle cx="2.5" cy="2.5" r="2" fill="none"/></g><g transform="translate(7.333 8.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"><circle cx="2.5" cy="2.5" r="2.5" stroke="none"/><circle cx="2.5" cy="2.5" r="2" fill="none"/></g><path d="M79.125,7.588l-3-3-3,3" transform="translate(-70.791 -6.754)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y2="7.5" transform="translate(5.333 -1.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M73.091,19.977l3-3,3,3" transform="translate(-70.758 -10.644)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.333 1.334)"><rect width="7" height="5" rx="1" transform="translate(-0.833 7.166)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/><path d="M23.05,9.008v-3h-5" transform="translate(-8.883 -4.842)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M3,5V0H0" transform="translate(14.167 9.165) rotate(90)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M0,0V5H3" transform="translate(4.167 1.166) rotate(90)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16.001" height="16.002" viewBox="0 0 16.001 16.002"><g transform="translate(0 0.001)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2 2)"><g transform="translate(0.5 2)"><path d="M0,0A2,2,0,0,1,2,2,2,2,0,0,1,0,4" transform="translate(0 4.001) rotate(-90)" fill="none" stroke="#000" stroke-width="1"/><g transform="translate(-22 -16.679)" fill="none" stroke-miterlimit="10"><path d="M22,16.679a2,2,0,1,1,.586,1.414A2,2,0,0,1,22,16.679Z" stroke="none"/><path d="M 24.0000057220459 15.67900466918945 C 23.73304557800293 15.67900466918945 23.48165512084961 15.78308486938477 23.29408645629883 15.97013473510742 C 23.10444641113281 16.16030502319336 23.0000057220459 16.41204452514648 23.0000057220459 16.67900466918945 C 23.0000057220459 16.94531440734863 23.10444641113281 17.19670486450195 23.29213523864746 17.38492584228516 C 23.4823055267334 17.57456588745117 23.73369598388672 17.67900466918945 24.0000057220459 17.67900466918945 C 24.26631546020508 17.67900466918945 24.5177059173584 17.57456588745117 24.70687484741211 17.38591384887695 C 24.89590644836426 17.19688415527344 25.0000057220459 16.94582557678223 25.0000057220459 16.67900466918945 C 25.0000057220459 16.41153526306152 24.89590644836426 16.16012382507324 24.70787620544434 15.97208404541016 C 24.51835632324219 15.78308486938477 24.26696586608887 15.67900466918945 24.0000057220459 15.67900466918945 M 24.0000057220459 14.67900466918945 C 24.55300521850586 14.67900466918945 25.05100631713867 14.90200424194336 25.41400527954102 15.26400375366211 C 25.77699661254883 15.62700462341309 26.0000057220459 16.12600517272949 26.0000057220459 16.67900466918945 C 26.0000057220459 17.23200416564941 25.77699661254883 17.72999572753906 25.41400527954102 18.09300422668457 C 25.05100631713867 18.45500564575195 24.55300521850586 18.67900466918945 24.0000057220459 18.67900466918945 C 23.44700622558594 18.67900466918945 22.94900512695312 18.45500564575195 22.58600616455078 18.09300422668457 C 22.22400665283203 17.72999572753906 22.0000057220459 17.23200416564941 22.0000057220459 16.67900466918945 C 22.0000057220459 16.12600517272949 22.22400665283203 15.62700462341309 22.58600616455078 15.26400375366211 C 22.94900512695312 14.90200424194336 23.44700622558594 14.67900466918945 24.0000057220459 14.67900466918945 Z" stroke="none" fill="#000"/></g></g><g transform="translate(4 10)"><path d="M0,0A2,2,0,0,1,2,2,2,2,0,0,1,0,4" transform="translate(0 4.001) rotate(-90)" fill="none" stroke="#000" stroke-width="1"/><g transform="translate(-22 -16.679)" fill="none" stroke-miterlimit="10"><path d="M22,16.679a2,2,0,1,1,.586,1.414A2,2,0,0,1,22,16.679Z" stroke="none"/><path d="M 24.0000057220459 15.67900466918945 C 23.73304557800293 15.67900466918945 23.48165512084961 15.78308486938477 23.29408645629883 15.97013473510742 C 23.10444641113281 16.16030502319336 23.0000057220459 16.41204452514648 23.0000057220459 16.67900466918945 C 23.0000057220459 16.94531440734863 23.10444641113281 17.19670486450195 23.29213523864746 17.38492584228516 C 23.4823055267334 17.57456588745117 23.73369598388672 17.67900466918945 24.0000057220459 17.67900466918945 C 24.26631546020508 17.67900466918945 24.5177059173584 17.57456588745117 24.70687484741211 17.38591384887695 C 24.89590644836426 17.19688415527344 25.0000057220459 16.94582557678223 25.0000057220459 16.67900466918945 C 25.0000057220459 16.41153526306152 24.89590644836426 16.16012382507324 24.70787620544434 15.97208404541016 C 24.51835632324219 15.78308486938477 24.26696586608887 15.67900466918945 24.0000057220459 15.67900466918945 M 24.0000057220459 14.67900466918945 C 24.55300521850586 14.67900466918945 25.05100631713867 14.90200424194336 25.41400527954102 15.26400375366211 C 25.77699661254883 15.62700462341309 26.0000057220459 16.12600517272949 26.0000057220459 16.67900466918945 C 26.0000057220459 17.23200416564941 25.77699661254883 17.72999572753906 25.41400527954102 18.09300422668457 C 25.05100631713867 18.45500564575195 24.55300521850586 18.67900466918945 24.0000057220459 18.67900466918945 C 23.44700622558594 18.67900466918945 22.94900512695312 18.45500564575195 22.58600616455078 18.09300422668457 C 22.22400665283203 17.72999572753906 22.0000057220459 17.23200416564941 22.0000057220459 16.67900466918945 C 22.0000057220459 16.12600517272949 22.22400665283203 15.62700462341309 22.58600616455078 15.26400375366211 C 22.94900512695312 14.90200424194336 23.44700622558594 14.67900466918945 24.0000057220459 14.67900466918945 Z" stroke="none" fill="#000"/></g></g><g transform="translate(7.5 2)"><path d="M0,0A2,2,0,0,1,2,2,2,2,0,0,1,0,4" transform="translate(0 4.001) rotate(-90)" fill="none" stroke="#000" stroke-width="1"/><g transform="translate(-22 -16.679)" fill="none" stroke-miterlimit="10"><path d="M22,16.679a2,2,0,1,1,.586,1.414A2,2,0,0,1,22,16.679Z" stroke="none"/><path d="M 24.0000057220459 15.67900466918945 C 23.73304557800293 15.67900466918945 23.48165512084961 15.78308486938477 23.29408645629883 15.97013473510742 C 23.10444641113281 16.16030502319336 23.0000057220459 16.41204452514648 23.0000057220459 16.67900466918945 C 23.0000057220459 16.94531440734863 23.10444641113281 17.19670486450195 23.29213523864746 17.38492584228516 C 23.4823055267334 17.57456588745117 23.73369598388672 17.67900466918945 24.0000057220459 17.67900466918945 C 24.26631546020508 17.67900466918945 24.5177059173584 17.57456588745117 24.70687484741211 17.38591384887695 C 24.89590644836426 17.19688415527344 25.0000057220459 16.94582557678223 25.0000057220459 16.67900466918945 C 25.0000057220459 16.41153526306152 24.89590644836426 16.16012382507324 24.70787620544434 15.97208404541016 C 24.51835632324219 15.78308486938477 24.26696586608887 15.67900466918945 24.0000057220459 15.67900466918945 M 24.0000057220459 14.67900466918945 C 24.55300521850586 14.67900466918945 25.05100631713867 14.90200424194336 25.41400527954102 15.26400375366211 C 25.77699661254883 15.62700462341309 26.0000057220459 16.12600517272949 26.0000057220459 16.67900466918945 C 26.0000057220459 17.23200416564941 25.77699661254883 17.72999572753906 25.41400527954102 18.09300422668457 C 25.05100631713867 18.45500564575195 24.55300521850586 18.67900466918945 24.0000057220459 18.67900466918945 C 23.44700622558594 18.67900466918945 22.94900512695312 18.45500564575195 22.58600616455078 18.09300422668457 C 22.22400665283203 17.72999572753906 22.0000057220459 17.23200416564941 22.0000057220459 16.67900466918945 C 22.0000057220459 16.12600517272949 22.22400665283203 15.62700462341309 22.58600616455078 15.26400375366211 C 22.94900512695312 14.90200424194336 23.44700622558594 14.67900466918945 24.0000057220459 14.67900466918945 Z" stroke="none" fill="#000"/></g></g><path d="M67.666,14.487A1.537,1.537,0,0,1,66,12.82V6.154a1.537,1.537,0,0,1,1.667-1.667H79.333A1.537,1.537,0,0,1,81,6.154V12.82a1.537,1.537,0,0,1-1.667,1.667" transform="translate(-67.499 -5.988)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" transform="translate(0)" fill="#fff" opacity="0"/><g transform="translate(16.333 6.066) rotate(90)"><circle cx="2" cy="2" r="2" transform="translate(-0.066 0.333)"/><circle cx="2" cy="2" r="2" transform="translate(-0.066 6.333)"/><circle cx="2" cy="2" r="2" transform="translate(-0.066 12.333)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.001" viewBox="0 0 16 16.001"><rect width="16" height="16" transform="translate(0 0.001)" fill="#fff" opacity="0"/><g transform="translate(5.991 -0.713)"><circle cx="2" cy="2" r="2" transform="translate(0.009 0.713)"/><circle cx="2" cy="2" r="2" transform="translate(0.009 6.713)"/><circle cx="2" cy="2" r="2" transform="translate(0.009 12.713)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.488 1.99)"><path d="M13.012,12.508h-3v8c0,1.2.544,2,1.5,2s1.5-.8,1.5-2v-12h12v12.5c0,1.3-.2,1.5-1.5,1.5h-12" transform="translate(-10 -9)" fill="none" stroke="#000" stroke-width="1"/><line x2="6" transform="translate(6.012 3.51)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x2="6" transform="translate(6.012 6.51)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x2="3" transform="translate(6.012 9.51)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.666 4.334)"><g transform="translate(5.334 -3.334)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"><rect width="8" height="5" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="7" height="4" rx="0.5" fill="none"/></g><g transform="translate(5.334 4.666)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"><rect width="8" height="5" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="7" height="4" rx="0.5" fill="none"/></g><path d="M812.988,73.812h.944V70.946L812.9,71.2v-.976l2.165-.5v4.091h.835v.909h-2.911Z" transform="translate(-813.565 -73.055)"/><path d="M812.708,80.3a1.333,1.333,0,0,1,.858-1.385l.908-.456a.481.481,0,0,0,.271-.514v-.263c0-.257-.109-.373-.338-.373h-.44c-.231,0-.341.112-.341.373v.533h-.93v-.479a1.2,1.2,0,0,1,1.318-1.384h.341a1.2,1.2,0,0,1,1.317,1.367v.264a1.322,1.322,0,0,1-.857,1.368l-.9.458a.446.446,0,0,0-.279.456v.16H815.7v.926h-2.988Z" transform="translate(-813.362 -71.684)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.256 0.256)"><line x2="9" transform="translate(3.244 4.244)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line x2="6" transform="translate(3.244 7.244)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><g transform="translate(-0.256 -0.256)" fill="none" stroke="#000" stroke-width="1"><rect width="16" height="16" rx="2" stroke="none"/><rect x="0.5" y="0.5" width="15" height="15" rx="1.5" fill="none"/></g><path d="M5.031,25.932c2,0,3-4,3-4l9,4Z" transform="translate(-3.287 -10.687)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.001" viewBox="0 0 16 16.001"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(3 2)"><g transform="translate(-0.611 -2)"><g transform="translate(-0.389 3)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="12" height="8" rx="2" stroke="none"/><rect x="0.5" y="0.5" width="11" height="7" rx="1.5" fill="none"/></g><path d="M259.1,7.268A2.393,2.393,0,0,1,261.6,5h0a2.392,2.392,0,0,1,2.5,2.268" transform="translate(-255.983 -4.5)" fill="none" stroke="#000" stroke-linecap="square" stroke-linejoin="round" stroke-width="1"/></g><g transform="translate(0 10.667)"><line y2="3" transform="translate(1.5 -0.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="3" y2="2" transform="translate(0 0.333)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="3" y1="2" transform="translate(0 0.333)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></g><g transform="translate(7 10.667)"><line y2="3" transform="translate(1.5 -0.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="3" y2="2" transform="translate(0 0.333)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="3" y1="2" transform="translate(0 0.333)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.666 3.334)"><line x2="5" transform="translate(2.834 8.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="10" transform="translate(2.834 4.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="7" transform="translate(2.834 0.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><path d="M812.943,72.176h.472v-1.72l-.516.151v-.585l1.083-.3v2.455h.417v.545h-1.456Z" transform="translate(-814.565 -70.555)" stroke="rgba(0,0,0,0)" stroke-width="1"/><path d="M812.7,78.718a.824.824,0,0,1,.429-.831l.454-.274c.1-.063.135-.14.135-.308v-.158c0-.154-.055-.224-.169-.224h-.22c-.116,0-.171.067-.171.224v.32H812.7V77.18c0-.558.235-.83.659-.83h.171c.427,0,.658.276.658.82v.159a.816.816,0,0,1-.428.821l-.452.275a.277.277,0,0,0-.139.274v.1H814.2v.556H812.7Z" transform="translate(-814.362 -73.184)" stroke="rgba(0,0,0,0)" stroke-width="1"/><path d="M814.187,85.026v.09c0,.545-.225.817-.649.817h-.2c-.425,0-.65-.271-.65-.806v-.242h.456v.276c0,.14.057.21.169.21h.245c.111,0,.17-.073.17-.22v-.257c0-.142-.05-.215-.158-.215h-.363v-.519h.337c.107,0,.157-.07.157-.214v-.236c0-.145-.057-.215-.165-.215h-.206c-.107,0-.163.068-.163.205v.251h-.458v-.216c0-.533.224-.8.648-.8h.157c.423,0,.647.269.647.817v.074c0,.314-.118.531-.344.59C814.063,84.458,814.187,84.7,814.187,85.026Z" transform="translate(-814.354 -75.766)" stroke="rgba(0,0,0,0)" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2 2)"><path d="M67.666,14.487A1.537,1.537,0,0,1,66,12.82V6.154a1.537,1.537,0,0,1,1.667-1.667H79.333A1.537,1.537,0,0,1,81,6.154V12.82a1.537,1.537,0,0,1-1.667,1.667" transform="translate(-67.499 -5.987)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><path d="M69.452,10.375l2-2h3l2-2" transform="translate(-66.952 -4.874)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M0,0A2.5,2.5,0,0,1,2.5,2.5,2.5,2.5,0,0,1,0,5" transform="translate(3.5 14) rotate(-90)" fill="none" stroke="#000" stroke-width="1"/><g transform="translate(-18.5 -8.68)" fill="none" stroke-miterlimit="10"><path d="M22,17.179a2.5,2.5,0,1,1,.732,1.767A2.5,2.5,0,0,1,22,17.179Z" stroke="none"/><path d="M 24.50000190734863 18.67900085449219 C 24.8995418548584 18.67900085449219 25.27646255493164 18.52253150939941 25.56038284301758 18.2393913269043 C 25.8438720703125 17.95590019226074 26.00000190734863 17.57931137084961 26.00000190734863 17.17900085449219 C 26.00000190734863 16.77788162231445 25.8438720703125 16.40085029602051 25.56135177612305 16.11832046508789 C 25.27727127075195 15.83502101898193 24.90034103393555 15.67900085449219 24.50000190734863 15.67900085449219 C 24.09966278076172 15.67900085449219 23.72272109985352 15.83502101898193 23.44058227539062 16.11638069152832 C 23.15647125244141 16.40128135681152 23.00000190734863 16.77866172790527 23.00000190734863 17.17900085449219 C 23.00000190734863 17.57854080200195 23.15647125244141 17.95547103881836 23.43863105773926 18.2384204864502 C 23.72353172302246 18.52253150939941 24.10046195983887 18.67900085449219 24.50000190734863 18.67900085449219 M 24.50000190734863 19.67900085449219 C 23.80875205993652 19.67900085449219 23.18625259399414 19.39900016784668 22.73250198364258 18.94650077819824 C 22.28000259399414 18.49275016784668 22.00000190734863 17.8702507019043 22.00000190734863 17.17900085449219 C 22.00000190734863 16.48775100708008 22.28000259399414 15.86400127410889 22.73250198364258 15.41025066375732 C 23.18625259399414 14.95775127410889 23.80875205993652 14.67900085449219 24.50000190734863 14.67900085449219 C 25.19125175476074 14.67900085449219 25.81375122070312 14.95775127410889 26.26749229431152 15.41025066375732 C 26.72124099731445 15.86400127410889 27.00000190734863 16.48775100708008 27.00000190734863 17.17900085449219 C 27.00000190734863 17.8702507019043 26.72124099731445 18.49275016784668 26.26749229431152 18.94650077819824 C 25.81375122070312 19.39900016784668 25.19125175476074 19.67900085449219 24.50000190734863 19.67900085449219 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.333 2)"><line x2="13" transform="translate(0.167 1.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="9" transform="translate(0.167 4.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="7" transform="translate(0.167 7.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="3" transform="translate(0.167 10.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.833 2.5)"><line x2="13" transform="translate(-0.333 10)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="9" transform="translate(-0.333 7)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="5" transform="translate(-0.333 4)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="3" transform="translate(-0.333 1)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.5" viewBox="0 0 16 16.5"><g transform="translate(0 0.5)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(3.333 1.334)"><line x2="5" transform="translate(3.167 4.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x2="5" transform="translate(3.167 7.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><rect width="10" height="14" rx="2" transform="translate(0.667 -1.334)" fill="none" stroke="#000" stroke-width="1"/><path d="M9.5,18.5H4c-1.1,0-1.5-.4-1.5-1.5V8.5" transform="translate(-3.333 -4.334)" fill="none" stroke="#000" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(6 2.029)"><line y2="13" transform="translate(-0.5 -0.529)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line y2="13" transform="translate(4.5 -0.529)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2 4.666)"><line x1="7" transform="translate(6.5 -0.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x1="7" transform="translate(6.5 2.833)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x1="15" transform="translate(-1.5 6.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><rect width="5" height="5" transform="translate(-1.5 -1.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.333 -0.167)"><g transform="translate(0.667 0.167)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="10" height="16" rx="2" stroke="none"/><rect x="0.5" y="0.5" width="9" height="15" rx="1.5" fill="none"/></g><circle cx="1" cy="1" r="1" transform="translate(4.667 12.167)"/><rect width="4" height="2" rx="1" transform="translate(3.667 0.167)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.001" viewBox="0 0 16 16.001"><rect width="16" height="16" transform="translate(0 0.001)" fill="#fff" opacity="0"/><g transform="translate(2.707 -0.127)"><g transform="translate(-0.706 0.127)"><path d="M 5.999536514282227 15.30169868469238 C 5.479208469390869 14.78049564361572 4.440342426300049 13.68923950195312 3.39965033531189 12.30195331573486 C 1.003060221672058 9.107213020324707 0.5000002980232239 6.894423007965088 0.5000002980232239 5.600693225860596 C 0.5000002980232239 2.788152933120728 2.967020273208618 0.4999929964542389 5.99940013885498 0.4999929964542389 C 9.032279968261719 0.4999929964542389 11.49970054626465 2.788152933120728 11.49970054626465 5.600693225860596 C 11.49970054626465 6.895173072814941 10.9965705871582 9.108733177185059 8.599650382995605 12.302903175354 C 7.55824613571167 13.6906909942627 6.519756317138672 14.78095531463623 5.999536514282227 15.30169868469238 Z M 6.001200199127197 1.500692963600159 C 4.07096004486084 1.500692963600159 2.500600337982178 3.070652961730957 2.500600337982178 5.000392913818359 C 2.500600337982178 6.930132865905762 4.07096004486084 8.500093460083008 6.001200199127197 8.500093460083008 C 7.9309401512146 8.500093460083008 9.500900268554688 6.930132865905762 9.500900268554688 5.000392913818359 C 9.500900268554688 3.070652961730957 7.9309401512146 1.500692963600159 6.001200199127197 1.500692963600159 Z" stroke="none"/><path d="M 5.999643325805664 14.58690547943115 C 6.553726196289062 14.00939655303955 7.374898910522461 13.10197067260742 8.199729919433594 12.00279331207275 C 10.51393032073975 8.918852806091309 10.99970054626465 6.819112777709961 10.99970054626465 5.600693225860596 C 10.99970054626465 3.063863039016724 8.756569862365723 0.9999930262565613 5.99940013885498 0.9999930262565613 C 3.242720365524292 0.9999930262565613 1.000000238418579 3.063863039016724 1.000000238418579 5.600693225860596 C 1.000000238418579 6.81838321685791 1.485710263252258 8.917383193969727 3.799620389938354 12.00191307067871 C 4.623931884765625 13.10075664520264 5.44540548324585 14.0089054107666 5.999643325805664 14.58690547943115 M 6.001200199127197 1.000692963600159 C 8.206640243530273 1.000692963600159 10.00090026855469 2.794953107833862 10.00090026855469 5.000392913818359 C 10.00090026855469 7.205832958221436 8.206640243530273 9.000093460083008 6.001200199127197 9.000093460083008 C 3.795260190963745 9.000093460083008 2.000600337982178 7.205832958221436 2.000600337982178 5.000392913818359 C 2.000600337982178 2.794953107833862 3.795260190963745 1.000692963600159 6.001200199127197 1.000692963600159 M 5.99940013885498 16.00021362304688 L 5.998720169067383 15.99956321716309 C 5.936860084533691 15.94162273406982 4.466890335083008 14.55785274505615 2.999680280685425 12.6019926071167 C 1.631240248680115 10.77781295776367 2.731323149873788e-07 8.082383155822754 2.731323149873788e-07 5.600693225860596 C 2.731323149873788e-07 2.512463092803955 2.691320180892944 -7.003173777775373e-06 5.99940013885498 -7.003173777775373e-06 C 9.307980537414551 -7.003173777775373e-06 11.99970054626465 2.512463092803955 11.99970054626465 5.600693225860596 C 11.99970054626465 8.083772659301758 10.36822032928467 10.77912330627441 8.999569892883301 12.60300254821777 C 7.530570507049561 14.56061267852783 6.061890125274658 15.94172286987305 6.000080108642578 15.99956321716309 L 5.99940013885498 16.00021362304688 Z M 6.001200199127197 2.000693082809448 C 4.346660137176514 2.000693082809448 3.000600337982178 3.346353054046631 3.000600337982178 5.000392913818359 C 3.000600337982178 6.654432773590088 4.346660137176514 8.000093460083008 6.001200199127197 8.000093460083008 C 7.655240058898926 8.000093460083008 9.000900268554688 6.654432773590088 9.000900268554688 5.000392913818359 C 9.000900268554688 3.346353054046631 7.655240058898926 2.000693082809448 6.001200199127197 2.000693082809448 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.335 -0.667)"><g transform="translate(0.667 0.667)" fill="none"><path d="M6,0a5.81,5.81,0,0,1,6,5.6C12,10.405,6,16,6,16S0,10.4,0,5.6A5.81,5.81,0,0,1,6,0Z" stroke="none"/><path d="M 5.999406814575195 1.000003814697266 C 3.242727279663086 1.000003814697266 0.9999971389770508 3.063163757324219 0.9999971389770508 5.599123954772949 C 0.9999971389770508 7.338594436645508 1.961506843566895 9.543024063110352 3.780587196350098 11.9741039276123 C 4.605518817901611 13.07657241821289 5.439213752746582 13.99809551239014 5.999834060668945 14.58317279815674 C 6.554970264434814 14.00419330596924 7.378316879272461 13.09447288513184 8.199256896972656 12.00042343139648 C 10.03074645996094 9.55964469909668 10.99881649017334 7.346103668212891 10.99881649017334 5.599123954772949 C 10.99881649017334 3.063163757324219 8.756086349487305 1.000003814697266 5.999406814575195 1.000003814697266 M 5.999406814575195 3.814697265625e-06 C 9.312787055969238 3.814697265625e-06 11.99881649017334 2.506814002990723 11.99881649017334 5.599123954772949 C 11.99881649017334 10.40528392791748 5.999406814575195 15.99748420715332 5.999406814575195 15.99748420715332 C 5.999406814575195 15.99748420715332 -2.86102294921875e-06 10.40262413024902 -2.86102294921875e-06 5.599123954772949 C -2.86102294921875e-06 2.506814002990723 2.686026573181152 3.814697265625e-06 5.999406814575195 3.814697265625e-06 Z" stroke="none" fill="#000"/></g><g transform="translate(3.665 3.667)" fill="none" 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="16.024" height="16" viewBox="0 0 16.024 16"><g transform="translate(0.024)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.461 -0.461)"><path d="M14.1,4.869l5.347,15L4.476,14.512S3.407,4.869,14.1,4.869Z" transform="translate(-3.485 -3.908)" fill="rgba(0,0,0,0)" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M6.2,15.023a19.678,19.678,0,0,1,.054-2.608,6.888,6.888,0,0,1,.676-1.409,7,7,0,0,1,.7-1.4,7.217,7.217,0,0,1,1.231-.982,7.113,7.113,0,0,1,1.247-.962,7.311,7.311,0,0,1,1.543-.359A21.912,21.912,0,0,1,14.4,6.918" transform="translate(-3.239 -4.012)" fill="rgba(0,0,0,0)" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M7.438,21.09c.33-1.464,2.091-1.417,3.208-.949a2.6,2.6,0,0,1,1.792,2.949" transform="translate(-1.476 -9.128)" fill="rgba(0,0,0,0)" stroke="#000" stroke-width="1"/><path d="M15.73,12.664A1.413,1.413,0,0,0,13.8,14.6a.47.47,0,0,0,.348.228.483.483,0,0,0,.4-.138l.108-.093.608.873L16.6,14.132l-.874-.623.092-.1a.483.483,0,0,0,.138-.4.47.47,0,0,0-.228-.348Z" transform="translate(-5.141 -7.011)"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2 -0.4)"><g transform="translate(14 0.4) rotate(90)" fill="none"><path d="M7.132,1.519a1,1,0,0,1,1.736,0l6,10.984A1,1,0,0,1,14,14H2a1,1,0,0,1-.868-1.5Z" stroke="none"/><path d="M 8 2.015949249267578 L 2 12.99999523162842 L 13.9999885559082 12.99999523162842 L 13.99063014984131 12.98323535919189 L 8 2.015949249267578 M 8 1.015560150146484 C 8.33814811706543 1.015560150146484 8.676294326782227 1.183515548706055 8.868240356445312 1.519425392150879 L 14.86824035644531 12.50386524200439 C 15.24919033050537 13.1705150604248 14.76782035827637 13.99999523162842 14 13.99999523162842 L 2 13.99999523162842 C 1.232179641723633 13.99999523162842 0.7508096694946289 13.1705150604248 1.131759643554688 12.50386524200439 L 7.131759643554688 1.519425392150879 C 7.323704719543457 1.183515548706055 7.661852836608887 1.015560150146484 8 1.015560150146484 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16.002" height="16" viewBox="0 0 16.002 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-17899.998 -20482.602)" fill="none"><path d="M17902,20495.6a2,2,0,0,1-2-2v-5a2,2,0,0,1,2-2v-1a1,1,0,0,1,1-1h3a1,1,0,0,1,1,1v1h2v-1a1,1,0,0,1,1-1h3a1,1,0,0,1,1,1v1a2,2,0,0,1,2,2v5a2,2,0,0,1-2,2Z" stroke="none"/><path d="M 17914 20494.6015625 C 17914.55078125 20494.6015625 17915 20494.15234375 17915 20493.599609375 L 17915 20488.599609375 C 17915 20488.048828125 17914.55078125 20487.599609375 17914 20487.599609375 L 17913 20487.599609375 L 17913.001953125 20485.60546875 L 17912.99609375 20485.603515625 L 17910 20485.6015625 L 17910 20487.599609375 L 17905.998046875 20487.599609375 L 17905.99609375 20485.603515625 L 17902.998046875 20485.6015625 L 17902.998046875 20487.599609375 L 17901.998046875 20487.599609375 C 17901.447265625 20487.599609375 17900.998046875 20488.048828125 17900.998046875 20488.599609375 L 17900.998046875 20493.599609375 C 17900.998046875 20494.15234375 17901.447265625 20494.6015625 17901.998046875 20494.6015625 L 17914 20494.6015625 M 17914 20495.6015625 L 17901.998046875 20495.6015625 C 17900.892578125 20495.6015625 17899.998046875 20494.705078125 17899.998046875 20493.599609375 L 17899.998046875 20488.599609375 C 17899.998046875 20487.494140625 17900.892578125 20486.599609375 17901.998046875 20486.599609375 L 17901.998046875 20485.6015625 C 17901.998046875 20485.05078125 17902.447265625 20484.603515625 17902.99609375 20484.603515625 L 17905.99609375 20484.603515625 C 17906.55078125 20484.603515625 17906.998046875 20485.05078125 17906.998046875 20485.6015625 L 17906.998046875 20486.599609375 L 17909 20486.599609375 L 17909 20485.6015625 C 17909 20485.05078125 17909.447265625 20484.603515625 17909.998046875 20484.603515625 L 17912.99609375 20484.603515625 C 17913.55078125 20484.603515625 17914 20485.05078125 17914 20485.6015625 L 17914 20486.599609375 C 17915.10546875 20486.599609375 17916 20487.494140625 17916 20488.599609375 L 17916 20493.599609375 C 17916 20494.705078125 17915.10546875 20495.6015625 17914 20495.6015625 Z" stroke="none" fill="#000"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.667 0.666)"><circle cx="7" cy="7" r="7" transform="translate(0.333 0.334)" fill="none" stroke="#000" stroke-width="1"/><circle cx="3" cy="3" r="3" transform="translate(4.333 4.334)" stroke="#000" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0 0.777)"><g transform="translate(-4 -7.019)" fill="none" stroke-miterlimit="10"><path d="M18,10.242H6a2,2,0,0,0-2,2v5a2.008,2.008,0,0,0,2,2H7v2a1.073,1.073,0,0,0,1,1h8a1.074,1.074,0,0,0,1-1v-2h1a2,2,0,0,0,2-2v-5A2.011,2.011,0,0,0,18,10.242Z" stroke="none"/><path d="M 6 11.2421875 C 5.448600769042969 11.2421875 5 11.69078826904297 5 12.2421875 L 5 17.2421875 C 5 17.78424835205078 5.457939147949219 18.2421875 6 18.2421875 L 8 18.2421875 L 8 21.20050811767578 C 8.01015567779541 21.21502685546875 8.026595115661621 21.23179626464844 8.040849685668945 21.2421875 L 15.95835113525391 21.2421875 C 15.97286891937256 21.23184585571289 15.98962688446045 21.21512794494629 16 21.20064163208008 L 16 18.2421875 L 18 18.2421875 C 18.55139923095703 18.2421875 19 17.79358673095703 19 17.2421875 L 19 12.2421875 C 19 11.70012664794922 18.54206085205078 11.2421875 18 11.2421875 L 6 11.2421875 M 6 10.2421875 L 18 10.2421875 C 19.09766006469727 10.2421875 20 11.14711761474609 20 12.2421875 L 20 17.2421875 C 20 18.34375762939453 19.10369110107422 19.2421875 18 19.2421875 L 17 19.2421875 L 17 21.2421875 C 17 21.74394607543945 16.50030899047852 22.2421875 16 22.2421875 L 8 22.2421875 C 7.492429733276367 22.2421875 7 21.73750686645508 7 21.2421875 L 7 19.2421875 L 6 19.2421875 C 4.901899337768555 19.2421875 4 18.34020614624023 4 17.2421875 L 4 12.2421875 C 4 11.14028739929199 4.896770477294922 10.2421875 6 10.2421875 Z" stroke="none" fill="#000"/></g><g transform="translate(-4.635 -7.762)" fill="none" stroke-miterlimit="10"><path d="M7.635,16.984h10v4.9a1.125,1.125,0,0,1-1.146,1.1H8.781a1.125,1.125,0,0,1-1.146-1.1Z" stroke="none"/><path d="M 8.635000228881836 17.98399925231934 L 8.635000228881836 21.8811092376709 C 8.635000228881836 21.92977905273438 8.694900512695312 21.98399925231934 8.780849456787109 21.98399925231934 L 16.48915100097656 21.98399925231934 C 16.57509994506836 21.98399925231934 16.63500022888184 21.92977905273438 16.63500022888184 21.8811092376709 L 16.63500022888184 17.98399925231934 L 8.635000228881836 17.98399925231934 M 7.635000228881836 16.98399925231934 L 17.63500022888184 16.98399925231934 L 17.63500022888184 21.8811092376709 C 17.63500022888184 22.49037933349609 17.12215042114258 22.98399925231934 16.48915100097656 22.98399925231934 L 8.780849456787109 22.98399925231934 C 8.147850036621094 22.98399925231934 7.635000228881836 22.49037933349609 7.635000228881836 21.8811092376709 L 7.635000228881836 16.98399925231934 Z" stroke="none" fill="#000"/></g><line x2="2" transform="translate(10.5 6.723)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><g transform="translate(4.5 -0.277)"><path d="M19.627,5.587h-1v-1Z" transform="translate(-13.126 -4.087)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/><path d="M10.726,8.585V5.542a1.011,1.011,0,0,1,1.059-.955h4.3L17.725,6.04V8.585" transform="translate(-10.726 -4.585)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.334 2)"><g transform="translate(9.166 -1)"><line x2="6" transform="translate(-1 2.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line y2="6" transform="translate(2 -0.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g><g transform="translate(-12548 -19572)" fill="rgba(0,0,0,0)"><path d="M 12551.6650390625 19581.501953125 C 12550.3359375 19581.501953125 12549.1005859375 19580.7265625 12548.515625 19579.529296875 L 12548.4404296875 19579.375 L 12548.287109375 19579.298828125 C 12547.5966796875 19578.958984375 12547.1669921875 19578.26953125 12547.1669921875 19577.5 C 12547.1669921875 19576.439453125 12547.9921875 19575.5625 12549.046875 19575.501953125 L 12549.21875 19575.490234375 L 12549.3486328125 19575.376953125 C 12549.9892578125 19574.810546875 12550.8115234375 19574.5 12551.6650390625 19574.5 C 12552.5205078125 19574.5 12553.34375 19574.810546875 12553.9833984375 19575.376953125 L 12554.1123046875 19575.490234375 L 12554.28515625 19575.501953125 C 12555.3408203125 19575.564453125 12556.16796875 19576.44140625 12556.16796875 19577.5 C 12556.16796875 19578.26953125 12555.7373046875 19578.958984375 12555.0439453125 19579.298828125 L 12554.890625 19579.375 L 12554.8154296875 19579.529296875 C 12554.22265625 19580.74609375 12553.015625 19581.501953125 12551.6650390625 19581.501953125 Z" stroke="none"/><path d="M 12551.6650390625 19581.001953125 C 12552.8232421875 19581.001953125 12553.857421875 19580.353515625 12554.365234375 19579.310546875 L 12554.515625 19579.001953125 L 12554.82421875 19578.849609375 C 12555.3447265625 19578.59375 12555.66796875 19578.078125 12555.66796875 19577.5 C 12555.66796875 19576.70703125 12555.046875 19576.046875 12554.2548828125 19576 L 12553.9111328125 19575.98046875 L 12553.65234375 19575.751953125 C 12553.1044921875 19575.267578125 12552.3984375 19575 12551.6650390625 19575 C 12550.93359375 19575 12550.228515625 19575.267578125 12549.6796875 19575.751953125 L 12549.419921875 19575.98046875 L 12549.0751953125 19576 C 12548.2861328125 19576.046875 12547.6669921875 19576.705078125 12547.6669921875 19577.5 C 12547.6669921875 19578.078125 12547.9892578125 19578.595703125 12548.5078125 19578.8515625 L 12548.8154296875 19579.001953125 L 12548.96484375 19579.310546875 C 12549.466796875 19580.337890625 12550.5263671875 19581.001953125 12551.6650390625 19581.001953125 M 12551.6650390625 19582.001953125 C 12550.0849609375 19582.001953125 12548.7158203125 19581.080078125 12548.06640625 19579.748046875 C 12547.2373046875 19579.33984375 12546.6669921875 19578.486328125 12546.6669921875 19577.5 C 12546.6669921875 19576.16796875 12547.705078125 19575.078125 12549.017578125 19575.001953125 C 12549.7236328125 19574.37890625 12550.650390625 19574 12551.6650390625 19574 C 12552.6826171875 19574 12553.609375 19574.37890625 12554.314453125 19575.001953125 C 12555.626953125 19575.080078125 12556.66796875 19576.16796875 12556.66796875 19577.5 C 12556.66796875 19578.486328125 12556.095703125 19579.33984375 12555.2646484375 19579.748046875 C 12554.6162109375 19581.080078125 12553.25 19582.001953125 12551.6650390625 19582.001953125 Z" stroke="none" fill="#000"/></g><path d="M-2,5.5a3.5,3.5,0,0,1,7,0" transform="translate(2.166 8.5)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/><g transform="translate(-1.334 3)" fill="none" stroke="#000" stroke-width="1"><rect width="5" height="5" rx="2.5" stroke="none"/><rect x="0.5" y="0.5" width="4" height="4" rx="2" fill="none"/></g><g transform="translate(3.666 3)" fill="none" stroke="#000" stroke-width="1"><rect width="5" height="5" rx="2.5" stroke="none"/><rect x="0.5" y="0.5" width="4" height="4" rx="2" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(4 2.666)"><path d="M12669.5,19582.334a4.472,4.472,0,0,1-3.83-2.141,2.5,2.5,0,1,0,0-4.721,4.5,4.5,0,0,1,7.659,0,2.5,2.5,0,1,0,0,4.721A4.479,4.479,0,0,1,12669.5,19582.334Z" transform="translate(-12665.5 -19574.5)" fill="rgba(0,0,0,0)" stroke="#000" stroke-width="1"/><path d="M0,0A4.5,4.5,0,0,1,4.5,4.5,4.5,4.5,0,0,1,0,9" transform="translate(-0.5 13.334) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/><circle cx="2.5" cy="2.5" r="2.5" transform="translate(-1.5 0.834)" fill="rgba(0,0,0,0)" stroke="#000" stroke-width="1"/><circle cx="2.5" cy="2.5" r="2.5" transform="translate(4.5 0.834)" fill="rgba(0,0,0,0)" stroke="#000" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.834 1.834)"><path d="M13034.654,17664.666a1.257,1.257,0,0,1-.967-.449,6.8,6.8,0,0,1-1.521-2.93l.885-.885a5.35,5.35,0,0,0,1.4,3.172.262.262,0,0,0,.2.094.272.272,0,0,0,.19-.08l6.743-6.738a.27.27,0,0,0,.075-.209.251.251,0,0,0-.093-.191,5.347,5.347,0,0,0-3.174-1.393l.89-.889a6.818,6.818,0,0,1,2.932,1.52,1.291,1.291,0,0,1,.447.914,1.27,1.27,0,0,1-.372.953l-6.739,6.738A1.247,1.247,0,0,1,13034.654,17664.666Zm-3.356-6.752v0l-2.632-2.627a.244.244,0,0,0-.187-.08l-.944-.006a.885.885,0,0,1-.8-.541.873.873,0,0,1,.19-.947l4.784-4.789a.878.878,0,0,1,1.494.617l0,.939a.257.257,0,0,0,.075.186l2.634,2.635-.707.707-2.631-2.633a1.274,1.274,0,0,1-.373-.891v-.639l-4.357,4.359.638,0a1.268,1.268,0,0,1,.892.367l2.631,2.633-.706.705Z" transform="translate(-13028.5 -17650.5)"/><line x2="3" y2="3" transform="translate(10.166 10.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line y1="14" x2="14" transform="translate(-0.834 -0.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16.01" height="16.01" viewBox="0 0 16.01 16.01"><g transform="translate(0.01 0.01)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.834 1.834)"><path d="M21.5,13.676c-2.14-1.8-3.949-1.594-4.728-1.374a.767.767,0,0,1-.756-.193L12.536,8.627a.765.765,0,0,1-.225-.538l0-.943a.373.373,0,0,0-.637-.261L6.885,11.67a.373.373,0,0,0,.261.637l.943,0a.765.765,0,0,1,.538.225l3.482,3.482a.767.767,0,0,1,.193.756c-.22.78-.426,2.589,1.374,4.728a.772.772,0,0,0,1.132.046l6.741-6.741A.772.772,0,0,0,21.5,13.676Z" transform="translate(-8.108 -8.108)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"/><line x2="3" y2="3" transform="translate(10.166 10.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.666 -0.666)"><g transform="translate(0.666 0.666)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="5" height="5" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="4" height="4" rx="0.5" fill="none"/></g><g transform="translate(0.666 11.666)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="5" height="5" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="4" height="4" rx="0.5" fill="none"/></g><g transform="translate(11.666 0.666)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="5" height="5" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="4" height="4" rx="0.5" fill="none"/></g><path d="M128.927,78h7v3" transform="translate(-127.761 -69.833)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M143.5,78h4v2" transform="translate(-131.334 -69.833)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M143.5,78h4" transform="translate(-133.334 -64.833)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M143.5,78h4v2" transform="translate(-69.834 148.667) rotate(-90)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M0,0V7H3" transform="translate(9.166 16.166) rotate(-90)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.004 0.005)"><circle cx="8" cy="8" r="8" transform="translate(-0.004 -0.005)"/><path d="M10.943,9.447a3.631,3.631,0,0,1,4.594-2.139,3.5,3.5,0,0,1,2.406,3.3c0,2.331-3.6,3.5-3.6,3.5" transform="translate(-6.447 -4.614)" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y1="1" transform="translate(7.496 12.496)" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.359 0.361)"><g transform="translate(-0.359 -0.361)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.5 2.998)"><path d="M15.834,10.7H5.113a3.39,3.39,0,0,0-3.279,3.49v.019A3.39,3.39,0,0,0,5.113,17.7H7.706" transform="translate(-1.834 -7.698)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><path d="M6.127,7.285l3,3-3,3" transform="translate(5.873 -7.285)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2 2.666)"><g transform="translate(-1 0.333)"><line x2="2" y2="2" transform="translate(1.5 0.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><circle cx="1" cy="1" r="1" transform="translate(-0.5 -1.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g><g transform="translate(9.5 -1.166)"><line x1="2" y2="2" transform="translate(0 1.999)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><circle cx="1" cy="1" r="1" transform="translate(2 -0.001)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g><g transform="translate(5.333 -0.5)"><line y2="3" transform="translate(0.667 0.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><circle cx="1" cy="1" r="1" transform="translate(-0.333 -1.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g><path d="M0,0A3,3,0,0,1,3,3,3,3,0,0,1,0,6" transform="translate(3 13.334) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/><g transform="translate(3 4.334)" fill="none" stroke="#000" stroke-width="1"><rect width="6" height="6" rx="3" stroke="none"/><rect x="0.5" y="0.5" width="5" height="5" rx="2.5" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.667 2.668)"><line x2="13" transform="translate(-1.167 6.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="13" transform="translate(-1.167 3.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><path d="M74.813,4.868l-2.5-2-2.5,2" transform="translate(-66.979 -5.034)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M74.813,2.868l-2.5,2-2.5-2" transform="translate(-66.979 7.965)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.741 0.742)"><g transform="translate(-0.741 -0.742)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g><line x2="9" transform="translate(2.759 7.258)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.167 8)"><line x2="15" transform="translate(0.333 -0.001)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16.001" height="16.414" viewBox="0 0 16.001 16.414"><g transform="translate(0 0.206)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.668 0.667)"><path d="M-351,67l3,3-3,3" transform="translate(362.832 -67.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M-348,73l-3-3,3-3" transform="translate(350.832 -58.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M-365,75V73a2.184,2.184,0,0,1,2.332-2H-351" transform="translate(364.832 -68.167)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M-351,71v2a2.184,2.184,0,0,1-2.332,2H-365" transform="translate(365.832 -63.167)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.332 2.666)"><g transform="translate(-1.332 -0.666)" fill="none"><path d="M2,12a2,2,0,0,1-2-2V3c0-.02,0-.04,0-.06V.6A1.638,1.638,0,0,1,1.43-1l5,0,.693,0L8.559,1H14a2,2,0,0,1,2,2v7a2,2,0,0,1-2,2Z" stroke="none"/><path d="M 14.00040054321289 10.99970054626465 C 14.55169010162354 10.99970054626465 15.00020027160645 10.55079078674316 15.00020027160645 9.999000549316406 L 15.00020027160645 2.999700307846069 C 15.00020027160645 2.447910308837891 14.55169010162354 1.999000310897827 14.00040054321289 1.999000310897827 L 8.046740531921387 1.999000310897827 L 6.609145641326904 0.000567753566429019 L 6.429960250854492 0.0001003410361590795 L 1.435529828071594 0.001898515853099525 C 1.313629150390625 0.01016018912196159 1.001800298690796 0.3027100265026093 1.001800298690796 0.6039003133773804 L 1.001370310783386 2.969350337982178 C 1.001080274581909 2.979450225830078 1.000900268554688 2.989530324935913 1.000900268554688 2.999700307846069 L 1.000900268554688 9.999000549316406 C 1.000900268554688 10.55079078674316 1.449410319328308 10.99970054626465 2.000700235366821 10.99970054626465 L 14.00040054321289 10.99970054626465 M 14.00040054321289 11.99970054626465 L 2.000700235366821 11.99970054626465 C 0.8964002728462219 11.99970054626465 0.0009002700680866838 11.10420036315918 0.0009002700680866838 9.999000549316406 L 0.0009002700680866838 2.999700307846069 C 0.0009002700680866838 2.979730367660522 0.001220270060002804 2.959940433502197 0.001800270052626729 2.940110445022583 C 0.001800270052626729 2.634180307388306 0.001800270052626729 1.307190299034119 0.001800270052626729 0.6039003133773804 C 0.001800270052626729 -0.1970996558666229 0.7128002643585205 -0.994499683380127 1.430100321769714 -0.998099684715271 L 6.429600238800049 -0.999899685382843 L 7.122600078582764 -0.998099684715271 L 8.559240341186523 0.9990003705024719 L 14.00040054321289 0.9990003705024719 C 15.10470008850098 0.9990003705024719 16.00020027160645 1.894500374794006 16.00020027160645 2.999700307846069 L 16.00020027160645 9.999000549316406 C 16.00020027160645 11.10420036315918 15.10470008850098 11.99970054626465 14.00040054321289 11.99970054626465 Z" stroke="none" fill="#000"/></g><g transform="translate(7.335 4.334)"><path d="M0,0,1.5,2,3,0" transform="translate(3.333 0.999) rotate(180)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y2="4" transform="translate(1.833 -0.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.5 0.5)"><path d="M1222.934,8.321a3.643,3.643,0,0,1-2.507,2.507m0-7a3.644,3.644,0,0,1,2.507,2.509m-7,0a3.645,3.645,0,0,1,2.508-2.509m0,7a3.641,3.641,0,0,1-2.509-2.507" transform="translate(-1211.934 0.169)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><path d="M1224.807,8.054c-.481,3.218-1.954,4.146-4.643,4.643m0-13a5.358,5.358,0,0,1,4.643,4.643m-13,0A5.364,5.364,0,0,1,1216.449-.3m0,13a5.227,5.227,0,0,1-4.643-4.643" transform="translate(-1210.807 1.304)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><rect width="3" height="4" rx="1" transform="translate(6 11)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"/><rect width="4" height="3" rx="1.333" transform="translate(11 6)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"/><rect width="4" height="3" rx="1" transform="translate(0 6)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"/><rect width="3" height="4" rx="1" transform="translate(6)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2 3.332)"><path d="M-2872.324,224.505v-3h-3" transform="translate(2885.824 -222.339)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M-2875.273,238.905h3v-3" transform="translate(2885.773 -228.736)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M-2893.122,221.558h-3v3" transform="translate(2894.623 -222.392)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M-2896.071,235.958v3h3" transform="translate(2894.572 -228.791)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M-2891.321,231.973h3v-1h-1v-5l-2,1v1l1-.5v3.5h-1Z" transform="translate(2892.322 -224.306)"/><path d="M-2891.321,231.973h3v-1h-1v-5l-2,1v1l1-.5v3.5h-1Z" transform="translate(2899.322 -224.306)"/><path d="M-2884.453,228.574h1v-1h-1Zm0,3h1v-1h-1Z" transform="translate(2889.453 -224.905)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.667 2)"><path d="M-2075.62,160.412l-2-2-2,2" transform="translate(2082.953 -156.911)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M-2079.594,167.06l2,2,2-2" transform="translate(2082.927 -158.558)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line x2="15" transform="translate(-2.167 -1.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x2="15" transform="translate(-2.167 13.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.001" viewBox="0 0 16 16.001"><g transform="translate(0 0.001)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(14 2.666) rotate(90)"><path d="M-2075.62,160.412l-2-2-2,2" transform="translate(2082.955 -156.914)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M-2079.594,167.06l2,2,2-2" transform="translate(2082.928 -158.559)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line x2="15" transform="translate(-2.167 -1.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x2="15" transform="translate(-2.167 13.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.374 0.374)"><line x2="6" y2="6" transform="translate(8.626 8.625)" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><g transform="translate(-0.374 -0.374)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><circle cx="5.5" cy="5.5" r="5.5" stroke="none"/><circle cx="5.5" cy="5.5" r="5" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.666 2.666)"><g transform="translate(5.334 -1.666)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"><rect width="8" height="5" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="7" height="4" rx="0.5" fill="none"/></g><g transform="translate(7.333 5.333)"><g transform="translate(-0.999 2)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="6" height="5" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="5" height="4" rx="0.5" fill="none"/></g><path d="M259.1,7V6.133A1.356,1.356,0,0,1,260.6,5h0a1.356,1.356,0,0,1,1.5,1.133V7" transform="translate(-258.594 -4.999)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g><path d="M812.988,73.812h.944V70.946L812.9,71.2v-.976l2.165-.5v4.091h.835v.909h-2.911Z" transform="translate(-813.565 -71.387)"/><path d="M812.708,80.3a1.333,1.333,0,0,1,.858-1.385l.908-.456a.481.481,0,0,0,.271-.514v-.263c0-.257-.109-.373-.338-.373h-.44c-.231,0-.341.112-.341.373v.533h-.93v-.479a1.2,1.2,0,0,1,1.318-1.384h.341a1.2,1.2,0,0,1,1.317,1.367v.264a1.322,1.322,0,0,1-.857,1.368l-.9.458a.446.446,0,0,0-.279.456v.16H815.7v.926h-2.988Z" transform="translate(-813.362 -70.016)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.334 -0.334)"><g transform="translate(-3.666 -3.682)" fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M11.112,19.016h1.775l.217-1.743.3-.083a5.315,5.315,0,0,0,1.256-.521l.272-.157,1.387,1.082,1.257-1.257L16.5,14.95l.158-.273a5.331,5.331,0,0,0,.521-1.256l.083-.3L19,12.9V11.128l-1.742-.216-.083-.3a5.322,5.322,0,0,0-.521-1.257L16.5,9.081l1.082-1.387L16.343,6.457l-.021-.021L14.934,7.519l-.272-.158a5.326,5.326,0,0,0-1.256-.521l-.3-.083-.217-1.742H11.112L10.9,6.758l-.3.083a5.327,5.327,0,0,0-1.256.521l-.272.158L7.678,6.436,6.421,7.694,7.5,9.081l-.157.273a5.312,5.312,0,0,0-.521,1.256l-.083.3L5,11.128V12.9l1.742.217.083.3a5.312,5.312,0,0,0,.521,1.256l.157.273L6.421,16.338l1.257,1.257,1.387-1.082.272.157a5.326,5.326,0,0,0,1.256.521l.3.083Z" stroke="none"/><path d="M 12.88772583007812 19.01599502563477 L 13.10472583770752 17.27298545837402 L 13.40572643280029 17.19026565551758 C 13.85371589660645 17.06744575500488 14.27690601348877 16.8924446105957 14.66190624237061 16.66971588134766 L 14.93426609039307 16.51253509521484 L 16.32153701782227 17.59499549865723 L 17.5789966583252 16.3375358581543 L 16.49653625488281 14.9502649307251 L 16.65435600280762 14.67726516723633 C 16.87644577026367 14.29226493835449 17.05208587646484 13.86972522735596 17.17490577697754 13.42108535766602 L 17.25762557983398 13.12072467803955 L 18.99999618530273 12.90371513366699 L 18.99999618530273 11.12763500213623 L 17.25762557983398 10.91126537322998 L 17.17490577697754 10.61026477813721 C 17.05208587646484 10.16163539886475 16.87644577026367 9.73908519744873 16.65371704101562 9.35345458984375 L 16.49653625488281 9.081085205078125 L 17.5789966583252 7.693815231323242 L 16.32153701782227 6.436365127563477 L 14.93426609039307 7.519454956054688 L 14.66190624237061 7.361635208129883 C 14.27626609802246 7.138905048370361 13.85371589660645 6.963904857635498 13.40572643280029 6.841084957122803 L 13.10472583770752 6.758365154266357 L 12.88772583007812 5.016005039215088 L 11.11226654052734 5.016005039215088 L 10.89526653289795 6.758365154266357 L 10.59426593780518 6.841084957122803 C 10.14626598358154 6.963904857635498 9.723726272583008 7.138905048370361 9.338086128234863 7.361635208129883 L 9.065726280212402 7.519454956054688 L 7.67845630645752 6.436365127563477 L 6.420996189117432 7.693815231323242 L 7.503456115722656 9.081085205078125 L 7.346266269683838 9.354084968566895 C 7.123546123504639 9.73908519744873 6.947906017303467 10.16163539886475 6.825086116790771 10.60963535308838 L 6.742356300354004 10.91126537322998 L 4.999996185302734 11.12763500213623 L 4.999996185302734 12.90371513366699 L 6.742356300354004 13.12072467803955 L 6.825086116790771 13.42172527313232 C 6.947906017303467 13.86972522735596 7.123546123504639 14.29226493835449 7.346266269683838 14.67726516723633 L 7.503456115722656 14.9502649307251 L 6.420996189117432 16.3375358581543 L 7.67845630645752 17.59499549865723 L 9.065726280212402 16.51253509521484 L 9.338086128234863 16.66971588134766 C 9.723726272583008 16.8924446105957 10.14626598358154 17.06744575500488 10.59426593780518 17.19026565551758 L 10.89526653289795 17.27298545837402 L 11.11226654052734 19.01599502563477 L 12.88772583007812 19.01599502563477 M 12.88772583007812 20.01599502563477 L 11.11226654052734 20.01599502563477 C 10.60775661468506 20.01599502563477 10.18225574493408 19.64018440246582 10.11992645263672 19.13953590393066 L 9.984247207641602 18.04972457885742 C 9.698749542236328 17.95437240600586 9.422785758972168 17.84021377563477 9.158840179443359 17.70827484130859 L 8.293625831604004 18.38338470458984 C 7.895555973052979 18.69399642944336 7.328375816345215 18.65913581848145 6.971346378326416 18.30210494995117 L 5.713886260986328 17.04464530944824 C 5.356856346130371 16.68761444091797 5.321996212005615 16.12043571472168 5.632606029510498 15.7223653793335 L 6.307712078094482 14.85715579986572 C 6.175585269927979 14.59335899353027 6.061211585998535 14.31736087799072 5.965704441070557 14.03171634674072 L 4.876406192779541 13.89604473114014 C 4.375776290893555 13.83369541168213 3.999996185302734 13.40820503234863 3.999996185302734 12.90371513366699 L 3.999996185302734 11.12763500213623 C 3.999996185302734 10.62300491333008 4.375976085662842 10.19744491577148 4.876756191253662 10.13525485992432 L 5.965573787689209 10.00004291534424 C 6.061025619506836 9.714530944824219 6.175402641296387 9.438493728637695 6.307747840881348 9.174239158630371 L 5.632606029510498 8.308984756469727 C 5.321986198425293 7.910904884338379 5.356856346130371 7.343735218048096 5.71389627456665 6.98670482635498 L 6.971356391906738 5.729255199432373 C 7.328456401824951 5.372154712677002 7.895776748657227 5.337355613708496 8.293846130371094 5.648145198822021 L 9.158564567565918 6.32326078414917 C 9.422760963439941 6.191184043884277 9.698747634887695 6.077009677886963 9.984280586242676 5.981636047363281 L 10.11993598937988 4.892415046691895 C 10.18228626251221 4.391785144805908 10.6077766418457 4.016005039215088 11.11226654052734 4.016005039215088 L 12.88772583007812 4.016005039215088 C 13.39221572875977 4.016005039215088 13.81770610809326 4.391785144805908 13.88005638122559 4.892415046691895 L 14.01570987701416 5.98161792755127 C 14.30133724212646 6.077014923095703 14.57741451263428 6.191224098205566 14.84146308898926 6.323233127593994 L 15.70614624023438 5.648145198822021 C 16.10421562194824 5.337356090545654 16.67153358459473 5.372154235839844 17.02864646911621 5.729255199432373 L 18.28609657287598 6.98670482635498 C 18.64313697814941 7.343735218048096 18.67800712585449 7.910904884338379 18.36738586425781 8.308984756469727 L 17.69232940673828 9.174130439758301 C 17.82462120056152 9.438538551330566 17.93893432617188 9.714608192443848 18.0343074798584 10.00003147125244 L 19.12322616577148 10.13525485992432 C 19.62401580810547 10.19744491577148 19.99999618530273 10.62300491333008 19.99999618530273 11.12763500213623 L 19.99999618530273 12.90371513366699 C 19.99999618530273 13.40820503234863 19.62421607971191 13.83369541168213 19.12358665466309 13.89604473114014 L 18.03422737121582 14.03172302246094 C 17.93899536132812 14.31673431396484 17.82472991943359 14.59275817871094 17.69241905212402 14.85733413696289 L 18.36738586425781 15.7223653793335 C 18.6779956817627 16.12043571472168 18.64313697814941 16.68761444091797 18.28610610961914 17.04464530944824 L 17.02864646911621 18.30210494995117 C 16.67161560058594 18.65913200378418 16.10443878173828 18.69399833679199 15.70636653900146 18.38338470458984 L 14.84128475189209 17.7083797454834 C 14.57789993286133 17.840087890625 14.3018970489502 17.95422554016113 14.01574230194092 18.04974174499512 L 13.88006591796875 19.13953590393066 C 13.81773662567139 19.64018440246582 13.39223575592041 20.01599502563477 12.88772583007812 20.01599502563477 Z" stroke="none" fill="#000"/></g><g transform="translate(5.333 5.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" 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="16.001" height="16" viewBox="0 0 16.001 16"><rect width="16" height="16" transform="translate(0)" fill="#fff" opacity="0"/><g transform="translate(1.195 0.234)"><g transform="translate(-1.195 4.766)" fill="none" stroke="#000" stroke-miterlimit="10" 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(8.806 9.766)" fill="none" stroke="#000" stroke-miterlimit="10" 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(8.806 -0.234)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><circle cx="3" cy="3" r="3" stroke="none"/><circle cx="3" cy="3" r="2.5" fill="none"/></g><line x1="5" y1="2" transform="translate(4.306 9.266)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line x1="5" y2="1.998" transform="translate(3.806 3.766)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" transform="translate(0)" fill="#fff" opacity="0"/><g transform="translate(0 1)"><g transform="translate(-0.304 0)" fill="none"><path d="M11.255,0a2.1,2.1,0,0,1,1.8,1.008l2.97,5a1.934,1.934,0,0,1,0,1.985l-2.97,5A2.1,2.1,0,0,1,11.255,14h-5.9a2.1,2.1,0,0,1-1.8-1.008l-2.97-5a1.934,1.934,0,0,1,0-1.985l2.97-5A2.1,2.1,0,0,1,5.352,0Z" stroke="none"/><path d="M 5.352182388305664 1 C 4.959092140197754 1 4.596921920776367 1.198630332946777 4.406991958618164 1.518389701843262 L 1.437182426452637 6.51839017868042 C 1.258071899414062 6.819960117340088 1.258071899414062 7.180039882659912 1.437182426452637 7.48160982131958 L 4.407002449035645 12.48161029815674 C 4.596921920776367 12.80136966705322 4.959092140197754 13 5.352182388305664 13 L 11.25482177734375 13 C 11.64791202545166 13 12.01008224487305 12.80136966705322 12.20001220703125 12.48161029815674 L 15.16982173919678 7.481619834899902 C 15.34894180297852 7.180039882659912 15.34894180297852 6.819960117340088 15.16983222961426 6.51839017868042 L 12.20000267028809 1.518389701843262 C 12.01008224487305 1.198630332946777 11.64791202545166 1 11.25482177734375 1 L 5.352182388305664 1 M 5.352182388305664 0 L 11.25482177734375 0 C 12.00084209442139 0 12.68966197967529 0.3845701217651367 13.05978202819824 1.007719993591309 L 16.02960205078125 6.007719993591309 C 16.39480209350586 6.622590065002441 16.39480209350586 7.377409934997559 16.02960205078125 7.992280006408691 L 13.05978202819824 12.99228000640869 C 12.68966197967529 13.61542987823486 12.00084209442139 14 11.25482177734375 14 L 5.352182388305664 14 C 4.606162071228027 14 3.917342185974121 13.61542987823486 3.547222137451172 12.99228000640869 L 0.5774116516113281 7.992280006408691 C 0.2122020721435547 7.377409934997559 0.2122020721435547 6.622590065002441 0.5774116516113281 6.007719993591309 L 3.547222137451172 1.007719993591309 C 3.917342185974121 0.3845701217651367 4.606162071228027 0 5.352182388305664 0 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.333 1.334)"><path d="M0,0A3,3,0,0,1,3,3,3,3,0,0,1,0,6" transform="translate(3.667 14.665) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/><g transform="translate(3.667 5.666)" fill="none" stroke="#000" stroke-width="1"><rect width="6" height="6" rx="3" stroke="none"/><rect x="0.5" y="0.5" width="5" height="5" rx="2.5" fill="none"/></g><rect width="4" height="4" rx="1" transform="translate(-1.333 1.666)"/><path d="M2.152,1.422a1.017,1.017,0,0,1,1.726,0L5.12,3.45a.986.986,0,0,1-.863,1.493H1.773A.986.986,0,0,1,.91,3.45Z" transform="translate(9.402 0.723)"/><path d="M1.393.464a1,1,0,0,1,1.214,0l.839.641a1,1,0,0,1,.348,1.09l-.34,1.1A1,1,0,0,1,2.5,4h-1a1,1,0,0,1-.955-.7l-.34-1.1A1,1,0,0,1,.554,1.1Z" transform="translate(4.667 -1.334)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0 2)"><g transform="translate(11.891 0) rotate(90)" fill="none"><path d="M4.947,10.318a1.255,1.255,0,0,0,2.106,0l4.8-8.693A1.1,1.1,0,0,0,10.8,0H1.2A1.1,1.1,0,0,0,.148,1.625Z" stroke="none"/><path d="M 6.000000953674316 9.890628814697266 C 6.023303031921387 9.890628814697266 6.139097213745117 9.886807441711426 6.189573287963867 9.813249588012695 L 10.99264049530029 1.113249063491821 C 10.99741554260254 1.105224370956421 10.99929237365723 1.100311040878296 10.9998607635498 1.099903464317322 C 10.99519348144531 1.076210975646973 10.93906497955322 0.9999990463256836 10.79864120483398 0.9999990463256836 L 1.201360940933228 0.9999990463256836 C 1.058610916137695 0.9999990463256836 1.002970933914185 1.078759074211121 0.9997709393501282 1.097339034080505 C 0.9997809529304504 1.097389101982117 1.001001000404358 1.102559089660645 1.007360935211182 1.113249063491821 L 1.023651003837585 1.141649127006531 L 5.810414791107178 9.813224792480469 C 5.860899448394775 9.886800765991211 5.976698875427246 9.890628814697266 6.000000953674316 9.890628814697266 M 6.000004768371582 10.89062690734863 C 5.587088584899902 10.89062690734863 5.174170970916748 10.6997537612915 4.946820735931396 10.31800937652588 L 0.1481809467077255 1.624919056892395 C -0.2878690361976624 0.8927190899848938 0.290740966796875 -9.269714382753591e-07 1.201360940933228 -9.269714382753591e-07 L 10.79864120483398 -9.269714382753591e-07 C 11.70926094055176 -9.269714382753591e-07 12.28787136077881 0.8927190899848938 11.85182094573975 1.624919056892395 L 7.053181171417236 10.31800937652588 C 6.825836181640625 10.6997537612915 6.412920951843262 10.89062690734863 6.000004768371582 10.89062690734863 Z" stroke="none" fill="#000"/></g><line y2="11" transform="translate(14.401 0.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.563 1.051)"><g transform="translate(14.526 -0.049) rotate(90)" fill="none"><path d="M5.945,1.666a1.249,1.249,0,0,1,2.106,0l4.8,8.772a1.113,1.113,0,0,1-1.053,1.64H2.2a1.113,1.113,0,0,1-1.053-1.64Z" stroke="none"/><path d="M 6.998587131500244 2.088330268859863 C 6.966475963592529 2.088330268859863 6.860489368438721 2.094168663024902 6.811100482940674 2.167316436767578 L 2.007977485656738 10.94659042358398 C 1.996546745300293 10.96596050262451 1.994787216186523 10.96894073486328 2.006787300109863 10.98996067047119 C 2.01518726348877 11.00467014312744 2.063966751098633 11.07804012298584 2.199947357177734 11.07804012298584 L 11.79722690582275 11.07804012298584 C 11.93320655822754 11.07804012298584 11.98198699951172 11.00467014312744 11.99038696289062 10.98996067047119 C 12.00238704681396 10.96894073486328 12.0006275177002 10.96596050262451 11.98919677734375 10.94659042358398 L 11.97309684753418 10.91826057434082 L 7.186087608337402 2.167341232299805 C 7.13668966293335 2.094175338745117 7.030698299407959 2.088330268859863 6.998587131500244 2.088330268859863 M 6.998587131500244 1.088330268859863 C 7.411504745483398 1.088330268859863 7.824422359466553 1.280940055847168 8.051767349243164 1.666160583496094 L 12.85040664672852 10.43834018707275 C 13.28645706176758 11.17720031738281 12.70784759521484 12.07804012298584 11.79722690582275 12.07804012298584 L 2.199947357177734 12.07804012298584 C 1.289326667785645 12.07804012298584 0.7107172012329102 11.17720031738281 1.146766662597656 10.43834018707275 L 5.945406913757324 1.666160583496094 C 6.172751903533936 1.280940055847168 6.58566951751709 1.088330268859863 6.998587131500244 1.088330268859863 Z" stroke="none" fill="#000"/></g><line y2="11" transform="translate(-0.063 1.449)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.667 -0.001)"><g transform="translate(0.667 2)" fill="none"><path d="M3,0H13a3,3,0,0,1,3,3V7a3,3,0,0,1-3,3H3A3,3,0,0,1,0,7V3A3,3,0,0,1,3,0Z" stroke="none"/><path d="M 3 1 C 1.897199630737305 1 1 1.897199630737305 1 3 L 1 7 C 1 8.102800369262695 1.897199630737305 9 3 9 L 13 9 C 14.1028003692627 9 15 8.102800369262695 15 7 L 15 3 C 15 1.897199630737305 14.1028003692627 1 13 1 L 3 1 M 3 0 L 13 0 C 14.65684986114502 0 16 1.34315013885498 16 3 L 16 7 C 16 8.65684986114502 14.65684986114502 10 13 10 L 3 10 C 1.34315013885498 10 0 8.65684986114502 0 7 L 0 3 C 0 1.34315013885498 1.34315013885498 0 3 0 Z" stroke="none" fill="#000"/></g><line x2="9" transform="translate(4.167 5.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line x2="5" transform="translate(4.167 8.501)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><g transform="translate(1.798 10.594)" stroke-linecap="round"><path d="M 2.368659257888794 3.199211835861206 L 2.368653535842896 0.90631103515625 L 4.661554336547852 0.90631103515625 L 2.368659257888794 3.199211835861206 Z" stroke="none"/><path d="M 2.868655204772949 1.40631103515625 L 2.868656635284424 1.992092847824097 L 3.454436779022217 1.40631103515625 L 2.868655204772949 1.40631103515625 M 1.86865234375 0.40631103515625 L 5.86865234375 0.40631103515625 L 1.868662357330322 4.40631103515625 L 1.86865234375 0.40631103515625 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-1072 -1899)"><g transform="translate(1071.877 1901.375)" fill="none" stroke-linecap="round"><path d="M13.124,10.624h-10A3,3,0,0,1,2.14,4.789,3.5,3.5,0,0,1,7.135,1.966a4,4,0,0,1,6.989,2.659q0,.085,0,.169a3,3,0,0,1-.969,5.83h-.026Z" stroke="none"/><path d="M 13.12470054626465 9.623600006103516 L 13.14201068878174 9.623470306396484 C 14.23461055755615 9.613849639892578 15.12350082397461 8.716850280761719 15.12350082397461 7.623899936676025 C 15.12350082397461 6.776319980621338 14.58685111999512 6.017970085144043 13.78812122344971 5.736850261688232 L 13.09018039703369 5.491209983825684 L 13.12098121643066 4.751950263977051 C 13.12278079986572 4.708559989929199 13.12370109558105 4.665580272674561 13.12370109558105 4.624199867248535 C 13.12370109558105 2.969720125198364 11.77809047698975 1.623700022697449 10.12410068511963 1.623700022697449 C 9.268450736999512 1.623700022697449 8.451120376586914 1.990650057792664 7.881690979003906 2.630460023880005 L 7.381270885467529 3.192730188369751 L 6.70249080657959 2.867410182952881 C 6.364940643310547 2.70563006401062 6.002120971679688 2.623600006103516 5.624100685119629 2.623600006103516 C 4.327390670776367 2.623600006103516 3.257470846176147 3.59522008895874 3.13537073135376 4.883679866790771 L 3.074750900268555 5.523360252380371 L 2.467730760574341 5.734050273895264 C 1.66412079334259 6.012969970703125 1.124200820922852 6.772439956665039 1.124200820922852 7.623899936676025 C 1.124200820922852 8.726539611816406 2.021260738372803 9.623600006103516 3.12480092048645 9.623600006103516 L 13.12470054626465 9.623600006103516 M 13.12470054626465 10.62360000610352 L 3.12480092048645 10.62360000610352 C 3.124560594558716 10.62360000610352 3.124140739440918 10.62360000610352 3.123900890350342 10.62360000610352 C 1.467000842094421 10.62360000610352 0.1242008209228516 9.280799865722656 0.1242008209228516 7.623899936676025 C 0.1242008209228516 6.311749935150146 0.9664608240127563 5.196599960327148 2.139830827713013 4.789340019226074 C 2.308160781860352 3.013040065765381 3.803700923919678 1.623600125312805 5.624100685119629 1.623600125312805 C 6.164960861206055 1.623600125312805 6.67733097076416 1.746430039405823 7.134690761566162 1.965630054473877 C 7.867420673370361 1.142340064048767 8.935200691223145 0.6237000823020935 10.12410068511963 0.6237000823020935 C 12.33270072937012 0.6237000823020935 14.12370109558105 2.414700031280518 14.12370109558105 4.624199867248535 C 14.12370109558105 4.680950164794922 14.12245082855225 4.737390041351318 14.12011051177979 4.793570041656494 C 15.28711128234863 5.204299926757812 16.12350082397461 6.316299915313721 16.12350082397461 7.623899936676025 C 16.12350082397461 9.27180004119873 14.79529094696045 10.60894966125488 13.15081119537354 10.6234302520752 C 13.14214038848877 10.62353992462158 13.13339042663574 10.62360000610352 13.12470054626465 10.62360000610352 Z" stroke="none" fill="#000"/></g><g transform="translate(1066.75 1907.125)"><line y2="2" transform="translate(13.25 -0.125)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><g transform="translate(12.25 -1.125)" fill="none" stroke="#000" stroke-width="1"><circle cx="1" cy="1" r="1" stroke="none"/><circle cx="1" cy="1" r="0.5" fill="none"/></g></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.372 0.371)"><path d="M7.5,0,9.271,5.729H15L10.365,9.271,12.135,15,7.5,11.459,2.865,15,4.635,9.271,0,5.729H5.729Z" transform="translate(0.128 0.129)" stroke="#000" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.167 0.166)"><path d="M7.5,0,9.271,5.729H15L10.365,9.271,12.135,15,7.5,11.459,2.865,15,4.635,9.271,0,5.729H5.729Z" transform="translate(0.333 0.334)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.009" viewBox="0 0 16 16.009"><g transform="translate(0 0.009)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.001 -0.998)"><rect width="3" height="8" rx="1" transform="translate(0.499 7.499)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/><path d="M21.784,11.34h-.749l.059-.4h.69a.978.978,0,1,0,0-1.956h-1.5L16.786,9s.918-3.613-1.3-4.8c-1.424-.687-1.7.6-1.7.6V7.5l-1,.5s-1.992,1.2-2,2.5v6a1.314,1.314,0,0,0,1.5,1.5h8a1.1,1.1,0,0,0,1.12-.978.993.993,0,0,0-1-.978h-.068l.059-.4h.7a.978.978,0,1,0,0-1.955h-.408l.059-.4h1.039a.978.978,0,1,0,0-1.956Z" transform="translate(-7.287 -2.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.574 0.574)"><circle cx="4" cy="4" r="4" transform="translate(3.426 3.426)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"/><line y1="2" transform="translate(7.426 -0.074)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line y1="2" transform="translate(7.426 12.926)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="2" transform="translate(12.926 7.426)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="2" transform="translate(-0.074 7.426)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="2" y2="2" transform="translate(0.926 0.926)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x1="2" y2="2" transform="translate(2.926 14.426) rotate(180)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line y1="2" x2="2" transform="translate(11.926 0.926)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x1="2" y1="2" transform="translate(13.926 14.426) rotate(180)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></svg>
|