@colijnit/corecomponents_v12 254.1.10 → 255.1.1
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/.browserslistrc +17 -0
- package/.editorconfig +16 -0
- package/.idea/CoreComponents_v12.iml +12 -0
- package/.idea/jpa-buddy.xml +6 -0
- package/.idea/misc.xml +9 -0
- package/.idea/modules.xml +8 -0
- package/.idea/vcs.xml +6 -0
- package/CoreComponents_v12.iml +12 -0
- package/README.md +12 -9
- package/angular.json +146 -0
- package/dist/corecomponentstest/favicon.ico +0 -0
- package/dist/corecomponentstest/index.html +13 -0
- package/dist/corecomponentstest/main.js +24644 -0
- package/dist/corecomponentstest/main.js.map +1 -0
- package/dist/corecomponentstest/polyfills.js +2891 -0
- package/dist/corecomponentstest/polyfills.js.map +1 -0
- package/dist/corecomponentstest/runtime.js +161 -0
- package/dist/corecomponentstest/runtime.js.map +1 -0
- package/dist/corecomponentstest/styles.css +3075 -0
- package/dist/corecomponentstest/styles.css.map +1 -0
- package/dist/corecomponentstest/vendor.js +147126 -0
- package/dist/corecomponentstest/vendor.js.map +1 -0
- package/karma.conf.js +44 -0
- package/move-assets.js +14 -0
- package/package.json +44 -23
- package/projects/corecomponents/README.md +24 -0
- package/projects/corecomponents/karma.conf.js +44 -0
- package/projects/corecomponents/ng-package.json +10 -0
- package/projects/corecomponents/package-lock.json +13 -0
- package/projects/corecomponents/package.json +20 -0
- package/projects/corecomponents/src/lib/components/article-tile/article-tile.component.ts +96 -0
- package/projects/corecomponents/src/lib/components/article-tile/article-tile.module.ts +34 -0
- package/projects/corecomponents/src/lib/components/base/base-input.component.ts +988 -0
- package/projects/corecomponents/src/lib/components/base/base.module.ts +22 -0
- package/projects/corecomponents/src/lib/components/base/commit-buttons/commit-buttons.component.ts +120 -0
- package/projects/corecomponents/src/lib/components/base/commit-buttons/commit-buttons.module.ts +19 -0
- package/projects/corecomponents/src/lib/components/base/dialog-base.component.ts +8 -0
- package/projects/corecomponents/src/lib/components/base-input-date-picker/base-input-date-picker.directive.ts +32 -0
- package/projects/corecomponents/src/lib/components/base-input-time/base-input-time-directive.ts +31 -0
- package/projects/corecomponents/src/lib/components/button/button.component.ts +117 -0
- package/projects/corecomponents/src/lib/components/button/button.module.ts +18 -0
- package/projects/corecomponents/src/lib/components/calendar/calendar-template.component.ts +392 -0
- package/projects/corecomponents/src/lib/components/calendar/calendar.component.ts +54 -0
- package/projects/corecomponents/src/lib/components/calendar/calendar.module.ts +26 -0
- package/projects/corecomponents/src/lib/components/card/card.component.ts +94 -0
- package/projects/corecomponents/src/lib/components/card/card.module.ts +34 -0
- package/projects/corecomponents/src/lib/components/carousel/carousel.component.ts +128 -0
- package/projects/corecomponents/src/lib/components/carousel/carousel.module.ts +28 -0
- package/projects/corecomponents/src/lib/components/carousel-3d/carousel-3d.component.ts +392 -0
- package/projects/corecomponents/src/lib/components/carousel-3d/carousel-3d.module.ts +17 -0
- package/projects/corecomponents/src/lib/components/carousel-3d/carouselItem.ts +77 -0
- package/projects/corecomponents/src/lib/components/checkmark-overlay/checkmark-overlay.component.ts +99 -0
- package/projects/corecomponents/src/lib/components/checkmark-overlay/checkmark-overlay.module.ts +18 -0
- package/projects/corecomponents/src/lib/components/co-dialog/animation.ts +2 -0
- package/projects/corecomponents/src/lib/components/co-dialog/co-dialog.component.ts +130 -0
- package/projects/corecomponents/src/lib/components/co-dialog/co-dialog.module.ts +17 -0
- package/projects/corecomponents/src/lib/components/co-dialog-wizard/co-dialog-wizard.component.ts +50 -0
- package/projects/corecomponents/src/lib/components/co-dialog-wizard/co-dialog-wizard.module.ts +15 -0
- package/projects/corecomponents/src/lib/components/collapsible/collapsible.component.ts +114 -0
- package/projects/corecomponents/src/lib/components/collapsible/collapsible.module.ts +17 -0
- package/projects/corecomponents/src/lib/components/color-picker/color-picker.component.ts +40 -0
- package/projects/corecomponents/src/lib/components/color-picker/color-picker.module.ts +19 -0
- package/projects/corecomponents/src/lib/components/core-dialog/confirmation-dialog/confirmation-dialog.component.ts +86 -0
- package/projects/corecomponents/src/lib/components/core-dialog/core-dialog.module.ts +37 -0
- package/projects/corecomponents/src/lib/components/core-dialog/core-dialog.service.ts +61 -0
- package/projects/corecomponents/src/lib/components/core-dialog/core-dynamic-component.service.ts +101 -0
- package/projects/corecomponents/src/lib/components/double-calendar/double-calendar.component.ts +102 -0
- package/projects/corecomponents/src/lib/components/double-calendar/double-calendar.module.ts +23 -0
- package/projects/corecomponents/src/lib/components/filter-item/filter-item-viewmodel.ts +20 -0
- package/projects/corecomponents/src/lib/components/filter-item/filter-item.component.ts +715 -0
- package/projects/corecomponents/src/lib/components/filter-item/filter-item.module.ts +42 -0
- package/projects/corecomponents/src/lib/components/filter-item/filter-viewmodel.ts +11 -0
- package/projects/corecomponents/src/lib/components/form/form.component.ts +211 -0
- package/projects/corecomponents/src/lib/components/form/form.module.ts +22 -0
- package/projects/corecomponents/src/lib/components/grid-toolbar/grid-toolbar.component.ts +62 -0
- package/projects/corecomponents/src/lib/components/grid-toolbar/grid-toolbar.module.ts +21 -0
- package/projects/corecomponents/src/lib/components/grid-toolbar-button/grid-toolbar-button.component.ts +28 -0
- package/projects/corecomponents/src/lib/components/grid-toolbar-button/grid-toolbar-button.module.ts +17 -0
- package/projects/corecomponents/src/lib/components/icon/icon-cache.service.ts +57 -0
- package/projects/corecomponents/src/lib/components/icon/icon.component.ts +54 -0
- package/projects/corecomponents/src/lib/components/icon/icon.module.ts +24 -0
- package/projects/corecomponents/src/lib/components/icon-collapse-handle/icon-collapse-handle.component.ts +75 -0
- package/projects/corecomponents/src/lib/components/icon-collapse-handle/icon-collapse-handle.module.ts +21 -0
- package/projects/corecomponents/src/lib/components/image/image.component.ts +51 -0
- package/projects/corecomponents/src/lib/components/image/image.module.ts +12 -0
- package/projects/corecomponents/src/lib/components/input-checkbox/input-checkbox.component.ts +85 -0
- package/projects/corecomponents/src/lib/components/input-checkbox/input-checkbox.module.ts +17 -0
- package/projects/corecomponents/src/lib/components/input-date-picker/input-date-picker.component.ts +103 -0
- package/projects/corecomponents/src/lib/components/input-date-picker/input-date-picker.module.ts +24 -0
- package/projects/corecomponents/src/lib/components/input-date-range-picker/input-date-range-picker.component.ts +155 -0
- package/projects/corecomponents/src/lib/components/input-date-range-picker/input-date-range-picker.module.ts +25 -0
- package/projects/corecomponents/src/lib/components/input-number-picker/input-number-picker.component.ts +378 -0
- package/projects/corecomponents/src/lib/components/input-number-picker/input-number-picker.module.ts +20 -0
- package/projects/corecomponents/src/lib/components/input-radio-button/input-radio-button.component.ts +86 -0
- package/projects/corecomponents/src/lib/components/input-radio-button/input-radio-button.module.ts +17 -0
- package/projects/corecomponents/src/lib/components/input-scanner/bar-code-scanner.ts +25 -0
- package/projects/corecomponents/src/lib/components/input-scanner/input-scanner.component.ts +89 -0
- package/projects/corecomponents/src/lib/components/input-scanner/input-scanner.module.ts +19 -0
- package/projects/corecomponents/src/lib/components/input-scanner/scanner.service.ts +28 -0
- package/projects/corecomponents/src/lib/components/input-search/input-search.component.ts +90 -0
- package/projects/corecomponents/src/lib/components/input-search/input-search.module.ts +20 -0
- package/projects/corecomponents/src/lib/components/input-text/input-text.component.ts +307 -0
- package/projects/corecomponents/src/lib/components/input-text/input-text.module.ts +31 -0
- package/projects/corecomponents/src/lib/components/input-textarea/input-textarea.component.ts +81 -0
- package/projects/corecomponents/src/lib/components/input-textarea/input-textarea.module.ts +25 -0
- package/projects/corecomponents/src/lib/components/input-time/input-time.component.ts +72 -0
- package/projects/corecomponents/src/lib/components/input-time/input-time.module.ts +22 -0
- package/projects/corecomponents/src/lib/components/level-indicator/level-indicator-level.enum.ts +5 -0
- package/projects/corecomponents/src/lib/components/level-indicator/level-indicator.component.ts +42 -0
- package/projects/corecomponents/src/lib/components/level-indicator/level-indicator.module.ts +13 -0
- package/projects/corecomponents/src/lib/components/list-of-icons/list-of-icons.component.ts +68 -0
- package/projects/corecomponents/src/lib/components/list-of-icons/list-of-icons.module.ts +22 -0
- package/projects/corecomponents/src/lib/components/list-of-values/list-of-values-multiselect-popup.component.ts +132 -0
- package/projects/corecomponents/src/lib/components/list-of-values/list-of-values-popup.component.ts +291 -0
- package/projects/corecomponents/src/lib/components/list-of-values/list-of-values.component.ts +257 -0
- package/projects/corecomponents/src/lib/components/list-of-values/list-of-values.module.ts +35 -0
- package/projects/corecomponents/src/lib/components/loader/loader.component.ts +82 -0
- package/projects/corecomponents/src/lib/components/loader/loader.module.ts +17 -0
- package/projects/corecomponents/src/lib/components/pagination/paginate.pipe.ts +116 -0
- package/projects/corecomponents/src/lib/components/pagination/pagination-instance.ts +18 -0
- package/projects/corecomponents/src/lib/components/pagination/pagination.component.ts +160 -0
- package/projects/corecomponents/src/lib/components/pagination/pagination.module.ts +26 -0
- package/projects/corecomponents/src/lib/components/pagination/pagination.service.ts +99 -0
- package/projects/corecomponents/src/lib/components/pagination-bar/pagination-bar.component.ts +178 -0
- package/projects/corecomponents/src/lib/components/pagination-bar/pagination-bar.module.ts +17 -0
- package/projects/corecomponents/src/lib/components/popup/const/popup-window-token.ts +4 -0
- package/projects/corecomponents/src/lib/components/popup/interface/popup-button.ts +14 -0
- package/projects/corecomponents/src/lib/components/popup/interface/popup-close-event.ts +8 -0
- package/projects/corecomponents/src/lib/components/popup/interface/popup-settings.ts +70 -0
- package/projects/corecomponents/src/lib/components/popup/interface/popup.ts +17 -0
- package/projects/corecomponents/src/lib/components/popup/model/popup-button-globals.ts +11 -0
- package/projects/corecomponents/src/lib/components/popup/model/popup-window.ts +51 -0
- package/projects/corecomponents/src/lib/components/popup/popup-buttons.component.ts +61 -0
- package/projects/corecomponents/src/lib/components/popup/popup-message-display.component.ts +49 -0
- package/projects/corecomponents/src/lib/components/popup/popup-window-shell.component.ts +222 -0
- package/projects/corecomponents/src/lib/components/popup/popup.module.ts +48 -0
- package/projects/corecomponents/src/lib/components/popup/service/popup-shower.service.ts +98 -0
- package/projects/corecomponents/src/lib/components/popup/service/prompt.service.ts +127 -0
- package/projects/corecomponents/src/lib/components/popup/text-input-popup.component.ts +36 -0
- package/projects/corecomponents/src/lib/components/responsive-text/responsive-text.component.ts +24 -0
- package/projects/corecomponents/src/lib/components/responsive-text/responsive-text.module.ts +17 -0
- package/projects/corecomponents/src/lib/components/simple-grid/base-simple-grid.component.ts +196 -0
- package/projects/corecomponents/src/lib/components/simple-grid/simple-grid-cell.component.ts +192 -0
- package/projects/corecomponents/src/lib/components/simple-grid/simple-grid-column.directive.ts +146 -0
- package/projects/corecomponents/src/lib/components/simple-grid/simple-grid.component.ts +645 -0
- package/projects/corecomponents/src/lib/components/simple-grid/simple-grid.module.ts +42 -0
- package/projects/corecomponents/src/lib/components/tile/tile.component.ts +71 -0
- package/projects/corecomponents/src/lib/components/tile/tile.module.ts +21 -0
- package/projects/corecomponents/src/lib/components/tile-select/tile-select.component.ts +36 -0
- package/projects/corecomponents/src/lib/components/tile-select/tile-select.module.ts +19 -0
- package/projects/corecomponents/src/lib/components/tooltip/tooltip.component.ts +96 -0
- package/projects/corecomponents/src/lib/components/tooltip/tooltip.module.ts +17 -0
- package/projects/corecomponents/src/lib/components/validation-error/validation-error.component.ts +45 -0
- package/projects/corecomponents/src/lib/components/validation-error/validation-error.module.ts +24 -0
- package/projects/corecomponents/src/lib/components/view-mode-buttons/content-view-mode.enum.ts +9 -0
- package/projects/corecomponents/src/lib/components/view-mode-buttons/view-mode-buttons.component.ts +63 -0
- package/projects/corecomponents/src/lib/components/view-mode-buttons/view-mode-buttons.module.ts +19 -0
- package/projects/corecomponents/src/lib/core/abstract/collection-based-component.ts +488 -0
- package/projects/corecomponents/src/lib/core/config/device-environment.ts +26 -0
- package/projects/corecomponents/src/lib/core/constant/default-upper-bound-for-range-components.ts +4 -0
- package/projects/corecomponents/src/lib/core/constant/java-max-int.ts +1 -0
- package/projects/corecomponents/src/lib/core/constant/number-inputs-key-down-white-list.ts +46 -0
- package/projects/corecomponents/src/lib/core/decorator/input-boolean.decorator.ts +35 -0
- package/projects/corecomponents/src/lib/core/enum/co-direction.ts +7 -0
- package/projects/corecomponents/src/lib/core/enum/co-document-image-display-kind.enum.ts +5 -0
- package/projects/corecomponents/src/lib/core/enum/co-document-type.enum.ts +9 -0
- package/projects/corecomponents/src/lib/core/enum/co-orientation.ts +18 -0
- package/projects/corecomponents/src/lib/core/enum/collection-based-component-input-driver-prop.enum.ts +10 -0
- package/projects/corecomponents/src/lib/core/enum/color-sequence-name.enum.ts +5 -0
- package/projects/corecomponents/src/lib/core/enum/core-components-icon.enum.ts +299 -0
- package/projects/corecomponents/src/lib/core/enum/file-type-internal.enum.ts +15 -0
- package/projects/corecomponents/src/lib/core/enum/file-type.enum.ts +9 -0
- package/projects/corecomponents/src/lib/core/enum/filterItem-mode.enum.ts +57 -0
- package/projects/corecomponents/src/lib/core/enum/float-label-type.enum.ts +5 -0
- package/projects/corecomponents/src/lib/core/enum/input-number-picker-show-mode.enum.ts +6 -0
- package/projects/corecomponents/src/lib/core/enum/input-text-type.enum.ts +4 -0
- package/projects/corecomponents/src/lib/core/enum/keyboard-code.enum.ts +72 -0
- package/projects/corecomponents/src/lib/core/enum/keyboard-key.enum.ts +78 -0
- package/projects/corecomponents/src/lib/core/enum/logical-operator-type.enum.ts +5 -0
- package/projects/corecomponents/src/lib/core/enum/object-right-type.enum.ts +5 -0
- package/projects/corecomponents/src/lib/core/enum/popup-button-type.enum.ts +10 -0
- package/projects/corecomponents/src/lib/core/enum/popup-type.enum.ts +9 -0
- package/projects/corecomponents/src/lib/core/enum/schedule-view.enum.ts +14 -0
- package/projects/corecomponents/src/lib/core/enum/search-data-type.ts +4 -0
- package/projects/corecomponents/src/lib/core/enum/search-property-state.ts +5 -0
- package/projects/corecomponents/src/lib/core/enum/sort-data-type.ts +6 -0
- package/projects/corecomponents/src/lib/core/enum/sort-direction.ts +9 -0
- package/projects/corecomponents/src/lib/core/enum/table-name.enum.ts +79 -0
- package/projects/corecomponents/src/lib/core/enum/value-comparison-type.ts +11 -0
- package/projects/corecomponents/src/lib/core/function/any-nill.function.ts +6 -0
- package/projects/corecomponents/src/lib/core/function/is-nill.function.ts +4 -0
- package/projects/corecomponents/src/lib/core/function/none-nill.function.ts +16 -0
- package/projects/corecomponents/src/lib/core/function/not-nill.function.ts +4 -0
- package/projects/corecomponents/src/lib/core/interface/search-property.ts +15 -0
- package/projects/corecomponents/src/lib/core/interface/sort-property.ts +16 -0
- package/projects/corecomponents/src/lib/core/model/bounds-constrained-number-value.ts +222 -0
- package/projects/corecomponents/src/lib/core/model/check-precision-and-scale-result.ts +5 -0
- package/projects/corecomponents/src/lib/core/model/check-within-stepped-bounds-result.ts +8 -0
- package/projects/corecomponents/src/lib/core/model/co-document-right.bo.ts +9 -0
- package/projects/corecomponents/src/lib/core/model/co-document.bo.ts +193 -0
- package/projects/corecomponents/src/lib/core/model/color-sequence.ts +39 -0
- package/projects/corecomponents/src/lib/core/model/color.ts +29 -0
- package/projects/corecomponents/src/lib/core/model/core-components-icon-svg.ts +299 -0
- package/projects/corecomponents/src/lib/core/model/element-position.ts +14 -0
- package/projects/corecomponents/src/lib/core/model/event/number-prompt-result-event.ts +10 -0
- package/projects/corecomponents/src/lib/core/model/event/string-prompt-result-event.ts +10 -0
- package/projects/corecomponents/src/lib/core/model/numerical-range.ts +19 -0
- package/projects/corecomponents/src/lib/core/service/form-input-user-change-listener.service.ts +31 -0
- package/projects/corecomponents/src/lib/core/service/form-master.service.ts +119 -0
- package/projects/corecomponents/src/lib/core/service/ng-zone-wrapper.service.ts +15 -0
- package/projects/corecomponents/src/lib/core/utils/array-utils.spec.ts +588 -0
- package/projects/corecomponents/src/lib/core/utils/array-utils.ts +301 -0
- package/projects/corecomponents/src/lib/core/utils/browser-utils.ts +123 -0
- package/projects/corecomponents/src/lib/core/utils/business-object-utils.ts +42 -0
- package/projects/corecomponents/src/lib/core/utils/css-utils.ts +276 -0
- package/projects/corecomponents/src/lib/core/utils/direction-enum-utils.ts +15 -0
- package/projects/corecomponents/src/lib/core/utils/element-ref.utils.ts +12 -0
- package/projects/corecomponents/src/lib/core/utils/event-utils.ts +61 -0
- package/projects/corecomponents/src/lib/core/utils/file-utils.ts +291 -0
- package/projects/corecomponents/src/lib/core/utils/number-utils.spec.ts +657 -0
- package/projects/corecomponents/src/lib/core/utils/number-utils.ts +350 -0
- package/projects/corecomponents/src/lib/core/utils/object-utils.ts +205 -0
- package/projects/corecomponents/src/lib/core/utils/parameter-value-conversion-utils.ts +116 -0
- package/projects/corecomponents/src/lib/core/utils/search-utils.ts +121 -0
- package/projects/corecomponents/src/lib/core/utils/sort-utils.ts +108 -0
- package/projects/corecomponents/src/lib/core/utils/string-utils.ts +100 -0
- package/projects/corecomponents/src/lib/core/validator/email.validator.ts +10 -0
- package/projects/corecomponents/src/lib/core/validator/equal.validator.ts +14 -0
- package/projects/corecomponents/src/lib/core/validator/max-string-length.validator.ts +11 -0
- package/projects/corecomponents/src/lib/core/validator/password.validator.ts +35 -0
- package/projects/corecomponents/src/lib/core/validator/precision-scale.validator.ts +14 -0
- package/projects/corecomponents/src/lib/core/validator/required.validator.ts +9 -0
- package/projects/corecomponents/src/lib/directives/align-with/align-with.directive.ts +158 -0
- package/projects/corecomponents/src/lib/directives/align-with/align-with.module.ts +13 -0
- package/projects/corecomponents/src/lib/directives/clickoutside/click-outside-master.service.ts +64 -0
- package/projects/corecomponents/src/lib/directives/clickoutside/click-outside.directive.ts +72 -0
- package/projects/corecomponents/src/lib/directives/clickoutside/clickoutside.module.ts +17 -0
- package/projects/corecomponents/src/lib/directives/observe-visibility/observe-visibility.directive.ts +55 -0
- package/projects/corecomponents/src/lib/directives/observe-visibility/observe-visibility.module.ts +13 -0
- package/projects/corecomponents/src/lib/directives/overlay/overlay-parent.directive.ts +20 -0
- package/projects/corecomponents/src/lib/directives/overlay/overlay.directive.ts +170 -0
- package/projects/corecomponents/src/lib/directives/overlay/overlay.module.ts +16 -0
- package/projects/corecomponents/src/lib/directives/parsevalue/parse-value.directive.ts +42 -0
- package/projects/corecomponents/src/lib/directives/parsevalue/parse-value.module.ts +13 -0
- package/projects/corecomponents/src/lib/directives/resize/resize-detect.directive.ts +54 -0
- package/projects/corecomponents/src/lib/directives/resize/resize-detect.module.ts +13 -0
- package/projects/corecomponents/src/lib/directives/ripple/ripple-ref.ts +28 -0
- package/projects/corecomponents/src/lib/directives/ripple/ripple-renderer.ts +217 -0
- package/projects/corecomponents/src/lib/directives/ripple/ripple.directive.ts +116 -0
- package/projects/corecomponents/src/lib/directives/ripple/ripple.module.ts +24 -0
- package/projects/corecomponents/src/lib/directives/ripple/scroll-dispatcher.service.ts +129 -0
- package/projects/corecomponents/src/lib/directives/ripple/scrollable.directive.ts +37 -0
- package/projects/corecomponents/src/lib/directives/ripple/viewport-ruler.service.ts +84 -0
- package/projects/corecomponents/src/lib/directives/screen-configuration/screen-configuration.directive.ts +170 -0
- package/projects/corecomponents/src/lib/directives/screen-configuration/screen-configuration.module.ts +16 -0
- package/projects/corecomponents/src/lib/directives/stopclick/stop-click.directive.ts +35 -0
- package/projects/corecomponents/src/lib/directives/stopclick/stop-click.module.ts +14 -0
- package/projects/corecomponents/src/lib/directives/template-wrapper/template-wrapper.directive.ts +71 -0
- package/projects/corecomponents/src/lib/directives/template-wrapper/template-wrapper.module.ts +13 -0
- package/projects/corecomponents/src/lib/directives/tooltip/tooltip-directive.module.ts +17 -0
- package/projects/corecomponents/src/lib/directives/tooltip/tooltip.directive.ts +94 -0
- package/projects/corecomponents/src/lib/interfaces/dialog-response.interface.ts +7 -0
- package/projects/corecomponents/src/lib/interfaces/lov-options.component.interface.ts +4 -0
- package/projects/corecomponents/src/lib/interfaces/screen-config-adapter-component-interface-name.ts +6 -0
- package/projects/corecomponents/src/lib/interfaces/screen-config-adapter.component.interface.ts +10 -0
- package/projects/corecomponents/src/lib/model/data-item.ts +9 -0
- package/projects/corecomponents/src/lib/model/enum/app-button-type.enum.ts +9 -0
- package/projects/corecomponents/src/lib/model/enum/app-popup-type.enum.ts +6 -0
- package/projects/corecomponents/src/lib/model/enum/currency-code.enum.ts +7 -0
- package/projects/corecomponents/src/lib/model/enum/language-code.enum.ts +8 -0
- package/projects/corecomponents/src/lib/model/icon-list-item.ts +7 -0
- package/projects/corecomponents/src/lib/model/map/currencies.map.ts +6 -0
- package/projects/corecomponents/src/lib/modules/drag-drop/drag-drop-container.component.ts +115 -0
- package/projects/corecomponents/src/lib/modules/drag-drop/drag-drop-container.css +34 -0
- package/projects/corecomponents/src/lib/modules/drag-drop/drag-drop-manager.service.ts +414 -0
- package/projects/corecomponents/src/lib/modules/drag-drop/drag-drop.module.ts +20 -0
- package/projects/corecomponents/src/lib/modules/drag-drop/draggable.directive.ts +70 -0
- package/projects/corecomponents/src/lib/modules/drag-drop/model/co-drag-event.ts +5 -0
- package/projects/corecomponents/src/lib/modules/drag-drop/model/co-drop-event.ts +9 -0
- package/projects/corecomponents/src/lib/modules/drag-drop/model/drag-drop-container-element.ts +7 -0
- package/projects/corecomponents/src/lib/modules/drag-drop/model/drag-drop-container.ts +9 -0
- package/projects/corecomponents/src/lib/modules/media-monitor/flex-layout-breakpoint.enum.ts +5 -0
- package/projects/corecomponents/src/lib/modules/media-monitor/media-monitor.module.ts +14 -0
- package/projects/corecomponents/src/lib/modules/media-monitor/media-monitor.service.ts +36 -0
- package/projects/corecomponents/src/lib/modules/pagination/paginate.pipe.ts +116 -0
- package/projects/corecomponents/src/lib/modules/pagination/pagination-instance.ts +18 -0
- package/projects/corecomponents/src/lib/modules/pagination/pagination.component.ts +229 -0
- package/projects/corecomponents/src/lib/modules/pagination/pagination.module.ts +25 -0
- package/projects/corecomponents/src/lib/modules/pagination/pagination.service.ts +98 -0
- package/projects/corecomponents/src/lib/pipes/append.pipe.module.ts +13 -0
- package/projects/corecomponents/src/lib/pipes/append.pipe.ts +17 -0
- package/projects/corecomponents/src/lib/pipes/co-currency-pipe.module.ts +13 -0
- package/projects/corecomponents/src/lib/pipes/co-currency.pipe.ts +45 -0
- package/projects/corecomponents/src/lib/pipes/emun-keys.pipe.ts +20 -0
- package/projects/corecomponents/src/lib/pipes/enum-keys-pipe.module.ts +13 -0
- package/projects/corecomponents/src/lib/pipes/file-type-image-pipe.module.ts +13 -0
- package/projects/corecomponents/src/lib/pipes/file-type-image.pipe.ts +45 -0
- package/projects/corecomponents/src/lib/pipes/filter.pipe.module.ts +13 -0
- package/projects/corecomponents/src/lib/pipes/filter.pipe.ts +14 -0
- package/projects/corecomponents/src/lib/pipes/master-pipe.module.ts +13 -0
- package/projects/corecomponents/src/lib/pipes/master.pipe.ts +71 -0
- package/projects/corecomponents/src/lib/pipes/prepend.pipe.module.ts +13 -0
- package/projects/corecomponents/src/lib/pipes/prepend.pipe.ts +17 -0
- package/projects/corecomponents/src/lib/pipes/price-display-pipe.module.ts +14 -0
- package/projects/corecomponents/src/lib/pipes/price-display.pipe.ts +20 -0
- package/projects/corecomponents/src/lib/pipes/safe-style.pipe.module.ts +13 -0
- package/projects/corecomponents/src/lib/pipes/safe-style.pipe.ts +14 -0
- package/projects/corecomponents/src/lib/pipes/ucfirst-pipe.module.ts +13 -0
- package/projects/corecomponents/src/lib/pipes/ucfirst.pipe.ts +14 -0
- package/projects/corecomponents/src/lib/service/base-module-screen-config.service.ts +241 -0
- package/projects/corecomponents/src/lib/service/base-module.service.ts +50 -0
- package/projects/corecomponents/src/lib/service/color-sequence.service.ts +50 -0
- package/projects/corecomponents/src/lib/service/overlay.service.ts +81 -0
- package/projects/corecomponents/src/lib/translation/core-components-translation.module.ts +27 -0
- package/projects/corecomponents/src/lib/translation/core-components-translation.service.ts +15 -0
- package/projects/corecomponents/src/lib/translation/core-dictionary.service.ts +27 -0
- package/projects/corecomponents/src/lib/translation/core-localize.pipe.ts +21 -0
- package/projects/corecomponents/src/public-api.ts +139 -0
- package/projects/corecomponents/src/res/icons/Barcode.svg +1 -0
- package/projects/corecomponents/src/res/icons/CashRegister.svg +1 -0
- package/projects/corecomponents/src/res/icons/CirclePlusSkinny.svg +1 -0
- package/projects/corecomponents/src/res/icons/CrossSkinny.svg +1 -0
- package/projects/corecomponents/src/res/icons/FolderArrow.svg +1 -0
- package/projects/corecomponents/src/res/icons/Home.svg +1 -0
- package/projects/corecomponents/src/res/icons/POS.svg +1 -0
- package/projects/corecomponents/src/res/icons/Shop.svg +1 -0
- package/projects/corecomponents/src/res/icons/SinglePerson.svg +1 -0
- package/projects/corecomponents/src/res/icons/Star.svg +1 -0
- package/projects/corecomponents/src/res/icons/TrashBin.svg +1 -0
- package/projects/corecomponents/src/res/icons/account.svg +1 -0
- package/projects/corecomponents/src/res/icons/account_round_open.svg +1 -0
- package/projects/corecomponents/src/res/icons/activities.svg +1 -0
- package/projects/corecomponents/src/res/icons/add_to_cart_drop.svg +1 -0
- package/projects/corecomponents/src/res/icons/arrow_down.svg +1 -0
- package/projects/corecomponents/src/res/icons/arrow_fat_left.svg +1 -0
- package/projects/corecomponents/src/res/icons/arrow_fat_right.svg +1 -0
- package/projects/corecomponents/src/res/icons/arrow_left.svg +4 -0
- package/projects/corecomponents/src/res/icons/arrow_left_round_open.svg +1 -0
- package/projects/corecomponents/src/res/icons/arrow_point_down.svg +6 -0
- package/projects/corecomponents/src/res/icons/arrow_point_left.svg +8 -0
- package/projects/corecomponents/src/res/icons/arrow_point_right.svg +8 -0
- package/projects/corecomponents/src/res/icons/arrow_point_up.svg +8 -0
- package/projects/corecomponents/src/res/icons/arrow_right_round_open.svg +1 -0
- package/projects/corecomponents/src/res/icons/arrow_scroll_down.svg +6 -0
- package/projects/corecomponents/src/res/icons/arrow_scroll_left.svg +22 -0
- package/projects/corecomponents/src/res/icons/arrow_scroll_right.svg +22 -0
- package/projects/corecomponents/src/res/icons/arrow_scroll_up.svg +6 -0
- package/projects/corecomponents/src/res/icons/arrow_up.svg +3 -0
- package/projects/corecomponents/src/res/icons/article.svg +1 -0
- package/projects/corecomponents/src/res/icons/article_with_fold.svg +1 -0
- package/projects/corecomponents/src/res/icons/asterisk_small.svg +1 -0
- package/projects/corecomponents/src/res/icons/attachments.svg +1 -0
- package/projects/corecomponents/src/res/icons/back_to_top.svg +1 -0
- package/projects/corecomponents/src/res/icons/big_mac.svg +6 -0
- package/projects/corecomponents/src/res/icons/boxes.svg +1 -0
- package/projects/corecomponents/src/res/icons/brush.svg +1 -0
- package/projects/corecomponents/src/res/icons/brush_round_open.svg +1 -0
- package/projects/corecomponents/src/res/icons/building_columns.svg +1 -0
- package/projects/corecomponents/src/res/icons/businessrules.svg +1 -0
- package/projects/corecomponents/src/res/icons/calendar.svg +1 -0
- package/projects/corecomponents/src/res/icons/calendar_day.svg +37 -0
- package/projects/corecomponents/src/res/icons/calendar_day_regular.svg +1 -0
- package/projects/corecomponents/src/res/icons/calendar_empty.svg +16 -0
- package/projects/corecomponents/src/res/icons/calendar_range.svg +1 -0
- package/projects/corecomponents/src/res/icons/calendar_round_open.svg +16 -0
- package/projects/corecomponents/src/res/icons/camera.svg +1 -0
- package/projects/corecomponents/src/res/icons/cancel.svg +1 -0
- package/projects/corecomponents/src/res/icons/cancel_round_filled.svg +1 -0
- package/projects/corecomponents/src/res/icons/cancel_round_open.svg +1 -0
- package/projects/corecomponents/src/res/icons/cart.svg +1 -0
- package/projects/corecomponents/src/res/icons/cart_open.svg +8 -0
- package/projects/corecomponents/src/res/icons/case_manager.svg +1 -0
- package/projects/corecomponents/src/res/icons/cash_register_simple.svg +1 -0
- package/projects/corecomponents/src/res/icons/change_location.svg +1 -0
- package/projects/corecomponents/src/res/icons/check.svg +1 -0
- package/projects/corecomponents/src/res/icons/check_duotone.svg +1 -0
- package/projects/corecomponents/src/res/icons/check_round.svg +1 -0
- package/projects/corecomponents/src/res/icons/check_round_open.svg +10 -0
- package/projects/corecomponents/src/res/icons/check_simple.svg +3 -0
- package/projects/corecomponents/src/res/icons/check_thin.svg +1 -0
- package/projects/corecomponents/src/res/icons/chevron_down_regular.svg +1 -0
- package/projects/corecomponents/src/res/icons/chevron_up_regular.svg +1 -0
- package/projects/corecomponents/src/res/icons/client.svg +1 -0
- package/projects/corecomponents/src/res/icons/clock.svg +1 -0
- package/projects/corecomponents/src/res/icons/clockArrow.svg +1 -0
- package/projects/corecomponents/src/res/icons/cogWheelPlus.svg +1 -0
- package/projects/corecomponents/src/res/icons/cogWheels.svg +1 -0
- package/projects/corecomponents/src/res/icons/column_options.svg +18 -0
- package/projects/corecomponents/src/res/icons/company.svg +1 -0
- package/projects/corecomponents/src/res/icons/company_flat.svg +4 -0
- package/projects/corecomponents/src/res/icons/configurable.svg +1 -0
- package/projects/corecomponents/src/res/icons/consultant.svg +1 -0
- package/projects/corecomponents/src/res/icons/copy.svg +1 -0
- package/projects/corecomponents/src/res/icons/crosshair_1.svg +1 -0
- package/projects/corecomponents/src/res/icons/dashboard.svg +1 -0
- package/projects/corecomponents/src/res/icons/delivery_method.svg +32 -0
- package/projects/corecomponents/src/res/icons/delivery_status_uncheck.svg +9 -0
- package/projects/corecomponents/src/res/icons/delivery_truck.svg +1 -0
- package/projects/corecomponents/src/res/icons/detail_record.svg +1 -0
- package/projects/corecomponents/src/res/icons/detail_view.svg +1 -0
- package/projects/corecomponents/src/res/icons/dictionary.svg +1 -0
- package/projects/corecomponents/src/res/icons/documentWrench.svg +1 -0
- package/projects/corecomponents/src/res/icons/documents.svg +1 -0
- package/projects/corecomponents/src/res/icons/dollar.svg +1 -0
- package/projects/corecomponents/src/res/icons/download.svg +1 -0
- package/projects/corecomponents/src/res/icons/dropdown.svg +4 -0
- package/projects/corecomponents/src/res/icons/dropzone.svg +1 -0
- package/projects/corecomponents/src/res/icons/edit_pencil.svg +1 -0
- package/projects/corecomponents/src/res/icons/edit_pencil_circle.svg +1 -0
- package/projects/corecomponents/src/res/icons/edit_pencil_round.svg +11 -0
- package/projects/corecomponents/src/res/icons/edit_pencil_simple.svg +16 -0
- package/projects/corecomponents/src/res/icons/email.svg +1 -0
- package/projects/corecomponents/src/res/icons/email_round_open.svg +6 -0
- package/projects/corecomponents/src/res/icons/employee.svg +1 -0
- package/projects/corecomponents/src/res/icons/employee_two.svg +1 -0
- package/projects/corecomponents/src/res/icons/employer.svg +1 -0
- package/projects/corecomponents/src/res/icons/employment.svg +1 -0
- package/projects/corecomponents/src/res/icons/employment_end.svg +7 -0
- package/projects/corecomponents/src/res/icons/equal.svg +1 -0
- package/projects/corecomponents/src/res/icons/euro.svg +1 -0
- package/projects/corecomponents/src/res/icons/exclamation.svg +1 -0
- package/projects/corecomponents/src/res/icons/exclamation_round_open.svg +1 -0
- package/projects/corecomponents/src/res/icons/eye_circle.svg +1 -0
- package/projects/corecomponents/src/res/icons/eye_circle_large.svg +1 -0
- package/projects/corecomponents/src/res/icons/eye_round_filled.svg +11 -0
- package/projects/corecomponents/src/res/icons/factory.svg +1 -0
- package/projects/corecomponents/src/res/icons/fasttrack.svg +1 -0
- package/projects/corecomponents/src/res/icons/filter.svg +1 -0
- package/projects/corecomponents/src/res/icons/finish.svg +1 -0
- package/projects/corecomponents/src/res/icons/fixed_option_value_tree.svg +1 -0
- package/projects/corecomponents/src/res/icons/fixed_tree_option_value.svg +1 -0
- package/projects/corecomponents/src/res/icons/floppy_disk_solid.svg +1 -0
- package/projects/corecomponents/src/res/icons/folder_arrow_in.svg +8 -0
- package/projects/corecomponents/src/res/icons/formula.svg +1 -0
- package/projects/corecomponents/src/res/icons/fullscreen.svg +6 -0
- package/projects/corecomponents/src/res/icons/gear_double.svg +21 -0
- package/projects/corecomponents/src/res/icons/global_search.svg +45 -0
- package/projects/corecomponents/src/res/icons/globe.svg +1 -0
- package/projects/corecomponents/src/res/icons/greater_than.svg +1 -0
- package/projects/corecomponents/src/res/icons/groupby.svg +1 -0
- package/projects/corecomponents/src/res/icons/hamburger.svg +1 -0
- package/projects/corecomponents/src/res/icons/hand_pointer.svg +1 -0
- package/projects/corecomponents/src/res/icons/hbarchart.svg +6 -0
- package/projects/corecomponents/src/res/icons/home_circle.svg +9 -0
- package/projects/corecomponents/src/res/icons/home_open.svg +7 -0
- package/projects/corecomponents/src/res/icons/home_round_open.svg +11 -0
- package/projects/corecomponents/src/res/icons/hourglass.svg +1 -0
- package/projects/corecomponents/src/res/icons/icon_3d.svg +1 -0
- package/projects/corecomponents/src/res/icons/id.svg +1 -0
- package/projects/corecomponents/src/res/icons/image.svg +1 -0
- package/projects/corecomponents/src/res/icons/incoming_storage.svg +1 -0
- package/projects/corecomponents/src/res/icons/information.svg +1 -0
- package/projects/corecomponents/src/res/icons/information_round_open.svg +6 -0
- package/projects/corecomponents/src/res/icons/input_multiplechoice.svg +1 -0
- package/projects/corecomponents/src/res/icons/input_text.svg +1 -0
- package/projects/corecomponents/src/res/icons/input_textarea.svg +1 -0
- package/projects/corecomponents/src/res/icons/inventory.svg +1 -0
- package/projects/corecomponents/src/res/icons/invoice.svg +20 -0
- package/projects/corecomponents/src/res/icons/ione_logo.svg +1 -0
- package/projects/corecomponents/src/res/icons/ione_logo_fat.svg +1 -0
- package/projects/corecomponents/src/res/icons/ione_status_next.svg +43 -0
- package/projects/corecomponents/src/res/icons/ione_workflow.svg +62 -0
- package/projects/corecomponents/src/res/icons/keyboard.svg +1 -0
- package/projects/corecomponents/src/res/icons/keychain.svg +1 -0
- package/projects/corecomponents/src/res/icons/label.svg +5 -0
- package/projects/corecomponents/src/res/icons/label_round_open.svg +6 -0
- package/projects/corecomponents/src/res/icons/landmark_flag.svg +1 -0
- package/projects/corecomponents/src/res/icons/library.svg +21 -0
- package/projects/corecomponents/src/res/icons/linechart.svg +1 -0
- package/projects/corecomponents/src/res/icons/link_circle.svg +1 -0
- package/projects/corecomponents/src/res/icons/linked_products.svg +1 -0
- package/projects/corecomponents/src/res/icons/list_view.svg +8 -0
- package/projects/corecomponents/src/res/icons/location.svg +1 -0
- package/projects/corecomponents/src/res/icons/lock.svg +1 -0
- package/projects/corecomponents/src/res/icons/lock_round_open.svg +8 -0
- package/projects/corecomponents/src/res/icons/logo.svg +1 -0
- package/projects/corecomponents/src/res/icons/logout.svg +1 -0
- package/projects/corecomponents/src/res/icons/magic_wand.svg +1 -0
- package/projects/corecomponents/src/res/icons/magnifier.svg +5 -0
- package/projects/corecomponents/src/res/icons/manager.svg +12 -0
- package/projects/corecomponents/src/res/icons/mask.svg +1 -0
- package/projects/corecomponents/src/res/icons/master_detail.svg +1 -0
- package/projects/corecomponents/src/res/icons/material_circle_large.svg +1 -0
- package/projects/corecomponents/src/res/icons/medal_bronze.svg +23 -0
- package/projects/corecomponents/src/res/icons/medal_gold.svg +23 -0
- package/projects/corecomponents/src/res/icons/medal_silver.svg +23 -0
- package/projects/corecomponents/src/res/icons/medical_officer.svg +14 -0
- package/projects/corecomponents/src/res/icons/microphone.svg +1 -0
- package/projects/corecomponents/src/res/icons/minus_round_open.svg +1 -0
- package/projects/corecomponents/src/res/icons/minus_simple.svg +1 -0
- package/projects/corecomponents/src/res/icons/mobile.svg +1 -0
- package/projects/corecomponents/src/res/icons/multi_select_check.svg +10 -0
- package/projects/corecomponents/src/res/icons/new_task.svg +1 -0
- package/projects/corecomponents/src/res/icons/not_equal.svg +4 -0
- package/projects/corecomponents/src/res/icons/note.svg +1 -0
- package/projects/corecomponents/src/res/icons/note_bordered.svg +1 -0
- package/projects/corecomponents/src/res/icons/notification.svg +1 -0
- package/projects/corecomponents/src/res/icons/option.svg +1 -0
- package/projects/corecomponents/src/res/icons/optionset.svg +1 -0
- package/projects/corecomponents/src/res/icons/order.svg +1 -0
- package/projects/corecomponents/src/res/icons/orderpicking.svg +1 -0
- package/projects/corecomponents/src/res/icons/outgoing_storage.svg +1 -0
- package/projects/corecomponents/src/res/icons/over_booking.svg +1 -0
- package/projects/corecomponents/src/res/icons/pause_circle.svg +12 -0
- package/projects/corecomponents/src/res/icons/pen_to_square_solid.svg +1 -0
- package/projects/corecomponents/src/res/icons/pencil_round_open.svg +10 -0
- package/projects/corecomponents/src/res/icons/phone.svg +1 -0
- package/projects/corecomponents/src/res/icons/phone_round_open.svg +10 -0
- package/projects/corecomponents/src/res/icons/piechart.svg +24 -0
- package/projects/corecomponents/src/res/icons/pin.svg +9 -0
- package/projects/corecomponents/src/res/icons/pin_round_open.svg +11 -0
- package/projects/corecomponents/src/res/icons/play_circle.svg +1 -0
- package/projects/corecomponents/src/res/icons/plus_round.svg +9 -0
- package/projects/corecomponents/src/res/icons/plus_round_open.svg +1 -0
- package/projects/corecomponents/src/res/icons/plus_simple.svg +1 -0
- package/projects/corecomponents/src/res/icons/plus_skinny.svg +8 -0
- package/projects/corecomponents/src/res/icons/plus_solid.svg +1 -0
- package/projects/corecomponents/src/res/icons/plus_stars.svg +1 -0
- package/projects/corecomponents/src/res/icons/pointer.svg +7 -0
- package/projects/corecomponents/src/res/icons/pointer_3d.svg +8 -0
- package/projects/corecomponents/src/res/icons/pointer_filled.svg +6 -0
- package/projects/corecomponents/src/res/icons/positioning.svg +1 -0
- package/projects/corecomponents/src/res/icons/pregnancy.svg +18 -0
- package/projects/corecomponents/src/res/icons/preset.svg +1 -0
- package/projects/corecomponents/src/res/icons/print.svg +1 -0
- package/projects/corecomponents/src/res/icons/product_properties.svg +1 -0
- package/projects/corecomponents/src/res/icons/purchase.svg +15 -0
- package/projects/corecomponents/src/res/icons/qrcode.svg +59 -0
- package/projects/corecomponents/src/res/icons/question.svg +1 -0
- package/projects/corecomponents/src/res/icons/radio_uncheck.svg +1 -0
- package/projects/corecomponents/src/res/icons/range.svg +1 -0
- package/projects/corecomponents/src/res/icons/range_select.svg +1 -0
- package/projects/corecomponents/src/res/icons/rectangles.svg +15 -0
- package/projects/corecomponents/src/res/icons/refresh.svg +1 -0
- package/projects/corecomponents/src/res/icons/relations.svg +20 -0
- package/projects/corecomponents/src/res/icons/remark.svg +1 -0
- package/projects/corecomponents/src/res/icons/remark_round_open.svg +6 -0
- package/projects/corecomponents/src/res/icons/report_in_type.svg +1 -0
- package/projects/corecomponents/src/res/icons/resize.svg +3 -0
- package/projects/corecomponents/src/res/icons/resize_down.svg +1 -0
- package/projects/corecomponents/src/res/icons/resize_up.svg +1 -0
- package/projects/corecomponents/src/res/icons/return_goods.svg +4 -0
- package/projects/corecomponents/src/res/icons/returns.svg +1 -0
- package/projects/corecomponents/src/res/icons/rotate_left_solid.svg +1 -0
- package/projects/corecomponents/src/res/icons/save_disk.svg +15 -0
- package/projects/corecomponents/src/res/icons/save_skinny.svg +3 -0
- package/projects/corecomponents/src/res/icons/scale_balanced.svg +1 -0
- package/projects/corecomponents/src/res/icons/scanner.svg +1 -0
- package/projects/corecomponents/src/res/icons/search_round_open.svg +9 -0
- package/projects/corecomponents/src/res/icons/sections.svg +1 -0
- package/projects/corecomponents/src/res/icons/select_all_round.svg +5 -0
- package/projects/corecomponents/src/res/icons/services.svg +1 -0
- package/projects/corecomponents/src/res/icons/settings.svg +20 -0
- package/projects/corecomponents/src/res/icons/shopping_cart.svg +1 -0
- package/projects/corecomponents/src/res/icons/shopping_cart_nr.svg +1 -0
- package/projects/corecomponents/src/res/icons/shortcut.svg +1 -0
- package/projects/corecomponents/src/res/icons/skills.svg +1 -0
- package/projects/corecomponents/src/res/icons/slide_in.svg +1 -0
- package/projects/corecomponents/src/res/icons/slider_panel.svg +7 -0
- package/projects/corecomponents/src/res/icons/small_tiles.svg +1 -0
- package/projects/corecomponents/src/res/icons/smaller_than.svg +1 -0
- package/projects/corecomponents/src/res/icons/sort_asc.svg +1 -0
- package/projects/corecomponents/src/res/icons/sort_desc.svg +1 -0
- package/projects/corecomponents/src/res/icons/star_round_open.svg +6 -0
- package/projects/corecomponents/src/res/icons/status_active.svg +1 -0
- package/projects/corecomponents/src/res/icons/status_adoption.svg +1 -0
- package/projects/corecomponents/src/res/icons/status_fostercare.svg +1 -0
- package/projects/corecomponents/src/res/icons/status_ill.svg +10 -0
- package/projects/corecomponents/src/res/icons/status_leave.svg +1 -0
- package/projects/corecomponents/src/res/icons/status_pregnancy.svg +10 -0
- package/projects/corecomponents/src/res/icons/stock.svg +1 -0
- package/projects/corecomponents/src/res/icons/stock_management.svg +25 -0
- package/projects/corecomponents/src/res/icons/storage.svg +1 -0
- package/projects/corecomponents/src/res/icons/supervisor.svg +1 -0
- package/projects/corecomponents/src/res/icons/supplier.svg +18 -0
- package/projects/corecomponents/src/res/icons/surgery.svg +35 -0
- package/projects/corecomponents/src/res/icons/tablechart.svg +15 -0
- package/projects/corecomponents/src/res/icons/tag.svg +1 -0
- package/projects/corecomponents/src/res/icons/talk_too_much.svg +7 -0
- package/projects/corecomponents/src/res/icons/target.svg +1 -0
- package/projects/corecomponents/src/res/icons/task.svg +1 -0
- package/projects/corecomponents/src/res/icons/thick_lines.svg +1 -0
- package/projects/corecomponents/src/res/icons/thin_lines.svg +1 -0
- package/projects/corecomponents/src/res/icons/three_sixty_view.svg +1 -0
- package/projects/corecomponents/src/res/icons/thumb_bronze.svg +29 -0
- package/projects/corecomponents/src/res/icons/thumb_gold.svg +29 -0
- package/projects/corecomponents/src/res/icons/thumb_silver.svg +29 -0
- package/projects/corecomponents/src/res/icons/timeline.svg +1 -0
- package/projects/corecomponents/src/res/icons/transaction_detail.svg +19 -0
- package/projects/corecomponents/src/res/icons/transactions.svg +12 -0
- package/projects/corecomponents/src/res/icons/trash_can_solid.svg +1 -0
- package/projects/corecomponents/src/res/icons/triangle_down.svg +1 -0
- package/projects/corecomponents/src/res/icons/triangle_large.svg +5 -0
- package/projects/corecomponents/src/res/icons/triangle_left.svg +1 -0
- package/projects/corecomponents/src/res/icons/triangle_right.svg +1 -0
- package/projects/corecomponents/src/res/icons/triangle_up.svg +1 -0
- package/projects/corecomponents/src/res/icons/truck.svg +1 -0
- package/projects/corecomponents/src/res/icons/truck_calendar.svg +15 -0
- package/projects/corecomponents/src/res/icons/undo_round_open.svg +1 -0
- package/projects/corecomponents/src/res/icons/user.svg +9 -0
- package/projects/corecomponents/src/res/icons/variants.svg +1 -0
- package/projects/corecomponents/src/res/icons/vbarchart.svg +6 -0
- package/projects/corecomponents/src/res/icons/view.svg +1 -0
- package/projects/corecomponents/src/res/icons/warehouse.svg +1 -0
- package/projects/corecomponents/src/res/icons/watermark.svg +10 -0
- package/projects/corecomponents/src/res/icons/website.svg +1 -0
- package/projects/corecomponents/src/res/icons/wizard.svg +18 -0
- package/projects/corecomponents/src/res/icons/wms.svg +24 -0
- package/projects/corecomponents/src/res/icons/work_in_progress.svg +10 -0
- package/projects/corecomponents/src/res/icons/work_in_progress_round_open.svg +9 -0
- package/projects/corecomponents/src/res/icons/wrench.svg +4 -0
- package/projects/corecomponents/src/res/icons/x_axis.svg +5 -0
- package/projects/corecomponents/src/res/icons/y_axis.svg +5 -0
- package/projects/corecomponents/src/test.ts +28 -0
- package/projects/corecomponents/tsconfig.lib.json +20 -0
- package/projects/corecomponents/tsconfig.lib.prod.json +16 -0
- package/projects/corecomponents/tsconfig.spec.json +17 -0
- package/scripts/export.bat +9 -0
- package/scripts/merge-icons.js +39 -0
- package/scripts/publish.bat +6 -0
- package/src/app/app.component.scss +36 -0
- package/src/app/app.component.spec.ts +31 -0
- package/src/app/app.component.ts +559 -0
- package/src/app/app.module.ts +146 -0
- package/src/app/components/button-showcase.component.ts +82 -0
- package/src/app/components/carousel-3d-showcase.component.ts +70 -0
- package/src/app/components/checkbox-showcase.component.ts +56 -0
- package/src/app/components/co-dialog-showcase.component.ts +189 -0
- package/src/app/components/co-simple-grid-test.component.ts +146 -0
- package/src/app/components/filter-item-showcase.component.ts +178 -0
- package/src/app/components/forms-showcase.component.ts +728 -0
- package/src/app/components/icon-showcase.component.ts +72 -0
- package/src/app/components/input-checkbox-showcase.component.ts +87 -0
- package/src/app/components/input-date-picker-showcase.component.ts +90 -0
- package/src/app/components/input-number-picker-showcase.component.ts +125 -0
- package/src/app/components/input-radio-button-showcase.component.ts +87 -0
- package/src/app/components/input-scanner-showcase.component.ts +35 -0
- package/src/app/components/input-text-showcase.component.ts +217 -0
- package/src/app/components/input-time-showcase.component.ts +104 -0
- package/src/app/components/number-picker-showcase.component.ts +17 -0
- package/src/app/components/simple-grid-showcase.component.ts +60 -0
- package/src/app/model/data-item.ts +9 -0
- package/src/app/model/enum/currency-code.enum.ts +7 -0
- package/src/app/model/enum/language-code.enum.ts +8 -0
- package/src/app/model/map/currencies.map.ts +6 -0
- package/src/app/service/showcase-data.service.ts +1110 -0
- package/src/assets/.gitkeep +0 -0
- package/src/environments/environment.prod.ts +3 -0
- package/src/environments/environment.ts +16 -0
- package/src/favicon.ico +0 -0
- package/src/index.html +13 -0
- package/src/main.ts +12 -0
- package/src/polyfills.ts +65 -0
- package/src/styles.scss +57 -0
- package/src/test.ts +27 -0
- package/tsconfig.app.json +15 -0
- package/tsconfig.json +37 -0
- package/tsconfig.spec.json +18 -0
- package/bundles/colijnit-corecomponents_v12.umd.js +0 -14269
- package/bundles/colijnit-corecomponents_v12.umd.js.map +0 -1
- package/colijnit-corecomponents_v12.d.ts +0 -43
- package/colijnit-corecomponents_v12.metadata.json +0 -1
- package/esm2015/colijnit-corecomponents_v12.js +0 -44
- package/esm2015/lib/components/article-tile/article-tile.component.js +0 -81
- package/esm2015/lib/components/article-tile/article-tile.module.js +0 -35
- package/esm2015/lib/components/base/base-input.component.js +0 -834
- package/esm2015/lib/components/base/base.module.js +0 -22
- package/esm2015/lib/components/base/commit-buttons/commit-buttons.component.js +0 -103
- package/esm2015/lib/components/base/commit-buttons/commit-buttons.module.js +0 -21
- package/esm2015/lib/components/base/dialog-base.component.js +0 -6
- package/esm2015/lib/components/base-input-date-picker/base-input-date-picker.directive.js +0 -25
- package/esm2015/lib/components/button/button.component.js +0 -79
- package/esm2015/lib/components/button/button.module.js +0 -19
- package/esm2015/lib/components/calendar/calendar-template.component.js +0 -342
- package/esm2015/lib/components/calendar/calendar.component.js +0 -45
- package/esm2015/lib/components/calendar/calendar.module.js +0 -28
- package/esm2015/lib/components/card/card.component.js +0 -72
- package/esm2015/lib/components/card/card.module.js +0 -35
- package/esm2015/lib/components/carousel/carousel.component.js +0 -130
- package/esm2015/lib/components/carousel/carousel.module.js +0 -32
- package/esm2015/lib/components/carousel-3d/carousel-3d.component.js +0 -315
- package/esm2015/lib/components/carousel-3d/carousel-3d.module.js +0 -19
- package/esm2015/lib/components/carousel-3d/carouselItem.js +0 -54
- package/esm2015/lib/components/checkmark-overlay/checkmark-overlay.component.js +0 -87
- package/esm2015/lib/components/checkmark-overlay/checkmark-overlay.module.js +0 -19
- package/esm2015/lib/components/co-dialog/co-dialog.component.js +0 -113
- package/esm2015/lib/components/co-dialog/co-dialog.module.js +0 -19
- package/esm2015/lib/components/co-dialog-wizard/co-dialog-wizard.component.js +0 -51
- package/esm2015/lib/components/co-dialog-wizard/co-dialog-wizard.module.js +0 -17
- package/esm2015/lib/components/collapsible/collapsible.component.js +0 -92
- package/esm2015/lib/components/collapsible/collapsible.module.js +0 -19
- package/esm2015/lib/components/color-picker/color-picker.component.js +0 -41
- package/esm2015/lib/components/color-picker/color-picker.module.js +0 -21
- package/esm2015/lib/components/core-dialog/confirmation-dialog/confirmation-dialog.component.js +0 -79
- package/esm2015/lib/components/core-dialog/core-dialog.module.js +0 -39
- package/esm2015/lib/components/core-dialog/core-dialog.service.js +0 -67
- package/esm2015/lib/components/core-dialog/core-dynamic-component.service.js +0 -93
- package/esm2015/lib/components/double-calendar/double-calendar.component.js +0 -80
- package/esm2015/lib/components/double-calendar/double-calendar.module.js +0 -25
- package/esm2015/lib/components/filter-item/filter-item-viewmodel.js +0 -13
- package/esm2015/lib/components/filter-item/filter-item.component.js +0 -646
- package/esm2015/lib/components/filter-item/filter-item.module.js +0 -43
- package/esm2015/lib/components/filter-item/filter-viewmodel.js +0 -11
- package/esm2015/lib/components/form/form.component.js +0 -184
- package/esm2015/lib/components/form/form.module.js +0 -23
- package/esm2015/lib/components/grid-toolbar/grid-toolbar.component.js +0 -57
- package/esm2015/lib/components/grid-toolbar/grid-toolbar.module.js +0 -23
- package/esm2015/lib/components/grid-toolbar-button/grid-toolbar-button.component.js +0 -28
- package/esm2015/lib/components/grid-toolbar-button/grid-toolbar-button.module.js +0 -19
- package/esm2015/lib/components/icon/icon-cache.service.js +0 -52
- package/esm2015/lib/components/icon/icon.component.js +0 -48
- package/esm2015/lib/components/icon/icon.module.js +0 -25
- package/esm2015/lib/components/icon-collapse-handle/icon-collapse-handle.component.js +0 -64
- package/esm2015/lib/components/icon-collapse-handle/icon-collapse-handle.module.js +0 -23
- package/esm2015/lib/components/image/image.component.js +0 -42
- package/esm2015/lib/components/image/image.module.js +0 -14
- package/esm2015/lib/components/input-checkbox/input-checkbox.component.js +0 -79
- package/esm2015/lib/components/input-checkbox/input-checkbox.module.js +0 -19
- package/esm2015/lib/components/input-date-picker/input-date-picker.component.js +0 -91
- package/esm2015/lib/components/input-date-picker/input-date-picker.module.js +0 -26
- package/esm2015/lib/components/input-date-range-picker/input-date-range-picker.component.js +0 -134
- package/esm2015/lib/components/input-date-range-picker/input-date-range-picker.module.js +0 -27
- package/esm2015/lib/components/input-number-picker/input-number-picker.component.js +0 -314
- package/esm2015/lib/components/input-number-picker/input-number-picker.module.js +0 -23
- package/esm2015/lib/components/input-radio-button/input-radio-button.component.js +0 -84
- package/esm2015/lib/components/input-radio-button/input-radio-button.module.js +0 -19
- package/esm2015/lib/components/input-scanner/bar-code-scanner.js +0 -23
- package/esm2015/lib/components/input-scanner/input-scanner.component.js +0 -72
- package/esm2015/lib/components/input-scanner/input-scanner.module.js +0 -21
- package/esm2015/lib/components/input-scanner/scanner.service.js +0 -28
- package/esm2015/lib/components/input-search/input-search.component.js +0 -83
- package/esm2015/lib/components/input-search/input-search.module.js +0 -21
- package/esm2015/lib/components/input-text/input-text.component.js +0 -246
- package/esm2015/lib/components/input-text/input-text.module.js +0 -33
- package/esm2015/lib/components/input-textarea/input-textarea.component.js +0 -78
- package/esm2015/lib/components/input-textarea/input-textarea.module.js +0 -27
- package/esm2015/lib/components/level-indicator/level-indicator-level.enum.js +0 -7
- package/esm2015/lib/components/level-indicator/level-indicator.component.js +0 -36
- package/esm2015/lib/components/level-indicator/level-indicator.module.js +0 -15
- package/esm2015/lib/components/list-of-icons/list-of-icons.component.js +0 -64
- package/esm2015/lib/components/list-of-icons/list-of-icons.module.js +0 -25
- package/esm2015/lib/components/list-of-values/list-of-values-multiselect-popup.component.js +0 -112
- package/esm2015/lib/components/list-of-values/list-of-values-popup.component.js +0 -251
- package/esm2015/lib/components/list-of-values/list-of-values.component.js +0 -233
- package/esm2015/lib/components/list-of-values/list-of-values.module.js +0 -38
- package/esm2015/lib/components/loader/loader.component.js +0 -84
- package/esm2015/lib/components/loader/loader.module.js +0 -19
- package/esm2015/lib/components/pagination/paginate.pipe.js +0 -99
- package/esm2015/lib/components/pagination/pagination-instance.js +0 -2
- package/esm2015/lib/components/pagination/pagination.component.js +0 -126
- package/esm2015/lib/components/pagination/pagination.module.js +0 -28
- package/esm2015/lib/components/pagination/pagination.service.js +0 -88
- package/esm2015/lib/components/pagination-bar/pagination-bar.component.js +0 -151
- package/esm2015/lib/components/pagination-bar/pagination-bar.module.js +0 -19
- package/esm2015/lib/components/popup/const/popup-window-token.js +0 -3
- package/esm2015/lib/components/popup/interface/popup-button.js +0 -8
- package/esm2015/lib/components/popup/interface/popup-close-event.js +0 -2
- package/esm2015/lib/components/popup/interface/popup-settings.js +0 -42
- package/esm2015/lib/components/popup/interface/popup.js +0 -2
- package/esm2015/lib/components/popup/model/popup-button-globals.js +0 -11
- package/esm2015/lib/components/popup/model/popup-window.js +0 -38
- package/esm2015/lib/components/popup/popup-buttons.component.js +0 -53
- package/esm2015/lib/components/popup/popup-message-display.component.js +0 -47
- package/esm2015/lib/components/popup/popup-window-shell.component.js +0 -159
- package/esm2015/lib/components/popup/popup.module.js +0 -49
- package/esm2015/lib/components/popup/service/popup-shower.service.js +0 -90
- package/esm2015/lib/components/popup/service/prompt.service.js +0 -127
- package/esm2015/lib/components/popup/text-input-popup.component.js +0 -36
- package/esm2015/lib/components/responsive-text/responsive-text.component.js +0 -24
- package/esm2015/lib/components/responsive-text/responsive-text.module.js +0 -19
- package/esm2015/lib/components/simple-grid/base-simple-grid.component.js +0 -166
- package/esm2015/lib/components/simple-grid/simple-grid-cell.component.js +0 -172
- package/esm2015/lib/components/simple-grid/simple-grid-column.directive.js +0 -113
- package/esm2015/lib/components/simple-grid/simple-grid.component.js +0 -612
- package/esm2015/lib/components/simple-grid/simple-grid.module.js +0 -45
- package/esm2015/lib/components/tile/tile.component.js +0 -73
- package/esm2015/lib/components/tile/tile.module.js +0 -23
- package/esm2015/lib/components/tile-select/tile-select.component.js +0 -36
- package/esm2015/lib/components/tile-select/tile-select.module.js +0 -21
- package/esm2015/lib/components/tooltip/tooltip.component.js +0 -77
- package/esm2015/lib/components/tooltip/tooltip.module.js +0 -19
- package/esm2015/lib/components/validation-error/validation-error.component.js +0 -38
- package/esm2015/lib/components/validation-error/validation-error.module.js +0 -25
- package/esm2015/lib/components/view-mode-buttons/content-view-mode.enum.js +0 -11
- package/esm2015/lib/components/view-mode-buttons/view-mode-buttons.component.js +0 -61
- package/esm2015/lib/components/view-mode-buttons/view-mode-buttons.module.js +0 -21
- package/esm2015/lib/core/constant/default-upper-bound-for-range-components.js +0 -4
- package/esm2015/lib/core/constant/java-max-int.js +0 -2
- package/esm2015/lib/core/constant/number-inputs-key-down-white-list.js +0 -45
- package/esm2015/lib/core/decorator/input-boolean.decorator.js +0 -34
- package/esm2015/lib/core/enum/co-direction.js +0 -9
- package/esm2015/lib/core/enum/co-document-image-display-kind.enum.js +0 -7
- package/esm2015/lib/core/enum/co-document-type.enum.js +0 -11
- package/esm2015/lib/core/enum/co-orientation.js +0 -17
- package/esm2015/lib/core/enum/core-components-icon.enum.js +0 -300
- package/esm2015/lib/core/enum/file-type-internal.enum.js +0 -17
- package/esm2015/lib/core/enum/file-type.enum.js +0 -11
- package/esm2015/lib/core/enum/filterItem-mode.enum.js +0 -43
- package/esm2015/lib/core/enum/input-number-picker-show-mode.enum.js +0 -8
- package/esm2015/lib/core/enum/keyboard-code.enum.js +0 -74
- package/esm2015/lib/core/enum/keyboard-key.enum.js +0 -76
- package/esm2015/lib/core/enum/object-right-type.enum.js +0 -7
- package/esm2015/lib/core/enum/popup-button-type.enum.js +0 -12
- package/esm2015/lib/core/enum/popup-type.enum.js +0 -11
- package/esm2015/lib/core/enum/table-name.enum.js +0 -81
- package/esm2015/lib/core/function/any-nill.function.js +0 -6
- package/esm2015/lib/core/function/is-nill.function.js +0 -5
- package/esm2015/lib/core/function/none-nill.function.js +0 -17
- package/esm2015/lib/core/function/not-nill.function.js +0 -5
- package/esm2015/lib/core/model/bounds-constrained-number-value.js +0 -171
- package/esm2015/lib/core/model/check-precision-and-scale-result.js +0 -2
- package/esm2015/lib/core/model/check-within-stepped-bounds-result.js +0 -2
- package/esm2015/lib/core/model/co-document-right.bo.js +0 -3
- package/esm2015/lib/core/model/co-document.bo.js +0 -121
- package/esm2015/lib/core/model/core-components-icon-svg.js +0 -299
- package/esm2015/lib/core/model/element-position.js +0 -10
- package/esm2015/lib/core/model/event/string-prompt-result-event.js +0 -8
- package/esm2015/lib/core/service/form-input-user-change-listener.service.js +0 -25
- package/esm2015/lib/core/service/form-master.service.js +0 -102
- package/esm2015/lib/core/service/ng-zone-wrapper.service.js +0 -20
- package/esm2015/lib/core/utils/array-utils.js +0 -264
- package/esm2015/lib/core/utils/browser-utils.js +0 -100
- package/esm2015/lib/core/utils/direction-enum-utils.js +0 -14
- package/esm2015/lib/core/utils/event-utils.js +0 -53
- package/esm2015/lib/core/utils/file-utils.js +0 -267
- package/esm2015/lib/core/utils/number-utils.js +0 -309
- package/esm2015/lib/core/utils/object-utils.js +0 -186
- package/esm2015/lib/core/utils/string-utils.js +0 -94
- package/esm2015/lib/core/validator/email.validator.js +0 -6
- package/esm2015/lib/core/validator/equal.validator.js +0 -11
- package/esm2015/lib/core/validator/max-string-length.validator.js +0 -10
- package/esm2015/lib/core/validator/password.validator.js +0 -31
- package/esm2015/lib/core/validator/precision-scale.validator.js +0 -11
- package/esm2015/lib/core/validator/required.validator.js +0 -5
- package/esm2015/lib/directives/clickoutside/click-outside-master.service.js +0 -57
- package/esm2015/lib/directives/clickoutside/click-outside.directive.js +0 -71
- package/esm2015/lib/directives/clickoutside/clickoutside.module.js +0 -19
- package/esm2015/lib/directives/observe-visibility/observe-visibility.directive.js +0 -53
- package/esm2015/lib/directives/observe-visibility/observe-visibility.module.js +0 -15
- package/esm2015/lib/directives/overlay/overlay-parent.directive.js +0 -19
- package/esm2015/lib/directives/overlay/overlay.directive.js +0 -161
- package/esm2015/lib/directives/overlay/overlay.module.js +0 -18
- package/esm2015/lib/directives/ripple/ripple-ref.js +0 -26
- package/esm2015/lib/directives/ripple/ripple-renderer.js +0 -160
- package/esm2015/lib/directives/ripple/ripple.directive.js +0 -80
- package/esm2015/lib/directives/ripple/ripple.module.js +0 -24
- package/esm2015/lib/directives/ripple/scroll-dispatcher.service.js +0 -108
- package/esm2015/lib/directives/ripple/scrollable.directive.js +0 -40
- package/esm2015/lib/directives/ripple/viewport-ruler.service.js +0 -73
- package/esm2015/lib/directives/screen-configuration/screen-configuration.directive.js +0 -158
- package/esm2015/lib/directives/screen-configuration/screen-configuration.module.js +0 -19
- package/esm2015/lib/directives/stopclick/stop-click.directive.js +0 -38
- package/esm2015/lib/directives/stopclick/stop-click.module.js +0 -15
- package/esm2015/lib/directives/template-wrapper/template-wrapper.directive.js +0 -68
- package/esm2015/lib/directives/template-wrapper/template-wrapper.module.js +0 -15
- package/esm2015/lib/directives/tooltip/tooltip-directive.module.js +0 -19
- package/esm2015/lib/directives/tooltip/tooltip.directive.js +0 -78
- package/esm2015/lib/interfaces/dialog-response.interface.js +0 -2
- package/esm2015/lib/interfaces/scanner-input.interface.js +0 -2
- package/esm2015/lib/interfaces/screen-config-adapter-component-interface-name.js +0 -4
- package/esm2015/lib/interfaces/screen-config-adapter.component.interface.js +0 -2
- package/esm2015/lib/model/enum/app-button-type.enum.js +0 -11
- package/esm2015/lib/model/enum/app-popup-type.enum.js +0 -8
- package/esm2015/lib/model/icon-list-item.js +0 -2
- package/esm2015/lib/pipes/append.pipe.js +0 -17
- package/esm2015/lib/pipes/append.pipe.module.js +0 -15
- package/esm2015/lib/pipes/filter.pipe.js +0 -16
- package/esm2015/lib/pipes/filter.pipe.module.js +0 -15
- package/esm2015/lib/pipes/prepend.pipe.js +0 -17
- package/esm2015/lib/pipes/prepend.pipe.module.js +0 -15
- package/esm2015/lib/pipes/price-display-pipe.module.js +0 -15
- package/esm2015/lib/pipes/price-display.pipe.js +0 -20
- package/esm2015/lib/service/base-module-screen-config.service.js +0 -205
- package/esm2015/lib/service/base-module.service.js +0 -42
- package/esm2015/lib/service/color-sequence.service.js +0 -49
- package/esm2015/lib/service/overlay.service.js +0 -73
- package/esm2015/lib/translation/core-components-translation.module.js +0 -29
- package/esm2015/lib/translation/core-components-translation.service.js +0 -17
- package/esm2015/lib/translation/core-dictionary.service.js +0 -29
- package/esm2015/lib/translation/core-localize.pipe.js +0 -26
- package/esm2015/public-api.js +0 -132
- package/fesm2015/colijnit-corecomponents_v12.js +0 -13665
- package/fesm2015/colijnit-corecomponents_v12.js.map +0 -1
- package/lib/components/article-tile/article-tile.component.d.ts +0 -22
- package/lib/components/article-tile/article-tile.module.d.ts +0 -2
- package/lib/components/base/base-input.component.d.ts +0 -182
- package/lib/components/base/base.module.d.ts +0 -2
- package/lib/components/base/commit-buttons/commit-buttons.component.d.ts +0 -21
- package/lib/components/base/commit-buttons/commit-buttons.module.d.ts +0 -2
- package/lib/components/base/dialog-base.component.d.ts +0 -4
- package/lib/components/base-input-date-picker/base-input-date-picker.directive.d.ts +0 -15
- package/lib/components/button/button.component.d.ts +0 -29
- package/lib/components/button/button.module.d.ts +0 -2
- package/lib/components/calendar/calendar-template.component.d.ts +0 -60
- package/lib/components/calendar/calendar.component.d.ts +0 -13
- package/lib/components/calendar/calendar.module.d.ts +0 -2
- package/lib/components/card/card.component.d.ts +0 -23
- package/lib/components/card/card.module.d.ts +0 -2
- package/lib/components/carousel/carousel.component.d.ts +0 -23
- package/lib/components/carousel/carousel.module.d.ts +0 -6
- package/lib/components/carousel-3d/carousel-3d.component.d.ts +0 -55
- package/lib/components/carousel-3d/carousel-3d.module.d.ts +0 -2
- package/lib/components/carousel-3d/carouselItem.d.ts +0 -13
- package/lib/components/checkmark-overlay/checkmark-overlay.component.d.ts +0 -17
- package/lib/components/checkmark-overlay/checkmark-overlay.module.d.ts +0 -2
- package/lib/components/co-dialog/co-dialog.component.d.ts +0 -23
- package/lib/components/co-dialog/co-dialog.module.d.ts +0 -2
- package/lib/components/co-dialog-wizard/co-dialog-wizard.component.d.ts +0 -9
- package/lib/components/co-dialog-wizard/co-dialog-wizard.module.d.ts +0 -2
- package/lib/components/collapsible/collapsible.component.d.ts +0 -22
- package/lib/components/collapsible/collapsible.module.d.ts +0 -2
- package/lib/components/color-picker/color-picker.component.d.ts +0 -6
- package/lib/components/color-picker/color-picker.module.d.ts +0 -2
- package/lib/components/core-dialog/confirmation-dialog/confirmation-dialog.component.d.ts +0 -20
- package/lib/components/core-dialog/core-dialog.module.d.ts +0 -4
- package/lib/components/core-dialog/core-dialog.service.d.ts +0 -15
- package/lib/components/core-dialog/core-dynamic-component.service.d.ts +0 -12
- package/lib/components/double-calendar/double-calendar.component.d.ts +0 -18
- package/lib/components/double-calendar/double-calendar.module.d.ts +0 -2
- package/lib/components/filter-item/filter-item-viewmodel.d.ts +0 -9
- package/lib/components/filter-item/filter-item.component.d.ts +0 -80
- package/lib/components/filter-item/filter-item.module.d.ts +0 -2
- package/lib/components/filter-item/filter-viewmodel.d.ts +0 -8
- package/lib/components/form/form.component.d.ts +0 -39
- package/lib/components/form/form.module.d.ts +0 -2
- package/lib/components/grid-toolbar/grid-toolbar.component.d.ts +0 -19
- package/lib/components/grid-toolbar/grid-toolbar.module.d.ts +0 -2
- package/lib/components/grid-toolbar-button/grid-toolbar-button.component.d.ts +0 -8
- package/lib/components/grid-toolbar-button/grid-toolbar-button.module.d.ts +0 -2
- package/lib/components/icon/icon-cache.service.d.ts +0 -20
- package/lib/components/icon/icon.component.d.ts +0 -17
- package/lib/components/icon/icon.module.d.ts +0 -2
- package/lib/components/icon-collapse-handle/icon-collapse-handle.component.d.ts +0 -21
- package/lib/components/icon-collapse-handle/icon-collapse-handle.module.d.ts +0 -2
- package/lib/components/image/image.component.d.ts +0 -20
- package/lib/components/image/image.module.d.ts +0 -2
- package/lib/components/input-checkbox/input-checkbox.component.d.ts +0 -24
- package/lib/components/input-checkbox/input-checkbox.module.d.ts +0 -2
- package/lib/components/input-date-picker/input-date-picker.component.d.ts +0 -12
- package/lib/components/input-date-picker/input-date-picker.module.d.ts +0 -2
- package/lib/components/input-date-range-picker/input-date-range-picker.component.d.ts +0 -20
- package/lib/components/input-date-range-picker/input-date-range-picker.module.d.ts +0 -2
- package/lib/components/input-number-picker/input-number-picker.component.d.ts +0 -73
- package/lib/components/input-number-picker/input-number-picker.module.d.ts +0 -2
- package/lib/components/input-radio-button/input-radio-button.component.d.ts +0 -19
- package/lib/components/input-radio-button/input-radio-button.module.d.ts +0 -2
- package/lib/components/input-scanner/bar-code-scanner.d.ts +0 -7
- package/lib/components/input-scanner/input-scanner.component.d.ts +0 -24
- package/lib/components/input-scanner/input-scanner.module.d.ts +0 -2
- package/lib/components/input-scanner/scanner.service.d.ts +0 -11
- package/lib/components/input-search/input-search.component.d.ts +0 -20
- package/lib/components/input-search/input-search.module.d.ts +0 -2
- package/lib/components/input-text/input-text.component.d.ts +0 -66
- package/lib/components/input-text/input-text.module.d.ts +0 -2
- package/lib/components/input-textarea/input-textarea.component.d.ts +0 -19
- package/lib/components/input-textarea/input-textarea.module.d.ts +0 -2
- package/lib/components/level-indicator/level-indicator-level.enum.d.ts +0 -5
- package/lib/components/level-indicator/level-indicator.component.d.ts +0 -10
- package/lib/components/level-indicator/level-indicator.module.d.ts +0 -2
- package/lib/components/list-of-icons/list-of-icons.component.d.ts +0 -19
- package/lib/components/list-of-icons/list-of-icons.module.d.ts +0 -2
- package/lib/components/list-of-values/list-of-values-multiselect-popup.component.d.ts +0 -25
- package/lib/components/list-of-values/list-of-values-popup.component.d.ts +0 -47
- package/lib/components/list-of-values/list-of-values.component.d.ts +0 -37
- package/lib/components/list-of-values/list-of-values.module.d.ts +0 -2
- package/lib/components/loader/loader.component.d.ts +0 -3
- package/lib/components/loader/loader.module.d.ts +0 -2
- package/lib/components/pagination/paginate.pipe.d.ts +0 -15
- package/lib/components/pagination/pagination-instance.d.ts +0 -14
- package/lib/components/pagination/pagination.component.d.ts +0 -38
- package/lib/components/pagination/pagination.module.d.ts +0 -2
- package/lib/components/pagination/pagination.service.d.ts +0 -24
- package/lib/components/pagination-bar/pagination-bar.component.d.ts +0 -33
- package/lib/components/pagination-bar/pagination-bar.module.d.ts +0 -2
- package/lib/components/popup/const/popup-window-token.d.ts +0 -3
- package/lib/components/popup/interface/popup-button.d.ts +0 -8
- package/lib/components/popup/interface/popup-close-event.d.ts +0 -5
- package/lib/components/popup/interface/popup-settings.d.ts +0 -21
- package/lib/components/popup/interface/popup.d.ts +0 -9
- package/lib/components/popup/model/popup-button-globals.d.ts +0 -9
- package/lib/components/popup/model/popup-window.d.ts +0 -21
- package/lib/components/popup/popup-buttons.component.d.ts +0 -13
- package/lib/components/popup/popup-message-display.component.d.ts +0 -12
- package/lib/components/popup/popup-window-shell.component.d.ts +0 -42
- package/lib/components/popup/popup.module.d.ts +0 -4
- package/lib/components/popup/service/popup-shower.service.d.ts +0 -17
- package/lib/components/popup/service/prompt.service.d.ts +0 -17
- package/lib/components/popup/text-input-popup.component.d.ts +0 -12
- package/lib/components/responsive-text/responsive-text.component.d.ts +0 -4
- package/lib/components/responsive-text/responsive-text.module.d.ts +0 -2
- package/lib/components/simple-grid/base-simple-grid.component.d.ts +0 -53
- package/lib/components/simple-grid/simple-grid-cell.component.d.ts +0 -30
- package/lib/components/simple-grid/simple-grid-column.directive.d.ts +0 -43
- package/lib/components/simple-grid/simple-grid.component.d.ts +0 -78
- package/lib/components/simple-grid/simple-grid.module.d.ts +0 -2
- package/lib/components/tile/tile.component.d.ts +0 -16
- package/lib/components/tile/tile.module.d.ts +0 -2
- package/lib/components/tile-select/tile-select.component.d.ts +0 -8
- package/lib/components/tile-select/tile-select.module.d.ts +0 -2
- package/lib/components/tooltip/tooltip.component.d.ts +0 -18
- package/lib/components/tooltip/tooltip.module.d.ts +0 -2
- package/lib/components/validation-error/validation-error.component.d.ts +0 -12
- package/lib/components/validation-error/validation-error.module.d.ts +0 -2
- package/lib/components/view-mode-buttons/content-view-mode.enum.d.ts +0 -8
- package/lib/components/view-mode-buttons/view-mode-buttons.component.d.ts +0 -17
- package/lib/components/view-mode-buttons/view-mode-buttons.module.d.ts +0 -2
- package/lib/core/constant/default-upper-bound-for-range-components.d.ts +0 -2
- package/lib/core/constant/java-max-int.d.ts +0 -1
- package/lib/core/constant/number-inputs-key-down-white-list.d.ts +0 -2
- package/lib/core/decorator/input-boolean.decorator.d.ts +0 -8
- package/lib/core/enum/co-direction.d.ts +0 -6
- package/lib/core/enum/co-document-image-display-kind.enum.d.ts +0 -5
- package/lib/core/enum/co-document-type.enum.d.ts +0 -5
- package/lib/core/enum/co-orientation.d.ts +0 -6
- package/lib/core/enum/core-components-icon.enum.d.ts +0 -298
- package/lib/core/enum/file-type-internal.enum.d.ts +0 -15
- package/lib/core/enum/file-type.enum.d.ts +0 -5
- package/lib/core/enum/filterItem-mode.enum.d.ts +0 -15
- package/lib/core/enum/input-number-picker-show-mode.enum.d.ts +0 -5
- package/lib/core/enum/keyboard-code.enum.d.ts +0 -71
- package/lib/core/enum/keyboard-key.enum.d.ts +0 -70
- package/lib/core/enum/object-right-type.enum.d.ts +0 -5
- package/lib/core/enum/popup-button-type.enum.d.ts +0 -9
- package/lib/core/enum/popup-type.enum.d.ts +0 -9
- package/lib/core/enum/table-name.enum.d.ts +0 -79
- package/lib/core/function/any-nill.function.d.ts +0 -1
- package/lib/core/function/is-nill.function.d.ts +0 -1
- package/lib/core/function/none-nill.function.d.ts +0 -1
- package/lib/core/function/not-nill.function.d.ts +0 -1
- package/lib/core/model/bounds-constrained-number-value.d.ts +0 -46
- package/lib/core/model/check-precision-and-scale-result.d.ts +0 -4
- package/lib/core/model/check-within-stepped-bounds-result.d.ts +0 -8
- package/lib/core/model/co-document-right.bo.d.ts +0 -6
- package/lib/core/model/co-document.bo.d.ts +0 -61
- package/lib/core/model/core-components-icon-svg.d.ts +0 -4
- package/lib/core/model/element-position.d.ts +0 -7
- package/lib/core/model/event/string-prompt-result-event.d.ts +0 -6
- package/lib/core/service/form-input-user-change-listener.service.d.ts +0 -10
- package/lib/core/service/form-master.service.d.ts +0 -26
- package/lib/core/service/ng-zone-wrapper.service.d.ts +0 -6
- package/lib/core/utils/array-utils.d.ts +0 -85
- package/lib/core/utils/browser-utils.d.ts +0 -15
- package/lib/core/utils/direction-enum-utils.d.ts +0 -5
- package/lib/core/utils/event-utils.d.ts +0 -12
- package/lib/core/utils/file-utils.d.ts +0 -29
- package/lib/core/utils/number-utils.d.ts +0 -89
- package/lib/core/utils/object-utils.d.ts +0 -31
- package/lib/core/utils/string-utils.d.ts +0 -25
- package/lib/core/validator/email.validator.d.ts +0 -2
- package/lib/core/validator/equal.validator.d.ts +0 -2
- package/lib/core/validator/max-string-length.validator.d.ts +0 -2
- package/lib/core/validator/password.validator.d.ts +0 -3
- package/lib/core/validator/precision-scale.validator.d.ts +0 -2
- package/lib/core/validator/required.validator.d.ts +0 -2
- package/lib/directives/clickoutside/click-outside-master.service.d.ts +0 -15
- package/lib/directives/clickoutside/click-outside.directive.d.ts +0 -18
- package/lib/directives/clickoutside/clickoutside.module.d.ts +0 -2
- package/lib/directives/observe-visibility/observe-visibility.directive.d.ts +0 -14
- package/lib/directives/observe-visibility/observe-visibility.module.d.ts +0 -2
- package/lib/directives/overlay/overlay-parent.directive.d.ts +0 -6
- package/lib/directives/overlay/overlay.directive.d.ts +0 -25
- package/lib/directives/overlay/overlay.module.d.ts +0 -2
- package/lib/directives/ripple/ripple-ref.d.ts +0 -21
- package/lib/directives/ripple/ripple-renderer.d.ts +0 -56
- package/lib/directives/ripple/ripple.directive.d.ts +0 -56
- package/lib/directives/ripple/ripple.module.d.ts +0 -2
- package/lib/directives/ripple/scroll-dispatcher.service.d.ts +0 -51
- package/lib/directives/ripple/scrollable.directive.d.ts +0 -20
- package/lib/directives/ripple/viewport-ruler.service.d.ts +0 -29
- package/lib/directives/screen-configuration/screen-configuration.directive.d.ts +0 -32
- package/lib/directives/screen-configuration/screen-configuration.module.d.ts +0 -2
- package/lib/directives/stopclick/stop-click.directive.d.ts +0 -10
- package/lib/directives/stopclick/stop-click.module.d.ts +0 -2
- package/lib/directives/template-wrapper/template-wrapper.directive.d.ts +0 -13
- package/lib/directives/template-wrapper/template-wrapper.module.d.ts +0 -2
- package/lib/directives/tooltip/tooltip-directive.module.d.ts +0 -2
- package/lib/directives/tooltip/tooltip.directive.d.ts +0 -20
- package/lib/interfaces/dialog-response.interface.d.ts +0 -6
- package/lib/interfaces/screen-config-adapter-component-interface-name.d.ts +0 -3
- package/lib/interfaces/screen-config-adapter.component.interface.d.ts +0 -10
- package/lib/model/enum/app-button-type.enum.d.ts +0 -9
- package/lib/model/enum/app-popup-type.enum.d.ts +0 -6
- package/lib/model/icon-list-item.d.ts +0 -6
- package/lib/pipes/append.pipe.d.ts +0 -4
- package/lib/pipes/append.pipe.module.d.ts +0 -2
- package/lib/pipes/filter.pipe.d.ts +0 -4
- package/lib/pipes/filter.pipe.module.d.ts +0 -2
- package/lib/pipes/prepend.pipe.d.ts +0 -4
- package/lib/pipes/prepend.pipe.module.d.ts +0 -2
- package/lib/pipes/price-display-pipe.module.d.ts +0 -2
- package/lib/pipes/price-display.pipe.d.ts +0 -4
- package/lib/service/base-module-screen-config.service.d.ts +0 -47
- package/lib/service/base-module.service.d.ts +0 -22
- package/lib/service/color-sequence.service.d.ts +0 -7
- package/lib/service/overlay.service.d.ts +0 -13
- package/lib/translation/core-components-translation.module.d.ts +0 -4
- package/lib/translation/core-components-translation.service.d.ts +0 -6
- package/lib/translation/core-dictionary.service.d.ts +0 -12
- package/lib/translation/core-localize.pipe.d.ts +0 -7
- package/public-api.d.ts +0 -128
- /package/{lib → projects/corecomponents/src/lib}/components/article-tile/article-tile.component.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/base/commit-buttons/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/base/commit-buttons/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/base/commit-buttons/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/base/commit-buttons/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/button/style/_co-ripple.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/button/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/button/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/button/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/button/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/calendar/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/calendar/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/calendar/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/calendar/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/card/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/card/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/card/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/card/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/carousel/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/carousel/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/carousel/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/carousel/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/carousel-3d/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/carousel-3d/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/carousel-3d/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/carousel-3d/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/checkmark-overlay/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/checkmark-overlay/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/checkmark-overlay/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/checkmark-overlay/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/co-dialog/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/co-dialog/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/co-dialog/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/co-dialog/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/co-dialog-wizard/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/co-dialog-wizard/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/co-dialog-wizard/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/co-dialog-wizard/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/collapsible/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/collapsible/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/collapsible/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/collapsible/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/color-picker/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/color-picker/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/color-picker/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/color-picker/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/confirmation-dialog/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/confirmation-dialog/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/confirmation-dialog/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/confirmation-dialog/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/double-calendar/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/double-calendar/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/double-calendar/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/double-calendar/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/filter-item/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/filter-item/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/filter-item/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/filter-item/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar-button/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar-button/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar-button/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar-button/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/icon/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/icon/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/icon/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/icon/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/icon-collapse-handle/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/icon-collapse-handle/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/icon-collapse-handle/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/icon-collapse-handle/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/image/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/image/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/image/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/image/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-checkbox/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-checkbox/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-checkbox/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-checkbox/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-date-picker/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-date-picker/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-date-picker/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-date-picker/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-date-range-picker/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-date-range-picker/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-date-range-picker/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-date-range-picker/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-number-picker/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-number-picker/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-number-picker/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-number-picker/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-radio-button/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-radio-button/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-radio-button/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-radio-button/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-scanner/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-scanner/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-scanner/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-scanner/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-search/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-search/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-search/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-search/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-text/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-text/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-text/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-text/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-textarea/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-textarea/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-textarea/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-textarea/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/level-indicator/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/level-indicator/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/level-indicator/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/level-indicator/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/list-of-icons/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/list-of-icons/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/list-of-icons/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/list-of-icons/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/list-of-values/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/list-of-values/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/list-of-values/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/list-of-values/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/loader/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/loader/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/loader/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/loader/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/pagination/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/pagination/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/pagination/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/pagination/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/pagination-bar/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/pagination-bar/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/pagination-bar/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/pagination-bar/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/popup/popup-buttons.component.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/popup/popup-window-shell.component.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/responsive-text/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/responsive-text/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/responsive-text/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/responsive-text/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/simple-grid/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/simple-grid/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/simple-grid/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/simple-grid/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/tile/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/tile/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/tile/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/tile/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/tile-select/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/tile-select/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/tile-select/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/tile-select/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/tooltip/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/tooltip/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/tooltip/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/tooltip/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/validation-error/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/validation-error/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/validation-error/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/validation-error/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/view-mode-buttons/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/view-mode-buttons/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/view-mode-buttons/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/view-mode-buttons/style/material.scss +0 -0
- /package/{lib/interfaces/scanner-input.interface.d.ts → projects/corecomponents/src/lib/interfaces/scanner-input.interface.ts} +0 -0
- /package/{lib → projects/corecomponents/src/lib}/modules/pagination/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/modules/pagination/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/modules/pagination/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/modules/pagination/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/_input.mixins.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/_mixin.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/_variables.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/corecomponents-globals.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/material2/_core.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/material2/_material2-scss-barrel.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/material2/ripple/_co-ripple.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/material2/style/_elevation.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/material2/style/_list-common.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/material2/style/_variables.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/material2/theming/_palette.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/material2/theming/_theming.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/material2/typography/_typography.scss +0 -0
|
@@ -0,0 +1,299 @@
|
|
|
1
|
+
/** AUTO GENERATED FILE. DO NOT CHANGE.. OR YOU WILL SUFFER THE CONSEQUENCES OF YOUR ACTIONS **/
|
|
2
|
+
|
|
3
|
+
export const CoreComponentsIconSvg: {[iconName: string]: string} = {
|
|
4
|
+
"account": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M31.05,22.53h-.49C29.45,24.1,27.15,26,25,26s-4.46-1.87-5.56-3.44H19a4.2,4.2,0,0,0-4,3.87l2.68,3c0,1.78,1.81,8.15,4,8.15h6.72c2.23,0,4-6.37,4-8.15l2.69-3A4.21,4.21,0,0,0,31.05,22.53Z\" fill=\"#484f60\"/><path d=\"M31.18,17.64a6.2,6.2,0,0,1-12.37,0c0-2.72,2.77-5.14,6.19-5.14S31.18,14.92,31.18,17.64Z\" fill=\"#484f60\"/></svg>",
|
|
5
|
+
"account_round_open": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25,16.29c2.38,0,4.31,1.69,4.31,3.58a4.32,4.32,0,0,1-8.62,0C20.69,18,22.62,16.29,25,16.29Z\" fill=\"#484f60\"/><path d=\"M30.15,28c0,1.24-1.26,5.68-2.81,5.68H22.66c-1.55,0-2.81-4.44-2.81-5.68L18,26a2.94,2.94,0,0,1,2.81-2.69h.34A5.55,5.55,0,0,0,25,25.67a5.51,5.51,0,0,0,3.87-2.39h.35A2.94,2.94,0,0,1,32,26Z\" fill=\"#484f60\"/><path d=\"M25,40A15,15,0,1,1,40,25,15,15,0,0,1,25,40Zm0-29A14,14,0,1,0,39,25,14,14,0,0,0,25,11Z\" fill=\"#484f60\"/></svg>",
|
|
6
|
+
"activities": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"33.08\" y=\"19.99\" width=\"1.15\" height=\"4.99\" fill=\"#484f60\" opacity=\"0.5\"/><path d=\"M16.92,15a.39.39,0,0,1,.39-.38H27.87V13.46H17.31A1.54,1.54,0,0,0,15.77,15v3.05h1.15Z\" fill=\"#484f60\" opacity=\"0.5\"/><path d=\"M33.08,32V35a.39.39,0,0,1-.39.38H17.31a.39.39,0,0,1-.39-.38V25H15.77V35a1.54,1.54,0,0,0,1.54,1.54H32.69A1.54,1.54,0,0,0,34.23,35V32Z\" fill=\"#484f60\" opacity=\"0.5\"/><path d=\"M27.87,13.46v5c0,1.36.21,1.57,1.57,1.57h4.79Z\" fill=\"#484f60\" opacity=\"0.5\"/><polygon points=\"40 26.71 29.4 26.71 29.41 22.69 23.64 28.46 29.41 34.23 29.41 30.22 40 30.22 40 26.71\" fill=\"#484f60\"/><polygon points=\"10 23.3 20.6 23.3 20.59 27.31 26.36 21.54 20.59 15.77 20.59 19.78 10 19.78 10 23.3\" fill=\"#484f60\"/></svg>",
|
|
7
|
+
"add_to_cart_drop": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M16.58,34.84a1.8,1.8,0,1,0,1.8,1.8A1.79,1.79,0,0,0,16.58,34.84Z\" fill=\"#484f60\"/><path d=\"M31.49,34.84a1.8,1.8,0,1,0,1.8,1.8A1.79,1.79,0,0,0,31.49,34.84Z\" fill=\"#484f60\"/><path d=\"M35.6,17.9l-1.51.18L31.88,20.3l1.31-.17a.88.88,0,0,1,1,1.08L32.35,29.5a1.52,1.52,0,0,1-1.44,1.2H16.51a1.75,1.75,0,0,1-1.57-1.17l-2.31-5.6a1,1,0,0,1,.85-1.29l4.43-.56-1.86-1.86-5.13.61a1,1,0,0,0-.87,1.28l3.34,9.44A1.73,1.73,0,0,0,15,32.72H32.64a1.51,1.51,0,0,0,1.43-1.2L36.6,19A.89.89,0,0,0,35.6,17.9Z\" fill=\"#484f60\"/><path d=\"M39,17a1.87,1.87,0,0,0-1.36,1.46l-.42,2.89c-.1.67.31,1,.9.7a2.75,2.75,0,0,0,1.33-1.7L40,18A.73.73,0,0,0,39,17Z\" fill=\"#484f60\"/><polygon points=\"24 25.35 32.04 17.3 27.04 17.3 27.04 10 20.95 10 20.95 17.3 15.96 17.3 24 25.35\" fill=\"#484f60\"/></svg>",
|
|
8
|
+
"arrow_down": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"27.06 31.14 27.06 12.5 22.94 12.5 22.94 31.14 22.94 31.14 18.64 31.14 25 37.5 31.36 31.14 27.06 31.14\" fill=\"#484f60\"/></svg>",
|
|
9
|
+
"arrow_fat_left": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"12.5 25 24.8 37.3 24.8 29.65 37.5 29.65 37.5 20.34 24.8 20.34 24.8 12.7 12.5 25\" fill=\"#484f60\"/></svg>",
|
|
10
|
+
"arrow_fat_right": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"37.5 25 25.2 12.7 25.2 20.35 12.5 20.35 12.5 29.66 25.2 29.66 25.2 37.3 37.5 25\" fill=\"#484f60\"/></svg>",
|
|
11
|
+
"arrow_left": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"23.63 33.63 15 25 23.63 16.37 24.6 17.34 16.95 25 24.6 32.66 23.63 33.63\" fill=\"#484f60\" opacity=\"0.98\"/><rect x=\"23.49\" y=\"24.31\" width=\"11.51\" height=\"1.38\" fill=\"#484f60\" opacity=\"0.98\"/></svg>",
|
|
12
|
+
"arrow_left_round_open": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25,11.17a14,14,0,1,1-14,14,14,14,0,0,1,14-14m0-1a15,15,0,1,0,15,15,15,15,0,0,0-15-15Z\" fill=\"#484f60\"/><polygon points=\"23.65 31.43 17.39 25.17 23.65 18.9 24.36 19.61 18.8 25.17 24.36 30.72 23.65 31.43\" fill=\"#484f60\" opacity=\"0.98\"/><rect x=\"23.55\" y=\"24.67\" width=\"8.36\" height=\"1\" fill=\"#484f60\" opacity=\"0.98\"/></svg>",
|
|
13
|
+
"arrow_point_down": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"-280 371 51 51\" enable-background=\"new -280 371 51 51\" ><path fill=\"#29363E\" d=\"M-248.3,392.2c0.3,0,0.6,0.1,0.8,0.3c0.5,0.5,0.5,1.2,0,1.6l-6.2,6.2c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3l-6.2-6.2c-0.2-0.2-0.3-0.5-0.3-0.8c0-0.3,0.1-0.6,0.3-0.8c0.2-0.2,0.5-0.3,0.8-0.3c0.3,0,0.6,0.1,0.8,0.3l5.4,5.4l5.4-5.4C-248.9,392.4-248.6,392.2-248.3,392.2z\"/></svg>",
|
|
14
|
+
"arrow_point_left": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 51 51\" enable-background=\"new 0 0 51 51\" ><path fill=\"#484F5F\" d=\"M31.9,36.7l-14.7-9.6C17.1,27,17,26.9,17,26.7v-2.4c0-0.2,0.1-0.3,0.2-0.4l14.7-9.6c0.2-0.2,0.5-0.1,0.7,0.1l1.4,2.1c0.2,0.2,0.1,0.5-0.1,0.7l-12,7.8c-0.3,0.2-0.3,0.6,0,0.8l12,7.8c0.2,0.2,0.3,0.5,0.1,0.7l-1.4,2.1C32.4,36.8,32.1,36.8,31.9,36.7z\"/></svg>",
|
|
15
|
+
"arrow_point_right": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 51 51\" enable-background=\"new 0 0 51 51\" ><path fill=\"#484F5F\" d=\"M19.1,14.3l14.7,9.6c0.1,0.1,0.2,0.2,0.2,0.4v2.4c0,0.2-0.1,0.3-0.2,0.4l-14.7,9.6c-0.2,0.2-0.5,0.1-0.7-0.1l-1.4-2.1c-0.2-0.2-0.1-0.5,0.1-0.7l12-7.8c0.3-0.2,0.3-0.6,0-0.8l-12-7.8c-0.2-0.2-0.3-0.5-0.1-0.7l1.4-2.1C18.6,14.2,18.9,14.2,19.1,14.3z\"/></svg>",
|
|
16
|
+
"arrow_point_up": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"-280 371 51 51\" enable-background=\"new -280 371 51 51\" ><path fill=\"#29363E\" d=\"M-260.7,400.8c-0.3,0-0.6-0.1-0.8-0.3c-0.5-0.5-0.5-1.2,0-1.6l6.2-6.2c0.2-0.2,0.5-0.3,0.8-0.3c0.3,0,0.6,0.1,0.8,0.3l6.2,6.2c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.6-0.3,0.8c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3l-5.4-5.4l-5.4,5.4C-260.1,400.6-260.4,400.8-260.7,400.8z\"/></svg>",
|
|
17
|
+
"arrow_right_round_open": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25,11.17a14,14,0,1,1-14,14,14,14,0,0,1,14-14m0-1a15,15,0,1,0,15,15,15,15,0,0,0-15-15Z\" fill=\"#484f60\"/><polygon points=\"26.35 31.43 25.64 30.72 31.2 25.17 25.64 19.61 26.35 18.9 32.61 25.17 26.35 31.43\" fill=\"#484f60\" opacity=\"0.98\"/><rect x=\"18.09\" y=\"24.67\" width=\"8.36\" height=\"1\" fill=\"#484f60\" opacity=\"0.98\"/></svg>",
|
|
18
|
+
"arrow_scroll_down": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 50 50\" enable-background=\"new 0 0 50 50\" ><polygon fill=\"#29363E\" points=\"5,19.4 8.5,15.8 25,27.3 41.5,15.8 45,19.4 25,34.2 \"/></svg>",
|
|
19
|
+
"arrow_scroll_left": "<svg xmlns=\"http://www.w3.org/2000/svg\" enable-background=\"new 0 0 50 50\" viewBox=\"0 0 50 50\" y=\"0px\" x=\"0px\" version=\"1.1\"><metadata ><rdf:RDF><cc:Work rdf:about=\"\"><dc:format>image/svg+xml</dc:format><dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs /><polygon fill=\"#000000\" transform=\"matrix(0,1,-1,0,50,0)\" points=\"8.5,15.8 25,27.3 41.5,15.8 45,19.4 25,34.2 5,19.4 \" /></svg>",
|
|
20
|
+
"arrow_scroll_right": "<svg xmlns=\"http://www.w3.org/2000/svg\" enable-background=\"new 0 0 50 50\" viewBox=\"0 0 50 50\" y=\"0px\" x=\"0px\" version=\"1.1\"><metadata ><rdf:RDF><cc:Work rdf:about=\"\"><dc:format>image/svg+xml</dc:format><dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs /><polygon fill=\"#000000\" transform=\"matrix(0,-1,1,0,0,50)\" points=\"41.5,15.8 45,19.4 25,34.2 5,19.4 8.5,15.8 25,27.3 \" /></svg>",
|
|
21
|
+
"arrow_scroll_up": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 50 50\" enable-background=\"new 0 0 50 50\" ><polygon fill=\"#29363E\" points=\"5,30.6 8.5,34.2 25,22.7 41.5,34.2 45,30.6 25,15.8 \"/></svg>",
|
|
22
|
+
"arrow_up": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><polygon points=\"27.5 19.4 27.5 38 23.4 38 23.4 19.4 23.4 19.4 19.1 19.4 25.4 13 31.8 19.4 27.5 19.4\" fill=\"#2a363b\"/></svg>",
|
|
23
|
+
"article": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M37.43,15.14H12.57A2.57,2.57,0,0,0,10,17.71V32.29a2.57,2.57,0,0,0,2.57,2.57H37.43A2.57,2.57,0,0,0,40,32.29V17.71A2.57,2.57,0,0,0,37.43,15.14ZM14.29,32.71H12.15V17.29h2.14Zm2,0H15V17.29h1.29Zm2.57,0H17.54V17.29h1.29Zm3.52,0H20.2V17.29h2.15Zm2,0H23.11V17.29H24.4Zm2.06,0H25.17V17.29h1.29Zm2.66,0H27.83V17.29h1.29Zm3.51,0H31.34V17.29h1.29Zm3.34,0H33.4V17.29H36Zm2.32,0H37V17.29h1.29Z\" fill=\"#484f60\"/></svg>",
|
|
24
|
+
"article_with_fold": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M31.51,35.5H12a.5.5,0,0,1-.5-.5V15a.5.5,0,0,1,.5-.5H38a.5.5,0,0,1,.5.5V28.73H40V15a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H31.51Z\" fill=\"#484f60\"/><path d=\"M40,28.73H33.56c-1.78,0-2.05.27-2.05,2.05V37Z\" fill=\"#484f60\"/><rect x=\"14.5\" y=\"18.5\" width=\"6\" height=\"5\" fill=\"#484f60\"/><rect x=\"14.5\" y=\"30.5\" width=\"15\" height=\"1\" fill=\"#484f60\"/><rect x=\"14.5\" y=\"26.5\" width=\"15\" height=\"1\" fill=\"#484f60\"/><rect x=\"22.5\" y=\"22.5\" width=\"13\" height=\"1\" fill=\"#484f60\"/><rect x=\"22.5\" y=\"18.5\" width=\"13\" height=\"1\" fill=\"#484f60\"/></svg>",
|
|
25
|
+
"asterisk_small": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"10\" y=\"22\" width=\"30\" height=\"6\" transform=\"translate(15.85 -9.15) rotate(30)\" fill=\"#484f60\"/><rect x=\"10\" y=\"22\" width=\"30\" height=\"6\" transform=\"translate(0 50) rotate(-90)\" fill=\"#484f60\"/><rect x=\"10\" y=\"22\" width=\"30\" height=\"6\" transform=\"translate(-9.15 15.85) rotate(-30)\" fill=\"#484f60\"/></svg>",
|
|
26
|
+
"attachments": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M12.16,18.19l-1.39,1.39a4.28,4.28,0,0,1,.27-6l1.39,1.39a2.33,2.33,0,0,0-.27,3.25Z\" fill=\"#484f60\"/><path d=\"M31.17,27.37l-1.39,1.39L15.68,14.67a2.33,2.33,0,0,0-3.25.27L11,13.55a4.29,4.29,0,0,1,6-.28l14.1,14.1Z\" fill=\"#484f60\"/><path d=\"M37.7,37.72l-1.39-1.4a4,4,0,0,0,.41-5.6l-18-18,1.39-1.39,18,18c2.2,2.2,2,6-.41,8.4Z\" fill=\"#484f60\"/><path d=\"M37.7,37.72c-2.43,2.42-6.19,2.61-8.39.41L10.77,19.58l1.39-1.39L30.7,36.73c1.43,1.44,3.95,1.25,5.61-.41l1.39,1.4Z\" fill=\"#484f60\"/><path d=\"M31,31.15l-1.39-1.39a.79.79,0,0,0,.14-1.07l1.39-1.39A2.72,2.72,0,0,1,31,31.15Z\" fill=\"#484f60\"/><path d=\"M31,31.15a2.72,2.72,0,0,1-3.85.14L16.54,20.73l1.39-1.39L28.49,29.9a.79.79,0,0,0,1.07-.14L31,31.15Z\" fill=\"#484f60\"/></svg>",
|
|
27
|
+
"back_to_top": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><text transform=\"translate(14.59 36.45)\" font-size=\"10\" fill=\"#484f60\" font-family=\"Quicksand-Regular, Quicksand\">TOP</text><polygon points=\"25 11.75 32.5 19.25 27.43 19.25 22.57 19.25 17.5 19.25 25 11.75\" fill=\"#484f60\"/><rect x=\"21.5\" y=\"21.25\" width=\"7\" height=\"1\" fill=\"#484f60\"/><rect x=\"21.5\" y=\"24.25\" width=\"7\" height=\"1\" fill=\"#484f60\"/></svg>",
|
|
28
|
+
"Barcode": "<svg preserveAspectRatio=\"none\" version=\"1.1\" viewBox=\"0 0 50 50\" x=\"0px\" xmlns=\"http://www.w3.org/2000/svg\" y=\"0px\"><path d=\"M 32.002 0 L 3.001 0 C 1.345 0 0 1.344 0 2.999 L 0 20.002 C 0 21.66 1.345 23.002 3.001 23.002 L 32.002 23.002 C 33.66 23.002 35 21.66 35 20.002 L 35 2.999 C 35 1.344 33.66 0 32.002 0 Z M 5 20.5 L 2.503 20.5 L 2.503 2.501 L 5 2.501 L 5 20.5 Z M 7.301 20.5 L 5.801 20.5 L 5.801 2.501 L 7.301 2.501 L 7.301 20.5 Z M 10.302 20.5 L 8.8 20.5 L 8.8 2.501 L 10.302 2.501 L 10.302 20.5 Z M 14.403 20.5 L 11.9 20.5 L 11.9 2.501 L 14.403 2.501 L 14.403 20.5 Z M 16.802 20.5 L 15.3 20.5 L 15.3 2.501 L 16.802 2.501 L 16.802 20.5 Z M 19.204 20.5 L 17.703 20.5 L 17.703 2.501 L 19.204 2.501 L 19.204 20.5 Z M 22.306 20.5 L 20.804 20.5 L 20.804 2.501 L 22.306 2.501 L 22.306 20.5 Z M 26.404 20.5 L 24.902 20.5 L 24.902 2.501 L 26.404 2.501 L 26.404 20.5 Z M 30.304 20.5 L 27.303 20.5 L 27.303 2.501 L 30.304 2.501 L 30.304 20.5 Z M 33 20.5 L 31.505 20.5 L 31.505 2.501 L 33 2.501 L 33 20.5 Z\" fill=\"#1E2930\" transform=\" translate(7.5 13.499)\" /></svg>",
|
|
29
|
+
"big_mac": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><rect x=\"10.5\" y=\"14.5\" width=\"30\" height=\"4\" fill=\"#4d5050\"/><rect x=\"10.5\" y=\"20.5\" width=\"30\" height=\"4\" fill=\"#4d5050\"/><rect x=\"10.5\" y=\"26.5\" width=\"30\" height=\"4\" fill=\"#4d5050\"/><rect x=\"10.5\" y=\"32.5\" width=\"30\" height=\"4\" fill=\"#4d5050\"/></svg>",
|
|
30
|
+
"boxes": "<svg preserveAspectRatio=\"none\" version=\"1.1\" viewBox=\"0 0 50 50\" x=\"0px\" xmlns=\"http://www.w3.org/2000/svg\" y=\"0px\"><g transform=\" translate(9 11)\"><path d=\"M 0 12.292 L 0 0 L 8.563 1.518 L 8.563 14.576 L 0 12.292 Z\" fill=\"#1E2930\" transform=\" translate(0 13.24)\" /><path d=\"M 0 1.132 L 7.909 0 L 7.909 11.897 L 0 14.153 L 0 1.132 Z\" fill=\"#1E2930\" transform=\" translate(9.813 13.647)\" /><path d=\"M 0 11.868 L 0 0 L 3.111 0.625 L 3.111 12.876 L 0 11.868 Z\" fill=\"#1E2930\" transform=\" translate(18.969 13.69)\" /><path d=\"M 0 1.433 L 8.673 0 L 8.673 11.434 L 0 13.721 L 0 1.433 Z\" fill=\"#1E2930\" transform=\" translate(23.327 12.898)\" /><path d=\"M 0 0.752 L 7.691 0 L 7.691 10.344 L 0 11.655 L 0 0.752 Z\" fill=\"#1E2930\" transform=\" translate(17.633 1.08)\" /><path d=\"M 0 10.344 L 0 0 L 8.13 0.755 L 8.13 11.669 L 0 10.344 Z\" fill=\"#1E2930\" transform=\" translate(8.258 1.077)\" /><path d=\"M 0 0.752 L 5.708 0 L 5.708 0.444 L 12.023 1.475 L 7.602 2.106 L 0 0.752 Z\" fill=\"#1E2930\" transform=\" translate(1.588 11.791)\" /><path d=\"M 0 1.434 L 5.278 0.54 L 5.182 0 L 9.086 0.528 L 1.549 1.772 L 0 1.434 Z\" fill=\"#1E2930\" transform=\" translate(21.162 11.687)\" /><path d=\"M 0 0.29 L 5.135 0 L 9.542 0.281 L 4.829 0.741 L 0 0.29 Z\" fill=\"#1E2930\" transform=\" translate(12.179 0.185)\" /></g></svg>",
|
|
31
|
+
"brush": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M28.16,26a9.71,9.71,0,0,1-4-3.66A.88.88,0,0,0,22.92,22c-1.08.48-2.19.92-3.27,1.43-3.71,1.74-6,4.5-6.23,8.75-.17,2.75-.89,5.32-3.42,7.25,1.18,0,2.12,0,3.05,0,.73,0,1.46-.07,2.18-.12a10.82,10.82,0,0,0,4.86-3.38c1.31-1.61,3.14-3.58,3.95-5.49l-.08.38a22.78,22.78,0,0,1-3.09,5.74A11.79,11.79,0,0,1,18.13,39a22.35,22.35,0,0,0,4.29-1A8.2,8.2,0,0,0,28.06,32c.38-1.62.44-3.31.66-5A1,1,0,0,0,28.16,26Z\" fill=\"#484f60\"/><path d=\"M26.23,20.43l6.57-9.32a1.23,1.23,0,0,1,1.87-.18l4.94,4.7a1.24,1.24,0,0,1-.11,1.9l-9.15,6.78a1.25,1.25,0,0,1-1.58-.08L26.4,22.06A1.23,1.23,0,0,1,26.23,20.43Z\" fill=\"#484f60\"/></svg>",
|
|
32
|
+
"brush_round_open": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><title>Tekengebied 13 kopie 739</title><path d=\"M25,45A20,20,0,1,1,45,25,20,20,0,0,1,25,45ZM25,6.29A18.71,18.71,0,1,0,43.71,25,18.73,18.73,0,0,0,25,6.29Z\" fill=\"#484f60\"/><path d=\"M13.39,36.15A7,7,0,0,0,16,30.53a7.59,7.59,0,0,1,4.83-6.77c.83-.39,1.69-.73,2.53-1.11a.69.69,0,0,1,1,.29,7.34,7.34,0,0,0,3.09,2.83.73.73,0,0,1,.43.82c-.17,1.28-.22,2.59-.51,3.84A6.35,6.35,0,0,1,23,35a24.09,24.09,0,0,1-7.25,1.14C15,36.18,14.3,36.15,13.39,36.15Z\" fill=\"#484f60\"/><path d=\"M26,21.46,31,14.25a1,1,0,0,1,1.46-.14l3.82,3.64a1,1,0,0,1-.09,1.47l-7.08,5.24a1,1,0,0,1-1.22-.06l-1.83-1.67A1,1,0,0,1,26,21.46Z\" fill=\"#484f60\"/></svg>",
|
|
33
|
+
"building_columns": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path style= \"fill: #484f60\" d=\"M243.4 2.587C251.4-.8625 260.6-.8625 268.6 2.587L492.6 98.59C506.6 104.6 514.4 119.6 511.3 134.4C508.3 149.3 495.2 159.1 479.1 160V168C479.1 181.3 469.3 192 455.1 192H55.1C42.74 192 31.1 181.3 31.1 168V160C16.81 159.1 3.708 149.3 .6528 134.4C-2.402 119.6 5.429 104.6 19.39 98.59L243.4 2.587zM256 128C273.7 128 288 113.7 288 96C288 78.33 273.7 64 256 64C238.3 64 224 78.33 224 96C224 113.7 238.3 128 256 128zM127.1 416H167.1V224H231.1V416H280V224H344V416H384V224H448V420.3C448.6 420.6 449.2 420.1 449.8 421.4L497.8 453.4C509.5 461.2 514.7 475.8 510.6 489.3C506.5 502.8 494.1 512 480 512H31.1C17.9 512 5.458 502.8 1.372 489.3C-2.715 475.8 2.515 461.2 14.25 453.4L62.25 421.4C62.82 420.1 63.41 420.6 63.1 420.3V224H127.1V416z\"/></svg>",
|
|
34
|
+
"businessrules": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25,24.59l-.3-1.7-2.3-.21a5.22,5.22,0,0,0-.7-1.11l.74-2.07L21,18.5l-1.69,1.4a5.26,5.26,0,0,0-1.26-.29l-1-2.1-1.7.3-.21,2.29a4.88,4.88,0,0,0-1.15.73l-2-.73-1,1.41,1.38,1.67a5.29,5.29,0,0,0-.29,1.31l-2.09,1,.3,1.7,2.32.22a5.51,5.51,0,0,0,.71,1.09l-.74,2.05,1.42,1,1.68-1.4a5.3,5.3,0,0,0,1.3.28l1,2.08,1.7-.3.21-2.31A5.44,5.44,0,0,0,21,29.19l2.08.74,1-1.41-1.42-1.71a5,5,0,0,0,.28-1.23Zm-7.13,2.55a2.17,2.17,0,1,1,1.77-2.51A2.16,2.16,0,0,1,17.87,27.14Z\" fill=\"#484f60\"/><polyline points=\"35.97 33.1 38.44 29.57 40 38.44 31.14 40 33.6 36.48\" fill=\"#484f5f\"/><polygon points=\"35.62 34.07 26.39 27.61 26.55 28.42 25.66 29.69 34.39 35.81 35.62 34.07\" fill=\"#484f5f\"/><polyline points=\"33.6 13.52 31.14 10 40 11.56 38.44 20.43 35.97 16.9\" fill=\"#484f5f\"/><polygon points=\"26.61 22.23 35.61 15.93 34.39 14.19 24.82 20.89 26.4 21.04 26.61 22.23\" fill=\"#484f5f\"/></svg>",
|
|
35
|
+
"calendar": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M36.94,12h-4v2a2,2,0,1,1-4.08,0V12H21.17v2a2,2,0,1,1-4.08,0V12h-4a1.2,1.2,0,0,0-1.19,1.2V18H38.14V13.16A1.2,1.2,0,0,0,36.94,12Z\" fill=\"#484f60\"/><path d=\"M37.14,20.5v16L34.65,39H13.05a.2.2,0,0,1-.19-.2V20.5H37.14m1-1H11.86V38.8A1.2,1.2,0,0,0,13.05,40h22l3.08-3.08V19.5Z\" fill=\"#484f60\"/><rect x=\"18.24\" y=\"10\" width=\"1.79\" height=\"4.87\" rx=\"0.9\" ry=\"0.9\" fill=\"#484f60\"/><rect x=\"29.97\" y=\"10\" width=\"1.79\" height=\"4.87\" rx=\"0.9\" ry=\"0.9\" fill=\"#484f60\"/><rect x=\"11.86\" y=\"24.37\" width=\"26.28\" height=\"0.5\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"11.86\" y=\"29.5\" width=\"26.28\" height=\"0.5\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"11.86\" y=\"34.62\" width=\"26.28\" height=\"0.5\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"18.18\" y=\"19.5\" width=\"0.5\" height=\"20.5\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"24.75\" y=\"19.5\" width=\"0.5\" height=\"20.5\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"31.32\" y=\"19.5\" width=\"0.5\" height=\"20.5\" fill=\"#484f60\" opacity=\"0.25\"/></svg>",
|
|
36
|
+
"calendar_day": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 50 50\" enable-background=\"new 0 0 50 50\" ><g><path fill=\"#022D42\" d=\"M35.4,13.7H14.6c-0.6,0-1,0.5-1,1V20h22.9v-5.2C36.4,14.2,36,13.7,35.4,13.7z M19,18.8c-1,0-1.8-0.8-1.8-1.8c0-1,0.8-1.8,1.8-1.8c1,0,1.8,0.8,1.8,1.8C20.8,18,20,18.8,19,18.8z M31,18.8c-1,0-1.8-0.8-1.8-1.8c0-1,0.8-1.8,1.8-1.8s1.8,0.8,1.8,1.8C32.7,18,32,18.8,31,18.8z\"/><path fill=\"#022D42\" d=\"M35.4,22.3v12.6L31.3,39H14.6c0,0,0,0,0,0V22.3H35.4 M36.4,21.3H13.6V39c0,0.6,0.5,1,1,1h17.2l4.7-4.7V21.3L36.4,21.3z\"/><rect x=\"18.2\" y=\"10\" fill=\"#022D42\" width=\"1.6\" height=\"5.2\"/><rect x=\"30.2\" y=\"10\" fill=\"#022D42\" width=\"1.6\" height=\"5.2\"/><rect x=\"18.6\" y=\"30.5\" fill=\"#022D42\" width=\"3.4\" height=\"3.4\"/><rect x=\"19.1\" y=\"24.8\" opacity=\"0.1\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"19.1\" y=\"27.9\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"19.1\" y=\"34.1\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"22.2\" y=\"24.8\" opacity=\"0.1\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"22.2\" y=\"27.9\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"22.2\" y=\"31\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"22.2\" y=\"34.1\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"25.4\" y=\"31\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"25.4\" y=\"24.8\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"25.4\" y=\"27.9\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"25.4\" y=\"34.1\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"31.6\" y=\"31\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"31.6\" y=\"24.8\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"31.6\" y=\"27.9\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"28.5\" y=\"27.9\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"28.5\" y=\"24.8\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"28.5\" y=\"31\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"28.5\" y=\"34.1\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"16\" y=\"24.8\" opacity=\"0.1\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"16\" y=\"27.9\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"16\" y=\"31\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"16\" y=\"34.1\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/></g></svg>",
|
|
37
|
+
"calendar_day_regular": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M208 256C216.8 256 224 263.2 224 272V368C224 376.8 216.8 384 208 384H112C103.2 384 96 376.8 96 368V272C96 263.2 103.2 256 112 256H208zM128 0C141.3 0 152 10.75 152 24V64H296V24C296 10.75 306.7 0 320 0C333.3 0 344 10.75 344 24V64H384C419.3 64 448 92.65 448 128V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V128C0 92.65 28.65 64 64 64H104V24C104 10.75 114.7 0 128 0zM400 192H48V448C48 456.8 55.16 464 64 464H384C392.8 464 400 456.8 400 448V192z\"/></svg>",
|
|
38
|
+
"calendar_empty": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><path d=\"M695.94,372h-4v2a2,2,0,0,1-4.09,0v-2h-7.65v2a2,2,0,0,1-4.09,0v-2h-4a1.19,1.19,0,0,0-1.19,1.2V378h26.28v-4.82A1.19,1.19,0,0,0,695.94,372Z\" transform=\"translate(-658.5 -359.5)\" fill=\"#4d5050\"/><path d=\"M696.14,380.5v16l-2.49,2.5H672.05a.19.19,0,0,1-.19-.2V380.5h24.28m1-1H670.86V398.8a1.19,1.19,0,0,0,1.19,1.2h22l3.08-3.08V379.5Z\" transform=\"translate(-658.5 -359.5)\" fill=\"#4d5050\"/><path d=\"M678.13,374.87h0a.9.9,0,0,1-.9-.9V370.9a.9.9,0,0,1,.9-.9h0a.9.9,0,0,1,.9.9V374A.9.9,0,0,1,678.13,374.87Z\" transform=\"translate(-658.5 -359.5)\" fill=\"#4d5050\"/><path d=\"M689.87,374.87h0a.9.9,0,0,1-.9-.9V370.9a.9.9,0,0,1,.9-.9h0a.9.9,0,0,1,.9.9V374A.9.9,0,0,1,689.87,374.87Z\" transform=\"translate(-658.5 -359.5)\" fill=\"#4d5050\"/><rect x=\"12.36\" y=\"24.87\" width=\"26.28\" height=\"0.5\" fill=\"#4d5050\" opacity=\"0.25\"/><rect x=\"12.36\" y=\"30\" width=\"26.28\" height=\"0.5\" fill=\"#4d5050\" opacity=\"0.25\"/><rect x=\"12.36\" y=\"35.12\" width=\"26.28\" height=\"0.5\" fill=\"#4d5050\" opacity=\"0.25\"/><rect x=\"18.68\" y=\"20\" width=\"0.5\" height=\"20.5\" fill=\"#4d5050\" opacity=\"0.25\"/><rect x=\"25.25\" y=\"20\" width=\"0.5\" height=\"20.5\" fill=\"#4d5050\" opacity=\"0.25\"/><rect x=\"31.82\" y=\"20\" width=\"0.5\" height=\"20.5\" fill=\"#4d5050\" opacity=\"0.25\"/></svg>",
|
|
39
|
+
"calendar_range": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M36.94,12h-4v2a2,2,0,1,1-4.08,0V12H21.17v2a2,2,0,1,1-4.08,0V12h-4a1.2,1.2,0,0,0-1.19,1.2V18H38.14V13.16A1.2,1.2,0,0,0,36.94,12Z\" fill=\"#484f60\"/><path d=\"M37.14,20.5v16L34.65,39H13.05a.2.2,0,0,1-.19-.2V20.5H37.14m1-1H11.86V38.8A1.2,1.2,0,0,0,13.05,40h22l3.08-3.08V19.5Z\" fill=\"#484f60\"/><rect x=\"18.24\" y=\"10\" width=\"1.79\" height=\"4.87\" rx=\"0.9\" ry=\"0.9\" fill=\"#484f60\"/><rect x=\"29.97\" y=\"10\" width=\"1.79\" height=\"4.87\" rx=\"0.9\" ry=\"0.9\" fill=\"#484f60\"/><rect x=\"15\" y=\"22.5\" width=\"3\" height=\"3\" fill=\"#484f60\" opacity=\"0.1\"/><rect x=\"28.6\" y=\"22.5\" width=\"3\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"25.2\" y=\"22.5\" width=\"3\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"21.8\" y=\"22.5\" width=\"3\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"18.4\" y=\"22.5\" width=\"3\" height=\"3\" fill=\"#484f60\" opacity=\"0.1\"/><rect x=\"32\" y=\"22.5\" width=\"3\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"15\" y=\"26.16\" width=\"3\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"28.6\" y=\"26.16\" width=\"3\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"25.2\" y=\"26.16\" width=\"3\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"21.8\" y=\"26.16\" width=\"3\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"18.4\" y=\"26.16\" width=\"3\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"32\" y=\"26.16\" width=\"3\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"15\" y=\"29.83\" width=\"3\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"28.6\" y=\"29.83\" width=\"3\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"25.2\" y=\"29.83\" width=\"3\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"21.8\" y=\"29.83\" width=\"3\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"18.4\" y=\"29.83\" width=\"3\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"32\" y=\"29.83\" width=\"3\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"15\" y=\"33.5\" width=\"3\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"28.6\" y=\"33.5\" width=\"3\" height=\"3\" fill=\"#484f60\" opacity=\"0.1\"/><rect x=\"25.2\" y=\"33.5\" width=\"3\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"21.8\" y=\"33.5\" width=\"3\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"18.4\" y=\"33.5\" width=\"3\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"32\" y=\"33.5\" width=\"3\" height=\"3\" fill=\"#484f60\" opacity=\"0.1\"/><rect x=\"18.75\" y=\"25.66\" width=\"4\" height=\"4\" fill=\"#484f60\"/><rect x=\"23\" y=\"25.66\" width=\"4\" height=\"4\" fill=\"#484f60\"/><rect x=\"27.25\" y=\"25.66\" width=\"4\" height=\"4\" fill=\"#484f60\"/><rect x=\"31.5\" y=\"25.66\" width=\"4\" height=\"4\" fill=\"#484f60\"/></svg>",
|
|
40
|
+
"calendar_round_open": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><path d=\"M692.76,375.44h-3v1.47a1.5,1.5,0,1,1-3,0v-1.47h-5.61v1.47a1.5,1.5,0,1,1-3,0v-1.47h-3a.88.88,0,0,0-.87.88v3.54h19.27v-3.54A.88.88,0,0,0,692.76,375.44Z\" transform=\"translate(-658.5 -359.5)\" fill=\"#4d5050\"/><path d=\"M692.9,381.7v11.74l-1.83,1.83H675.24a.14.14,0,0,1-.14-.14V381.7h17.8m.73-.73H674.37v14.16a.88.88,0,0,0,.87.88h16.14l2.26-2.26V381Z\" transform=\"translate(-658.5 -359.5)\" fill=\"#4d5050\"/><rect x=\"20.54\" y=\"14.5\" width=\"1.31\" height=\"3.57\" rx=\"0.66\" ry=\"0.66\" fill=\"#4d5050\"/><rect x=\"29.15\" y=\"14.5\" width=\"1.31\" height=\"3.57\" rx=\"0.66\" ry=\"0.66\" fill=\"#4d5050\"/><rect x=\"15.87\" y=\"25.04\" width=\"19.27\" height=\"0.37\" fill=\"#4d5050\" opacity=\"0.25\"/><rect x=\"15.87\" y=\"28.8\" width=\"19.27\" height=\"0.37\" fill=\"#4d5050\" opacity=\"0.25\"/><rect x=\"15.87\" y=\"32.56\" width=\"19.27\" height=\"0.37\" fill=\"#4d5050\" opacity=\"0.25\"/><rect x=\"20.5\" y=\"21.46\" width=\"0.37\" height=\"15.04\" fill=\"#4d5050\" opacity=\"0.25\"/><rect x=\"25.32\" y=\"21.46\" width=\"0.37\" height=\"15.04\" fill=\"#4d5050\" opacity=\"0.25\"/><rect x=\"30.13\" y=\"21.46\" width=\"0.37\" height=\"15.04\" fill=\"#4d5050\" opacity=\"0.25\"/><path d=\"M684,366.33A18.67,18.67,0,1,1,665.33,385,18.69,18.69,0,0,1,684,366.33m0-1.33a20,20,0,1,0,20,20,20,20,0,0,0-20-20Z\" transform=\"translate(-658.5 -359.5)\" fill=\"#4d5050\"/></svg>",
|
|
41
|
+
"camera": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M35,18l-3-4H22l-3,4H16V36H40V18ZM24,16h6v2H24Zm2.5,18A6.5,6.5,0,1,1,33,27.5,6.51,6.51,0,0,1,26.5,34ZM38,22H36V20h2Z\" fill=\"#484f60\"/><rect x=\"10\" y=\"18\" width=\"5\" height=\"18\" fill=\"#484f60\"/><rect x=\"11\" y=\"15\" width=\"3\" height=\"2\" fill=\"#484f60\"/><path d=\"M26.5,32A4.5,4.5,0,1,1,31,27.5,4.51,4.51,0,0,1,26.5,32Z\" fill=\"#484f60\"/></svg>",
|
|
42
|
+
"cancel": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"36 35.16 30.45 35.16 14 14.84 19.55 14.84 36 35.16\" fill=\"#484f60\"/><polygon points=\"14 35.16 19.55 35.16 36 14.84 30.45 14.84 14 35.16\" fill=\"#484f60\"/></svg>",
|
|
43
|
+
"cancel_round_filled": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25,10A15,15,0,1,0,40,25,15,15,0,0,0,25,10Zm9.38,23.32h-5.3L25,28.27l-4.08,5.05H15.63L22.35,25l-6.72-8.32h5.29L25,21.73l4.08-5.05h5.3L27.64,25Z\" fill=\"#484f60\"/></svg>",
|
|
44
|
+
"cancel_round_open": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25,40.17a15,15,0,1,1,15-15A15,15,0,0,1,25,40.17Zm0-29a14,14,0,1,0,14,14A14,14,0,0,0,25,11.13Z\" fill=\"#484f60\"/><polygon points=\"29.41 32.25 25 26.79 20.59 32.25 17.96 32.25 23.68 25.17 17.96 18.09 20.59 18.09 25 23.54 29.41 18.09 32.04 18.09 26.32 25.17 32.04 32.25 29.41 32.25\" fill=\"#484f60\"/></svg>",
|
|
45
|
+
"cart": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M16.58,34.84a1.8,1.8,0,1,0,1.8,1.8A1.79,1.79,0,0,0,16.58,34.84Z\" fill=\"#484f60\"/><path d=\"M31.49,34.84a1.8,1.8,0,1,0,1.8,1.8A1.79,1.79,0,0,0,31.49,34.84Z\" fill=\"#484f60\"/><path d=\"M13.39,31.55A1.73,1.73,0,0,0,15,32.72H32.64a1.51,1.51,0,0,0,1.43-1.2L36.6,19a.89.89,0,0,0-1-1.09L10.92,20.83a1,1,0,0,0-.87,1.28Zm19-2.05a1.52,1.52,0,0,1-1.44,1.2H16.51a1.75,1.75,0,0,1-1.57-1.17l-2.31-5.6a1,1,0,0,1,.85-1.29l19.71-2.51a.88.88,0,0,1,1,1.08Z\" fill=\"#484f60\"/><path d=\"M39,17a1.87,1.87,0,0,0-1.36,1.46l-.42,2.89c-.1.67.31,1,.9.7a2.75,2.75,0,0,0,1.33-1.7L40,18A.73.73,0,0,0,39,17Z\" fill=\"#484f60\"/></svg>",
|
|
46
|
+
"cart_open": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><circle cx=\"17.08\" cy=\"34.14\" r=\"1.8\" fill=\"#4d5050\"/><circle cx=\"31.99\" cy=\"34.14\" r=\"1.8\" fill=\"#4d5050\"/><path d=\"M672.39,388.55a1.73,1.73,0,0,0,1.56,1.17h17.69a1.51,1.51,0,0,0,1.43-1.2L695.6,376a.88.88,0,0,0-1-1.08l-24.68,2.93a1,1,0,0,0-.87,1.28Zm19-2.05a1.52,1.52,0,0,1-1.43,1.2h-14.4a1.75,1.75,0,0,1-1.57-1.16l-2.31-5.61a1,1,0,0,1,.86-1.28l19.71-2.51a.87.87,0,0,1,1,1.08Z\" transform=\"translate(-658.5 -359.5)\" fill=\"#4d5050\"/><path d=\"M698,374a1.88,1.88,0,0,0-1.37,1.46l-.42,2.9c-.1.66.31,1,.9.7a2.74,2.74,0,0,0,1.33-1.7L699,375A.74.74,0,0,0,698,374Z\" transform=\"translate(-658.5 -359.5)\" fill=\"#4d5050\"/></svg>",
|
|
47
|
+
"case_manager": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M26.85,29H23.46a.89.89,0,0,0-.88.88v5.28L24,32.3c.08-.74.69-1.32,2.86-1.36H36v-1.1a.89.89,0,0,0-.88-.88H26.85Z\" fill=\"#484f60\" opacity=\"0.5\"/><path d=\"M35.38,38.29a.88.88,0,0,1-.88.88H23.76a.88.88,0,0,1-.88-.88l2.2-5.38A.88.88,0,0,1,26,32H36.7a.88.88,0,0,1,.88.88Z\" fill=\"#484f60\" opacity=\"0.75\"/><path d=\"M20.58,35.11V29.83A2.89,2.89,0,0,1,23.46,27h7.4l1.72-1.89a4.22,4.22,0,0,0-4-3.87h-.49c-1.11,1.57-3.41,3.44-5.56,3.44S18,22.76,16.94,21.19h-.49a4.21,4.21,0,0,0-4,3.87l2.68,3c0,1.77,1.81,8.15,4,8.15h1.44Z\" fill=\"#484f60\"/><path d=\"M28.68,16.31c0,2.71-2.77,5.77-6.18,5.77S16.31,19,16.31,16.31s2.77-5.14,6.19-5.14S28.68,13.59,28.68,16.31Z\" fill=\"#484f60\"/></svg>",
|
|
48
|
+
"CashRegister": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M35.39,18.12H14.62L10,29.66H40ZM23,19.29H27l.1,1.6H22.87Zm-.13,2h4.32l.12,1.81H22.72Zm-.15,2.3h4.62l.14,2.08h-4.9ZM17.9,19.29H22l-.16,1.6H17.54Zm-.46,2h4.32l-.18,1.81H17Zm-.53,2.3h4.62l-.2,2.08h-4.9Zm-1.16,5.06.55-2.42H27.49l.16,2.42ZM28,19.29H32.1l.36,1.6H28.2Zm.2,2h4.32L33,23.12H28.42Zm.23,2.3h4.62l.48,2.08h-4.9Zm.5,5.06-.24-2.42h5l.55,2.42Z\" fill=\"#484f60\"/><path d=\"M10,29.66v9.23H40V29.66Zm27.69,6.92H12.31V32H37.69Z\" fill=\"#484f60\"/><path d=\"M15.63,11.11v7.58H34.37V11.11Zm17.31,6.15H17.06V12.54H32.94Z\" fill=\"#484f60\"/></svg>",
|
|
49
|
+
"cash_register_simple": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path style= \"fill: #484f60\" d=\"M288 0C305.7 0 320 14.33 320 32V96C320 113.7 305.7 128 288 128H208V160H424.1C456.6 160 483.5 183.1 488.2 214.4L510.9 364.1C511.6 368.8 512 373.6 512 378.4V448C512 483.3 483.3 512 448 512H64C28.65 512 0 483.3 0 448V378.4C0 373.6 .3622 368.8 1.083 364.1L23.76 214.4C28.5 183.1 55.39 160 87.03 160H143.1V128H63.1C46.33 128 31.1 113.7 31.1 96V32C31.1 14.33 46.33 0 63.1 0L288 0zM96 48C87.16 48 80 55.16 80 64C80 72.84 87.16 80 96 80H256C264.8 80 272 72.84 272 64C272 55.16 264.8 48 256 48H96zM80 448H432C440.8 448 448 440.8 448 432C448 423.2 440.8 416 432 416H80C71.16 416 64 423.2 64 432C64 440.8 71.16 448 80 448zM112 216C98.75 216 88 226.7 88 240C88 253.3 98.75 264 112 264C125.3 264 136 253.3 136 240C136 226.7 125.3 216 112 216zM208 264C221.3 264 232 253.3 232 240C232 226.7 221.3 216 208 216C194.7 216 184 226.7 184 240C184 253.3 194.7 264 208 264zM160 296C146.7 296 136 306.7 136 320C136 333.3 146.7 344 160 344C173.3 344 184 333.3 184 320C184 306.7 173.3 296 160 296zM304 264C317.3 264 328 253.3 328 240C328 226.7 317.3 216 304 216C290.7 216 280 226.7 280 240C280 253.3 290.7 264 304 264zM256 296C242.7 296 232 306.7 232 320C232 333.3 242.7 344 256 344C269.3 344 280 333.3 280 320C280 306.7 269.3 296 256 296zM400 264C413.3 264 424 253.3 424 240C424 226.7 413.3 216 400 216C386.7 216 376 226.7 376 240C376 253.3 386.7 264 400 264zM352 296C338.7 296 328 306.7 328 320C328 333.3 338.7 344 352 344C365.3 344 376 333.3 376 320C376 306.7 365.3 296 352 296z\"/></svg>",
|
|
50
|
+
"change_location": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"16.96 25 24.27 32.31 24.27 27.76 29.09 27.76 29.09 22.23 24.27 22.23 24.27 17.69 16.96 25\" fill=\"#484f60\"/><polygon points=\"16.21 23.18 10 23.18 10 26.82 16.21 26.82 14.39 25 16.21 23.18\" fill=\"#484f60\"/><polygon points=\"10 14.77 10 18.4 20.99 18.4 24.63 14.77 10 14.77\" fill=\"#484f60\"/><polygon points=\"10 31.6 10 35.23 24.63 35.23 20.99 31.6 10 31.6\" fill=\"#484f60\"/><polygon points=\"31.35 13.84 35.45 11.47 39.55 13.83 35.45 16.2 31.35 13.84\" fill=\"#484f60\"/><polygon points=\"40 19.32 39.99 14.59 35.89 16.96 35.9 18.05 39.06 19.86 40 19.32\" fill=\"#484f60\" opacity=\"0.5\"/><polygon points=\"35.02 16.96 30.91 14.6 30.92 19.34 31.84 19.87 35.02 18.03 35.02 16.96\" fill=\"#484f60\" opacity=\"0.25\"/><polygon points=\"31.35 22.26 35.45 19.88 39.55 22.24 35.45 24.62 31.35 22.26\" fill=\"#484f60\"/><polygon points=\"40 27.74 39.99 23 35.89 25.38 35.9 26.46 39.06 28.28 40 27.74\" fill=\"#484f60\" opacity=\"0.5\"/><polygon points=\"35.02 25.38 30.91 23.02 30.92 27.75 31.84 28.29 35.02 26.45 35.02 25.38\" fill=\"#484f60\" opacity=\"0.25\"/><polygon points=\"31.35 30.67 35.45 28.3 39.55 30.66 35.45 33.03 31.35 30.67\" fill=\"#484f60\"/><polygon points=\"35.89 33.79 39.99 31.42 40 36.15 35.9 38.53 35.89 33.79\" fill=\"#484f60\" opacity=\"0.5\"/><polygon points=\"30.92 36.17 30.91 31.43 35.02 33.8 35.03 38.53 30.92 36.17\" fill=\"#484f60\" opacity=\"0.25\"/></svg>",
|
|
51
|
+
"check": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"16.97 22.92 20.78 28.61 29.96 13 36.16 13 20.78 37 13.84 26.9 16.97 22.92\" fill=\"#484f60\"/></svg>",
|
|
52
|
+
"check_duotone": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><defs><style>.fa-secondary{opacity:.4}</style></defs><path class=\"fa-primary\" d=\"M438.6 105.4C451.1 117.9 451.1 138.1 438.6 150.6L182.6 406.6C170.1 419.1 149.9 419.1 137.4 406.6L9.372 278.6C-3.124 266.1-3.124 245.9 9.372 233.4C21.87 220.9 42.13 220.9 54.63 233.4L159.1 338.7L393.4 105.4C405.9 92.88 426.1 92.88 438.6 105.4H438.6z\"/></svg>",
|
|
53
|
+
"check_round": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25,10A15,15,0,1,0,40,25,15,15,0,0,0,25,10ZM23,34l-6.24-9.09,2.81-3.59L23,26.45,27.66,16h5.58Z\" fill=\"#484f60\"/></svg>",
|
|
54
|
+
"check_round_open": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 50 50\" enable-background=\"new 0 0 50 50\" ><g><path fill=\"#2A363B\" d=\"M40.5,25.5C40.5,34,33.5,41,25,41S9.5,34,9.5,25.5S16.5,10,25,10S40.5,16.9,40.5,25.5z M10.5,25.5C10.5,33.5,17,40,25,40s14.5-6.5,14.5-14.5S33,11,25,11S10.5,17.5,10.5,25.5z\"/></g><polygon fill=\"#2A363B\" points=\"19.9,24 22.5,28 29,17.1 33.3,17.1 22.5,33.9 17.7,26.8 \"/></svg>",
|
|
55
|
+
"check_simple": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon fill=\"#2A363B\" points=\"19.9,24 22.5,28 29,17.1 33.3,17.1 22.5,33.9 17.7,26.8 \"/></svg>",
|
|
56
|
+
"check_thin": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"23.25 37.6 14.37 25.1 15.19 24.52 23.11 35.66 34.73 12.4 35.63 12.85 23.25 37.6\" fill=\"#484f60\"/></svg>",
|
|
57
|
+
"chevron_down_regular": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M239 401c9.4 9.4 24.6 9.4 33.9 0L465 209c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-175 175L81 175c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9L239 401z\"/></svg>",
|
|
58
|
+
"chevron_up_regular": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M239 111c9.4-9.4 24.6-9.4 33.9 0L465 303c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-175-175L81 337c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L239 111z\"/></svg>",
|
|
59
|
+
"CirclePlusSkinny": "<svg preserveAspectRatio=\"none\" version=\"1.1\" viewBox=\"0 0 50 50\" x=\"0px\" xmlns=\"http://www.w3.org/2000/svg\" y=\"0px\"><g transform=\" translate(10 10)\"><path d=\"M 16 8.668 C 16 9.402 15.402 10 14.668 10 L 10 10 L 10 14.668 C 10 15.402 9.402 16 8.668 16 L 7.337 16 C 6.598 16 6 15.402 6 14.668 L 6 10 L 1.337 10 C 0.598 10 0 9.402 0 8.668 L 0 7.332 C 0 6.599 0.598 6 1.337 6 L 6 6 L 6 1.333 C 6 0.598 6.598 0 7.337 0 L 8.668 0 C 9.402 0 10 0.598 10 1.333 L 10 6 L 14.668 6 C 15.402 6 16 6.599 16 7.332 L 16 8.668 Z\" fill=\"#1E2930\" transform=\" translate(7 7.47)\" /><path d=\"M 15 1 C 22.72 1 29 7.28 29 15 C 29 22.72 22.72 29 15 29 C 7.28 29 1 22.72 1 15 C 1 7.28 7.28 1 15 1 M 15 0 C 6.717 0 0 6.714 0 15 C 0 23.283 6.717 30 15 30 C 23.286 30 30 23.283 30 15 C 30 6.714 23.286 0 15 0 L 15 0 Z\" fill=\"#1E2930\" transform=\" translate(0 0.47)\" /></g></svg>",
|
|
60
|
+
"client": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M30.3,25.39h-.43c-1,1.37-3,3-4.87,3s-3.9-1.64-4.87-3H19.7a3.68,3.68,0,0,0-3.53,3.39l2.35,2.58c0,1.56,1.59,7.14,3.54,7.14h5.88c1.95,0,3.53-5.58,3.53-7.14l2.36-2.58A3.68,3.68,0,0,0,30.3,25.39Z\" fill=\"#484f60\" opacity=\"0.9\"/><path d=\"M19.66,20.41a3.27,3.27,0,0,0-.08.7,5.43,5.43,0,0,0,10.83,0,4.05,4.05,0,0,0-.07-.7,35.41,35.41,0,0,1-5.36.47A34.08,34.08,0,0,1,19.66,20.41Z\" fill=\"#484f60\" opacity=\"0.9\"/><path d=\"M19.58,18.92a33.34,33.34,0,0,0,5.4.5,35,35,0,0,0,5.43-.5c-.9-.59,1.46-6.69,1.46-6.69s-2.44,3.57-3.95,3.65S25,12.23,25,12.23s-1.35,3.63-2.92,3.65-4-3.65-4-3.65S20.42,18.36,19.58,18.92Z\" fill=\"#484f60\"/><path d=\"M19.22,12.59a1.1,1.1,0,1,1-1.1-1.09A1.1,1.1,0,0,1,19.22,12.59Z\" fill=\"#484f60\"/><path d=\"M33,12.59a1.1,1.1,0,1,1-1.1-1.09A1.1,1.1,0,0,1,33,12.59Z\" fill=\"#484f60\"/><path d=\"M26.09,12.59A1.1,1.1,0,1,1,25,11.5,1.09,1.09,0,0,1,26.09,12.59Z\" fill=\"#484f60\"/></svg>",
|
|
61
|
+
"clock": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25,10A15,15,0,1,0,40,25,15,15,0,0,0,25,10Zm0,27.5A12.5,12.5,0,1,1,37.5,25,12.52,12.52,0,0,1,25,37.5Z\" fill=\"#484f60\"/><path d=\"M26.41,26.24a1.68,1.68,0,1,1-1.67-1.68A1.67,1.67,0,0,1,26.41,26.24Z\" fill=\"#484f60\"/><polygon points=\"23.06 26.24 24.74 16.48 26.41 26.24 23.06 26.24\" fill=\"#484f60\"/><polygon points=\"24.74 24.56 32.15 26.24 24.74 27.91 24.74 24.56\" fill=\"#484f60\"/></svg>",
|
|
62
|
+
"clockArrow": "<svg preserveAspectRatio=\"none\" version=\"1.1\" viewBox=\"0 0 50 50\" x=\"0px\" xmlns=\"http://www.w3.org/2000/svg\" y=\"0px\"><g transform=\" translate(9 10)\"><path d=\"M 9.467 4.834 C 14.581 5.457 18.544 9.811 18.544 15.094 C 18.544 20.804 13.915 25.433 8.205 25.433 C 6.521 25.433 4.935 25.028 3.53 24.315 L 3.53 27.598 L 0 27.598 C 2.326 29.081 5.087 29.943 8.051 29.943 C 16.335 29.943 23.051 23.228 23.051 14.943 C 23.051 7.084 17.005 0.641 9.312 0 L 9.467 4.834 Z\" fill=\"#1E2930\" transform=\" translate(8.589 0.057)\" /><path d=\"M 0 26.396 L 10.49 26.396 L 10.49 15.906 L 6.994 19.398 C 6.409 18.102 6.084 16.664 6.084 15.15 C 6.084 9.44 10.713 4.811 16.424 4.811 L 16.27 0 C 7.984 0 1.27 6.716 1.27 15 C 1.27 17.895 2.089 20.597 3.509 22.889 L 0 26.396 Z\" fill=\"#1E2930\" transform=\" translate(0.37 0)\" /><ellipse cx=\"17.0\" cy=\"16.0\" fill=\"#1E2930\" rx=\"1.0\" ry=\"1.0\" /><path d=\"M 0 7.808 L 1.342 0 L 2.683 7.808 L 0 7.808 Z\" fill=\"#1E2930\" transform=\" translate(15.452 8.182)\" /><path d=\"M 0 0 L 5.929 1.341 L 0 2.682 L 0 0 Z\" fill=\"#1E2930\" transform=\" translate(16.794 14.648)\" /></g></svg>",
|
|
63
|
+
"cogWheelPlus": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M37.77,29.63H33.39V25.25A1.25,1.25,0,0,0,32.14,24H30.9a1.25,1.25,0,0,0-1.26,1.25v4.38H25.27A1.25,1.25,0,0,0,24,30.87v1.26a1.26,1.26,0,0,0,1.25,1.25h4.37v4.37A1.25,1.25,0,0,0,30.9,39h1.24a1.25,1.25,0,0,0,1.25-1.25V33.38h4.38A1.26,1.26,0,0,0,39,32.13V30.87A1.25,1.25,0,0,0,37.77,29.63Z\" fill=\"#484f60\" opacity=\"0.95\"/><path d=\"M22,32.13V30.87a3.25,3.25,0,0,1,3.25-3.24h2.37V25.25A3.26,3.26,0,0,1,30.9,22h1.24a3.26,3.26,0,0,1,3.25,3.17L36,25V22.1l-3.74-1a9.59,9.59,0,0,0-.83-2l1.82-3.2-2-2.05L28,15.61a9.36,9.36,0,0,0-2-.86L25,11H22.12l-1,3.71a9.32,9.32,0,0,0-2.11.88l-3.15-1.8-2.05,2.05L15.59,19a8.93,8.93,0,0,0-.86,2.09L11,22.1V25l3.77,1a9.16,9.16,0,0,0,.86,2l-1.82,3.17,2.05,2L19,31.43a8.93,8.93,0,0,0,2.07.85l1,3.72H25l.18-.63A3.25,3.25,0,0,1,22,32.13ZM19.86,23.5a3.65,3.65,0,1,1,3.64,3.64A3.64,3.64,0,0,1,19.86,23.5Z\" fill=\"#484f60\" opacity=\"0.5\"/></svg>",
|
|
64
|
+
"cogWheels": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M30.24,31.09V28.75l-3-.83a7.42,7.42,0,0,0-.67-1.65L28,23.68,26.37,22,23.8,23.49a7.74,7.74,0,0,0-1.62-.69l-.83-3H19l-.82,3a7.73,7.73,0,0,0-1.7.71L13.93,22l-1.66,1.66,1.46,2.55a6.78,6.78,0,0,0-.7,1.69l-3,.83v2.34l3.05.83a7.25,7.25,0,0,0,.69,1.62l-1.47,2.57,1.66,1.66,2.58-1.48a7,7,0,0,0,1.67.69L19,40h2.35l.83-3a7.15,7.15,0,0,0,1.58-.67l2.61,1.49L28,36.11,26.53,33.5a7.58,7.58,0,0,0,.67-1.58ZM20.12,32.82a2.95,2.95,0,1,1,2.95-2.94A2.94,2.94,0,0,1,20.12,32.82Z\" fill=\"#484f60\"/><path d=\"M39.64,14.26l-2.19-.11a5.33,5.33,0,0,0-.71-.89,5,5,0,0,0-.89-.7l-.1-2.19L34.14,10l-.92,1.74a5.19,5.19,0,0,0-2.6.64l-1.94-1.11-1.16,1.16,1.1,1.92a5,5,0,0,0-.68,2.68L26.18,18l.36,1.61,2.2.11a5,5,0,0,0,1.58,1.58l.11,2.2,1.61.36L33,22.07a5.1,5.1,0,0,0,2.68-.68l1.92,1.1,1.16-1.17-1.11-1.93a5.12,5.12,0,0,0,.63-2.61L40,15.86Zm-5,4.25a2.26,2.26,0,1,1,0-3.19A2.26,2.26,0,0,1,34.69,18.51Z\" fill=\"#484f60\"/></svg>",
|
|
65
|
+
"column_options": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"-280 372 50 50\" enable-background=\"new -280 372 50 50\" ><g><rect x=\"-269\" y=\"389\" opacity=\"0.5\" fill=\"#29363E\" width=\"4\" height=\"22\"/><rect x=\"-263\" y=\"389\" fill=\"#29363E\" width=\"4\" height=\"22\"/><polygon opacity=\"0.5\" fill=\"#29363E\" points=\"-255.3,389 -257,389 -257,411 -253,411 -253,393.3 -254.3,393.3 \"/><polygon opacity=\"0.5\" fill=\"#29363E\" points=\"-251,411 -247,411 -247,397.3 -251,396.4 \"/><g><path fill=\"#29363E\" d=\"M-241.3,386.7l-1.9-0.1c-0.2-0.3-0.4-0.5-0.6-0.8c-0.2-0.2-0.5-0.4-0.8-0.6l-0.1-1.9l-1.4-0.3l-0.8,1.5c-0.8,0-1.6,0.2-2.3,0.6l-1.7-1l-1,1l1,1.7c-0.4,0.7-0.6,1.5-0.6,2.3l-1.5,0.8l0.3,1.4l1.9,0.1c0.2,0.3,0.4,0.5,0.6,0.8c0.2,0.2,0.5,0.4,0.8,0.6l0.1,1.9l1.4,0.3l0.8-1.5c0.8,0,1.6-0.2,2.3-0.6l1.7,1l1-1l-1-1.7c0.4-0.7,0.6-1.5,0.6-2.3l1.5-0.8L-241.3,386.7z M-245.6,390.4c-0.8,0.8-2,0.8-2.8,0c-0.8-0.8-0.8-2,0-2.8c0.8-0.8,2-0.8,2.8,0C-244.9,388.4-244.9,389.6-245.6,390.4z\"/></g></g></svg>",
|
|
66
|
+
"company": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M16,11.17v28h7v-6h4v6h7v-28Zm16,19H18v-2H32Zm0-5H18v-2H32Zm0-5H18v-2H32Zm0-5H18v-2H32Z\" fill=\"#484f60\"/></svg>",
|
|
67
|
+
"company_flat": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M289.7,407v28h7v-6h4v6h7V407h-18Zm16,19h-14v-2h14v2Zm0-5h-14v-2h14v2Zm0-5h-14v-2h14v2Zm0-5h-14v-2h14v2Z\" transform=\"translate(-273.7 -396)\" fill=\"#4d5050\"/></svg>",
|
|
68
|
+
"configurable": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"25 33.97 13.43 28.12 10 29.61 25 37.19 40 29.61 36.57 28.12 25 33.97\" fill=\"#484f60\" opacity=\"0.5\"/><polygon points=\"25 28.82 13.43 22.98 10 24.47 25 32.05 40 24.47 36.57 22.98 25 28.82\" fill=\"#484f60\" opacity=\"0.75\"/><polygon points=\"40 19.33 25 26.9 10 19.33 25 12.81 40 19.33\" fill=\"#484f60\"/></svg>",
|
|
69
|
+
"consultant": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M30.89,25.63h-.48C29.33,27.15,27.09,29,25,29s-4.33-1.82-5.41-3.34h-.48a4.1,4.1,0,0,0-3.92,3.76l2.62,2.88c0,1.72,1.76,7.93,3.92,7.93h6.54c2.17,0,3.93-6.21,3.93-7.93l2.61-2.88A4.1,4.1,0,0,0,30.89,25.63Z\" fill=\"#484f60\"/><path d=\"M19.07,20.1a4,4,0,0,0-.09.77,6,6,0,0,0,12,0,4,4,0,0,0-.09-.77,40,40,0,0,1-5.95.52A38.67,38.67,0,0,1,19.07,20.1Z\" fill=\"#484f60\"/><path d=\"M35.17,17.4A5,5,0,0,1,31,15.11c-4.11-6.37-8.19-6.81-12.1-.23a5,5,0,0,1-4.12,2.5l-.62,0v1l4.82,0A36.84,36.84,0,0,0,25,19a38.65,38.65,0,0,0,6-.56l4.82,0v-1Zm-7.31-2.27A1.17,1.17,0,1,1,29,14,1.17,1.17,0,0,1,27.86,15.13Z\" fill=\"#484f60\"/></svg>",
|
|
70
|
+
"copy": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M29.13,40a.37.37,0,0,1-.37-.37V33.37H22.5a.38.38,0,0,1-.38-.37V31.52a.37.37,0,0,1,.38-.36h6.26V24.89a.37.37,0,0,1,.37-.37H30.6a.38.38,0,0,1,.37.37v6.27h6.26a.37.37,0,0,1,.37.36V33a.38.38,0,0,1-.37.37H31v6.26a.38.38,0,0,1-.37.37Z\" fill=\"#484f60\"/><g opacity=\"0.5\"><path d=\"M37.6,29.69V16.79H36.4V29.66h.83A2.22,2.22,0,0,1,37.6,29.69Z\" fill=\"#484f60\"/><path d=\"M19.6,11.6a.4.4,0,0,1,.4-.4H31V10H20a1.6,1.6,0,0,0-1.6,1.6v2.9h1.2Z\" fill=\"#484f60\"/><path d=\"M32.62,16.79h5L31,10v5.15C31,16.57,31.2,16.79,32.62,16.79Z\" fill=\"#484f60\"/></g><g opacity=\"0.75\"><path d=\"M27.26,38.8H14a.4.4,0,0,1-.4-.4V17.6a.4.4,0,0,1,.4-.4H25V16H14a1.6,1.6,0,0,0-1.6,1.6V38.4A1.6,1.6,0,0,0,14,40H27.29a2.22,2.22,0,0,1,0-.37Z\" fill=\"#484f60\"/><path d=\"M31.6,23.32v-.53H30.4V23h.2A1.81,1.81,0,0,1,31.6,23.32Z\" fill=\"#484f60\"/><path d=\"M25,16v5.15c0,1.42.21,1.64,1.63,1.64h5Z\" fill=\"#484f60\"/></g></svg>",
|
|
71
|
+
"crosshair_1": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25,35.5A10.5,10.5,0,1,1,35.5,25,10.51,10.51,0,0,1,25,35.5Zm0-20A9.5,9.5,0,1,0,34.5,25,9.51,9.51,0,0,0,25,15.5Z\" fill=\"#484f60\"/><path d=\"M25,31a6,6,0,1,1,6-6,6,6,0,0,1-6,6Z\" fill=\"#484f60\"/><rect x=\"10\" y=\"24.5\" width=\"5\" height=\"1\" fill=\"#484f60\"/><rect x=\"35\" y=\"24.5\" width=\"5\" height=\"1\" fill=\"#484f60\"/><rect x=\"24.5\" y=\"35\" width=\"1\" height=\"5\" fill=\"#484f60\"/><rect x=\"24.5\" y=\"10\" width=\"1\" height=\"5\" fill=\"#484f60\"/></svg>",
|
|
72
|
+
"CrossSkinny": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"35.35 15.52 34.65 14.81 25 24.46 15.35 14.81 14.65 15.52 24.29 25.17 14.65 34.81 15.35 35.52 25 25.87 34.65 35.52 35.35 34.81 25.71 25.17 35.35 15.52\" fill=\"#484f60\"/></svg>",
|
|
73
|
+
"dashboard": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"10\" y=\"14.87\" width=\"14.17\" height=\"9.3\" rx=\"0.44\" ry=\"0.44\" fill=\"#484f60\"/><rect x=\"25.83\" y=\"14.87\" width=\"14.17\" height=\"9.3\" rx=\"0.44\" ry=\"0.44\" fill=\"#484f60\"/><rect x=\"10\" y=\"25.83\" width=\"14.17\" height=\"9.3\" rx=\"0.44\" ry=\"0.44\" fill=\"#484f60\"/><rect x=\"25.83\" y=\"25.83\" width=\"14.17\" height=\"9.3\" rx=\"0.44\" ry=\"0.44\" fill=\"#484f60\" opacity=\"0.5\"/></svg>",
|
|
74
|
+
"delivery_method": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 50 50\" enable-background=\"new 0 0 50 50\" ><g><g><path fill=\"#282828\" d=\"M34,10c0-0.6-0.5-1-1-1H17.8c-0.6,0-1,0.4-1,1v5.8c0,0.5,0,1,0,1c0,0,0.1-0.4,0.2-1l0.1-1.1c0.1-0.5,0.1-1.3,0.2-1.8c0-0.4,0.4-0.9,0.8-1.1c0.4-0.2,1.1-0.4,1.7-0.6c0,0,3.7-1.2,5.5-1.2c2.7,0,4.8,0.8,6.2,2.4c1.2,1.3,1.8,3.5,1.8,3.5c0.1,0.5,0.4,1,0.5,1c0.1,0,0.2-0.5,0.2-1V10z\"/></g><path fill=\"#282828\" d=\"M16.6,17.7h-0.9v-6.6h-4.9l-1.8,4v4.3h0.7c0.2-1.4,1.3-2.4,2.7-2.4c1.4,0,2.6,1.1,2.7,2.4h1.1l0.2-0.9C16.5,18.2,16.6,18,16.6,17.7z M14.2,14.5c0,0.4-0.3,0.8-0.8,0.8h-2.2c-0.4,0-0.8-0.3-0.8-0.8c0,0,1-2.6,1.6-2.6c0.5,0,1.4,0,1.4,0c0.4,0,0.8,0.3,0.8,0.8V14.5z\"/><path fill=\"#282828\" d=\"M23.8,18.4C23.8,18.4,23.7,18.4,23.8,18.4c-0.3,0-0.4,0-0.4,0.1c0,0,0,0,0,0c0,0-0.2,0.2-0.5,0.9h0.7c0.2-0.5,0.2-0.7,0.2-0.8C23.8,18.5,23.8,18.5,23.8,18.4z\"/><g><path fill=\"#282828\" d=\"M34,18.2c0-0.3-0.1-0.5-0.2-0.5s-0.2,0.2-0.2,0.4c0,0.2,0,0.7,0.2,0.6S34,18.4,34,18.2z\"/></g><circle fill=\"#282828\" cx=\"12.5\" cy=\"19.7\" r=\"2\"/><path fill=\"#282828\" d=\"M39.9,28H28c-0.1,0.1-0.1,0.3-0.2,0.4c-0.1,0.2-0.2,0.6-0.3,1.5c0.3,0.2,0.5,0.4,0.8,0.6c1.1,1.1,1.6,2.4,1.6,3.9c0,0.3,0,0.7-0.1,1c0.5,0.2,0.9,0.4,1.2,0.4h0c2.1-0.1,9.3-6.2,10-6.8C41,28.5,40.5,28,39.9,28z\"/><path fill=\"#282828\" d=\"M35.6,34.3c2.3-1.6,4.6-3.5,5.4-4.2v8.7L35.6,34.3z\"/><path fill=\"#282828\" d=\"M35,34.9c-1.9,1.3-3.2,2-4,2c-0.4,0-0.9-0.2-1.5-0.4c-0.3,0.7-0.7,1.4-1.3,2c-1.1,1.1-2.4,1.6-3.9,1.6c-1,0-2-0.3-2.8-0.8L21,39.6v0.3c0,0.6,0.5,1.1,1.1,1.1h17.8c0.6,0,1.1-0.5,1.1-1.1v-0.3L35,34.9z\"/><path fill=\"#282828\" d=\"M20.4,19h-1.4c0.4-1.9,0.7-3.6,0.8-5.2c2.2-0.9,4-1.4,5.5-1.4c2,0,3.4,0.5,4.4,1.6c1,1,1.5,2.2,1.5,3.6c0,0.6-0.1,1.2-0.3,1.8c-0.2,0.6-0.5,1.3-1,2c-0.3,0.4-0.9,1.2-1.9,2.6c-1,1.3-1.6,2.1-1.7,2.2c-0.2,0.4-0.4,0.8-0.6,1.4c-0.2,0.5-0.4,1.3-0.5,2.3h-1.7c0-1.5,0.2-2.7,0.5-3.8c0.3-1.1,0.8-2.5,1.7-4.3c0.7-1.4,1-2.4,1-3.2c0-0.8-0.2-1.5-0.7-2c-0.5-0.5-1.1-0.7-1.9-0.7c-0.7,0-1.3,0.2-1.9,0.6C21.3,17,20.8,17.8,20.4,19z\"/><path fill=\"#282828\" d=\"M24.3,31.5c0.8,0,1.6,0.3,2.1,0.9c0.6,0.6,0.9,1.3,0.9,2.1c0,0.8-0.3,1.6-0.9,2.1c-0.6,0.6-1.3,0.9-2.1,0.9c-0.8,0-1.5-0.3-2.1-0.9c-0.6-0.6-0.9-1.3-0.9-2.1c0-0.8,0.3-1.6,0.9-2.1C22.8,31.8,23.5,31.5,24.3,31.5z\"/></g></svg>",
|
|
75
|
+
"delivery_status_uncheck": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 50 50\" style=\"enable-background:new 0 0 50 50;\" ><style type=\"text/css\">.rect{fill:#514F4F;}</style><path class=\"rect\" d=\"M50,50H0.1V0H50V50z M41.5,8.2H8.6v33.2h32.9V8.2z\"/></svg>",
|
|
76
|
+
"delivery_truck": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"15.35\" y=\"16.56\" width=\"15.14\" height=\"10.94\" transform=\"translate(-1.83 2.08) rotate(-5)\" fill=\"#484f60\"/><path d=\"M38.5,18.1l-6.9.61L32.41,28l-7.63.67a3.76,3.76,0,0,1,1.43,2.25l7.25-.63A3.83,3.83,0,0,1,41,29.6l1-.1-.52-6Zm.29,5.84-3.91.34a.51.51,0,0,1-.55-.46L34,20.1a.49.49,0,0,1,.45-.54l2.27-.2a.5.5,0,0,1,.48.25l2,3.59A.5.5,0,0,1,38.79,23.94Z\" fill=\"#484f60\"/><path d=\"M19.66,29.09a3.8,3.8,0,0,0-1,2.46l-.74.07-1.82-.94L16,29.41Z\" fill=\"#484f60\"/><path d=\"M34.56,30.62a2.74,2.74,0,1,0,2.49-3A2.73,2.73,0,0,0,34.56,30.62Z\" fill=\"#484f60\"/><path d=\"M19.74,31.91a2.74,2.74,0,1,0,2.49-3A2.74,2.74,0,0,0,19.74,31.91Z\" fill=\"#484f60\"/><rect x=\"7.96\" y=\"17.63\" width=\"5\" height=\"1\" transform=\"translate(-1.54 0.98) rotate(-5)\" fill=\"#484f60\"/><rect x=\"11.02\" y=\"29.71\" width=\"3\" height=\"1\" transform=\"translate(-2.59 1.21) rotate(-5)\" fill=\"#484f60\"/><rect x=\"9.48\" y=\"23.53\" width=\"4\" height=\"1\" transform=\"matrix(1, -0.09, 0.09, 1, -2.05, 1.09)\" fill=\"#484f60\"/></svg>",
|
|
77
|
+
"detail_record": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M19.37,13.17H10v4h5.64a10.12,10.12,0,0,1,1.84-2.52A9.56,9.56,0,0,1,19.37,13.17Z\" fill=\"#484f60\" opacity=\"0.25\"/><path d=\"M33.7,17.17H40v-4H30a9.8,9.8,0,0,1,1.88,1.48A10,10,0,0,1,33.7,17.17Z\" fill=\"#484f60\" opacity=\"0.25\"/><path d=\"M22.79,17.73h3.75a4.56,4.56,0,0,0-1.87-.41A4.6,4.6,0,0,0,22.79,17.73Z\" fill=\"#484f60\" opacity=\"0.25\"/><path d=\"M14.87,19.17H10v4h4.6A10.37,10.37,0,0,1,14.87,19.17Z\" fill=\"#484f60\"/><path d=\"M34.74,23.17H40v-4H34.47a10.28,10.28,0,0,1,.36,2.66A9.94,9.94,0,0,1,34.74,23.17Z\" fill=\"#484f60\"/><path d=\"M28.52,19.49h-7.7a4.54,4.54,0,0,0-.5,3.52H29A4.5,4.5,0,0,0,28.52,19.49Z\" fill=\"#484f60\" opacity=\"0.75\"/><path d=\"M36.14,27.61l1.56,1.56H40v-4H34.26a11,11,0,0,1-.6,1.42A3.48,3.48,0,0,1,36.14,27.61Z\" fill=\"#484f60\" opacity=\"0.25\"/><path d=\"M15.08,25.17H10v4h7.64L17.48,29A10,10,0,0,1,15.08,25.17Z\" fill=\"#484f60\" opacity=\"0.25\"/><path d=\"M24.67,26.35A4.48,4.48,0,0,0,27.86,25a1.86,1.86,0,0,0,.22-.27H21.25c.08.09.14.19.22.27A4.5,4.5,0,0,0,24.67,26.35Z\" fill=\"#484f60\" opacity=\"0.25\"/><polygon points=\"40 31.17 39.7 31.17 40 31.47 40 31.17\" fill=\"#484f60\" opacity=\"0.5\"/><path d=\"M30.79,15.71a8.66,8.66,0,1,0,0,12.25A8.65,8.65,0,0,0,30.79,15.71ZM29.37,26.53a6.65,6.65,0,1,1,0-9.4A6.64,6.64,0,0,1,29.37,26.53Z\" fill=\"#484f60\"/><path d=\"M39.41,33l-4.33-4.33a2,2,0,0,0-2.86,0l-.71.72a2,2,0,0,0,0,2.86l4.32,4.32a2,2,0,0,0,2.87,0l.71-.71A2,2,0,0,0,39.41,33Z\" fill=\"#484f60\"/></svg>",
|
|
78
|
+
"detail_view": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"34.55 26.18 34.55 37.49 12.44 37.49 12.44 15.38 24.68 15.38 25.59 14.48 24.05 12.94 10 12.94 10 39.94 36.99 39.94 36.99 25.88 35.92 24.81 34.55 26.18\" fill=\"#484f60\"/><polygon points=\"40 10.4 27.92 10.4 32 14.48 22.24 26.23 24.16 28.15 35.92 18.4 40 22.48 40 10.4\" fill=\"#484f60\"/></svg>",
|
|
79
|
+
"dictionary": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M27.91,11l-14,17.21,11.19,5.42,14.4-18.4ZM24.38,26l-.18-.42a.91.91,0,0,0-.07-.14L24,25.33l-.15-.16L23.68,25a1.84,1.84,0,0,0-.59-.27,1.51,1.51,0,0,0-.6,0,1.8,1.8,0,0,0-.65.27,3.19,3.19,0,0,0-.67.58,3.13,3.13,0,0,0-.48.7,1.63,1.63,0,0,0-.18.64,1.15,1.15,0,0,0,.1.55A1.49,1.49,0,0,0,21,28c.07.05.14.11.21.15l.22.13a1,1,0,0,0,.21.09.61.61,0,0,0,.18.05l.51.1-.69,1.26-.26,0a1.29,1.29,0,0,1-.31-.08,2.14,2.14,0,0,1-.35-.16c-.12-.06-.24-.14-.37-.22L20,29a2.75,2.75,0,0,1-.69-.92A2.35,2.35,0,0,1,19.07,27a3,3,0,0,1,.27-1.14,4.53,4.53,0,0,1,.76-1.12,4.32,4.32,0,0,1,1-.86,3.42,3.42,0,0,1,1.12-.43,2.78,2.78,0,0,1,1.15,0,2.91,2.91,0,0,1,1.1.48,3.51,3.51,0,0,1,.36.29l.26.27c.07.09.14.17.19.25a.9.9,0,0,1,.11.22l.12.28ZM29.07,20a1.44,1.44,0,0,1-.13.32,1.68,1.68,0,0,1-.2.29,1.59,1.59,0,0,1-.36.32,2.19,2.19,0,0,1-.44.2l-.29.07a1,1,0,0,1,.05.24,1.6,1.6,0,0,1-.07.57,1.84,1.84,0,0,1-.33.57,2.57,2.57,0,0,1-.29.28,1.69,1.69,0,0,1-.31.21,2,2,0,0,1-.34.14,1.3,1.3,0,0,1-.34.08,1.36,1.36,0,0,1-.29,0h-.18a2.13,2.13,0,0,1-.49-.1,3.89,3.89,0,0,1-.49-.2,5.21,5.21,0,0,1-.49-.29l-.25-.17-.21-.16-.17-.14-.13-.12-.27-.25,3.67-4.1.22.06.24.08.27.1.27.13.29.14a4,4,0,0,1,.37.23,2.65,2.65,0,0,1,.3.25,1.6,1.6,0,0,1,.23.3,1.3,1.3,0,0,1,.14.32,1.35,1.35,0,0,1,.05.29A1.66,1.66,0,0,1,29.07,20Zm.83-1.49.53-1.36-.93-.45-1.38.89-1.28-.66,5-3.19,1.14.48-1.85,4.94Z\" fill=\"#484f60\"/><polygon points=\"25.16 39.84 10.92 31.84 10 29.86 10.02 28.18 10.32 27.45 10.9 27.69 10.63 28.36 10.63 29.79 11.39 31.39 25 39.03 38.84 20.86 38.59 20.83 38.87 15.61 39.49 15.65 39.25 20.28 40 20.38 25.16 39.84 25.16 39.84\" fill=\"#484f60\"/><polygon points=\"25.55 10.15 10.61 27.57 11.78 27.3 13.33 28.03 27.34 10.82 25.55 10.15\" fill=\"#484f60\"/><polygon points=\"25.27 38.88 24.64 38.88 24.64 33.58 25.27 33.58 25.27 38.88 25.27 38.88\" fill=\"#484f60\"/><path d=\"M29.88,15.93l1.25-.8.19-.13.19-.13.18-.13.17-.13h0l-.09.16a.89.89,0,0,1-.08.17l-.08.18c0,.06-.05.13-.08.19l-.45,1.19-1.22-.58\" fill=\"#484f60\"/><path d=\"M24.78,22.05,24.66,22l-.11-.08-.09-.07-.07-.06,1.29-1.47.41.25a2.14,2.14,0,0,1,.36.28,1.12,1.12,0,0,1,.21.34.66.66,0,0,1,0,.37,1,1,0,0,1-.22.4,1.27,1.27,0,0,1-.4.31,1,1,0,0,1-.44.09,1.29,1.29,0,0,1-.43-.07,1.77,1.77,0,0,1-.41-.21\" fill=\"#484f60\"/><path d=\"M26,19.93l1.06-1.19.08,0,.11,0,.13.06.15.08a1.74,1.74,0,0,1,.33.23.72.72,0,0,1,.18.26.51.51,0,0,1,0,.3.7.7,0,0,1-.18.32,1,1,0,0,1-.28.22,1,1,0,0,1-.35.1,1,1,0,0,1-.38,0,1.24,1.24,0,0,1-.4-.16L26,19.93\" fill=\"#484f60\"/></svg>",
|
|
80
|
+
"documents": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><g opacity=\"0.5\"><path d=\"M36.4,16.79V32.4a.4.4,0,0,1-.3.38V34a1.59,1.59,0,0,0,1.5-1.59V16.79Z\" fill=\"#484f60\"/><path d=\"M20,11.2H31V10H20a1.59,1.59,0,0,0-1.59,1.5h1.21A.4.4,0,0,1,20,11.2Z\" fill=\"#484f60\"/><polygon points=\"37.6 16.79 30.98 10 30.98 13.93 33.77 16.79 37.6 16.79\" fill=\"#484f60\"/></g><rect x=\"16\" y=\"21.2\" width=\"7.2\" height=\"0.8\" fill=\"#484f60\"/><rect x=\"16\" y=\"24.4\" width=\"12\" height=\"0.8\" fill=\"#484f60\"/><rect x=\"16\" y=\"27.6\" width=\"12\" height=\"0.8\" fill=\"#484f60\"/><rect x=\"16\" y=\"30.8\" width=\"12\" height=\"0.8\" fill=\"#484f60\"/><rect x=\"16\" y=\"34\" width=\"12\" height=\"0.8\" fill=\"#484f60\"/><path d=\"M30.4,22.79V38.4a.4.4,0,0,1-.4.4H14a.4.4,0,0,1-.4-.4V17.6a.4.4,0,0,1,.4-.4H25V16H14a1.6,1.6,0,0,0-1.6,1.6V38.4A1.6,1.6,0,0,0,14,40H30a1.6,1.6,0,0,0,1.6-1.6V22.79Z\" fill=\"#484f60\"/><path d=\"M25,16v5.15c0,1.42.21,1.64,1.63,1.64h5Z\" fill=\"#484f60\"/><g opacity=\"0.75\"><path d=\"M33.4,19.79V35.4a.4.4,0,0,1-.3.38V37a1.59,1.59,0,0,0,1.5-1.59V19.79Z\" fill=\"#484f60\"/><path d=\"M17,14.2H28V13H17a1.59,1.59,0,0,0-1.59,1.5h1.21A.4.4,0,0,1,17,14.2Z\" fill=\"#484f60\"/><polygon points=\"34.6 19.79 27.98 13 27.98 16.93 30.77 19.79 34.6 19.79\" fill=\"#484f60\"/></g></svg>",
|
|
81
|
+
"documentWrench": "<svg preserveAspectRatio=\"none\" version=\"1.1\" viewBox=\"0 0 50 50\" x=\"0px\" xmlns=\"http://www.w3.org/2000/svg\" y=\"0px\"><g transform=\" translate(7 8)\"><path d=\"M 2.285 8.999 L 8.785 8.999 L 0 0 L 0 6.715 C 0 8.701 0.299 8.999 2.285 8.999 Z\" fill=\"#1E2930\" transform=\" translate(15.846 0.445)\" /><path d=\"M 2.292 3.619 C 1.833 4.208 1.397 4.805 0.961 5.4 C 0.646 5.83 0.327 6.264 0 6.697 L 2.748 6.697 C 4.732 6.697 5.033 6.397 5.033 4.412 L 5.033 0 C 4.428 0.723 3.847 1.516 3.325 2.23 C 2.965 2.725 2.621 3.195 2.292 3.619 Z\" fill=\"#1E2930\" transform=\" translate(20.049 25.271)\" /><path d=\"M 17.213 11.437 C 14.158 11.437 12.969 10.247 12.969 7.191 L 12.969 0 L 2.285 0 C 0.299 0 0 0.298 0 2.284 L 0 29.715 C 0 31.7 0.299 32 2.285 32 L 8.207 32 C 8.256 31.577 8.354 31.15 8.51 30.727 C 9.287 28.621 11.28 26.936 13.04 25.449 C 13.629 24.951 14.186 24.481 14.606 24.066 C 14.947 23.731 15.296 23.395 15.648 23.055 C 17.164 21.59 18.731 20.074 19.846 18.458 C 19.582 18.841 19.289 19.217 18.981 19.589 L 16.799 19.589 L 16.799 17.628 L 20.292 17.628 C 20.162 17.923 20.021 18.205 19.846 18.458 C 20.436 17.604 20.719 16.481 21.02 15.293 C 20.986 15.422 20.953 15.547 20.92 15.674 L 16.799 15.674 L 16.799 13.713 L 21.184 13.713 L 21.184 14.664 C 21.129 14.875 21.071 15.089 21.02 15.293 C 21.326 14.082 21.688 12.727 22.411 11.437 L 17.213 11.437 Z M 2.846 2.584 L 9.395 2.584 L 9.395 4.545 L 2.846 4.545 L 2.846 2.584 Z M 2.846 5.203 L 9.395 5.203 L 9.395 7.164 L 2.846 7.164 L 2.846 5.203 Z M 15.09 23.504 L 2.846 23.504 L 2.846 21.543 L 15.09 21.543 L 15.09 23.504 Z M 15.09 19.589 L 2.846 19.589 L 2.846 17.628 L 15.09 17.628 L 15.09 19.589 Z M 15.09 15.674 L 2.846 15.674 L 2.846 13.713 L 15.09 13.713 L 15.09 15.674 Z\" fill=\"#1E2930\" transform=\" translate(0.918 -0.032)\" /><g transform=\" translate(11 10)\"><path d=\"M 21.362 10.038 L 19.963 7.522 L 18.596 5.042 L 17.358 2.848 C 17.358 2.848 20.315 1.067 21.154 0.577 C 18.858 -0.421 15.629 -0.251 14.137 2.145 C 12.687 4.471 12.872 7.364 11.332 9.596 C 9.835 11.766 7.721 13.651 5.85 15.495 C 4.161 17.157 1.053 19.181 0.226 21.421 C -0.809 24.226 2.071 26.348 4.598 23.982 C 6.642 22.065 8.028 19.823 9.684 17.697 C 11.193 15.757 13.033 12.746 15.235 11.548 C 17.201 10.467 19.629 11.444 21.362 10.038 Z M 13.658 6.924 C 13.619 6.854 13.643 6.76 13.715 6.719 L 14.528 6.258 L 16.576 9.854 L 15.768 10.319 C 15.694 10.36 15.6 10.334 15.561 10.26 L 13.658 6.924 Z M 1.72 23.174 C 1.002 22.514 0.953 21.394 1.612 20.676 C 2.274 19.958 3.393 19.909 4.112 20.567 C 4.832 21.228 4.879 22.346 4.22 23.067 C 3.556 23.787 2.44 23.839 1.72 23.174 Z M 15.537 5.676 L 16.465 5.149 C 16.535 5.108 16.627 5.133 16.666 5.206 L 18.57 8.542 C 18.613 8.614 18.584 8.704 18.512 8.747 L 17.588 9.274 L 15.537 5.676 Z\" fill=\"#1E2930\" transform=\" translate(0.078 -0.034)\" /></g><g transform=\" translate(31 15)\"><path d=\"M 1.553 4.213 C 2.477 3.111 3.555 1.521 3.359 0 C 2.328 0.611 0.713 1.549 0 1.816 L 1.396 4.334 C 1.396 4.334 1.4 4.389 1.553 4.213 Z\" fill=\"#1E2930\" transform=\" translate(0.699 0.163)\" /></g></g></svg>",
|
|
82
|
+
"dollar": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M24.26,39.17V36.39a10.33,10.33,0,0,1-3.39-.94,5.9,5.9,0,0,1-2.26-2.17,7.77,7.77,0,0,1-1.1-3.66l2.79-.53a7,7,0,0,0,1.15,3.29A4.08,4.08,0,0,0,24.26,34V25.18a11.44,11.44,0,0,1-3.51-1.33A5.12,5.12,0,0,1,18.7,21.8a6.11,6.11,0,0,1-.72-3A6.1,6.1,0,0,1,20.09,14a7.26,7.26,0,0,1,4.17-1.51V11.17H25.9V12.5a6.76,6.76,0,0,1,3.84,1.42,6.31,6.31,0,0,1,2.2,4.15l-2.88.44A4.68,4.68,0,0,0,28,16a3.8,3.8,0,0,0-2.14-1.16v8a23.43,23.43,0,0,1,2.78.82,6.91,6.91,0,0,1,2.11,1.39A5.56,5.56,0,0,1,32.05,27a6.53,6.53,0,0,1,.44,2.44,6.66,6.66,0,0,1-6.59,6.89v2.82Zm0-24.36a4.16,4.16,0,0,0-2.56,1.3,3.63,3.63,0,0,0-.93,2.49A3.6,3.6,0,0,0,21.56,21a5.46,5.46,0,0,0,2.7,1.53ZM25.9,34a4.18,4.18,0,0,0,2.68-1.41,4.38,4.38,0,0,0,1.06-3,3.76,3.76,0,0,0-.75-2.44,6.48,6.48,0,0,0-3-1.64Z\" fill=\"#484f60\"/></svg>",
|
|
83
|
+
"download": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M31,38.87H19a9,9,0,0,1-9-9h4a5,5,0,0,0,5,5H31a5,5,0,0,0,5-5h4A9,9,0,0,1,31,38.87Z\" fill=\"#484f60\"/><polygon points=\"16.22 21.1 21.94 21.1 21.94 11.46 28.06 11.46 28.06 21.1 33.78 21.1 25 29.87 16.22 21.1\" fill=\"#484f60\"/></svg>",
|
|
84
|
+
"dropdown": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><path d=\"M298,406.5a15,15,0,1,0,15,15A15,15,0,0,0,298,406.5Zm7.5,13.2-6.2,6.2a1.8,1.8,0,0,1-2.5,0l-6.2-6.2a1.8,1.8,0,1,1,2.5-2.5l5,4.9,4.9-4.9A1.8,1.8,0,1,1,305.5,419.6Z\" transform=\"translate(-272.5 -396)\" fill=\"#fff\"/></svg>",
|
|
85
|
+
"dropzone": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"12\" y=\"11.67\" width=\"14\" height=\"6\" rx=\"2\" ry=\"2\" fill=\"#484f60\" opacity=\"0.5\"/><path d=\"M26.52,23.16l-.94-.47L24,20.16l-1.23-1.61-.65-.85-1.52-1.59L18.5,14.94H17.35l-.7.7.41.91,2.47,2.21L20.09,20l1.7,2.71.82,2.26.06.74L22.76,28l-.24-.86-1-.94-.79-1L19,23.51l-1.06-.35-.88.24-.7.61,1.32,1.44,1.55,2,2.15,3.73,2.2,2,1.82,1.14,2.44,1.06,1.91,1,2,1,.23,1.3,6-6v-.91s-.91-1-1-1a16.83,16.83,0,0,1-.82-1.65l-.47-1.91-.35-1L34,24.54l-.85-1.12-.5-.82-.88-1.14L31,20.69l-1.33-.86-.22.42,1.39,2.12-.94-.47-.86-1.48L27.72,19l-1.06-.15,0,.59,2.1,3.09-.94-.47L26,19.2l-1.22-.86-1.29.12.18.56Z\" fill=\"#484f60\"/><path d=\"M26,11.67H25a2,2,0,0,1,2,2v2a2,2,0,0,1-2,2h1a2,2,0,0,0,2-2v-2A2,2,0,0,0,26,11.67Z\" fill=\"#484f60\" opacity=\"0.5\"/><path d=\"M28,11.67H27a2,2,0,0,1,2,2v2a2,2,0,0,1-2,2h1a2,2,0,0,0,2-2v-2A2,2,0,0,0,28,11.67Z\" fill=\"#484f60\" opacity=\"0.25\"/><path d=\"M30,11.67H29a2,2,0,0,1,2,2v2a2,2,0,0,1-2,2h1a2,2,0,0,0,2-2v-2A2,2,0,0,0,30,11.67Z\" fill=\"#484f60\" opacity=\"0.1\"/></svg>",
|
|
86
|
+
"edit_pencil": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"12.54 38.16 12 37.62 14.85 29.64 20.52 35.31 12.54 38.16\" fill=\"#484f60\"/><rect x=\"16.33\" y=\"20.52\" width=\"17.99\" height=\"8.64\" transform=\"translate(-10.15 25.18) rotate(-45)\" fill=\"#484f60\"/><path d=\"M37.54,18.73,36,20.32l-6.11-6.1,1.59-1.59a1.55,1.55,0,0,1,2.2,0l3.91,3.9A1.55,1.55,0,0,1,37.54,18.73Z\" fill=\"#484f60\"/></svg>",
|
|
87
|
+
"edit_pencil_circle": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"17.19 33.03 16.86 32.69 18.61 27.78 22.1 31.27 17.19 33.03\" fill=\"#484f60\"/><rect x=\"19.52\" y=\"22.17\" width=\"11.07\" height=\"5.32\" transform=\"translate(-10.22 24.99) rotate(-45)\" fill=\"#484f60\"/><path d=\"M32.57,21.07l-1,1-3.77-3.76,1-1a1,1,0,0,1,1.36,0l2.4,2.4A1,1,0,0,1,32.57,21.07Z\" fill=\"#484f60\"/><path d=\"M25,11.17a14,14,0,1,1-14,14,14,14,0,0,1,14-14m0-1a15,15,0,1,0,15,15,15,15,0,0,0-15-15Z\" fill=\"#484f60\"/></svg>",
|
|
88
|
+
"edit_pencil_round": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"-288 379 35 35\" enable-background=\"new -288 379 35 35\" ><g><path fill=\"#29363E\" d=\"M-270.5,381.5c-8.3,0-15,6.7-15,15c0,8.3,6.7,15,15,15c8.3,0,15-6.7,15-15C-255.5,388.2-262.2,381.5-270.5,381.5z M-277.9,404.5l-0.6-0.6l0.5-1.5l1.6,1.6L-277.9,404.5z M-275.5,403.8l-2.4-2.4l1-3.3l4.6,4.6L-275.5,403.8z M-271.4,402.4l-4.9-4.9l8.9-8.9l5,4.9L-271.4,402.4z M-260.8,391.8l-1.1,1.1l-5-4.9l1.1-1.1c0.4-0.4,1.1-0.4,1.5,0l3.4,3.4C-260.4,390.7-260.4,391.3-260.8,391.8z\"/></g></svg>",
|
|
89
|
+
"edit_pencil_simple": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"-280 371 51 51\" enable-background=\"new -280 371 51 51\" ><g><rect x=\"-263\" y=\"395.3\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -354.9541 -65.7895)\" fill=\"#29363E\" width=\"12.2\" height=\"0.6\"/><rect x=\"-256.5\" y=\"391.6\" transform=\"matrix(0.7075 0.7067 -0.7067 0.7075 206.5985 296.3285)\" fill=\"#29363E\" width=\"3.6\" height=\"12.2\"/><path fill=\"#29363E\" d=\"M-245.4,389.7l-2.4-2.4c-0.4-0.4-0.9-0.4-1.3,0l-0.9,0.9l3.7,3.7l0.9-0.9C-245,390.6-245,390.1-245.4,389.7z\"/><rect x=\"-252.1\" y=\"390.7\" transform=\"matrix(-0.7073 -0.707 0.707 -0.7073 -702.755 491.9368)\" fill=\"#29363E\" width=\"5.2\" height=\"1.5\"/><polygon fill=\"#29363E\" points=\"-262.4,400.9 -263.9,405.5 -263.4,406 -259,404.4 \"/></g></svg>",
|
|
90
|
+
"email": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M31.79,38.45A17.82,17.82,0,0,1,23.86,40,13.09,13.09,0,0,1,10.41,26.42C10.41,17.63,16.83,10,26.53,10c7.63,0,13.06,5.21,13.06,12.46,0,6.33-3.53,10.3-8.19,10.3a3.42,3.42,0,0,1-3.71-3.32h-.08A6.5,6.5,0,0,1,22,32.76c-2.75,0-4.82-2.11-4.82-5.65a9.85,9.85,0,0,1,10.13-10,12.89,12.89,0,0,1,5.13,1l-1.3,8c-.43,2.54-.13,3.71,1.08,3.75,1.85.09,4.18-2.28,4.18-7.28,0-5.65-3.62-10-10.3-10S13.73,17.76,13.73,26c0,7.25,4.57,11.3,11,11.3A14.81,14.81,0,0,0,31,36ZM28,20.65a5.34,5.34,0,0,0-1.33-.18c-2.85,0-5.09,2.81-5.09,6.12,0,1.64.73,2.68,2.16,2.68,1.59,0,3.27-2,3.66-4.53Z\" fill=\"#484f60\"/></svg>",
|
|
91
|
+
"email_round_open": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><path d=\"M302.1,429.5a10.7,10.7,0,0,1-4.8.9,7.9,7.9,0,0,1-8.1-8.1,9.6,9.6,0,0,1,9.7-9.9c4.6,0,7.8,3.1,7.8,7.5s-2.1,6.2-4.9,6.2a2,2,0,0,1-2.2-2h-0.1a3.9,3.9,0,0,1-3.4,2c-1.7,0-2.9-1.3-2.9-3.4a5.9,5.9,0,0,1,6.1-6,7.7,7.7,0,0,1,3.1.6l-0.8,4.8c-0.3,1.5-.1,2.2.6,2.3s2.5-1.4,2.5-4.4-2.2-6-6.2-6-7.4,3.1-7.4,8,2.7,6.8,6.6,6.8a8.9,8.9,0,0,0,3.8-.8Zm-2.3-10.7H299c-1.7,0-3.1,1.7-3.1,3.7a1.3,1.3,0,0,0,1.3,1.6c1,0,2-1.2,2.2-2.7Z\" transform=\"translate(-272.5 -396)\" fill=\"#fff\"/><path d=\"M298,437a15.5,15.5,0,1,1,15.5-15.5A15.5,15.5,0,0,1,298,437Zm0-30a14.5,14.5,0,1,0,14.5,14.5A14.5,14.5,0,0,0,298,407Z\" transform=\"translate(-272.5 -396)\" fill=\"#fff\"/></svg>",
|
|
92
|
+
"employee": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M31.05,22.53h-.49a9.09,9.09,0,0,1-4.08,3.16,1,1,0,0,1,.19.56,1.17,1.17,0,0,1-.63,1l1.46,7L25,36.67l-2.5-2.5,1.46-7a1.17,1.17,0,0,1-.63-1,1,1,0,0,1,.19-.56,9,9,0,0,1-4.08-3.16H19a4.2,4.2,0,0,0-4,3.87l2.68,3c0,1.78,1.81,8.15,4,8.15h6.72c2.23,0,4-6.37,4-8.15l2.69-3A4.21,4.21,0,0,0,31.05,22.53Z\" fill=\"#484f60\"/><path d=\"M31.18,17.64a6.2,6.2,0,0,1-12.37,0c0-2.72,2.77-5.14,6.19-5.14S31.18,14.92,31.18,17.64Z\" fill=\"#484f60\"/></svg>",
|
|
93
|
+
"employee_two": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M34.86,23h-.49a9.09,9.09,0,0,1-4.08,3.16,1,1,0,0,1,.19.56,1.17,1.17,0,0,1-.63,1l1.46,7-2.5,2.5-2.5-2.5,1.46-7a1.17,1.17,0,0,1-.63-1,1,1,0,0,1,.19-.56A9,9,0,0,1,23.25,23h-.49a4.2,4.2,0,0,0-4,3.87l2.69,3c0,1.78,1.8,8.15,4,8.15h6.72c2.23,0,4-6.37,4-8.15l2.69-3A4.21,4.21,0,0,0,34.86,23Z\" fill=\"#484f60\"/><path d=\"M35,18.14a6.2,6.2,0,0,1-12.37,0c0-2.72,2.77-5.14,6.19-5.14S35,15.42,35,18.14Z\" fill=\"#484f60\"/><path d=\"M12.75,27.61V26h4.58a5.67,5.67,0,0,1,1.26-2.46H12.75V21.86H21a5.32,5.32,0,0,1,1.19-.3,7.59,7.59,0,0,1-.87-2.17H12.75V17.75h8.4a5.75,5.75,0,0,1,.76-2.46H12.75V13.64H23.22A8,8,0,0,1,25.89,12v0H11.11V35h5.75V30.07h2.73l-2.24-2.46Z\" fill=\"#484f60\" opacity=\"0.5\"/><path d=\"M20.14,35h1a21.78,21.78,0,0,1-1-3.52Z\" fill=\"#484f60\" opacity=\"0.5\"/></svg>",
|
|
94
|
+
"employer": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M36.07,22.72h-.36c-.1.15-.23.3-.36.46a5.27,5.27,0,0,1,1.23,3.22V27l-2.73,3A18.89,18.89,0,0,1,33,33.5h1.11c1.6,0,2.9-4.59,2.9-5.87L39,25.5A3,3,0,0,0,36.07,22.72Z\" fill=\"#484f60\" opacity=\"0.5\"/><path d=\"M31.65,21.06a5.47,5.47,0,0,1,2.86,1.25,4.25,4.25,0,0,0,1.65-3.11c0-1.8-1.7-3.41-3.89-3.65a5.68,5.68,0,0,1,.41,2.09A6.64,6.64,0,0,1,31.65,21.06Z\" fill=\"#484f60\" opacity=\"0.5\"/><path d=\"M13.42,27V26.4a5.27,5.27,0,0,1,1.23-3.22,4.49,4.49,0,0,1-.36-.46h-.36A3,3,0,0,0,11,25.5L13,27.63c0,1.28,1.31,5.87,2.91,5.87H17A21.35,21.35,0,0,1,16.16,30Z\" fill=\"#484f60\" opacity=\"0.5\"/><path d=\"M17.31,17.64a5.49,5.49,0,0,1,.42-2.09c-2.19.24-3.89,1.85-3.89,3.65a4.25,4.25,0,0,0,1.65,3.11,5.44,5.44,0,0,1,2.85-1.25A6.73,6.73,0,0,1,17.31,17.64Z\" fill=\"#484f60\" opacity=\"0.5\"/><path d=\"M31.05,22.53h-.49a9.09,9.09,0,0,1-4.08,3.16,1,1,0,0,1,.19.56,1.17,1.17,0,0,1-.63,1l1.46,7L25,36.67l-2.5-2.5,1.46-7a1.17,1.17,0,0,1-.63-1,1,1,0,0,1,.19-.56,9,9,0,0,1-4.08-3.16H19a4.2,4.2,0,0,0-4,3.87l2.68,3c0,1.78,1.81,8.15,4,8.15h6.72c2.23,0,4-6.37,4-8.15l2.69-3A4.21,4.21,0,0,0,31.05,22.53Z\" fill=\"#484f60\"/><path d=\"M31.18,17.64a6.2,6.2,0,0,1-12.37,0c0-2.72,2.77-5.14,6.19-5.14S31.18,14.92,31.18,17.64Z\" fill=\"#484f60\"/></svg>",
|
|
95
|
+
"employment": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M35.4,17.53H30.59V15.9A2.61,2.61,0,0,0,28,13.3H22.14a2.61,2.61,0,0,0-2.6,2.6v1.63H14.6a2.61,2.61,0,0,0-2.6,2.6v14.3A2.61,2.61,0,0,0,14.6,37H35.4a2.61,2.61,0,0,0,2.6-2.6V20.13A2.61,2.61,0,0,0,35.4,17.53ZM20.84,15.9a1.3,1.3,0,0,1,1.3-1.3H28a1.3,1.3,0,0,1,1.3,1.3v1.63H20.84Z\" fill=\"#484f60\"/></svg>",
|
|
96
|
+
"employment_end": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M18.11,21.87h9.15L30.62,26,34,21.87h2v-5a2.61,2.61,0,0,0-2.6-2.61H28.59V12.6A2.61,2.61,0,0,0,26,10H20.14a2.61,2.61,0,0,0-2.6,2.6v1.62H12.6A2.61,2.61,0,0,0,10,16.83v14.3a2.61,2.61,0,0,0,2.6,2.59H24.4l1.65-2Zm.73-9.27a1.3,1.3,0,0,1,1.3-1.3H26a1.3,1.3,0,0,1,1.3,1.3v1.62H18.84Z\" fill=\"#484f60\" opacity=\"0.5\"/><polygon points=\"34.71 40 30.63 34.95 26.54 40 21.25 40 27.98 31.68 21.25 23.37 26.54 23.37 30.63 28.41 34.71 23.37 40 23.37 33.27 31.68 40 40 34.71 40\" fill=\"#484f60\"/></svg>",
|
|
97
|
+
"equal": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M14.58,22a.58.58,0,0,1-.58-.57V19.14a.58.58,0,0,1,.58-.57H35.43a.58.58,0,0,1,.57.57v2.29a.58.58,0,0,1-.57.57Z\" fill=\"#484f60\"/><path d=\"M14.58,31.43a.58.58,0,0,1-.58-.57V28.57a.58.58,0,0,1,.58-.57H35.43a.58.58,0,0,1,.57.57v2.29a.58.58,0,0,1-.57.57Z\" fill=\"#484f60\"/></svg>",
|
|
98
|
+
"euro": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M30.13,10.9a15,15,0,1,0,9,19.23A15,15,0,0,0,30.13,10.9ZM20.21,38.16a14,14,0,1,1,17.95-8.37A14,14,0,0,1,20.21,38.16Z\" fill=\"#484f60\"/><path d=\"M29.85,36l5.91-16.24a12.16,12.16,0,0,0-1.62-2.48L27,36.82A12,12,0,0,0,29.85,36Z\" fill=\"#484f60\"/><path d=\"M25.55,37l7.57-20.8a11.05,11.05,0,0,0-2-1.47L23.08,36.83A11.47,11.47,0,0,0,25.55,37Z\" fill=\"#484f60\"/><path d=\"M36.28,29.1a11.91,11.91,0,0,0,.21-7.52L31.61,35A12,12,0,0,0,36.28,29.1Z\" fill=\"#484f60\"/><path d=\"M29.1,13.72a12,12,0,0,0-8.2,22.56c.29.1.58.19.88.27L30,14.08C29.68,14,29.4,13.83,29.1,13.72Zm-8,16.8-2.59-.94,2.58-7.09.45-1.16.51-1.26a11.64,11.64,0,0,1-1.21.52L19,21.21l-.68-2,5.09-1.71,2.13.78Z\" fill=\"#484f60\"/></svg>",
|
|
99
|
+
"exclamation": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25,33.67a2,2,0,0,1-1.42-.59,2,2,0,0,1,0-2.83A1.94,1.94,0,0,1,25,29.67a2,2,0,0,1,2,2,2,2,0,0,1-.58,1.41A1.93,1.93,0,0,1,25,33.67Z\" fill=\"#484f60\"/><rect x=\"23.05\" y=\"16.67\" width=\"4\" height=\"10\" transform=\"translate(50.1 43.34) rotate(180)\" fill=\"#484f60\"/></svg>",
|
|
100
|
+
"exclamation_round_open": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25,39.17a14,14,0,1,1,14-14,14,14,0,0,1-14,14m0,1a15,15,0,1,0-15-15,15,15,0,0,0,15,15Z\" fill=\"#484f60\"/><path d=\"M25,33.67a2,2,0,0,1-1.42-.59,2,2,0,0,1,0-2.83A1.94,1.94,0,0,1,25,29.67a2,2,0,0,1,2,2,2,2,0,0,1-.58,1.41A1.93,1.93,0,0,1,25,33.67Z\" fill=\"#484f60\"/><rect x=\"23.05\" y=\"16.67\" width=\"4\" height=\"10\" transform=\"translate(50.1 43.34) rotate(180)\" fill=\"#484f60\"/></svg>",
|
|
101
|
+
"eye_circle": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25,40A15,15,0,1,1,40,25,15,15,0,0,1,25,40Zm0-29A14,14,0,1,0,39,25,14,14,0,0,0,25,11Z\" fill=\"#484f60\"/><path d=\"M16,24.94s8.37,12.13,18,0C34,24.94,25.94,13.07,16,24.94Zm9,3.81A3.75,3.75,0,1,1,28.75,25,3.75,3.75,0,0,1,25,28.75Z\" fill=\"#484f60\"/><path d=\"M26.31,24.62a.94.94,0,0,1-.94-.93.92.92,0,0,1,.45-.78A2.25,2.25,0,1,0,27.25,25a2.22,2.22,0,0,0-.16-.82A.93.93,0,0,1,26.31,24.62Z\" fill=\"#484f60\"/></svg>",
|
|
102
|
+
"eye_circle_large": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25,45A20,20,0,1,1,45,25,20,20,0,0,1,25,45ZM25,6.29A18.71,18.71,0,1,0,43.71,25,18.73,18.73,0,0,0,25,6.29Z\" fill=\"#484f60\"/><path d=\"M13,24.93s11.17,16.16,24,0C37,24.93,26.25,9.09,13,24.93ZM25,30a5,5,0,1,1,5-5A5,5,0,0,1,25,30Z\" fill=\"#484f60\"/><path d=\"M26.75,24.5a1.25,1.25,0,0,1-1.25-1.25,1.22,1.22,0,0,1,.59-1A3.06,3.06,0,0,0,25,22a3,3,0,1,0,3,3,3.07,3.07,0,0,0-.21-1.1A1.25,1.25,0,0,1,26.75,24.5Z\" fill=\"#484f60\"/></svg>",
|
|
103
|
+
"eye_round_filled": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 50 50\" enable-background=\"new 0 0 50 50\" ><g><path fill=\"#29363E\" d=\"M25,10c-8.3,0-15,6.7-15,15c0,8.3,6.7,15,15,15c8.3,0,15-6.7,15-15C40,16.7,33.3,10,25,10z M15,24.9c11-13.2,20,0,20,0C24.3,38.4,15,24.9,15,24.9z\"/><path fill=\"#29363E\" d=\"M25,20.1c-2.7,0-4.9,2.2-4.9,4.9c0,2.7,2.2,4.9,4.9,4.9c2.7,0,4.9-2.2,4.9-4.9C29.9,22.3,27.7,20.1,25,20.1z M25,25.8c-1.2,0-2.1-1-2.1-2.1c0-1.2,1-2.1,2.1-2.1c1.2,0,2.1,1,2.1,2.1C27.1,24.8,26.2,25.8,25,25.8z\"/></g></svg>",
|
|
104
|
+
"factory": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M12.09,40a1,1,0,0,1-1-1V26.54c0-.55.31-.68.7-.29l5.82,5.81c.39.39.71.26.71-.29V26.54c0-.55.33-.7.75-.34l6.75,5.91c.42.36.76.21.76-.34V26.54c0-.55.32-.68.7-.29l5.82,5.81c.39.39.71.26.71-.29V17.25a1,1,0,0,1,1-1H38a1,1,0,0,1,1,1V39a1,1,0,0,1-1,1Z\" fill=\"#484f60\"/><path d=\"M16.5,15.52A9.55,9.55,0,0,1,11,14l1.15-1.72a7.52,7.52,0,0,0,4.32,1.17,19.35,19.35,0,0,0,4.73-.7l.5,2a21.36,21.36,0,0,1-5.23.76Z\" fill=\"#484f60\" opacity=\"0.5\"/><path d=\"M24.76,13.91l-.6-2,.94-.29A28.16,28.16,0,0,1,32.71,10a5.53,5.53,0,0,1,5.07,2.61L36,13.69a3.5,3.5,0,0,0-3.32-1.63,26.89,26.89,0,0,0-7,1.56l-.94.29Z\" fill=\"#484f60\" opacity=\"0.5\"/></svg>",
|
|
105
|
+
"fasttrack": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"39 10.99 27.71 14.04 19.67 22.88 23.76 22.3 15.66 30.08 19.07 29.45 11 38.67 28.54 25.65 23.88 26.51 34.31 17.9 29.46 18.51 39 10.99\" fill=\"#484f60\"/></svg>",
|
|
106
|
+
"filter": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M22.13,39.17A1.69,1.69,0,0,1,21,37.58v-8.5l-9-15.46a1.68,1.68,0,0,1,1.5-2.45h22.9A1.68,1.68,0,0,1,38,13.62L29,29.08v8.49a1.68,1.68,0,0,1-1.14,1.59Z\" fill=\"#484f60\"/></svg>",
|
|
107
|
+
"finish": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"3.2\" y=\"24.12\" width=\"26.3\" height=\"1.75\" transform=\"translate(-13.22 29.26) rotate(-65)\" fill=\"#484f60\"/><path d=\"M27,16.77a4.75,4.75,0,0,0-4,.36l1.56-3.33a5.8,5.8,0,0,1,3.65.48Z\" fill=\"#484f60\"/><path d=\"M29.67,19.27A6.91,6.91,0,0,0,27,16.77l1.17-2.49A10.31,10.31,0,0,1,31,16.47Z\" fill=\"#484f60\" opacity=\"0\"/><path d=\"M31.92,22.73c-.77-1.11-1.48-2.37-2.25-3.46l1.3-2.8c.88.89,1.71,1.87,2.58,2.77Z\" fill=\"#484f60\"/><path d=\"M34.6,25.27a7.18,7.18,0,0,1-2.68-2.54l1.63-3.49a11.18,11.18,0,0,0,2.83,2.22C35.76,22.79,35.17,24.06,34.6,25.27Z\" fill=\"#484f60\" opacity=\"0\"/><path d=\"M38.59,25a4.56,4.56,0,0,1-4,.25c.57-1.21,1.16-2.48,1.78-3.81A5.84,5.84,0,0,0,40,22Z\" fill=\"#484f60\"/><path d=\"M25.61,19.66c-1.09-.42-2.45-.28-4.24.81.52-1.11,1-2.22,1.55-3.34a4.75,4.75,0,0,1,4-.36Z\" fill=\"#484f60\" opacity=\"0\"/><path d=\"M28.26,22.27a5.89,5.89,0,0,0-2.65-2.61L27,16.77a6.91,6.91,0,0,1,2.71,2.5C29.21,20.24,28.75,21.24,28.26,22.27Z\" fill=\"#484f60\"/><path d=\"M30.37,26.05c-.73-1.2-1.37-2.59-2.11-3.78.49-1,.95-2,1.41-3,.77,1.09,1.48,2.35,2.25,3.46C31.39,23.86,30.88,25,30.37,26.05Z\" fill=\"#484f60\" opacity=\"0\"/><path d=\"M33,28.72a6.22,6.22,0,0,1-2.63-2.67c.51-1.08,1-2.19,1.55-3.32a7.18,7.18,0,0,0,2.68,2.54C34,26.48,33.5,27.63,33,28.72Z\" fill=\"#484f60\"/><path d=\"M37.18,28c-1.77,1-3.11,1.14-4.18.68.5-1.09,1-2.24,1.6-3.45a4.56,4.56,0,0,0,4-.25Z\" fill=\"#484f60\" opacity=\"0\"/><path d=\"M24.09,22.94c-1.11-.41-2.47-.24-4.28.87l1.56-3.34c1.79-1.09,3.15-1.23,4.24-.81Z\" fill=\"#484f60\"/><path d=\"M26.77,25.48a5.87,5.87,0,0,0-2.68-2.54l1.52-3.28a5.89,5.89,0,0,1,2.65,2.61Z\" fill=\"#484f60\" opacity=\"0\"/><path d=\"M28.91,29.19c-.74-1.17-1.4-2.54-2.14-3.71l1.49-3.21c.74,1.19,1.38,2.58,2.11,3.78Z\" fill=\"#484f60\"/><path d=\"M31.56,31.81a6.12,6.12,0,0,1-2.65-2.62l1.46-3.14A6.22,6.22,0,0,0,33,28.72Z\" fill=\"#484f60\" opacity=\"0\"/><path d=\"M35.78,31.06c-1.79,1.06-3.14,1.18-4.22.75L33,28.72c1.07.46,2.41.36,4.18-.68C36.71,29,36.24,30.05,35.78,31.06Z\" fill=\"#484f60\"/><path d=\"M22.38,26.6a5.07,5.07,0,0,0-4.13.54l1.56-3.33c1.81-1.11,3.17-1.28,4.28-.87Z\" fill=\"#484f60\" opacity=\"0\"/><path d=\"M25.18,28.9a6.5,6.5,0,0,0-2.8-2.3l1.71-3.66a5.87,5.87,0,0,1,2.68,2.54Z\" fill=\"#484f60\"/><path d=\"M27.52,32.17c-.8-1-1.54-2.24-2.34-3.27l1.59-3.42c.74,1.17,1.4,2.54,2.14,3.71Z\" fill=\"#484f60\" opacity=\"0\"/><path d=\"M30.29,34.52a6.78,6.78,0,0,1-2.77-2.35l1.39-3a6.12,6.12,0,0,0,2.65,2.62C31.11,32.77,30.69,33.68,30.29,34.52Z\" fill=\"#484f60\"/><path d=\"M34.37,34.08a4.91,4.91,0,0,1-4.08.44c.4-.84.82-1.75,1.27-2.71,1.08.43,2.43.31,4.22-.75Z\" fill=\"#484f60\" opacity=\"0\"/><path d=\"M20.49,30.64a6.4,6.4,0,0,0-3.79-.16c.52-1.11,1-2.22,1.55-3.34a5.07,5.07,0,0,1,4.13-.54Z\" fill=\"#484f60\"/><path d=\"M23.49,32.52a10.08,10.08,0,0,0-3-1.88l1.89-4a6.5,6.5,0,0,1,2.8,2.3Z\" fill=\"#484f60\" opacity=\"0\"/><path d=\"M26.21,35c-.92-.79-1.8-1.67-2.72-2.45l1.69-3.62c.8,1,1.54,2.23,2.34,3.27C27.07,33.13,26.63,34.06,26.21,35Z\" fill=\"#484f60\"/><path d=\"M29.2,36.87a10.23,10.23,0,0,1-3-1.9c.42-.91.86-1.84,1.31-2.8a6.78,6.78,0,0,0,2.77,2.35Z\" fill=\"#484f60\" opacity=\"0\"/><path d=\"M33,37.1a6.27,6.27,0,0,1-3.76-.23l1.09-2.35a4.91,4.91,0,0,0,4.08-.44Z\" fill=\"#484f60\"/></svg>",
|
|
108
|
+
"fixed_option_value_tree": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"21.92 38.92 21.7 13.06 22.57 13.06 23.89 38.92 21.92 38.92\" fill=\"#484f60\"/><polygon points=\"21.56 28.7 17.71 26.89 17.01 25.01 17.62 24.78 18.23 26.41 21.84 28.1 21.56 28.7 21.56 28.7\" fill=\"#484f60\"/><polygon points=\"13.82 30.17 13.36 29.7 14.56 28.5 17.86 28.72 19.29 27.5 19.72 27.99 18.09 29.39 14.81 29.18 13.82 30.17 13.82 30.17\" fill=\"#484f60\"/><polygon points=\"16.26 27.2 16.18 26.54 17.93 26.32 18.01 26.98 16.26 27.2 16.26 27.2\" fill=\"#484f60\"/><polygon points=\"15.87 30.72 15.26 30.46 15.92 28.93 16.52 29.19 15.87 30.72 15.87 30.72\" fill=\"#484f60\"/><polygon points=\"21.7 19.64 16 16.57 21.48 20.95 21.7 19.64\" fill=\"#484f60\"/><polygon points=\"19.4 18.39 18.5 13.62 19.93 12.18 20.39 12.64 19.2 13.83 20.05 18.26 19.4 18.39 19.4 18.39\" fill=\"#484f60\"/><polygon points=\"10.3 18.57 9.88 18.07 11.26 16.91 15.69 16.28 15.9 12.05 17.3 10.64 17.77 11.11 16.54 12.33 16.32 16.86 11.54 17.54 10.3 18.57 10.3 18.57\" fill=\"#484f60\"/><polygon points=\"13.98 16.98 12.89 15.45 13.42 15.06 14.52 16.6 13.98 16.98 13.98 16.98\" fill=\"#484f60\"/><polygon points=\"15.92 12.32 15.26 10.79 15.87 10.53 16.52 12.06 15.92 12.32 15.92 12.32\" fill=\"#484f60\"/><polygon points=\"15.78 15.5 13.46 13.41 13.71 11.71 14.36 11.79 14.16 13.16 16.22 15.01 15.78 15.5 15.78 15.5\" fill=\"#484f60\"/><polygon points=\"22.64 13.54 18.86 10.47 19.28 9.96 22.51 12.59 24.39 9.86 25.91 10.11 25.81 10.76 24.7 10.57 22.64 13.54 22.64 13.54\" fill=\"#484f60\"/><polygon points=\"22.02 12.05 21.38 11.89 21.82 10.14 22.46 10.29 22.02 12.05 22.02 12.05\" fill=\"#484f60\"/><polygon points=\"24.29 10.42 23.41 9.33 23.93 8.92 24.8 10.01 24.29 10.42 24.29 10.42\" fill=\"#484f60\"/><polygon points=\"23.27 17.21 22.75 16.81 24.88 14.05 24.88 11.75 25.53 11.75 25.53 14.27 23.27 17.21 23.27 17.21\" fill=\"#484f60\"/><polygon points=\"26.52 14.49 25.2 14.49 25.2 13.83 26.52 13.83 26.52 14.49 26.52 14.49\" fill=\"#484f60\"/><polygon points=\"28.49 15.04 26.74 17.23 23.23 23.14 23.45 25.11 27.61 17.45 28.49 15.04\" fill=\"#484f60\"/><polygon points=\"28.21 15.39 27.73 12.05 27.09 10.33 27.7 10.1 28.38 11.92 28.77 14.68 30.87 14.49 33.99 14.71 33.94 15.37 30.88 15.15 28.21 15.39 28.21 15.39\" fill=\"#484f60\"/><polygon points=\"28.27 12.22 27.84 11.72 29.59 10.19 30.02 10.68 28.27 12.22 28.27 12.22\" fill=\"#484f60\"/><polygon points=\"31.15 15.03 30.65 14.6 32.18 12.85 32.68 13.28 31.15 15.03 31.15 15.03\" fill=\"#484f60\"/><polygon points=\"26.19 17.67 25.53 17.67 25.53 15.69 26.19 15.69 26.19 17.67 26.19 17.67\" fill=\"#484f60\"/><polygon points=\"29.24 19.31 26.74 19.31 26.74 18.65 29.05 18.65 31.17 17.38 31.51 17.95 29.24 19.31 29.24 19.31\" fill=\"#484f60\"/><rect x=\"29.48\" y=\"18.63\" width=\"0.66\" height=\"1.58\" transform=\"translate(-2.87 33.48) rotate(-56.37)\" fill=\"#484f60\"/><path d=\"M26.8,24.44l-3.57,2.65.22,2.19,3.23-3.23v-.21A7.77,7.77,0,0,1,26.8,24.44Z\" fill=\"#484f60\"/><path d=\"M28,20.22l-.3.59.92.45a5.32,5.32,0,0,1,.59-.44Z\" fill=\"#484f60\"/><path d=\"M33.13,19.93l.76-.84h1.39v-.66H33.6L32.2,20c.26,0,.51,0,.78,0Z\" fill=\"#484f60\"/><polygon points=\"34.07 18.8 33.42 18.72 33.64 16.97 34.29 17.05 34.07 18.8 34.07 18.8\" fill=\"#484f60\"/><path d=\"M36,20.31l-.46-.47-.35.35q.38.09.72.21Z\" fill=\"#484f60\"/><path d=\"M32.71,24.63l.11.06.4,1.19.62-.21-.34-1h-.79Z\" fill=\"#484f60\"/><polygon points=\"26.6 26.29 26.68 26.32 26.68 26.13 26.6 26.29\" fill=\"#484f60\"/><polygon points=\"21.7 25.99 17.32 23.36 14.69 21.39 18.19 22.92 21.7 24.02 21.7 25.99\" fill=\"#484f60\"/><polygon points=\"18.52 22.92 17.86 22.92 17.86 20.07 18.52 20.07 18.52 22.92 18.52 22.92\" fill=\"#484f60\"/><polygon points=\"15.75 21.61 14.24 19.88 12.52 18.59 12.91 18.06 14.71 19.42 16.25 21.17 15.75 21.61 15.75 21.61\" fill=\"#484f60\"/><polygon points=\"14.78 19.73 14.15 19.55 14.59 18.01 15.22 18.2 14.78 19.73 14.78 19.73\" fill=\"#484f60\"/><polygon points=\"14.69 21.72 11.7 21.72 10.07 20.09 10.54 19.63 11.97 21.06 14.69 21.06 14.69 21.72 14.69 21.72\" fill=\"#484f60\"/><polygon points=\"11 22.91 10.49 22.49 11.59 21.18 12.09 21.6 11 22.91 11 22.91\" fill=\"#484f60\"/><polygon points=\"13.7 28.21 13.04 28.15 13.3 25.61 14.26 23.98 16.67 22.01 17.08 22.52 14.72 24.45 13.91 25.87 13.7 28.21 13.7 28.21\" fill=\"#484f60\"/><polygon points=\"13.59 26.1 11.84 26.1 11.84 25.44 13.59 25.44 13.59 26.1 13.59 26.1\" fill=\"#484f60\"/><polygon points=\"14.3 24.52 12.77 23.65 13.1 23.08 14.63 23.95 14.3 24.52 14.3 24.52\" fill=\"#484f60\"/><path d=\"M38.08,29.2H27.88c-1.87,0-2,1.52-2,3.41V38c0,1.89.17,3.42,2,3.42h10.2c1.88,0,2-1.53,2-3.42V32.61C40.12,30.72,40,29.2,38.08,29.2ZM29.8,39.75l1.73-4.22a2.55,2.55,0,1,1,2.9,0l1.74,4.22Z\" fill=\"#484f60\"/><path d=\"M36,25.84c0-2.4-1.35-2.71-3-2.71h0c-1.66,0-3,.31-3,2.71v2h-1.8v-2c0-3.34,2.15-4.42,4.8-4.42h0c2.66,0,4.81,1.08,4.81,4.42v2H36Z\" fill=\"#484f60\"/></svg>",
|
|
109
|
+
"fixed_tree_option_value": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M38,27.8H27.76c-1.88,0-2.05,1.53-2.05,3.41v5.4c0,1.88.17,3.41,2.05,3.41H38c1.88,0,2-1.53,2-3.41v-5.4C40,29.33,39.83,27.8,38,27.8ZM29.67,38.35l1.74-4.22a2.56,2.56,0,0,1,1.45-4.66,2.56,2.56,0,0,1,1.45,4.66L36,38.35Z\" fill=\"#484f60\"/><path d=\"M35.86,24.44c0-2.4-1.34-2.71-3-2.71h0c-1.66,0-3,.31-3,2.71v2h-1.8v-2c0-3.34,2.15-4.42,4.81-4.42h0c2.65,0,4.8,1.08,4.8,4.42v2h-1.8Z\" fill=\"#484f60\"/><path d=\"M29.19,19.36l-1.43,0A2.12,2.12,0,0,1,25.94,18l-2.49-7.16c-.25-.71-.65-.71-.9,0L20.06,18a2.12,2.12,0,0,1-1.82,1.32l-7.58.16c-.76,0-.88.4-.28.85l6,4.58a2.14,2.14,0,0,1,.7,2.15l-2.2,7.25c-.22.72.11,1,.73.53l6.22-4.33a2.14,2.14,0,0,1,2.26,0l.09.07c.05-1.35.35-3.5,2.33-4.12v-2A5.41,5.41,0,0,1,29.19,19.36Z\" fill=\"#484f60\"/></svg>",
|
|
110
|
+
"floppy_disk_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M433.1 129.1l-83.9-83.9C342.3 38.32 327.1 32 316.1 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V163.9C448 152.9 441.7 137.7 433.1 129.1zM224 416c-35.34 0-64-28.66-64-64s28.66-64 64-64s64 28.66 64 64S259.3 416 224 416zM320 208C320 216.8 312.8 224 304 224h-224C71.16 224 64 216.8 64 208v-96C64 103.2 71.16 96 80 96h224C312.8 96 320 103.2 320 112V208z\"/></svg>",
|
|
111
|
+
"FolderArrow": "<svg preserveAspectRatio=\"none\" version=\"1.1\" viewBox=\"0 0 50 50\" x=\"0px\" xmlns=\"http://www.w3.org/2000/svg\" y=\"0px\"><g transform=\" translate(11 11)\"><path d=\"M 7.695 3.589 L 7.695 0 L 1.591 0 C 0.711 0 0 0.711 0 1.59 L 0 11.109 L 2.535 6.039 C 2.688 4.703 3.793 3.66 7.695 3.589 Z\" fill=\"#1E2930\" transform=\" translate(0.463 10.031)\" /><path d=\"M 7.7 1.59 C 7.7 0.711 6.988 0 6.109 0 L 0 0 L 0 3.574 L 7.7 3.574 L 7.7 1.59 Z\" fill=\"#1E2930\" transform=\" translate(16.924 10.031)\" /><path d=\"M 22.566 11.285 C 22.566 12.164 21.856 12.875 20.981 12.875 L 1.59 12.875 C 0.711 12.875 0 12.164 0 11.285 L 3.973 1.59 C 3.973 0.711 4.684 0 5.563 0 L 24.953 0 C 25.828 0 26.543 0.711 26.543 1.59 L 22.566 11.285 Z\" fill=\"#1E2930\" transform=\" translate(0.994 15.593)\" /><path d=\"M 6.331 0 L 0 6.332 L 3.938 6.332 L 3.938 12.871 L 8.729 12.871 L 8.729 6.332 L 12.663 6.332 L 6.331 0 Z\" fill=\"#1E2930\" transform=\" translate(6.21 0.468)\" /></g></svg>",
|
|
112
|
+
"folder_arrow_in": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><path d=\"M286.1,417a1.6,1.6,0,0,0-1.6,1.6v9.5l2.5-5.1c0.2-1.3,1.3-2.4,5.2-2.4H294l-3.6-3.6h-4.3Z\" transform=\"translate(-272.5 -396)\" fill=\"#4d5050\"/><path d=\"M307,417h-4.4l-3.6,3.6h9.5v-2A1.6,1.6,0,0,0,307,417Z\" transform=\"translate(-272.5 -396)\" fill=\"#4d5050\"/><path d=\"M307.6,433.9a1.6,1.6,0,0,1-1.6,1.6H286.6a1.6,1.6,0,0,1-1.6-1.6l4-9.7a1.6,1.6,0,0,1,1.6-1.6h19.4a1.6,1.6,0,0,1,1.6,1.6Z\" transform=\"translate(-272.5 -396)\" fill=\"#4d5050\"/><polygon points=\"24 24.4 30.4 18 26.4 18 26.4 11.5 21.6 11.5 21.6 18 17.7 18 24 24.4\" fill=\"#4d5050\"/></svg>",
|
|
113
|
+
"formula": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M14.85,15.24a16.12,16.12,0,0,0-3,10,16.45,16.45,0,0,0,3,9.86H13.19A15.77,15.77,0,0,1,10,25.2a16.12,16.12,0,0,1,3.19-10Z\" fill=\"#484f60\"/><path d=\"M35.15,35.09a16.11,16.11,0,0,0,3.05-10,16.46,16.46,0,0,0-3.05-9.87h1.66A15.77,15.77,0,0,1,40,25.13a16.1,16.1,0,0,1-3.19,10Z\" fill=\"#484f60\"/><path d=\"M32.26,30.25c-.82,1.84-3.08,2.12-4.88,2.18-2.8.1-3.3-2.53-4.2-4.62-1.12,1.56-2.48,4.44-4.73,4.55-3.31.16-2.54-4.67.72-4.58,3.67.1,3.93-1.43,3-4.68-.79-2.68-1.5-3.43-4.28-2.9.36-2.05,3.29-2.3,4.91-2.23,2.43.11,3.17,2.66,3.82,4.6,1.16-1.67,3.49-6.08,6.18-4.22,2.34,1.61-.28,4.22-2.26,4.09-3.81-.26-3.72,2-2.71,5.1.86,2.67,1.72,3,4.47,2.71C31.41,32.14,29,30.64,32.26,30.25Z\" fill=\"#484f60\"/></svg>",
|
|
114
|
+
"fullscreen": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M38,38.17H12v-26H38ZM13.24,36.93H36.76V13.4H13.24Z\" fill=\"#484f60\"/><polygon points=\"17.35 32.81 17.35 26.75 19.46 28.86 28.69 19.63 26.59 17.52 32.65 17.52 32.65 23.58 30.54 21.47 21.31 30.71 23.41 32.81 17.35 32.81\" fill=\"#484f60\"/></svg>",
|
|
115
|
+
"gear_double": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"-280 372 50 50\" enable-background=\"new -280 372 50 50\" ><g><g><path fill=\"#29363E\" d=\"M-249.4,403.5V401l-3.2-0.9c-0.2-0.6-0.4-1.2-0.7-1.8l1.6-2.8l-1.8-1.8l-2.7,1.6c-0.5-0.3-1.1-0.6-1.7-0.7l-0.9-3.2h-2.5l-0.9,3.2c-0.6,0.2-1.3,0.4-1.8,0.8l-2.7-1.6l-1.8,1.8l1.6,2.7c-0.3,0.6-0.6,1.2-0.7,1.8l-3.2,0.9v2.5l3.3,0.9c0.2,0.6,0.4,1.2,0.7,1.7l-1.6,2.7l1.8,1.8l2.8-1.6c0.6,0.3,1.2,0.6,1.8,0.7l0.9,3.2h2.5l0.9-3.2c0.6-0.2,1.2-0.4,1.7-0.7l2.8,1.6l1.8-1.8l-1.6-2.8c0.3-0.5,0.5-1.1,0.7-1.7L-249.4,403.5z M-260.2,405.3c-1.7,0-3.1-1.4-3.1-3.1c0-1.7,1.4-3.1,3.1-3.1c1.7,0,3.1,1.4,3.1,3.1C-257.1,403.9-258.5,405.3-260.2,405.3z\"/></g><g><path fill=\"#29363E\" d=\"M-239.4,385.5l-2.3-0.1c-0.2-0.3-0.5-0.7-0.8-0.9c-0.3-0.3-0.6-0.5-0.9-0.8l-0.1-2.3l-1.7-0.4l-1,1.9c-1,0-1.9,0.2-2.8,0.7l-2.1-1.2l-1.2,1.2l1.2,2c-0.5,0.9-0.8,1.9-0.7,2.9l-1.9,1l0.4,1.7l2.3,0.1c0.2,0.3,0.5,0.7,0.7,0.9c0.3,0.3,0.6,0.5,0.9,0.7l0.1,2.3l1.7,0.4l1-1.9c1,0,2-0.2,2.9-0.7l2,1.2l1.2-1.2l-1.2-2.1c0.5-0.9,0.7-1.8,0.7-2.8l1.9-1L-239.4,385.5z M-244.7,390.1c-0.9,0.9-2.5,0.9-3.4,0c-0.9-0.9-0.9-2.5,0-3.4c0.9-0.9,2.5-0.9,3.4,0C-243.7,387.6-243.7,389.1-244.7,390.1z\"/></g></g></svg>",
|
|
116
|
+
"global_search": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 50 50\" enable-background=\"new 0 0 50 50\" ><g><path opacity=\"0.75\" fill=\"#29363E\" d=\"M33.5,21.5c0.1-0.1,0.2-0.1,0.3,0l0.8,0.6c0.1,0.1,0.1,0,0.1-0.1l-0.3-0.9c0-0.1,0-0.2,0.1-0.3l0.8-0.6c0.1-0.1,0.1-0.1,0-0.1l-1,0c-0.1,0-0.2-0.1-0.2-0.2l-0.3-0.9c0-0.1-0.1-0.1-0.1,0l-0.3,0.9c0,0.1-0.1,0.2-0.2,0.2l-1,0c-0.1,0-0.1,0.1,0,0.1l0.8,0.6c0.1,0.1,0.1,0.2,0.1,0.3L32.6,22c0,0.1,0,0.1,0.1,0.1L33.5,21.5z\"/><path opacity=\"0.5\" fill=\"#29363E\" d=\"M34.7,16.3L34,16.8c-0.1,0-0.1,0-0.1-0.1l0.3-0.8c0-0.1,0-0.2-0.1-0.2l-0.7-0.5c-0.1-0.1-0.1-0.1,0-0.1l0.9,0c0.1,0,0.2-0.1,0.2-0.2l0.3-0.8c0-0.1,0.1-0.1,0.1,0l0.3,0.8c0,0.1,0.1,0.1,0.2,0.2l0.9,0c0.1,0,0.1,0,0,0.1l-0.7,0.5c-0.1,0.1-0.1,0.2-0.1,0.2l0.2,0.8c0,0.1,0,0.1-0.1,0.1L35,16.3C34.9,16.3,34.8,16.3,34.7,16.3z\"/><path opacity=\"0.75\" fill=\"#29363E\" d=\"M30.5,26.2c0.1-0.1,0.2-0.1,0.3,0l0.9,0.6c0.1,0.1,0.1,0,0.1-0.1l-0.3-1.1c0-0.1,0-0.2,0.1-0.3l0.9-0.7c0.1-0.1,0.1-0.1,0-0.1l-1.1,0c-0.1,0-0.2-0.1-0.3-0.2l-0.4-1.1c0-0.1-0.1-0.1-0.1,0l-0.4,1.1c0,0.1-0.2,0.2-0.3,0.2l-1.1,0c-0.1,0-0.1,0.1,0,0.1l0.9,0.7c0.1,0.1,0.1,0.2,0.1,0.3l-0.3,1.1c0,0.1,0,0.1,0.1,0.1L30.5,26.2z\"/><path opacity=\"0.75\" fill=\"#29363E\" d=\"M26.2,30.6c0.1-0.1,0.3-0.1,0.4,0l1,0.7c0.1,0.1,0.2,0,0.1-0.1l-0.4-1.2c0-0.1,0-0.3,0.1-0.3l1-0.7c0.1-0.1,0.1-0.1,0-0.1l-1.2,0c-0.1,0-0.3-0.1-0.3-0.2l-0.4-1.2c0-0.1-0.1-0.1-0.1,0l-0.4,1.2c0,0.1-0.2,0.2-0.3,0.2l-1.2,0c-0.1,0-0.1,0.1,0,0.1l1,0.7c0.1,0.1,0.1,0.2,0.1,0.3l-0.4,1.2c0,0.1,0,0.2,0.1,0.1L26.2,30.6z\"/><path opacity=\"0.5\" fill=\"#29363E\" d=\"M14.9,36.4c0.1-0.1,0.2-0.1,0.3,0L16,37c0.1,0.1,0.1,0,0.1-0.1L15.8,36c0-0.1,0-0.2,0.1-0.3l0.8-0.6c0.1-0.1,0.1-0.1,0-0.1l-1,0c-0.1,0-0.2-0.1-0.2-0.2l-0.3-0.9c0-0.1-0.1-0.1-0.1,0l-0.3,0.9c0,0.1-0.1,0.2-0.2,0.2l-1,0c-0.1,0-0.1,0.1,0,0.1l0.8,0.6c0.1,0.1,0.1,0.2,0.1,0.3L14,36.9c0,0.1,0,0.1,0.1,0.1L14.9,36.4z\"/><path opacity=\"0.25\" fill=\"#29363E\" d=\"M19.3,25.3c0.1,0,0.2,0,0.2,0l0.6,0.4c0.1,0,0.1,0,0.1-0.1L20,25c0-0.1,0-0.2,0.1-0.2l0.6-0.4c0.1,0,0-0.1,0-0.1l-0.7,0c-0.1,0-0.2-0.1-0.2-0.1l-0.2-0.7c0-0.1-0.1-0.1-0.1,0l-0.2,0.7c0,0.1-0.1,0.1-0.2,0.1l-0.7,0c-0.1,0-0.1,0,0,0.1l0.6,0.4c0.1,0,0.1,0.1,0.1,0.2l-0.2,0.7c0,0.1,0,0.1,0.1,0.1L19.3,25.3z\"/><path opacity=\"0.4\" fill=\"#29363E\" d=\"M29.6,16.8c0.1,0,0.2,0,0.2,0l0.6,0.4c0.1,0,0.1,0,0.1-0.1l-0.2-0.7c0-0.1,0-0.2,0.1-0.2l0.6-0.4c0.1,0,0-0.1,0-0.1l-0.7,0c-0.1,0-0.2-0.1-0.2-0.1l-0.2-0.7c0-0.1-0.1-0.1-0.1,0l-0.2,0.7c0,0.1-0.1,0.1-0.2,0.1l-0.7,0c-0.1,0-0.1,0,0,0.1l0.6,0.4c0.1,0,0.1,0.1,0.1,0.2l-0.2,0.7c0,0.1,0,0.1,0.1,0.1L29.6,16.8z\"/><path opacity=\"0.4\" fill=\"#29363E\" d=\"M14.9,31.7c0.1,0,0.2,0,0.3,0l0.7,0.5c0.1,0,0.1,0,0.1-0.1l-0.3-0.8c0-0.1,0-0.2,0.1-0.2l0.7-0.5c0.1-0.1,0.1-0.1,0-0.1l-0.9,0c-0.1,0-0.2-0.1-0.2-0.2l-0.3-0.8c0-0.1-0.1-0.1-0.1,0l-0.3,0.8c0,0.1-0.1,0.1-0.2,0.2l-0.9,0c-0.1,0-0.1,0,0,0.1l0.7,0.5c0.1,0.1,0.1,0.2,0.1,0.2l-0.3,0.8c0,0.1,0,0.1,0.1,0.1L14.9,31.7z\"/><path opacity=\"0.75\" fill=\"#29363E\" d=\"M20.5,35c0.1-0.1,0.3-0.1,0.4,0l1,0.7c0.1,0.1,0.2,0,0.1-0.1l-0.4-1.2c0-0.1,0-0.3,0.1-0.3l1-0.7c0.1-0.1,0.1-0.1,0-0.1l-1.2,0c-0.1,0-0.3-0.1-0.3-0.2l-0.4-1.2c0-0.1-0.1-0.1-0.1,0L20.2,33c0,0.1-0.2,0.2-0.3,0.2l-1.2,0c-0.1,0-0.1,0.1,0,0.1l1,0.7c0.1,0.1,0.1,0.2,0.1,0.3l-0.4,1.2c0,0.1,0,0.2,0.1,0.1L20.5,35z\"/><path opacity=\"0.25\" fill=\"#29363E\" d=\"M24,20.8c0.1,0,0.2,0,0.2,0l0.6,0.4c0.1,0,0.1,0,0.1-0.1l-0.2-0.7c0-0.1,0-0.2,0.1-0.2l0.6-0.4c0.1,0,0-0.1,0-0.1l-0.7,0c-0.1,0-0.2-0.1-0.2-0.1l-0.2-0.7c0-0.1-0.1-0.1-0.1,0l-0.2,0.7c0,0.1-0.1,0.1-0.2,0.1l-0.7,0c-0.1,0-0.1,0,0,0.1l0.6,0.4c0.1,0,0.1,0.1,0.1,0.2l-0.2,0.7c0,0.1,0,0.1,0.1,0.1L24,20.8z\"/><path fill=\"#29363E\" d=\"M25.5,27.7l0.3-0.8c-0.8,0.6-1.7,1-2.6,1.2l1.7,0C25.1,28.1,25.4,27.9,25.5,27.7z\"/><path fill=\"#29363E\" d=\"M22.5,28.4c-0.1-0.1-0.1-0.1-0.1-0.1c-1.9,0.2-3.9-0.4-5.4-1.9c-2.6-2.6-2.6-6.8,0-9.4c2.6-2.6,6.8-2.6,9.4,0c1.8,1.8,2.4,4.5,1.6,6.8l1.3,0c0.2,0,0.5-0.2,0.5-0.4l0.5-1.4c0.1-2.3-0.8-4.7-2.5-6.4c-3.4-3.4-8.9-3.4-12.3,0c-3.4,3.4-3.4,8.9,0,12.3c2.4,2.4,5.9,3.1,8.9,2.1c0,0,0,0-0.1-0.1L22.5,28.4z\"/><path fill=\"#29363E\" d=\"M27.6,28c0.1-0.1,0.2-0.1,0.2-0.2c0.4-0.4,0.7-0.8,1-1.2L29,26c0.1-0.2,0-0.5-0.2-0.6l-1.1-0.8c-0.2,0.5-0.6,1-1,1.4l0.6,1.7C27.3,27.8,27.4,27.9,27.6,28z\"/><path fill=\"#29363E\" d=\"M36.4,32.8l-4.3-4.3c-0.6-0.6-1.6-0.7-2.3-0.4l0.4,0c0.2,0,0.3,0.1,0.1,0.3l-1.9,1.4c-0.2,0.1-0.3,0.4-0.2,0.7l0.6,1.8l4.1,4.1c0.8,0.8,2.1,0.8,2.9,0l0.7-0.7C37.2,34.9,37.2,33.6,36.4,32.8z\"/></g></svg>",
|
|
117
|
+
"globe": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25.86,37.19a14.53,14.53,0,0,1-8.31-2.75V40H34.18V34.44A14.54,14.54,0,0,1,25.86,37.19Z\" fill=\"#484f60\"/><path d=\"M25.81,36a12.39,12.39,0,0,1-12-9.41l0-.13L15,24.83l.11.65A10.92,10.92,0,1,0,21.22,13.7l-.21.1-.87-1.24.3-.14a12.14,12.14,0,0,1,5.37-1.24,12.42,12.42,0,1,1,0,24.83Z\" fill=\"#484f60\"/><polygon points=\"19.48 13.58 18.1 17.41 14.21 18.59 17.42 21.09 17.34 25.15 20.71 22.86 24.55 24.2 23.42 20.29 25.86 17.05 21.8 16.92 19.48 13.58\" fill=\"#484f60\"/><polygon points=\"11.9 14.69 13.84 14.34 15.27 15.68 15.54 13.73 17.26 12.79 15.49 11.93 15.12 10 13.76 11.42 11.81 11.17 12.74 12.91 11.9 14.69\" fill=\"#484f60\"/><polygon points=\"15.02 21.84 13.82 22.23 12.79 21.49 12.78 22.75 11.77 23.5 12.96 23.9 13.36 25.09 14.11 24.08 15.37 24.07 14.63 23.05 15.02 21.84\" fill=\"#484f60\"/><path d=\"M33.27,29.27l-.74-.56a8.46,8.46,0,0,0-2.36-12.35l.48-.8a9.32,9.32,0,0,1,4.54,8A9.23,9.23,0,0,1,33.27,29.27Z\" fill=\"#484f60\"/><rect x=\"14.36\" y=\"38\" width=\"23\" height=\"2\" fill=\"#484f60\"/></svg>",
|
|
118
|
+
"greater_than": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M18.63,13.81l14.65,9.58a.48.48,0,0,1,.23.42v2.38a.48.48,0,0,1-.23.42L18.63,36.19a.5.5,0,0,1-.69-.14L16.57,34a.49.49,0,0,1,.15-.69l12-7.84a.5.5,0,0,0,0-.84l-12-7.84a.49.49,0,0,1-.15-.69L17.94,14A.5.5,0,0,1,18.63,13.81Z\" fill=\"#484f60\"/></svg>",
|
|
119
|
+
"groupby": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"10\" y=\"11.17\" width=\"8\" height=\"3\" fill=\"#484f60\"/><rect x=\"10\" y=\"26.17\" width=\"8\" height=\"3\" fill=\"#484f60\"/><rect x=\"22\" y=\"11.17\" width=\"8\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"22\" y=\"16.17\" width=\"8\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"22\" y=\"21.17\" width=\"8\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"22\" y=\"26.17\" width=\"8\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"22\" y=\"31.17\" width=\"8\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"32\" y=\"11.17\" width=\"8\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"32\" y=\"16.17\" width=\"8\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"32\" y=\"21.17\" width=\"8\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"32\" y=\"26.17\" width=\"8\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"32\" y=\"31.17\" width=\"8\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"22\" y=\"36.17\" width=\"8\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"32\" y=\"36.17\" width=\"8\" height=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"19.5\" y=\"11.17\" width=\"1\" height=\"28\" fill=\"#484f60\"/></svg>",
|
|
120
|
+
"hamburger": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"14\" y=\"15.17\" width=\"22\" height=\"4\" fill=\"#484f60\"/><rect x=\"14\" y=\"23.17\" width=\"22\" height=\"4\" fill=\"#484f60\"/><rect x=\"14\" y=\"31.17\" width=\"22\" height=\"4\" fill=\"#484f60\"/></svg>",
|
|
121
|
+
"hand_pointer": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M24.16,20.4,23,19.8l-2-3.19-1.56-2-.82-1.08-1.93-2L14,10H12.58l-.89.89L12.21,12l3.11,2.79L16,16.34l2.15,3.42,1,2.86.08.93.11,3-.3-1.08-1.22-1.19-1-1.22-2.22-2.23-1.34-.44-1.11.29-.89.78L13,23.29l2,2.49,2.71,4.71L20.45,33l2.3,1.45,3.08,1.33,2.41,1.27,2.53,1.3.3,1.63,7.61-7.57V31.27S37.53,30,37.42,30a20.15,20.15,0,0,1-1-2.08l-.6-2.42-.44-1.22-1.67-2.12-1.08-1.41-.63-1-1.12-1.45-1-1-1.68-1.09-.27.54,1.75,2.68-1.18-.59-1.09-1.87-1.69-1.75L24.35,15l0,.76L27,19.65l-1.19-.6L23.5,15.39,22,14.3l-1.63.15.22.71Z\" fill=\"#484f60\"/></svg>",
|
|
122
|
+
"hbarchart": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"14\" y=\"13.17\" width=\"26\" height=\"4\" fill=\"#484f60\"/><rect x=\"14\" y=\"21.17\" width=\"15\" height=\"4\" fill=\"#484f60\"/><rect x=\"14\" y=\"29.17\" width=\"21\" height=\"4\" fill=\"#484f60\"/><path d=\"M11,12.17v25H40v1H10v-26Z\" fill=\"#484f60\"/></svg>",
|
|
123
|
+
"Home": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M35.09,36.39H14.81v-11H10L25,13.61l2.73,2V14.06H32V19l8,6.43H35.09ZM16.25,35h17.4v-11h2.26l-5.37-4.3V15.49H29.16v3L25,15.42,14.16,23.94h2.09Z\" fill=\"#484f60\"/></svg>",
|
|
124
|
+
"home_circle": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 50 50\" enable-background=\"new 0 0 50 50\" ><g><path d=\"M32,33H17.9V25.36H14.55L25,17.18l1.89,1.42V17.49h3v3.4l5.58,4.47H32ZM18.9,32H31V24.36h1.58l-3.74-3V18.49h-1v2.1L25,18.44l-7.55,5.92H18.9Z\" fill=\"#484f60\"/><path d=\"M25,11.17a14,14,0,1,1-14,14,14,14,0,0,1,14-14m0-1a15,15,0,1,0,15,15,15,15,0,0,0-15-15Z\" fill=\"#484f60\"/></g></svg>",
|
|
125
|
+
"home_open": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 51 51\" enable-background=\"new 0 0 51 51\" ><path fill=\"#484F5F\" d=\"M35.6,36.9H15.3v-11h-4.8l15-11.8l2.7,2v-1.6h4.3v4.9l8,6.4h-4.9V36.9z M16.7,35.5h17.4v-11h2.3L31,20.1V16h-1.4v3l-4.1-3.1l-10.9,8.5h2.1V35.5z\"/></svg>",
|
|
126
|
+
"home_round_open": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 50 50\" enable-background=\"new 0 0 50 50\" ><g><path fill=\"#29363E\" d=\"M32,32.9H17.9v-7.7h-3.3L25,17l1.9,1.4v-1.1h3v3.4l5.6,4.5H32V32.9z M18.9,31.9H31v-7.7h1.6l-3.7-3v-2.9h-1v2.1L25,18.3l-7.6,5.9h1.5V31.9z\"/><path fill=\"#29363E\" d=\"M25,11c7.7,0,14,6.3,14,14s-6.3,14-14,14s-14-6.3-14-14S17.3,11,25,11 M25,10c-8.3,0-15,6.7-15,15c0,8.3,6.7,15,15,15c8.3,0,15-6.7,15-15C40,16.7,33.3,10,25,10L25,10z\"/></g></svg>",
|
|
127
|
+
"hourglass": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M15.57,10c0,.31,5.35,1.2,9.43,1.19s9.43-.88,9.43-1.19v1.3c0,.31-5.5,1.17-9.43,1.19s-9.43-.88-9.43-1.19Z\" fill=\"#484f60\"/><path d=\"M26.65,25.26h-3.3l-5.64,11c0-.16.77.16,2.17.49C20.94,34,23.53,32,25,32c1.26,0,4,2,5.1,4.79,1.41-.34,2.19-.68,2.19-.52Z\" fill=\"#484f60\"/><path d=\"M34.43,38.53c0-.31-5.35,1.47-9.43,1.47-5.32,0-9.43-1.78-9.43-1.47v-1.3A31.69,31.69,0,0,0,25,38.7a44.9,44.9,0,0,0,9.43-1.47Z\" fill=\"#484f60\"/><path d=\"M25,13.81c-4.56,0-7.29-.56-7.29-.87l5.64,11h3.3l5.64-11C32.29,13.25,29.56,13.84,25,13.81Zm.84,8.79H24.16l-2-3.9A4.7,4.7,0,0,1,25,17.37a4.85,4.85,0,0,1,2.84,1.33Z\" fill=\"#484f60\"/></svg>",
|
|
128
|
+
"icon_3d": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"11.6 27.71 11.31 26.44 11.31 29.44 12.19 29.36 12.19 27.23 11.6 27.71\" fill=\"#484f60\" opacity=\"0.5\"/><g opacity=\"0.5\"><path d=\"M22.28,14.36v.16l-.77-.09-2.82.23v.26l-1.33-.14L14.79,15v.1L14.25,15l-2.94.25v6a5.59,5.59,0,0,1,.54-.35,7.46,7.46,0,0,1,1.1-.53v-5l1.84-.15v4.63a9.24,9.24,0,0,1,.92-.11l.49,0,.18,0V15.15L18.69,15V20.3a4.83,4.83,0,0,1,1.34.87l.2.2V14.83l2.05-.17v4.86l.94-.25.55-.14V14.54l3-.25-1.45-.18Z\" fill=\"#484f60\"/><path d=\"M31.47,13.58,26.91,14v4.65h0l1.39-.13V14.16l4.48-.37Z\" fill=\"#484f60\"/></g><path d=\"M34.3,14.11c0-2.13-1.47-2.51-3.17-2.84C32.6,11.6,33,13.07,33,14.4v4.14c0,.44.94.47,1.32.61,0-1.68,0-3.36,0-5\" fill=\"#484f60\" opacity=\"0.5\"/><path d=\"M22.22,19.54l.06,0V14.36l3-.25v4.72l.27,0c.42-.07.86-.12,1.32-.17V14l4.56-.39v4.93a13.65,13.65,0,0,1,1.37.2l.15,0V14c0-.1,0-.2,0-.3a2.89,2.89,0,0,0,0-.29l-.06-.28a2,2,0,0,0-.08-.26,1.89,1.89,0,0,0-.11-.25l-.12-.24-.15-.21-.16-.2-.18-.17-.19-.15-.2-.13-.22-.1-.19-.06-.21-.05-.21,0h-.33l-19,2.05-.17,0-.16.06-.15.07-.15.1-.13.11a.8.8,0,0,0-.13.13,1.58,1.58,0,0,0-.12.15l-.12.16-.09.17-.09.19a1.67,1.67,0,0,0-.08.2,1.42,1.42,0,0,0-.07.22,1.29,1.29,0,0,0,0,.21,1.57,1.57,0,0,0,0,.23,1.64,1.64,0,0,0,0,.23,1.93,1.93,0,0,0,0,.24V29a5.8,5.8,0,0,0,0,.48,1.7,1.7,0,0,0,0,.22,1.42,1.42,0,0,0,0,.22,1.72,1.72,0,0,0,.07.21,1.19,1.19,0,0,0,.08.2l.09.19.09.17.12.17a2.4,2.4,0,0,0,.25.27,1.42,1.42,0,0,0,.13.12l.15.09.15.08.16.05a.76.76,0,0,0,.16,0l.62.07v-2l-.88-.08v-3l-1-4.31.61-.54c.11-.09.23-.19.36-.28v-6L14.25,15v5h0l.54-.1V15l2.57-.21V19.9c.25.05.5.1.74.17a4.24,4.24,0,0,1,.59.23V14.66l2.82-.23v5.36Z\" fill=\"#484f60\"/><path d=\"M17.23,34.77A4.68,4.68,0,0,1,14.41,34,3.81,3.81,0,0,0,12,33.86a5.92,5.92,0,0,0,2.41,1,12.74,12.74,0,0,0,2.78-.14\" fill=\"#484f60\" opacity=\"0.5\"/><path d=\"M15.51,24.22a4.44,4.44,0,0,0-3.07,1.05l1.87.13c.3,0,1.15-.66,1.48-.78a3.85,3.85,0,0,1,1.57-.23l-1.85-.17\" fill=\"#484f60\" opacity=\"0.5\"/><path d=\"M22.53,32.88a3.92,3.92,0,0,0-3-3.81c.85-.67,1.69-1,2.16-2.1a4.88,4.88,0,0,0,.33-1.81c-.12-3.08-2.51-3.56-5-3.95a3.8,3.8,0,0,1,3.27,3.52,4.42,4.42,0,0,1-.79,3,9.21,9.21,0,0,1-1.74,1.36,4.1,4.1,0,0,1,3,4.13,4.66,4.66,0,0,1-4,4.71c2-.32,4.16-.61,5.19-2.55a4.82,4.82,0,0,0,.55-2.47\" fill=\"#484f60\" opacity=\"0.5\"/><path d=\"M29,23.45l.36-.06.45-.06.55,0h.71l.35,0,.33.05c-.19,0-.41-.08-1.49-.24l-.35-.05-.35,0h-.73l-.56,0-.47,0-.37.07-.28.08V35.35h2.11l.19,0h.2l.19,0h0l1.47-.22h0l-.33,0-.31,0H30l-.33,0-.35,0-.31,0-.27,0V23.52Z\" fill=\"#484f60\" opacity=\"0.5\"/><path d=\"M40,28.65a8.62,8.62,0,0,0-2.82-6.76,10.46,10.46,0,0,0-4.25-1.77c4.16,1.08,5.93,5.06,5.83,9.09-.11,4.27-2.16,8.13-6.53,9.19,2.47-.6,4.78-1.35,6.21-3.6A11.38,11.38,0,0,0,40,28.65\" fill=\"#484f60\" opacity=\"0.5\"/><path d=\"M35.6,21.39a6.92,6.92,0,0,1,1.3,1.24,8.42,8.42,0,0,1,1,1.65,9.38,9.38,0,0,1,.64,2.06,12.54,12.54,0,0,1,.23,2.46,14.5,14.5,0,0,1-.24,2.65,10.69,10.69,0,0,1-.65,2.2,9.15,9.15,0,0,1-1,1.75,7.52,7.52,0,0,1-1.22,1.34,7.41,7.41,0,0,1-1.62,1,9.44,9.44,0,0,1-1.92.66,13.09,13.09,0,0,1-2.15.31,18.15,18.15,0,0,1-2.33,0c-.48,0-.92-.07-1.33-.12s-.78-.08-1.11-.13l-.92-.15-.72-.15V20.58c.32-.09.66-.17,1-.24s.77-.15,1.18-.21L27.07,20c.45,0,.9-.09,1.37-.12a18.53,18.53,0,0,1,2.21,0,11.1,11.1,0,0,1,1.91.23,7.4,7.4,0,0,1,1.63.52A6.87,6.87,0,0,1,35.6,21.39Zm-7.1,14.1a6.3,6.3,0,0,0,2.34-.3A4.65,4.65,0,0,0,32.69,34,5.37,5.37,0,0,0,33.9,32a9.49,9.49,0,0,0,.43-3,8.41,8.41,0,0,0-.4-2.71,4.86,4.86,0,0,0-1.12-1.88,4.35,4.35,0,0,0-1.74-1.05,6.42,6.42,0,0,0-2.24-.26l-.56,0-.47,0-.37.07-.28.08V35.35l.27.06.32,0,.35,0,.35,0h.06\" fill=\"#484f60\"/><path d=\"M15.8,21.16a5.16,5.16,0,0,1,1.89.21,3.65,3.65,0,0,1,1.42.8,3.5,3.5,0,0,1,.9,1.29,4.29,4.29,0,0,1,.31,1.62,5.2,5.2,0,0,1-.16,1.27,4.24,4.24,0,0,1-.48,1.11,4,4,0,0,1-.8.9,4.57,4.57,0,0,1-1.11.65v0a3.53,3.53,0,0,1,1.17.48,3.76,3.76,0,0,1,1,.87,4.45,4.45,0,0,1,.66,1.24,5,5,0,0,1,.24,1.54,5.15,5.15,0,0,1-.4,2,4.38,4.38,0,0,1-1.15,1.57,4.81,4.81,0,0,1-1.76,1,6.42,6.42,0,0,1-2.28.22A8.17,8.17,0,0,1,13,37.48a8.9,8.9,0,0,1-.87-.41,4.33,4.33,0,0,1-.65-.45L12,33.86a4.33,4.33,0,0,0,.5.33,7.59,7.59,0,0,0,.7.35,5.17,5.17,0,0,0,.84.28A4.55,4.55,0,0,0,15,35a3.37,3.37,0,0,0,1-.12,2.16,2.16,0,0,0,.76-.43,1.89,1.89,0,0,0,.47-.68,2.34,2.34,0,0,0,.15-.85,2.38,2.38,0,0,0-.23-1.07,2.1,2.1,0,0,0-.6-.75,2.65,2.65,0,0,0-.85-.44,3.93,3.93,0,0,0-1-.15H13.55V27.79h1.16a3.58,3.58,0,0,0,.79-.11,2.89,2.89,0,0,0,.76-.34,1.7,1.7,0,0,0,.56-.6,1.74,1.74,0,0,0,.23-.88,1.92,1.92,0,0,0-.12-.69,1.45,1.45,0,0,0-1-.86,2.56,2.56,0,0,0-.86-.09,3.6,3.6,0,0,0-.79.12,6.06,6.06,0,0,0-.75.27,5.26,5.26,0,0,0-.63.33,3.55,3.55,0,0,0-.48.34l-.6-2.65a4.38,4.38,0,0,1,.69-.49,6.06,6.06,0,0,1,.92-.44,8.33,8.33,0,0,1,2.35-.53Z\" fill=\"#484f60\"/></svg>",
|
|
129
|
+
"id": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M37.43,15.14H12.57A2.57,2.57,0,0,0,10,17.71V32.29a2.57,2.57,0,0,0,2.57,2.57H37.43A2.57,2.57,0,0,0,40,32.29V17.71A2.57,2.57,0,0,0,37.43,15.14Zm-20.1,2.15a3.36,3.36,0,0,1,3.45,3.16A3.71,3.71,0,0,1,17.33,24a3.71,3.71,0,0,1-3.44-3.57A3.36,3.36,0,0,1,17.33,17.29Zm4.12,10.4c0,1.09-1,5-2.24,5H15.46c-1.24,0-2.25-3.93-2.25-5l-1.5-1.83A2.49,2.49,0,0,1,14,23.47h.28a4.37,4.37,0,0,0,3.09,2.13,4.39,4.39,0,0,0,3.1-2.13h.27A2.49,2.49,0,0,1,23,25.86Zm16.41,5H25V31.28H37.86Zm0-2.85H25V28.43H37.86Zm0-2.86H25V25.57H37.86Zm0-5.71H25V19.86H37.86Z\" fill=\"#484f60\"/></svg>",
|
|
130
|
+
"image": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M39.17,12.2H36.43L41,16.77V14A1.83,1.83,0,0,0,39.17,12.2Z\" fill=\"#484f60\"/><path d=\"M34.6,12.2H10.83A1.83,1.83,0,0,0,9,14V36a1.83,1.83,0,0,0,1.83,1.83H39.17A1.83,1.83,0,0,0,41,36V18.6Zm5,23.77a.47.47,0,0,1-.46.46H10.83a.47.47,0,0,1-.46-.46V14a.47.47,0,0,1,.46-.46H34l5.6,5.6Z\" fill=\"#484f60\"/><polygon points=\"24.91 17.96 18.14 29.11 20.89 29.11 26.19 19.61 24.91 17.96\" fill=\"#484f60\"/><path d=\"M36.43,30.49c0,2-1.64,4.57-3.66,4.57H17.23c-2,0-3.66-2.56-3.66-4.57Z\" fill=\"#484f60\"/><polygon points=\"22.71 29.11 30.03 16.31 36.43 29.11 22.71 29.11\" fill=\"#484f60\"/><path d=\"M17.23,18.37a2.06,2.06,0,1,1-2.06-2.06A2.06,2.06,0,0,1,17.23,18.37Z\" fill=\"#484f60\"/></svg>",
|
|
131
|
+
"incoming_storage": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"25 25.16 17.62 17.79 17.62 22.38 10 22.38 10 27.96 17.62 27.96 17.62 32.55 25 25.16\" fill=\"#484f60\"/><polygon points=\"20 32.29 20 37.97 22.93 37.97 22.93 29.36 20 32.29\" fill=\"#484f60\" opacity=\"0.5\"/><polygon points=\"22.93 12.36 20 12.36 20 18.05 22.93 20.97 22.93 12.36\" fill=\"#484f60\" opacity=\"0.5\"/><rect x=\"24.39\" y=\"30.65\" width=\"11.22\" height=\"1.46\" fill=\"#484f60\" opacity=\"0.5\"/><polygon points=\"35.61 21.88 24.39 21.88 24.39 22.44 25.29 23.34 35.61 23.34 35.61 21.88\" fill=\"#484f60\" opacity=\"0.5\"/><rect x=\"37.07\" y=\"12.36\" width=\"2.93\" height=\"25.61\" fill=\"#484f60\" opacity=\"0.5\"/><rect x=\"24.39\" y=\"13.09\" width=\"11.22\" height=\"1.46\" fill=\"#484f60\" opacity=\"0.5\"/></svg>",
|
|
132
|
+
"information": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25.05,16.67a2,2,0,0,1,2,2,1.92,1.92,0,0,1-.58,1.41,2,2,0,0,1-1.42.59,2,2,0,0,1-2-2,2,2,0,0,1,.58-1.42A1.92,1.92,0,0,1,25.05,16.67Z\" fill=\"#484f60\"/><rect x=\"22.95\" y=\"23.67\" width=\"4\" height=\"10\" fill=\"#484f60\"/></svg>",
|
|
133
|
+
"information_round_open": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><path d=\"M298,407.5a14,14,0,1,1-14,14,14,14,0,0,1,14-14m0-1a15,15,0,1,0,15,15,15,15,0,0,0-15-15h0Z\" transform=\"translate(-272.5 -396)\" fill=\"#fff\"/><path d=\"M298.1,413a2,2,0,1,1-1.4.6A1.9,1.9,0,0,1,298.1,413Z\" transform=\"translate(-272.5 -396)\" fill=\"#fff\"/><rect x=\"23.4\" y=\"24\" width=\"4\" height=\"10\" fill=\"#fff\"/></svg>",
|
|
134
|
+
"input_multiplechoice": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"18\" y=\"15.17\" width=\"22\" height=\"4\" fill=\"#484f60\"/><rect x=\"18\" y=\"23.17\" width=\"22\" height=\"4\" fill=\"#484f60\"/><rect x=\"18\" y=\"31.17\" width=\"22\" height=\"4\" fill=\"#484f60\"/><circle cx=\"13\" cy=\"17.17\" r=\"3\" fill=\"#484f60\"/><circle cx=\"13\" cy=\"25.17\" r=\"3\" fill=\"#484f60\"/><circle cx=\"13\" cy=\"33.17\" r=\"3\" fill=\"#484f60\"/></svg>",
|
|
135
|
+
"input_text": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"10\" y=\"19.17\" width=\"30\" height=\"4\" fill=\"#484f60\"/><rect x=\"10\" y=\"27.17\" width=\"20\" height=\"4\" fill=\"#484f60\"/></svg>",
|
|
136
|
+
"input_textarea": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"10\" y=\"11.17\" width=\"30\" height=\"4\" fill=\"#484f60\"/><rect x=\"10\" y=\"19.17\" width=\"30\" height=\"4\" fill=\"#484f60\"/><rect x=\"10\" y=\"27.17\" width=\"30\" height=\"4\" fill=\"#484f60\"/><rect x=\"10\" y=\"35.17\" width=\"20\" height=\"4\" fill=\"#484f60\"/></svg>",
|
|
137
|
+
"inventory": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"26.41 31.89 30.72 29.4 35.03 31.88 30.73 34.38 26.41 31.89\" fill=\"#484f60\" opacity=\"0.75\"/><polygon points=\"31.19 35.17 35.49 32.68 35.5 37.65 31.2 40.15 31.19 35.17\" fill=\"#484f60\" opacity=\"0.5\"/><polygon points=\"25.96 37.67 25.96 32.69 30.27 35.17 30.28 40.15 25.96 37.67\" fill=\"#484f60\" opacity=\"0.25\"/><polygon points=\"15.96 31.91 20.26 29.42 24.57 31.9 20.27 34.39 15.96 31.91\" fill=\"#484f60\" opacity=\"0.75\"/><polygon points=\"20.73 35.19 25.03 32.7 25.04 37.67 20.74 40.16 20.73 35.19\" fill=\"#484f60\" opacity=\"0.5\"/><polygon points=\"15.51 37.69 15.5 32.71 19.81 35.19 19.82 40.17 15.51 37.69\" fill=\"#484f60\" opacity=\"0.25\"/><polygon points=\"26.43 20.9 26.43 21.7 23.15 21.7 21.17 22.85 25.48 25.33 29.79 22.83 26.43 20.9\" fill=\"#484f60\" opacity=\"0.75\"/><polygon points=\"25.94 26.12 30.25 23.63 30.26 28.6 25.95 31.1 25.94 26.12\" fill=\"#484f60\" opacity=\"0.5\"/><polygon points=\"20.72 28.62 20.71 23.65 25.02 26.13 25.03 31.1 20.72 28.62\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"31\" y=\"10.17\" width=\"1.5\" height=\"10\" fill=\"#484f60\"/><rect x=\"38\" y=\"10.17\" width=\"1.5\" height=\"10\" fill=\"#484f60\"/><rect x=\"34.5\" y=\"10.17\" width=\"1.5\" height=\"10\" fill=\"#484f60\"/><polygon points=\"14.43 10.2 12.93 10.2 12.93 16.47 14.43 15.65 14.43 10.2\" fill=\"#484f60\"/><polygon points=\"14.43 19.64 13.39 20.2 14.43 20.2 14.43 19.64\" fill=\"#484f60\"/><polygon points=\"23.43 10.2 23.43 10.76 24.46 10.2 23.43 10.2\" fill=\"#484f60\"/><polygon points=\"23.43 14.75 23.43 20.2 24.93 20.2 24.93 13.93 23.43 14.75\" fill=\"#484f60\"/><polygon points=\"21.43 10.2 19.93 10.2 19.93 12.66 21.43 11.85 21.43 10.2\" fill=\"#484f60\"/><polygon points=\"19.93 16.65 19.93 20.2 21.43 20.2 21.43 15.83 19.93 16.65\" fill=\"#484f60\"/><polygon points=\"16.43 18.55 16.43 20.2 17.93 20.2 17.93 17.74 16.43 18.55\" fill=\"#484f60\"/><polygon points=\"17.93 10.2 16.43 10.2 16.43 14.57 17.93 13.75 17.93 10.2\" fill=\"#484f60\"/><polygon points=\"11.24 20.23 10.5 18.93 26.62 10.17 27.36 11.47 11.24 20.23\" fill=\"#484f60\"/></svg>",
|
|
138
|
+
"invoice": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M14.5,25V12a.5.5,0,0,1,.5-.5H28.73V10H15a2,2,0,0,0-2,2V26.53A9.56,9.56,0,0,1,14.5,25Z\" fill=\"#484f60\"/><path d=\"M35.5,18.49V38a.5.5,0,0,1-.5.5H27.73A10,10,0,0,1,26.11,40H35a2,2,0,0,0,2-2V18.49Z\" fill=\"#484f60\"/><path d=\"M28.73,10v6.44c0,1.78.27,2,2.05,2H37Z\" fill=\"#484f60\"/><rect x=\"17.5\" y=\"17.5\" width=\"6\" height=\"1\" fill=\"#484f60\"/><rect x=\"17.5\" y=\"21.5\" width=\"10\" height=\"1\" fill=\"#484f60\"/><rect x=\"17.5\" y=\"14.5\" width=\"6\" height=\"1\" fill=\"#484f60\"/><rect x=\"29.5\" y=\"21.5\" width=\"3\" height=\"1\" fill=\"#484f60\"/><rect x=\"29.5\" y=\"25.5\" width=\"3\" height=\"1\" fill=\"#484f60\"/><rect x=\"29.5\" y=\"29.5\" width=\"3\" height=\"1\" fill=\"#484f60\"/><path d=\"M32.8,33.1a.51.51,0,0,0-.7.1l-.56.72-1.4-.4a.54.54,0,0,0-.22,0,9.59,9.59,0,0,1-.34,1.61l.57-.57,1.44.42a.49.49,0,0,0,.54-.18l.77-1A.51.51,0,0,0,32.8,33.1Z\" fill=\"#484f60\"/><path d=\"M23.06,25.45a7.5,7.5,0,1,0,4.49,9.61A7.5,7.5,0,0,0,23.06,25.45ZM18.11,39.08a7,7,0,1,1,9-4.19A7,7,0,0,1,18.11,39.08Z\" fill=\"#484f60\"/><path d=\"M22.93,38l2.95-8.12a6.3,6.3,0,0,0-.81-1.24l-3.56,9.79A6.46,6.46,0,0,0,22.93,38Z\" fill=\"#484f60\"/><path d=\"M20.78,38.49l3.78-10.4a6.08,6.08,0,0,0-1-.74l-4,11.06A5.79,5.79,0,0,0,20.78,38.49Z\" fill=\"#484f60\"/><path d=\"M26.14,34.55a6.06,6.06,0,0,0,.11-3.76L23.8,37.5A6,6,0,0,0,26.14,34.55Z\" fill=\"#484f60\"/><path d=\"M22.55,26.86a6,6,0,1,0-4.1,11.28l.44.13L23,27Zm-4,8.4-1.3-.47,1.29-3.55.23-.57L19,30l-.6.26-.91.31-.34-1,2.54-.85,1.07.38Z\" fill=\"#484f60\"/></svg>",
|
|
139
|
+
"ione_logo": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 77 15\"><path d=\"M.29,11V.22h1V11Z\" fill=\"#fff\"/><path d=\"M22.11,15a6.93,6.93,0,0,1-5.22-2.18A7.32,7.32,0,0,1,14.78,7.5a7.36,7.36,0,0,1,2.11-5.33A7,7,0,0,1,22.11,0a7,7,0,0,1,5.22,2.17A7.36,7.36,0,0,1,29.44,7.5a7.32,7.32,0,0,1-2.11,5.32A6.93,6.93,0,0,1,22.11,15Zm0-14.08a5.86,5.86,0,0,0-4.48,1.9A6.61,6.61,0,0,0,15.85,7.5a6.53,6.53,0,0,0,1.79,4.66,5.86,5.86,0,0,0,4.48,1.9,5.84,5.84,0,0,0,4.47-1.9A6.56,6.56,0,0,0,28.37,7.5a6.64,6.64,0,0,0-1.78-4.68A5.84,5.84,0,0,0,22.12.92Z\" fill=\"#fff\"/><path d=\"M42.89,14.78V.13h.5l9.55,11c.34.39.66.77,1,1.16l.46.59c0-.36,0-1.06,0-2.11V.22h1V14.87h-.49L45.11,3.7,43.88,2.2c0,.3,0,1,0,2.1V14.78Z\" fill=\"#fff\"/><path d=\"M69.69,14.78V.22h6.79v.9H70.72V6.41h5.2v.88h-5.2v6.54h6v.95Z\" fill=\"#fff\"/></svg>",
|
|
140
|
+
"ione_logo_fat": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 142 31.96\"><title>iOne logo fattened</title><rect y=\"0.4\" width=\"6.93\" height=\"24.46\" fill=\"#fff\"/><path d=\"M90.33,55.77A15,15,0,0,1,79.15,51.1a15.67,15.67,0,0,1-4.5-11.31,15.7,15.7,0,0,1,4.5-11.31,15.72,15.72,0,0,1,22.36,0A15.7,15.7,0,0,1,106,39.79a15.67,15.67,0,0,1-4.5,11.31A15,15,0,0,1,90.33,55.77Zm0-25.23a8.14,8.14,0,0,0-6.18,2.61,9.38,9.38,0,0,0-2.51,6.64,9.33,9.33,0,0,0,2.5,6.62,8.64,8.64,0,0,0,12.35,0A9.39,9.39,0,0,0,99,39.79a9.43,9.43,0,0,0-2.49-6.64A8.08,8.08,0,0,0,90.35,30.54Z\" transform=\"translate(-48.7 -23.81)\" fill=\"#fff\"/><polygon points=\"99.13 31.72 83.26 13.5 83.26 31.55 76.33 31.55 76.33 0.24 80.92 0.24 96.79 18.5 96.79 0.4 103.71 0.4 103.71 31.72 99.13 31.72\" fill=\"#fff\"/><polygon points=\"124.35 31.55 124.35 0.4 141.6 0.4 141.6 7.09 131.27 7.09 131.27 11.49 140.59 11.49 140.59 18.14 131.27 18.14 131.27 24.79 142 24.79 142 31.55 124.35 31.55\" fill=\"#fff\"/></svg>",
|
|
141
|
+
"ione_status_next": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 50 50\" enable-background=\"new 0 0 50 50\" ><g display=\"none\"></g><g ><g ><g><polygon fill=\"#484F60\" points=\"35,20 25.2,10.2 25.2,16.3 15,16.3 15,23.7 25.2,23.7 25.2,29.8 \"/><circle opacity=\"0.25\" fill=\"#484F60\" cx=\"12.5\" cy=\"37.3\" r=\"2.5\"/><circle fill=\"#484F60\" cx=\"25\" cy=\"37.3\" r=\"2.5\"/><circle opacity=\"0.75\" fill=\"#484F60\" cx=\"37.5\" cy=\"37.3\" r=\"2.5\"/><rect x=\"16\" y=\"36.8\" opacity=\"0.25\" fill=\"#484F60\" width=\"5.5\" height=\"1\"/><rect x=\"28.5\" y=\"36.8\" opacity=\"0.75\" fill=\"#484F60\" width=\"5.5\" height=\"1\"/></g></g><g display=\"none\"></g></g><g display=\"none\"></g><g display=\"none\"></g><g display=\"none\"></g><g display=\"none\"></g><g display=\"none\"><g display=\"inline\"><rect y=\"50\" opacity=\"0.25\" fill=\"#FFFFFF\" width=\"50\" height=\"50\"/></g><g display=\"inline\"></g><g display=\"inline\"><g><rect y=\"0\" opacity=\"0.25\" fill=\"#FFFFFF\" width=\"50\" height=\"50\"/><rect y=\"5\" opacity=\"0.5\" fill=\"none\" width=\"50\" height=\"45\"/><text transform=\"matrix(1 0 0 1 5.0054 12.0999)\"><tspan x=\"0\" y=\"0\" font-family=\"'MyriadPro-Regular'\" font-size=\"10px\">Workflow </tspan><tspan x=\"5.3\" y=\"12\" font-family=\"'MyriadPro-Regular'\" font-size=\"10px\">acties / </tspan><tspan x=\"0.3\" y=\"24\" font-family=\"'MyriadPro-Regular'\" font-size=\"10px\">volgende </tspan><tspan x=\"8.3\" y=\"36\" font-family=\"'MyriadPro-Regular'\" font-size=\"10px\">stap / </tspan></text></g></g></g></svg>",
|
|
142
|
+
"ione_workflow": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 50 50\" enable-background=\"new 0 0 50 50\" ><g display=\"none\"></g><g ><g ><g><g><rect x=\"34.3\" y=\"20\" fill=\"#484F60\" width=\"1.5\" height=\"3.7\"/><g><polygon fill=\"#484F60\" points=\"32,22.8 35,28 38,22.8 \"/></g></g><path fill=\"#484F60\" d=\"M18.5,21.5v7h-7v-7H18.5 M20,20H10v10h10V20L20,20z\"/><path fill=\"#484F60\" d=\"M38.5,11.5v7h-7v-7H38.5 M40,10H30v10h10V10L40,10z\"/><path fill=\"#484F60\" d=\"M38.5,31.5v7h-7v-7H38.5 M40,30H30v10h10V30L40,30z\"/><g><polygon fill=\"#484F60\" points=\"15.8,20 14.3,20 14.3,14.3 23.7,14.3 23.7,15.8 15.8,15.8 \"/><g><polygon fill=\"#484F60\" points=\"22.8,18 28,15 22.8,12 \"/></g></g><g><polygon fill=\"#484F60\" points=\"23.7,35.8 14.3,35.8 14.3,30 15.8,30 15.8,34.3 23.7,34.3 \"/><g><polygon fill=\"#484F60\" points=\"22.8,38 28,35 22.8,32 \"/></g></g></g></g><g display=\"none\"></g></g><g display=\"none\"></g><g display=\"none\"></g><g display=\"none\"></g><g display=\"none\"></g><g display=\"none\"><g display=\"inline\"><rect y=\"50\" opacity=\"0.25\" fill=\"#FFFFFF\" width=\"50\" height=\"50\"/></g><g display=\"inline\"><g><rect y=\"-45\" opacity=\"0.5\" fill=\"none\" width=\"50\" height=\"45\"/><text transform=\"matrix(1 0 0 1 7.375 -37.9002)\"><tspan x=\"0\" y=\"0\" font-family=\"'MyriadPro-Regular'\" font-size=\"10px\">Opmaak </tspan><tspan x=\"5.4\" y=\"12\" font-family=\"'MyriadPro-Regular'\" font-size=\"10px\">item / </tspan><tspan x=\"-1.4\" y=\"24\" font-family=\"'MyriadPro-Regular'\" font-size=\"10px\">structuur </tspan><tspan x=\"8.1\" y=\"36\" font-family=\"'MyriadPro-Regular'\" font-size=\"10px\">item </tspan></text></g></g><g display=\"inline\"><g><rect y=\"0\" opacity=\"0.25\" fill=\"#FFFFFF\" width=\"50\" height=\"50\"/><rect y=\"5\" opacity=\"0.5\" fill=\"none\" width=\"50\" height=\"45\"/><text transform=\"matrix(1 0 0 1 5.0054 12.0999)\" font-family=\"'MyriadPro-Regular'\" font-size=\"10px\">Workflow</text></g></g></g></svg>",
|
|
143
|
+
"keyboard": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"12.65\" y=\"24.43\" width=\"2.65\" height=\"2.65\" fill=\"#484f60\"/><rect x=\"34.71\" y=\"24.43\" width=\"2.65\" height=\"2.65\" fill=\"#484f60\"/><rect x=\"30.29\" y=\"24.43\" width=\"2.65\" height=\"2.65\" fill=\"#484f60\"/><rect x=\"25.88\" y=\"24.43\" width=\"2.65\" height=\"2.65\" fill=\"#484f60\"/><rect x=\"21.47\" y=\"24.43\" width=\"2.65\" height=\"2.65\" fill=\"#484f60\"/><rect x=\"17.06\" y=\"24.43\" width=\"2.65\" height=\"2.65\" fill=\"#484f60\"/><rect x=\"12.65\" y=\"28.84\" width=\"4.41\" height=\"2.65\" fill=\"#484f60\"/><rect x=\"32.06\" y=\"28.84\" width=\"5.29\" height=\"2.65\" fill=\"#484f60\"/><rect x=\"27.65\" y=\"28.84\" width=\"2.65\" height=\"2.65\" fill=\"#484f60\"/><rect x=\"23.24\" y=\"28.84\" width=\"2.65\" height=\"2.65\" fill=\"#484f60\"/><rect x=\"18.82\" y=\"28.84\" width=\"2.65\" height=\"2.65\" fill=\"#484f60\"/><rect x=\"12.65\" y=\"33.26\" width=\"4.41\" height=\"2.65\" fill=\"#484f60\"/><rect x=\"32.06\" y=\"33.26\" width=\"5.29\" height=\"2.65\" fill=\"#484f60\"/><rect x=\"18.82\" y=\"33.26\" width=\"11.47\" height=\"2.65\" fill=\"#484f60\"/><path d=\"M39.12,22.67v15H10.88v-15H39.12m.88-.88H10V38.55H40V21.79Z\" fill=\"#484f60\"/><path d=\"M23.55,22.67c-3-1.46-5.74-2.76-6.26-4.5h0a4.9,4.9,0,0,1-.22-1.62,3.58,3.58,0,0,1,2.31-3.25c2.2-.94,4.48.38,5.93,1.33s2.72,3.64,4.93,2.88a2.65,2.65,0,0,0,1.65-1.39A2.7,2.7,0,0,0,32,13.78a12.94,12.94,0,0,0-.84-2l.65-.33a12.51,12.51,0,0,1,.89,2.1,3.24,3.24,0,0,1-.15,2.74,3.36,3.36,0,0,1-2.12,1.79c-2.58.9-4.12-2-5.6-2.94s-3.4-2.05-5.19-1.28a2.89,2.89,0,0,0-1.86,2.65A4.47,4.47,0,0,0,18,18c.49,1.61,3.09,2.76,5.92,4.13Z\" fill=\"#484f60\"/></svg>",
|
|
144
|
+
"keychain": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25.78,21.66a5.63,5.63,0,1,0-6.34-4.81A5.63,5.63,0,0,0,25.78,21.66ZM22,15.31a2,2,0,1,1,2.29,1.74A2,2,0,0,1,22,15.31Z\" fill=\"#484f60\"/><polyline points=\"30.37 17.82 40 27.42 39.88 29.4 36.45 29.61 35.68 28.85 35.86 26.49 33.31 26.47 33.4 24.02 30.91 24.07 29.88 23.04 28.78 23.24 26.95 21.41\" fill=\"#484f60\"/><path d=\"M17.42,17.13a4.57,4.57,0,0,1-.05-.52l-2,1.47a3.78,3.78,0,0,0-1.55,2L10.09,33.8a3.85,3.85,0,0,0,.32,2.52l.24.43a3.85,3.85,0,0,0,2,1.55l4.21,1.15a3.87,3.87,0,0,0,2.53-.32l.42-.25a3.8,3.8,0,0,0,1.56-2L25,23.76A7.69,7.69,0,0,1,17.42,17.13Zm1.51,19.55-6.63-1.8,3.54-13,6.64,1.8Z\" fill=\"#484f60\"/></svg>",
|
|
145
|
+
"label": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 37.5 50\"><path fill=\"#29363E\" d=\"M32,0A15.3,15.3,0,0,0,21.9,3.7L1.7,21.5a4.6,4.6,0,0,0,0,7.1L21.9,46.3A15.3,15.3,0,0,0,32,50h5.5V0H32Z\"/><circle class=\"cls-circle\" cx=\"21.5\" cy=\"25\" r=\"6.3\"/></svg>",
|
|
146
|
+
"label_round_open": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><path d=\"M307,423.7v-0.4a2.8,2.8,0,0,0-.7-1.7l-7.4-7.4a2.8,2.8,0,0,0-1.7-.7H292a1,1,0,0,0-1,1v5.1a2.8,2.8,0,0,0,.7,1.7l7.4,7.4a2.8,2.8,0,0,0,1.7.7h0.4a2.8,2.8,0,0,0,1.7-.7l3.3-3.3A2.8,2.8,0,0,0,307,423.7Zm-14.3-6.6a1.4,1.4,0,1,1,1.9,0A1.4,1.4,0,0,1,292.7,417.1Zm8.5,10.1-6-6,0.7-.7,6,6Zm1.4-1.4-6-6,0.7-.7,6,6Zm1.4-1.4-6-6,0.7-.7,6,6Z\" transform=\"translate(-272.5 -395)\" fill=\"#fff\"/><path d=\"M298,436a15.5,15.5,0,1,1,15.5-15.5A15.5,15.5,0,0,1,298,436Zm0-30a14.5,14.5,0,1,0,14.5,14.5A14.5,14.5,0,0,0,298,406Z\" transform=\"translate(-272.5 -395)\" fill=\"#fff\"/></svg>",
|
|
147
|
+
"landmark_flag": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path style= \"fill: #484f60\" d=\"M352 0C360.8 0 368 7.164 368 16V80C368 88.84 360.8 96 352 96H272V128H464C481.7 128 496 142.3 496 160C496 177.7 481.7 192 464 192H47.1C30.33 192 15.1 177.7 15.1 160C15.1 142.3 30.33 128 47.1 128H239.1V16C239.1 7.164 247.2 0 255.1 0H352zM63.1 224H127.1V416H167.1V224H231.1V416H280V224H344V416H384V224H448V420.3C448.6 420.6 449.2 420.1 449.8 421.4L497.8 453.4C509.5 461.2 514.7 475.8 510.6 489.3C506.5 502.8 494.1 512 480 512H31.1C17.9 512 5.458 502.8 1.372 489.3C-2.715 475.8 2.515 461.2 14.25 453.4L62.25 421.4C62.82 420.1 63.4 420.6 63.1 420.3V224z\"/></svg>",
|
|
148
|
+
"library": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25,10.47,12.81,18H37.19Zm0,6.3a2.34,2.34,0,1,1,2.34-2.34A2.34,2.34,0,0,1,25,16.77Z\" fill=\"#484f60\"/><rect x=\"13.75\" y=\"21.72\" width=\"1.88\" height=\"10.31\" fill=\"#484f60\"/><rect x=\"13.28\" y=\"20.78\" width=\"2.81\" height=\"0.94\" fill=\"#484f60\"/><rect x=\"12.81\" y=\"32.03\" width=\"3.75\" height=\"0.94\" fill=\"#484f60\"/><rect x=\"12.81\" y=\"19.84\" width=\"3.75\" height=\"0.94\" fill=\"#484f60\"/><rect x=\"27.5\" y=\"21.72\" width=\"1.88\" height=\"10.31\" fill=\"#484f60\"/><rect x=\"27.03\" y=\"20.78\" width=\"2.81\" height=\"0.94\" fill=\"#484f60\"/><rect x=\"26.56\" y=\"32.03\" width=\"3.75\" height=\"0.94\" fill=\"#484f60\"/><rect x=\"26.56\" y=\"19.84\" width=\"3.75\" height=\"0.94\" fill=\"#484f60\"/><rect x=\"20.62\" y=\"21.72\" width=\"1.88\" height=\"10.31\" fill=\"#484f60\"/><rect x=\"20.16\" y=\"20.78\" width=\"2.81\" height=\"0.94\" fill=\"#484f60\"/><rect x=\"19.69\" y=\"32.03\" width=\"3.75\" height=\"0.94\" fill=\"#484f60\"/><rect x=\"19.69\" y=\"19.84\" width=\"3.75\" height=\"0.94\" fill=\"#484f60\"/><rect x=\"34.38\" y=\"21.72\" width=\"1.88\" height=\"10.31\" fill=\"#484f60\"/><rect x=\"33.91\" y=\"20.78\" width=\"2.81\" height=\"0.94\" fill=\"#484f60\"/><rect x=\"33.44\" y=\"32.03\" width=\"3.75\" height=\"0.94\" fill=\"#484f60\"/><rect x=\"33.44\" y=\"19.84\" width=\"3.75\" height=\"0.94\" fill=\"#484f60\"/><rect x=\"10\" y=\"37.66\" width=\"30\" height=\"1.87\" fill=\"#484f60\"/><rect x=\"11.88\" y=\"34.84\" width=\"26.25\" height=\"1.87\" fill=\"#484f60\"/></svg>",
|
|
149
|
+
"linechart": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M11,12.17v25H40v1H10v-26Z\" fill=\"#4c5050\" opacity=\"0.75\"/><polygon points=\"11.76 33.18 11 32.53 15.16 26.48 19.66 24.3 24.26 27.19 28.07 22.25 35.3 19.53 37.01 21.7 38.92 17.28 39.84 17.68 37.26 23.64 34.97 20.72 28.69 23.09 24.5 28.52 19.6 25.44 15.7 27.34 11.76 33.18\" fill=\"#4c5050\"/><polygon points=\"39.84 17.68 37.26 23.64 34.97 20.72 28.69 23.09 24.5 28.52 19.6 25.44 15.7 27.34 11.76 33.18 11 32.53 11 37.17 40 37.17 39.84 17.68\" fill=\"#4c5050\" opacity=\"0.25\"/></svg>",
|
|
150
|
+
"linked_products": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><g opacity=\"0.5\"><path d=\"M20.2,14.71h2.15V26.2l.76-.77V14.71H24.4v9.43l.77-.77V14.71h1.29V22.1l.08-.09,1.29-1.3v-6h1.29v4.71l1.68-1.67a6.28,6.28,0,0,1,.54-.49V14.71h1.29v1.77a7.15,7.15,0,0,1,.77-.29V14.71H36V16a6.71,6.71,0,0,1,1,.21V14.71h1.29v2a6,6,0,0,1,1.31,1l.09.08c.11.11.21.23.31.35v-3a2.57,2.57,0,0,0-2.57-2.57H12.57A2.57,2.57,0,0,0,10,15.14V29.72a2.57,2.57,0,0,0,2.57,2.57h5.95a6.13,6.13,0,0,1,1.68-3.93ZM14.29,30.14H12.15V14.71h2.14Zm2,0H15V14.71h1.29Zm1.28,0V14.71h1.29V30.14Z\" fill=\"#484f60\"/><path d=\"M39.68,26.63,38.29,28v2.11H37v-.83l-2.92,2.92v-.1s-.09.1-.13.16h3.48A2.57,2.57,0,0,0,40,29.72V26.28A3.49,3.49,0,0,1,39.68,26.63Z\" fill=\"#484f60\"/></g><path d=\"M38.62,18.89l-.08-.08a4.73,4.73,0,0,0-6.68,0L27.6,23.07a4.73,4.73,0,0,0,0,6.68l.08.08a3.8,3.8,0,0,0,.48.42l1.56-1.56a2.38,2.38,0,0,1-.51-.39l-.08-.08a2.56,2.56,0,0,1,0-3.62l4.26-4.26a2.56,2.56,0,0,1,3.62,0l.08.08a2.56,2.56,0,0,1,0,3.62L35.16,26a6.53,6.53,0,0,1,.48,2.58l3-3A4.73,4.73,0,0,0,38.62,18.89ZM32.33,25a3.77,3.77,0,0,0-.49-.42l-1.56,1.56a2.1,2.1,0,0,1,.51.39l.08.08a2.56,2.56,0,0,1,0,3.62l-4.26,4.26a2.56,2.56,0,0,1-3.62,0l-.08-.08a2.56,2.56,0,0,1,0-3.62l1.93-1.93a6.6,6.6,0,0,1-.48-2.58l-3,3a4.73,4.73,0,0,0,0,6.68l.08.08a4.73,4.73,0,0,0,6.68,0l4.26-4.26a4.74,4.74,0,0,0,0-6.69Z\" fill=\"#484f60\"/></svg>",
|
|
151
|
+
"link_circle": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25,45A20,20,0,1,1,45,25,20,20,0,0,1,25,45ZM25,6.29A18.71,18.71,0,1,0,43.71,25,18.73,18.73,0,0,0,25,6.29Z\" fill=\"#484f60\"/><path d=\"M34.48,15.6l-.08-.08a5.21,5.21,0,0,0-7.36,0L22.36,20.2a5.21,5.21,0,0,0,0,7.36l.08.08c.17.17.35.32.53.47l1.72-1.72a2.88,2.88,0,0,1-.56-.43L24,25.87a2.81,2.81,0,0,1,0-4l4.69-4.69a2.81,2.81,0,0,1,4,0l.09.09a2.81,2.81,0,0,1,0,4l-2.12,2.12a7.17,7.17,0,0,1,.52,2.85L34.48,23A5.21,5.21,0,0,0,34.48,15.6Zm-6.92,6.76A5.62,5.62,0,0,0,27,21.9l-1.72,1.71a2.88,2.88,0,0,1,.56.43l.09.09a2.81,2.81,0,0,1,0,4L21.27,32.8a2.81,2.81,0,0,1-4,0l-.09-.09a2.81,2.81,0,0,1,0-4l2.12-2.12a7.17,7.17,0,0,1-.52-2.85L15.52,27a5.21,5.21,0,0,0,0,7.36l.08.08a5.21,5.21,0,0,0,7.36,0l4.68-4.68a5.21,5.21,0,0,0,0-7.36Z\" fill=\"#484f60\"/></svg>",
|
|
152
|
+
"list_view": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><rect x=\"26.5\" y=\"13\" width=\"14\" height=\"7\" fill=\"#4d5050\"/><rect x=\"10.5\" y=\"13\" width=\"14\" height=\"7\" fill=\"#4d5050\"/><rect x=\"10.5\" y=\"22\" width=\"14\" height=\"7\" fill=\"#4d5050\"/><rect x=\"26.5\" y=\"22\" width=\"14\" height=\"7\" fill=\"#4d5050\"/><rect x=\"10.5\" y=\"31\" width=\"14\" height=\"7\" fill=\"#4d5050\"/><rect x=\"26.5\" y=\"31\" width=\"14\" height=\"7\" fill=\"#4d5050\"/></svg>",
|
|
153
|
+
"location": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25,12.67A8.33,8.33,0,0,0,16.67,21c0,4.6,8.33,16.67,8.33,16.67S33.33,25.6,33.33,21A8.33,8.33,0,0,0,25,12.67Zm0,10.41A2.08,2.08,0,1,1,27.08,21,2.08,2.08,0,0,1,25,23.08Z\" fill=\"#484f60\"/></svg>",
|
|
154
|
+
"lock": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M32.65,21.67H17.35c-2.81,0-3.06,2.29-3.06,5.12v8.09c0,2.83.25,5.12,3.06,5.12h15.3c2.81,0,3.06-2.29,3.06-5.12V26.79C35.71,24,35.46,21.67,32.65,21.67ZM20.22,37.49l2.61-6.32a3.82,3.82,0,1,1,4.35,0l2.6,6.32Z\" fill=\"#484f60\"/><path d=\"M29.51,16.64c0-3.6-2-4.07-4.51-4.07h0c-2.49,0-4.51.47-4.51,4.07v3h-2.7v-3C17.79,11.62,21,10,25,10h0c4,0,7.21,1.62,7.21,6.64v3h-2.7Z\" fill=\"#484f60\"/></svg>",
|
|
155
|
+
"lock_round_open": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><path d=\"M684,399.49a15,15,0,1,1,15-15A15,15,0,0,1,684,399.49Zm0-29a14,14,0,1,0,14,14A14,14,0,0,0,684,370.46Z\" transform=\"translate(-658.5 -358.99)\" fill=\"#4d5050\"/><path d=\"M688.59,382.49h-9.18c-1.69,0-1.84,1.38-1.84,3.07v4.86c0,1.7.15,3.07,1.84,3.07h9.18c1.69,0,1.84-1.38,1.84-3.07v-4.86C690.43,383.87,690.28,382.49,688.59,382.49ZM681.13,392l1.56-3.79a2.29,2.29,0,1,1,2.61,0l1.56,3.79Z\" transform=\"translate(-658.5 -358.99)\" fill=\"#4d5050\"/><path d=\"M686.7,379.48c0-2.16-1.21-2.44-2.7-2.44h0c-1.49,0-2.7.28-2.7,2.44v1.8h-1.62v-1.8c0-3,1.94-4,4.33-4h0c2.39,0,4.33,1,4.33,4v1.8H686.7Z\" transform=\"translate(-658.5 -358.99)\" fill=\"#4d5050\"/></svg>",
|
|
156
|
+
"logo": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"10\" y=\"21.19\" width=\"2.04\" height=\"6.32\" fill=\"#484f60\"/><path d=\"M18.66,29.24a3.84,3.84,0,0,1-2.85-1.19,4.19,4.19,0,0,1,0-5.77,4,4,0,0,1,5.71,0,4.19,4.19,0,0,1,0,5.77A3.85,3.85,0,0,1,18.66,29.24Zm0-6.16a1.79,1.79,0,0,0-1.38.58,2.12,2.12,0,0,0-.57,1.51,2,2,0,0,0,.57,1.49,1.94,1.94,0,0,0,2.76,0,2.08,2.08,0,0,0,.56-1.5,2.15,2.15,0,0,0-.56-1.51A1.76,1.76,0,0,0,18.67,23.08Z\" fill=\"#484f60\"/><polygon points=\"31.05 29.18 27.33 25.02 27.33 29.14 25.29 29.14 25.29 21.15 26.57 21.15 30.29 25.33 30.29 21.19 32.33 21.19 32.33 29.18 31.05 29.18\" fill=\"#484f60\"/><polygon points=\"35.34 29.14 35.34 21.19 39.9 21.19 39.9 23.17 37.38 23.17 37.38 23.9 39.66 23.9 39.66 25.87 37.38 25.87 37.38 27.14 40 27.14 40 29.14 35.34 29.14\" fill=\"#484f60\"/></svg>",
|
|
157
|
+
"logout": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"27.33 34.17 12.33 34.17 12.33 11.17 27.33 11.17 27.33 17.63 28.33 17.63 28.33 10.17 11.33 10.17 11.33 35.17 28.33 35.17 28.33 27.71 27.33 27.71 27.33 34.17\" fill=\"#484f60\"/><polygon points=\"22.33 40.17 11.33 35.17 11.33 10.17 22.33 14.17 22.33 40.17\" fill=\"#484f60\"/><polygon points=\"38.67 22.66 30.63 14.63 30.63 19.63 24.33 19.63 24.33 25.71 30.63 25.71 30.63 30.71 38.67 22.66\" fill=\"#484f60\"/></svg>",
|
|
158
|
+
"magic_wand": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><g style=\"isolation:isolate\"><path d=\"M20.45,10.71a.28.28,0,0,1,.49-.19l1.4,1.25a.93.93,0,0,0,.83.23L25,11.62a.29.29,0,0,1,.34.41l-.76,1.71a.93.93,0,0,0,0,.86l.93,1.62c.12.26,0,.45-.29.45l-1.86-.2a1,1,0,0,0-.81.32l-1.26,1.38a.28.28,0,0,1-.5-.14l-.39-1.83a1,1,0,0,0-.55-.67l-1.71-.77a.28.28,0,0,1,0-.52l1.62-.94a1,1,0,0,0,.48-.73Z\" fill=\"#484f60\"/><g style=\"mix-blend-mode:lighten\"><path d=\"M23.3,16.21a1,1,0,0,0-.8.31l-1,1.13a.29.29,0,0,1-.51-.14L20.66,16a1,1,0,0,0-.55-.68l-1.39-.62a.28.28,0,0,1,0-.52L20,13.45a1,1,0,0,0,.48-.73l.16-1.5a.29.29,0,0,1,.49-.2l1.13,1a.93.93,0,0,0,.83.23L24.58,12a.29.29,0,0,1,.34.41l-.62,1.38a.91.91,0,0,0,.05.86l.75,1.32a.29.29,0,0,1-.29.44Z\" fill=\"#484f60\"/></g><path d=\"M33.57,36.76a.53.53,0,0,1,0,.72l-2.37,2.18a.48.48,0,0,1-.7,0L18,25.34a.51.51,0,0,1,0-.71l2.36-2.19a.49.49,0,0,1,.7,0Z\" fill=\"#484f60\"/><path d=\"M18.6,19.94a.51.51,0,0,1,0,.71L16.2,22.84a.48.48,0,0,1-.7,0l-2.76-3.13a.51.51,0,0,1,0-.71l2.37-2.19a.48.48,0,0,1,.7,0Z\" fill=\"#484f60\"/><path d=\"M30.67,10.55a.29.29,0,0,1,.47.24v1.12a1,1,0,0,0,.4.77l.9.66a.29.29,0,0,1-.08.52l-1.07.35a1,1,0,0,0-.61.61l-.35,1.06a.28.28,0,0,1-.51.09l-.67-.91a1,1,0,0,0-.77-.4H27.27a.29.29,0,0,1-.25-.47l.66-.9a.93.93,0,0,0,.14-.85l-.35-1.07a.29.29,0,0,1,.38-.38l1.07.35a1,1,0,0,0,.85-.13Z\" fill=\"#484f60\"/><g style=\"mix-blend-mode:lighten\"><path d=\"M29.25,14.88a1,1,0,0,0-.77-.4h-.86a.29.29,0,0,1-.24-.47l.5-.69a.93.93,0,0,0,.14-.85l-.26-.82c-.07-.27.1-.44.37-.37l.82.26a1,1,0,0,0,.85-.13l.69-.51a.29.29,0,0,1,.47.25V12a.94.94,0,0,0,.39.76l.7.51a.29.29,0,0,1-.09.52l-.81.26a1,1,0,0,0-.62.61l-.26.82a.29.29,0,0,1-.52.08Z\" fill=\"#484f60\"/></g><path d=\"M37,15.81a.29.29,0,0,1,.32.43l-.13.26a.91.91,0,0,0,0,.85l.15.26A.29.29,0,0,1,37,18l-.29,0a.93.93,0,0,0-.81.27l-.2.21a.28.28,0,0,1-.5-.16l0-.29a1,1,0,0,0-.52-.69l-.27-.13a.28.28,0,0,1,0-.52l.26-.13a.93.93,0,0,0,.5-.71l0-.29a.29.29,0,0,1,.5-.17l.21.21a.92.92,0,0,0,.82.26Z\" fill=\"#484f60\"/><g style=\"mix-blend-mode:lighten\"><path d=\"M35.25,18a1,1,0,0,0-.52-.7l-.12-.05a.28.28,0,0,1,0-.52l.12-.06a1,1,0,0,0,.51-.7V15.8a.29.29,0,0,1,.5-.18l.09.1a.92.92,0,0,0,.82.26l.13,0a.29.29,0,0,1,.32.42L37,16.5a.91.91,0,0,0,0,.85l.07.12a.29.29,0,0,1-.31.43l-.13,0a1,1,0,0,0-.82.28l-.09.1a.28.28,0,0,1-.5-.16Z\" fill=\"#484f60\"/></g></g></svg>",
|
|
159
|
+
"magnifier": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z\"/></svg>",
|
|
160
|
+
"manager": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 51 51\" enable-background=\"new 0 0 51 51\" ><g><path fill=\"#484F5F\" d=\"M31.5,23h-0.5c-0.9,1.2-2.4,2.6-4.1,3.2c0.1,0.2,0.2,0.4,0.2,0.6c0,0.4-0.2,0.7-0.6,1l1.5,6.9l-2.5,2.5L23,34.7l1.5-6.9c-0.4-0.2-0.6-0.6-0.6-1c0-0.2,0.1-0.4,0.2-0.6c-1.7-0.6-3.2-2-4.1-3.2h-0.5c-2.2,0-4,2.1-4,3.9l2.7,3c0,1.8,1.8,8.1,4,8.1h6.7c2.2,0,4-6.4,4-8.1l2.7-3C35.6,25.1,33.8,23,31.5,23z\"/><path fill=\"#484F5F\" d=\"M31.7,18.1c0,2.7-2.8,5.8-6.2,5.8c-3.4,0-6.2-3.1-6.2-5.8c0-2.7,2.8-5.1,6.2-5.1C28.9,13,31.7,15.4,31.7,18.1z\"/></g></svg>",
|
|
161
|
+
"mask": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M30,11V30H11V11H30m1-1H10V31H31V10Z\" fill=\"#484f60\"/><rect x=\"19\" y=\"19\" width=\"21\" height=\"21\" fill=\"#484f60\" opacity=\"0.5\"/><rect x=\"19\" y=\"19\" width=\"12\" height=\"12\" fill=\"#484f60\"/><path d=\"M39,20V39H20V20H39m1-1H19V40H40V19Z\" fill=\"#484f60\" opacity=\"0.5\"/></svg>",
|
|
162
|
+
"master_detail": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"22\" y=\"32.17\" width=\"18\" height=\"4\" transform=\"translate(62 68.33) rotate(180)\" fill=\"#484f60\"/><rect x=\"22\" y=\"26.17\" width=\"18\" height=\"4\" transform=\"translate(62 56.33) rotate(180)\" fill=\"#484f60\"/><rect x=\"22\" y=\"20.17\" width=\"18\" height=\"4\" transform=\"translate(62 44.33) rotate(180)\" fill=\"#484f60\"/><rect x=\"22\" y=\"14.17\" width=\"18\" height=\"4\" transform=\"translate(62 32.33) rotate(180)\" fill=\"#484f60\"/><rect x=\"10\" y=\"14.17\" width=\"10\" height=\"22\" transform=\"translate(30 50.33) rotate(180)\" fill=\"#484f60\"/></svg>",
|
|
163
|
+
"material_circle_large": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><title>material_circle_large</title><path d=\"M25,45A20,20,0,1,1,45,25,20,20,0,0,1,25,45ZM25,6.29A18.71,18.71,0,1,0,43.71,25,18.73,18.73,0,0,0,25,6.29Z\" fill=\"#484f60\"/><ellipse cx=\"23.2\" cy=\"30.43\" rx=\"3.63\" ry=\"4.15\" transform=\"translate(-2.56 2.14) rotate(-5)\" fill=\"#484f60\"/><ellipse cx=\"16.12\" cy=\"28.44\" rx=\"3.11\" ry=\"3.63\" transform=\"translate(-2.42 1.51) rotate(-5)\" fill=\"#484f60\"/><ellipse cx=\"19.83\" cy=\"21.35\" rx=\"3.37\" ry=\"3.89\" transform=\"translate(-1.79 1.81) rotate(-5)\" fill=\"#484f60\"/><path d=\"M34.84,26.84a2.71,2.71,0,0,1-2.66-2.71A2.71,2.71,0,0,1,34.33,21,2.72,2.72,0,0,1,37,23.71,2.72,2.72,0,0,1,34.84,26.84Z\" fill=\"#484f60\"/><path d=\"M31.44,20.76a2.46,2.46,0,0,1-2.37-2.48A2.45,2.45,0,0,1,31,15.44a2.45,2.45,0,0,1,2.38,2.47A2.47,2.47,0,0,1,31.44,20.76Z\" fill=\"#484f60\"/><path d=\"M27.63,30a5.51,5.51,0,0,1-.33,2.36l8.64-6.12-2.1-5.15L24,25.58A5,5,0,0,1,27.63,30Z\" fill=\"#484f60\"/><path d=\"M24,21a5,5,0,0,1-.67,3l8.33-3.3L31,15.43l-9.51,1.68A4.84,4.84,0,0,1,24,21Z\" fill=\"#484f60\"/></svg>",
|
|
164
|
+
"medal_bronze": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 51 51\" enable-background=\"new 0 0 51 51\" ><g><g><path fill=\"#A06F51\" d=\"M38.2,27.1c-0.1-0.2-0.1-0.6,0.1-0.8l1.8-2.1c0.2-0.2,0.1-0.5-0.1-0.7l-2.2-1.7c-0.2-0.2-0.3-0.5-0.3-0.8l0.8-2.7c0.1-0.3-0.1-0.5-0.3-0.6L35.3,17c-0.3-0.1-0.5-0.3-0.5-0.6l-0.4-2.8c0-0.3-0.3-0.5-0.6-0.4l-2.8,0.5c-0.3,0.1-0.6-0.1-0.7-0.3L28.9,11c-0.1-0.2-0.4-0.3-0.7-0.1l-2.3,1.6c-0.2,0.2-0.6,0.2-0.8,0l-2.3-1.6c-0.2-0.2-0.5-0.1-0.7,0.1l-1.5,2.4c-0.1,0.2-0.5,0.4-0.7,0.3l-2.8-0.5c-0.3-0.1-0.5,0.1-0.6,0.4l-0.4,2.8c0,0.3-0.3,0.5-0.5,0.6l-2.7,0.6c-0.3,0.1-0.4,0.3-0.3,0.6l0.8,2.7c0.1,0.3,0,0.6-0.3,0.8l-2.2,1.7c-0.2,0.2-0.3,0.5-0.1,0.7l1.8,2.1c0.2,0.2,0.2,0.6,0.1,0.8l-1.4,2.5c-0.1,0.2,0,0.5,0.2,0.7l2.6,1.2c0.2,0.1,0.4,0.4,0.4,0.7l-0.2,2.8c0,0.3,0.2,0.5,0.5,0.5l2.8,0.1c0.3,0,0.6,0.2,0.7,0.5l0.9,2.7c0.1,0.3,0.4,0.4,0.6,0.3l2.6-1.1c0.3-0.1,0.6,0,0.8,0.2l1.9,2.1c0.2,0.2,0.5,0.2,0.7,0l1.9-2.1c0.2-0.2,0.5-0.3,0.8-0.2l2.6,1.1c0.3,0.1,0.5,0,0.6-0.3l0.9-2.7c0.1-0.3,0.4-0.5,0.7-0.5l2.8-0.1c0.3,0,0.5-0.2,0.5-0.5l-0.2-2.8c0-0.3,0.2-0.6,0.4-0.7l2.6-1.2c0.2-0.1,0.3-0.4,0.2-0.7L38.2,27.1z M25.5,37.5c-6.6,0-12-5.4-12-12c0-6.6,5.4-12,12-12c6.6,0,12,5.4,12,12C37.5,32.1,32.1,37.5,25.5,37.5z\"/></g><path fill=\"#CF8E67\" d=\"M25.5,37C19.2,37,14,31.8,14,25.5S19.2,14,25.5,14S37,19.2,37,25.5S31.8,37,25.5,37z\"/><path fill=\"#A06F51\" d=\"M26,29.1c-0.3-0.2-0.8-0.2-1,0l-2.9,2c-0.3,0.2-0.4,0.1-0.3-0.2l1-3.3c0.1-0.3,0-0.8-0.3-1l-2.8-2.1c-0.3-0.2-0.2-0.4,0.1-0.4l3.5-0.1c0.3,0,0.7-0.3,0.8-0.6l1.1-3.3c0.1-0.3,0.3-0.3,0.4,0l1.1,3.3c0.1,0.3,0.5,0.6,0.8,0.6l3.5,0.1c0.3,0,0.4,0.2,0.1,0.4l-2.8,2.1c-0.3,0.2-0.4,0.7-0.3,1l1,3.3c0.1,0.3-0.1,0.4-0.3,0.2L26,29.1z\"/></g></svg>",
|
|
165
|
+
"medal_gold": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 51 51\" enable-background=\"new 0 0 51 51\" ><g><g><path fill=\"#CB9618\" d=\"M38.2,27.1c-0.1-0.2-0.1-0.6,0.1-0.8l1.8-2.1c0.2-0.2,0.1-0.5-0.1-0.7l-2.2-1.7c-0.2-0.2-0.3-0.5-0.3-0.8l0.8-2.7c0.1-0.3-0.1-0.5-0.3-0.6L35.3,17c-0.3-0.1-0.5-0.3-0.5-0.6l-0.4-2.8c0-0.3-0.3-0.5-0.6-0.4l-2.8,0.5c-0.3,0.1-0.6-0.1-0.7-0.3L28.9,11c-0.1-0.2-0.4-0.3-0.7-0.1l-2.3,1.6c-0.2,0.2-0.6,0.2-0.8,0l-2.3-1.6c-0.2-0.2-0.5-0.1-0.7,0.1l-1.5,2.4c-0.1,0.2-0.5,0.4-0.7,0.3l-2.8-0.5c-0.3-0.1-0.5,0.1-0.6,0.4l-0.4,2.8c0,0.3-0.3,0.5-0.5,0.6l-2.7,0.6c-0.3,0.1-0.4,0.3-0.3,0.6l0.8,2.7c0.1,0.3,0,0.6-0.3,0.8l-2.2,1.7c-0.2,0.2-0.3,0.5-0.1,0.7l1.8,2.1c0.2,0.2,0.2,0.6,0.1,0.8l-1.4,2.5c-0.1,0.2,0,0.5,0.2,0.7l2.6,1.2c0.2,0.1,0.4,0.4,0.4,0.7l-0.2,2.8c0,0.3,0.2,0.5,0.5,0.5l2.8,0.1c0.3,0,0.6,0.2,0.7,0.5l0.9,2.7c0.1,0.3,0.4,0.4,0.6,0.3l2.6-1.1c0.3-0.1,0.6,0,0.8,0.2l1.9,2.1c0.2,0.2,0.5,0.2,0.7,0l1.9-2.1c0.2-0.2,0.5-0.3,0.8-0.2l2.6,1.1c0.3,0.1,0.5,0,0.6-0.3l0.9-2.7c0.1-0.3,0.4-0.5,0.7-0.5l2.8-0.1c0.3,0,0.5-0.2,0.5-0.5l-0.2-2.8c0-0.3,0.2-0.6,0.4-0.7l2.6-1.2c0.2-0.1,0.3-0.4,0.2-0.7L38.2,27.1z M25.5,37.5c-6.6,0-12-5.4-12-12c0-6.6,5.4-12,12-12c6.6,0,12,5.4,12,12C37.5,32.1,32.1,37.5,25.5,37.5z\"/></g><path fill=\"#F0B016\" d=\"M25.5,37C19.2,37,14,31.8,14,25.5S19.2,14,25.5,14S37,19.2,37,25.5S31.8,37,25.5,37z\"/><path fill=\"#CB9618\" d=\"M26,29.1c-0.3-0.2-0.8-0.2-1,0l-2.9,2c-0.3,0.2-0.4,0.1-0.3-0.2l1-3.3c0.1-0.3,0-0.8-0.3-1l-2.8-2.1c-0.3-0.2-0.2-0.4,0.1-0.4l3.5-0.1c0.3,0,0.7-0.3,0.8-0.6l1.1-3.3c0.1-0.3,0.3-0.3,0.4,0l1.1,3.3c0.1,0.3,0.5,0.6,0.8,0.6l3.5,0.1c0.3,0,0.4,0.2,0.1,0.4l-2.8,2.1c-0.3,0.2-0.4,0.7-0.3,1l1,3.3c0.1,0.3-0.1,0.4-0.3,0.2L26,29.1z\"/></g></svg>",
|
|
166
|
+
"medal_silver": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 51 51\" enable-background=\"new 0 0 51 51\" ><g><g><path fill=\"#C0C1C2\" d=\"M38.2,27.1c-0.1-0.2-0.1-0.6,0.1-0.8l1.8-2.1c0.2-0.2,0.1-0.5-0.1-0.7l-2.2-1.7c-0.2-0.2-0.3-0.5-0.3-0.8l0.8-2.7c0.1-0.3-0.1-0.5-0.3-0.6L35.3,17c-0.3-0.1-0.5-0.3-0.5-0.6l-0.4-2.8c0-0.3-0.3-0.5-0.6-0.4l-2.8,0.5c-0.3,0.1-0.6-0.1-0.7-0.3L28.9,11c-0.1-0.2-0.4-0.3-0.7-0.1l-2.3,1.6c-0.2,0.2-0.6,0.2-0.8,0l-2.3-1.6c-0.2-0.2-0.5-0.1-0.7,0.1l-1.5,2.4c-0.1,0.2-0.5,0.4-0.7,0.3l-2.8-0.5c-0.3-0.1-0.5,0.1-0.6,0.4l-0.4,2.8c0,0.3-0.3,0.5-0.5,0.6l-2.7,0.6c-0.3,0.1-0.4,0.3-0.3,0.6l0.8,2.7c0.1,0.3,0,0.6-0.3,0.8l-2.2,1.7c-0.2,0.2-0.3,0.5-0.1,0.7l1.8,2.1c0.2,0.2,0.2,0.6,0.1,0.8l-1.4,2.5c-0.1,0.2,0,0.5,0.2,0.7l2.6,1.2c0.2,0.1,0.4,0.4,0.4,0.7l-0.2,2.8c0,0.3,0.2,0.5,0.5,0.5l2.8,0.1c0.3,0,0.6,0.2,0.7,0.5l0.9,2.7c0.1,0.3,0.4,0.4,0.6,0.3l2.6-1.1c0.3-0.1,0.6,0,0.8,0.2l1.9,2.1c0.2,0.2,0.5,0.2,0.7,0l1.9-2.1c0.2-0.2,0.5-0.3,0.8-0.2l2.6,1.1c0.3,0.1,0.5,0,0.6-0.3l0.9-2.7c0.1-0.3,0.4-0.5,0.7-0.5l2.8-0.1c0.3,0,0.5-0.2,0.5-0.5l-0.2-2.8c0-0.3,0.2-0.6,0.4-0.7l2.6-1.2c0.2-0.1,0.3-0.4,0.2-0.7L38.2,27.1z M25.5,37.5c-6.6,0-12-5.4-12-12c0-6.6,5.4-12,12-12c6.6,0,12,5.4,12,12C37.5,32.1,32.1,37.5,25.5,37.5z\"/></g><path fill=\"#E2E2E2\" d=\"M25.5,37C19.2,37,14,31.8,14,25.5S19.2,14,25.5,14S37,19.2,37,25.5S31.8,37,25.5,37z\"/><path fill=\"#C0C1C2\" d=\"M26,29.1c-0.3-0.2-0.8-0.2-1,0l-2.9,2c-0.3,0.2-0.4,0.1-0.3-0.2l1-3.3c0.1-0.3,0-0.8-0.3-1l-2.8-2.1c-0.3-0.2-0.2-0.4,0.1-0.4l3.5-0.1c0.3,0,0.7-0.3,0.8-0.6l1.1-3.3c0.1-0.3,0.3-0.3,0.4,0l1.1,3.3c0.1,0.3,0.5,0.6,0.8,0.6l3.5,0.1c0.3,0,0.4,0.2,0.1,0.4l-2.8,2.1c-0.3,0.2-0.4,0.7-0.3,1l1,3.3c0.1,0.3-0.1,0.4-0.3,0.2L26,29.1z\"/></g></svg>",
|
|
167
|
+
"medical_officer": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 51 51\" enable-background=\"new 0 0 51 51\" ><g><path fill=\"#484F5F\" d=\"M31.4,25.4h-0.5c-1.1,1.5-3.3,3.3-5.4,3.3c-2.1,0-4.3-1.8-5.4-3.3h-0.5c-2.2,0-3.9,2-3.9,3.8l2.6,2.9c0,1.7,1.8,7.9,3.9,7.9h6.5c2.2,0,3.9-6.2,3.9-7.9l2.6-2.9C35.3,27.5,33.6,25.4,31.4,25.4z\"/><path fill=\"#484F5F\" d=\"M19.6,19.9c-0.1,0.3-0.1,0.5-0.1,0.8c0,2.6,2.7,5.6,6,5.6c3.3,0,6-3,6-5.6c0-0.3,0-0.5-0.1-0.8c-0.9,0.2-3.4,0.5-6,0.5C22.9,20.4,20.5,20.1,19.6,19.9z\"/><path fill=\"#484F5F\" d=\"M31.3,16.2L25.5,11l-5.8,5.2l-0.2,2c0,0,3,0.6,6,0.6c3,0,6-0.6,6-0.6L31.3,16.2z M28,16c0,0.1-0.1,0.2-0.2,0.2h-1.5v1.5c0,0.1-0.1,0.2-0.2,0.2h-1c-0.1,0-0.2-0.1-0.2-0.2v-1.5h-1.5c-0.1,0-0.2-0.1-0.2-0.2v-1c0-0.1,0.1-0.2,0.2-0.2h1.5v-1.5c0-0.1,0.1-0.2,0.2-0.2h1c0.1,0,0.2,0.1,0.2,0.2v1.5h1.5c0.1,0,0.2,0.1,0.2,0.2V16z\"/></g></svg>",
|
|
168
|
+
"microphone": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25,30.83a5,5,0,0,0,5-4.95V16A5,5,0,0,0,20,16v9.92A5,5,0,0,0,25,30.83Z\" fill=\"#484f60\"/><path d=\"M21.45,16a3.55,3.55,0,0,1,7.1,0v9.92a3.55,3.55,0,0,1-7.1,0Z\" fill=\"#484f60\"/><path d=\"M31.38,20.87v6c0,2.95-2.86,5.34-6.38,5.34s-6.38-2.39-6.38-5.34v-6H17.21v6c0,3.52,3.12,6.41,7.08,6.72v4.29H20v1.41H30V37.92H25.7V33.63c4-.31,7.09-3.2,7.09-6.72v-6Z\" fill=\"#484f60\"/></svg>",
|
|
169
|
+
"minus_round_open": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25,11.17a14,14,0,1,1-14,14,14,14,0,0,1,14-14m0-1a15,15,0,1,0,15,15,15,15,0,0,0-15-15Z\" fill=\"#484f60\"/><path d=\"M18.67,26.27A.67.67,0,0,1,18,25.6v-.87a.66.66,0,0,1,.67-.66H31.33a.66.66,0,0,1,.67.66v.87a.67.67,0,0,1-.67.67Z\" fill=\"#484f60\" opacity=\"0.95\"/></svg>",
|
|
170
|
+
"minus_simple": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M14.58,26.71a.57.57,0,0,1-.58-.56v-2.3a.57.57,0,0,1,.58-.56H35.43a.57.57,0,0,1,.57.56v2.3a.57.57,0,0,1-.57.56Z\" fill=\"#484f60\"/></svg>",
|
|
171
|
+
"mobile": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M31,10H19a3,3,0,0,0-3,3V37a3,3,0,0,0,3,3H31a3,3,0,0,0,3-3V13A3,3,0,0,0,31,10Zm1.5,27A1.5,1.5,0,0,1,31,38.5H19A1.5,1.5,0,0,1,17.5,37V13A1.5,1.5,0,0,1,19,11.5H31A1.5,1.5,0,0,1,32.5,13Z\" fill=\"#484f60\"/><path d=\"M21,10h8a0,0,0,0,1,0,0v2a1,1,0,0,1-1,1H22a1,1,0,0,1-1-1V10A0,0,0,0,1,21,10Z\" fill=\"#484f60\"/><polygon points=\"31 32.41 31 36.41 19 36.41 19 17 31 32.41\" fill=\"#484f60\" opacity=\"0.15\"/></svg>",
|
|
172
|
+
"multi_select_check": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><polygon points=\"12.1 28.6 13.3 30.4 16.1 25.5 18.1 25.5 13.3 33 11.1 29.8 12.1 28.6\" fill=\"#fff\"/><polygon points=\"12.1 21.1 13.3 22.9 16.1 18 18.1 18 13.3 25.5 11.1 22.3 12.1 21.1\" fill=\"#fff\"/><polygon points=\"12.1 13.6 13.3 15.4 16.1 10.5 18.1 10.5 13.3 18 11.1 14.8 12.1 13.6\" fill=\"#fff\"/><rect x=\"19.3\" y=\"12.4\" width=\"20.6\" height=\"3.75\" fill=\"#fff\"/><rect x=\"19.3\" y=\"19.9\" width=\"20.6\" height=\"3.75\" fill=\"#fff\"/><rect x=\"19.3\" y=\"27.4\" width=\"20.6\" height=\"3.75\" fill=\"#fff\"/><rect x=\"19.3\" y=\"34.9\" width=\"20.6\" height=\"3.75\" fill=\"#fff\"/><polygon points=\"12.1 36.1 13.3 37.9 16.1 33 18.1 33 13.3 40.5 11.1 37.3 12.1 36.1\" fill=\"#fff\"/></svg>",
|
|
173
|
+
"new_task": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><g opacity=\"0.75\"><path d=\"M12.18,38.68a.44.44,0,0,1-.44-.44v-23a.44.44,0,0,1,.44-.44h.88V13.53h-.88a1.76,1.76,0,0,0-1.77,1.76v23A1.76,1.76,0,0,0,12.18,40h13a10.37,10.37,0,0,1-1.76-1.32Z\" fill=\"#484f60\"/><path d=\"M31.59,20.55V15.29a1.76,1.76,0,0,0-1.77-1.76h-.88v1.32h.88a.44.44,0,0,1,.44.44v5.23l.33,0C30.93,20.5,31.26,20.52,31.59,20.55Z\" fill=\"#484f60\"/><path d=\"M23.65,12.65a2.65,2.65,0,0,1-5.3,0H15.26a.88.88,0,0,0-.88.88v2.65a.89.89,0,0,0,.88.88H26.74a.89.89,0,0,0,.88-.88V13.53a.88.88,0,0,0-.88-.88Z\" fill=\"#484f60\"/><path d=\"M21,10a2.65,2.65,0,1,0,2.65,2.65A2.65,2.65,0,0,0,21,10Zm0,4a1.33,1.33,0,1,1,1.32-1.32A1.32,1.32,0,0,1,21,14Z\" fill=\"#484f60\"/><path d=\"M18.09,21.51v1h6.34a11.81,11.81,0,0,1,1.68-1Z\" fill=\"#484f60\"/><path d=\"M18.09,27.51v1H20.4c.08-.34.18-.67.29-1Z\" fill=\"#484f60\"/><path d=\"M18.09,33.51v1h2.62a7.75,7.75,0,0,1-.3-1Z\" fill=\"#484f60\"/><path d=\"M16.09,33.51v1h-1v-1h1m1-1h-3v3h3v-3Z\" fill=\"#484f60\"/><polygon points=\"15.44 30.02 13.91 27.86 14.52 27.43 15.33 28.57 16.61 26.02 17.27 26.35 15.44 30.02\" fill=\"#484f60\"/><polygon points=\"15.44 24.02 13.91 21.86 14.52 21.43 15.33 22.57 16.61 20.02 17.27 20.35 15.44 24.02\" fill=\"#484f60\"/></g><path d=\"M30.08,36.4a.26.26,0,0,1-.26-.26V31.77H25.45a.26.26,0,0,1-.26-.25v-1a.26.26,0,0,1,.26-.25h4.37V25.86a.26.26,0,0,1,.26-.26h1a.26.26,0,0,1,.26.26v4.37h4.37a.26.26,0,0,1,.26.25v1a.26.26,0,0,1-.26.25H31.36v4.37a.26.26,0,0,1-.26.26Z\" fill=\"#484f60\"/><path d=\"M30.59,23a8,8,0,1,1-8,8,8,8,0,0,1,8-8m0-1a9,9,0,1,0,9,9,9,9,0,0,0-9-9Z\" fill=\"#484f60\"/></svg>",
|
|
174
|
+
"note": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M40,17c-10-2.75-20,2.75-30,0V14.25c10,2.75,20-2.75,30,0Z\" fill=\"#484f60\"/><path d=\"M40,23.25c-10-2.75-20,2.75-30,0V20.5c10,2.75,20-2.75,30,0Z\" fill=\"#484f60\"/><path d=\"M40,29.5c-10-2.75-20,2.75-30,0V26.75c10,2.75,20-2.75,30,0Z\" fill=\"#484f60\"/><path d=\"M40,35.75c-10-2.75-20,2.75-30,0V33c10,2.75,20-2.75,30,0Z\" fill=\"#484f60\"/></svg>",
|
|
175
|
+
"note_bordered": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><title>Tekengebied 13 kopie 828</title><path d=\"M31.51,35.5H12a.5.5,0,0,1-.5-.5V15a.5.5,0,0,1,.5-.5H38a.5.5,0,0,1,.5.5V28.73H40V15a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H31.51Z\" fill=\"#484f60\"/><path d=\"M40,28.73H33.56c-1.78,0-2.05.27-2.05,2.05V37Z\" fill=\"#484f60\"/><rect x=\"14.5\" y=\"18.5\" width=\"6\" height=\"5\" fill=\"#484f60\"/><rect x=\"14.5\" y=\"30.5\" width=\"15\" height=\"1\" fill=\"#484f60\"/><rect x=\"14.5\" y=\"26.5\" width=\"15\" height=\"1\" fill=\"#484f60\"/><rect x=\"22.5\" y=\"22.5\" width=\"13\" height=\"1\" fill=\"#484f60\"/><rect x=\"22.5\" y=\"18.5\" width=\"13\" height=\"1\" fill=\"#484f60\"/></svg>",
|
|
176
|
+
"notification": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25,11.1c-8.28,0-15,4.9-15,11a8.87,8.87,0,0,0,2.27,5.77h-.16c.15.1.28.21.43.32a12.22,12.22,0,0,0,1.34,1.24c3.07,3.75.06,8.72-3.25,9.85,5.79-1.34,9.32-3.9,10.91-6.53A20.52,20.52,0,0,0,25,33c8.28,0,15-4.9,15-10.95S33.28,11.1,25,11.1Zm1.38,17.07H23.55V21.11h2.83ZM26,18.58a1.42,1.42,0,0,1-2,0,1.42,1.42,0,0,1,0-2,1.32,1.32,0,0,1,1-.41,1.35,1.35,0,0,1,1,.41,1.42,1.42,0,0,1,0,2Z\" fill=\"#484f60\"/></svg>",
|
|
177
|
+
"not_equal": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><path d=\"M298.1,413a2,2,0,1,1-1.4.6A1.9,1.9,0,0,1,298.1,413Z\" transform=\"translate(-272.5 -396)\" fill=\"#4d5050\"/><rect x=\"23.4\" y=\"24\" width=\"4\" height=\"10\" fill=\"#4d5050\"/></svg>",
|
|
178
|
+
"option": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M22.54,35.41a1.9,1.9,0,0,0-2,0L15,39.26c-.55.38-.84.17-.65-.47l2-6.45a1.9,1.9,0,0,0-.62-1.9l-5.36-4.06c-.54-.41-.42-.75.24-.76l6.73-.14a1.88,1.88,0,0,0,1.62-1.17L21.14,18c.22-.63.58-.63.8,0l2.21,6.36a1.87,1.87,0,0,0,1.61,1.17l6.73.14c.67,0,.78.35.25.76l-5.36,4.06a1.88,1.88,0,0,0-.62,1.9l1.95,6.45c.19.64-.1.85-.65.47Z\" fill=\"#484f60\"/><g opacity=\"0.75\"><path d=\"M17.52,23.8l.6-1.73-4.07.09c-.67,0-.78.35-.25.76L15.26,24l2,0A.51.51,0,0,0,17.52,23.8Z\" fill=\"#484f60\"/><path d=\"M28.2,31.92l.6,2,2.72,1.89c.55.39.84.18.65-.47l-1.63-5.39-2.26,1.71A.51.51,0,0,0,28.2,31.92Z\" fill=\"#484f60\"/><path d=\"M36,22.16,29.22,22a1.88,1.88,0,0,1-1.61-1.17L25.4,14.49c-.22-.63-.58-.63-.8,0l-1.14,3.28,2.1,6.05a.49.49,0,0,0,.25.16l6.71.14a2.21,2.21,0,0,1,1.44.49l2.24-1.69C36.73,22.51,36.62,22.17,36,22.16Z\" fill=\"#484f60\"/></g><g opacity=\"0.5\"><path d=\"M35.63,31.86,34.17,27a2.43,2.43,0,0,1-.53.54L31.81,29l.45,1.47L35,32.33C35.53,32.72,35.82,32.5,35.63,31.86Z\" fill=\"#484f60\"/><path d=\"M17.51,18.7c-.67,0-.78.35-.25.76l1.4,1.06.64-1.86Z\" fill=\"#484f60\"/><path d=\"M39.42,18.7l-6.73-.14a1.87,1.87,0,0,1-1.62-1.18L28.86,11c-.22-.63-.58-.63-.8,0L26.92,14.3,29,20.35a.45.45,0,0,0,.25.17l6.71.14a2.16,2.16,0,0,1,1.44.49l2.24-1.69C40.2,19.05,40.08,18.71,39.42,18.7Z\" fill=\"#484f60\"/></g></svg>",
|
|
179
|
+
"optionset": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25.47,21.86a.89.89,0,0,0-.94,0l-3,2.1c-.26.18-.4.07-.31-.23l1.06-3.51a.89.89,0,0,0-.29-.9l-2.92-2.21c-.25-.19-.2-.35.12-.36l3.66-.07a.91.91,0,0,0,.77-.56l1.2-3.46c.1-.3.27-.3.38,0l1.2,3.46a.91.91,0,0,0,.77.56l3.66.07c.32,0,.37.17.12.36L28,19.32a.89.89,0,0,0-.29.9l1.06,3.51c.09.3-.05.41-.31.23Z\" fill=\"#484f60\"/><path d=\"M32.35,31.92a.9.9,0,0,0-1,0l-3,2.1c-.26.18-.4.08-.3-.22l1.06-3.51a.88.88,0,0,0-.3-.9l-2.92-2.22c-.25-.19-.2-.35.12-.36l3.67-.07a.9.9,0,0,0,.76-.56l1.2-3.46c.11-.3.28-.3.38,0l1.21,3.46a.88.88,0,0,0,.76.56l3.67.07c.31,0,.37.17.11.36l-2.92,2.22a.89.89,0,0,0-.29.9l1.06,3.51c.09.3,0,.4-.3.22Z\" fill=\"#484f60\"/><path d=\"M18.6,31.92a.9.9,0,0,0-1,0l-3,2.1c-.27.18-.4.08-.31-.22l1.06-3.51a.89.89,0,0,0-.29-.9l-2.92-2.22c-.26-.19-.2-.35.11-.36L16,26.74a.88.88,0,0,0,.76-.56l1.21-3.46c.1-.3.27-.3.38,0l1.2,3.46a.9.9,0,0,0,.76.56l3.67.07c.32,0,.37.17.12.36l-2.93,2.22a.89.89,0,0,0-.29.9l1.07,3.51c.09.3-.05.4-.31.22Z\" fill=\"#484f60\"/><path d=\"M25,41A16,16,0,1,1,41,25,16,16,0,0,1,25,41Zm0-30.27A14.27,14.27,0,1,0,39.27,25,14.28,14.28,0,0,0,25,10.73Z\" fill=\"#484f60\"/></svg>",
|
|
180
|
+
"order": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"17.5\" y=\"17.5\" width=\"6\" height=\"1\" fill=\"#484f60\"/><rect x=\"17.5\" y=\"21.5\" width=\"10\" height=\"1\" fill=\"#484f60\"/><rect x=\"17.5\" y=\"25.5\" width=\"10\" height=\"1\" fill=\"#484f60\"/><rect x=\"17.5\" y=\"29.5\" width=\"10\" height=\"1\" fill=\"#484f60\"/><path d=\"M35.5,18.49V38a.5.5,0,0,1-.5.5H15a.5.5,0,0,1-.5-.5V12a.5.5,0,0,1,.5-.5H28.73V10H15a2,2,0,0,0-2,2V38a2,2,0,0,0,2,2H35a2,2,0,0,0,2-2V18.49Z\" fill=\"#484f60\"/><path d=\"M28.73,10v6.44c0,1.78.27,2,2.05,2H37Z\" fill=\"#484f60\"/><rect x=\"17.5\" y=\"14.5\" width=\"6\" height=\"1\" fill=\"#484f60\"/><rect x=\"29.5\" y=\"21.5\" width=\"3\" height=\"1\" fill=\"#484f60\"/><rect x=\"29.5\" y=\"25.5\" width=\"3\" height=\"1\" fill=\"#484f60\"/><rect x=\"29.5\" y=\"29.5\" width=\"3\" height=\"1\" fill=\"#484f60\"/><path d=\"M28.73,35.78h-.1a.48.48,0,0,1-.36-.3l-.79-1.93-1.75.9a.49.49,0,0,1-.67-.21.48.48,0,0,1,.21-.67L27.5,32.4a.56.56,0,0,1,.4,0,.49.49,0,0,1,.29.29l.72,1.73.73-.74a.51.51,0,0,1,.5-.13l1.4.4.56-.72a.5.5,0,1,1,.8.6l-.77,1a.49.49,0,0,1-.54.18l-1.44-.42-1.06,1.07A.51.51,0,0,1,28.73,35.78Z\" fill=\"#484f60\"/></svg>",
|
|
181
|
+
"orderpicking": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M16.43,40.17c-.12-.16-2.92-4-1.53-8.21,1.33-4.08,6.25-9.69,6.46-9.84l.72-.55,2.28,2.83-1.45,1.17-1.13-1.39c-1.34,1.14-4.23,5.68-5.1,8.36C15.59,35.88,17.9,39,17.93,39l-1.5,1.13Z\" fill=\"#484f60\"/><path d=\"M27.86,41l-1.74-.66A17.68,17.68,0,0,0,27,32.56,63.51,63.51,0,0,0,25.5,25.1l-1.29-.38,1.27-4.35,1.05,2.26a81.55,81.55,0,0,1,2.28,9.64A19,19,0,0,1,27.86,41Z\" fill=\"#484f60\"/><path d=\"M34,39.94l-1.67-.83s1.9-3.88,1-6.39a36.83,36.83,0,0,0-4.84-8.51l-1.37,1.42-1.34-1.29,2.71-2.82.67.69c.2.2,4.84,6.82,5.93,9.89,1.16,3.25-1,7.65-1.1,7.84Z\" fill=\"#484f60\"/><rect x=\"22.91\" y=\"24.41\" width=\"4.48\" height=\"1.17\" fill=\"#484f60\"/><polygon points=\"23.52 9 23.52 20.93 23.93 21.44 25.28 16.78 26.7 19.85 26.7 9 23.52 9\" fill=\"#484f60\"/></svg>",
|
|
182
|
+
"outgoing_storage": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"10\" y=\"12.36\" width=\"2.93\" height=\"25.61\" fill=\"#484f60\" opacity=\"0.5\"/><rect x=\"14.39\" y=\"30.65\" width=\"11.22\" height=\"1.46\" fill=\"#484f60\" opacity=\"0.5\"/><rect x=\"14.39\" y=\"21.87\" width=\"9.11\" height=\"1.46\" fill=\"#484f60\" opacity=\"0.5\"/><rect x=\"27.07\" y=\"29.46\" width=\"2.93\" height=\"8.51\" fill=\"#484f60\" opacity=\"0.5\"/><rect x=\"27.07\" y=\"12.36\" width=\"2.93\" height=\"8.51\" fill=\"#484f60\" opacity=\"0.5\"/><rect x=\"14.39\" y=\"13.09\" width=\"11.22\" height=\"1.46\" fill=\"#484f60\" opacity=\"0.5\"/><polygon points=\"40 25.16 32.62 17.79 32.62 22.38 25 22.38 25 27.96 32.62 27.96 32.62 32.55 40 25.16\" fill=\"#484f60\"/></svg>",
|
|
183
|
+
"over_booking": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"31.66 31 27.76 27.1 27.76 29.73 25.86 29.74 23.34 29.73 23.34 32.27 24.59 32.27 27.76 32.26 27.76 34.9 31.66 31\" fill=\"#484f60\"/><rect x=\"12.27\" y=\"30.23\" width=\"2.39\" height=\"4.77\" fill=\"#484f60\" opacity=\"0.75\"/><rect x=\"15.34\" y=\"30.23\" width=\"2.39\" height=\"4.77\" fill=\"#484f60\" opacity=\"0.75\"/><polygon points=\"21.34 27.73 22.5 27.73 22.5 23.41 15 20 7.5 23.41 7.5 35 10.91 35 10.91 28.86 19.09 28.86 19.09 35 22.5 35 22.5 34.27 21.34 34.27 21.34 27.73\" fill=\"#484f60\" opacity=\"0.75\"/><rect x=\"38.86\" y=\"28.64\" width=\"3.18\" height=\"6.36\" fill=\"#484f60\"/><polygon points=\"32.5 19.54 32.5 29.01 34.49 31 32.5 32.99 32.5 35 37.05 35 37.05 26.82 42.5 26.82 42.5 15 32.5 19.54\" fill=\"#484f60\"/></svg>",
|
|
184
|
+
"pause_circle": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 51 51\" enable-background=\"new 0 0 51 51\" ><g><g><path fill=\"#484F5F\" d=\"M23.5,18.5v14h-3.1v-14H23.5z M30.6,18.5v14h-3.1v-14H30.6z\"/></g><path fill=\"#484F5F\" d=\"M25.5,39.5c-7.7,0-14-6.3-14-14s6.3-14,14-14s14,6.3,14,14S33.2,39.5,25.5,39.5 M25.5,40.5c8.3,0,15-6.7,15-15c0-8.3-6.7-15-15-15c-8.3,0-15,6.7-15,15C10.5,33.8,17.2,40.5,25.5,40.5L25.5,40.5z\"/></g></svg>",
|
|
185
|
+
"pencil_round_open": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><rect x=\"290.8\" y=\"419.4\" width=\"10.4\" height=\"0.49\" transform=\"translate(-482.6 -62.8) rotate(-45)\" fill=\"#fff\"/><rect x=\"292.6\" y=\"420\" width=\"10.4\" height=\"3.1\" transform=\"translate(-483.4 -60.6) rotate(-45)\" fill=\"#fff\"/><path d=\"M305.8,414.7l-2.1-2.1a0.8,0.8,0,0,0-1.1,0l-0.8.8,3.1,3.1,0.8-.8A0.8,0.8,0,0,0,305.8,414.7Z\" transform=\"translate(-272.5 -395)\" fill=\"#fff\"/><rect x=\"301.6\" y=\"414\" width=\"1.3\" height=\"4.44\" transform=\"translate(-478.3 -59.3) rotate(-45)\" fill=\"#fff\"/><polygon points=\"18.8 29.3 17.5 33.1 17.9 33.5 21.7 32.2 18.8 29.3\" fill=\"#fff\"/><path d=\"M298,436a15.5,15.5,0,1,1,15.5-15.5A15.5,15.5,0,0,1,298,436Zm0-30a14.5,14.5,0,1,0,14.5,14.5A14.5,14.5,0,0,0,298,406Z\" transform=\"translate(-272.5 -395)\" fill=\"#fff\"/></svg>",
|
|
186
|
+
"pen_to_square_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M490.3 40.4C512.2 62.27 512.2 97.73 490.3 119.6L460.3 149.7L362.3 51.72L392.4 21.66C414.3-.2135 449.7-.2135 471.6 21.66L490.3 40.4zM172.4 241.7L339.7 74.34L437.7 172.3L270.3 339.6C264.2 345.8 256.7 350.4 248.4 353.2L159.6 382.8C150.1 385.6 141.5 383.4 135 376.1C128.6 370.5 126.4 361 129.2 352.4L158.8 263.6C161.6 255.3 166.2 247.8 172.4 241.7V241.7zM192 63.1C209.7 63.1 224 78.33 224 95.1C224 113.7 209.7 127.1 192 127.1H96C78.33 127.1 64 142.3 64 159.1V416C64 433.7 78.33 448 96 448H352C369.7 448 384 433.7 384 416V319.1C384 302.3 398.3 287.1 416 287.1C433.7 287.1 448 302.3 448 319.1V416C448 469 405 512 352 512H96C42.98 512 0 469 0 416V159.1C0 106.1 42.98 63.1 96 63.1H192z\"/></svg>",
|
|
187
|
+
"phone": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M28.23,38.17a4,4,0,0,1-2.06-.62A16.35,16.35,0,0,1,22,33.89,31.57,31.57,0,0,1,16,23a15.48,15.48,0,0,1-.75-4.38,3.7,3.7,0,0,1,1.69-3.31l1-.65c.16-.1.26-.07.36.1l3.35,5.8c.07.13.13.24,0,.36a2.78,2.78,0,0,0-1,2.69A10.07,10.07,0,0,0,23.78,30a4,4,0,0,0,2.33,1.19,2.24,2.24,0,0,0,1.2-.19c.19-.09.28,0,.38.13Q29.36,34,31,36.89c.07.12.13.23,0,.33A5.74,5.74,0,0,1,28.23,38.17Z\" fill=\"#484f60\"/><path d=\"M28,30.19a.81.81,0,0,1,.39-.68c.62-.36,1.23-.73,1.86-1.07a.78.78,0,0,1,1.09.38c.58,1,1.14,2,1.71,2.95l1.54,2.67c.4.71.31,1.06-.39,1.47-.5.29-1,.59-1.5.86a.79.79,0,0,1-1.2-.31c-1.13-1.94-2.25-3.89-3.38-5.85A1,1,0,0,1,28,30.19Z\" fill=\"#484f60\"/><path d=\"M21.18,12.17a.83.83,0,0,1,.82.53q1.16,2,2.29,4c.33.56.66,1.13,1,1.7a.85.85,0,0,1-.34,1.29l-1.58.91a.82.82,0,0,1-1.26-.34c-1.11-1.91-2.21-3.81-3.3-5.72a.81.81,0,0,1,.33-1.26c.53-.32,1.07-.62,1.61-.93A.77.77,0,0,1,21.18,12.17Z\" fill=\"#484f60\"/></svg>",
|
|
188
|
+
"phone_round_open": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><path d=\"M300.5,431.5a3.1,3.1,0,0,1-1.6-.5,12.6,12.6,0,0,1-3.2-2.8,24.3,24.3,0,0,1-4.7-8.4,11.8,11.8,0,0,1-.6-3.4,2.9,2.9,0,0,1,1.3-2.5l0.8-.5a0.2,0.2,0,0,1,.3.1l2.6,4.5a0.2,0.2,0,0,1,0,.3,2.1,2.1,0,0,0-.7,2.1,7.7,7.7,0,0,0,2.4,4.9,3,3,0,0,0,1.8.9h0.9a0.2,0.2,0,0,1,.3.1l2.6,4.5c0.1,0.1.1,0.2,0,.3A4.4,4.4,0,0,1,300.5,431.5Z\" transform=\"translate(-272.5 -396)\" fill=\"#fff\"/><path d=\"M300.3,425.3a0.6,0.6,0,0,1,.3-0.5l1.4-.8a0.6,0.6,0,0,1,.8.3l1.3,2.3,1.2,2.1a0.7,0.7,0,0,1-.3,1.1l-1.2.7a0.6,0.6,0,0,1-.9-0.2l-2.6-4.5A0.7,0.7,0,0,1,300.3,425.3Z\" transform=\"translate(-272.5 -396)\" fill=\"#fff\"/><path d=\"M295.1,411.5a0.7,0.7,0,0,1,.6.4l1.8,3,0.8,1.3a0.6,0.6,0,0,1-.3,1l-1.2.7a0.6,0.6,0,0,1-1-.3l-2.5-4.4a0.6,0.6,0,0,1,.3-1l1.2-.7h0.3Z\" transform=\"translate(-272.5 -396)\" fill=\"#fff\"/><path d=\"M298,437a15.5,15.5,0,1,1,15.5-15.5A15.5,15.5,0,0,1,298,437Zm0-30a14.5,14.5,0,1,0,14.5,14.5A14.5,14.5,0,0,0,298,407Z\" transform=\"translate(-272.5 -396)\" fill=\"#fff\"/></svg>",
|
|
189
|
+
"piechart": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><g opacity=\"0.25\"><path d=\"M25,22.17,19.16,8.35a14.91,14.91,0,0,0-4.77,3.21L25,22.17Z\" fill=\"#4c5050\"/><path d=\"M25,7.17a15,15,0,0,0-5.84,1.18L25,22.17Z\" fill=\"#4c5050\"/><path d=\"M25,22.17,14.39,11.56a15.13,15.13,0,0,0-3.21,4.77L25,22.17Z\" fill=\"#4c5050\"/></g><path d=\"M38.82,16.33a15.13,15.13,0,0,0-3.21-4.77L25,22.17h0Z\" fill=\"#4c5050\"/><path d=\"M25,7.17v15L30.84,8.35A15,15,0,0,0,25,7.17Z\" fill=\"#4c5050\"/><path d=\"M30.84,8.35,25,22.17,35.61,11.56A14.91,14.91,0,0,0,30.84,8.35Z\" fill=\"#4c5050\"/><path d=\"M38.82,16.33,25,22.17H40A14.93,14.93,0,0,0,38.82,16.33Z\" fill=\"#4c5050\"/><g opacity=\"0.6\"><path d=\"M11.18,16.33A14.93,14.93,0,0,0,10,22.17H25Z\" fill=\"#4c5050\"/><path d=\"M14.39,32.77,25,22.17,11.18,28A15.08,15.08,0,0,0,14.39,32.77Z\" fill=\"#4c5050\"/><path d=\"M25,22.17H10A15,15,0,0,0,11.18,28L25,22.17Z\" fill=\"#4c5050\"/><path d=\"M19.16,36,25,22.17,14.39,32.77A15.1,15.1,0,0,0,19.16,36Z\" fill=\"#4c5050\"/><path d=\"M25,22.17h0L19.16,36A15,15,0,0,0,25,37.17v-15Z\" fill=\"#4c5050\"/><path d=\"M25,37.17A15,15,0,0,0,30.84,36L25,22.17Z\" fill=\"#4c5050\"/></g><path d=\"M30.84,36a15.1,15.1,0,0,0,4.77-3.22L25,22.17Z\" fill=\"#4c5050\"/><path d=\"M25,22.17l10.61,10.6A15.08,15.08,0,0,0,38.82,28L25,22.17Z\" fill=\"#4c5050\"/><path d=\"M25,22.17h0L38.82,28A15,15,0,0,0,40,22.17Z\" fill=\"#4c5050\"/><polygon points=\"25 22.17 25 22.17 25 22.17 25 22.17\" fill=\"#4c5050\"/><polygon points=\"25 22.17 25 22.17 25 22.17 25 22.17\" fill=\"#4c5050\"/></svg>",
|
|
190
|
+
"pin": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><path d=\"M297.3,432.6a13.7,13.7,0,0,1-6-1.5c-4.9-2.4-7.7-7-6.1-10.1s3-2.8,5.7-2.8h0.2l-2,3.4V422a4.8,4.8,0,0,0,1.5,3.5,10.2,10.2,0,0,0,6.7,2.9,3.9,3.9,0,0,0,3.5-1.6v-0.2l1-2.9c1.5,2.1,2,4.3,1.1,6s-3,2.8-5.7,2.8h0Z\" transform=\"translate(-271.5 -396)\" fill=\"#fff\"/><path d=\"M297.3,426.3a7.9,7.9,0,0,1-5.1-2.3,2.9,2.9,0,0,1-.9-1.8l4.5-7.8a10.2,10.2,0,0,0,6.1,2.8l-3,8.4a2,2,0,0,1-1.6.6h0Z\" transform=\"translate(-271.5 -396)\" fill=\"#fff\"/><path d=\"M304.3,415.6a11.2,11.2,0,0,1-4.9-1.2c-4-2-6.2-5.6-5-8.2s2.4-2.2,4.6-2.2a11.3,11.3,0,0,1,4.9,1.2,10.7,10.7,0,0,1,4.5,4,4.4,4.4,0,0,1,.5,4.2c-0.7,1.4-2.4,2.2-4.6,2.2h0Z\" transform=\"translate(-271.5 -396)\" fill=\"#fff\"/><path d=\"M290,432.2l-1.7,3.7-0.2,3,2-2.3,1.6-3.7-1.1-.5Z\" transform=\"translate(-271.5 -396)\" fill=\"#fff\"/></svg>",
|
|
191
|
+
"pin_round_open": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><path d=\"M683.16,390.18a7.07,7.07,0,0,1-3.09-.77c-2.53-1.25-3.94-3.58-3.14-5.19a3.07,3.07,0,0,1,2.94-1.43h.1l-1,1.74v.2a2.48,2.48,0,0,0,.78,1.82,5.23,5.23,0,0,0,3.44,1.51,2,2,0,0,0,1.8-.84l.06-.09.52-1.48a3,3,0,0,1,.57,3.09,3.07,3.07,0,0,1-2.94,1.43Z\" transform=\"translate(-657.5 -358.97)\" fill=\"#4d5065\"/><path d=\"M683.15,386.94a4.06,4.06,0,0,1-2.62-1.16,1.5,1.5,0,0,1-.47-.92l2.32-4a5.24,5.24,0,0,0,3.13,1.45L684,386.63a1,1,0,0,1-.84.31Z\" transform=\"translate(-657.5 -358.97)\" fill=\"#4d5065\"/><path d=\"M686.75,381.45a5.78,5.78,0,0,1-2.52-.63c-2.06-1-3.21-2.9-2.57-4.21a2.48,2.48,0,0,1,2.37-1.15,5.78,5.78,0,0,1,2.53.63,5.5,5.5,0,0,1,2.32,2.05,2.26,2.26,0,0,1,.24,2.15,2.48,2.48,0,0,1-2.37,1.15Z\" transform=\"translate(-657.5 -358.97)\" fill=\"#4d5065\"/><path d=\"M679.42,390l-.89,1.92-.13,1.55,1-1.16.81-1.92-.54-.24Z\" transform=\"translate(-657.5 -358.97)\" fill=\"#4d5065\"/><path d=\"M683,399.47a15,15,0,1,1,15-15A15,15,0,0,1,683,399.47Zm0-29a14,14,0,1,0,14,14A14,14,0,0,0,683,370.44Z\" transform=\"translate(-657.5 -358.97)\" fill=\"#4d5065\"/></svg>",
|
|
192
|
+
"play_circle": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"32.95 25.17 21.05 32.17 21.05 18.17 32.95 25.17\" fill=\"#484f60\"/><path d=\"M25,39.17a14,14,0,1,1,14-14,14,14,0,0,1-14,14m0,1a15,15,0,1,0-15-15,15,15,0,0,0,15,15Z\" fill=\"#484f60\"/></svg>",
|
|
193
|
+
"plus_round": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"-288 379 35 35\" enable-background=\"new -288 379 35 35\" ><path fill=\"#29363E\" d=\"M-270.5,381.5c-8.3,0-15,6.7-15,15c0,8.3,6.7,15,15,15s15-6.7,15-15C-255.5,388.2-262.2,381.5-270.5,381.5z M-261.1,397.3c0,0.9-0.7,1.6-1.6,1.6h-5.5v5.5c0,0.9-0.7,1.6-1.6,1.6h-1.6c-0.9,0-1.6-0.7-1.6-1.6v-5.5h-5.5c-0.9,0-1.6-0.7-1.6-1.6v-1.6c0-0.9,0.7-1.6,1.6-1.6h5.5v-5.5c0-0.9,0.7-1.6,1.6-1.6h1.6c0.9,0,1.6,0.7,1.6,1.6v5.5h5.5c0.9,0,1.6,0.7,1.6,1.6V397.3z\"/></svg>",
|
|
194
|
+
"plus_round_open": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M24.34,32.17a.34.34,0,0,1-.34-.34V26.17H18.34a.34.34,0,0,1-.34-.34V24.5a.34.34,0,0,1,.34-.33H24V18.5a.34.34,0,0,1,.34-.33h1.33a.33.33,0,0,1,.33.33v5.67h5.67a.33.33,0,0,1,.33.33v1.33a.34.34,0,0,1-.33.34H26v5.66a.34.34,0,0,1-.33.34Z\" fill=\"#484f60\"/><path d=\"M25,11.17a14,14,0,1,1-14,14,14,14,0,0,1,14-14m0-1a15,15,0,1,0,15,15,15,15,0,0,0-15-15Z\" fill=\"#484f60\"/></svg>",
|
|
195
|
+
"plus_simple": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M23.86,37a.58.58,0,0,1-.57-.57V26.71H13.58a.57.57,0,0,1-.58-.56v-2.3a.57.57,0,0,1,.58-.56h9.71V13.57a.58.58,0,0,1,.57-.57h2.28a.57.57,0,0,1,.57.57v9.72h9.72a.57.57,0,0,1,.57.56v2.3a.57.57,0,0,1-.57.56H26.71v9.72a.57.57,0,0,1-.57.57Z\" fill=\"#484f60\"/></svg>",
|
|
196
|
+
"plus_skinny": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 51 51\" enable-background=\"new 0 0 51 51\" ><path fill=\"#484F5F\" d=\"M24.4,37.5c-0.3,0-0.6-0.3-0.6-0.6v-9.7h-9.7c-0.3,0-0.6-0.3-0.6-0.6v-2.3c0-0.3,0.3-0.6,0.6-0.6h9.7v-9.7c0-0.3,0.3-0.6,0.6-0.6h2.3c0.3,0,0.6,0.3,0.6,0.6v9.7h9.7c0.3,0,0.6,0.3,0.6,0.6v2.3c0,0.3-0.3,0.6-0.6,0.6h-9.7v9.7c0,0.3-0.3,0.6-0.6,0.6H24.4z\"/></svg>",
|
|
197
|
+
"plus_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M432 256c0 17.69-14.33 32.01-32 32.01H256v144c0 17.69-14.33 31.99-32 31.99s-32-14.3-32-31.99v-144H48c-17.67 0-32-14.32-32-32.01s14.33-31.99 32-31.99H192v-144c0-17.69 14.33-32.01 32-32.01s32 14.32 32 32.01v144h144C417.7 224 432 238.3 432 256z\"/></svg>",
|
|
198
|
+
"plus_stars": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"24.09 10 23.32 12.15 21.13 12.82 22.93 14.22 22.89 16.51 24.79 15.23 26.95 15.98 26.31 13.78 27.69 11.95 25.4 11.88 24.09 10\" fill=\"#484f60\" opacity=\"0.8\"/><polygon points=\"15.69 13.56 16.49 15.05 15.77 16.58 17.43 16.28 18.67 17.43 18.9 15.76 20.38 14.94 18.86 14.21 18.54 12.55 17.37 13.77 15.69 13.56\" fill=\"#484f60\" opacity=\"0.6\"/><polygon points=\"12.16 19.48 13 20.08 13.02 21.11 13.85 20.49 14.83 20.79 14.5 19.81 15.09 18.97 14.06 18.98 13.44 18.16 13.13 19.14 12.16 19.48\" fill=\"#484f60\" opacity=\"0.4\"/><polygon points=\"25.91 40 26.68 37.85 28.87 37.18 27.07 35.77 27.11 33.49 25.21 34.77 23.05 34.02 23.69 36.22 22.31 38.05 24.6 38.12 25.91 40\" fill=\"#484f60\" opacity=\"0.8\"/><polygon points=\"34.31 36.44 33.51 34.95 34.23 33.42 32.56 33.72 31.33 32.57 31.1 34.24 29.62 35.06 31.14 35.79 31.46 37.45 32.63 36.23 34.31 36.44\" fill=\"#484f60\" opacity=\"0.6\"/><polygon points=\"37.84 30.52 37 29.92 36.98 28.89 36.15 29.51 35.17 29.21 35.5 30.19 34.91 31.03 35.94 31.02 36.56 31.84 36.87 30.86 37.84 30.52\" fill=\"#484f60\" opacity=\"0.4\"/><path d=\"M24.15,31.49a.31.31,0,0,1-.31-.31V25.92H18.58a.31.31,0,0,1-.31-.31V24.37a.31.31,0,0,1,.31-.31h5.26V18.8a.31.31,0,0,1,.31-.31h1.24a.31.31,0,0,1,.31.31v5.26H31a.31.31,0,0,1,.31.31v1.24a.31.31,0,0,1-.31.31H25.7v5.26a.31.31,0,0,1-.31.31Z\" fill=\"#484f60\"/></svg>",
|
|
199
|
+
"pointer": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"-280 372 50 50\" enable-background=\"new -280 372 50 50\" ><path fill=\"#4C5050\" d=\"M-255,384.5c-4.6,0-8.3,3.7-8.3,8.3s8.3,16.7,8.3,16.7s8.3-12.1,8.3-16.7S-250.4,384.5-255,384.5z M-255,394.9c-1.2,0-2.1-0.9-2.1-2.1c0-1.2,0.9-2.1,2.1-2.1c1.2,0,2.1,0.9,2.1,2.1C-252.9,394-253.8,394.9-255,394.9z\"/></svg>",
|
|
200
|
+
"pointer_3d": "<svg width=\"512\" height=\"512\" xmlns=\"http://www.w3.org/2000/svg\"><g><g stroke=\"null\"><path fill=\"#06B7FC\" d=\"m256,18.34937c-87.45543,0 -157.80002,70.34459 -157.80002,157.80002s157.80002,317.50125 157.80002,317.50125s157.80002,-230.04581 157.80002,-317.50125s-70.34459,-157.80002 -157.80002,-157.80002zm0,197.72533c-22.81446,0 -39.92531,-17.11085 -39.92531,-39.92531c0,-22.81446 17.11085,-39.92531 39.92531,-39.92531c22.81446,0 39.92531,17.11085 39.92531,39.92531c0,22.81446 -17.11085,39.92531 -39.92531,39.92531z\" stroke=\"null\"/></g></g></svg>",
|
|
201
|
+
"pointer_filled": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 51 51\" enable-background=\"new 0 0 51 51\" ><path fill=\"#484F5F\" d=\"M25.5,13c-4.6,0-8.3,3.7-8.3,8.3S25.5,38,25.5,38s8.3-12.1,8.3-16.7S30.1,13,25.5,13z\"/></svg>",
|
|
202
|
+
"POS": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><g opacity=\"0.9\"><path d=\"M29.21,11.05a1.05,1.05,0,0,1,1.05,1.06V30a1,1,0,0,1-1.05,1.05H17.63A1,1,0,0,1,16.58,30V12.11a1.05,1.05,0,0,1,1.05-1.06H29.21m0-1.05H17.63a2.1,2.1,0,0,0-2.1,2.11V30a2.11,2.11,0,0,0,2.1,2.11H29.21A2.12,2.12,0,0,0,31.32,30V12.11A2.11,2.11,0,0,0,29.21,10Z\" fill=\"#484f60\"/><path d=\"M26.4,40H20.09a1.58,1.58,0,0,1-1.58-1.58V33.16h1v5.26a.53.53,0,0,0,.53.53H26.4a.53.53,0,0,0,.53-.53V33.16H28v5.26A1.58,1.58,0,0,1,26.4,40Z\" fill=\"#484f60\"/><path d=\"M28.05,13.16v2.1H18.57v-2.1h9.48m0-1.05H18.57a1,1,0,0,0-1.05,1.05v2.1a1.06,1.06,0,0,0,1.05,1.06h9.48a1.06,1.06,0,0,0,1.05-1.06v-2.1a1,1,0,0,0-1.05-1.05Z\" fill=\"#484f60\"/><rect x=\"17.52\" y=\"18.42\" width=\"3.16\" height=\"2.11\" rx=\"1.05\" fill=\"#484f60\"/><rect x=\"21.73\" y=\"18.42\" width=\"3.16\" height=\"2.11\" rx=\"1.05\" fill=\"#484f60\"/><rect x=\"25.94\" y=\"18.42\" width=\"3.16\" height=\"2.11\" rx=\"1.05\" fill=\"#484f60\"/><rect x=\"17.52\" y=\"22.63\" width=\"3.16\" height=\"2.11\" rx=\"1.05\" fill=\"#484f60\"/><rect x=\"21.73\" y=\"22.63\" width=\"3.16\" height=\"2.11\" rx=\"1.05\" fill=\"#484f60\"/><rect x=\"25.94\" y=\"22.63\" width=\"3.16\" height=\"2.11\" rx=\"1.05\" fill=\"#484f60\"/><rect x=\"17.52\" y=\"26.84\" width=\"3.16\" height=\"2.11\" rx=\"1.05\" fill=\"#484f60\"/><rect x=\"21.73\" y=\"26.84\" width=\"3.16\" height=\"2.11\" rx=\"1.05\" fill=\"#484f60\"/><rect x=\"25.94\" y=\"26.84\" width=\"3.16\" height=\"2.11\" rx=\"1.05\" fill=\"#484f60\"/><rect x=\"23.25\" y=\"33.16\" width=\"2.11\" height=\"6.32\" fill=\"#484f60\"/><rect x=\"33.42\" y=\"18.42\" width=\"1.05\" height=\"12.63\" fill=\"#484f60\"/></g></svg>",
|
|
203
|
+
"positioning": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"23\" y=\"17.17\" width=\"4\" height=\"4\" fill=\"#484f60\"/><rect x=\"23\" y=\"23.17\" width=\"4\" height=\"4\" fill=\"#484f60\"/><rect x=\"23\" y=\"29.17\" width=\"4\" height=\"4\" fill=\"#484f60\"/></svg>",
|
|
204
|
+
"pregnancy": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 51 51\" enable-background=\"new 0 0 51 51\" ><g><g><path fill=\"#5B5B5B\" d=\"M21.3,31.4c0.6,1.5,0.7,2.4,2.3,2.5c1.6,0.1,2.4-0.7,3.1-2.1c0.7-1.4,1.4-2.9,2.1-4.3c0.7-1.4,0.6-2.5-0.9-3c-1-0.3-1.5-0.6-2.5-0.9c-0.8-0.2-1.1-0.9-1.6-1.6c-0.2-0.3-0.5-0.7-0.9-0.8c-0.5-0.1-1,0.1-1.2,0.5c-0.2,0.4-0.3,0.9-0.2,1.4c0.4,1.4,1.3,2.6,2.8,2.8c0.1,0,0.1,0.1,0.3,0.2c0,0-1.2,2.3-1.3,2.5c-0.1,0.2-0.2,0.5-0.3,0.7l0-0.2c-0.1-0.5-0.2-0.9-0.3-1.4c-0.1-0.3-0.2-0.6-0.4-0.8c-0.3-0.3-1-0.4-1.4-0.2c-0.6,0.2-1.2,0.8-1.5,1.3c-0.9,1.4-0.7,5.3-0.1,6.8c0.1,0.2,0.1,0.3,0.3,0.4c0.3,0.2,0.8,0.1,1.1-0.1C21.1,34.7,21.2,32,21.3,31.4\"/><path fill=\"#5B5B5B\" d=\"M28.4,23.4c-2.1,0-3.8-1.7-3.8-3.8c0-2.1,1.7-3.9,3.9-3.8c2.1,0,3.9,1.8,3.8,3.8C32.2,21.7,30.5,23.4,28.4,23.4z\"/></g><path fill=\"#5B5B5B\" d=\"M25.5,40.5c-8.3,0-15-6.7-15-15s6.7-15,15-15s15,6.7,15,15S33.8,40.5,25.5,40.5z M25.5,11.5c-7.7,0-14,6.3-14,14s6.3,14,14,14s14-6.3,14-14S33.2,11.5,25.5,11.5z\"/></g></svg>",
|
|
205
|
+
"preset": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M37.07,11.48H12.93A1.94,1.94,0,0,0,11,13.41V36.59a1.94,1.94,0,0,0,1.93,1.93H37.07A1.94,1.94,0,0,0,39,36.59V13.41A1.94,1.94,0,0,0,37.07,11.48ZM20.66,32.72H18.24v2.9h-2.9v-2.9H12.93V27.9h2.41V15.34h2.9V27.9h2.42Zm8.2-9.65H26.45V35.62h-2.9V23.07H21.14V18.24h2.41v-2.9h2.9v2.9h2.41Zm8.21,6.76H34.66v5.79h-2.9V29.83H29.34V25h2.42V15.34h2.9V25h2.41Z\" fill=\"#484f60\"/><rect x=\"14.38\" y=\"29.34\" width=\"4.83\" height=\"1.93\" fill=\"#484f60\"/><rect x=\"22.59\" y=\"19.69\" width=\"4.83\" height=\"1.93\" fill=\"#484f60\"/><rect x=\"30.79\" y=\"26.45\" width=\"4.83\" height=\"1.93\" fill=\"#484f60\"/></svg>",
|
|
206
|
+
"print": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M39.25,27.44c0-1.25-2.51-3-3.75-3h-21c-1.24,0-3.75,1.75-3.75,3L10,34.94a2.25,2.25,0,0,0,2.25,2.25h3l1.22-2.44H13.75V29.5l.75-2.25C14.5,26,17,25,18.25,25h13.5c1.24,0,3.75,1,3.75,2.25l.75,2.25v5.25H33.53l1.22,2.44h3A2.25,2.25,0,0,0,40,34.94Zm-1.5,4.31a1.13,1.13,0,1,1,1.13-1.13A1.13,1.13,0,0,1,37.75,31.75Z\" fill=\"#484f60\"/><path d=\"M15,30.89V29.63l.71-2.17v-.17c0-.54,1.78-1.43,2.85-1.43H31.41c1.07,0,2.85.89,2.85,1.43v.17L35,29.63v1.26Z\" fill=\"#484f60\"/><path d=\"M18.25,12.06v9.75h13.5V12.06Zm12,7.5H19.75v-.75h10.5Zm0-2.25H19.75v-.75h10.5Zm0-2.25H19.75v-.75h10.5Z\" fill=\"#484f60\"/><polygon points=\"15.71 37.94 17.96 33.44 32.04 33.44 34.29 37.94 15.71 37.94\" fill=\"#484f60\"/><rect x=\"16.75\" y=\"22.94\" width=\"16.5\" height=\"1.5\" fill=\"#484f60\"/></svg>",
|
|
207
|
+
"product_properties": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M37.43,12.64H12.57A2.57,2.57,0,0,0,10,15.21V29.79a2.57,2.57,0,0,0,2.57,2.57H31.11a3.45,3.45,0,0,1,1.75-.5H29.5v-13h1.84V14.79h1.29v4.07h.77V14.79H36v4.07h.53v13H32.93a3.45,3.45,0,0,1,1.75.5h2.75A2.57,2.57,0,0,0,40,29.79V15.21A2.57,2.57,0,0,0,37.43,12.64ZM14.29,30.21H12.15V14.79h2.14Zm2,0H15V14.79h1.29Zm2.57,0H17.54V14.79h1.29Zm3.52,0H20.2V14.79h2.15Zm2,0H23.11V14.79H24.4Zm2.06,0H25.17V14.79h1.29Zm2.66,0H27.83V14.79h1.29Zm9.17,0H37V14.79h1.29Z\" fill=\"#484f60\" opacity=\"0.5\"/><path d=\"M32.9,37.36a2,2,0,0,1-2-2,2,2,0,0,1,.58-1.42,2,2,0,0,1,2.83,0,2,2,0,0,1,.59,1.42,2,2,0,0,1-2,2Z\" fill=\"#484f60\"/><rect x=\"31\" y=\"20.36\" width=\"4\" height=\"10\" transform=\"translate(66 50.72) rotate(180)\" fill=\"#484f60\"/></svg>",
|
|
208
|
+
"purchase": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><g opacity=\"0.75\"><polygon points=\"33.34 25.04 27.34 28.52 33.35 31.97 39.34 28.49 33.34 25.04\" fill=\"#484f60\"/><polygon points=\"33.99 33.08 39.99 29.6 40 36.53 34.01 40.01 33.99 33.08\" fill=\"#484f60\" opacity=\"0.5\"/><polygon points=\"26.72 36.55 26.71 29.63 32.71 33.08 32.72 40.01 26.72 36.55\" fill=\"#484f60\" opacity=\"0.25\"/><polygon points=\"12.78 28.54 18.79 32 24.78 28.52 18.77 25.07 12.78 28.54\" fill=\"#484f60\"/><polygon points=\"19.43 33.1 25.42 29.63 25.44 36.56 19.44 40.03 19.43 33.1\" fill=\"#484f60\" opacity=\"0.5\"/><polygon points=\"12.15 36.58 12.14 29.65 18.15 33.11 18.16 40.04 12.15 36.58\" fill=\"#484f60\" opacity=\"0.25\"/><polygon points=\"32.04 15.89 26.03 12.44 22.09 14.73 27.52 14.73 24.03 18.21 26.05 19.37 32.04 15.89\" fill=\"#484f60\"/><polygon points=\"32.68 17 26.69 20.48 26.7 27.41 32.7 23.93 32.68 17\" fill=\"#484f60\" opacity=\"0.5\"/><polygon points=\"23.1 19.15 19.41 22.83 19.41 23.95 25.42 27.41 25.41 20.48 23.1 19.15\" fill=\"#484f60\" opacity=\"0.25\"/></g><polygon points=\"19.03 16.34 19.03 10.3 14.61 10.3 14.61 16.34 14.61 16.34 10 16.34 16.82 23.16 23.64 16.34 19.03 16.34\" fill=\"#484f60\"/></svg>",
|
|
209
|
+
"qrcode": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\" version=\"1.1\" sodipodi:docname=\"qrcode.svg\" inkscape:version=\"0.92.4 (5da689c313, 2019-01-14)\"><metadata ><rdf:RDF><cc:Work rdf:about=\"\"><dc:format>image/svg+xml</dc:format><dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs /><sodipodi:namedview pagecolor=\"#ffffff\" bordercolor=\"#666666\" borderopacity=\"1\" objecttolerance=\"10\" gridtolerance=\"10\" guidetolerance=\"10\" inkscape:pageopacity=\"0\" inkscape:pageshadow=\"2\" inkscape:window-width=\"1920\" inkscape:window-height=\"1017\" showgr inkscape:zoom=\"10.24\" inkscape:cx=\"-3.609533\" inkscape:cy=\"34.630587\" inkscape:window-x=\"-8\" inkscape:window-y=\"-8\" inkscape:window-maximized=\"1\" inkscape:current-layer=\"svg12\" /><g transform=\"matrix(0.12987013,0,0,0.12987013,8.5714286,8.5714285)\" style=\"fill:#484f60;fill-opacity:1\"><path inkscape:connector-curvature=\"0\" style=\"fill:#484f60;fill-opacity:1\" d=\"M 11,11 H 22 V 22 H 11 Z m 11,0 H 33 V 22 H 22 Z m 11,0 H 44 V 22 H 33 Z m 11,0 H 55 V 22 H 44 Z m 11,0 H 66 V 22 H 55 Z m 11,0 H 77 V 22 H 66 Z m 11,0 H 88 V 22 H 77 Z m 33,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 V 22 H 231 Z M 11,22 H 22 V 33 H 11 Z m 66,0 H 88 V 33 H 77 Z m 22,0 h 11 V 33 H 99 Z m 33,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 66,0 h 11 V 33 H 231 Z M 11,33 H 22 V 44 H 11 Z m 22,0 H 44 V 44 H 33 Z m 11,0 H 55 V 44 H 44 Z m 11,0 H 66 V 44 H 55 Z m 22,0 H 88 V 44 H 77 Z m 33,0 h 11 v 11 h -11 z m 55,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 V 44 H 231 Z M 11,44 H 22 V 55 H 11 Z m 22,0 H 44 V 55 H 33 Z m 11,0 H 55 V 55 H 44 Z m 11,0 H 66 V 55 H 55 Z m 22,0 H 88 V 55 H 77 Z m 22,0 h 11 V 55 H 99 Z m 33,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 V 55 H 231 Z M 11,55 H 22 V 66 H 11 Z m 22,0 H 44 V 66 H 33 Z m 11,0 H 55 V 66 H 44 Z m 11,0 H 66 V 66 H 55 Z m 22,0 H 88 V 66 H 77 Z m 44,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 V 66 H 231 Z M 11,66 H 22 V 77 H 11 Z m 66,0 H 88 V 77 H 77 Z m 22,0 h 11 V 77 H 99 Z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 66,0 h 11 V 77 H 231 Z M 11,77 H 22 V 88 H 11 Z m 11,0 H 33 V 88 H 22 Z m 11,0 H 44 V 88 H 33 Z m 11,0 H 55 V 88 H 44 Z m 11,0 H 66 V 88 H 55 Z m 11,0 H 77 V 88 H 66 Z m 11,0 H 88 V 88 H 77 Z m 22,0 h 11 V 88 H 99 Z m 22,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 V 88 H 231 Z M 121,88 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 V 99 H 143 Z M 11,99 h 11 v 11 H 11 Z m 11,0 h 11 v 11 H 22 Z m 11,0 h 11 v 11 H 33 Z m 11,0 h 11 v 11 H 44 Z m 11,0 h 11 v 11 H 55 Z m 22,0 h 11 v 11 H 77 Z m 11,0 h 11 v 11 H 88 Z m 11,0 h 11 v 11 H 99 Z m 11,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 H 220 Z M 22,110 h 11 v 11 H 22 Z m 77,0 h 11 v 11 H 99 Z m 11,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 H 231 Z M 22,121 h 11 v 11 H 22 Z m 11,0 h 11 v 11 H 33 Z m 22,0 h 11 v 11 H 55 Z m 22,0 h 11 v 11 H 77 Z m 33,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 H 220 Z M 22,132 h 11 v 11 H 22 Z m 11,0 h 11 v 11 H 33 Z m 11,0 h 11 v 11 H 44 Z m 11,0 h 11 v 11 H 55 Z m 11,0 h 11 v 11 H 66 Z m 55,0 h 11 v 11 h -11 z m 55,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 H 220 Z M 22,143 h 11 v 11 H 22 Z m 22,0 h 11 v 11 H 44 Z m 11,0 h 11 v 11 H 55 Z m 11,0 h 11 v 11 H 66 Z m 11,0 h 11 v 11 H 77 Z m 11,0 h 11 v 11 H 88 Z m 22,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 44,0 h 11 v 11 H 231 Z M 99,154 h 11 v 11 H 99 Z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 H 231 Z M 11,165 h 11 v 11 H 11 Z m 11,0 h 11 v 11 H 22 Z m 11,0 h 11 v 11 H 33 Z m 11,0 h 11 v 11 H 44 Z m 11,0 h 11 v 11 H 55 Z m 11,0 h 11 v 11 H 66 Z m 11,0 h 11 v 11 H 77 Z m 22,0 h 11 v 11 H 99 Z m 11,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 44,0 h 11 v 11 H 220 Z M 11,176 h 11 v 11 H 11 Z m 66,0 h 11 v 11 H 77 Z m 33,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 H 209 Z M 11,187 h 11 v 11 H 11 Z m 22,0 h 11 v 11 H 33 Z m 11,0 h 11 v 11 H 44 Z m 11,0 h 11 v 11 H 55 Z m 22,0 h 11 v 11 H 77 Z m 22,0 h 11 v 11 H 99 Z m 11,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 44,0 h 11 v 11 H 220 Z M 11,198 h 11 v 11 H 11 Z m 22,0 h 11 v 11 H 33 Z m 11,0 h 11 v 11 H 44 Z m 11,0 h 11 v 11 H 55 Z m 22,0 h 11 v 11 H 77 Z m 22,0 h 11 v 11 H 99 Z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 H 209 Z M 11,209 h 11 v 11 H 11 Z m 22,0 h 11 v 11 H 33 Z m 11,0 h 11 v 11 H 44 Z m 11,0 h 11 v 11 H 55 Z m 22,0 h 11 v 11 H 77 Z m 22,0 h 11 v 11 H 99 Z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 H 209 Z M 11,220 h 11 v 11 H 11 Z m 66,0 h 11 v 11 H 77 Z m 22,0 h 11 v 11 H 99 Z m 22,0 h 11 v 11 h -11 z m 55,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 H 209 Z M 11,231 h 11 v 11 H 11 Z m 11,0 h 11 v 11 H 22 Z m 11,0 h 11 v 11 H 33 Z m 11,0 h 11 v 11 H 44 Z m 11,0 h 11 v 11 H 55 Z m 11,0 h 11 v 11 H 66 Z m 11,0 h 11 v 11 H 77 Z m 22,0 h 11 v 11 H 99 Z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z\" /></g></svg>",
|
|
210
|
+
"question": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M22.56,21H19.5A4.14,4.14,0,0,1,21,17.69a6.16,6.16,0,0,1,4.12-1.32,6.6,6.6,0,0,1,2.8.54,4.58,4.58,0,0,1,1.85,1.58,3.84,3.84,0,0,1,.69,2.16,3.46,3.46,0,0,1-.22,1.22,4.85,4.85,0,0,1-.7,1.23,10.78,10.78,0,0,1-1.34,1.24A8.45,8.45,0,0,0,27,25.51a2.8,2.8,0,0,0-.44.9A7,7,0,0,0,26.31,28H23.15v-.47A5.69,5.69,0,0,1,23.71,25a6.46,6.46,0,0,1,1.86-2.16,9.51,9.51,0,0,0,1.49-1.34,1.48,1.48,0,0,0,.26-.86,1.38,1.38,0,0,0-.63-1.14A2.71,2.71,0,0,0,25,19a2.66,2.66,0,0,0-1.76.57A1.83,1.83,0,0,0,22.56,21Z\" fill=\"#484f60\"/><path d=\"M24.79,30a2,2,0,0,1,1.45.59,2,2,0,0,1-2.86,2.82A2,2,0,0,1,24.79,30Z\" fill=\"#484f60\"/></svg>",
|
|
211
|
+
"radio_uncheck": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25,34.5a9.34,9.34,0,1,1,9.33-9.33A9.34,9.34,0,0,1,25,34.5m0,.67a10,10,0,1,0-10-10,10,10,0,0,0,10,10Z\" fill=\"#484f60\"/></svg>",
|
|
212
|
+
"range": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><title>range</title><path d=\"M10,35.46V14.54h4.43V16.2H12V33.8h2.42v1.66Z\" fill=\"#484f60\"/><path d=\"M21.88,26V24h6.18v2Z\" fill=\"#484f60\"/><path d=\"M40,35.46H35.57V33.8H38V16.2H35.57V14.54H40Z\" fill=\"#484f60\"/></svg>",
|
|
213
|
+
"range_select": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"18\" y=\"11.17\" width=\"22\" height=\"4\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"18\" y=\"19.17\" width=\"22\" height=\"4\" fill=\"#484f60\"/><rect x=\"18\" y=\"27.17\" width=\"22\" height=\"4\" fill=\"#484f60\"/><circle cx=\"13\" cy=\"13.17\" r=\"3\" fill=\"#484f60\" opacity=\"0.25\"/><circle cx=\"13\" cy=\"21.17\" r=\"3\" fill=\"#484f60\"/><circle cx=\"13\" cy=\"29.17\" r=\"3\" fill=\"#484f60\"/><rect x=\"18\" y=\"35.17\" width=\"22\" height=\"4\" fill=\"#484f60\"/><circle cx=\"13\" cy=\"37.17\" r=\"3\" fill=\"#484f60\"/></svg>",
|
|
214
|
+
"rectangles": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 51 51\" enable-background=\"new 0 0 51 51\" ><g><path fill=\"#484F5F\" d=\"M24.7,24.2c0,0.2-0.2,0.4-0.4,0.4H10.9c-0.2,0-0.4-0.2-0.4-0.4v-8.4c0-0.2,0.2-0.4,0.4-0.4h13.3c0.2,0,0.4,0.2,0.4,0.4V24.2z\"/><path fill=\"#484F5F\" d=\"M40.5,24.2c0,0.2-0.2,0.4-0.4,0.4H26.8c-0.2,0-0.4-0.2-0.4-0.4v-8.4c0-0.2,0.2-0.4,0.4-0.4h13.3c0.2,0,0.4,0.2,0.4,0.4V24.2z\"/><path fill=\"#484F5F\" d=\"M24.7,35.2c0,0.2-0.2,0.4-0.4,0.4H10.9c-0.2,0-0.4-0.2-0.4-0.4v-8.4c0-0.2,0.2-0.4,0.4-0.4h13.3c0.2,0,0.4,0.2,0.4,0.4V35.2z\"/><path opacity=\"0.5\" fill=\"#484F5F\" d=\"M40.5,35.2c0,0.2-0.2,0.4-0.4,0.4H26.8c-0.2,0-0.4-0.2-0.4-0.4v-8.4c0-0.2,0.2-0.4,0.4-0.4h13.3c0.2,0,0.4,0.2,0.4,0.4V35.2z\"/></g></svg>",
|
|
215
|
+
"refresh": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"14.58 22.71 14.58 10 27.29 22.71 14.58 22.71\" fill=\"#484f60\"/><polygon points=\"35.42 27.29 35.42 40 22.71 27.29 35.42 27.29\" fill=\"#484f60\"/><path d=\"M19.9,15.32c4.09-4.09,10.2-8.13,18.33,0h0C31.73,8.82,26.65,13.9,22.56,18Z\" fill=\"#484f60\"/><path d=\"M30.1,34.68c-4.09,4.08-10.2,8.13-18.33,0h0c6.51,6.5,11.58,1.43,15.67-2.66Z\" fill=\"#484f60\"/></svg>",
|
|
216
|
+
"relations": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 50 50\" enable-background=\"new 0 0 50 50\" ><g><path fill=\"#2A363B\" d=\"M32.8,35.2c1.4-1.3,2.5-4.7,2.9-6.7l-1.5,1.7C34,31.3,33.6,33.3,32.8,35.2z\"/><path fill=\"#2A363B\" d=\"M37,26.1l1.6-1.8c0-1.8-1.9-4-4.1-4h-0.5c-0.2,0.3-0.5,0.6-0.7,0.9C35.3,22,36.8,24.1,37,26.1z\"/><path fill=\"#2A363B\" d=\"M34.6,15.3c0-2.8-2.8-5.3-6.4-5.3c-1,0-1.9,0.2-2.8,0.6c4.1,0.2,7.5,3.3,7.5,6.9c0,0.6-0.1,1.3-0.3,1.9C33.8,18.2,34.6,16.7,34.6,15.3z\"/><path fill=\"#2A363B\" d=\"M33.7,28.2l1.6-1.8c0-1.8-1.9-4-4.1-4h-0.5c-0.2,0.3-0.5,0.6-0.7,0.9C32.1,24.2,33.6,26.2,33.7,28.2z\"/><path fill=\"#2A363B\" d=\"M29.6,37.3c1.4-1.3,2.5-4.7,2.9-6.7l-1.5,1.7C30.8,33.4,30.4,35.5,29.6,37.3z\"/><path fill=\"#2A363B\" d=\"M31.4,17.4c0-2.8-2.8-5.3-6.4-5.3c-1,0-1.9,0.2-2.8,0.6c4.1,0.2,7.5,3.3,7.5,6.9c0,0.6-0.1,1.3-0.3,1.9C30.6,20.4,31.4,18.9,31.4,17.4z\"/><path fill=\"#2A363B\" d=\"M28,24.6h-0.5c-0.9,1.2-2.5,2.7-4.2,3.3c0.1,0.2,0.2,0.4,0.2,0.6c0,0.4-0.3,0.8-0.6,1l1.5,7.1l-2.6,2.6l-2.6-2.6l1.5-7.1c-0.4-0.2-0.6-0.6-0.6-1c0-0.2,0.1-0.4,0.2-0.6c-1.7-0.6-3.3-2-4.2-3.3h-0.5c-2.3,0-4.1,2.2-4.1,4l2.8,3c0,1.8,1.9,8.4,4.1,8.4h6.9c2.3,0,4.2-6.6,4.2-8.4l2.8-3C32.2,26.8,30.3,24.6,28,24.6z\"/><path fill=\"#2A363B\" d=\"M28.1,19.6c0,2.8-2.8,5.9-6.4,5.9c-3.5,0-6.4-3.1-6.4-5.9c0-2.8,2.8-5.3,6.4-5.3C25.3,14.3,28.1,16.8,28.1,19.6z\"/></g></svg>",
|
|
217
|
+
"remark": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25,10.93c-8.28,0-15,4.9-15,11a8.87,8.87,0,0,0,2.27,5.77h-.16c.15.1.28.22.43.32a13.37,13.37,0,0,0,1.34,1.25c3.07,3.74.06,8.71-3.25,9.84,5.79-1.34,9.32-3.89,10.91-6.53a19.53,19.53,0,0,0,3.46.31c8.28,0,15-4.91,15-11S33.28,10.93,25,10.93Z\" fill=\"#484f60\"/></svg>",
|
|
218
|
+
"remark_round_open": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><path d=\"M683,375.62c-5.52,0-10,3.27-10,7.31a5.91,5.91,0,0,0,1.51,3.85h-.11c.11.07.19.14.29.22a8.27,8.27,0,0,0,.9.83c2,2.5,0,5.81-2.16,6.56,3.86-.89,6.21-2.59,7.27-4.35a13.52,13.52,0,0,0,2.31.2c5.52,0,10-3.27,10-7.3S688.52,375.62,683,375.62Z\" transform=\"translate(-658.5 -359.5)\" fill=\"#4d5050\"/><path d=\"M683,405a20,20,0,1,1,20-20A20,20,0,0,1,683,405Zm0-38.71A18.71,18.71,0,1,0,701.71,385,18.73,18.73,0,0,0,683,366.29Z\" transform=\"translate(-658.5 -359.5)\" fill=\"#4d5050\"/></svg>",
|
|
219
|
+
"report_in_type": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><g opacity=\"0.75\"><path d=\"M27.38,15.39a1,1,0,0,0-1-1H24.89a1,1,0,0,0-1,1v7.53c0,.55-.32.68-.71.29l-3.47-3.47c-.39-.39-.71-.26-.71.29v2.89c0,.55-.34.7-.75.34l-4.08-3.57c-.41-.36-.75-.21-.75.34v2.89c0,.55-.32.68-.71.29L9.25,19.74c-.39-.39-.71-.26-.71.29v7.14a1,1,0,0,0,1,1H20.4l7-7Z\" fill=\"#484f60\"/><path d=\"M15.73,13.38,15.39,12a13.26,13.26,0,0,1-3.2.47,5.14,5.14,0,0,1-2.92-.79L8.5,12.87a6.43,6.43,0,0,0,3.69,1A14.53,14.53,0,0,0,15.73,13.38Z\" fill=\"#484f60\"/><path d=\"M18.41,12.61a18.14,18.14,0,0,1,4.74-1,2.35,2.35,0,0,1,2.24,1.1l1.18-.73a3.72,3.72,0,0,0-3.42-1.76A19,19,0,0,0,18,11.28l-.63.19.41,1.34Z\" fill=\"#484f60\"/></g><g opacity=\"0.75\"><rect x=\"28.55\" y=\"34.12\" width=\"3.02\" height=\"6.05\" fill=\"#484f60\"/><rect x=\"32.43\" y=\"34.12\" width=\"3.02\" height=\"6.05\" fill=\"#484f60\"/><polygon points=\"33.28 21.29 22.5 32.07 22.5 40.17 26.82 40.17 26.82 32.39 37.18 32.39 37.18 40.17 41.5 40.17 41.5 25.48 33.28 21.29\" fill=\"#484f60\"/></g><rect x=\"6.6\" y=\"24.67\" width=\"39.6\" height=\"1\" transform=\"translate(-10.06 26.04) rotate(-45)\" fill=\"#484f60\"/></svg>",
|
|
220
|
+
"resize": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><polygon points=\"1.1 49.9 1.1 30.6 7.8 37.3 37.3 8 30.6 1.3 49.9 1.3 49.9 20.6 43.2 13.9 13.7 43.2 20.5 49.9 1.1 49.9\" fill=\"#4d5050\"/></svg>",
|
|
221
|
+
"resize_down": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"29.5 28.25 25 32.75 20.5 28.25 29.5 28.25\" fill=\"#484f60\"/><rect x=\"23\" y=\"21.25\" width=\"4\" height=\"4\" fill=\"#484f60\"/><rect x=\"17\" y=\"21.25\" width=\"4\" height=\"4\" fill=\"#484f60\"/><rect x=\"29\" y=\"21.25\" width=\"4\" height=\"4\" fill=\"#484f60\"/></svg>",
|
|
222
|
+
"resize_up": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"20.5 22.75 25 18.25 29.5 22.75 20.5 22.75\" fill=\"#484f60\"/><rect x=\"23\" y=\"25.75\" width=\"4\" height=\"4\" fill=\"#484f60\"/><rect x=\"29\" y=\"25.75\" width=\"4\" height=\"4\" fill=\"#484f60\"/><rect x=\"17\" y=\"25.75\" width=\"4\" height=\"4\" fill=\"#484f60\"/></svg>",
|
|
223
|
+
"returns": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M33.63,16.88H29.25A1.25,1.25,0,0,0,28,18.13v.65A1.25,1.25,0,0,0,29.25,20h9.5A1.25,1.25,0,0,0,40,18.78v-.65a1.25,1.25,0,0,0-1.25-1.25H33.63Z\" fill=\"#484f60\"/><path d=\"M35.36,22.45H20.53v1.79a3.21,3.21,0,0,1-.67,1.94V37.09H18.79v-10a3.24,3.24,0,0,1-1.08.33v9.68H16.64V27.45a3.68,3.68,0,0,1-.57-.06v9.7H14.29V26.36a3.17,3.17,0,0,1-.82-2.12V22.81a2.14,2.14,0,0,0-1,1.78V36.74a2.14,2.14,0,0,0,2.14,2.14H35.36a2.14,2.14,0,0,0,2.14-2.14V24.59A2.14,2.14,0,0,0,35.36,22.45ZM22.79,37.09H21V24.24h1.79Zm1.71,0H23.43V24.24H24.5Zm1.72,0H25.15V24.24h1.07Zm2.21,0H27.36V24.24h1.07Zm2.93,0H30.29V24.24h1.07Zm2.79,0H32V24.24h2.15Zm1.92,0H35V24.24h1.07Z\" fill=\"#484f60\"/><path d=\"M22.79,16.92H18.53V12.67a1.22,1.22,0,0,0-1.21-1.22h-.63a1.22,1.22,0,0,0-1.22,1.22v4.25H11.22A1.22,1.22,0,0,0,10,18.13v.64A1.21,1.21,0,0,0,11.22,20h4.25v4.26a1.21,1.21,0,0,0,1.22,1.21h.63a1.21,1.21,0,0,0,1.21-1.21V20h4.26A1.21,1.21,0,0,0,24,18.77v-.64A1.21,1.21,0,0,0,22.79,16.92Z\" fill=\"#484f60\" opacity=\"0.5\"/></svg>",
|
|
224
|
+
"return_goods": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><path d=\"M298,407.7a15,15,0,0,0-5.1.9l-2.7-3.5-2.5,9.7,10-.3-2-2.6,2.4-.3a11,11,0,1,1-11,11h-4A15,15,0,1,0,298,407.7Z\" transform=\"translate(-272.5 -396)\" fill=\"#fff\"/></svg>",
|
|
225
|
+
"rotate_left_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M480 256c0 123.4-100.5 223.9-223.9 223.9c-48.84 0-95.17-15.58-134.2-44.86c-14.12-10.59-16.97-30.66-6.375-44.81c10.59-14.12 30.62-16.94 44.81-6.375c27.84 20.91 61 31.94 95.88 31.94C344.3 415.8 416 344.1 416 256s-71.69-159.8-159.8-159.8c-37.46 0-73.09 13.49-101.3 36.64l45.12 45.14c17.01 17.02 4.955 46.1-19.1 46.1H35.17C24.58 224.1 16 215.5 16 204.9V59.04c0-24.04 29.07-36.08 46.07-19.07l47.6 47.63C149.9 52.71 201.5 32.11 256.1 32.11C379.5 32.11 480 132.6 480 256z\"/></svg>",
|
|
226
|
+
"save_disk": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"-288 379 35 35\" enable-background=\"new -288 379 35 35\" ><g opacity=\"0.95\"><path fill=\"#29363E\" d=\"M-259.5,384.4h-2.1v6.8c0,0.4-0.3,0.7-0.7,0.7h-16.6c-0.4,0-0.7-0.3-0.7-0.7v-6.8h-2c-0.6,0-1.1,0.5-1.1,1.1v22.4c0,0.6,0.5,1.1,1.1,1.1h2v-14c0-0.4,0.3-0.7,0.7-0.7h16.7c0.4,0,0.7,0.3,0.7,0.7v14h2c0.6,0,1.1-0.5,1.1-1.1v-22.4C-258.4,384.9-258.9,384.4-259.5,384.4z M-280.1,406.6h-1.7V405h1.7V406.6z M-259.2,406.6h-1.7V405h1.7V406.6z\"/><rect x=\"-278.4\" y=\"395.4\" fill=\"#29363E\" width=\"15.8\" height=\"13.5\"/><path fill=\"#29363E\" d=\"M-263.4,384h-12c-0.1,0-0.3,0.1-0.3,0.3v6.5c0,0.1,0.1,0.3,0.3,0.3h12c0.1,0,0.2-0.1,0.2-0.3v-6.5C-263.1,384.1-263.2,384-263.4,384z M-265.6,390c0,0.1-0.1,0.3-0.3,0.3h-2.4c-0.1,0-0.2-0.1-0.2-0.3v-4.8c0-0.1,0.1-0.3,0.2-0.3h2.4c0.1,0,0.3,0.1,0.3,0.3V390z\"/></g></svg>",
|
|
227
|
+
"save_skinny": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><polygon points=\"23.8 38.1 14.9 25.6 15.7 25 23.6 36.2 35.2 12.9 36.1 13.4 23.8 38.1\" fill=\"#fff\"/></svg>",
|
|
228
|
+
"scale_balanced": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path style=\"fill:#484f60\" d=\"M554.9 154.5c-17.62-35.25-68.12-35.38-85.87 0c-87 174.3-84.1 165.9-84.1 181.5c0 44.13 57.25 80 128 80s127.1-35.88 127.1-80C639.1 319.9 641.4 327.3 554.9 154.5zM439.1 320l71.96-144l72.17 144H439.1zM256 336c0-16.12 1.375-8.75-85.12-181.5c-17.62-35.25-68.12-35.38-85.87 0c-87 174.3-84.1 165.9-84.1 181.5c0 44.13 57.25 80 127.1 80S256 380.1 256 336zM127.9 176L200.1 320H55.96L127.9 176zM495.1 448h-143.1V153.3C375.5 143 393.1 121.8 398.4 96h113.6c17.67 0 31.1-14.33 31.1-32s-14.33-32-31.1-32h-128.4c-14.62-19.38-37.5-32-63.62-32S270.1 12.62 256.4 32H128C110.3 32 96 46.33 96 64S110.3 96 127.1 96h113.6c5.25 25.75 22.87 47 46.37 57.25V448H144c-26.51 0-48.01 21.49-48.01 48c0 8.836 7.165 16 16 16h416c8.836 0 16-7.164 16-16C544 469.5 522.5 448 495.1 448z\"/></svg>",
|
|
229
|
+
"scanner": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M38.21,34.13s-1.57-5.49-2.34-9a13.47,13.47,0,0,1-.51-3.86,10.31,10.31,0,0,1,.24-2.92,4.85,4.85,0,0,1,1.24-2.07,20.07,20.07,0,0,0,.2-2.18A17.29,17.29,0,0,0,37,12.08a.88.88,0,0,0-.39-.71A4.2,4.2,0,0,0,35.13,11l-8.38-.85s-2.21.4-4.63,1c-4.21,1-9.67,2.42-9.67,2.42a1.36,1.36,0,0,0-.5.35.8.8,0,0,0-.16.46l1.13,6.24a2,2,0,0,0,.2.7,1,1,0,0,0,.43.39s3.79,1.35,7.32,2.18a39,39,0,0,0,5.65.86,2.22,2.22,0,0,0,.9-.16A1.28,1.28,0,0,0,28,24a3.38,3.38,0,0,1,0,1,4.14,4.14,0,0,1-.31,1l-1.09,2.69a.8.8,0,0,0,0,.43,1.19,1.19,0,0,0,.23.43,15.44,15.44,0,0,0,1.48.7,2,2,0,0,0,.78.16,2.49,2.49,0,0,0,.63,0,3.52,3.52,0,0,0,.81-.24l1.06-2.06.5-2.3.31-.47a11.58,11.58,0,0,1,.16,1.31,5.3,5.3,0,0,1,0,.87,11.17,11.17,0,0,1-.14,1.31,4.52,4.52,0,0,1-.25.91,8.47,8.47,0,0,1-.37.9,3.13,3.13,0,0,1-.37.58l-.35.32a3.72,3.72,0,0,1-1.05.07,2.55,2.55,0,0,1-.94-.31L29.05,33l-.15,1a1.4,1.4,0,0,1-.39.45,2.75,2.75,0,0,1-.67.29.88.88,0,0,0-.42.43,2.27,2.27,0,0,0-.08.89s1.59,4.1,4.44,4.06C38.4,40.21,38.21,34.13,38.21,34.13ZM25.08,22.48c-.73-.11-2.63-.39-4.4-.82-2.53-.61-5-1.43-5.64-1.63a.23.23,0,0,1-.15-.19l-.55-3.51a.24.24,0,0,1,.27-.27c.73.12,2.62.43,4.55.78,2.36.43,4.75.95,5.37,1.08a.23.23,0,0,1,.18.2l.63,4.09A.24.24,0,0,1,25.08,22.48Z\" fill=\"#484f60\"/></svg>",
|
|
230
|
+
"search_round_open": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><path d=\"M299.9,415.2a5.8,5.8,0,1,0,0,8.2A5.8,5.8,0,0,0,299.9,415.2Zm-1,7.2a4.4,4.4,0,1,1,0-6.3A4.4,4.4,0,0,1,298.9,422.4Z\" transform=\"translate(-272.5 -396)\" fill=\"#fff\"/><path d=\"M305.6,426.7l-2.9-2.9a1.4,1.4,0,0,0-1.9,0l-0.5.5a1.3,1.3,0,0,0,0,1.9l2.9,2.9a1.3,1.3,0,0,0,1.9,0l0.5-.5A1.3,1.3,0,0,0,305.6,426.7Z\" transform=\"translate(-272.5 -396)\" fill=\"#fff\"/><path d=\"M295.5,422.2h-0.1v-2.4h-2.6V419h2.6v-2.4h0.9v2.4h2.6v0.6h-2.6v2.4h-0.7Z\" transform=\"translate(-272.5 -396)\" fill=\"#fff\"/><path d=\"M298,407.5a14,14,0,1,1-14,14,14,14,0,0,1,14-14m0-1a15,15,0,1,0,15,15,15,15,0,0,0-15-15h0Z\" transform=\"translate(-272.5 -396)\" fill=\"#fff\"/></svg>",
|
|
231
|
+
"sections": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"12.5\" y=\"13.17\" width=\"25\" height=\"11\" fill=\"#484f60\"/><rect x=\"12.5\" y=\"26.17\" width=\"25\" height=\"11\" fill=\"#484f60\"/></svg>",
|
|
232
|
+
"select_all_round": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><path d=\"M298,406.5a15,15,0,1,0,15,15A15,15,0,0,0,298,406.5Zm-3,24-6.2-9.1,2.8-3.6,3.4,5.1,4.7-10.4h5.6Zm9.3,0-0.5-1.5h-2.7l-0.5,1.5h-1.9l2.7-7.3h2.2l2.7,7.3h-1.9Z\" transform=\"translate(-272.5 -396)\" fill=\"#fff\"/><polygon points=\"30.8 31.7 30 29.1 29.1 31.7 30.8 31.7\" fill=\"#fff\"/></svg>",
|
|
233
|
+
"services": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M30.5,23.39l2-2.2a3.14,3.14,0,0,0-3-2.88h-.37c-.82,1.17-2.53,2.56-4.13,2.56s-3.31-1.39-4.14-2.56H20.5a3.13,3.13,0,0,0-3,2.88l2,2.2a4.93,4.93,0,0,0,.08.75H30.42A4.93,4.93,0,0,0,30.5,23.39Z\" fill=\"#484f60\"/><path d=\"M29.6,14.68a4.61,4.61,0,0,1-9.2,0c0-2,2.06-3.82,4.6-3.82S29.6,12.66,29.6,14.68Z\" fill=\"#484f60\"/><path d=\"M24.1,32.67a2.9,2.9,0,0,0-1-2.31c-2-1.93-4.27-3.55-6.44-5.28a2.7,2.7,0,0,0-1.92-.68c-.55.05-.7.29-.41.77a13.73,13.73,0,0,0,1.78,2.16,18.19,18.19,0,0,1,2.07,2.4c.14.22.34.48.12.74s-.53.12-.73,0c-1.85-1.51-3.76-3-4.32-5.5-.45-2-.85-4-1.28-6a7.56,7.56,0,0,0-.79-2.39.6.6,0,0,0-.58-.36.59.59,0,0,0-.45.51A4.92,4.92,0,0,0,10,18.38c.23,2.79.55,5.58.84,8.37A7.54,7.54,0,0,0,14,32.39c1,.75,2,1.57,2.94,2.41a3.94,3.94,0,0,1,1.51,2.88c0,.6,0,1.2,0,1.8h5.59C24.06,37.21,24.06,34.94,24.1,32.67Z\" fill=\"#484f60\"/><path d=\"M39.84,16.6c-.16-.54-.55-.63-.94-.17a3.41,3.41,0,0,0-.61,1.5c-.51,2.29-1,4.59-1.49,6.9-.54,2.56-2.47,4.05-4.34,5.59-.19.16-.48.33-.73.06s0-.51.1-.74a13.22,13.22,0,0,1,1.56-1.87,20.28,20.28,0,0,0,2.19-2.53c.14-.21.37-.44.19-.73s-.48-.2-.74-.21a2.24,2.24,0,0,0-1.42.53,66.31,66.31,0,0,0-7,5.75,2.21,2.21,0,0,0-.69,1.7c0,1.36,0,2.72,0,4.07h0c0,1,0,2,0,3h5.51A5.57,5.57,0,0,1,34,34c1-.77,2-1.61,3-2.46A5.63,5.63,0,0,0,38.92,28c.53-3.31.87-6.64,1.07-10A4.33,4.33,0,0,0,39.84,16.6Z\" fill=\"#484f60\"/></svg>",
|
|
234
|
+
"settings": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 50 50\" enable-background=\"new 0 0 50 50\" ><g><g><path fill=\"#2A363B\" d=\"M30.6,31.5V29l-3.2-0.9c-0.2-0.6-0.4-1.2-0.7-1.8l1.6-2.8l-1.8-1.8l-2.7,1.6c-0.5-0.3-1.1-0.6-1.7-0.7l-0.9-3.2h-2.5l-0.9,3.2c-0.6,0.2-1.3,0.4-1.8,0.8l-2.7-1.6l-1.8,1.8l1.6,2.7c-0.3,0.6-0.6,1.2-0.7,1.8L9,29v2.5l3.3,0.9c0.2,0.6,0.4,1.2,0.7,1.7l-1.6,2.7l1.8,1.8l2.8-1.6c0.6,0.3,1.2,0.6,1.8,0.7l0.9,3.2h2.5l0.9-3.2c0.6-0.2,1.2-0.4,1.7-0.7l2.8,1.6l1.8-1.8l-1.6-2.8c0.3-0.5,0.5-1.1,0.7-1.7L30.6,31.5z M19.8,33.3c-1.7,0-3.1-1.4-3.1-3.1c0-1.7,1.4-3.1,3.1-3.1c1.7,0,3.1,1.4,3.1,3.1C22.9,31.9,21.5,33.3,19.8,33.3z\"/></g><g><path fill=\"#2A363B\" d=\"M40.6,13.5l-2.3-0.1c-0.2-0.3-0.5-0.7-0.8-0.9c-0.3-0.3-0.6-0.5-0.9-0.8l-0.1-2.3L34.8,9l-1,1.9c-1,0-1.9,0.2-2.8,0.7l-2.1-1.2l-1.2,1.2l1.2,2c-0.5,0.9-0.8,1.9-0.7,2.9l-1.9,1l0.4,1.7l2.3,0.1c0.2,0.3,0.5,0.7,0.7,0.9c0.3,0.3,0.6,0.5,0.9,0.7l0.1,2.3l1.7,0.4l1-1.9c1,0,2-0.2,2.9-0.7l2,1.2l1.2-1.2L38.4,19c0.5-0.9,0.7-1.8,0.7-2.8l1.9-1L40.6,13.5z M35.3,18.1c-0.9,0.9-2.5,0.9-3.4,0c-0.9-0.9-0.9-2.5,0-3.4c0.9-0.9,2.5-0.9,3.4,0C36.3,15.6,36.3,17.1,35.3,18.1z\"/></g></g><path fill=\"#2A363B\" d=\"M25.3,24.9c-0.1,0-0.3-0.1-0.4-0.1c-0.1,0.1-0.1,0.2-0.2,0.3C24.9,25.1,25.1,25,25.3,24.9z\"/></svg>",
|
|
235
|
+
"Shop": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"12.68\" y=\"13.92\" width=\"24.35\" height=\"1\" fill=\"#484f60\"/><polygon points=\"26.2 16.25 28.1 16.25 28.82 20.96 26.2 20.96 26.2 16.25\" fill=\"#484f60\"/><polygon points=\"30.27 16.25 32.45 16.25 34.38 20.96 31.48 20.96 30.27 16.25\" fill=\"#484f60\"/><polygon points=\"34.62 16.25 36.8 16.25 39.7 20.96 37.04 20.96 34.62 16.25\" fill=\"#484f60\"/><rect x=\"26.16\" y=\"22.29\" width=\"2.66\" height=\"1.45\" fill=\"#484f60\"/><rect x=\"31.48\" y=\"22.29\" width=\"2.9\" height=\"1.45\" fill=\"#484f60\"/><polygon points=\"23.5 16.25 21.61 16.25 20.88 20.96 23.5 20.96 23.5 16.25\" fill=\"#484f60\"/><polygon points=\"19.43 16.25 17.25 16.25 15.32 20.96 18.22 20.96 19.43 16.25\" fill=\"#484f60\"/><polygon points=\"15.08 16.25 12.9 16.25 10 20.96 12.66 20.96 15.08 16.25\" fill=\"#484f60\"/><rect x=\"20.88\" y=\"22.29\" width=\"2.66\" height=\"1.45\" fill=\"#484f60\"/><rect x=\"15.32\" y=\"22.29\" width=\"2.9\" height=\"1.45\" fill=\"#484f60\"/><rect x=\"10\" y=\"22.29\" width=\"2.66\" height=\"1.45\" fill=\"#484f60\"/><rect x=\"37.1\" y=\"22.29\" width=\"2.9\" height=\"1.45\" fill=\"#484f60\"/><path d=\"M35.85,26.58m-1-1.5v9.5h-20v-9.5h-1.5v11h23v-11Z\" fill=\"#484f60\"/></svg>",
|
|
236
|
+
"shopping_cart": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path style= \"fill: #484f60\" d=\"M96 0C107.5 0 117.4 8.19 119.6 19.51L121.1 32H541.8C562.1 32 578.3 52.25 572.6 72.66L518.6 264.7C514.7 278.5 502.1 288 487.8 288H170.7L179.9 336H488C501.3 336 512 346.7 512 360C512 373.3 501.3 384 488 384H159.1C148.5 384 138.6 375.8 136.4 364.5L76.14 48H24C10.75 48 0 37.25 0 24C0 10.75 10.75 0 24 0H96zM128 464C128 437.5 149.5 416 176 416C202.5 416 224 437.5 224 464C224 490.5 202.5 512 176 512C149.5 512 128 490.5 128 464zM512 464C512 490.5 490.5 512 464 512C437.5 512 416 490.5 416 464C416 437.5 437.5 416 464 416C490.5 416 512 437.5 512 464z\"/></svg>",
|
|
237
|
+
"shopping_cart_nr": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M16.58,34.84a1.8,1.8,0,1,0,1.8,1.8A1.79,1.79,0,0,0,16.58,34.84Z\" fill=\"#484f60\"/><path d=\"M31.49,34.84a1.8,1.8,0,1,0,1.8,1.8A1.79,1.79,0,0,0,31.49,34.84Z\" fill=\"#484f60\"/><path d=\"M35.6,17.9l-2.87.34a8.92,8.92,0,0,1,.08,1.16c0,.26,0,.52,0,.78l.42-.05a.88.88,0,0,1,1,1.08L32.35,29.5a1.52,1.52,0,0,1-1.44,1.2H16.51a1.75,1.75,0,0,1-1.57-1.17l-2.31-5.6a1,1,0,0,1,.85-1.29l.87-.11a9.27,9.27,0,0,1-.47-2.05l-3,.35a1,1,0,0,0-.87,1.28l3.34,9.44A1.73,1.73,0,0,0,15,32.72H32.64a1.51,1.51,0,0,0,1.43-1.2L36.6,19A.89.89,0,0,0,35.6,17.9Z\" fill=\"#484f60\"/><path d=\"M39,17a1.87,1.87,0,0,0-1.36,1.46l-.42,2.89c-.1.67.31,1,.9.7a2.75,2.75,0,0,0,1.33-1.7L40,18A.73.73,0,0,0,39,17Z\" fill=\"#484f60\"/><circle cx=\"23.31\" cy=\"19.4\" r=\"7.5\" fill=\"#484f60\"/><text transform=\"translate(20.46 22.82)\" font-size=\"10\" fill=\"#484f60\" font-family=\"Quicksand-Regular, Quicksand\">3</text></svg>",
|
|
238
|
+
"shortcut": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M23.51,13.64A14.9,14.9,0,0,0,8.62,28.54h3.72a11.16,11.16,0,0,1,21.91-3l3.42-1.59A14.92,14.92,0,0,0,23.51,13.64Z\" fill=\"#484f60\"/><polyline points=\"36.98 21.51 41.1 19.58 37.84 28.54 28.89 25.28 33.01 23.35\" fill=\"#484f60\"/><path d=\"M13.46,33.38a3,3,0,1,1-3-3A3,3,0,0,1,13.46,33.38Z\" fill=\"#484f60\"/><path d=\"M23.14,33.38a3,3,0,1,1-3-3A3,3,0,0,1,23.14,33.38Z\" fill=\"#484f60\" opacity=\"0.25\"/><path d=\"M32.82,33.38a3,3,0,1,1-3-3A3,3,0,0,1,32.82,33.38Z\" fill=\"#484f60\" opacity=\"0.25\"/><path d=\"M42.5,33.38a3,3,0,1,1-3-3A3,3,0,0,1,42.5,33.38Z\" fill=\"#484f60\"/></svg>",
|
|
239
|
+
"SinglePerson": "<svg preserveAspectRatio=\"none\" version=\"1.1\" viewBox=\"0 0 50 50\" x=\"0px\" xmlns=\"http://www.w3.org/2000/svg\" y=\"0px\"><g transform=\" translate(12 10)\"><path d=\"M 19.357 0 L 18.768 0 C 17.44 1.885 14.674 4.129 12.098 4.129 C 9.52 4.129 6.752 1.885 5.426 0 L 4.836 0 C 2.164 0 0 2.515 0 4.644 L 3.225 8.191 C 3.225 10.319 5.395 17.969 8.064 17.969 L 16.129 17.969 C 18.803 17.969 20.971 10.319 20.971 8.191 L 24.197 4.644 C 24.197 2.515 22.027 0 19.357 0 Z\" fill=\"#1E2930\" transform=\" translate(0.901 12.031)\" /><path d=\"M 14.842 6.166 C 14.842 9.427 11.52 13.099 7.422 13.099 C 3.324 13.099 0 9.427 0 6.166 C 0 2.905 3.324 0 7.422 0 C 11.52 0 14.842 2.905 14.842 6.166 Z\" fill=\"#1E2930\" transform=\" translate(5.577 0.001)\" /></g></svg>",
|
|
240
|
+
"skills": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M36.29,33.16h-4c.3.57.55,1.1.85,1.59a11.57,11.57,0,0,0,2.88,3.08.64.64,0,0,0,.36.11h1.45v1.14H20.25V38H21.6a.47.47,0,0,0,.31-.08,12.92,12.92,0,0,0,3.35-4.27l.12-.29s0-.06,0-.12l-.33,0H22.12c-.24,0-.32-.06-.31-.31,0-.48,0-1,0-1.45a.32.32,0,0,0-.28-.38,7.84,7.84,0,0,1-5-4l-.2-.42a.71.71,0,0,1,0-.12h5.47V25.26H36.29v1.25c0,.55,0,.55.52.71A8.58,8.58,0,0,1,40,29.09c-.64.47-1.24.94-1.87,1.34a14,14,0,0,1-1.59.81c-.18.09-.25.16-.25.36C36.3,32.1,36.29,32.61,36.29,33.16Z\" fill=\"#484f60\"/><path d=\"M23,17.88,10.86,23.32,10,21.41,22.1,16,21,12.18,23,11.25c.06,0,.19,0,.25.09q1.78,1.73,3.54,3.47a.85.85,0,0,1,.18.32c.44,1.44.87,2.88,1.31,4.31.07.22,0,.31-.17.41-1,.41-1.9.84-2.85,1.28-.21.1-.3.05-.42-.14-.56-.93-1.13-1.85-1.7-2.78C23.1,18.11,23,18,23,17.88Z\" fill=\"#484f60\"/></svg>",
|
|
241
|
+
"slider_panel": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M311.1,407.5H286.9a1.9,1.9,0,0,0-1.9,1.9v23.2a1.9,1.9,0,0,0,1.9,1.9h24.1a1.9,1.9,0,0,0,1.9-1.9V409.4A1.9,1.9,0,0,0,311.1,407.5Zm-16.4,21.2h-2.4v2.9h-2.9v-2.9h-2.4v-4.8h2.4V411.3h2.9v12.6h2.4v4.8Zm8.2-9.7h-2.4v12.6h-2.9V419.1h-2.4v-4.8h2.4v-2.9h2.9v2.9h2.4v4.8Zm8.2,6.8h-2.4v5.8h-2.9v-5.8h-2.4V421h2.4v-9.7h2.9V421h2.4v4.8Z\" transform=\"translate(-274 -396)\" fill=\"#fff\"/><rect x=\"14.4\" y=\"29.3\" width=\"4.8\" height=\"1.93\" fill=\"#fff\"/><rect x=\"22.6\" y=\"19.7\" width=\"4.8\" height=\"1.93\" fill=\"#fff\"/><rect x=\"30.8\" y=\"26.5\" width=\"4.8\" height=\"1.93\" fill=\"#fff\"/></svg>",
|
|
242
|
+
"slide_in": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M12,12.17H38v26H12ZM36.76,13.4H13.24V36.93H36.76Z\" fill=\"#484f60\"/><polygon points=\"33.71 23.42 28.41 23.42 28.41 20.43 24.13 24.72 28.41 29.01 28.41 26.02 33.71 26.02 33.71 23.42\" fill=\"#484f60\"/><rect x=\"12\" y=\"12.17\" width=\"9\" height=\"26\" fill=\"#484f60\"/></svg>",
|
|
243
|
+
"smaller_than": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M31.37,36.19,16.72,26.61a.48.48,0,0,1-.23-.42V23.81a.48.48,0,0,1,.23-.42l14.65-9.58a.5.5,0,0,1,.69.14l1.37,2.1a.49.49,0,0,1-.15.69l-12,7.84a.5.5,0,0,0,0,.84l12,7.84a.49.49,0,0,1,.15.69l-1.37,2.1A.5.5,0,0,1,31.37,36.19Z\" fill=\"#484f60\"/></svg>",
|
|
244
|
+
"small_tiles": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"12.5\" y=\"12.67\" width=\"7\" height=\"7\" fill=\"#484f60\"/><rect x=\"12.5\" y=\"21.67\" width=\"7\" height=\"7\" fill=\"#484f60\"/><rect x=\"12.5\" y=\"30.67\" width=\"7\" height=\"7\" fill=\"#484f60\"/><rect x=\"21.5\" y=\"12.67\" width=\"7\" height=\"7\" fill=\"#484f60\"/><rect x=\"21.5\" y=\"21.67\" width=\"7\" height=\"7\" fill=\"#484f60\"/><rect x=\"21.5\" y=\"30.67\" width=\"7\" height=\"7\" fill=\"#484f60\"/><rect x=\"30.5\" y=\"12.67\" width=\"7\" height=\"7\" fill=\"#484f60\"/><rect x=\"30.5\" y=\"21.67\" width=\"7\" height=\"7\" fill=\"#484f60\"/><rect x=\"30.5\" y=\"30.67\" width=\"7\" height=\"7\" fill=\"#484f60\"/></svg>",
|
|
245
|
+
"sort_asc": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"21.99 31.3 21.99 12.67 17.86 12.67 17.86 31.3 17.86 31.3 13.56 31.3 19.93 37.67 26.29 31.3 21.99 31.3\" fill=\"#484f60\"/><path d=\"M31.29,15.17a7.34,7.34,0,0,0,1.28-.65,5.12,5.12,0,0,0,1.14-1h.77v8H33.4V15a2.71,2.71,0,0,1-.34.26c-.13.09-.28.18-.44.27l-.49.24-.51.2Z\" fill=\"#484f60\"/><path d=\"M36.18,30.88a2,2,0,0,1-.17.79,3.74,3.74,0,0,1-.43.74,6.66,6.66,0,0,1-.61.72l-.68.7c-.13.12-.27.27-.44.45a6.17,6.17,0,0,0-.48.54,4.94,4.94,0,0,0-.38.54.92.92,0,0,0-.15.45h3.6v.89H31.7a.57.57,0,0,1,0-.13v-.13a2.62,2.62,0,0,1,.17-1,4,4,0,0,1,.46-.87,6.51,6.51,0,0,1,.63-.76c.23-.24.46-.48.69-.7s.37-.36.53-.54.32-.35.46-.53a2.75,2.75,0,0,0,.31-.55,1.45,1.45,0,0,0,.12-.59,1.43,1.43,0,0,0-.11-.58,1.15,1.15,0,0,0-.28-.4,1.37,1.37,0,0,0-.43-.23,1.7,1.7,0,0,0-.51-.07,1.89,1.89,0,0,0-.6.09,2.67,2.67,0,0,0-.48.21,1.83,1.83,0,0,0-.37.25l-.22.2-.52-.75a2.92,2.92,0,0,1,.3-.28,3.18,3.18,0,0,1,.49-.31,3.59,3.59,0,0,1,.63-.24,3.07,3.07,0,0,1,2.6.46A2.09,2.09,0,0,1,36.18,30.88Z\" fill=\"#484f60\"/></svg>",
|
|
246
|
+
"sort_desc": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"26.29 19.03 19.93 12.67 13.56 19.03 17.86 19.03 17.86 37.67 21.99 37.67 21.99 19.03 21.99 19.03 26.29 19.03\" fill=\"#484f60\"/><path d=\"M36.18,15.75a2,2,0,0,1-.17.79,3.74,3.74,0,0,1-.43.74A6.66,6.66,0,0,1,35,18l-.68.7c-.13.12-.27.27-.44.45a6.17,6.17,0,0,0-.48.54,4.94,4.94,0,0,0-.38.54.92.92,0,0,0-.15.45h3.6v.89H31.7a.57.57,0,0,1,0-.13v-.13a2.62,2.62,0,0,1,.17-1,4,4,0,0,1,.46-.87A6.51,6.51,0,0,1,33,18.7c.23-.24.46-.48.69-.7s.37-.36.53-.54.32-.35.46-.53a2.75,2.75,0,0,0,.31-.55,1.46,1.46,0,0,0,.12-.6,1.41,1.41,0,0,0-.11-.57,1.15,1.15,0,0,0-.28-.4,1.37,1.37,0,0,0-.43-.23,1.7,1.7,0,0,0-.51-.07,1.89,1.89,0,0,0-.6.09,2.67,2.67,0,0,0-.48.21,1.83,1.83,0,0,0-.37.25l-.22.19-.52-.74a2.92,2.92,0,0,1,.3-.28,3.18,3.18,0,0,1,.49-.31,3.59,3.59,0,0,1,.63-.24,3.07,3.07,0,0,1,2.6.46A2.09,2.09,0,0,1,36.18,15.75Z\" fill=\"#484f60\"/><path d=\"M31.29,30.41a7.34,7.34,0,0,0,1.28-.65,5.12,5.12,0,0,0,1.14-1h.77v8H33.4V30.25a4.61,4.61,0,0,1-.78.53c-.15.08-.32.17-.49.24l-.51.2Z\" fill=\"#484f60\"/></svg>",
|
|
247
|
+
"Star": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M26.23,33.67a2.32,2.32,0,0,0-2.46,0L17,38.41c-.68.47-1,.21-.8-.58l2.41-7.94a2.34,2.34,0,0,0-.77-2.34l-6.6-5c-.66-.5-.53-.92.3-.94l8.29-.17a2.33,2.33,0,0,0,2-1.44l2.72-7.84c.27-.78.71-.78,1,0L28.21,20a2.33,2.33,0,0,0,2,1.44l8.29.17c.83,0,1,.44.3.94l-6.6,5a2.34,2.34,0,0,0-.77,2.34l2.41,7.94c.23.79-.12,1.05-.8.58Z\" fill=\"#484f60\"/></svg>",
|
|
248
|
+
"star_round_open": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><path d=\"M684,399a14,14,0,1,1,14-14,14,14,0,0,1-14,14m0,1a15,15,0,1,0-15-15,15,15,0,0,0,15,15Z\" transform=\"translate(-658 -359)\" fill=\"#4d5050\"/><path d=\"M685.23,390.55a2.32,2.32,0,0,0-2.46,0l-3.1,2.16c-.68.47-1,.21-.8-.58l1.09-3.61a2.32,2.32,0,0,0-.76-2.34l-3-2.28c-.66-.5-.52-.92.3-.94l3.78-.08a2.32,2.32,0,0,0,2-1.45l1.24-3.57c.27-.78.71-.78,1,0l1.24,3.57a2.32,2.32,0,0,0,2,1.45l3.78.08c.82,0,1,.44.3.94l-3,2.28a2.32,2.32,0,0,0-.76,2.34l1.09,3.61c.24.79-.12,1.05-.8.58Z\" transform=\"translate(-658 -359)\" fill=\"#4d5050\"/></svg>",
|
|
249
|
+
"status_active": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"23.22 32.18 26 28.64 28.55 32.46 34.59 22.19 40 22.19 28.59 40 23.22 32.18\" fill=\"#484f60\"/><path d=\"M22.74,30.36H12.14V28.21H24.43l1.66-2.12,2.38,3.55.82-1.39V10H10V40h7.5V33.57h4.29V40h5l-5.41-7.88ZM12.14,12.14h15v2.15h-15Zm0,5.36h15v2.14h-15Zm0,5.36h15V25h-15Z\" fill=\"#484f60\" opacity=\"0.5\"/></svg>",
|
|
250
|
+
"status_adoption": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M25,10c3.83,0,6.93,2.72,6.93,5.76s-3.1,6.48-6.93,6.48-6.94-3.43-6.94-6.48S21.17,10,25,10Z\" fill=\"#484f60\"/><path d=\"M35.26,30.14c-.62-2.17-1.08-4.39-1.79-6.53a3.82,3.82,0,0,0-1.61-1.95l-.58-.28c-1.37,1.78-3.9,3.72-6.28,3.72s-5.17-2.14-6.49-4A3,3,0,0,0,16.75,23c-.92,2.84-1.49,5.81-2.16,8.74a1.9,1.9,0,0,0,.81,2c1,.77,2,1.47,3.19,2.28-.44,1.33-.88,2.69-1.32,4h16c-.29-.93-.58-1.86-.86-2.79-.49-1.57-.52-1.62.87-2.46A3.7,3.7,0,0,0,35.26,30.14Zm-4.2,1A7.8,7.8,0,0,1,30,32a7.15,7.15,0,0,1-1.13.59,6,6,0,0,1-.59.22,8.53,8.53,0,0,1-1.26.27h0a9.48,9.48,0,0,1-1.6,0,15.15,15.15,0,0,1-1.65-.19,1.91,1.91,0,0,1-.44-.15c-.43-.22-.87-.6-1.47-1a3.64,3.64,0,0,1-1,0,2.7,2.7,0,0,1-.49-.12,2.32,2.32,0,0,1-.87-.53,3,3,0,0,1-.81-1.64,2.49,2.49,0,0,1,.68-2.18,2.57,2.57,0,0,1,1.2-.73,2.33,2.33,0,0,1,1.55.05,3.69,3.69,0,0,1,1.86,2.36,2.62,2.62,0,0,1,1.66-.48,3.88,3.88,0,0,1,.75.11,8.29,8.29,0,0,1,.93.29l1.85.71L30,30c.4.16.81.34,1.26.54l.24.1C31.38,30.85,31.23,31,31.06,31.17Z\" fill=\"#484f60\"/><path d=\"M20.32,31.72a2.32,2.32,0,0,1-.87-.53A2.32,2.32,0,0,0,20.32,31.72Z\" fill=\"#484f60\"/><path d=\"M31.54,30.67c-.16.18-.31.34-.48.5.17-.16.32-.32.48-.5l-.24-.1Z\" fill=\"#484f60\"/><path d=\"M25.41,33.11a9.48,9.48,0,0,0,1.6,0A9.48,9.48,0,0,1,25.41,33.11Z\" fill=\"#484f60\"/><path d=\"M20.81,31.84a3.64,3.64,0,0,0,1,0c.6.36,1,.74,1.47,1-.43-.22-.87-.6-1.47-1A3.64,3.64,0,0,1,20.81,31.84Z\" fill=\"#484f60\"/><path d=\"M29.12,29.68,27.27,29a8.29,8.29,0,0,0-.93-.29,8.29,8.29,0,0,1,.93.29Z\" fill=\"#484f60\"/><path d=\"M23.93,29.05h0a3.69,3.69,0,0,0-1.86-2.36A3.69,3.69,0,0,1,23.93,29.05Z\" fill=\"#484f60\"/></svg>",
|
|
251
|
+
"status_fostercare": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M18.5,10.16c2.88,0,5.21,2,5.21,4.33a5.33,5.33,0,0,1-5.21,4.87,5.34,5.34,0,0,1-5.22-4.87C13.28,12.2,15.62,10.16,18.5,10.16Z\" fill=\"#484f60\"/><path d=\"M31.5,10.16c2.88,0,5.21,2,5.21,4.33a5.23,5.23,0,0,1-10.43,0C26.28,12.2,28.62,10.16,31.5,10.16Z\" fill=\"#484f60\"/><path d=\"M23,21.87h4A3.54,3.54,0,0,0,25,19,3.54,3.54,0,0,0,23,21.87Z\" fill=\"#484f60\"/><path d=\"M36.6,18.61h-.42c-.93,1.32-2.87,2.9-4.68,2.9s-3.76-1.58-4.69-2.9H26.4A3.18,3.18,0,0,0,25,19a3.54,3.54,0,0,1,2,2.92H23A3.54,3.54,0,0,1,25,19a3.18,3.18,0,0,0-1.4-.34h-.42c-.93,1.32-2.87,2.9-4.68,2.9s-3.76-1.58-4.69-2.9H13.4A3.54,3.54,0,0,0,10,21.87l2.27,2.49c0,1.5,2.52,15.48,4.4,15.48h6.5C22,39.84,21,36.37,21,35.4L19.5,33.79a2.3,2.3,0,0,1,2.2-2.12H22a4.3,4.3,0,0,0,3,1.88,4.3,4.3,0,0,0,3-1.88h.27a2.31,2.31,0,0,1,2.2,2.12L29,35.4c0,1-1,4.44-2.2,4.44h6.5c1.88,0,4.4-14,4.4-15.48L40,21.87A3.55,3.55,0,0,0,36.6,18.61ZM25,32.32a4.09,4.09,0,0,1-4-3.73c0-1.76,1.79-3.33,4-3.33s4,1.57,4,3.33A4.09,4.09,0,0,1,25,32.32Z\" fill=\"#484f60\"/></svg>",
|
|
252
|
+
"status_ill": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><g opacity=\"0.5\"><polygon points=\"29.79 40.5 29.79 39.49 28.97 40.5 29.79 40.5\" fill=\"#4d5050\"/><path d=\"M684,389.82H671.14v-2.14h11.1l-2.6-3.21h-8.5v-2.14h6.77l-.8-1h9.15l2,2.51V369.47H669v30h7.5V393h4.29v3.38l4.26-5.27Zm-12.83-18.21h15v2.14h-15Zm0,5.36h15v2.14h-15Z\" transform=\"translate(-658.5 -358.97)\" fill=\"#4d5050\"/></g><polygon points=\"35.21 40.5 31.13 35.45 27.04 40.5 21.75 40.5 28.48 32.18 21.75 23.87 27.04 23.87 31.13 28.91 35.21 23.87 40.5 23.87 33.77 32.18 40.5 40.5 35.21 40.5\" fill=\"#4d5050\"/></svg>",
|
|
253
|
+
"status_leave": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M36.94,12h-4v2a2,2,0,1,1-4.08,0V12H21.17v2a2,2,0,1,1-4.08,0V12h-4a1.2,1.2,0,0,0-1.19,1.2V18H38.14V13.16A1.2,1.2,0,0,0,36.94,12Z\" fill=\"#484f60\"/><path d=\"M37.14,20.5v16L34.65,39H13.05a.2.2,0,0,1-.19-.2V20.5H37.14m1-1H11.86V38.8A1.2,1.2,0,0,0,13.05,40h22l3.08-3.08V19.5Z\" fill=\"#484f60\"/><rect x=\"18.24\" y=\"10\" width=\"1.79\" height=\"4.87\" rx=\"0.9\" ry=\"0.9\" fill=\"#484f60\"/><rect x=\"29.97\" y=\"10\" width=\"1.79\" height=\"4.87\" rx=\"0.9\" ry=\"0.9\" fill=\"#484f60\"/><rect x=\"11.86\" y=\"24.37\" width=\"26.28\" height=\"0.5\" fill=\"#484f60\"/><rect x=\"11.86\" y=\"29.5\" width=\"26.28\" height=\"0.5\" fill=\"#484f60\"/><rect x=\"11.86\" y=\"34.62\" width=\"26.28\" height=\"0.5\" fill=\"#484f60\"/><rect x=\"18.18\" y=\"19.5\" width=\"0.5\" height=\"20.5\" fill=\"#484f60\"/><rect x=\"24.75\" y=\"19.5\" width=\"0.5\" height=\"20.5\" fill=\"#484f60\"/><rect x=\"31.32\" y=\"19.5\" width=\"0.5\" height=\"20.5\" fill=\"#484f60\"/><path d=\"M23.18,29.34a13.36,13.36,0,0,1-3-3.65l.87-.5a12.36,12.36,0,0,0,2.71,3.32Z\" fill=\"#484f60\"/><path d=\"M20.45,28.73l-1-.24c.15-.6.9-1.23,2-2.11a7.56,7.56,0,0,0,1.21-1.07l1,.2c-.06.45-.55.85-1.57,1.65C21.57,27.6,20.53,28.42,20.45,28.73Z\" fill=\"#484f60\"/><path d=\"M29.46,29.34a13.47,13.47,0,0,1-3-3.65l.87-.5A12.58,12.58,0,0,0,30,28.51Z\" fill=\"#484f60\"/><path d=\"M26.72,28.73l-1-.24c.16-.6.91-1.23,2-2.11A7.74,7.74,0,0,0,29,25.31l1,.2c-.06.45-.55.85-1.57,1.65C27.84,27.6,26.8,28.42,26.72,28.73Z\" fill=\"#484f60\"/><path d=\"M36,29.34a13.36,13.36,0,0,1-3-3.65l.87-.5a12.36,12.36,0,0,0,2.71,3.32Z\" fill=\"#484f60\"/><path d=\"M33.23,28.73l-1-.24c.15-.6.9-1.23,2-2.11a7.13,7.13,0,0,0,1.21-1.07l1,.2c-.06.45-.55.85-1.57,1.65C34.35,27.6,33.31,28.42,33.23,28.73Z\" fill=\"#484f60\"/><path d=\"M17.19,34.47a13.46,13.46,0,0,1-3-3.65l.87-.5a12.63,12.63,0,0,0,2.7,3.32Z\" fill=\"#484f60\"/><path d=\"M14.46,33.86l-1-.25c.15-.59.9-1.22,2-2.11a8.72,8.72,0,0,0,1.21-1.06l1,.19c-.06.45-.56.86-1.58,1.66C15.58,32.73,14.54,33.55,14.46,33.86Z\" fill=\"#484f60\"/><path d=\"M23.05,34.47a13.46,13.46,0,0,1-3-3.65l.87-.5a12.52,12.52,0,0,0,2.71,3.32Z\" fill=\"#484f60\"/><path d=\"M20.32,33.86l-1-.25c.15-.59.9-1.22,2-2.11a8.16,8.16,0,0,0,1.21-1.06l1,.19c-.06.45-.55.86-1.57,1.66C21.44,32.73,20.4,33.55,20.32,33.86Z\" fill=\"#484f60\"/></svg>",
|
|
254
|
+
"status_pregnancy": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><path d=\"M682.38,393.69a7.48,7.48,0,0,1,3.35-5.39,1.29,1.29,0,0,0,.48-1.82,8.11,8.11,0,0,0-3.66-3.86c-1.19-.63-1.6-.34-2.21.48a6.92,6.92,0,0,1-5.14,3.08,6.66,6.66,0,0,0,.62,13.29A6.45,6.45,0,0,0,682.38,393.69Zm-10.45,2.42a4.82,4.82,0,0,1-1.26-3.4,4.75,4.75,0,0,1,1.33-3.27c.22-.22.69-.18,1-.26,0,.34.05.77-.12,1a3.94,3.94,0,0,0,0,5.22c.17.24.07.66.09,1C672.63,396.32,672.15,396.34,671.93,396.12Z\" transform=\"translate(-658.5 -358.97)\" fill=\"#4d5050\"/><path d=\"M692.65,390.82a12.66,12.66,0,0,0-1.36-3.28,32.24,32.24,0,0,0-10.1-10.27,12.85,12.85,0,0,0-3.15-1.41c-1.33-.41-2.07.34-1.8,1.72a12.81,12.81,0,0,0,2.46,4.85c.09-.11.19-.2.29-.33a3.11,3.11,0,0,1,2.5-1.5,3.93,3.93,0,0,1,1.84.53,9.76,9.76,0,0,1,4.4,4.64,3,3,0,0,1-1,3.89c-.17.12-.29.25-.44.37a11.94,11.94,0,0,0,4.76,2.44C692.29,392.65,693,392,692.65,390.82Z\" transform=\"translate(-658.5 -358.97)\" fill=\"#4d5050\"/><path d=\"M694.1,381.5a6.09,6.09,0,1,0-7.07-3.85c.48,1.31,1.12,1.85,1.86,1.48,1.12-.56.71-1.4.3-2.2a.91.91,0,0,1,0-.11,3.82,3.82,0,1,1,4.81,2.38l-.36.12Z\" transform=\"translate(-658.5 -358.97)\" fill=\"#4d5050\"/><path d=\"M690.36,378.72a2,2,0,0,1-1.1,1.17,1.82,1.82,0,0,1-.82.2c-.94,0-1.68-.72-2.2-2.15a7.07,7.07,0,0,1-.31-1.14,5.12,5.12,0,0,0-1.59,1,33.85,33.85,0,0,1,7.16,7.29,5.11,5.11,0,0,0-1.37-8.14A2.36,2.36,0,0,1,690.36,378.72Z\" transform=\"translate(-658.5 -358.97)\" fill=\"#4d5050\"/></svg>",
|
|
255
|
+
"stock": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"26.19 27.13 31.78 23.88 37.39 27.11 31.79 30.35 26.19 27.13\" fill=\"#484f60\"/><polygon points=\"32.39 31.38 37.99 28.14 38 34.61 32.41 37.85 32.39 31.38\" fill=\"#484f60\" opacity=\"0.5\"/><polygon points=\"25.6 34.63 25.59 28.16 31.2 31.39 31.21 37.85 25.6 34.63\" fill=\"#484f60\" opacity=\"0.25\"/><polygon points=\"12.6 27.15 18.19 23.91 23.8 27.13 18.2 30.37 12.6 27.15\" fill=\"#484f60\"/><polygon points=\"18.8 31.41 24.39 28.16 24.41 34.63 18.81 37.88 18.8 31.41\" fill=\"#484f60\" opacity=\"0.5\"/><polygon points=\"12.01 34.65 12 28.19 17.61 31.41 17.62 37.88 12.01 34.65\" fill=\"#484f60\" opacity=\"0.25\"/><polygon points=\"19.37 15.37 24.96 12.12 30.57 15.35 24.98 18.59 19.37 15.37\" fill=\"#484f60\"/><polygon points=\"25.58 19.62 31.17 16.38 31.18 22.85 25.59 26.09 25.58 19.62\" fill=\"#484f60\" opacity=\"0.5\"/><polygon points=\"18.79 22.87 18.77 16.4 24.38 19.63 24.39 26.09 18.79 22.87\" fill=\"#484f60\" opacity=\"0.25\"/></svg>",
|
|
256
|
+
"stock_management": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 50 50\" enable-background=\"new 0 0 50 50\" ><g><polygon fill=\"#2A363B\" points=\"20,32.1 25,29.2 29.9,32.1 25,34.9 \"/><polygon opacity=\"0.5\" fill=\"#2A363B\" points=\"25.5,35.9 30.5,33 30.5,38.7 25.5,41.6 \"/><polygon opacity=\"0.25\" fill=\"#2A363B\" points=\"19.5,38.7 19.5,33 24.5,35.9 24.5,41.6 \"/><polygon fill=\"#2A363B\" points=\"26,21.7 31,18.8 35.9,21.7 31,24.5 \"/><polygon opacity=\"0.5\" fill=\"#2A363B\" points=\"31.5,25.4 36.5,22.6 36.5,28.3 31.5,31.2 \"/><polygon opacity=\"0.25\" fill=\"#2A363B\" points=\"25.5,28.3 25.5,22.6 30.5,25.4 30.5,31.2 \"/><polygon fill=\"#2A363B\" points=\"14,21.7 19,18.8 23.9,21.7 19,24.5 \"/><polygon opacity=\"0.5\" fill=\"#2A363B\" points=\"19.5,25.5 24.4,22.6 24.5,28.3 19.5,31.2 \"/><polygon opacity=\"0.25\" fill=\"#2A363B\" points=\"13.5,28.3 13.5,22.6 18.4,25.5 18.5,31.2 \"/><polygon fill=\"#2A363B\" points=\"8,32.1 13,29.2 17.9,32.1 13,35 \"/><polygon opacity=\"0.5\" fill=\"#2A363B\" points=\"13.5,35.9 18.5,33 18.5,38.7 13.5,41.6 \"/><polygon opacity=\"0.25\" fill=\"#2A363B\" points=\"7.5,38.7 7.5,33 12.5,35.9 12.5,41.6 \"/><polygon fill=\"#2A363B\" points=\"32.1,32.1 37,29.2 42,32 37,34.9 \"/><polygon opacity=\"0.5\" fill=\"#2A363B\" points=\"37.5,35.8 42.5,33 42.5,38.7 37.6,41.5 \"/><polygon opacity=\"0.25\" fill=\"#2A363B\" points=\"31.5,38.7 31.5,33 36.5,35.8 36.5,41.5 \"/><polygon fill=\"#2A363B\" points=\"20,11.3 25,8.4 29.9,11.3 25,14.1 \"/><polygon opacity=\"0.5\" fill=\"#2A363B\" points=\"25.5,15 30.4,12.2 30.4,17.9 25.5,20.8 \"/><polygon opacity=\"0.25\" fill=\"#2A363B\" points=\"19.5,17.9 19.5,12.2 24.4,15 24.4,20.8 \"/></g></svg>",
|
|
257
|
+
"storage": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"25.9 25.28 30.14 22.82 34.39 25.26 30.15 27.72 25.9 25.28\" fill=\"#484f60\"/><polygon points=\"30.6 28.5 34.84 26.05 34.85 30.95 30.61 33.4 30.6 28.5\" fill=\"#484f60\" opacity=\"0.5\"/><polygon points=\"25.46 30.96 25.45 26.06 29.7 28.5 29.7 33.41 25.46 30.96\" fill=\"#484f60\" opacity=\"0.25\"/><polygon points=\"15.6 25.3 19.84 22.84 24.09 25.28 19.85 27.74 15.6 25.3\" fill=\"#484f60\"/><polygon points=\"20.3 28.52 24.54 26.07 24.55 30.96 20.31 33.42 20.3 28.52\" fill=\"#484f60\" opacity=\"0.5\"/><polygon points=\"15.16 30.98 15.15 26.08 19.4 28.52 19.41 33.42 15.16 30.98\" fill=\"#484f60\" opacity=\"0.25\"/><polygon points=\"20.73 16.37 24.97 13.91 29.22 16.35 24.98 18.81 20.73 16.37\" fill=\"#484f60\"/><polygon points=\"25.44 19.59 29.68 17.14 29.68 22.03 25.45 24.49 25.44 19.59\" fill=\"#484f60\" opacity=\"0.5\"/><polygon points=\"20.29 22.05 20.28 17.15 24.53 19.59 24.54 24.5 20.29 22.05\" fill=\"#484f60\" opacity=\"0.25\"/><polygon points=\"40 36.42 10 36.42 10 16.66 11.43 16.66 11.43 35 38.57 35 38.57 16.66 40 16.66 40 36.42\" fill=\"#484f60\"/></svg>",
|
|
258
|
+
"supervisor": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M18.14,26.63l.69-.84c.17-.22.35-.44.53-.65A.46.46,0,0,1,19.6,25a1.59,1.59,0,0,1,1,.19,1.07,1.07,0,0,1,.52.84c.05.8.08,1.61.12,2.41a.57.57,0,0,1,0,.12H15c0-.22,0-.43,0-.64,0-.6.08-1.19.1-1.79A1.18,1.18,0,0,1,16.27,25a.85.85,0,0,1,.86.39c.24.35.54.67.81,1Z\" fill=\"#484f60\"/><path d=\"M23.26,25.32H21.62v-.76h1.63V17.12h2.83v.74h-2v6.7h2v.75h-2V32h2v.76H23.26Z\" fill=\"#484f60\"/><path d=\"M33,27.62H28.18v-.16c0-.45.06-.89.08-1.34a.61.61,0,0,1,.35-.53,1.76,1.76,0,0,1,.63-.15c.89,0,1.77,0,2.65,0a1.45,1.45,0,0,1,.47.08.71.71,0,0,1,.52.7c0,.41,0,.82.08,1.23Z\" fill=\"#484f60\"/><path d=\"M28.17,34c0-.38,0-.74.07-1.09,0-.12,0-.23,0-.34a.63.63,0,0,1,.39-.62,1.89,1.89,0,0,1,.58-.14h2.68a1.32,1.32,0,0,1,.44.08.71.71,0,0,1,.53.7c0,.41,0,.81.07,1.22A1.15,1.15,0,0,1,33,34Z\" fill=\"#484f60\"/><path d=\"M28.17,21.1c0-.19,0-.36,0-.53s0-.56.06-.84a.76.76,0,0,1,.68-.79,1.87,1.87,0,0,1,.34,0h2.58a1.19,1.19,0,0,1,.71.19.59.59,0,0,1,.29.47c0,.48.07,1,.1,1.45,0,0,0,0,0,.08Z\" fill=\"#484f60\"/><path d=\"M19.74,22.9a1.6,1.6,0,0,1-1.6,1.62,1.63,1.63,0,0,1-1.63-1.61,1.61,1.61,0,0,1,1.63-1.61A1.58,1.58,0,0,1,19.74,22.9Z\" fill=\"#484f60\"/><path d=\"M29.33,23.78a1.24,1.24,0,1,1,1.25,1.27A1.25,1.25,0,0,1,29.33,23.78Z\" fill=\"#484f60\"/><path d=\"M29.33,17.26a1.24,1.24,0,1,1,1.23,1.27A1.24,1.24,0,0,1,29.33,17.26Z\" fill=\"#484f60\"/><path d=\"M29.33,30.16a1.24,1.24,0,1,1,2.48,0,1.24,1.24,0,1,1-2.48,0Z\" fill=\"#484f60\"/><path d=\"M25,11A14,14,0,1,1,11,25,14,14,0,0,1,25,11m0-1A15,15,0,1,0,40,25,15,15,0,0,0,25,10Z\" fill=\"#484f60\"/></svg>",
|
|
259
|
+
"supplier": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 50 50\" enable-background=\"new 0 0 50 50\" ><g><polygon fill=\"#29363E\" points=\"18.6,12.9 25.5,10.1 32.4,12.9 25.5,15.8 \"/><path fill=\"#29363E\" d=\"M33.2,14.2L26.2,17l0,8l0.2-0.1c0,0,0.1,0,0.1,0l0.7-0.3c-0.4-0.8-0.6-1.6-0.6-2.5c0-3,3-5.6,6.4-5.6c0,0,0,0,0.1,0L33.2,14.2z\"/><polyline fill=\"#29363E\" points=\"18,17.6 24.8,24.3 24.8,17.1 17.8,14.2 17.8,17.4 \"/><path fill=\"#29363E\" d=\"M38,26.1h-0.4c-0.9,1.3-2.7,2.8-4.4,2.8c-1.7,0-3.6-1.5-4.4-2.8h-0.4c-0.8,0-1.4,0.3-2,0.8l3.7,3.7l-2.5,2.5c0.5,2,1.6,5,3,5h5.4c1.8,0,3.2-5.1,3.2-6.5l2.2-2.4C41.2,27.8,39.7,26.1,38,26.1z\"/><path fill=\"#29363E\" d=\"M38.1,22.2c0,2.2-2.2,4.6-4.9,4.6c-2.7,0-4.9-2.4-4.9-4.6c0-2.2,2.2-4.1,4.9-4.1C35.9,18.1,38.1,20,38.1,22.2z\"/><g><polygon fill=\"#29363E\" points=\"27.9,30.6 18.5,21.2 18.5,27 8.8,27 8.8,34.1 18.5,34.1 18.5,39.9 \"/></g></g></svg>",
|
|
260
|
+
"surgery": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 51 51\" enable-background=\"new 0 0 51 51\" ><g><path fill=\"#4C4C4C\" d=\"M25.5,38.8c-7.2,0-13-5.8-13-13c0-6.4,4.6-11.8,10.9-12.8l0.4,0.9c-0.8,0.6-1.2,1.5-1.2,2.4c0,1.7,1.3,3,3,3s3-1.3,3-3c0-1-0.4-1.8-1.2-2.4l0.4-0.9c6.3,1,10.9,6.4,10.9,12.8C38.5,32.9,32.7,38.8,25.5,38.8z M22,14.3c-5,1.5-8.5,6.1-8.5,11.5c0,6.6,5.4,12,12,12s12-5.4,12-12c0-5.4-3.5-10-8.5-11.5c0.3,0.6,0.5,1.3,0.5,2c0,2.2-1.8,4-4,4s-4-1.8-4-4C21.5,15.5,21.7,14.9,22,14.3z\"/><path fill=\"#4C4C4C\" d=\"M30,34.3h-9c-0.8,0-1.5-0.7-1.5-1.5v-5c0-0.8,0.7-1.5,1.5-1.5h9c0.8,0,1.5,0.7,1.5,1.5v5C31.5,33.6,30.8,34.3,30,34.3z\"/><rect x=\"15.8\" y=\"23.1\" transform=\"matrix(0.2747 -0.9615 0.9615 0.2747 -13.7537 35.2664)\" fill=\"#4C4C4C\" width=\"1.5\" height=\"7.3\"/><rect x=\"30.9\" y=\"26\" transform=\"matrix(0.9615 -0.2749 0.2749 0.9615 -6.0243 10.5144)\" fill=\"#4C4C4C\" width=\"7.3\" height=\"1.5\"/><rect x=\"15.8\" y=\"32.5\" transform=\"matrix(0.9715 -0.237 0.237 0.9715 -7.3694 5.2014)\" fill=\"#4C4C4C\" width=\"4.2\" height=\"1.5\"/><rect x=\"32.3\" y=\"31.1\" transform=\"matrix(0.2368 -0.9716 0.9716 0.2368 -7.0792 57.4882)\" fill=\"#4C4C4C\" width=\"1.5\" height=\"4.2\"/><rect x=\"30.8\" y=\"14.2\" transform=\"matrix(5.361340e-03 -1 1 5.361340e-03 14.5533 48.1979)\" fill=\"#4C4C4C\" width=\"1.5\" height=\"5.1\"/><rect x=\"16.9\" y=\"16\" transform=\"matrix(1 -5.208263e-03 5.208263e-03 1 -8.714692e-02 0.1018)\" fill=\"#4C4C4C\" width=\"5.1\" height=\"1.5\"/><g><path fill=\"#4C4C4C\" d=\"M22,24c-0.5,0-1,0.1-1-1s0.5-2,1-2s1,0.9,1,2S22.5,24,22,24z\"/><path fill=\"#4C4C4C\" d=\"M22,24.2c-0.7,0-1.3,0-1.3-1.3s0.6-2.3,1.3-2.3s1.3,1,1.3,2.3S22.7,24.2,22,24.2z M22,21.2c-0.3,0-0.8,0.7-0.8,1.8s0.5,0.8,0.8,0.8s0.8,0.3,0.8-0.8S22.3,21.2,22,21.2z\"/></g><g><path fill=\"#4C4C4C\" d=\"M29,24c-0.5,0-1,0.1-1-1s0.5-2,1-2s1,0.9,1,2S29.5,24,29,24z\"/><path fill=\"#4C4C4C\" d=\"M29,24.2c-0.7,0-1.3,0-1.3-1.3s0.6-2.3,1.3-2.3s1.3,1,1.3,2.3S29.7,24.2,29,24.2z M29,21.2c-0.3,0-0.8,0.7-0.8,1.8s0.5,0.8,0.8,0.8s0.8,0.3,0.8-0.8S29.3,21.2,29,21.2z\"/></g><path fill=\"#4C4C4C\" d=\"M25.5,20.3c-2.2,0-4-1.8-4-4s1.8-4,4-4s4,1.8,4,4S27.7,20.3,25.5,20.3z\"/></g></svg>",
|
|
261
|
+
"tablechart": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"10\" y=\"12.67\" width=\"7.5\" height=\"25\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"17.5\" y=\"12.67\" width=\"22.5\" height=\"5\" fill=\"#484f60\" opacity=\"0.25\"/><rect x=\"10\" y=\"37.17\" width=\"30\" height=\"1\" fill=\"#484f60\"/><rect x=\"10\" y=\"27.17\" width=\"30\" height=\"1\" fill=\"#484f60\"/><rect x=\"10\" y=\"17.17\" width=\"30\" height=\"1\" fill=\"#484f60\"/><rect x=\"10\" y=\"12.17\" width=\"30\" height=\"1\" fill=\"#484f60\"/><rect x=\"10\" y=\"22.17\" width=\"30\" height=\"1\" fill=\"#484f60\"/><rect x=\"10\" y=\"32.17\" width=\"30\" height=\"1\" fill=\"#484f60\"/><rect x=\"9.5\" y=\"12.67\" width=\"1\" height=\"25\" fill=\"#484f60\"/><rect x=\"39.5\" y=\"12.67\" width=\"1\" height=\"25\" fill=\"#484f60\"/><rect x=\"24.5\" y=\"12.67\" width=\"1\" height=\"25\" fill=\"#484f60\"/><rect x=\"17\" y=\"12.67\" width=\"1\" height=\"25\" fill=\"#484f60\"/><rect x=\"32\" y=\"12.67\" width=\"1\" height=\"25\" fill=\"#484f60\"/></svg>",
|
|
262
|
+
"tag": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M40,29.15v-.68a5.28,5.28,0,0,0-1.34-3.25L24.78,11.34A5.34,5.34,0,0,0,21.53,10H11.9A1.91,1.91,0,0,0,10,11.9v9.63a5.28,5.28,0,0,0,1.34,3.25L25.22,38.66A5.28,5.28,0,0,0,28.47,40h.68a5.28,5.28,0,0,0,3.24-1.34l6.27-6.27A5.28,5.28,0,0,0,40,29.15ZM13.13,16.72a2.54,2.54,0,1,1,3.59,0A2.55,2.55,0,0,1,13.13,16.72Zm15.9,19L17.84,24.55l1.34-1.34L30.37,34.4Zm2.69-2.69L20.52,21.87l1.35-1.35,11.19,11.2Zm2.68-2.69L23.21,19.18l1.34-1.34L35.75,29Z\" fill=\"#484f60\"/></svg>",
|
|
263
|
+
"talk_too_much": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><ellipse cx=\"19.4\" cy=\"28.2\" rx=\"10.9\" ry=\"8\" fill=\"#4d5050\"/><path d=\"M290,428.4c0.9,2.7-1.6,6.7-8.5,8.3h0c2.8-.9,5.3-5.6,1.1-8.3H290Z\" transform=\"translate(-272.5 -396)\" fill=\"#4d5050\"/><path d=\"M315,414.2c0-4.4-4.9-8-10.9-8s-10.9,3.6-10.9,8v0.2c5.6,0.4,10.1,3.6,11.3,7.7C310.3,422.1,315,418.6,315,414.2Z\" transform=\"translate(-272.5 -396)\" fill=\"#4d5050\"/><path d=\"M306,418.5c-0.9,2.7,1.6,6.7,8.5,8.3h0c-2.8-.9-5.3-5.6-1.1-8.3H306Z\" transform=\"translate(-272.5 -396)\" fill=\"#4d5050\"/></svg>",
|
|
264
|
+
"target": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M13.67,25.17c0-.34,0-.67,0-1h-2c0,.33,0,.66,0,1A13.35,13.35,0,0,0,22,38.16V36.09A11.33,11.33,0,0,1,13.67,25.17Z\" fill=\"#484f60\"/><path d=\"M35.93,28.17A11.36,11.36,0,0,1,25,36.5c-.34,0-.67,0-1,0v2c.33,0,.66,0,1,0A13.35,13.35,0,0,0,38,28.17Z\" fill=\"#484f60\"/><path d=\"M25,13.83c.34,0,.67,0,1,.05v-2c-.33,0-.66,0-1,0A13.35,13.35,0,0,0,12,22.17h2.06A11.36,11.36,0,0,1,25,13.83Z\" fill=\"#484f60\"/><path d=\"M38.3,26.17c0-.33,0-.67,0-1A13.37,13.37,0,0,0,28,12.17v2.07a11.35,11.35,0,0,1,8.33,10.93c0,.33,0,.67,0,1Z\" fill=\"#484f60\"/><path d=\"M25,19.17a6.63,6.63,0,0,1,1,.08v-2a8.26,8.26,0,0,0-1-.06,8,8,0,0,0-7.41,5h2.22A6,6,0,0,1,25,19.17Z\" fill=\"#484f60\"/><path d=\"M19,25.17a6.53,6.53,0,0,1,.08-1h-2a8.14,8.14,0,0,0-.06,1,8,8,0,0,0,5,7.41V30.36A6,6,0,0,1,19,25.17Z\" fill=\"#484f60\"/><path d=\"M30.19,28.17a6,6,0,0,1-5.19,3,5.55,5.55,0,0,1-1-.09v2a8.26,8.26,0,0,0,1,.07,8,8,0,0,0,7.41-5Z\" fill=\"#484f60\"/><path d=\"M32.94,26.17a8.26,8.26,0,0,0,.06-1,8,8,0,0,0-5-7.42V20a6,6,0,0,1,3,5.2,6.63,6.63,0,0,1-.08,1Z\" fill=\"#484f60\"/><circle cx=\"25\" cy=\"25.17\" r=\"2.67\" fill=\"#484f60\"/><rect x=\"9\" y=\"24.17\" width=\"32\" height=\"2\" fill=\"#484f60\"/><rect x=\"24\" y=\"9.17\" width=\"2\" height=\"32\" fill=\"#484f60\"/></svg>",
|
|
265
|
+
"task": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M33.82,13.53h-.88v1.32h.88a.44.44,0,0,1,.44.44v23a.44.44,0,0,1-.44.44H16.18a.44.44,0,0,1-.44-.44v-23a.44.44,0,0,1,.44-.44h.88V13.53h-.88a1.76,1.76,0,0,0-1.77,1.76v23A1.76,1.76,0,0,0,16.18,40H33.82a1.76,1.76,0,0,0,1.77-1.76v-23A1.76,1.76,0,0,0,33.82,13.53Z\" fill=\"#484f60\"/><path d=\"M27.65,12.65a2.65,2.65,0,0,1-5.3,0H19.26a.88.88,0,0,0-.88.88v2.65a.89.89,0,0,0,.88.88H30.74a.89.89,0,0,0,.88-.88V13.53a.88.88,0,0,0-.88-.88Z\" fill=\"#484f60\"/><path d=\"M25,10a2.65,2.65,0,1,0,2.65,2.65A2.65,2.65,0,0,0,25,10Zm0,4a1.33,1.33,0,1,1,1.32-1.32A1.32,1.32,0,0,1,25,14Z\" fill=\"#484f60\"/><rect x=\"22.09\" y=\"21.51\" width=\"10\" height=\"1\" fill=\"#484f60\"/><rect x=\"22.09\" y=\"27.51\" width=\"10\" height=\"1\" fill=\"#484f60\"/><rect x=\"22.09\" y=\"33.51\" width=\"10\" height=\"1\" fill=\"#484f60\"/><path d=\"M20.09,33.51v1h-1v-1h1m1-1h-3v3h3v-3Z\" fill=\"#484f60\"/><polygon points=\"19.44 30.02 17.91 27.86 18.52 27.43 19.33 28.57 20.61 26.02 21.27 26.35 19.44 30.02\" fill=\"#484f60\"/><polygon points=\"19.44 24.02 17.91 21.86 18.52 21.43 19.33 22.57 20.61 20.02 21.27 20.35 19.44 24.02\" fill=\"#484f60\"/><path d=\"M25-1.67A23.35,23.35,0,0,1,1.67-25,23.35,23.35,0,0,1,25-48.33,23.35,23.35,0,0,1,48.33-25,23.35,23.35,0,0,1,25-1.67M25,0A25,25,0,0,0,50-25,25,25,0,0,0,25-50,25,25,0,0,0,0-25,25,25,0,0,0,25,0Z\" fill=\"#484f60\"/></svg>",
|
|
266
|
+
"thick_lines": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"10\" y=\"12.67\" width=\"30\" height=\"7\" fill=\"#484f60\"/><rect x=\"10\" y=\"21.67\" width=\"30\" height=\"7\" fill=\"#484f60\"/><rect x=\"10\" y=\"30.67\" width=\"30\" height=\"7\" fill=\"#484f60\"/></svg>",
|
|
267
|
+
"thin_lines": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"10\" y=\"14.17\" width=\"30\" height=\"4\" fill=\"#484f60\"/><rect x=\"10\" y=\"20.17\" width=\"30\" height=\"4\" fill=\"#484f60\"/><rect x=\"10\" y=\"26.17\" width=\"30\" height=\"4\" fill=\"#484f60\"/><rect x=\"10\" y=\"32.17\" width=\"30\" height=\"4\" fill=\"#484f60\"/></svg>",
|
|
268
|
+
"three_sixty_view": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M10,28.3c0,4,5.36,6.39,11.5,7.05V31.62c-5.56-.63-9.64-2.71-9.64-5.18,0-1.3,1.14-2.49,3-3.43l-.13-.12C11.91,24.1,10,25.91,10,28.3Z\" fill=\"#484f60\"/><path d=\"M35.21,22.87a1.59,1.59,0,0,1-.13.13c1.9.93,3.06,2.13,3.06,3.44,0,2.63-4.61,4.81-10.71,5.28l2.27,1.82-2.39,1.91C33.93,35,40,32.56,40,28.3,40,25.9,38.07,24.09,35.21,22.87Z\" fill=\"#484f60\"/><polygon points=\"26.5 33.54 21.5 37.54 21.5 29.54 26.5 33.54\" fill=\"#484f60\"/><path d=\"M13.5,19.2s10.7,15.5,23,0C36.5,19.2,26.2,4,13.5,19.2ZM25,24.87a5.59,5.59,0,1,1,5.59-5.59A5.59,5.59,0,0,1,25,24.87Z\" fill=\"#484f60\"/><path d=\"M27.45,17.74A2.46,2.46,0,1,1,25,15.29,2.45,2.45,0,0,1,27.45,17.74Z\" fill=\"#484f60\"/></svg>",
|
|
269
|
+
"thumb_bronze": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 51 51\" enable-background=\"new 0 0 51 51\" ><g><g><g><path fill=\"#A06F51\" d=\"M38.5,27.5c-0.3-0.5-0.2-1.2,0.2-1.6l1.2-1.4c0.4-0.4,0.3-1-0.1-1.4l-1.5-1.1c-0.4-0.3-0.7-1-0.5-1.6l0.5-1.7c0.2-0.5-0.1-1.1-0.7-1.2l-1.8-0.4c-0.5-0.1-1-0.7-1.1-1.2l-0.2-1.8c-0.1-0.5-0.6-0.9-1.1-0.8l-1.8,0.3c-0.5,0.1-1.2-0.2-1.5-0.7l-0.9-1.6c-0.3-0.5-0.9-0.6-1.3-0.3l-1.5,1c-0.5,0.3-1.2,0.3-1.6,0l-1.5-1c-0.5-0.3-1.1-0.2-1.3,0.3L20.9,13c-0.3,0.5-1,0.8-1.5,0.7l-1.8-0.3c-0.5-0.1-1,0.3-1.1,0.8l-0.2,1.8c-0.1,0.5-0.6,1.1-1.1,1.2l-1.8,0.4c-0.5,0.1-0.8,0.7-0.7,1.2l0.5,1.7c0.2,0.5-0.1,1.2-0.5,1.6l-1.5,1.1c-0.4,0.3-0.5,0.9-0.1,1.4l1.2,1.4c0.4,0.4,0.4,1.2,0.2,1.6l-0.9,1.6c-0.3,0.5-0.1,1.1,0.4,1.3l1.6,0.8c0.5,0.2,0.9,0.9,0.8,1.4l-0.2,1.8c0,0.5,0.4,1,0.9,1l1.8,0c0.5,0,1.1,0.4,1.3,1l0.6,1.7c0.2,0.5,0.7,0.8,1.2,0.6L22,38c0.5-0.2,1.2-0.1,1.6,0.3l1.2,1.3c0.4,0.4,1,0.4,1.4,0l1.2-1.3c0.4-0.4,1.1-0.6,1.6-0.3l1.7,0.7c0.5,0.2,1.1,0,1.2-0.6l0.6-1.7c0.2-0.5,0.8-1,1.3-1l1.8,0c0.5,0,1-0.5,0.9-1l-0.2-1.8c0-0.5,0.3-1.2,0.8-1.4l1.6-0.8c0.5-0.2,0.7-0.8,0.4-1.3L38.5,27.5z M25.5,37.5c-6.6,0-12-5.4-12-12c0-6.6,5.4-12,12-12c6.6,0,12,5.4,12,12C37.5,32.1,32.1,37.5,25.5,37.5z\"/></g></g><path fill=\"#CF8E67\" d=\"M25.5,37C19.2,37,14,31.8,14,25.5S19.2,14,25.5,14S37,19.2,37,25.5S31.8,37,25.5,37z\"/><g><path fill=\"#FFFFFF\" d=\"M18.5,25.1c1.1-0.2,2.1-0.3,3.2-0.5c-0.4,1.6,0.1,5.2,2,5.5c-0.5,1.7-2.9,0.5-3.7-0.4C19,28.5,18.5,26.7,18.5,25.1\"/><path fill=\"#FFFFFF\" d=\"M24.4,29.8c-1.2-0.1-1.8-1.8-2-3c-0.4-2.1,0.3-1.7,1.5-2.9c1-1,2.1-2.2,3.1-3.3c0.5-0.5,2.1-3.4,2.6-2.3c0.9,1.8-2.3,3.4-1,4.8c0.9,0.9,2.4-0.3,3.3,0.2c0.8,0.5,0.9,1.5-0.3,1.7c1,0.6,0.9,1.5-0.1,2c0.7,0.5,0.6,1-0.1,1.4c-0.6,0.4,0.1,1-0.8,1.7C29,31.1,26.1,30.1,24.4,29.8\"/></g></g></svg>",
|
|
270
|
+
"thumb_gold": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 51 51\" enable-background=\"new 0 0 51 51\" ><g><g><g><path fill=\"#CB9618\" d=\"M38.5,27.5c-0.3-0.5-0.2-1.2,0.2-1.6l1.2-1.4c0.4-0.4,0.3-1-0.1-1.4l-1.5-1.1c-0.4-0.3-0.7-1-0.5-1.6l0.5-1.7c0.2-0.5-0.1-1.1-0.7-1.2l-1.8-0.4c-0.5-0.1-1-0.7-1.1-1.2l-0.2-1.8c-0.1-0.5-0.6-0.9-1.1-0.8l-1.8,0.3c-0.5,0.1-1.2-0.2-1.5-0.7l-0.9-1.6c-0.3-0.5-0.9-0.6-1.3-0.3l-1.5,1c-0.5,0.3-1.2,0.3-1.6,0l-1.5-1c-0.5-0.3-1.1-0.2-1.3,0.3L20.9,13c-0.3,0.5-1,0.8-1.5,0.7l-1.8-0.3c-0.5-0.1-1,0.3-1.1,0.8l-0.2,1.8c-0.1,0.5-0.6,1.1-1.1,1.2l-1.8,0.4c-0.5,0.1-0.8,0.7-0.7,1.2l0.5,1.7c0.2,0.5-0.1,1.2-0.5,1.6l-1.5,1.1c-0.4,0.3-0.5,0.9-0.1,1.4l1.2,1.4c0.4,0.4,0.4,1.2,0.2,1.6l-0.9,1.6c-0.3,0.5-0.1,1.1,0.4,1.3l1.6,0.8c0.5,0.2,0.9,0.9,0.8,1.4l-0.2,1.8c0,0.5,0.4,1,0.9,1l1.8,0c0.5,0,1.1,0.4,1.3,1l0.6,1.7c0.2,0.5,0.7,0.8,1.2,0.6L22,38c0.5-0.2,1.2-0.1,1.6,0.3l1.2,1.3c0.4,0.4,1,0.4,1.4,0l1.2-1.3c0.4-0.4,1.1-0.6,1.6-0.3l1.7,0.7c0.5,0.2,1.1,0,1.2-0.6l0.6-1.7c0.2-0.5,0.8-1,1.3-1l1.8,0c0.5,0,1-0.5,0.9-1l-0.2-1.8c0-0.5,0.3-1.2,0.8-1.4l1.6-0.8c0.5-0.2,0.7-0.8,0.4-1.3L38.5,27.5z M25.5,37.5c-6.6,0-12-5.4-12-12c0-6.6,5.4-12,12-12c6.6,0,12,5.4,12,12C37.5,32.1,32.1,37.5,25.5,37.5z\"/></g></g><path fill=\"#F0B016\" d=\"M25.5,37C19.2,37,14,31.8,14,25.5S19.2,14,25.5,14S37,19.2,37,25.5S31.8,37,25.5,37z\"/><g><path fill=\"#FFFFFF\" d=\"M18.5,25.1c1.1-0.2,2.1-0.3,3.2-0.5c-0.4,1.6,0.1,5.2,2,5.5c-0.5,1.7-2.9,0.5-3.7-0.4C19,28.5,18.5,26.7,18.5,25.1\"/><path fill=\"#FFFFFF\" d=\"M24.4,29.8c-1.2-0.1-1.8-1.8-2-3c-0.4-2.1,0.3-1.7,1.5-2.9c1-1,2.1-2.2,3.1-3.3c0.5-0.5,2.1-3.4,2.6-2.3c0.9,1.8-2.3,3.4-1,4.8c0.9,0.9,2.4-0.3,3.3,0.2c0.8,0.5,0.9,1.5-0.3,1.7c1,0.6,0.9,1.5-0.1,2c0.7,0.5,0.6,1-0.1,1.4c-0.6,0.4,0.1,1-0.8,1.7C29,31.1,26.1,30.1,24.4,29.8\"/></g></g></svg>",
|
|
271
|
+
"thumb_silver": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 51 51\" enable-background=\"new 0 0 51 51\" ><g><g><g><path fill=\"#C0C1C2\" d=\"M38.5,27.5c-0.3-0.5-0.2-1.2,0.2-1.6l1.2-1.4c0.4-0.4,0.3-1-0.1-1.4l-1.5-1.1c-0.4-0.3-0.7-1-0.5-1.6l0.5-1.7c0.2-0.5-0.1-1.1-0.7-1.2l-1.8-0.4c-0.5-0.1-1-0.7-1.1-1.2l-0.2-1.8c-0.1-0.5-0.6-0.9-1.1-0.8l-1.8,0.3c-0.5,0.1-1.2-0.2-1.5-0.7l-0.9-1.6c-0.3-0.5-0.9-0.6-1.3-0.3l-1.5,1c-0.5,0.3-1.2,0.3-1.6,0l-1.5-1c-0.5-0.3-1.1-0.2-1.3,0.3L20.9,13c-0.3,0.5-1,0.8-1.5,0.7l-1.8-0.3c-0.5-0.1-1,0.3-1.1,0.8l-0.2,1.8c-0.1,0.5-0.6,1.1-1.1,1.2l-1.8,0.4c-0.5,0.1-0.8,0.7-0.7,1.2l0.5,1.7c0.2,0.5-0.1,1.2-0.5,1.6l-1.5,1.1c-0.4,0.3-0.5,0.9-0.1,1.4l1.2,1.4c0.4,0.4,0.4,1.2,0.2,1.6l-0.9,1.6c-0.3,0.5-0.1,1.1,0.4,1.3l1.6,0.8c0.5,0.2,0.9,0.9,0.8,1.4l-0.2,1.8c0,0.5,0.4,1,0.9,1l1.8,0c0.5,0,1.1,0.4,1.3,1l0.6,1.7c0.2,0.5,0.7,0.8,1.2,0.6L22,38c0.5-0.2,1.2-0.1,1.6,0.3l1.2,1.3c0.4,0.4,1,0.4,1.4,0l1.2-1.3c0.4-0.4,1.1-0.6,1.6-0.3l1.7,0.7c0.5,0.2,1.1,0,1.2-0.6l0.6-1.7c0.2-0.5,0.8-1,1.3-1l1.8,0c0.5,0,1-0.5,0.9-1l-0.2-1.8c0-0.5,0.3-1.2,0.8-1.4l1.6-0.8c0.5-0.2,0.7-0.8,0.4-1.3L38.5,27.5z M25.5,37.5c-6.6,0-12-5.4-12-12c0-6.6,5.4-12,12-12c6.6,0,12,5.4,12,12C37.5,32.1,32.1,37.5,25.5,37.5z\"/></g></g><path fill=\"#E2E2E2\" d=\"M25.5,37C19.2,37,14,31.8,14,25.5S19.2,14,25.5,14S37,19.2,37,25.5S31.8,37,25.5,37z\"/><g><path fill=\"#FFFFFF\" d=\"M18.5,25.1c1.1-0.2,2.1-0.3,3.2-0.5c-0.4,1.6,0.1,5.2,2,5.5c-0.5,1.7-2.9,0.5-3.7-0.4C19,28.5,18.5,26.7,18.5,25.1\"/><path fill=\"#FFFFFF\" d=\"M24.4,29.8c-1.2-0.1-1.8-1.8-2-3c-0.4-2.1,0.3-1.7,1.5-2.9c1-1,2.1-2.2,3.1-3.3c0.5-0.5,2.1-3.4,2.6-2.3c0.9,1.8-2.3,3.4-1,4.8c0.9,0.9,2.4-0.3,3.3,0.2c0.8,0.5,0.9,1.5-0.3,1.7c1,0.6,0.9,1.5-0.1,2c0.7,0.5,0.6,1-0.1,1.4c-0.6,0.4,0.1,1-0.8,1.7C29,31.1,26.1,30.1,24.4,29.8\"/></g></g></svg>",
|
|
272
|
+
"timeline": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"10\" y=\"10\" width=\"11\" height=\"6\" fill=\"#484f60\"/><rect x=\"29\" y=\"18\" width=\"11\" height=\"6\" fill=\"#484f60\"/><rect x=\"10\" y=\"26\" width=\"11\" height=\"6\" fill=\"#484f60\"/><circle cx=\"25\" cy=\"13\" r=\"2\" fill=\"#484f60\"/><circle cx=\"25\" cy=\"21\" r=\"2\" fill=\"#484f60\"/><circle cx=\"25\" cy=\"29\" r=\"2\" fill=\"#484f60\"/><rect x=\"29\" y=\"34\" width=\"11\" height=\"6\" fill=\"#484f60\"/><circle cx=\"25\" cy=\"37\" r=\"2\" fill=\"#484f60\"/><rect x=\"24.5\" y=\"16\" width=\"1\" height=\"2\" fill=\"#484f60\"/><rect x=\"24.5\" y=\"32\" width=\"1\" height=\"2\" fill=\"#484f60\"/><rect x=\"24.5\" y=\"24\" width=\"1\" height=\"2\" fill=\"#484f60\"/></svg>",
|
|
273
|
+
"transactions": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 50 50\" enable-background=\"new 0 0 50 50\" ><g><path fill=\"#333333\" d=\"M29.8,18.9c-1.9,0-2.1-0.3-2.1-2.1v-6.3l8.2,8.4H29.8z\"/><path fill=\"#333333\" d=\"M15.8,40c-1.9,0-2.1-0.3-2.1-2.1V12.1c0-1.9,0.3-2.1,2.1-2.1h10v6.7c0,2.9,1.1,4,4,4h6.5v17.1c0,1.9-0.3,2.1-2.1,2.1H15.8z M29.4,32h4.1v-1.8h-4.1V32z M29.4,28.4h4.1v-1.8h-4.1V28.4z M29.4,24.7h4.1v-1.8h-4.1V24.7z M16.3,32h11.5v-1.8H16.3V32z M16.3,28.4h11.5v-1.8H16.3V28.4z M16.3,24.7h11.5v-1.8H16.3V24.7z M27.4,36.9h6.1v-1.8h-6.1V36.9z M16.3,14.3h6.1v-1.8h-6.1V14.3z M16.3,16.7h6.1v-1.8h-6.1V16.7z\"/></g></svg>",
|
|
274
|
+
"transaction_detail": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><g opacity=\"0.5\"><rect x=\"15.5\" y=\"18\" width=\"6\" height=\"1\" fill=\"#4d5050\"/><rect x=\"15.5\" y=\"22\" width=\"10\" height=\"1\" fill=\"#4d5050\"/><rect x=\"15.5\" y=\"26\" width=\"10\" height=\"1\" fill=\"#4d5050\"/><rect x=\"15.5\" y=\"30\" width=\"10\" height=\"1\" fill=\"#4d5050\"/><polygon points=\"35 18.98 33.5 18.98 33.5 25.52 35 27.02 35 18.98\" fill=\"#4d5050\"/><path d=\"M671,398V372a.5.5,0,0,1,.5-.5h13.73V370H671.5a2,2,0,0,0-2,2v26a2,2,0,0,0,2,2h19.14v-1.5H671.5A.5.5,0,0,1,671,398Z\" transform=\"translate(-658.5 -359.5)\" fill=\"#4d5050\"/><path d=\"M685.23,370v6.44c0,1.78.27,2,2,2h6.22Z\" transform=\"translate(-658.5 -359.5)\" fill=\"#4d5050\"/><rect x=\"15.5\" y=\"15\" width=\"6\" height=\"1\" fill=\"#4d5050\"/><rect x=\"27.5\" y=\"22\" width=\"3\" height=\"1\" fill=\"#4d5050\"/><rect x=\"27.5\" y=\"26\" width=\"3\" height=\"1\" fill=\"#4d5050\"/><rect x=\"27.5\" y=\"30\" width=\"3\" height=\"0.57\" fill=\"#4d5050\"/><path d=\"M684.69,392.66a.5.5,0,0,0-.29-.28.51.51,0,0,0-.4,0l-2.23,1.16a.5.5,0,0,0,.46.89l1.75-.9.79,1.93a.49.49,0,0,0,.23.24V393.4Z\" transform=\"translate(-658.5 -359.5)\" fill=\"#4d5050\"/></g><polygon points=\"33.64 32.07 28 32.07 28 36.2 33.64 36.2 33.64 36.2 33.64 40.5 40 34.14 33.64 27.77 33.64 32.07\" fill=\"#4d5050\"/></svg>",
|
|
275
|
+
"TrashBin": "<svg preserveAspectRatio=\"none\" version=\"1.1\" viewBox=\"0 0 50 50\" x=\"0px\" xmlns=\"http://www.w3.org/2000/svg\" y=\"0px\"><g transform=\" translate(14 10)\"><path d=\"M 0 0 L 0 18.215 C 0 19.99 1.439 21.429 3.215 21.429 L 15 21.429 C 16.775 21.429 18.215 19.99 18.215 18.215 L 18.215 0 L 0 0 Z M 4.287 19.286 L 2.143 19.286 L 2.143 2.143 L 4.287 2.143 L 4.287 19.286 Z M 10.18 19.286 L 8.037 19.286 L 8.037 2.143 L 10.18 2.143 L 10.18 19.286 Z M 16.072 19.286 L 13.93 19.286 L 13.93 2.143 L 16.072 2.143 L 16.072 19.286 Z\" fill=\"#1E2930\" transform=\" translate(1.891 8.571)\" /><path d=\"M 18.213 2.143 L 10.713 2.143 C 11.305 2.143 11.785 1.664 11.785 1.071 C 11.785 0.479 11.305 0 10.713 0 L 9.643 0 C 9.051 0 8.57 0.479 8.57 1.071 C 8.57 1.664 9.051 2.143 9.643 2.143 L 2.143 2.143 C 0.959 2.143 0 3.103 0 4.286 L 0 5.357 C 0 6.541 0.959 6.429 2.143 6.429 L 18.213 6.429 C 19.397 6.429 20.357 6.541 20.357 5.357 L 20.357 4.286 C 20.357 3.103 19.397 2.143 18.213 2.143 Z\" fill=\"#1E2930\" transform=\" translate(0.821 0)\" /></g></svg>",
|
|
276
|
+
"trash_can_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M135.2 17.69C140.6 6.848 151.7 0 163.8 0H284.2C296.3 0 307.4 6.848 312.8 17.69L320 32H416C433.7 32 448 46.33 448 64C448 81.67 433.7 96 416 96H32C14.33 96 0 81.67 0 64C0 46.33 14.33 32 32 32H128L135.2 17.69zM31.1 128H416V448C416 483.3 387.3 512 352 512H95.1C60.65 512 31.1 483.3 31.1 448V128zM111.1 208V432C111.1 440.8 119.2 448 127.1 448C136.8 448 143.1 440.8 143.1 432V208C143.1 199.2 136.8 192 127.1 192C119.2 192 111.1 199.2 111.1 208zM207.1 208V432C207.1 440.8 215.2 448 223.1 448C232.8 448 240 440.8 240 432V208C240 199.2 232.8 192 223.1 192C215.2 192 207.1 199.2 207.1 208zM304 208V432C304 440.8 311.2 448 320 448C328.8 448 336 440.8 336 432V208C336 199.2 328.8 192 320 192C311.2 192 304 199.2 304 208z\"/></svg>",
|
|
277
|
+
"triangle_down": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"29.06 18.75 37.5 18.75 25 31.25 12.5 18.75 20.95 18.75 29.06 18.75\" fill=\"#484f60\"/></svg>",
|
|
278
|
+
"triangle_large": "<svg version=\"1.1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 50 50\" enable-background=\"new 0 0 50 50\"><g><polygon fill=\"green\" points=\"0 0, 100 100, 0 100\"/></g></svg>",
|
|
279
|
+
"triangle_left": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"31.25 29.06 31.25 37.5 18.75 25 31.25 12.5 31.25 20.95 31.25 29.06\" fill=\"#484f60\"/></svg>",
|
|
280
|
+
"triangle_right": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"18.75 20.94 18.75 12.5 31.25 25 18.75 37.5 18.75 29.05 18.75 20.94\" fill=\"#484f60\"/></svg>",
|
|
281
|
+
"triangle_up": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"20.94 31.25 12.5 31.25 25 18.75 37.5 31.25 29.05 31.25 20.94 31.25\" fill=\"#484f60\"/></svg>",
|
|
282
|
+
"truck": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"10\" y=\"14.75\" width=\"17.47\" height=\"12.62\" fill=\"#484f60\"/><path d=\"M37,18.11h-8V28.84H20.22a4.42,4.42,0,0,1,1.41,2.73H30a4.41,4.41,0,0,1,8.76,0H40V24.63Zm-.26,6.73H32.25a.57.57,0,0,1-.57-.57V20a.57.57,0,0,1,.57-.58h2.63a.58.58,0,0,1,.52.35L37.31,24A.58.58,0,0,1,36.78,24.84Z\" fill=\"#484f60\"/><path d=\"M14.28,28.84a4.39,4.39,0,0,0-1.42,2.73H12l-2-1.26V28.84Z\" fill=\"#484f60\"/><path d=\"M31.25,32.1a3.16,3.16,0,1,0,3.16-3.16A3.16,3.16,0,0,0,31.25,32.1Z\" fill=\"#484f60\"/><path d=\"M14.09,32.1a3.16,3.16,0,1,0,3.16-3.16A3.15,3.15,0,0,0,14.09,32.1Z\" fill=\"#484f60\"/></svg>",
|
|
283
|
+
"truck_calendar": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M312.6,408.7H297.3a0.8,0.8,0,0,0-.8.8v3.8h16.9v-3.8A0.8,0.8,0,0,0,312.6,408.7Zm-12.1,3.7a1.3,1.3,0,1,1,1.3-1.3A1.3,1.3,0,0,1,300.5,412.5Zm8.8,0a1.3,1.3,0,1,1,1.3-1.3A1.3,1.3,0,0,1,309.3,412.5Z\" transform=\"translate(-272.4 -397)\" fill=\"#fff\" opacity=\"0.5\"/><path d=\"M313.4,415H296.5v7.7h4.6v-3h-0.8v-1.4a0.9,0.9,0,0,0,.8-0.4,1.2,1.2,0,0,0,.3-0.8h1.8v5.5h3.2l0.9-1.6a4,4,0,0,0,.4-1.9q0-.6-0.4-0.6a0.4,0.4,0,0,0-.4.4v1.6h-1.9v-1.6q0-1.8,2.3-1.8a2.2,2.2,0,0,1,1.9.7,3.9,3.9,0,0,1,.5,2.2,2.1,2.1,0,0,1-.2,1l-0.9,1.7h1.6v5.9l3.2-3.2V415Z\" transform=\"translate(-272.4 -397)\" fill=\"#fff\" opacity=\"0.5\"/><rect x=\"27.6\" y=\"9\" width=\"1.2\" height=\"3.86\" fill=\"#fff\" opacity=\"0.5\"/><rect x=\"36.4\" y=\"9\" width=\"1.1\" height=\"3.86\" fill=\"#fff\" opacity=\"0.5\"/><rect x=\"17.5\" y=\"27.1\" width=\"18.9\" height=\"8.57\" rx=\"1\" ry=\"1\" fill=\"#fff\"/><path d=\"M288.8,433.6v-7.3h-5.4l-2,4.4v4.7h0.8a3,3,0,0,1,6,0h11.2a3,3,0,0,1,1-1.9H288.8Zm-1.8-3.6a0.9,0.9,0,0,1-.9.9h-2.4a0.9,0.9,0,0,1-.9-0.9s1.1-2.9,1.7-2.9h1.6a0.9,0.9,0,0,1,.9.9v2Z\" transform=\"translate(-272.4 -397)\" fill=\"#fff\"/><path d=\"M305.3,433.6c-0.6,0-.8.3-0.6,0.6s0.8,1.3,1.2,1.3l1.6-.4h0.3a1.4,1.4,0,0,0,.9-0.9,0.9,0.9,0,0,0-1-.5h-2.5Z\" transform=\"translate(-272.4 -397)\" fill=\"#fff\"/><circle cx=\"12.8\" cy=\"38.9\" r=\"2.1\" fill=\"#fff\"/><circle cx=\"29.9\" cy=\"38.9\" r=\"2.1\" fill=\"#fff\"/></svg>",
|
|
284
|
+
"undo_round_open": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"22.18 17.59 20.94 15.25 18.38 20.68 24.3 21.62 23.38 19.88 22.18 17.59\" fill=\"#484f60\"/><path d=\"M21.78,18.07l.34-.12A8.49,8.49,0,1,1,25,34.43h0a8.49,8.49,0,0,1-8.48-8h1.41A7.1,7.1,0,0,0,25,33a7.1,7.1,0,1,0,0-14.2,6.87,6.87,0,0,0-1.57.18l-.78.17Z\" fill=\"#484f60\"/><path d=\"M25,40.67a15.5,15.5,0,1,1,15.5-15.5A15.52,15.52,0,0,1,25,40.67Zm0-30a14.5,14.5,0,1,0,14.5,14.5A14.51,14.51,0,0,0,25,10.67Z\" fill=\"#484f60\"/></svg>",
|
|
285
|
+
"user": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 50 50\" enable-background=\"new 0 0 50 50\" ><g><path fill=\"#878787\" d=\"M32.3,22h-0.6c-1.3,1.9-4.1,4.1-6.7,4.1c-2.6,0-5.3-2.2-6.7-4.1h-0.6c-2.7,0-4.8,2.5-4.8,4.6l3.2,3.5c0,2.1,2.2,9.8,4.8,9.8H29c2.7,0,4.8-7.6,4.8-9.8l3.2-3.5C37.1,24.5,34.9,22,32.3,22z\"/><path fill=\"#878787\" d=\"M32.4,16.2c0,3.3-3.3,6.9-7.4,6.9c-4.1,0-7.4-3.7-7.4-6.9c0-3.3,3.3-6.2,7.4-6.2C29.1,10,32.4,12.9,32.4,16.2z\"/></g></svg>",
|
|
286
|
+
"variants": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><g opacity=\"0.5\"><path d=\"M19,28.6l-.78-1.81H14.74L14,28.6H12l3.62-8.39h1.82L21,28.6Zm-2.53-5.89-1.06,2.43h2.1Z\" fill=\"#484f60\"/><path d=\"M23.5,35.5H9.5v-21h14Zm-13-1h12v-19h-12Z\" fill=\"#484f60\"/></g><path d=\"M34.07,28.6H30.4V20.21h3.26a4.88,4.88,0,0,1,1.47.2,2.1,2.1,0,0,1,.93.56,2.15,2.15,0,0,1,.57,1.46A1.72,1.72,0,0,1,36,23.89a1.17,1.17,0,0,1-.3.21l-.3.14a2.22,2.22,0,0,1,1.24.7,2,2,0,0,1,.46,1.33,2.27,2.27,0,0,1-.6,1.55A3.12,3.12,0,0,1,34.07,28.6Zm-1.8-5h.89a3.12,3.12,0,0,0,1.16-.16.71.71,0,0,0,.37-.73.76.76,0,0,0-.34-.74,2.81,2.81,0,0,0-1.18-.18h-.9Zm0,3.41h1.28a2.73,2.73,0,0,0,1.21-.2.77.77,0,0,0,.4-.77.75.75,0,0,0-.42-.77,3.56,3.56,0,0,0-1.37-.19h-1.1Z\" fill=\"#484f60\"/><path d=\"M40.5,35.5h-14v-21h14Zm-13-1h12v-19h-12Z\" fill=\"#484f60\"/></svg>",
|
|
287
|
+
"vbarchart": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"15\" y=\"26.17\" width=\"4\" height=\"8\" fill=\"#484f60\"/><rect x=\"23\" y=\"16.17\" width=\"4\" height=\"18\" fill=\"#484f60\"/><rect x=\"31\" y=\"12.17\" width=\"4\" height=\"22\" fill=\"#484f60\"/><path d=\"M40,38.17H10v-26h1v25H40Z\" fill=\"#484f60\"/></svg>",
|
|
288
|
+
"view": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M42.23,20.39H40.61c-4.19-2.23-11.11-.52-13.92,0H23.31c-2.81-.52-9.73-2.23-13.92,0H7.77a2.49,2.49,0,0,0,0,2.2c1.42-.18,1.22.63,1.22.63s-.07,7.64,6.75,7.84,8-7.57,8-7.57A2.33,2.33,0,0,1,25,23.36a2.33,2.33,0,0,1,1.28.13s1.15,7.77,8,7.57S41,23.22,41,23.22s-.2-.81,1.22-.63A2.49,2.49,0,0,0,42.23,20.39Zm-20,3.42s-.94,6.29-6.46,6.13-5.48-6.35-5.48-6.35l.33-2.3c3.4-1.8,9.81-.41,12.09,0Zm12.36,6.13c-5.53.16-6.46-6.13-6.46-6.13l-.48-2.52c2.27-.41,8.69-1.8,12.08,0l.33,2.3S40.11,29.78,34.58,29.94Z\" fill=\"#484f60\"/></svg>",
|
|
289
|
+
"warehouse": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"19.54\" y=\"30.45\" width=\"4.77\" height=\"9.55\" fill=\"#484f60\"/><rect x=\"25.68\" y=\"30.45\" width=\"4.77\" height=\"9.55\" fill=\"#484f60\"/><path d=\"M25,10,10,16.82V40h6.82V27.73H33.18V40H40V16.82Z\" fill=\"#484f60\"/></svg>",
|
|
290
|
+
"watermark": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 228.2 60\"><rect width=\"16.5\" height=\"52.3\" fill=\"#ed0a0a\"/><path d=\"M103.3,30A40.3,40.3,0,0,0,91.8,1.1L90.7,0H35.8L34.7,1.1A40.3,40.3,0,0,0,23.2,30,40.2,40.2,0,0,0,34.7,58.9L35.8,60H90.7l1.1-1.1A40.3,40.3,0,0,0,103.3,30ZM79.9,47.8c-4.5,4.8-9.7,7-16.6,7s-12.2-2.2-16.7-7S39.9,37.1,39.9,30s2.2-13,6.7-17.8,9.8-7,16.7-7,12.1,2.2,16.6,7A25.1,25.1,0,0,1,86.6,30C86.6,37.1,84.4,43,79.9,47.8Z\" transform=\"translate(-0.9)\" fill=\"#ed0a0a\"/><polygon points=\"161.5 0 161.5 38.6 127.9 0 108.2 0 108.2 60 124.7 60 124.7 21.5 158.3 60 178 60 178 0 161.5 0\" fill=\"#ed0a0a\"/><polygon points=\"200.3 53.7 200.3 34.8 224.6 34.8 224.6 19.1 200.3 19.1 200.3 6.1 227.2 6.1 227.2 0 183.8 0 183.8 60 228.2 60 228.2 53.7 200.3 53.7\" fill=\"#ed0a0a\"/></svg>",
|
|
291
|
+
"website": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M12.71,40.17,11,34.57h1l.89,3.23L13.2,39c0-.06.11-.44.29-1.15l.89-3.28h1l.83,3.25.28,1.07.32-1.08,1-3.24h.92l-1.74,5.6h-1l-.89-3.35-.22-1L13.7,40.17Z\" fill=\"#484f60\"/><path d=\"M21.37,40.17l-1.71-5.6h1l.89,3.23.33,1.2c0-.06.11-.44.29-1.15L23,34.57h1l.84,3.25.28,1.07.32-1.08,1-3.24h.92l-1.75,5.6h-1l-.89-3.35-.22-1-1.13,4.31Z\" fill=\"#484f60\"/><path d=\"M30,40.17l-1.71-5.6h1l.89,3.23.33,1.2c0-.06.11-.44.29-1.15l.89-3.28h1l.84,3.25.28,1.07.32-1.08,1-3.24H36l-1.75,5.6h-1l-.89-3.35-.22-1L31,40.17Z\" fill=\"#484f60\"/><polyline points=\"12.44 32.26 12.44 15.15 24.68 15.15 25.59 14.25 24.05 12.71 10 12.71 10 32.26\" fill=\"#484f60\"/><polyline points=\"36.99 32.26 36.99 25.65 35.92 24.58 34.55 25.95 34.55 32.26\" fill=\"#484f60\"/><polygon points=\"40 10.17 27.92 10.17 32 14.25 22.24 26 24.16 27.92 35.92 18.17 40 22.25 40 10.17\" fill=\"#484f60\"/></svg>",
|
|
292
|
+
"wizard": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 26.5 30.9\"><polygon points=\"12.3 0 11.5 2.2 9.2 2.9 11.1 4.4 11.1 6.7 13 5.4 15.2 6.2 14.6 3.9 16 2 13.6 1.9 12.3 0\" fill=\"#fff\"/><polygon points=\"3.6 3.7 4.5 5.2 3.7 6.8 5.4 6.5 6.7 7.7 6.9 5.9 8.5 5.1 6.9 4.3 6.6 2.6 5.4 3.9 3.6 3.7\" fill=\"#fff\"/><polygon points=\"0 9.8 0.9 10.4 0.9 11.4 1.7 10.8 2.8 11.1 2.4 10.1 3 9.2 2 9.3 1.3 8.4 1 9.4 0 9.8\" fill=\"#fff\"/><polygon points=\"14.2 30.9 15 28.7 17.2 28 15.4 26.6 15.4 24.2 13.4 25.5 11.2 24.8 11.9 27 10.5 28.9 12.8 29 14.2 30.9\" fill=\"#fff\"/><polygon points=\"22.8 27.3 22 25.7 22.7 24.1 21 24.4 19.8 23.3 19.5 25 18 25.8 19.6 26.6 19.9 28.3 21.1 27 22.8 27.3\" fill=\"#fff\"/><polygon points=\"26.5 21.1 25.6 20.5 25.6 19.5 24.7 20.1 23.7 19.8 24 20.8 23.4 21.7 24.5 21.7 25.1 22.5 25.5 21.5 26.5 21.1\" fill=\"#fff\"/><polygon points=\"13 19.4 8.4 22.6 10 17.2 5.5 13.8 11.2 13.7 13 8.3 14.8 13.7 20.5 13.8 16 17.2 17.6 22.6 13 19.4\" fill=\"#fff\"/></svg>",
|
|
293
|
+
"wms": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 50 50\" enable-background=\"new 0 0 50 50\" ><g><polygon fill=\"#2A363B\" points=\"20,32.1 25,29.2 29.9,32.1 25,34.9 \"/><polygon opacity=\"0.5\" fill=\"#2A363B\" points=\"25.5,35.9 30.5,33 30.5,38.7 25.5,41.6 \"/><polygon opacity=\"0.25\" fill=\"#2A363B\" points=\"19.5,38.7 19.5,33 24.5,35.9 24.5,41.6 \"/><polygon fill=\"#2A363B\" points=\"26,21.7 31,18.8 35.9,21.7 31,24.5 \"/><polygon opacity=\"0.5\" fill=\"#2A363B\" points=\"31.5,25.4 36.5,22.6 36.5,28.3 31.5,31.2 \"/><polygon opacity=\"0.25\" fill=\"#2A363B\" points=\"25.5,28.3 25.5,22.6 30.5,25.4 30.5,31.2 \"/><polygon fill=\"#2A363B\" points=\"14,21.7 19,18.8 23.9,21.7 19,24.5 \"/><polygon opacity=\"0.5\" fill=\"#2A363B\" points=\"19.5,25.5 24.4,22.6 24.5,28.3 19.5,31.2 \"/><polygon opacity=\"0.25\" fill=\"#2A363B\" points=\"13.5,28.3 13.5,22.6 18.4,25.5 18.5,31.2 \"/><polygon fill=\"#2A363B\" points=\"8,32.1 13,29.2 17.9,32.1 13,35 \"/><polygon opacity=\"0.5\" fill=\"#2A363B\" points=\"13.5,35.9 18.5,33 18.5,38.7 13.5,41.6 \"/><polygon opacity=\"0.25\" fill=\"#2A363B\" points=\"7.5,38.7 7.5,33 12.5,35.9 12.5,41.6 \"/><polygon fill=\"#2A363B\" points=\"32.1,32.1 37,29.2 42,32 37,34.9 \"/><polygon opacity=\"0.5\" fill=\"#2A363B\" points=\"37.5,35.8 42.5,33 42.5,38.7 37.6,41.5 \"/><polygon opacity=\"0.25\" fill=\"#2A363B\" points=\"31.5,38.7 31.5,33 36.5,35.8 36.5,41.5 \"/><polygon fill=\"#2A363B\" points=\"20,11.3 25,8.4 29.9,11.3 25,14.1 \"/><polygon opacity=\"0.5\" fill=\"#2A363B\" points=\"25.5,15 30.4,12.2 30.4,17.9 25.5,20.8 \"/><polygon opacity=\"0.25\" fill=\"#2A363B\" points=\"19.5,17.9 19.5,12.2 24.4,15 24.4,20.8 \"/></g></svg>",
|
|
294
|
+
"work_in_progress": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><polygon points=\"26.8 34 27.7 33 28.3 32.3 29.1 31.9 30 31.7 30.1 31 30.1 30.1 30.2 29 30.8 28.5 31.7 28 33.2 28.1 34.2 28.4 34.9 28.8 35 29.5 30.5 34 26.8 34\" fill=\"#4d5050\"/><path d=\"M298.4,421.8v-2.7l0.2-3.2v-1.5l-1.1-.7-1.1-.3-1.6.7-1.7.7-1.3.3v0.5l0.4,1.6,0.6,1.5-0.5.9v7.3l1.5,2.2v-1.1l0.4-3.1,0.3-2.8,1.2,2.4v4.6H297v-5.5l-1.1-2.2,4.6,3.9h0.5v-0.9Zm-5-4.5-0.4-.8v-0.8l1.9-.2Zm2.5,2.4,1.4-2v2l0.3,1.5Z\" transform=\"translate(-272.5 -395)\" fill=\"#4d5050\"/><circle cx=\"26.7\" cy=\"17.5\" r=\"1.6\" fill=\"#4d5050\"/><path d=\"M296.1,403.7l-14.9,14.9a2.6,2.6,0,0,0,0,3.7l14.9,14.9a2.6,2.6,0,0,0,3.7,0l14.9-14.9a2.6,2.6,0,0,0,0-3.7l-14.9-14.9A2.6,2.6,0,0,0,296.1,403.7Zm0.9,31.4-13.8-13.8a1.3,1.3,0,0,1,0-1.9l13.8-13.8a1.3,1.3,0,0,1,1.9,0l13.8,13.8a1.3,1.3,0,0,1,0,1.9l-13.8,13.8A1.3,1.3,0,0,1,297.1,435.2Z\" transform=\"translate(-272.5 -395)\" fill=\"#4d5050\"/></svg>",
|
|
295
|
+
"work_in_progress_round_open": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><path d=\"M684,405a20,20,0,1,1,20-20A20,20,0,0,1,684,405Zm0-38.71A18.71,18.71,0,1,0,702.71,385,18.73,18.73,0,0,0,684,366.29Z\" transform=\"translate(-658.5 -359.5)\" fill=\"#4d5050\"/><path d=\"M695.74,392.08l-.08-1.41-.91-.48-1.55-.58-2.13-.1-1.45.78-.78.78-.19,1.55V394l-.1,1-1.36.29-1.16.68-1,1-1.26,1.45h6A55.26,55.26,0,0,0,695.74,392.08Z\" transform=\"translate(-658.5 -359.5)\" fill=\"#4d5050\"/><path d=\"M682.25,383.88l.29-4.65-.1-2.23-1.55-1.07-1.65-.48-2.33,1-2.52,1-1.94.39-.19.68.58,2.33.87,2.23-.68,1.36-.1,10.74,2.23,3.23.1-1.65.58-4.56.39-4.07,1.84,3.49.1,6.79h2.23v-6.21l-.1-1.94-1.55-3.3,6.73,5.76.68-.1.1-1.36-3.82-3.33Zm-7.18-2.72-.58-1.16.1-1.16,2.81-.29Zm3.68,3.49,2-3-.19,2.91.48,2.23Z\" transform=\"translate(-658.5 -359.5)\" fill=\"#4d5050\"/><circle cx=\"25.1\" cy=\"14.49\" r=\"2.33\" fill=\"#4d5050\"/></svg>",
|
|
296
|
+
"wrench": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><path d=\"M696.41,378.36a5.36,5.36,0,0,0-.58.61q-2.09,2.11-4.2,4.21a2.22,2.22,0,0,1-3.38.24,22.16,22.16,0,0,1-2.06-2,10.79,10.79,0,0,1-1.31-1.51,2.1,2.1,0,0,1,.29-3c.54-.55,1.08-1.09,1.63-1.63L690.2,372c-.33-.11-.51-.18-.7-.23a9.89,9.89,0,0,0-12,12,.86.86,0,0,1-.27.95c-2.08,2.06-4.15,4.14-6.23,6.2a13.7,13.7,0,0,0,6.53,6.48q3.1-3.1,6.2-6.2a.86.86,0,0,1,.95-.27,9.89,9.89,0,0,0,12.19-8A8.55,8.55,0,0,0,696.41,378.36Z\" transform=\"translate(-658.5 -358.97)\" fill=\"#4c5050\"/></svg>",
|
|
297
|
+
"x_axis": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"30.24 23.75 38.24 31.75 30.24 39.75 29.34 38.85 36.43 31.75 29.34 24.65 30.24 23.75\" fill=\"#484f60\" opacity=\"0.98\"/><rect x=\"11.76\" y=\"10.25\" width=\"1.5\" height=\"19\" fill=\"#484f60\" opacity=\"0.5\"/><rect x=\"12.01\" y=\"31\" width=\"20\" height=\"1.5\" fill=\"#484f60\"/></svg>",
|
|
298
|
+
"y_axis": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"26.25 19.76 25.35 20.66 18.25 13.57 11.15 20.66 10.25 19.76 18.25 11.76 26.25 19.76\" fill=\"#484f60\" opacity=\"0.98\"/><rect x=\"17.5\" y=\"17.99\" width=\"1.5\" height=\"20\" fill=\"#484f60\"/><rect x=\"20.75\" y=\"36.74\" width=\"19\" height=\"1.5\" fill=\"#484f60\" opacity=\"0.5\"/></svg>"
|
|
299
|
+
};
|