pixel-react 1.6.6 → 1.6.8
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/.prettierrc.js +13 -13
- package/.storybook/main.ts +26 -26
- package/.storybook/preview-head.html +2 -2
- package/.storybook/preview.ts +26 -26
- package/.yarnrc.yml +1 -1
- package/README.md +75 -75
- package/index.scss +4 -4
- package/lib/1fb4472b34e4fe07.css +1 -0
- package/lib/StyleGuide/ColorPalette/ColorPalette.stories.d.ts +6 -0
- package/lib/StyleGuide/Typography/Typography.stories.d.ts +6 -0
- package/lib/assets/fonts/Poppins-Bold.ttf +0 -0
- package/lib/assets/fonts/Poppins-Medium.ttf +0 -0
- package/lib/assets/fonts/Poppins-Regular.ttf +0 -0
- package/lib/assets/fonts/Poppins-SemiBold.ttf +0 -0
- package/lib/components/Accordion/Accordion.d.ts +1 -1
- package/lib/components/Accordion/Accordion.stories.d.ts +6 -0
- package/lib/components/Accordion/types.d.ts +12 -0
- package/lib/components/AddButton/AddButton.d.ts +5 -0
- package/lib/components/AddButton/AddButton.stories.d.ts +6 -0
- package/lib/components/AddButton/index.d.ts +1 -0
- package/lib/components/AddButton/types.d.ts +4 -0
- package/lib/components/AddResourceButton/AddButton.stories.d.ts +8 -0
- package/lib/components/AllProjectsDropdown/AllProjectsDropdown.stories.d.ts +7 -0
- package/lib/components/AppHeader/AppHeader.stories.d.ts +7 -0
- package/lib/components/AppHeader/types.d.ts +2 -0
- package/lib/components/AttachImage/AttachImage.stories.d.ts +7 -0
- package/lib/components/AttachmentButton/AttachmentButton.stories.d.ts +9 -0
- package/lib/components/Avatar/Avatar.stories.d.ts +10 -0
- package/lib/components/Button/Button.stories.d.ts +13 -0
- package/lib/components/Charts/BarChart/BarChart.d.ts +1 -0
- package/lib/components/Charts/BarChart/BarChart.stories.d.ts +6 -0
- package/lib/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.d.ts +7 -0
- package/lib/components/Charts/DashboardDonutChart/types.d.ts +6 -0
- package/lib/components/Charts/DonutChart/DonutChart.stories.d.ts +6 -0
- package/lib/components/Charts/IconRadialChart/IconRadialChart.stories.d.ts +8 -0
- package/lib/components/Charts/LineChart/LineChart.stories.d.ts +7 -0
- package/lib/components/Charts/MultiRadialChart/MultiRadialChart.stories.d.ts +8 -0
- package/lib/components/Charts/PieChart/PieChart.stories.d.ts +7 -0
- package/lib/components/Charts/RadialChart/RadialChart.stories.d.ts +6 -0
- package/lib/components/Checkbox/Checkbox.stories.d.ts +8 -0
- package/lib/components/Chip/Chip.stories.d.ts +14 -0
- package/lib/components/Comment/Comments.d.ts +4 -0
- package/lib/components/Comment/comment/Comment.d.ts +11 -0
- package/lib/components/Comment/comment/useNode.d.ts +7 -0
- package/lib/components/Comment/index.d.ts +1 -0
- package/lib/components/Comment/type.d.ts +25 -0
- package/lib/components/ConnectingBranch/ConnectingBranch.stories.d.ts +6 -0
- package/lib/components/DatePicker/DatePicker.stories.d.ts +9 -0
- package/lib/components/DragAndDrop/DragAndDrop.stories.d.ts +6 -0
- package/lib/components/Drawer/Drawer.stories.d.ts +12 -0
- package/lib/components/EditTextField/EditTextField.stories.d.ts +10 -0
- package/lib/components/Editor/Editor.stories.d.ts +6 -0
- package/lib/components/Excel/ContextMenu/ContextMenu.d.ts +4 -0
- package/lib/components/Excel/ExcelFile.stories.d.ts +6 -0
- package/lib/components/ExcelFile/ChangeExcelStyles.d.ts +14 -0
- package/lib/components/ExcelFile/ColorBarSelector/ColorBarSelector.d.ts +8 -0
- package/lib/components/ExcelFile/ContextMenu/ContextMenu.d.ts +4 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/ActiveCell.d.ts +7 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Cell.d.ts +4 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/ColumnIndicator.d.ts +5 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Copied.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/CornerIndicator.d.ts +5 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/DataEditor.d.ts +5 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/DataViewer.d.ts +8 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/FloatingRect.d.ts +10 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/HeaderRow.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Row.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/RowIndicator.d.ts +5 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Selected.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Spreadsheet.d.ts +80 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Table.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/actions.d.ts +174 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/areModelsEqual.d.ts +1 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/context.d.ts +8 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/engine.d.ts +22 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/formula.d.ts +17 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/index.d.ts +2 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-graph.d.ts +21 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-hash.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-set.d.ts +24 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/index.d.ts +13 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/matrix.d.ts +67 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/point-range.d.ts +22 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/point.d.ts +11 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/reducer.d.ts +27 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/selection.d.ts +95 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/types.d.ts +178 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/use-dispatch.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/use-selector.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/util.d.ts +44 -0
- package/lib/components/ExcelFile/ExcelFile/ExcelFile.d.ts +19 -0
- package/lib/components/ExcelFile/ExcelFile.stories.d.ts +6 -0
- package/lib/components/ExcelFile/ExcelSheetBar/ExcelSheetBar.d.ts +12 -0
- package/lib/components/ExcelFile/ExcelToolBar/ExcelToolBar.d.ts +15 -0
- package/lib/components/ExcelFile/ImportExcelStyles.d.ts +24 -0
- package/lib/components/ExcelFile/Types.d.ts +129 -0
- package/lib/components/ExcelFile/index.d.ts +1 -0
- package/lib/components/ExpandableMenu/ExpandableMenu.stories.d.ts +7 -0
- package/lib/components/FF_Captcha/captcha.stories.d.ts +8 -0
- package/lib/components/FileDropzone/FileDropzone.stories.d.ts +8 -0
- package/lib/components/FileDropzone/RadioFilePreview.d.ts +4 -0
- package/lib/components/FileDropzone/types.d.ts +61 -0
- package/lib/components/Form/Form.stories.d.ts +7 -0
- package/lib/components/GridLayout/GridLayout.stories.d.ts +8 -0
- package/lib/components/HighlightText/HighlightText.stories.d.ts +6 -0
- package/lib/components/Icon/Icon.stories.d.ts +8 -0
- package/lib/components/IconButton/IconButton.d.ts +1 -2
- package/lib/components/IconButton/IconButton.stories.d.ts +7 -0
- package/lib/components/IconButton/types.d.ts +1 -1
- package/lib/components/IconRadioGroup/IconRadioGroup.stories.d.ts +7 -0
- package/lib/components/Input/Input.stories.d.ts +9 -0
- package/lib/components/InputWithDropdown/InputWithDropdown.stories.d.ts +9 -0
- package/lib/components/LabelEditTextField/LabelEditTextField.stories.d.ts +13 -0
- package/lib/components/LazyLoad/LazyLoad.stories.d.ts +6 -0
- package/lib/components/MachineInputField/MachineInputField.stories.d.ts +6 -0
- package/lib/components/MenuOption/MenuOption.stories.d.ts +16 -0
- package/lib/components/MenuOption/types.d.ts +3 -2
- package/lib/components/MiniModal/MiniModal.stories.d.ts +10 -0
- package/lib/components/Modal/Modal.stories.d.ts +7 -0
- package/lib/components/ModulesChip/ModuleChip.stories.d.ts +6 -0
- package/lib/components/MultiSelect/MultiSelect.d.ts +1 -1
- package/lib/components/MultiSelect/MultiSelect.stories.d.ts +11 -0
- package/lib/components/NLPInput/NlpInput.stories.d.ts +7 -0
- package/lib/components/Paper/Paper.stories.d.ts +11 -0
- package/lib/components/PhoneInput/PhoneInput.d.ts +6 -0
- package/lib/components/PhoneInput/index.d.ts +1 -0
- package/lib/components/PhoneInput/types.d.ts +10 -0
- package/lib/components/PopUpModal/types.d.ts +1 -0
- package/lib/components/RadioButton/RadioButton.stories.d.ts +10 -0
- package/lib/components/RadioGroup/RadioGroup.stories.d.ts +9 -0
- package/lib/components/Search/Search.d.ts +1 -1
- package/lib/components/Search/Search.stories.d.ts +6 -0
- package/lib/components/Search/types.d.ts +4 -0
- package/lib/components/Select/Select.stories.d.ts +14 -0
- package/lib/components/Select/components/Dropdown/Dropdown.d.ts +4 -0
- package/lib/components/Select/components/Dropdown/dropdownTypes.d.ts +17 -0
- package/lib/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.d.ts +6 -0
- package/lib/components/StateDropdown/StateDropdown.stories.d.ts +10 -0
- package/lib/components/StatusButton/StatusButton.stories.d.ts +14 -0
- package/lib/components/StatusCard/StatusCard.stories.d.ts +11 -0
- package/lib/components/Table/Table.stories.d.ts +13 -0
- package/lib/components/Table/Types.d.ts +1 -1
- package/lib/components/TableTree/TableTree.stories.d.ts +7 -0
- package/lib/components/TableWithAccordion/TableWithAccordion.d.ts +5 -0
- package/lib/components/TableWithAccordion/data.d.ts +8 -0
- package/lib/components/TableWithAccordion/index.d.ts +1 -0
- package/lib/components/TableWithAccordion/types.d.ts +67 -0
- package/lib/components/Tabs/Tabs.stories.d.ts +9 -0
- package/lib/components/Tabs/types.d.ts +1 -0
- package/lib/components/TextArea/Textarea.stories.d.ts +9 -0
- package/lib/components/Toast/Toast.stories.d.ts +6 -0
- package/lib/components/Toastify/Toastify.stories.d.ts +6 -0
- package/lib/components/Toggle/Toggle.stories.d.ts +12 -0
- package/lib/components/Tooltip/Tooltip.stories.d.ts +15 -0
- package/lib/components/Typography/Typography.stories.d.ts +10 -0
- package/lib/components/VariableInput/VariableInput.stories.d.ts +6 -0
- package/lib/index.d.ts +225 -31
- package/lib/index.esm.js +3251 -600
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +3255 -599
- package/lib/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/utils/FormatString/FormatString.d.ts +1 -0
- package/lib/utils/checkEmpty/checkEmpty.stories.d.ts +6 -0
- package/lib/utils/compareArrays/compareArrays.stories.d.ts +6 -0
- package/lib/utils/compareObjects/compareObjects.stories.d.ts +6 -0
- package/lib/utils/debounce/debounce.stories.d.ts +6 -0
- package/lib/utils/ffID/ffID.stories.d.ts +6 -0
- package/lib/utils/find/findAndInsert.d.ts +7 -0
- package/lib/utils/find/findAndInsert.stories.d.ts +7 -0
- package/lib/utils/findAndInsert/findAndInsert.stories.d.ts +7 -0
- package/lib/utils/getEncryptedData/getEncryptedData.stories.d.ts +6 -0
- package/lib/utils/getExtension/getExtension.stories.d.ts +6 -0
- package/lib/utils/getSequentialPayload/getSequentialPayload.stories.d.ts +10 -0
- package/lib/utils/throttle/throttle.stories.d.ts +6 -0
- package/lib/utils/truncateText/truncateText.stories.d.ts +6 -0
- package/package.json +81 -80
- package/rollup.config.mjs +67 -67
- package/src/StyleGuide/ColorPalette/ColorPalette.scss +62 -62
- package/src/StyleGuide/ColorPalette/ColorPalette.stories.tsx +16 -16
- package/src/StyleGuide/ColorPalette/ColorPalette.tsx +67 -67
- package/src/StyleGuide/ColorPalette/colorPaletteList.ts +294 -279
- package/src/StyleGuide/ColorPalette/index.ts +1 -1
- package/src/StyleGuide/ColorPalette/types.ts +19 -19
- package/src/StyleGuide/Typography/Typography.scss +99 -99
- package/src/StyleGuide/Typography/Typography.stories.tsx +16 -16
- package/src/StyleGuide/Typography/Typography.tsx +60 -60
- package/src/StyleGuide/Typography/TypographyList.ts +3 -3
- package/src/StyleGuide/Typography/types.ts +9 -9
- package/src/assets/Themes/BaseTheme.scss +281 -270
- package/src/assets/Themes/DarkTheme.scss +288 -265
- package/src/assets/Themes/Theme.scss +16 -16
- package/src/assets/icons/Arrow.svg +4 -4
- package/src/assets/icons/Header_preset.svg +18 -18
- package/src/assets/icons/accordion_header_icon.svg +10 -10
- package/src/assets/icons/active_license_icon.svg +3 -3
- package/src/assets/icons/add_archive.svg +9 -9
- package/src/assets/icons/add_file.svg +4 -17
- package/src/assets/icons/add_label_icon.svg +3 -3
- package/src/assets/icons/add_locator.svg +4 -4
- package/src/assets/icons/add_testcase.svg +3 -3
- package/src/assets/icons/add_user.svg +9 -9
- package/src/assets/icons/add_variable.svg +11 -11
- package/src/assets/icons/add_variable_icon.svg +4 -4
- package/src/assets/icons/alert.svg +17 -17
- package/src/assets/icons/all_borders.svg +3 -3
- package/src/assets/icons/all_projects.svg +3 -3
- package/src/assets/icons/android.svg +9 -9
- package/src/assets/icons/android_icon.svg +6 -6
- package/src/assets/icons/apk_file_type.svg +4 -4
- package/src/assets/icons/app_switch.svg +11 -11
- package/src/assets/icons/arrow_down.svg +3 -3
- package/src/assets/icons/arrow_right.svg +4 -4
- package/src/assets/icons/arrow_up.svg +3 -3
- package/src/assets/icons/arrows_down_icon.svg +3 -3
- package/src/assets/icons/arrows_right_icon.svg +10 -10
- package/src/assets/icons/arrows_top_icon.svg +3 -3
- package/src/assets/icons/attachment_icon.svg +3 -3
- package/src/assets/icons/authorization.svg +4 -0
- package/src/assets/icons/authorization_icon.svg +4 -4
- package/src/assets/icons/automation_testcase.svg +4 -4
- package/src/assets/icons/back_icon.svg +3 -3
- package/src/assets/icons/backward.svg +10 -10
- package/src/assets/icons/backward_icon.svg +3 -3
- package/src/assets/icons/beautify_icon.svg +3 -3
- package/src/assets/icons/bold.svg +3 -3
- package/src/assets/icons/border_bottom.svg +3 -3
- package/src/assets/icons/border_left.svg +3 -3
- package/src/assets/icons/border_right.svg +3 -3
- package/src/assets/icons/border_top.svg +3 -3
- package/src/assets/icons/browser_stack.svg +9 -9
- package/src/assets/icons/browserstack_icon.svg +24 -24
- package/src/assets/icons/calendar_icon.svg +9 -9
- package/src/assets/icons/capture_icon.svg +2 -2
- package/src/assets/icons/check_mark.svg +3 -3
- package/src/assets/icons/chrome.svg +12 -12
- package/src/assets/icons/client_profile.svg +4 -4
- package/src/assets/icons/clock_icon.svg +11 -11
- package/src/assets/icons/clone_icon.svg +3 -3
- package/src/assets/icons/close_pill.svg +3 -3
- package/src/assets/icons/cloud_server_host_icon.svg +3 -3
- package/src/assets/icons/collapse-icon.svg +6 -6
- package/src/assets/icons/compressed_file_type.svg +4 -4
- package/src/assets/icons/continue_without_sign.svg +3 -3
- package/src/assets/icons/copy-icon.svg +3 -3
- package/src/assets/icons/csv_file_type.svg +4 -4
- package/src/assets/icons/dashboard_icon.svg +31 -31
- package/src/assets/icons/dashboard_mobile_icon.svg +47 -47
- package/src/assets/icons/dashboard_web_icon.svg +9 -9
- package/src/assets/icons/data_provider.svg +8 -8
- package/src/assets/icons/dataset_list.svg +3 -3
- package/src/assets/icons/delete.svg +3 -3
- package/src/assets/icons/delete_info.svg +17 -17
- package/src/assets/icons/depends_on_script.svg +7 -0
- package/src/assets/icons/details.svg +3 -3
- package/src/assets/icons/double_underline.svg +5 -5
- package/src/assets/icons/download-icon.svg +3 -3
- package/src/assets/icons/download_file_icon.svg +3 -3
- package/src/assets/icons/download_icon.svg +4 -4
- package/src/assets/icons/drag_icon.svg +4 -4
- package/src/assets/icons/drawer_maximize.svg +6 -6
- package/src/assets/icons/dropzone_icon.svg +18 -18
- package/src/assets/icons/edge.svg +30 -30
- package/src/assets/icons/edit_icon.svg +5 -5
- package/src/assets/icons/email_group.svg +3 -0
- package/src/assets/icons/error.svg +17 -17
- package/src/assets/icons/excel_corner_menu.svg +3 -3
- package/src/assets/icons/executions_icon.svg +3 -0
- package/src/assets/icons/expand-icon.svg +6 -6
- package/src/assets/icons/export.svg +4 -4
- package/src/assets/icons/export_collection_icon.svg +13 -13
- package/src/assets/icons/eye_closed.svg +3 -3
- package/src/assets/icons/eye_open_icon.svg +3 -3
- package/src/assets/icons/failed_status_icon.svg +12 -12
- package/src/assets/icons/file.svg +11 -11
- package/src/assets/icons/fill_color.svg +7 -7
- package/src/assets/icons/filter.svg +4 -4
- package/src/assets/icons/fire_fox.svg +106 -106
- package/src/assets/icons/fireflink_finder_logo.svg +7 -7
- package/src/assets/icons/fireflink_icon.svg +4 -4
- package/src/assets/icons/fireflink_logo.svg +13 -13
- package/src/assets/icons/fireflink_platform.svg +4 -4
- package/src/assets/icons/firefox.svg +84 -84
- package/src/assets/icons/flaky_status_icon.svg +12 -12
- package/src/assets/icons/formate_painter.svg +5 -5
- package/src/assets/icons/formula_icon.svg +3 -3
- package/src/assets/icons/forward.svg +3 -3
- package/src/assets/icons/forward_icon.svg +3 -3
- package/src/assets/icons/full_access_icon.svg +4 -4
- package/src/assets/icons/gif_file_type.svg +4 -4
- package/src/assets/icons/global_variable_icon.svg +4 -4
- package/src/assets/icons/hamburger_menu.svg +3 -3
- package/src/assets/icons/hide_access_icon.svg +3 -3
- package/src/assets/icons/hide_icon.svg +9 -9
- package/src/assets/icons/history_icon.svg +19 -19
- package/src/assets/icons/html_file_type.svg +4 -4
- package/src/assets/icons/impactList.svg +6 -6
- package/src/assets/icons/import.svg +4 -4
- package/src/assets/icons/info.svg +17 -17
- package/src/assets/icons/info_icon.svg +5 -5
- package/src/assets/icons/info_user.svg +5 -5
- package/src/assets/icons/internet_explorer.svg +3 -3
- package/src/assets/icons/ipk_file_type.svg +4 -4
- package/src/assets/icons/italic.svg +3 -3
- package/src/assets/icons/jira.svg +3 -3
- package/src/assets/icons/jpg_file_type.svg +4 -4
- package/src/assets/icons/json_file_type.svg +4 -4
- package/src/assets/icons/label_icon.svg +8 -8
- package/src/assets/icons/label_plus.svg +3 -3
- package/src/assets/icons/labels.svg +8 -0
- package/src/assets/icons/lambda_icon.svg +3 -3
- package/src/assets/icons/left_arrow_icon.svg +3 -3
- package/src/assets/icons/license_expired.svg +20 -20
- package/src/assets/icons/license_info.svg +28 -28
- package/src/assets/icons/license_warning.svg +10 -10
- package/src/assets/icons/link_expired.svg +186 -186
- package/src/assets/icons/linked_defects.svg +11 -11
- package/src/assets/icons/linux.svg +42 -42
- package/src/assets/icons/local.svg +3 -3
- package/src/assets/icons/local_variable_icon.svg +4 -4
- package/src/assets/icons/logo.svg +17 -17
- package/src/assets/icons/mac.svg +9 -9
- package/src/assets/icons/machine_disable_icon.svg +18 -0
- package/src/assets/icons/machine_enable_icon.svg +10 -0
- package/src/assets/icons/manage_apps.svg +3 -3
- package/src/assets/icons/manual_locator.svg +7 -7
- package/src/assets/icons/manual_testcase.svg +3 -3
- package/src/assets/icons/maximize_icon.svg +5 -5
- package/src/assets/icons/maximize_script.svg +12 -12
- package/src/assets/icons/maximize_tree.svg +3 -3
- package/src/assets/icons/minimize_script.svg +5 -5
- package/src/assets/icons/mobile_icon.svg +3 -3
- package/src/assets/icons/moon_stars.svg +10 -10
- package/src/assets/icons/more.svg +10 -10
- package/src/assets/icons/move_icon.svg +5 -5
- package/src/assets/icons/ms_dynamic.svg +4 -4
- package/src/assets/icons/ms_dynamic_icon.svg +15 -15
- package/src/assets/icons/nlp_help_icon.svg +3 -3
- package/src/assets/icons/no_access_icon.svg +4 -4
- package/src/assets/icons/no_border.svg +3 -3
- package/src/assets/icons/no_data.svg +13 -13
- package/src/assets/icons/no_license_found.svg +22 -22
- package/src/assets/icons/notification_icon.svg +3 -3
- package/src/assets/icons/opera.svg +9 -9
- package/src/assets/icons/parameters.svg +3 -0
- package/src/assets/icons/passed_status_icon.svg +12 -12
- package/src/assets/icons/pdf_file_type.svg +4 -4
- package/src/assets/icons/plus_icon.svg +11 -11
- package/src/assets/icons/plus_user_icon.svg +3 -3
- package/src/assets/icons/png_file_type.svg +4 -4
- package/src/assets/icons/pre_post_condition.svg +8 -0
- package/src/assets/icons/program_element.svg +8 -0
- package/src/assets/icons/project_env_variable_icon.svg +4 -4
- package/src/assets/icons/project_status_icon.svg +10 -10
- package/src/assets/icons/quick_run_setting_icon.svg +5 -5
- package/src/assets/icons/refresh-icon.svg +4 -4
- package/src/assets/icons/refresh_icon.svg +4 -4
- package/src/assets/icons/reload.svg +3 -3
- package/src/assets/icons/remove.svg +11 -11
- package/src/assets/icons/remove_user.svg +3 -3
- package/src/assets/icons/replace.svg +11 -11
- package/src/assets/icons/replace_file.svg +13 -13
- package/src/assets/icons/replace_icon.svg +6 -6
- package/src/assets/icons/reset-link.svg +52 -52
- package/src/assets/icons/right_arrow_icon.svg +4 -4
- package/src/assets/icons/rotate_icon.svg +10 -10
- package/src/assets/icons/run_automation_scripts_icon.svg +33 -33
- package/src/assets/icons/run_icon.svg +26 -26
- package/src/assets/icons/run_manual_testcase_icon.svg +4 -4
- package/src/assets/icons/safari.svg +93 -93
- package/src/assets/icons/safari_icon.svg +12 -12
- package/src/assets/icons/sales_force.svg +7 -7
- package/src/assets/icons/salesforce_icon.svg +14 -14
- package/src/assets/icons/sample_template_first.svg +29 -29
- package/src/assets/icons/sample_template_second.svg +47 -47
- package/src/assets/icons/sause_lab.svg +3 -3
- package/src/assets/icons/save_as_step.svg +3 -3
- package/src/assets/icons/search.svg +3 -3
- package/src/assets/icons/send_step.svg +4 -4
- package/src/assets/icons/skipped_status_icon.svg +12 -12
- package/src/assets/icons/standard_template.svg +30 -30
- package/src/assets/icons/strike_through.svg +3 -3
- package/src/assets/icons/success.svg +17 -17
- package/src/assets/icons/suites_icon.svg +3 -0
- package/src/assets/icons/sun_icon.svg +10 -10
- package/src/assets/icons/swipe_icon.svg +9 -9
- package/src/assets/icons/switch_license_icon.svg +123 -123
- package/src/assets/icons/system_warning.svg +61 -61
- package/src/assets/icons/tap_icon.svg +3 -3
- package/src/assets/icons/test_data.svg +5 -0
- package/src/assets/icons/test_data_set.svg +7 -0
- package/src/assets/icons/text_align_center.svg +3 -3
- package/src/assets/icons/text_align_left.svg +3 -3
- package/src/assets/icons/text_align_right.svg +3 -3
- package/src/assets/icons/text_color.svg +3 -3
- package/src/assets/icons/tick_icon.svg +4 -4
- package/src/assets/icons/toast_close.svg +3 -3
- package/src/assets/icons/txt_file_type.svg +4 -4
- package/src/assets/icons/underline.svg +4 -4
- package/src/assets/icons/update_icon.svg +3 -3
- package/src/assets/icons/user_password_lock.svg +220 -220
- package/src/assets/icons/user_profile.svg +3 -3
- package/src/assets/icons/user_warning.svg +235 -235
- package/src/assets/icons/user_with_system.svg +637 -637
- package/src/assets/icons/variable_icon.svg +4 -4
- package/src/assets/icons/variable_set.svg +5 -0
- package/src/assets/icons/vertical_separator.svg +3 -3
- package/src/assets/icons/view_access_icon.svg +4 -4
- package/src/assets/icons/view_icon.svg +3 -3
- package/src/assets/icons/warning.svg +17 -17
- package/src/assets/icons/warning_status_icon.svg +12 -12
- package/src/assets/icons/web&mobile_icon.svg +3 -3
- package/src/assets/icons/web_icon.svg +3 -3
- package/src/assets/icons/web_mobile_icon.svg +29 -29
- package/src/assets/icons/web_services_icon.svg +30 -30
- package/src/assets/icons/window_maximize.svg +3 -4
- package/src/assets/icons/window_minimize.svg +3 -3
- package/src/assets/icons/window_restore.svg +4 -0
- package/src/assets/icons/windows.svg +10 -10
- package/src/assets/icons/wrong_mark.svg +3 -3
- package/src/assets/icons/wswb_delete_icon.svg +3 -3
- package/src/assets/icons/wswb_plus_icon.svg +4 -4
- package/src/assets/icons/xls_file_type.svg +4 -4
- package/src/assets/icons/xlsx_file_type.svg +4 -4
- package/src/assets/icons/xml_file_type.svg +4 -4
- package/src/assets/styles/_colors.scss +151 -151
- package/src/assets/styles/_fonts.scss +45 -45
- package/src/assets/styles/_mixins.scss +21 -21
- package/src/assets/utils/functionUtils.ts +96 -96
- package/src/components/Accordion/Accordion.scss +46 -46
- package/src/components/Accordion/Accordion.stories.tsx +35 -31
- package/src/components/Accordion/Accordion.tsx +68 -62
- package/src/components/Accordion/index.ts +1 -1
- package/src/components/Accordion/types.ts +40 -28
- package/src/components/AddResourceButton/AddButton.scss +36 -36
- package/src/components/AddResourceButton/AddButton.stories.tsx +126 -126
- package/src/components/AddResourceButton/AddButton.tsx +121 -121
- package/src/components/AddResourceButton/ArrowsButton/ArrowsButton.scss +161 -161
- package/src/components/AddResourceButton/ArrowsButton/ArrowsButton.tsx +38 -38
- package/src/components/AddResourceButton/index.ts +1 -1
- package/src/components/AddResourceButton/type.ts +92 -92
- package/src/components/AddVariables/AddVariables.scss +14 -14
- package/src/components/AddVariables/AddVariables.stories.tsx +44 -44
- package/src/components/AddVariables/AddVariables.tsx +113 -113
- package/src/components/AddVariables/index.ts +1 -1
- package/src/components/AddVariables/types.ts +36 -36
- package/src/components/AllProjectsDropdown/AllProjectsDropdown.scss +189 -189
- package/src/components/AllProjectsDropdown/AllProjectsDropdown.stories.tsx +117 -117
- package/src/components/AllProjectsDropdown/AllProjectsDropdown.tsx +152 -152
- package/src/components/AllProjectsDropdown/types.ts +12 -12
- package/src/components/AppHeader/AppHeader.scss +215 -182
- package/src/components/AppHeader/AppHeader.stories.tsx +553 -425
- package/src/components/AppHeader/AppHeader.tsx +197 -198
- package/src/components/AppHeader/index.ts +1 -1
- package/src/components/AppHeader/types.ts +54 -52
- package/src/components/AttachImage/AttachImage.scss +76 -76
- package/src/components/AttachImage/AttachImage.stories.tsx +24 -24
- package/src/components/AttachImage/AttachImage.tsx +60 -60
- package/src/components/AttachImage/index.ts +2 -2
- package/src/components/AttachImage/types.ts +26 -26
- package/src/components/AttachmentButton/AttachmentButton.scss +9 -9
- package/src/components/AttachmentButton/AttachmentButton.stories.tsx +81 -81
- package/src/components/AttachmentButton/AttachmentButton.tsx +129 -129
- package/src/components/AttachmentButton/types.ts +13 -13
- package/src/components/Avatar/Avatar.scss +27 -27
- package/src/components/Avatar/Avatar.stories.tsx +76 -76
- package/src/components/Avatar/Avatar.tsx +41 -41
- package/src/components/Avatar/types.ts +35 -35
- package/src/components/Button/Button.scss +155 -155
- package/src/components/Button/Button.stories.tsx +81 -81
- package/src/components/Button/Button.tsx +73 -73
- package/src/components/Button/index.ts +1 -1
- package/src/components/Button/types.ts +69 -69
- package/src/components/Charts/BarChart/BarChart.scss +69 -66
- package/src/components/Charts/BarChart/BarChart.stories.tsx +67 -67
- package/src/components/Charts/BarChart/BarChart.tsx +342 -328
- package/src/components/Charts/BarChart/types.ts +12 -12
- package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.scss +164 -157
- package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.tsx +55 -54
- package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.tsx +531 -502
- package/src/components/Charts/DashboardDonutChart/types.ts +58 -52
- package/src/components/Charts/DonutChart/DonutChart.scss +76 -76
- package/src/components/Charts/DonutChart/DonutChart.stories.tsx +30 -30
- package/src/components/Charts/DonutChart/DonutChart.tsx +246 -246
- package/src/components/Charts/DonutChart/index.ts +1 -1
- package/src/components/Charts/DonutChart/type.ts +23 -23
- package/src/components/Charts/IconRadialChart/IconRadialChart.scss +25 -25
- package/src/components/Charts/IconRadialChart/IconRadialChart.stories.tsx +51 -51
- package/src/components/Charts/IconRadialChart/IconRadialChart.tsx +173 -173
- package/src/components/Charts/IconRadialChart/types.ts +28 -28
- package/src/components/Charts/LineChart/LineChart.scss +92 -88
- package/src/components/Charts/LineChart/LineChart.stories.tsx +255 -255
- package/src/components/Charts/LineChart/LineChart.tsx +286 -282
- package/src/components/Charts/LineChart/index.ts +1 -1
- package/src/components/Charts/LineChart/types.ts +29 -29
- package/src/components/Charts/MultiRadialChart/MultiRadialChart.scss +86 -86
- package/src/components/Charts/MultiRadialChart/MultiRadialChart.stories.tsx +116 -116
- package/src/components/Charts/MultiRadialChart/MultiRadialChart.tsx +292 -292
- package/src/components/Charts/MultiRadialChart/index.ts +1 -1
- package/src/components/Charts/MultiRadialChart/types.ts +25 -25
- package/src/components/Charts/PieChart/PieChart.scss +41 -41
- package/src/components/Charts/PieChart/PieChart.stories.tsx +46 -46
- package/src/components/Charts/PieChart/PieChart.tsx +192 -192
- package/src/components/Charts/PieChart/index.ts +1 -1
- package/src/components/Charts/PieChart/types.ts +28 -28
- package/src/components/Charts/RadialChart/RadialChart.scss +16 -16
- package/src/components/Charts/RadialChart/RadialChart.stories.tsx +36 -36
- package/src/components/Charts/RadialChart/RadialChart.tsx +180 -180
- package/src/components/Charts/RadialChart/index.ts +1 -1
- package/src/components/Charts/RadialChart/types.ts +32 -32
- package/src/components/Checkbox/Checkbox.scss +146 -146
- package/src/components/Checkbox/Checkbox.stories.tsx +123 -123
- package/src/components/Checkbox/Checkbox.tsx +58 -58
- package/src/components/Checkbox/types.ts +34 -34
- package/src/components/Chip/Chip.scss +85 -85
- package/src/components/Chip/Chip.stories.tsx +116 -116
- package/src/components/Chip/Chip.tsx +35 -35
- package/src/components/Chip/index.ts +1 -1
- package/src/components/Chip/types.ts +19 -19
- package/src/components/Comment/Comments.scss +166 -0
- package/src/components/Comment/Comments.stories.tsx +212 -0
- package/src/components/Comment/Comments.tsx +51 -0
- package/src/components/Comment/comment/Comment.tsx +206 -0
- package/src/components/Comment/comment/useNode.ts +51 -0
- package/src/components/Comment/index.ts +1 -0
- package/src/components/Comment/type.ts +36 -0
- package/src/components/ConnectingBranch/BranchComponents/MachineInstances.tsx +128 -128
- package/src/components/ConnectingBranch/ConnectingBranch.scss +233 -233
- package/src/components/ConnectingBranch/ConnectingBranch.stories.tsx +21 -21
- package/src/components/ConnectingBranch/ConnectingBranch.tsx +182 -182
- package/src/components/ConnectingBranch/data.ts +137 -137
- package/src/components/ConnectingBranch/index.ts +1 -1
- package/src/components/ConnectingBranch/types.ts +21 -21
- package/src/components/CreateVariable/CreateVariableSlider.scss +18 -18
- package/src/components/CreateVariable/CreateVariableSlider.stories.tsx +66 -66
- package/src/components/CreateVariable/CreateVariableSlider.tsx +95 -95
- package/src/components/CreateVariable/index.ts +1 -1
- package/src/components/CreateVariable/types.ts +58 -58
- package/src/components/DatePicker/DatePicker.scss +413 -402
- package/src/components/DatePicker/DatePicker.stories.tsx +193 -174
- package/src/components/DatePicker/DatePicker.tsx +502 -451
- package/src/components/DatePicker/Timepicker.tsx +372 -372
- package/src/components/DatePicker/types.ts +105 -105
- package/src/components/DownloadClient/DownloadClient.scss +80 -80
- package/src/components/DownloadClient/DownloadClient.stories.tsx +26 -26
- package/src/components/DownloadClient/DownloadClient.tsx +81 -81
- package/src/components/DownloadClient/type.ts +40 -40
- package/src/components/DragAndDrop/DragAndDrop.d.ts +5 -5
- package/src/components/DragAndDrop/DragAndDrop.stories.tsx +25 -25
- package/src/components/DragAndDrop/DragAndDrop.ts +7 -7
- package/src/components/DragAndDrop/DragAndDropList.scss +69 -69
- package/src/components/DragAndDrop/DragAndDropList.tsx +151 -151
- package/src/components/Drawer/Drawer.scss +139 -138
- package/src/components/Drawer/Drawer.stories.tsx +155 -155
- package/src/components/Drawer/Drawer.tsx +232 -232
- package/src/components/Drawer/Types.ts +157 -157
- package/src/components/EditTextField/EditTextField.scss +97 -97
- package/src/components/EditTextField/EditTextField.stories.tsx +127 -127
- package/src/components/EditTextField/EditTextField.tsx +181 -181
- package/src/components/EditTextField/index.ts +1 -1
- package/src/components/EditTextField/types.ts +55 -55
- package/src/components/Editor/Editor.scss +56 -56
- package/src/components/Editor/Editor.stories.tsx +54 -54
- package/src/components/Editor/Editor.tsx +250 -250
- package/src/components/Editor/VariableDropdown.scss +27 -27
- package/src/components/Editor/VariableDropdown.tsx +57 -57
- package/src/components/Editor/constants.ts +180 -180
- package/src/components/Editor/types.ts +89 -89
- package/src/components/Excel/ColorBarSelector/ColorBarSelector.scss +15 -15
- package/src/components/Excel/ColorBarSelector/ColorBarSelector.tsx +43 -43
- package/src/components/Excel/ExcelContextMenu/ExcelContextMenu.scss +27 -27
- package/src/components/Excel/ExcelContextMenu/ExcelContextMenu.tsx +42 -42
- package/src/components/Excel/ExcelFile/ExcelFile.scss +68 -68
- package/src/components/Excel/ExcelFile/ExcelFile.tsx +491 -491
- package/src/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.tsx +131 -131
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Cell.tsx +238 -238
- package/src/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.tsx +168 -168
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Copied.tsx +25 -25
- package/src/components/Excel/ExcelFile/ExcelFileComponents/CornerIndicator.tsx +56 -56
- package/src/components/Excel/ExcelFile/ExcelFileComponents/DataEditor.tsx +37 -37
- package/src/components/Excel/ExcelFile/ExcelFileComponents/DataViewer.tsx +85 -85
- package/src/components/Excel/ExcelFile/ExcelFileComponents/FloatingRect.tsx +31 -31
- package/src/components/Excel/ExcelFile/ExcelFileComponents/HeaderRow.tsx +5 -5
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Row.tsx +5 -5
- package/src/components/Excel/ExcelFile/ExcelFileComponents/RowIndicator.tsx +154 -154
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Selected.tsx +32 -32
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.scss +146 -146
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.tsx +479 -479
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Table.tsx +19 -19
- package/src/components/Excel/ExcelFile/ExcelFileComponents/actions.ts +548 -548
- package/src/components/Excel/ExcelFile/ExcelFileComponents/areModelsEqual.ts +18 -18
- package/src/components/Excel/ExcelFile/ExcelFileComponents/context.ts +12 -12
- package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/engine.ts +153 -153
- package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/formula.ts +31 -31
- package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/index.ts +2 -2
- package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/point-graph.ts +152 -152
- package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/point-hash.ts +10 -10
- package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/point-set.ts +69 -69
- package/src/components/Excel/ExcelFile/ExcelFileComponents/index.ts +49 -49
- package/src/components/Excel/ExcelFile/ExcelFileComponents/matrix.ts +382 -382
- package/src/components/Excel/ExcelFile/ExcelFileComponents/point-range.ts +82 -82
- package/src/components/Excel/ExcelFile/ExcelFileComponents/point.ts +15 -15
- package/src/components/Excel/ExcelFile/ExcelFileComponents/reducer.ts +673 -673
- package/src/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.ts +819 -819
- package/src/components/Excel/ExcelFile/ExcelFileComponents/selection.ts +257 -257
- package/src/components/Excel/ExcelFile/ExcelFileComponents/types.ts +255 -255
- package/src/components/Excel/ExcelFile/ExcelFileComponents/typings/fast-formula-parser.d.ts +58 -58
- package/src/components/Excel/ExcelFile/ExcelFileComponents/use-dispatch.ts +8 -8
- package/src/components/Excel/ExcelFile/ExcelFileComponents/use-selector.ts +9 -9
- package/src/components/Excel/ExcelFile/ExcelFileComponents/util.ts +172 -172
- package/src/components/Excel/ExcelFile.stories.tsx +167 -167
- package/src/components/Excel/ExcelToolBar/ExcelToolBar.scss +96 -96
- package/src/components/Excel/ExcelToolBar/ExcelToolBar.tsx +397 -397
- package/src/components/Excel/Types.ts +196 -196
- package/src/components/Excel/dataConversion.ts +173 -173
- package/src/components/Excel/index.ts +1 -1
- package/src/components/ExpandableMenu/ExpandableMenu.scss +110 -110
- package/src/components/ExpandableMenu/ExpandableMenu.stories.tsx +67 -67
- package/src/components/ExpandableMenu/ExpandableMenu.tsx +101 -101
- package/src/components/ExpandableMenu/index.ts +1 -1
- package/src/components/ExpandableMenu/types.ts +34 -34
- package/src/components/FF_Captcha/Recaptcha.scss +10 -10
- package/src/components/FF_Captcha/Recaptcha.tsx +40 -40
- package/src/components/FF_Captcha/captcha.stories.tsx +40 -40
- package/src/components/FF_Captcha/types.ts +22 -22
- package/src/components/FieldSet/FieldSet.scss +10 -9
- package/src/components/FieldSet/FieldSet.stories.tsx +104 -103
- package/src/components/FieldSet/FieldSet.tsx +29 -29
- package/src/components/FieldSet/index.ts +1 -1
- package/src/components/FieldSet/types.ts +8 -8
- package/src/components/FileDropzone/Dropzone.tsx +105 -57
- package/src/components/FileDropzone/FileDropzone.scss +163 -135
- package/src/components/FileDropzone/FileDropzone.stories.tsx +219 -98
- package/src/components/FileDropzone/FileDropzone.tsx +144 -111
- package/src/components/FileDropzone/FilePreview.tsx +77 -77
- package/src/components/FileDropzone/RadioFilePreview.tsx +76 -0
- package/src/components/FileDropzone/index.ts +1 -1
- package/src/components/FileDropzone/types.ts +199 -126
- package/src/components/Form/Form.d.ts +2 -2
- package/src/components/Form/Form.scss +158 -158
- package/src/components/Form/Form.stories.tsx +508 -508
- package/src/components/Form/Form.ts +2 -2
- package/src/components/Form/Forms.tsx +41 -41
- package/src/components/Form/validation.json +29 -29
- package/src/components/GridLayout/GridLayout.scss +69 -69
- package/src/components/GridLayout/GridLayout.stories.tsx +90 -90
- package/src/components/GridLayout/GridLayout.tsx +39 -39
- package/src/components/GridLayout/GridLayoutStory.scss +25 -25
- package/src/components/GridLayout/types.ts +84 -84
- package/src/components/HighlightText/HighlightText.scss +3 -3
- package/src/components/HighlightText/HighlightText.stories.tsx +22 -22
- package/src/components/HighlightText/HighlightText.tsx +33 -33
- package/src/components/HighlightText/index.ts +1 -1
- package/src/components/HighlightText/types.ts +4 -4
- package/src/components/Icon/Icon.stories.tsx +65 -65
- package/src/components/Icon/Icon.tsx +88 -88
- package/src/components/Icon/Icons.scss +50 -50
- package/src/components/Icon/iconList.ts +491 -464
- package/src/components/Icon/index.ts +1 -1
- package/src/components/Icon/types.ts +14 -14
- package/src/components/IconButton/IconButton.scss +54 -54
- package/src/components/IconButton/IconButton.stories.tsx +34 -33
- package/src/components/IconButton/IconButton.tsx +33 -36
- package/src/components/IconButton/index.ts +1 -1
- package/src/components/IconButton/types.ts +6 -6
- package/src/components/IconRadioGroup/IconRadioGroup.scss +64 -63
- package/src/components/IconRadioGroup/IconRadioGroup.stories.tsx +108 -108
- package/src/components/IconRadioGroup/IconRadioGroup.tsx +73 -73
- package/src/components/IconRadioGroup/index.ts +1 -1
- package/src/components/IconRadioGroup/type.ts +49 -49
- package/src/components/Input/Input.scss +171 -159
- package/src/components/Input/Input.stories.tsx +141 -141
- package/src/components/Input/Input.tsx +120 -114
- package/src/components/Input/types.ts +85 -85
- package/src/components/InputWithDropdown/InputWithDropdown.scss +220 -213
- package/src/components/InputWithDropdown/InputWithDropdown.stories.tsx +169 -169
- package/src/components/InputWithDropdown/InputWithDropdown.tsx +122 -122
- package/src/components/InputWithDropdown/index.ts +1 -1
- package/src/components/InputWithDropdown/types.ts +113 -113
- package/src/components/LabelEditTextField/LabelEditTextField.scss +86 -86
- package/src/components/LabelEditTextField/LabelEditTextField.stories.tsx +192 -192
- package/src/components/LabelEditTextField/LabelEditTextField.tsx +246 -246
- package/src/components/LabelEditTextField/index.ts +1 -1
- package/src/components/LabelEditTextField/types.ts +46 -46
- package/src/components/LazyLoad/LazyLoad.d.ts +3 -3
- package/src/components/LazyLoad/LazyLoad.stories.tsx +33 -33
- package/src/components/LazyLoad/LazyLoad.ts +2 -2
- package/src/components/LazyLoad/LazyLoading.tsx +19 -19
- package/src/components/LazyLoad/index.ts +1 -1
- package/src/components/MachineInputField/MachineInputField.scss +59 -59
- package/src/components/MachineInputField/MachineInputField.stories.tsx +32 -32
- package/src/components/MachineInputField/MachineInputField.tsx +87 -87
- package/src/components/MachineInputField/index.ts +1 -1
- package/src/components/MachineInputField/types.ts +13 -13
- package/src/components/MenuOption/MenuOption.scss +97 -97
- package/src/components/MenuOption/MenuOption.stories.tsx +158 -157
- package/src/components/MenuOption/MenuOption.tsx +219 -219
- package/src/components/MenuOption/types.ts +230 -228
- package/src/components/MiniModal/MiniModal.scss +170 -170
- package/src/components/MiniModal/MiniModal.stories.tsx +735 -735
- package/src/components/MiniModal/MiniModal.tsx +344 -344
- package/src/components/MiniModal/index.ts +1 -1
- package/src/components/MiniModal/types.ts +123 -123
- package/src/components/Modal/Modal.stories.tsx +70 -70
- package/src/components/Modal/Modal.tsx +100 -100
- package/src/components/Modal/index.tsx +1 -1
- package/src/components/Modal/modal.scss +51 -51
- package/src/components/Modal/types.ts +43 -43
- package/src/components/ModulesChip/ModuleChip.scss +33 -20
- package/src/components/ModulesChip/ModuleChip.stories.tsx +41 -41
- package/src/components/ModulesChip/ModuleChip.tsx +28 -31
- package/src/components/ModulesChip/types.ts +14 -14
- package/src/components/MultiSelect/Dropdown.scss +78 -78
- package/src/components/MultiSelect/Dropdown.tsx +142 -135
- package/src/components/MultiSelect/MultiSelect.scss +246 -217
- package/src/components/MultiSelect/MultiSelect.stories.tsx +290 -273
- package/src/components/MultiSelect/MultiSelect.tsx +483 -472
- package/src/components/MultiSelect/MultiSelectTypes.ts +47 -47
- package/src/components/MultiSelect/dropdownTypes.ts +19 -19
- package/src/components/MultiSelect/index.ts +1 -1
- package/src/components/NLPInput/NLPInput.scss +246 -246
- package/src/components/NLPInput/NlpInput.stories.tsx +136 -136
- package/src/components/NLPInput/NlpInput.tsx +374 -374
- package/src/components/NLPInput/components/NlpDropDown/NlpDropDownType.ts +60 -60
- package/src/components/NLPInput/components/NlpDropDown/NlpDropdown.scss +83 -83
- package/src/components/NLPInput/components/NlpDropDown/NlpDropdown.tsx +180 -180
- package/src/components/NLPInput/index.ts +1 -1
- package/src/components/NLPInput/type.tsx +124 -124
- package/src/components/Paper/Paper.scss +13 -13
- package/src/components/Paper/Paper.stories.tsx +77 -77
- package/src/components/Paper/Paper.tsx +14 -14
- package/src/components/Paper/types.ts +19 -19
- package/src/components/PhoneInput/PhoneInput.d.ts +3 -0
- package/src/components/PhoneInput/PhoneInput.stories.tsx +95 -0
- package/src/components/PhoneInput/PhoneInput.tsx +90 -0
- package/src/components/PhoneInput/index.ts +1 -0
- package/src/components/PhoneInput/phoneInput.scss +3 -0
- package/src/components/PhoneInput/types.ts +10 -0
- package/src/components/PopUpModal/PopUpModal.scss +36 -36
- package/src/components/PopUpModal/PopUpModal.stories.tsx +62 -61
- package/src/components/PopUpModal/PopUpModal.tsx +86 -85
- package/src/components/PopUpModal/types.ts +15 -14
- package/src/components/RadioButton/RadioButton.scss +106 -106
- package/src/components/RadioButton/RadioButton.stories.tsx +43 -43
- package/src/components/RadioButton/RadioButton.tsx +41 -41
- package/src/components/RadioButton/index.ts +1 -1
- package/src/components/RadioButton/radioButtonTypes.tsx +62 -62
- package/src/components/RadioGroup/RadioGroup.scss +11 -11
- package/src/components/RadioGroup/RadioGroup.stories.tsx +150 -150
- package/src/components/RadioGroup/RadioGroup.tsx +49 -49
- package/src/components/RadioGroup/index.ts +1 -1
- package/src/components/RadioGroup/radioGroupTypes.tsx +96 -96
- package/src/components/Search/Search.scss +103 -103
- package/src/components/Search/Search.stories.tsx +45 -26
- package/src/components/Search/Search.tsx +130 -127
- package/src/components/Search/index.ts +1 -1
- package/src/components/Search/types.ts +19 -15
- package/src/components/Select/Select.scss +213 -213
- package/src/components/Select/Select.stories.tsx +355 -355
- package/src/components/Select/Select.tsx +278 -278
- package/src/components/Select/components/Dropdown.scss +61 -61
- package/src/components/Select/components/Dropdown.tsx +140 -140
- package/src/components/Select/components/types.ts +24 -24
- package/src/components/Select/index.ts +1 -1
- package/src/components/Select/types.ts +134 -134
- package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.scss +128 -128
- package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.tsx +56 -56
- package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.tsx +167 -167
- package/src/components/SequentialConnectingBranch/components/AddBrowserModal/AddBrowserModal.scss +51 -51
- package/src/components/SequentialConnectingBranch/components/AddBrowserModal/AddBrowserModal.tsx +107 -107
- package/src/components/SequentialConnectingBranch/components/AddBrowserModal/types.ts +5 -5
- package/src/components/SequentialConnectingBranch/components/Branches/Branches.scss +190 -190
- package/src/components/SequentialConnectingBranch/components/Branches/Branches.tsx +236 -236
- package/src/components/SequentialConnectingBranch/components/Branches/types.ts +25 -25
- package/src/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.scss +3 -3
- package/src/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.tsx +68 -68
- package/src/components/SequentialConnectingBranch/components/ConnectingBranches/types.ts +17 -17
- package/src/components/SequentialConnectingBranch/components/DatasetListModal/DatasetListModal.scss +31 -31
- package/src/components/SequentialConnectingBranch/components/DatasetListModal/DatasetListModal.tsx +85 -85
- package/src/components/SequentialConnectingBranch/components/DatasetListModal/types.ts +4 -4
- package/src/components/SequentialConnectingBranch/index.ts +1 -1
- package/src/components/SequentialConnectingBranch/types.ts +60 -60
- package/src/components/StateDropdown/StateDropdown.stories.tsx +104 -104
- package/src/components/StateDropdown/StateDropdown.tsx +245 -245
- package/src/components/StateDropdown/StateDropdownTypes.tsx +27 -27
- package/src/components/StatusButton/StatusButton.scss +90 -90
- package/src/components/StatusButton/StatusButton.stories.tsx +91 -91
- package/src/components/StatusButton/StatusButton.tsx +46 -46
- package/src/components/StatusButton/index.ts +1 -1
- package/src/components/StatusButton/types.ts +45 -45
- package/src/components/StatusCard/StatusCard.scss +94 -94
- package/src/components/StatusCard/StatusCard.stories.tsx +58 -58
- package/src/components/StatusCard/StatusCard.tsx +49 -49
- package/src/components/StatusCard/index.ts +1 -1
- package/src/components/StatusCard/types.ts +10 -10
- package/src/components/Table/Table.scss +117 -116
- package/src/components/Table/Table.stories.tsx +373 -373
- package/src/components/Table/Table.tsx +178 -178
- package/src/components/Table/Types.ts +124 -124
- package/src/components/Table/index.ts +1 -1
- package/src/components/TableTree/Components/TableBody.tsx +35 -35
- package/src/components/TableTree/Components/TableCell.tsx +59 -59
- package/src/components/TableTree/Components/TableHead.tsx +39 -39
- package/src/components/TableTree/Components/TableRow.tsx +37 -37
- package/src/components/TableTree/TableTree.scss +205 -205
- package/src/components/TableTree/TableTree.stories.tsx +179 -179
- package/src/components/TableTree/TableTree.tsx +245 -245
- package/src/components/TableTree/TableTreeStories.scss +22 -22
- package/src/components/TableTree/Utils/getAllChildIds.ts +12 -12
- package/src/components/TableTree/data.ts +322 -322
- package/src/components/TableTree/index.ts +1 -1
- package/src/components/TableTree/types.ts +68 -68
- package/src/components/TableWithAccordion/TableWithAccordion.scss +54 -0
- package/src/components/TableWithAccordion/TableWithAccordion.stories.tsx +94 -0
- package/src/components/TableWithAccordion/TableWithAccordion.tsx +174 -0
- package/src/components/TableWithAccordion/data.ts +37 -0
- package/src/components/TableWithAccordion/index.ts +1 -0
- package/src/components/TableWithAccordion/types.ts +70 -0
- package/src/components/Tabs/Tabs.scss +132 -79
- package/src/components/Tabs/Tabs.stories.tsx +153 -134
- package/src/components/Tabs/Tabs.tsx +71 -62
- package/src/components/Tabs/index.ts +1 -1
- package/src/components/Tabs/types.ts +48 -48
- package/src/components/TextArea/Textarea.scss +144 -144
- package/src/components/TextArea/Textarea.stories.tsx +92 -92
- package/src/components/TextArea/Textarea.tsx +84 -84
- package/src/components/TextArea/Types.ts +82 -82
- package/src/components/TextArea/index.tsx +1 -1
- package/src/components/ThemeProvider/ThemeProvider.tsx +27 -27
- package/src/components/ThemeProvider/index.ts +1 -1
- package/src/components/ThemeProvider/types.ts +14 -14
- package/src/components/Toast/Toast.scss +121 -121
- package/src/components/Toast/Toast.stories.tsx +144 -144
- package/src/components/Toast/Toast.tsx +117 -117
- package/src/components/Toast/index.ts +1 -1
- package/src/components/Toast/types.ts +27 -27
- package/src/components/Toastify/Toastify.stories.tsx +71 -71
- package/src/components/Toastify/Toastify.tsx +94 -94
- package/src/components/Toastify/index.ts +1 -1
- package/src/components/Toastify/types.ts +9 -9
- package/src/components/Toggle/Toggle.scss +133 -133
- package/src/components/Toggle/Toggle.stories.tsx +132 -132
- package/src/components/Toggle/Toggle.tsx +96 -96
- package/src/components/Toggle/index.ts +1 -1
- package/src/components/Toggle/types.ts +43 -43
- package/src/components/ToggleSwitch/ToggleSwitch.scss +58 -58
- package/src/components/ToggleSwitch/ToggleSwitch.stories.tsx +52 -52
- package/src/components/ToggleSwitch/ToggleSwitch.tsx +30 -30
- package/src/components/ToggleSwitch/index.ts +1 -1
- package/src/components/Tooltip/Tooltip.scss +27 -27
- package/src/components/Tooltip/Tooltip.stories.tsx +98 -98
- package/src/components/Tooltip/Tooltip.tsx +194 -194
- package/src/components/Tooltip/index.ts +1 -1
- package/src/components/Tooltip/types.ts +66 -66
- package/src/components/Typography/Typography.scss +25 -25
- package/src/components/Typography/Typography.stories.tsx +59 -59
- package/src/components/Typography/Typography.tsx +41 -41
- package/src/components/Typography/index.ts +1 -1
- package/src/components/Typography/types.ts +57 -57
- package/src/components/VariableInput/VariableInput.scss +127 -127
- package/src/components/VariableInput/VariableInput.stories.tsx +32 -32
- package/src/components/VariableInput/VariableInput.tsx +352 -352
- package/src/components/VariableInput/types.ts +56 -56
- package/src/hooks/keyboardevents/useEscKeyEvent.tsx +30 -30
- package/src/hooks/useClickOutside.tsx +30 -30
- package/src/hooks/useFileDropzone.tsx +275 -274
- package/src/hooks/usePortalPosition.tsx +53 -53
- package/src/hooks/useTheme.tsx +13 -13
- package/src/index.ts +204 -193
- package/src/utils/FormatString/FormatString.stories.tsx +58 -0
- package/src/utils/FormatString/FormatString.tsx +41 -0
- package/src/utils/TableCell/TableCell.ts +16 -16
- package/src/utils/capitalize/capitalize.stories.tsx +44 -44
- package/src/utils/capitalize/capitalize.tsx +4 -4
- package/src/utils/checkDuplicates/CheckDuplicates.stories.tsx +40 -40
- package/src/utils/checkDuplicates/checkDuplicates.ts +13 -13
- package/src/utils/checkEmpty/checkEmpty.stories.tsx +34 -34
- package/src/utils/checkEmpty/checkEmpty.ts +24 -24
- package/src/utils/compareArrays/compareArrays.stories.tsx +62 -62
- package/src/utils/compareArrays/compareArrays.ts +31 -31
- package/src/utils/compareObjects/compareObjects.stories.tsx +51 -51
- package/src/utils/compareObjects/compareObjects.ts +53 -53
- package/src/utils/debounce/debounce.stories.tsx +81 -81
- package/src/utils/debounce/debounce.ts +28 -28
- package/src/utils/downloadFile/saveFileFromBlob.stories.tsx +62 -62
- package/src/utils/downloadFile/saveFileFromBlob.ts +40 -40
- package/src/utils/ffID/ffID.stories.tsx +35 -35
- package/src/utils/ffID/ffid.ts +7 -7
- package/src/utils/findAndInsert/findAndInsert.stories.tsx +119 -119
- package/src/utils/findAndInsert/findAndInsert.ts +49 -49
- package/src/utils/getEncryptedData/getEncryptedData.stories.tsx +55 -55
- package/src/utils/getEncryptedData/getEncryptedData.ts +8 -8
- package/src/utils/getExtension/getExtension.stories.tsx +23 -23
- package/src/utils/getExtension/getExtension.ts +28 -28
- package/src/utils/getSelectOptionValue/getSelectOptionValue.ts +31 -31
- package/src/utils/getSequentialPayload/getSequentialPayload.stories.tsx +72 -72
- package/src/utils/getSequentialPayload/getSequentialPayload.ts +16 -16
- package/src/utils/getSequentialPayload/types.ts +32 -32
- package/src/utils/throttle/throttle.stories.tsx +100 -100
- package/src/utils/throttle/throttle.ts +33 -33
- package/src/utils/truncateText/truncateText.stories.tsx +37 -37
- package/src/utils/truncateText/truncateText.ts +4 -4
- package/tsconfig.json +55 -55
- package/vite.config.js +14 -14
@@ -1,4 +1,4 @@
|
|
1
|
-
<svg width="10" height="16" viewBox="0 0 10 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M0.0318604 16V5.16323L3.06376 7.08443L0.272016 15.5797L9.96808 5.58349V10.5066L0.0318604 16Z" fill="currentColor"/>
|
3
|
-
<path d="M6.36583 7.32458L0.0318604 4.23265V0L9.45776 5.01313L6.36583 7.32458Z" fill="currentColor"/>
|
4
|
-
</svg>
|
1
|
+
<svg width="10" height="16" viewBox="0 0 10 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M0.0318604 16V5.16323L3.06376 7.08443L0.272016 15.5797L9.96808 5.58349V10.5066L0.0318604 16Z" fill="currentColor"/>
|
3
|
+
<path d="M6.36583 7.32458L0.0318604 4.23265V0L9.45776 5.01313L6.36583 7.32458Z" fill="currentColor"/>
|
4
|
+
</svg>
|
@@ -1,15 +1,15 @@
|
|
1
|
-
<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<g clip-path="url(#clip0_290_15078)">
|
3
|
-
<path d="M8.10721 9.74726C10.6408 9.74726 12.6947 7.69337 12.6947 5.15977C12.6947 2.62616 10.6408 0.572266 8.10721 0.572266C5.57361 0.572266 3.51971 2.62616 3.51971 5.15977C3.51971 7.69337 5.57361 9.74726 8.10721 9.74726Z" fill="#036C70"/>
|
4
|
-
<path d="M11.9322 13.5854C14.2725 13.5854 16.1697 11.6882 16.1697 9.34785C16.1697 7.00755 14.2725 5.11035 11.9322 5.11035C9.5919 5.11035 7.6947 7.00755 7.6947 9.34785C7.6947 11.6882 9.5919 13.5854 11.9322 13.5854Z" fill="#1A9BA1"/>
|
5
|
-
<path d="M8.70721 16.6104C10.5021 16.6104 11.9572 15.1553 11.9572 13.3604C11.9572 11.5654 10.5021 10.1104 8.70721 10.1104C6.91229 10.1104 5.45721 11.5654 5.45721 13.3604C5.45721 15.1553 6.91229 16.6104 8.70721 16.6104Z" fill="#37C6D0"/>
|
6
|
-
<path d="M7.58223 12.748H0.957227C0.519727 12.748 0.157227 12.3855 0.157227 11.948V5.42305C0.157227 4.98555 0.519727 4.62305 0.957227 4.62305H7.58223C8.01973 4.62305 8.38223 4.98555 8.38223 5.42305V11.948C8.38223 12.3855 8.03223 12.748 7.58223 12.748Z" fill="#04878B"/>
|
7
|
-
<path d="M2.93219 10.0854C3.19469 10.2354 3.60719 10.3729 4.03219 10.3729C4.55719 10.3729 4.85719 10.1229 4.85719 9.76035C4.85719 9.42285 4.63219 9.22285 4.05719 9.01035C3.30719 8.74785 2.81969 8.34785 2.81969 7.71035C2.81969 6.97285 3.44469 6.42285 4.43219 6.42285C4.91969 6.42285 5.28219 6.53535 5.51969 6.64785L5.31969 7.31035C5.15719 7.22285 4.84469 7.09785 4.41969 7.09785C3.89469 7.09785 3.66969 7.37285 3.66969 7.63535C3.66969 7.98535 3.93219 8.13535 4.54469 8.37285C5.33219 8.67285 5.70719 9.06035 5.70719 9.69785C5.70719 10.4229 5.15719 11.0354 3.98219 11.0354C3.49469 11.0354 2.99469 10.8979 2.74469 10.7604L2.93219 10.0854Z" fill="white"/>
|
8
|
-
<path opacity="0.2" d="M8.38223 5.34766V5.42266V11.9477C8.38223 12.3852 8.01973 12.7477 7.58223 12.7477H5.49473L5.46973 13.4602H8.26973C8.70723 13.4602 9.06973 13.0977 9.06973 12.6602V6.13516C9.05723 5.73516 8.76973 5.41016 8.38223 5.34766Z" fill="black"/>
|
9
|
-
</g>
|
10
|
-
<defs>
|
11
|
-
<clipPath id="clip0_290_15078">
|
12
|
-
<rect width="16" height="16" fill="white" transform="translate(0.144714 0.597656)"/>
|
13
|
-
</clipPath>
|
14
|
-
</defs>
|
15
|
-
</svg>
|
1
|
+
<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<g clip-path="url(#clip0_290_15078)">
|
3
|
+
<path d="M8.10721 9.74726C10.6408 9.74726 12.6947 7.69337 12.6947 5.15977C12.6947 2.62616 10.6408 0.572266 8.10721 0.572266C5.57361 0.572266 3.51971 2.62616 3.51971 5.15977C3.51971 7.69337 5.57361 9.74726 8.10721 9.74726Z" fill="#036C70"/>
|
4
|
+
<path d="M11.9322 13.5854C14.2725 13.5854 16.1697 11.6882 16.1697 9.34785C16.1697 7.00755 14.2725 5.11035 11.9322 5.11035C9.5919 5.11035 7.6947 7.00755 7.6947 9.34785C7.6947 11.6882 9.5919 13.5854 11.9322 13.5854Z" fill="#1A9BA1"/>
|
5
|
+
<path d="M8.70721 16.6104C10.5021 16.6104 11.9572 15.1553 11.9572 13.3604C11.9572 11.5654 10.5021 10.1104 8.70721 10.1104C6.91229 10.1104 5.45721 11.5654 5.45721 13.3604C5.45721 15.1553 6.91229 16.6104 8.70721 16.6104Z" fill="#37C6D0"/>
|
6
|
+
<path d="M7.58223 12.748H0.957227C0.519727 12.748 0.157227 12.3855 0.157227 11.948V5.42305C0.157227 4.98555 0.519727 4.62305 0.957227 4.62305H7.58223C8.01973 4.62305 8.38223 4.98555 8.38223 5.42305V11.948C8.38223 12.3855 8.03223 12.748 7.58223 12.748Z" fill="#04878B"/>
|
7
|
+
<path d="M2.93219 10.0854C3.19469 10.2354 3.60719 10.3729 4.03219 10.3729C4.55719 10.3729 4.85719 10.1229 4.85719 9.76035C4.85719 9.42285 4.63219 9.22285 4.05719 9.01035C3.30719 8.74785 2.81969 8.34785 2.81969 7.71035C2.81969 6.97285 3.44469 6.42285 4.43219 6.42285C4.91969 6.42285 5.28219 6.53535 5.51969 6.64785L5.31969 7.31035C5.15719 7.22285 4.84469 7.09785 4.41969 7.09785C3.89469 7.09785 3.66969 7.37285 3.66969 7.63535C3.66969 7.98535 3.93219 8.13535 4.54469 8.37285C5.33219 8.67285 5.70719 9.06035 5.70719 9.69785C5.70719 10.4229 5.15719 11.0354 3.98219 11.0354C3.49469 11.0354 2.99469 10.8979 2.74469 10.7604L2.93219 10.0854Z" fill="white"/>
|
8
|
+
<path opacity="0.2" d="M8.38223 5.34766V5.42266V11.9477C8.38223 12.3852 8.01973 12.7477 7.58223 12.7477H5.49473L5.46973 13.4602H8.26973C8.70723 13.4602 9.06973 13.0977 9.06973 12.6602V6.13516C9.05723 5.73516 8.76973 5.41016 8.38223 5.34766Z" fill="black"/>
|
9
|
+
</g>
|
10
|
+
<defs>
|
11
|
+
<clipPath id="clip0_290_15078">
|
12
|
+
<rect width="16" height="16" fill="white" transform="translate(0.144714 0.597656)"/>
|
13
|
+
</clipPath>
|
14
|
+
</defs>
|
15
|
+
</svg>
|
@@ -1,3 +1,3 @@
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 10.8281C16 8.49597 14.4286 6.45837 12.2126 5.84436C12.0734 2.59814 9.38928 0 6.10938 0C2.7406 0 0 2.7406 0 6.10938C0 7.20728 0.292236 8.27625 0.847168 9.21472L0.0224609 12.1962L3.00403 11.3716C3.8667 11.8817 4.83984 12.1691 5.84424 12.2124C6.45813 14.4285 8.49585 16 10.8281 16C11.759 16 12.6643 15.7521 13.4597 15.281L15.9774 15.9774L15.281 13.4597C15.7521 12.6643 16 11.759 16 10.8281ZM3.15198 10.3579L1.36707 10.8517L1.86084 9.06677L1.74829 8.89075C1.2179 8.06091 0.9375 7.09912 0.9375 6.10938C0.9375 3.25757 3.25757 0.9375 6.10938 0.9375C8.96118 0.9375 11.2812 3.25757 11.2812 6.10938C11.2812 8.96118 8.96118 11.2812 6.10938 11.2812C5.11963 11.2812 4.15796 11.0009 3.328 10.4705L3.15198 10.3579ZM14.6329 14.6329L13.3085 14.2665L13.1316 14.3816C12.4459 14.827 11.6493 15.0625 10.8281 15.0625C8.99512 15.0625 7.3844 13.8773 6.81372 12.1779C9.62061 11.8542 11.8542 9.62061 12.178 6.8136C13.8773 7.3844 15.0625 8.99512 15.0625 10.8281C15.0625 11.6493 14.827 12.4459 14.3816 13.1316L14.2665 13.3085L14.6329 14.6329ZM6.57812 8.46875V9.40625H5.64062V8.46875H6.57812ZM6.7417 5.37952C6.93848 5.19946 7.04687 4.95374 7.04687 4.6875C7.04687 4.17053 6.62634 3.75 6.10937 3.75C5.59241 3.75 5.17187 4.17053 5.17187 4.6875H4.23437C4.23437 3.65356 5.07544 2.8125 6.10937 2.8125C7.14331 2.8125 7.98437 3.65356 7.98437 4.6875C7.98437 5.21228 7.76208 5.71655 7.37463 6.07117L6.57812 6.80017V7.53125H5.64062V6.38733L6.7417 5.37952Z" fill="currentColor"/>
|
3
|
-
</svg>
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 10.8281C16 8.49597 14.4286 6.45837 12.2126 5.84436C12.0734 2.59814 9.38928 0 6.10938 0C2.7406 0 0 2.7406 0 6.10938C0 7.20728 0.292236 8.27625 0.847168 9.21472L0.0224609 12.1962L3.00403 11.3716C3.8667 11.8817 4.83984 12.1691 5.84424 12.2124C6.45813 14.4285 8.49585 16 10.8281 16C11.759 16 12.6643 15.7521 13.4597 15.281L15.9774 15.9774L15.281 13.4597C15.7521 12.6643 16 11.759 16 10.8281ZM3.15198 10.3579L1.36707 10.8517L1.86084 9.06677L1.74829 8.89075C1.2179 8.06091 0.9375 7.09912 0.9375 6.10938C0.9375 3.25757 3.25757 0.9375 6.10938 0.9375C8.96118 0.9375 11.2812 3.25757 11.2812 6.10938C11.2812 8.96118 8.96118 11.2812 6.10938 11.2812C5.11963 11.2812 4.15796 11.0009 3.328 10.4705L3.15198 10.3579ZM14.6329 14.6329L13.3085 14.2665L13.1316 14.3816C12.4459 14.827 11.6493 15.0625 10.8281 15.0625C8.99512 15.0625 7.3844 13.8773 6.81372 12.1779C9.62061 11.8542 11.8542 9.62061 12.178 6.8136C13.8773 7.3844 15.0625 8.99512 15.0625 10.8281C15.0625 11.6493 14.827 12.4459 14.3816 13.1316L14.2665 13.3085L14.6329 14.6329ZM6.57812 8.46875V9.40625H5.64062V8.46875H6.57812ZM6.7417 5.37952C6.93848 5.19946 7.04687 4.95374 7.04687 4.6875C7.04687 4.17053 6.62634 3.75 6.10937 3.75C5.59241 3.75 5.17187 4.17053 5.17187 4.6875H4.23437C4.23437 3.65356 5.07544 2.8125 6.10937 2.8125C7.14331 2.8125 7.98437 3.65356 7.98437 4.6875C7.98437 5.21228 7.76208 5.71655 7.37463 6.07117L6.57812 6.80017V7.53125H5.64062V6.38733L6.7417 5.37952Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M14 7C14 10.866 10.866 14 7 14C3.13401 14 0 10.866 0 7C0 3.13401 3.13401 0 7 0C10.866 0 14 3.13401 14 7ZM1.75 7C1.75 9.8995 4.1005 12.25 7 12.25C9.8995 12.25 12.25 9.8995 12.25 7C12.25 4.1005 9.8995 1.75 7 1.75C4.1005 1.75 1.75 4.1005 1.75 7Z" fill="currentColor"/>
|
3
|
-
<path d="M1 7C1 6.44772 1.44772 6 2 6H12C12.5523 6 13 6.44772 13 7C13 7.55228 12.5523 8 12 8H2C1.44772 8 1 7.55228 1 7Z" fill="currentColor"/>
|
4
|
-
</svg>
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M14 7C14 10.866 10.866 14 7 14C3.13401 14 0 10.866 0 7C0 3.13401 3.13401 0 7 0C10.866 0 14 3.13401 14 7ZM1.75 7C1.75 9.8995 4.1005 12.25 7 12.25C9.8995 12.25 12.25 9.8995 12.25 7C12.25 4.1005 9.8995 1.75 7 1.75C4.1005 1.75 1.75 4.1005 1.75 7Z" fill="currentColor"/>
|
3
|
+
<path d="M1 7C1 6.44772 1.44772 6 2 6H12C12.5523 6 13 6.44772 13 7C13 7.55228 12.5523 8 12 8H2C1.44772 8 1 7.55228 1 7Z" fill="currentColor"/>
|
4
|
+
</svg>
|
@@ -1,3 +1,3 @@
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.470588 15.5294V15.0588H0V16H0.941176V15.5294H0.470588ZM0.941176 8.23529V7.76471H1.41176V8.23529H0.941176ZM1.88235 7.76471V8.23529H2.35294V7.76471H1.88235ZM3.05882 8.23529V7.76471H3.52941V8.23529H3.05882ZM4.23529 7.76471V8.23529H4.70588V7.76471H4.23529ZM8.94118 8.23529V7.76471H9.41177V8.23529H8.94118ZM10.1176 7.76471V8.23529H10.5882V7.76471H10.1176ZM11.2941 8.23529V7.76471H11.7647V8.23529H11.2941ZM13.6471 8.23529V7.76471H14.1176V8.23529H13.6471ZM14.5882 7.76471V8.23529H15.0588V7.76471H14.5882ZM12.4706 8.23529V7.76471H12.9412V8.23529H12.4706ZM6.58824 8.23529V7.76471H7.05882V8.23529H6.58824ZM5.41176 7.76471V8.23529H5.88235V7.76471H5.41176ZM7.76471 7.76471V8.23529H8.23529V7.76471H7.76471ZM7.76471 11.7647V11.2941H8.23529V11.7647H7.76471ZM7.76471 13.6471V14.1176H8.23529V13.6471H7.76471ZM7.76471 15.0588V14.5882H8.23529V15.0588H7.76471ZM7.76471 12.4706V12.9412H8.23529V12.4706H7.76471ZM7.76471 10.5882V10.1176H8.23529V10.5882H7.76471ZM7.76471 8.94118V9.41176H8.23529V8.94118H7.76471ZM7.76471 4.70588V4.23529H8.23529V4.70588H7.76471ZM7.76471 6.58823V7.05882H8.23529V6.58823H7.76471ZM7.76471 5.88235V5.41176H8.23529V5.88235H7.76471ZM7.76471 3.05882V3.52941H8.23529V3.05882H7.76471ZM7.76471 2.35294V1.88235H8.23529V2.35294H7.76471ZM7.76471 0.941176V1.41177H8.23529V0.941176H7.76471ZM15.5294 15.0588V15.5294H15.0588V16H16V15.0588H15.5294ZM0 4.70588V4.23529H0.470588V4.70588H0ZM15.5294 4.23534V4.70593H16V4.23534H15.5294ZM0 2.35294V1.88235H0.470588V2.35294H0ZM15.5294 1.88232V2.35291H16V1.88232H15.5294ZM0 3.52941V3.05882H0.470588V3.52941H0ZM15.5294 3.05883V3.52942H16V3.05883H15.5294ZM0 5.88235V5.41176H0.470588V5.88235H0ZM15.5294 5.41174V5.88232H16V5.41174H15.5294ZM0 7.05882V6.58823H0.470588V7.05882H0ZM15.5294 6.58825V7.05884H16V6.58825H15.5294ZM0 11.7647V11.2941H0.470588V11.7647H0ZM15.5294 11.2941V11.7646H16V11.2941H15.5294ZM0 9.41176V8.94118H0.470588V9.41176H0ZM15.5294 8.94115V9.41174H16V8.94115H15.5294ZM0 10.5882V10.1176H0.470588V10.5882H0ZM15.5294 10.1177V10.5883H16V10.1177H15.5294ZM0 12.9412V12.4706H0.470588V12.9412H0ZM15.5294 12.4706V12.9412H16V12.4706H15.5294ZM0 14.1176V13.6471H0.470588V14.1176H0ZM15.5294 13.6471V14.1177H16V13.6471H15.5294ZM0 8.23529V7.76471H0.470588V8.23529H0ZM15.5294 7.76476V8.23535H16V7.76476H15.5294ZM11.2941 0.470589V0H11.7647V0.470589H11.2941ZM13.6471 0V0.470589H14.1176V0H13.6471ZM12.4706 0.470589V0H12.9412V0.470589H12.4706ZM10.1176 0V0.470589H10.5882V0H10.1176ZM8.94118 0.470589V0H9.41177V0.470589H8.94118ZM4.23529 0V0.470589H4.70588V0H4.23529ZM6.58824 0.470589V0H7.05882V0.470589H6.58824ZM5.41176 0V0.470589H5.88235V0H5.41176ZM3.05882 0.470589V0H3.52941V0.470589H3.05882ZM1.88235 0V0.470589H2.35294V0H1.88235ZM7.76471 0.470589V0H8.23529V0.470589H7.76471ZM11.2941 15.5294V16H11.7647V15.5294H11.2941ZM13.6471 16V15.5294H14.1176V16H13.6471ZM12.4706 15.5294V16H12.9412V15.5294H12.4706ZM10.1176 16V15.5294H10.5882V16H10.1176ZM8.94118 15.5294V16H9.41177V15.5294H8.94118ZM4.23529 16V15.5294H4.70588V16H4.23529ZM6.58824 15.5294V16H7.05882V15.5294H6.58824ZM5.41176 16V15.5294H5.88235V16H5.41176ZM3.05882 15.5294V16H3.52941V15.5294H3.05882ZM1.88235 16V15.5294H2.35294V16H1.88235ZM7.76471 15.5294V16H8.23529V15.5294H7.76471ZM0 0.941176H0.470588V0.470588H0.941176V0H0V0.941176ZM15.5294 0.941162H16V-1.52588e-05H15.0588V0.470573H15.5294V0.941162Z" fill="currentColor"/>
|
3
|
-
</svg>
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.470588 15.5294V15.0588H0V16H0.941176V15.5294H0.470588ZM0.941176 8.23529V7.76471H1.41176V8.23529H0.941176ZM1.88235 7.76471V8.23529H2.35294V7.76471H1.88235ZM3.05882 8.23529V7.76471H3.52941V8.23529H3.05882ZM4.23529 7.76471V8.23529H4.70588V7.76471H4.23529ZM8.94118 8.23529V7.76471H9.41177V8.23529H8.94118ZM10.1176 7.76471V8.23529H10.5882V7.76471H10.1176ZM11.2941 8.23529V7.76471H11.7647V8.23529H11.2941ZM13.6471 8.23529V7.76471H14.1176V8.23529H13.6471ZM14.5882 7.76471V8.23529H15.0588V7.76471H14.5882ZM12.4706 8.23529V7.76471H12.9412V8.23529H12.4706ZM6.58824 8.23529V7.76471H7.05882V8.23529H6.58824ZM5.41176 7.76471V8.23529H5.88235V7.76471H5.41176ZM7.76471 7.76471V8.23529H8.23529V7.76471H7.76471ZM7.76471 11.7647V11.2941H8.23529V11.7647H7.76471ZM7.76471 13.6471V14.1176H8.23529V13.6471H7.76471ZM7.76471 15.0588V14.5882H8.23529V15.0588H7.76471ZM7.76471 12.4706V12.9412H8.23529V12.4706H7.76471ZM7.76471 10.5882V10.1176H8.23529V10.5882H7.76471ZM7.76471 8.94118V9.41176H8.23529V8.94118H7.76471ZM7.76471 4.70588V4.23529H8.23529V4.70588H7.76471ZM7.76471 6.58823V7.05882H8.23529V6.58823H7.76471ZM7.76471 5.88235V5.41176H8.23529V5.88235H7.76471ZM7.76471 3.05882V3.52941H8.23529V3.05882H7.76471ZM7.76471 2.35294V1.88235H8.23529V2.35294H7.76471ZM7.76471 0.941176V1.41177H8.23529V0.941176H7.76471ZM15.5294 15.0588V15.5294H15.0588V16H16V15.0588H15.5294ZM0 4.70588V4.23529H0.470588V4.70588H0ZM15.5294 4.23534V4.70593H16V4.23534H15.5294ZM0 2.35294V1.88235H0.470588V2.35294H0ZM15.5294 1.88232V2.35291H16V1.88232H15.5294ZM0 3.52941V3.05882H0.470588V3.52941H0ZM15.5294 3.05883V3.52942H16V3.05883H15.5294ZM0 5.88235V5.41176H0.470588V5.88235H0ZM15.5294 5.41174V5.88232H16V5.41174H15.5294ZM0 7.05882V6.58823H0.470588V7.05882H0ZM15.5294 6.58825V7.05884H16V6.58825H15.5294ZM0 11.7647V11.2941H0.470588V11.7647H0ZM15.5294 11.2941V11.7646H16V11.2941H15.5294ZM0 9.41176V8.94118H0.470588V9.41176H0ZM15.5294 8.94115V9.41174H16V8.94115H15.5294ZM0 10.5882V10.1176H0.470588V10.5882H0ZM15.5294 10.1177V10.5883H16V10.1177H15.5294ZM0 12.9412V12.4706H0.470588V12.9412H0ZM15.5294 12.4706V12.9412H16V12.4706H15.5294ZM0 14.1176V13.6471H0.470588V14.1176H0ZM15.5294 13.6471V14.1177H16V13.6471H15.5294ZM0 8.23529V7.76471H0.470588V8.23529H0ZM15.5294 7.76476V8.23535H16V7.76476H15.5294ZM11.2941 0.470589V0H11.7647V0.470589H11.2941ZM13.6471 0V0.470589H14.1176V0H13.6471ZM12.4706 0.470589V0H12.9412V0.470589H12.4706ZM10.1176 0V0.470589H10.5882V0H10.1176ZM8.94118 0.470589V0H9.41177V0.470589H8.94118ZM4.23529 0V0.470589H4.70588V0H4.23529ZM6.58824 0.470589V0H7.05882V0.470589H6.58824ZM5.41176 0V0.470589H5.88235V0H5.41176ZM3.05882 0.470589V0H3.52941V0.470589H3.05882ZM1.88235 0V0.470589H2.35294V0H1.88235ZM7.76471 0.470589V0H8.23529V0.470589H7.76471ZM11.2941 15.5294V16H11.7647V15.5294H11.2941ZM13.6471 16V15.5294H14.1176V16H13.6471ZM12.4706 15.5294V16H12.9412V15.5294H12.4706ZM10.1176 16V15.5294H10.5882V16H10.1176ZM8.94118 15.5294V16H9.41177V15.5294H8.94118ZM4.23529 16V15.5294H4.70588V16H4.23529ZM6.58824 15.5294V16H7.05882V15.5294H6.58824ZM5.41176 16V15.5294H5.88235V16H5.41176ZM3.05882 15.5294V16H3.52941V15.5294H3.05882ZM1.88235 16V15.5294H2.35294V16H1.88235ZM7.76471 15.5294V16H8.23529V15.5294H7.76471ZM0 0.941176H0.470588V0.470588H0.941176V0H0V0.941176ZM15.5294 0.941162H16V-1.52588e-05H15.0588V0.470573H15.5294V0.941162Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -1,13 +1,13 @@
|
|
1
|
-
<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M97.5 22.5H82.5C79.7421 22.4918 77.5083 20.258 77.5001 17.5001V2.50008L97.5 22.5Z" fill="currentColor"/>
|
3
|
-
<path d="M97.5 22.5V112.5C97.4918 115.258 95.258 117.492 92.5001 117.5H12.4999C9.74203 117.492 7.5082 115.258 7.5 112.5V7.5C7.5082 4.74211 9.74203 2.50828 12.4999 2.50008H77.4998V17.5001C77.5083 20.258 79.7421 22.4918 82.5 22.5H97.5Z" fill="white"/>
|
4
|
-
<path d="M82.5 100C99.0685 100 112.5 86.5686 112.5 70.0001C112.5 53.4315 99.0685 40.0001 82.5 40.0001C65.9315 40.0001 52.5 53.4315 52.5 70.0001C52.5 86.5686 65.9315 100 82.5 100Z" fill="#FDFAFF"/>
|
5
|
-
<path d="M95.0716 58.5714H74.5001C72.6066 58.5714 71.0716 60.1064 71.0716 62V82.5714C71.0716 84.4649 72.6066 86 74.5001 86H95.0716C96.9651 86 98.5001 84.4649 98.5001 82.5714V62C98.5001 60.1064 96.9651 58.5714 95.0716 58.5714Z" fill="currentColor"/>
|
6
|
-
<path d="M90.5001 54H69.9286C68.0351 54 66.5001 55.535 66.5001 57.4285V78C66.5001 79.8935 68.0351 81.4285 69.9286 81.4285H90.5001C92.3936 81.4285 93.9286 79.8935 93.9286 78V57.4285C93.9286 55.535 92.3936 54 90.5001 54Z" fill="currentColor"/>
|
7
|
-
<path d="M87.0717 66.5714H81.3574V60.8571C81.3574 60.554 81.237 60.2633 81.0226 60.049C80.8083 59.8347 80.5176 59.7142 80.2145 59.7142C79.9114 59.7142 79.6207 59.8347 79.4064 60.049C79.1921 60.2633 79.0717 60.554 79.0717 60.8571V66.5714H73.3574C73.0543 66.5714 72.7636 66.6918 72.5493 66.9061C72.3349 67.1205 72.2145 67.4111 72.2145 67.7142C72.2145 68.0174 72.3349 68.308 72.5493 68.5224C72.7636 68.7367 73.0543 68.8571 73.3574 68.8571H79.0717V74.5714C79.0717 74.8745 79.1921 75.1652 79.4064 75.3795C79.6207 75.5938 79.9114 75.7142 80.2145 75.7142C80.5176 75.7142 80.8083 75.5938 81.0226 75.3795C81.237 75.1652 81.3574 74.8745 81.3574 74.5714V68.8571H87.0717C87.3748 68.8571 87.6655 68.7367 87.8798 68.5224C88.0941 68.308 88.2145 68.0174 88.2145 67.7142C88.2145 67.4111 88.0941 67.1205 87.8798 66.9061C87.6655 66.6918 87.3748 66.5714 87.0717 66.5714Z" fill="#F5F5F5"/>
|
8
|
-
<path d="M19.9999 15H45V19.9999H19.9999V15Z" fill="currentColor"/>
|
9
|
-
<path d="M19.9999 25.0001H24.9998V30H19.9999V25.0001Z" fill="currentColor"/>
|
10
|
-
<path d="M30 25.0001H34.9999V30H30V25.0001Z" fill="currentColor"/>
|
11
|
-
<path d="M94.9999 112.5C94.9999 113.881 93.8805 115 92.4998 115H12.4999C11.1192 115 9.99983 113.881 9.99983 112.5V7.5C9.99983 6.1193 11.1192 4.99992 12.4999 4.99992H75V17.4998C75 21.642 78.3579 24.9998 82.5 24.9998H87.4999V19.9999H82.5C81.1193 19.9999 79.9999 18.8805 79.9999 17.4998V8.535L94.9999 23.535V32.5001H99.9998V22.5C99.9996 21.837 99.7362 21.2013 99.2674 20.7326L79.2675 0.732422C78.7987 0.263438 78.1629 0 77.5001 0H12.4999C8.3578 0 4.99991 3.35789 4.99991 7.5V112.5C4.99991 116.642 8.3578 120 12.4999 120H92.4998C96.6419 120 99.9998 116.642 99.9998 112.5V107.5H94.9999V112.5Z" fill="currentColor"/>
|
12
|
-
<path d="M82.5 37.5C64.5508 37.5 49.9999 52.0507 49.9999 70.0001C49.9999 87.9495 64.5508 102.5 82.5 102.5C100.449 102.5 115 87.9492 115 69.9998C114.979 52.0594 100.441 37.5206 82.5 37.5ZM82.5 97.5C67.3123 97.5 55.0001 85.1878 55.0001 70.0001C55.0001 54.8123 67.3123 42.4999 82.5 42.4999C97.6877 42.4999 110 54.8121 110 69.9998C109.982 85.1803 97.6805 97.4822 82.5 97.5Z" fill="currentColor"/>
|
13
|
-
</svg>
|
1
|
+
<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M97.5 22.5H82.5C79.7421 22.4918 77.5083 20.258 77.5001 17.5001V2.50008L97.5 22.5Z" fill="currentColor"/>
|
3
|
+
<path d="M97.5 22.5V112.5C97.4918 115.258 95.258 117.492 92.5001 117.5H12.4999C9.74203 117.492 7.5082 115.258 7.5 112.5V7.5C7.5082 4.74211 9.74203 2.50828 12.4999 2.50008H77.4998V17.5001C77.5083 20.258 79.7421 22.4918 82.5 22.5H97.5Z" fill="white"/>
|
4
|
+
<path d="M82.5 100C99.0685 100 112.5 86.5686 112.5 70.0001C112.5 53.4315 99.0685 40.0001 82.5 40.0001C65.9315 40.0001 52.5 53.4315 52.5 70.0001C52.5 86.5686 65.9315 100 82.5 100Z" fill="#FDFAFF"/>
|
5
|
+
<path d="M95.0716 58.5714H74.5001C72.6066 58.5714 71.0716 60.1064 71.0716 62V82.5714C71.0716 84.4649 72.6066 86 74.5001 86H95.0716C96.9651 86 98.5001 84.4649 98.5001 82.5714V62C98.5001 60.1064 96.9651 58.5714 95.0716 58.5714Z" fill="currentColor"/>
|
6
|
+
<path d="M90.5001 54H69.9286C68.0351 54 66.5001 55.535 66.5001 57.4285V78C66.5001 79.8935 68.0351 81.4285 69.9286 81.4285H90.5001C92.3936 81.4285 93.9286 79.8935 93.9286 78V57.4285C93.9286 55.535 92.3936 54 90.5001 54Z" fill="currentColor"/>
|
7
|
+
<path d="M87.0717 66.5714H81.3574V60.8571C81.3574 60.554 81.237 60.2633 81.0226 60.049C80.8083 59.8347 80.5176 59.7142 80.2145 59.7142C79.9114 59.7142 79.6207 59.8347 79.4064 60.049C79.1921 60.2633 79.0717 60.554 79.0717 60.8571V66.5714H73.3574C73.0543 66.5714 72.7636 66.6918 72.5493 66.9061C72.3349 67.1205 72.2145 67.4111 72.2145 67.7142C72.2145 68.0174 72.3349 68.308 72.5493 68.5224C72.7636 68.7367 73.0543 68.8571 73.3574 68.8571H79.0717V74.5714C79.0717 74.8745 79.1921 75.1652 79.4064 75.3795C79.6207 75.5938 79.9114 75.7142 80.2145 75.7142C80.5176 75.7142 80.8083 75.5938 81.0226 75.3795C81.237 75.1652 81.3574 74.8745 81.3574 74.5714V68.8571H87.0717C87.3748 68.8571 87.6655 68.7367 87.8798 68.5224C88.0941 68.308 88.2145 68.0174 88.2145 67.7142C88.2145 67.4111 88.0941 67.1205 87.8798 66.9061C87.6655 66.6918 87.3748 66.5714 87.0717 66.5714Z" fill="#F5F5F5"/>
|
8
|
+
<path d="M19.9999 15H45V19.9999H19.9999V15Z" fill="currentColor"/>
|
9
|
+
<path d="M19.9999 25.0001H24.9998V30H19.9999V25.0001Z" fill="currentColor"/>
|
10
|
+
<path d="M30 25.0001H34.9999V30H30V25.0001Z" fill="currentColor"/>
|
11
|
+
<path d="M94.9999 112.5C94.9999 113.881 93.8805 115 92.4998 115H12.4999C11.1192 115 9.99983 113.881 9.99983 112.5V7.5C9.99983 6.1193 11.1192 4.99992 12.4999 4.99992H75V17.4998C75 21.642 78.3579 24.9998 82.5 24.9998H87.4999V19.9999H82.5C81.1193 19.9999 79.9999 18.8805 79.9999 17.4998V8.535L94.9999 23.535V32.5001H99.9998V22.5C99.9996 21.837 99.7362 21.2013 99.2674 20.7326L79.2675 0.732422C78.7987 0.263438 78.1629 0 77.5001 0H12.4999C8.3578 0 4.99991 3.35789 4.99991 7.5V112.5C4.99991 116.642 8.3578 120 12.4999 120H92.4998C96.6419 120 99.9998 116.642 99.9998 112.5V107.5H94.9999V112.5Z" fill="currentColor"/>
|
12
|
+
<path d="M82.5 37.5C64.5508 37.5 49.9999 52.0507 49.9999 70.0001C49.9999 87.9495 64.5508 102.5 82.5 102.5C100.449 102.5 115 87.9492 115 69.9998C114.979 52.0594 100.441 37.5206 82.5 37.5ZM82.5 97.5C67.3123 97.5 55.0001 85.1878 55.0001 70.0001C55.0001 54.8123 67.3123 42.4999 82.5 42.4999C97.6877 42.4999 110 54.8121 110 69.9998C109.982 85.1803 97.6805 97.4822 82.5 97.5Z" fill="currentColor"/>
|
13
|
+
</svg>
|
@@ -1,22 +1,22 @@
|
|
1
|
-
<svg width="121" height="121" viewBox="0 0 121 121" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<g clip-path="url(#clip0_5382_30932)">
|
3
|
-
<path d="M58.9145 5.52071H13.7748C7.73823 5.52071 2.84479 10.387 2.84479 16.3895V97.0915C2.84479 103.094 7.73823 107.96 13.7748 107.96H65.9273C71.9638 107.96 76.8572 103.094 76.8572 97.0915V26.2608L58.9145 5.52071Z" fill="white"/>
|
4
|
-
<path d="M76.857 35.818C76.2387 35.787 75.6178 35.7713 74.9944 35.7713C65.2515 35.7713 56.0944 39.5718 49.2101 46.4728C35.0342 60.6834 35.0342 83.8055 49.2101 98.0161C54.2205 103.039 60.4347 106.419 67.2025 107.887C72.6381 107.259 76.857 102.665 76.857 97.0915V35.818Z" fill="white"/>
|
5
|
-
<path d="M58.9146 26.2608H76.857L58.9146 5.52071V26.2608Z" fill="white"/>
|
6
|
-
<path d="M47.6293 86.3579L45.3719 93.4883H20.2798V79.2273H39.2461L45.9098 82.35L47.6293 86.3579Z" fill="#9E30B0"/>
|
7
|
-
<path d="M45.3719 93.4883H61.234V79.2273H39.2461C40.2209 84.2719 42.2628 89.1483 45.3719 93.4883Z" fill="#9E30B0"/>
|
8
|
-
<path d="M74.9941 98.2046C89.2966 98.2046 100.891 86.5819 100.891 72.2446C100.891 57.9073 89.2966 46.2846 74.9941 46.2846C60.6916 46.2846 49.0972 57.9073 49.0972 72.2446C49.0972 86.5819 60.6916 98.2046 74.9941 98.2046Z" fill="#8D359C"/>
|
9
|
-
<path d="M116.66 113.971C114.656 115.98 111.403 115.982 109.397 113.975L96.1038 100.679L103.359 93.4056L116.656 106.706C118.661 108.712 118.663 111.964 116.66 113.971Z" fill="#71347B"/>
|
10
|
-
<path d="M56.8663 55.4009H20.2799C18.9854 55.4009 17.936 54.3516 17.936 53.0571C17.936 51.7626 18.9854 50.7132 20.2799 50.7132H56.8665C58.161 50.7132 59.2104 51.7626 59.2104 53.0571C59.2104 54.3516 58.1608 55.4009 56.8663 55.4009Z" fill="#71347B"/>
|
11
|
-
<path d="M49.7692 67.2698H20.2799C18.9854 67.2698 17.936 66.2205 17.936 64.926C17.936 63.6315 18.9854 62.5821 20.2799 62.5821H49.7692C51.0637 62.5821 52.113 63.6315 52.113 64.926C52.113 66.2205 51.0637 67.2698 49.7692 67.2698Z" fill="#71347B"/>
|
12
|
-
<path d="M61.2338 43.532H20.2799C18.9854 43.532 17.936 42.4826 17.936 41.1881C17.936 39.8937 18.9854 38.8443 20.2799 38.8443H61.2338C62.5283 38.8443 63.5776 39.8937 63.5776 41.1881C63.5776 42.4826 62.5283 43.532 61.2338 43.532Z" fill="#71347B"/>
|
13
|
-
<path d="M43.9835 31.6631H20.2799C18.9854 31.6631 17.936 30.6137 17.936 29.3192C17.936 28.0247 18.9854 26.9754 20.2799 26.9754H43.9835C45.278 26.9754 46.3273 28.0247 46.3273 29.3192C46.3273 30.6137 45.278 31.6631 43.9835 31.6631Z" fill="#71347B"/>
|
14
|
-
<path d="M118.314 105.049L105.017 91.7485C104.577 91.3088 103.981 91.0618 103.359 91.0618H103.358C102.736 91.062 102.139 91.3097 101.7 91.7504L99.7316 93.7234L96.5492 90.5332C105.945 79.4258 105.417 62.7101 94.9654 52.2327C90.6362 47.8929 85.1483 45.1354 79.2009 44.2506V26.2608C79.2009 25.6976 78.9981 25.1531 78.6294 24.7274L60.687 3.98738C60.2419 3.47268 59.595 3.17689 58.9143 3.17689H13.7748C6.45547 3.17689 0.500977 9.10419 0.500977 16.3895V97.0915C0.500977 104.377 6.45547 110.304 13.7748 110.304H65.9271C72.0297 110.304 77.3506 106.084 78.8066 100.294C84.1381 99.5778 89.1148 97.3613 93.2385 93.8519L96.4207 97.042L94.4444 99.0233C93.531 99.9388 93.5317 101.421 94.446 102.336L107.739 115.632C109.152 117.045 111.029 117.823 113.026 117.823H113.03C115.029 117.822 116.907 117.042 118.319 115.626C121.23 112.709 121.228 107.964 118.314 105.049ZM91.6468 88.9457C87.1985 93.4049 81.2845 95.8607 74.9941 95.8607C68.704 95.8607 62.7901 93.4049 58.3417 88.9457C49.1551 79.7366 49.1551 64.7525 58.3417 55.5434C62.7901 51.0843 68.704 48.6284 74.9941 48.6284C81.2843 48.6284 87.1985 51.0843 91.6468 55.5434C100.833 64.7525 100.833 79.7366 91.6468 88.9457ZM65.9271 105.616H13.7748C9.04048 105.616 5.18863 101.792 5.18863 97.0915V16.3895C5.18863 11.6887 9.04048 7.86454 13.7748 7.86454H57.8432L74.5134 27.1339V43.9447C67.1489 44.0671 60.244 46.9992 55.0233 52.2327C44.0155 63.2672 44.0155 81.2219 55.0233 92.2564C60.0719 97.3174 66.6956 100.226 73.7868 100.523C72.4406 103.538 69.3772 105.616 65.9271 105.616ZM115.001 112.316C114.474 112.844 113.774 113.135 113.028 113.135H113.027C112.282 113.135 111.581 112.845 111.054 112.318L99.4161 100.677L103.361 96.7226L114.999 108.363C116.088 109.453 116.089 111.225 115.001 112.316Z" fill="#71347B"/>
|
15
|
-
<path d="M78.2987 72.2446L83.0537 67.4603C83.9661 66.5423 83.9617 65.0582 83.0436 64.1457C82.1257 63.2333 80.6416 63.2377 79.7289 64.1558L74.9942 68.9196L70.2594 64.1558C69.3465 63.2375 67.8626 63.2333 66.9448 64.1457C66.0267 65.0584 66.022 66.5423 66.9347 67.4603L71.6896 72.2446L66.9347 77.0288C66.0222 77.9469 66.0267 79.431 66.9448 80.3434C67.402 80.7979 67.9995 81.0248 68.5969 81.0248C69.199 81.0248 69.8014 80.7941 70.2594 80.3331L74.9942 75.5693L79.7289 80.3331C80.1872 80.7941 80.789 81.0248 81.3914 81.0248C81.9889 81.0248 82.5865 80.7977 83.0436 80.3434C83.9617 79.4307 83.9663 77.9469 83.0537 77.0288L78.2987 72.2446Z" fill="white"/>
|
16
|
-
</g>
|
17
|
-
<defs>
|
18
|
-
<clipPath id="clip0_5382_30932">
|
19
|
-
<rect width="120" height="120" fill="white" transform="translate(0.500977 0.5)"/>
|
20
|
-
</clipPath>
|
21
|
-
</defs>
|
22
|
-
</svg>
|
1
|
+
<svg width="121" height="121" viewBox="0 0 121 121" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<g clip-path="url(#clip0_5382_30932)">
|
3
|
+
<path d="M58.9145 5.52071H13.7748C7.73823 5.52071 2.84479 10.387 2.84479 16.3895V97.0915C2.84479 103.094 7.73823 107.96 13.7748 107.96H65.9273C71.9638 107.96 76.8572 103.094 76.8572 97.0915V26.2608L58.9145 5.52071Z" fill="white"/>
|
4
|
+
<path d="M76.857 35.818C76.2387 35.787 75.6178 35.7713 74.9944 35.7713C65.2515 35.7713 56.0944 39.5718 49.2101 46.4728C35.0342 60.6834 35.0342 83.8055 49.2101 98.0161C54.2205 103.039 60.4347 106.419 67.2025 107.887C72.6381 107.259 76.857 102.665 76.857 97.0915V35.818Z" fill="white"/>
|
5
|
+
<path d="M58.9146 26.2608H76.857L58.9146 5.52071V26.2608Z" fill="white"/>
|
6
|
+
<path d="M47.6293 86.3579L45.3719 93.4883H20.2798V79.2273H39.2461L45.9098 82.35L47.6293 86.3579Z" fill="#9E30B0"/>
|
7
|
+
<path d="M45.3719 93.4883H61.234V79.2273H39.2461C40.2209 84.2719 42.2628 89.1483 45.3719 93.4883Z" fill="#9E30B0"/>
|
8
|
+
<path d="M74.9941 98.2046C89.2966 98.2046 100.891 86.5819 100.891 72.2446C100.891 57.9073 89.2966 46.2846 74.9941 46.2846C60.6916 46.2846 49.0972 57.9073 49.0972 72.2446C49.0972 86.5819 60.6916 98.2046 74.9941 98.2046Z" fill="#8D359C"/>
|
9
|
+
<path d="M116.66 113.971C114.656 115.98 111.403 115.982 109.397 113.975L96.1038 100.679L103.359 93.4056L116.656 106.706C118.661 108.712 118.663 111.964 116.66 113.971Z" fill="#71347B"/>
|
10
|
+
<path d="M56.8663 55.4009H20.2799C18.9854 55.4009 17.936 54.3516 17.936 53.0571C17.936 51.7626 18.9854 50.7132 20.2799 50.7132H56.8665C58.161 50.7132 59.2104 51.7626 59.2104 53.0571C59.2104 54.3516 58.1608 55.4009 56.8663 55.4009Z" fill="#71347B"/>
|
11
|
+
<path d="M49.7692 67.2698H20.2799C18.9854 67.2698 17.936 66.2205 17.936 64.926C17.936 63.6315 18.9854 62.5821 20.2799 62.5821H49.7692C51.0637 62.5821 52.113 63.6315 52.113 64.926C52.113 66.2205 51.0637 67.2698 49.7692 67.2698Z" fill="#71347B"/>
|
12
|
+
<path d="M61.2338 43.532H20.2799C18.9854 43.532 17.936 42.4826 17.936 41.1881C17.936 39.8937 18.9854 38.8443 20.2799 38.8443H61.2338C62.5283 38.8443 63.5776 39.8937 63.5776 41.1881C63.5776 42.4826 62.5283 43.532 61.2338 43.532Z" fill="#71347B"/>
|
13
|
+
<path d="M43.9835 31.6631H20.2799C18.9854 31.6631 17.936 30.6137 17.936 29.3192C17.936 28.0247 18.9854 26.9754 20.2799 26.9754H43.9835C45.278 26.9754 46.3273 28.0247 46.3273 29.3192C46.3273 30.6137 45.278 31.6631 43.9835 31.6631Z" fill="#71347B"/>
|
14
|
+
<path d="M118.314 105.049L105.017 91.7485C104.577 91.3088 103.981 91.0618 103.359 91.0618H103.358C102.736 91.062 102.139 91.3097 101.7 91.7504L99.7316 93.7234L96.5492 90.5332C105.945 79.4258 105.417 62.7101 94.9654 52.2327C90.6362 47.8929 85.1483 45.1354 79.2009 44.2506V26.2608C79.2009 25.6976 78.9981 25.1531 78.6294 24.7274L60.687 3.98738C60.2419 3.47268 59.595 3.17689 58.9143 3.17689H13.7748C6.45547 3.17689 0.500977 9.10419 0.500977 16.3895V97.0915C0.500977 104.377 6.45547 110.304 13.7748 110.304H65.9271C72.0297 110.304 77.3506 106.084 78.8066 100.294C84.1381 99.5778 89.1148 97.3613 93.2385 93.8519L96.4207 97.042L94.4444 99.0233C93.531 99.9388 93.5317 101.421 94.446 102.336L107.739 115.632C109.152 117.045 111.029 117.823 113.026 117.823H113.03C115.029 117.822 116.907 117.042 118.319 115.626C121.23 112.709 121.228 107.964 118.314 105.049ZM91.6468 88.9457C87.1985 93.4049 81.2845 95.8607 74.9941 95.8607C68.704 95.8607 62.7901 93.4049 58.3417 88.9457C49.1551 79.7366 49.1551 64.7525 58.3417 55.5434C62.7901 51.0843 68.704 48.6284 74.9941 48.6284C81.2843 48.6284 87.1985 51.0843 91.6468 55.5434C100.833 64.7525 100.833 79.7366 91.6468 88.9457ZM65.9271 105.616H13.7748C9.04048 105.616 5.18863 101.792 5.18863 97.0915V16.3895C5.18863 11.6887 9.04048 7.86454 13.7748 7.86454H57.8432L74.5134 27.1339V43.9447C67.1489 44.0671 60.244 46.9992 55.0233 52.2327C44.0155 63.2672 44.0155 81.2219 55.0233 92.2564C60.0719 97.3174 66.6956 100.226 73.7868 100.523C72.4406 103.538 69.3772 105.616 65.9271 105.616ZM115.001 112.316C114.474 112.844 113.774 113.135 113.028 113.135H113.027C112.282 113.135 111.581 112.845 111.054 112.318L99.4161 100.677L103.361 96.7226L114.999 108.363C116.088 109.453 116.089 111.225 115.001 112.316Z" fill="#71347B"/>
|
15
|
+
<path d="M78.2987 72.2446L83.0537 67.4603C83.9661 66.5423 83.9617 65.0582 83.0436 64.1457C82.1257 63.2333 80.6416 63.2377 79.7289 64.1558L74.9942 68.9196L70.2594 64.1558C69.3465 63.2375 67.8626 63.2333 66.9448 64.1457C66.0267 65.0584 66.022 66.5423 66.9347 67.4603L71.6896 72.2446L66.9347 77.0288C66.0222 77.9469 66.0267 79.431 66.9448 80.3434C67.402 80.7979 67.9995 81.0248 68.5969 81.0248C69.199 81.0248 69.8014 80.7941 70.2594 80.3331L74.9942 75.5693L79.7289 80.3331C80.1872 80.7941 80.789 81.0248 81.3914 81.0248C81.9889 81.0248 82.5865 80.7977 83.0436 80.3434C83.9617 79.4307 83.9663 77.9469 83.0537 77.0288L78.2987 72.2446Z" fill="white"/>
|
16
|
+
</g>
|
17
|
+
<defs>
|
18
|
+
<clipPath id="clip0_5382_30932">
|
19
|
+
<rect width="120" height="120" fill="white" transform="translate(0.500977 0.5)"/>
|
20
|
+
</clipPath>
|
21
|
+
</defs>
|
22
|
+
</svg>
|
@@ -1,3 +1,3 @@
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M12.9691 10.1187V7.07871C12.9691 4.82065 11.5284 2.85163 9.54476 2.11615C9.56791 2.00001 9.58076 1.88132 9.58076 1.76259C9.5808 0.789693 8.79352 0 7.82359 0C6.85365 0 6.06637 0.789693 6.06637 1.76259C6.06637 1.87873 6.07921 1.99483 6.09979 2.10581C5.41803 2.34839 4.78769 2.7329 4.24999 3.25419C3.23632 4.23484 2.67803 5.55354 2.67803 6.96774V10.1187C2.67803 10.2297 2.58798 10.3226 2.47477 10.3226C1.52542 10.3226 0.714972 11.04 0.627496 11.9536C0.578602 12.462 0.745864 12.9678 1.08804 13.3445C1.42763 13.7187 1.91391 13.9355 2.42072 13.9355H5.52351C5.65214 15.0942 6.63496 16 7.82359 16C9.01221 16 9.99503 15.0942 10.1237 13.9355H13.2265C13.7333 13.9355 14.2195 13.7187 14.5591 13.3445C14.8987 12.9678 15.066 12.462 15.0197 11.9536C14.9322 11.04 14.1192 10.3226 13.1724 10.3226C13.0592 10.3226 12.9691 10.2322 12.9691 10.1187ZM7.82359 1.03224C8.22492 1.03224 8.55167 1.35998 8.55167 1.76255C8.55167 1.79607 8.54651 1.82706 8.54136 1.86059C8.3664 1.83477 8.18887 1.81672 8.01134 1.81155C7.70517 1.8012 7.40416 1.82189 7.10573 1.86318C7.10057 1.82965 7.09542 1.79866 7.09542 1.76513C7.0955 1.35998 7.42225 1.03224 7.82359 1.03224ZM7.82359 14.9677C7.20356 14.9677 6.68386 14.5238 6.56291 13.9355H9.08422C8.96336 14.5239 8.44365 14.9677 7.82359 14.9677ZM13.9957 12.0516C14.0163 12.2736 13.9468 12.4877 13.8002 12.6503C13.6484 12.8129 13.4477 12.9032 13.2265 12.9032H2.42076C2.19949 12.9032 1.99885 12.8129 1.84959 12.6503C1.70037 12.4877 1.6309 12.2735 1.65148 12.0516C1.68748 11.6619 2.05028 11.3548 2.47477 11.3548C3.154 11.3548 3.70713 10.8 3.70713 10.1187V6.96774C3.70713 5.83741 4.15478 4.78195 4.96522 3.99742C5.73962 3.24647 6.74818 2.8387 7.82359 2.8387C7.87506 2.8387 7.92391 2.8387 7.97538 2.84128C10.1597 2.91869 11.94 4.82065 11.94 7.07871V10.1187C11.94 10.8 12.4932 11.3548 13.1724 11.3548C13.5969 11.3548 13.9571 11.6619 13.9957 12.0516Z" fill="currentColor"/>
|
3
|
-
</svg>
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M12.9691 10.1187V7.07871C12.9691 4.82065 11.5284 2.85163 9.54476 2.11615C9.56791 2.00001 9.58076 1.88132 9.58076 1.76259C9.5808 0.789693 8.79352 0 7.82359 0C6.85365 0 6.06637 0.789693 6.06637 1.76259C6.06637 1.87873 6.07921 1.99483 6.09979 2.10581C5.41803 2.34839 4.78769 2.7329 4.24999 3.25419C3.23632 4.23484 2.67803 5.55354 2.67803 6.96774V10.1187C2.67803 10.2297 2.58798 10.3226 2.47477 10.3226C1.52542 10.3226 0.714972 11.04 0.627496 11.9536C0.578602 12.462 0.745864 12.9678 1.08804 13.3445C1.42763 13.7187 1.91391 13.9355 2.42072 13.9355H5.52351C5.65214 15.0942 6.63496 16 7.82359 16C9.01221 16 9.99503 15.0942 10.1237 13.9355H13.2265C13.7333 13.9355 14.2195 13.7187 14.5591 13.3445C14.8987 12.9678 15.066 12.462 15.0197 11.9536C14.9322 11.04 14.1192 10.3226 13.1724 10.3226C13.0592 10.3226 12.9691 10.2322 12.9691 10.1187ZM7.82359 1.03224C8.22492 1.03224 8.55167 1.35998 8.55167 1.76255C8.55167 1.79607 8.54651 1.82706 8.54136 1.86059C8.3664 1.83477 8.18887 1.81672 8.01134 1.81155C7.70517 1.8012 7.40416 1.82189 7.10573 1.86318C7.10057 1.82965 7.09542 1.79866 7.09542 1.76513C7.0955 1.35998 7.42225 1.03224 7.82359 1.03224ZM7.82359 14.9677C7.20356 14.9677 6.68386 14.5238 6.56291 13.9355H9.08422C8.96336 14.5239 8.44365 14.9677 7.82359 14.9677ZM13.9957 12.0516C14.0163 12.2736 13.9468 12.4877 13.8002 12.6503C13.6484 12.8129 13.4477 12.9032 13.2265 12.9032H2.42076C2.19949 12.9032 1.99885 12.8129 1.84959 12.6503C1.70037 12.4877 1.6309 12.2735 1.65148 12.0516C1.68748 11.6619 2.05028 11.3548 2.47477 11.3548C3.154 11.3548 3.70713 10.8 3.70713 10.1187V6.96774C3.70713 5.83741 4.15478 4.78195 4.96522 3.99742C5.73962 3.24647 6.74818 2.8387 7.82359 2.8387C7.87506 2.8387 7.92391 2.8387 7.97538 2.84128C10.1597 2.91869 11.94 4.82065 11.94 7.07871V10.1187C11.94 10.8 12.4932 11.3548 13.1724 11.3548C13.5969 11.3548 13.9571 11.6619 13.9957 12.0516Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -1,9 +1,9 @@
|
|
1
|
-
<svg width="15" height="16" viewBox="0 0 15 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M12.8483 2.1782C11.4453 0.726066 9.68556 0.0123062 7.50737 0H7.47045C5.26764 0 3.47093 0.713759 2.09264 2.20281C0.689734 3.64263 0.000586502 5.5624 0.000586502 7.9375C-0.0240259 10.0295 0.726652 12.0478 2.12956 13.5983C3.45863 15.1612 5.42762 16.0473 7.48275 15.9981H7.51967C9.68556 15.9857 11.4577 15.1858 12.8606 13.5737C14.2512 12.0232 15.0141 10.0049 14.9895 7.92519C14.9649 5.55009 14.2758 3.64263 12.8483 2.1782ZM10.227 9.21734C10.227 9.63575 10.1778 10.1034 10.1163 10.6572C10.0794 11.1248 9.99322 11.5924 9.84554 12.0355C9.72248 12.417 9.57481 12.7861 9.37791 13.143C9.20562 13.4876 8.93488 13.7706 8.60262 13.9675C8.27035 14.1521 7.90116 14.2506 7.51967 14.2506H7.50737C7.12587 14.2629 6.73208 14.1767 6.39981 13.9675C6.06754 13.7706 5.7968 13.4876 5.62452 13.143C5.42762 12.7984 5.26764 12.417 5.15688 12.0355C5.03382 11.5801 4.94768 11.1248 4.91076 10.6572C4.86153 10.1034 4.82462 9.63575 4.8 9.25426C4.77539 8.87277 4.77539 8.36821 4.77539 7.81443C4.77539 6.90378 4.8 6.1531 4.86153 5.52548C4.92307 4.88556 5.04613 4.25794 5.21841 3.65494C5.34148 3.10116 5.62452 2.59661 6.04293 2.20281C6.43673 1.85824 6.95359 1.68595 7.48275 1.71056H7.51967C8.03653 1.69825 8.52878 1.87054 8.92258 2.20281C9.31638 2.5843 9.61172 3.07655 9.78401 3.60572C9.98091 4.22102 10.104 4.86095 10.1655 5.51318C10.2147 6.17771 10.2516 6.91608 10.2763 7.80213C10.2516 8.35591 10.227 8.82354 10.227 9.21734Z" fill="url(#paint0_linear_4989_1639)"/>
|
3
|
-
<defs>
|
4
|
-
<linearGradient id="paint0_linear_4989_1639" x1="1.93143" y1="2.35196" x2="13.0132" y2="13.4336" gradientUnits="userSpaceOnUse">
|
5
|
-
<stop stop-color="#EF5350"/>
|
6
|
-
<stop offset="1" stop-color="#FF0000"/>
|
7
|
-
</linearGradient>
|
8
|
-
</defs>
|
9
|
-
</svg>
|
1
|
+
<svg width="15" height="16" viewBox="0 0 15 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M12.8483 2.1782C11.4453 0.726066 9.68556 0.0123062 7.50737 0H7.47045C5.26764 0 3.47093 0.713759 2.09264 2.20281C0.689734 3.64263 0.000586502 5.5624 0.000586502 7.9375C-0.0240259 10.0295 0.726652 12.0478 2.12956 13.5983C3.45863 15.1612 5.42762 16.0473 7.48275 15.9981H7.51967C9.68556 15.9857 11.4577 15.1858 12.8606 13.5737C14.2512 12.0232 15.0141 10.0049 14.9895 7.92519C14.9649 5.55009 14.2758 3.64263 12.8483 2.1782ZM10.227 9.21734C10.227 9.63575 10.1778 10.1034 10.1163 10.6572C10.0794 11.1248 9.99322 11.5924 9.84554 12.0355C9.72248 12.417 9.57481 12.7861 9.37791 13.143C9.20562 13.4876 8.93488 13.7706 8.60262 13.9675C8.27035 14.1521 7.90116 14.2506 7.51967 14.2506H7.50737C7.12587 14.2629 6.73208 14.1767 6.39981 13.9675C6.06754 13.7706 5.7968 13.4876 5.62452 13.143C5.42762 12.7984 5.26764 12.417 5.15688 12.0355C5.03382 11.5801 4.94768 11.1248 4.91076 10.6572C4.86153 10.1034 4.82462 9.63575 4.8 9.25426C4.77539 8.87277 4.77539 8.36821 4.77539 7.81443C4.77539 6.90378 4.8 6.1531 4.86153 5.52548C4.92307 4.88556 5.04613 4.25794 5.21841 3.65494C5.34148 3.10116 5.62452 2.59661 6.04293 2.20281C6.43673 1.85824 6.95359 1.68595 7.48275 1.71056H7.51967C8.03653 1.69825 8.52878 1.87054 8.92258 2.20281C9.31638 2.5843 9.61172 3.07655 9.78401 3.60572C9.98091 4.22102 10.104 4.86095 10.1655 5.51318C10.2147 6.17771 10.2516 6.91608 10.2763 7.80213C10.2516 8.35591 10.227 8.82354 10.227 9.21734Z" fill="url(#paint0_linear_4989_1639)"/>
|
3
|
+
<defs>
|
4
|
+
<linearGradient id="paint0_linear_4989_1639" x1="1.93143" y1="2.35196" x2="13.0132" y2="13.4336" gradientUnits="userSpaceOnUse">
|
5
|
+
<stop stop-color="#EF5350"/>
|
6
|
+
<stop offset="1" stop-color="#FF0000"/>
|
7
|
+
</linearGradient>
|
8
|
+
</defs>
|
9
|
+
</svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.0058 2.15563C9.72708 2.05653 9.40188 2.00697 9.03022 2.00697C8.66473 2.00697 8.29002 2.05343 7.90594 2.14634C7.52187 2.23926 7.14404 2.36005 6.77238 2.50871C6.70213 2.53717 6.63301 2.56609 6.56514 2.59547C6.28216 2.71797 6.01999 2.84852 5.77863 2.98711C5.75477 3.00083 5.73113 3.01462 5.70764 3.02849C5.63301 3.07258 5.56047 3.11747 5.49 3.16315C5.28715 3.2946 5.10139 3.43262 4.93266 3.57724C4.80875 3.6949 4.67249 3.75377 4.52383 3.75377C4.37517 3.75377 4.23579 3.72278 4.10571 3.66086C3.97563 3.59894 3.86101 3.51839 3.76193 3.41928C3.53276 3.20248 3.41814 2.98258 3.41814 2.75958C3.41814 2.53039 3.49864 2.32598 3.65972 2.14634C3.8208 1.9667 4.0345 1.80565 4.30083 1.66318C4.56717 1.51452 4.87379 1.38444 5.22069 1.27294C5.5676 1.15525 5.92373 1.05613 6.28922 0.97561C7.03254 0.820754 7.76969 0.743322 8.5006 0.743322C9.23775 0.743322 9.90979 0.836237 10.5169 1.02207C11.1301 1.20171 11.635 1.44638 12.0314 1.7561C12.8305 2.37553 13.23 3.16222 13.23 4.11614V4.26481C13.1742 5.43554 12.7314 6.4669 11.9013 7.35888C11.1766 8.1332 10.2412 8.74332 9.09526 9.18931C8.06078 9.59814 7.08212 9.80256 6.15914 9.80256H5.91756C5.83706 9.80256 5.7596 9.79639 5.68527 9.78397C5.12778 11.1901 4.61675 12.2401 4.15217 12.9338C3.69376 13.6214 3.2416 14.182 2.79561 14.6156C2.35581 15.043 1.9284 15.2567 1.51338 15.2567C1.30277 15.2567 1.14482 15.2071 1.03951 15.108C0.859871 14.9469 0.770055 14.7952 0.770055 14.6527C0.770055 14.5102 0.816513 14.405 0.909428 14.3368C1.84477 13.6617 2.88235 11.6794 4.02209 8.39024L4.57029 6.82927C5.11603 5.28844 5.59013 4.25358 5.99256 3.72471C6.05604 3.64131 6.11781 3.57047 6.17772 3.5122C6.33255 3.39451 6.49363 3.33566 6.66088 3.33566C6.68303 3.33566 6.70489 3.33615 6.72629 3.33713C6.86633 3.34354 6.9901 3.37093 7.09758 3.41928C7.22149 3.46884 7.32987 3.53388 7.42279 3.6144C7.63337 3.80023 7.7387 4.01706 7.7387 4.26481C7.7387 4.35772 7.69536 4.49093 7.60862 4.66434C7.52187 4.83776 7.42279 5.06388 7.31129 5.34262L6.13126 8.62253C6.42926 8.56857 6.71693 8.50092 6.99426 8.41953C8.11794 8.08979 9.07222 7.5349 9.85716 6.75494C10.7739 5.84437 11.2323 4.90905 11.2323 3.9489C11.2323 3.03833 10.8235 2.44057 10.0058 2.15563ZM7.31545 7.52673C8.09817 7.22427 8.76753 6.7898 9.3332 6.2277L9.33335 6.22755C10.1597 5.40677 10.489 4.65007 10.489 3.9489C10.489 3.60474 10.4126 3.3841 10.3122 3.23728C10.2139 3.09361 10.0502 2.95826 9.7612 2.85755L9.75904 2.85679L9.75681 2.856C9.57552 2.79154 9.33788 2.75029 9.03022 2.75029C8.72821 2.75029 8.41215 2.78864 8.08077 2.86882C7.97931 2.89335 7.87837 2.92003 7.7778 2.94886C7.82306 2.98123 7.86707 3.01581 7.90959 3.05268L7.91211 3.05484L7.91457 3.05703C8.26133 3.36301 8.48202 3.77399 8.48202 4.26481C8.48202 4.54266 8.3674 4.80885 8.27344 4.99676C8.2006 5.14252 8.11162 5.34381 8.00622 5.60673L7.31545 7.52673ZM4.70743 4.48409C4.4434 5.04775 4.16436 5.749 3.86963 6.58115L3.86926 6.58204L3.32024 8.14539L3.31972 8.14688C2.75606 9.77349 2.22558 11.0533 1.73055 11.9991C1.22408 12.9667 0.796369 13.5017 0.474369 13.7341L0.472102 13.7358L0.469857 13.7374C0.140588 13.9788 0.0267334 14.3361 0.0267334 14.6527C0.0267334 15.1107 0.30591 15.4472 0.537574 15.6563C0.831342 15.9281 1.2017 16 1.51338 16C2.19727 16 2.80074 15.6471 3.31363 15.1486L3.31378 15.1485C3.80712 14.6689 4.29169 14.0645 4.77009 13.3469C5.21884 12.6767 5.68735 11.7354 6.17884 10.5459C7.20574 10.543 8.27032 10.3144 9.36665 9.88135C10.5991 9.40146 11.6324 8.73396 12.444 7.86687L12.4447 7.86605L12.4455 7.86524C13.39 6.85016 13.908 5.65385 13.9725 4.30019L13.9733 4.2825V4.11614C13.9733 2.91731 13.4552 1.91973 12.4878 1.16936C12.0014 0.789764 11.4078 0.508945 10.7301 0.30998C10.0434 0.100319 9.29819 0 8.5006 0C7.71677 0 6.92885 0.0830663 6.13758 0.247913L6.13342 0.248782L6.12926 0.249704C5.73968 0.335543 5.35903 0.441303 4.98751 0.567125C4.60716 0.689728 4.25787 0.836505 3.94434 1.0109C3.62248 1.18375 3.33623 1.39363 3.10624 1.65014C2.83002 1.95828 2.67482 2.33697 2.67482 2.75958C2.67482 3.25579 2.9323 3.65528 3.24383 3.95239C3.40275 4.1096 3.58494 4.23619 3.78616 4.332C4.01926 4.44298 4.2682 4.4971 4.52383 4.4971C4.58664 4.4971 4.64789 4.49264 4.70743 4.48409Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -1,12 +1,12 @@
|
|
1
|
-
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<g clip-path="url(#clip0_5540_15042)">
|
3
|
-
<path d="M16.6261 16.6281C20.2867 12.9675 20.2867 7.03249 16.6261 3.37187C12.9655 -0.288738 7.03044 -0.288737 3.36982 3.37187C-0.290788 7.03249 -0.290788 12.9675 3.36982 16.6281C7.03044 20.2887 12.9655 20.2887 16.6261 16.6281Z" fill="#46CC6B"/>
|
4
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.2399 11.5904C18.5728 15.4935 15.4933 18.5729 11.5903 19.24L6.54334 14.1931C5.33564 13.1964 4.56592 11.6881 4.56592 9.99999C4.56592 6.99885 6.99873 4.56604 9.99986 4.56604C11.688 4.56604 13.1963 5.33581 14.193 6.54346L19.2399 11.5904Z" fill="#179C5F"/>
|
5
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.45635 10.3226L9.00393 11.7438C9.22967 11.9516 9.57908 11.9406 9.79139 11.7217L12.5523 9.07827C12.7769 8.86233 12.7837 8.50506 12.5676 8.28038C12.3516 8.05604 11.9946 8.04901 11.77 8.26495L9.3785 10.5547L8.22088 9.49166C7.99154 9.28065 7.63424 9.29545 7.42311 9.52502C7.21201 9.75436 7.22689 10.1114 7.45635 10.3226ZM9.99986 4.56604C13.001 4.56604 15.4338 6.99885 15.4338 9.99999C15.4338 13.0011 13.001 15.4339 9.99986 15.4339C6.99873 15.4339 4.56592 13.0011 4.56592 9.99999C4.56592 6.99885 6.99873 4.56604 9.99986 4.56604Z" fill="white"/>
|
6
|
-
</g>
|
7
|
-
<defs>
|
8
|
-
<clipPath id="clip0_5540_15042">
|
9
|
-
<rect width="20" height="20" fill="white"/>
|
10
|
-
</clipPath>
|
11
|
-
</defs>
|
12
|
-
</svg>
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<g clip-path="url(#clip0_5540_15042)">
|
3
|
+
<path d="M16.6261 16.6281C20.2867 12.9675 20.2867 7.03249 16.6261 3.37187C12.9655 -0.288738 7.03044 -0.288737 3.36982 3.37187C-0.290788 7.03249 -0.290788 12.9675 3.36982 16.6281C7.03044 20.2887 12.9655 20.2887 16.6261 16.6281Z" fill="#46CC6B"/>
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.2399 11.5904C18.5728 15.4935 15.4933 18.5729 11.5903 19.24L6.54334 14.1931C5.33564 13.1964 4.56592 11.6881 4.56592 9.99999C4.56592 6.99885 6.99873 4.56604 9.99986 4.56604C11.688 4.56604 13.1963 5.33581 14.193 6.54346L19.2399 11.5904Z" fill="#179C5F"/>
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.45635 10.3226L9.00393 11.7438C9.22967 11.9516 9.57908 11.9406 9.79139 11.7217L12.5523 9.07827C12.7769 8.86233 12.7837 8.50506 12.5676 8.28038C12.3516 8.05604 11.9946 8.04901 11.77 8.26495L9.3785 10.5547L8.22088 9.49166C7.99154 9.28065 7.63424 9.29545 7.42311 9.52502C7.21201 9.75436 7.22689 10.1114 7.45635 10.3226ZM9.99986 4.56604C13.001 4.56604 15.4338 6.99885 15.4338 9.99999C15.4338 13.0011 13.001 15.4339 9.99986 15.4339C6.99873 15.4339 4.56592 13.0011 4.56592 9.99999C4.56592 6.99885 6.99873 4.56604 9.99986 4.56604Z" fill="white"/>
|
6
|
+
</g>
|
7
|
+
<defs>
|
8
|
+
<clipPath id="clip0_5540_15042">
|
9
|
+
<rect width="20" height="20" fill="white"/>
|
10
|
+
</clipPath>
|
11
|
+
</defs>
|
12
|
+
</svg>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.48617 9.25832C4.57617 9.09499 4.62117 8.91999 4.62117 8.73332C4.62117 8.52665 4.57284 8.34165 4.47617 8.17832C4.38284 8.01499 4.24117 7.88665 4.05117 7.79332C3.86117 7.69999 3.63117 7.65332 3.36117 7.65332H2.07617V11.1433H2.77617V9.80332H3.36117C3.64784 9.80332 3.88451 9.75332 4.07117 9.65332C4.26117 9.55332 4.39951 9.42165 4.48617 9.25832ZM3.76117 9.10832C3.66784 9.19499 3.52451 9.23832 3.33117 9.23832H2.77617V8.22332H3.33117C3.71117 8.22332 3.90117 8.39332 3.90117 8.73332C3.90117 8.89332 3.85451 9.01832 3.76117 9.10832ZM7.30316 7.86832C7.0265 7.72499 6.70483 7.65332 6.33816 7.65332H5.11816V11.1433H6.33816C6.70483 11.1433 7.0265 11.0717 7.30316 10.9283C7.58316 10.785 7.79816 10.5833 7.94816 10.3233C8.1015 10.06 8.17816 9.75332 8.17816 9.40332C8.17816 9.05332 8.1015 8.74665 7.94816 8.48332C7.79816 8.21665 7.58316 8.01165 7.30316 7.86832ZM7.16316 10.2483C6.96316 10.4483 6.67983 10.5483 6.31316 10.5483H5.81816V8.24332H6.31316C6.67983 8.24332 6.96316 8.34665 7.16316 8.55332C7.36316 8.75665 7.46316 9.03999 7.46316 9.40332C7.46316 9.76665 7.36316 10.0483 7.16316 10.2483ZM10.8571 8.21832V7.65332H8.70215V11.1433H9.40215V9.66832H10.5171V9.11332H9.40215V8.21832H10.8571Z" fill="white"/>
|
4
|
-
</svg>
|
1
|
+
<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.48617 9.25832C4.57617 9.09499 4.62117 8.91999 4.62117 8.73332C4.62117 8.52665 4.57284 8.34165 4.47617 8.17832C4.38284 8.01499 4.24117 7.88665 4.05117 7.79332C3.86117 7.69999 3.63117 7.65332 3.36117 7.65332H2.07617V11.1433H2.77617V9.80332H3.36117C3.64784 9.80332 3.88451 9.75332 4.07117 9.65332C4.26117 9.55332 4.39951 9.42165 4.48617 9.25832ZM3.76117 9.10832C3.66784 9.19499 3.52451 9.23832 3.33117 9.23832H2.77617V8.22332H3.33117C3.71117 8.22332 3.90117 8.39332 3.90117 8.73332C3.90117 8.89332 3.85451 9.01832 3.76117 9.10832ZM7.30316 7.86832C7.0265 7.72499 6.70483 7.65332 6.33816 7.65332H5.11816V11.1433H6.33816C6.70483 11.1433 7.0265 11.0717 7.30316 10.9283C7.58316 10.785 7.79816 10.5833 7.94816 10.3233C8.1015 10.06 8.17816 9.75332 8.17816 9.40332C8.17816 9.05332 8.1015 8.74665 7.94816 8.48332C7.79816 8.21665 7.58316 8.01165 7.30316 7.86832ZM7.16316 10.2483C6.96316 10.4483 6.67983 10.5483 6.31316 10.5483H5.81816V8.24332H6.31316C6.67983 8.24332 6.96316 8.34665 7.16316 8.55332C7.36316 8.75665 7.46316 9.03999 7.46316 9.40332C7.46316 9.76665 7.36316 10.0483 7.16316 10.2483ZM10.8571 8.21832V7.65332H8.70215V11.1433H9.40215V9.66832H10.5171V9.11332H9.40215V8.21832H10.8571Z" fill="white"/>
|
4
|
+
</svg>
|
@@ -1,11 +1,11 @@
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<g clip-path="url(#clip0_116_6473)">
|
3
|
-
<path d="M8 0C3.58853 0 0 3.58853 0 8C0 12.4115 3.58853 16 8 16C12.4115 16 16 12.4108 16 8C16 3.58916 12.4115 0 8 0ZM8 14.7607C4.27266 14.7607 1.23934 11.728 1.23934 8C1.23934 4.27203 4.27266 1.23934 8 1.23934C11.7273 1.23934 14.7607 4.27203 14.7607 8C14.7607 11.728 11.728 14.7607 8 14.7607Z" fill="currentColor"/>
|
4
|
-
<path d="M11.0987 7.32457H8.61998V4.84588C8.61998 4.50382 8.34298 4.2262 8.00029 4.2262C7.6576 4.2262 7.3806 4.50382 7.3806 4.84588V7.32457H4.90191C4.55923 7.32457 4.28223 7.6022 4.28223 7.94426C4.28223 8.28632 4.55923 8.56395 4.90191 8.56395H7.3806V11.0426C7.3806 11.3847 7.6576 11.6623 8.00029 11.6623C8.34298 11.6623 8.61998 11.3847 8.61998 11.0426V8.56395H11.0987C11.4414 8.56395 11.7184 8.28632 11.7184 7.94426C11.7184 7.6022 11.4414 7.32457 11.0987 7.32457Z" fill="currentColor"/>
|
5
|
-
</g>
|
6
|
-
<defs>
|
7
|
-
<clipPath id="clip0_116_6473">
|
8
|
-
<rect width="16" height="16" fill="white"/>
|
9
|
-
</clipPath>
|
10
|
-
</defs>
|
11
|
-
</svg>
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<g clip-path="url(#clip0_116_6473)">
|
3
|
+
<path d="M8 0C3.58853 0 0 3.58853 0 8C0 12.4115 3.58853 16 8 16C12.4115 16 16 12.4108 16 8C16 3.58916 12.4115 0 8 0ZM8 14.7607C4.27266 14.7607 1.23934 11.728 1.23934 8C1.23934 4.27203 4.27266 1.23934 8 1.23934C11.7273 1.23934 14.7607 4.27203 14.7607 8C14.7607 11.728 11.728 14.7607 8 14.7607Z" fill="currentColor"/>
|
4
|
+
<path d="M11.0987 7.32457H8.61998V4.84588C8.61998 4.50382 8.34298 4.2262 8.00029 4.2262C7.6576 4.2262 7.3806 4.50382 7.3806 4.84588V7.32457H4.90191C4.55923 7.32457 4.28223 7.6022 4.28223 7.94426C4.28223 8.28632 4.55923 8.56395 4.90191 8.56395H7.3806V11.0426C7.3806 11.3847 7.6576 11.6623 8.00029 11.6623C8.34298 11.6623 8.61998 11.3847 8.61998 11.0426V8.56395H11.0987C11.4414 8.56395 11.7184 8.28632 11.7184 7.94426C11.7184 7.6022 11.4414 7.32457 11.0987 7.32457Z" fill="currentColor"/>
|
5
|
+
</g>
|
6
|
+
<defs>
|
7
|
+
<clipPath id="clip0_116_6473">
|
8
|
+
<rect width="16" height="16" fill="white"/>
|
9
|
+
</clipPath>
|
10
|
+
</defs>
|
11
|
+
</svg>
|
@@ -1,3 +1,3 @@
|
|
1
|
-
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M7 1C7 0.447715 6.55228 0 6 0C5.44772 0 5 0.447715 5 1V2.49994C5 3.88062 3.88074 4.99988 2.50006 4.99988H1C0.447715 4.99988 0 5.44759 0 5.99988C0 6.55216 0.447715 6.99988 1 6.99988H2.5C3.88071 6.99988 5 8.11917 5 9.49988V11C5 11.5523 5.44772 12 6 12C6.55228 12 7 11.5523 7 11V9.49988C7 8.11917 8.11929 6.99988 9.5 6.99988H11C11.5523 6.99988 12 6.55216 12 5.99988C12 5.44759 11.5523 4.99988 11 4.99988H9.49994C8.11926 4.99988 7 3.88062 7 2.49994V1Z" fill="currentColor"/>
|
3
|
-
</svg>
|
1
|
+
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7 1C7 0.447715 6.55228 0 6 0C5.44772 0 5 0.447715 5 1V2.49994C5 3.88062 3.88074 4.99988 2.50006 4.99988H1C0.447715 4.99988 0 5.44759 0 5.99988C0 6.55216 0.447715 6.99988 1 6.99988H2.5C3.88071 6.99988 5 8.11917 5 9.49988V11C5 11.5523 5.44772 12 6 12C6.55228 12 7 11.5523 7 11V9.49988C7 8.11917 8.11929 6.99988 9.5 6.99988H11C11.5523 6.99988 12 6.55216 12 5.99988C12 5.44759 11.5523 4.99988 11 4.99988H9.49994C8.11926 4.99988 7 3.88062 7 2.49994V1Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.10922 9.23887C4.19922 9.07553 4.24422 8.90053 4.24422 8.71387C4.24422 8.5072 4.19589 8.3222 4.09922 8.15887C4.00589 7.99553 3.86422 7.8672 3.67422 7.77387C3.48422 7.68053 3.25422 7.63387 2.98422 7.63387H1.69922V11.1239H2.39922V9.78387H2.98422C3.27089 9.78387 3.50755 9.73387 3.69422 9.63387C3.88422 9.53387 4.02255 9.4022 4.10922 9.23887ZM3.38422 9.08887C3.29089 9.17553 3.14755 9.21887 2.95422 9.21887H2.39922V8.20387H2.95422C3.33422 8.20387 3.52422 8.37387 3.52422 8.71387C3.52422 8.87387 3.47755 8.99887 3.38422 9.08887ZM7.02621 11.1239H7.72621V7.62887H7.02621V10.0289L5.44121 7.62887H4.74121V11.1239H5.44121V8.72887L7.02621 11.1239ZM10.518 8.34887C10.658 8.42553 10.768 8.5372 10.848 8.68387H11.653C11.543 8.3372 11.343 8.06887 11.053 7.87887C10.763 7.68553 10.4213 7.58887 10.028 7.58887C9.69464 7.58887 9.3913 7.66553 9.11797 7.81887C8.84797 7.96887 8.63464 8.18053 8.47797 8.45387C8.32464 8.72387 8.24797 9.03053 8.24797 9.37387C8.24797 9.7172 8.32464 10.0239 8.47797 10.2939C8.63464 10.5639 8.84797 10.7755 9.11797 10.9289C9.3913 11.0789 9.6963 11.1539 10.033 11.1539C10.333 11.1539 10.603 11.0922 10.843 10.9689C11.0863 10.8422 11.2846 10.6755 11.438 10.4689C11.5913 10.2622 11.6913 10.0372 11.738 9.79387V9.18387H9.84797V9.71887H11.048C10.9946 9.9722 10.883 10.1705 10.713 10.3139C10.543 10.4539 10.3246 10.5239 10.058 10.5239C9.8413 10.5239 9.6513 10.4772 9.48797 10.3839C9.32464 10.2905 9.1963 10.1572 9.10297 9.98387C9.01297 9.81053 8.96797 9.6072 8.96797 9.37387C8.96797 9.1472 9.01297 8.9472 9.10297 8.77387C9.19297 8.60053 9.31797 8.4672 9.47797 8.37387C9.63797 8.28053 9.8213 8.23387 10.028 8.23387C10.2146 8.23387 10.378 8.2722 10.518 8.34887Z" fill="white"/>
|
4
|
-
</svg>
|
1
|
+
<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.10922 9.23887C4.19922 9.07553 4.24422 8.90053 4.24422 8.71387C4.24422 8.5072 4.19589 8.3222 4.09922 8.15887C4.00589 7.99553 3.86422 7.8672 3.67422 7.77387C3.48422 7.68053 3.25422 7.63387 2.98422 7.63387H1.69922V11.1239H2.39922V9.78387H2.98422C3.27089 9.78387 3.50755 9.73387 3.69422 9.63387C3.88422 9.53387 4.02255 9.4022 4.10922 9.23887ZM3.38422 9.08887C3.29089 9.17553 3.14755 9.21887 2.95422 9.21887H2.39922V8.20387H2.95422C3.33422 8.20387 3.52422 8.37387 3.52422 8.71387C3.52422 8.87387 3.47755 8.99887 3.38422 9.08887ZM7.02621 11.1239H7.72621V7.62887H7.02621V10.0289L5.44121 7.62887H4.74121V11.1239H5.44121V8.72887L7.02621 11.1239ZM10.518 8.34887C10.658 8.42553 10.768 8.5372 10.848 8.68387H11.653C11.543 8.3372 11.343 8.06887 11.053 7.87887C10.763 7.68553 10.4213 7.58887 10.028 7.58887C9.69464 7.58887 9.3913 7.66553 9.11797 7.81887C8.84797 7.96887 8.63464 8.18053 8.47797 8.45387C8.32464 8.72387 8.24797 9.03053 8.24797 9.37387C8.24797 9.7172 8.32464 10.0239 8.47797 10.2939C8.63464 10.5639 8.84797 10.7755 9.11797 10.9289C9.3913 11.0789 9.6963 11.1539 10.033 11.1539C10.333 11.1539 10.603 11.0922 10.843 10.9689C11.0863 10.8422 11.2846 10.6755 11.438 10.4689C11.5913 10.2622 11.6913 10.0372 11.738 9.79387V9.18387H9.84797V9.71887H11.048C10.9946 9.9722 10.883 10.1705 10.713 10.3139C10.543 10.4539 10.3246 10.5239 10.058 10.5239C9.8413 10.5239 9.6513 10.4772 9.48797 10.3839C9.32464 10.2905 9.1963 10.1572 9.10297 9.98387C9.01297 9.81053 8.96797 9.6072 8.96797 9.37387C8.96797 9.1472 9.01297 8.9472 9.10297 8.77387C9.19297 8.60053 9.31797 8.4672 9.47797 8.37387C9.63797 8.28053 9.8213 8.23387 10.028 8.23387C10.2146 8.23387 10.378 8.2722 10.518 8.34887Z" fill="white"/>
|
4
|
+
</svg>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<mask id="path-1-outside-1_2947_12976" maskUnits="userSpaceOnUse" x="0" y="-0.907471" width="18" height="17" fill="black">
|
3
|
+
<rect fill="white" y="-0.907471" width="18" height="17"/>
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.0131 0.0925293C15.2116 0.0925293 17 1.88128 17 4.0794C17 5.89659 15.7778 7.43378 14.1122 7.9119V14.7622C14.1122 15.3938 13.5984 15.9075 12.9669 15.9075H2.14531C1.51375 15.9075 1 15.3938 1 14.7622V3.94065C1 3.30909 1.51375 2.79534 2.14531 2.79534H9.23844C9.77406 1.22503 11.2638 0.0925293 13.0131 0.0925293ZM12.9669 15.4388C13.34 15.4388 13.6434 15.1353 13.6434 14.7622V8.01628C13.4381 8.04909 13.2278 8.06628 13.0134 8.06628C10.815 8.06628 9.02656 6.27753 9.02656 4.0794C9.02656 3.80003 9.05562 3.52722 9.11063 3.26409H2.14531C1.77219 3.26409 1.46875 3.56753 1.46875 3.94065V14.7622C1.46875 15.1353 1.77219 15.4388 2.14531 15.4388H12.9669ZM9.495 4.07909C9.495 6.01909 11.0734 7.59722 13.0131 7.59722C14.9531 7.59722 16.5312 6.01909 16.5312 4.07909C16.5312 2.13909 14.9531 0.560967 13.0131 0.560967C11.0731 0.560967 9.495 2.13909 9.495 4.07909ZM12.36 3.49034C12.36 3.62659 12.4416 3.74784 12.5675 3.7994C12.6934 3.85097 12.8366 3.8219 12.9322 3.72472L13.9444 2.69784C14.0719 2.56847 14.0719 2.35815 13.9444 2.22878L12.9322 1.2019C12.8366 1.10503 12.6934 1.07565 12.5675 1.12722C12.4416 1.17878 12.36 1.30034 12.36 1.43628V1.64034C11.8406 1.71222 11.3631 1.96128 11.0041 2.34972C10.6147 2.77097 10.4003 3.31909 10.4003 3.89315C10.4003 3.99097 10.4066 4.0894 10.4191 4.18597C10.4381 4.33315 10.5494 4.44847 10.6962 4.47253C10.7147 4.47565 10.7334 4.47722 10.7516 4.47722C10.8778 4.47722 10.9934 4.40659 11.0503 4.29003C11.3034 3.77034 11.7969 3.40159 12.36 3.30159V3.49034ZM10.8816 3.68128C10.9259 3.30409 11.0878 2.95034 11.3484 2.66815C11.6556 2.33565 12.0725 2.13159 12.5219 2.09409C12.6956 2.0794 12.8272 1.93815 12.8291 1.76472L13.5178 2.46347L12.8291 3.16222V3.14753C12.8291 3.05378 12.7894 2.96378 12.72 2.90065C12.6506 2.83753 12.5572 2.80597 12.4637 2.81472C11.8378 2.87253 11.2641 3.19347 10.8819 3.68128H10.8816ZM15.6075 3.97253C15.5884 3.82534 15.4772 3.71003 15.3303 3.68597C15.1838 3.66191 15.0412 3.73534 14.9762 3.86878C14.7231 4.38847 14.2297 4.75753 13.6666 4.85753V4.66816C13.6666 4.53191 13.5853 4.41066 13.4591 4.35909C13.3331 4.30753 13.1897 4.33659 13.0944 4.43378L12.0822 5.46066C11.9547 5.59003 11.9547 5.80034 12.0822 5.92972L13.0944 6.95659C13.1587 7.02191 13.2444 7.05628 13.3319 7.05628C13.3747 7.05628 13.4178 7.04816 13.4591 7.03097C13.585 6.97941 13.6666 6.85784 13.6666 6.72191V6.51784C14.1859 6.44597 14.6634 6.19691 15.0225 5.80847C15.4119 5.38722 15.6263 4.83909 15.6263 4.26503C15.6263 4.16722 15.62 4.06878 15.6075 3.97222V3.97253ZM14.6781 5.49034C14.3709 5.82284 13.9541 6.02691 13.5047 6.06441C13.3309 6.07909 13.1994 6.22034 13.1978 6.39378L12.5091 5.69503L13.1978 4.99628V5.01097C13.1978 5.10472 13.2375 5.19472 13.3069 5.25784C13.3763 5.32097 13.4697 5.35253 13.5631 5.34378C14.1891 5.28597 14.7628 4.96503 15.145 4.47722C15.1006 4.85441 14.9388 5.20816 14.6781 5.49034ZM7.99754 12.9804C7.99754 13.1652 7.93382 13.3192 7.80636 13.4424C7.68102 13.5635 7.48877 13.624 7.22961 13.624H6.80263V14.5513H6.51266V12.3303H7.22961C7.48028 12.3303 7.6704 12.3909 7.79998 12.5119C7.93169 12.633 7.99754 12.7892 7.99754 12.9804ZM7.22961 13.385C7.39106 13.385 7.51002 13.35 7.58649 13.2799C7.66297 13.2098 7.7012 13.1099 7.7012 12.9804C7.7012 12.7063 7.54401 12.5693 7.22961 12.5693H6.80263V13.385H7.22961ZM9.1195 14.58C8.95593 14.58 8.80723 14.5428 8.6734 14.4684C8.54169 14.3941 8.4376 14.2889 8.36112 14.153C8.28677 14.0149 8.2496 13.8556 8.2496 13.675C8.2496 13.4966 8.28784 13.3394 8.36431 13.2034C8.44291 13.0653 8.54912 12.9602 8.68296 12.888C8.81679 12.8136 8.96655 12.7764 9.13225 12.7764C9.29794 12.7764 9.4477 12.8136 9.58153 12.888C9.71537 12.9602 9.82052 13.0643 9.89699 13.2002C9.97559 13.3362 10.0149 13.4944 10.0149 13.675C10.0149 13.8556 9.97453 14.0149 9.89381 14.153C9.81521 14.2889 9.70793 14.3941 9.57197 14.4684C9.43602 14.5428 9.28519 14.58 9.1195 14.58ZM9.1195 14.325C9.22359 14.325 9.32131 14.3006 9.41265 14.2518C9.504 14.2029 9.57729 14.1296 9.63252 14.0319C9.68987 13.9342 9.71855 13.8152 9.71855 13.675C9.71855 13.5348 9.69094 13.4158 9.6357 13.3181C9.58047 13.2204 9.50825 13.1482 9.41903 13.1014C9.3298 13.0526 9.23315 13.0282 9.12906 13.0282C9.02284 13.0282 8.92513 13.0526 8.8359 13.1014C8.74881 13.1482 8.67871 13.2204 8.6256 13.3181C8.57249 13.4158 8.54594 13.5348 8.54594 13.675C8.54594 13.8173 8.57143 13.9374 8.62241 14.0351C8.67552 14.1328 8.74562 14.2061 8.83272 14.2549C8.91981 14.3017 9.01541 14.325 9.1195 14.325ZM10.6542 14.513C10.7605 14.5577 10.8805 14.58 11.0143 14.58C11.1397 14.58 11.2501 14.5587 11.3457 14.5162C11.4434 14.4716 11.5188 14.4111 11.5719 14.3346C11.6251 14.2581 11.6516 14.1721 11.6516 14.0765C11.6495 13.9703 11.6197 13.8842 11.5624 13.8184C11.5072 13.7525 11.4402 13.7037 11.3616 13.6718C11.283 13.6378 11.1811 13.6038 11.0557 13.5699C10.9559 13.5422 10.8773 13.5178 10.8199 13.4966C10.7647 13.4732 10.718 13.4435 10.6797 13.4073C10.6436 13.3691 10.6256 13.3213 10.6256 13.264C10.6256 13.1917 10.6564 13.1333 10.718 13.0887C10.7796 13.0441 10.8624 13.0218 10.9665 13.0218C11.0791 13.0218 11.1683 13.0494 11.2342 13.1046C11.3022 13.1599 11.3393 13.2331 11.3457 13.3245H11.6357C11.6272 13.1546 11.5634 13.0207 11.4445 12.923C11.3255 12.8253 11.1694 12.7764 10.9761 12.7764C10.8507 12.7764 10.7392 12.7987 10.6415 12.8433C10.5438 12.8858 10.4684 12.9442 10.4153 13.0186C10.3622 13.0929 10.3356 13.1747 10.3356 13.264C10.3356 13.3765 10.3643 13.4679 10.4216 13.538C10.4811 13.606 10.5512 13.658 10.6319 13.6941C10.7148 13.7281 10.821 13.7621 10.9506 13.7961C11.0929 13.8322 11.1981 13.8694 11.266 13.9076C11.334 13.9437 11.368 14 11.368 14.0765C11.368 14.1508 11.3361 14.2125 11.2724 14.2613C11.2087 14.3102 11.1216 14.3346 11.0111 14.3346C10.8922 14.3346 10.7955 14.307 10.7212 14.2518C10.6489 14.1965 10.6086 14.1254 10.6001 14.0383H10.3006C10.3069 14.1445 10.3409 14.239 10.4025 14.3219C10.4641 14.4026 10.548 14.4663 10.6542 14.513ZM12.4146 13.0441V14.0733C12.4146 14.1583 12.4327 14.2188 12.4688 14.2549C12.5049 14.2889 12.5676 14.3059 12.6568 14.3059H12.8703V14.5513H12.609C12.4476 14.5513 12.3265 14.5141 12.2458 14.4398C12.165 14.3654 12.1247 14.2433 12.1247 14.0733V13.0441H11.8984V12.8051H12.1247V12.3654H12.4146V12.8051H12.8703V13.0441H12.4146ZM2.90469 7.13342C2.77532 7.13342 2.67032 7.02842 2.67032 6.89905C2.67032 6.76967 2.77532 6.66467 2.90469 6.66467H8.78469C8.91407 6.66467 9.01907 6.76967 9.01907 6.89905C9.01907 7.02842 8.91407 7.13342 8.78469 7.13342H2.90469ZM3.9617 4.97132C4.08893 4.84833 4.15254 4.6946 4.15254 4.51011C4.15254 4.31927 4.08681 4.16341 3.95533 4.04255C3.82598 3.92168 3.6362 3.86124 3.38598 3.86124H2.67032V6.07821H2.95977V5.15262H3.38598C3.64468 5.15262 3.83659 5.09219 3.9617 4.97132ZM3.74223 4.8091C3.66589 4.87908 3.54714 4.91407 3.38598 4.91407H2.95977V4.0998H3.38598C3.69982 4.0998 3.85673 4.23657 3.85673 4.51011C3.85673 4.63946 3.81856 4.73913 3.74223 4.8091ZM5.01802 4.38606C4.92472 4.4412 4.85262 4.5186 4.80173 4.61826V4.33517H4.51229V6.07821H4.80173V5.13036C4.80173 4.77836 4.96395 4.60235 5.28838 4.60235H5.36472V4.30337C5.22901 4.30337 5.11344 4.33093 5.01802 4.38606ZM7.28922 5.1399C7.28922 5.19503 7.28603 5.25334 7.27967 5.31484H5.88651C5.89711 5.4866 5.95543 5.62125 6.06145 5.71879C6.1696 5.81421 6.30001 5.86192 6.45268 5.86192C6.57779 5.86192 6.68169 5.8333 6.76439 5.77604C6.84921 5.71667 6.90859 5.63821 6.94251 5.54067H7.25423C7.20758 5.70819 7.11427 5.84496 6.97432 5.95098C6.83437 6.05489 6.66049 6.10684 6.45268 6.10684C6.28728 6.10684 6.13885 6.06973 6.00738 5.99552C5.87803 5.9213 5.77625 5.81633 5.70203 5.68062C5.62781 5.54279 5.5907 5.38375 5.5907 5.20351C5.5907 5.02327 5.62675 4.86529 5.69885 4.72958C5.77095 4.59387 5.87167 4.48997 6.00102 4.41787C6.13249 4.34365 6.28304 4.30655 6.45268 4.30655C6.61808 4.30655 6.76439 4.34259 6.89162 4.41469C7.01885 4.48679 7.11639 4.58645 7.18425 4.71368C7.25423 4.83879 7.28922 4.98086 7.28922 5.1399ZM6.99023 5.07946C6.99023 4.9692 6.96584 4.87484 6.91707 4.79638C6.8683 4.7158 6.8015 4.65537 6.71668 4.61508C6.63398 4.57267 6.54174 4.55146 6.43996 4.55146C6.29365 4.55146 6.16854 4.59811 6.06463 4.69141C5.96285 4.78472 5.90454 4.91407 5.88969 5.07946H6.99023ZM2.90469 8.39441C2.77531 8.39441 2.67031 8.28941 2.67031 8.16003C2.67031 8.03066 2.77531 7.92566 2.90469 7.92566H9.94531C10.0747 7.92566 10.1797 8.03066 10.1797 8.16003C10.1797 8.28941 10.0747 8.39441 9.94531 8.39441H2.90469ZM2.67031 9.42128C2.67031 9.55066 2.77531 9.65565 2.90469 9.65565H11.7638C11.8931 9.65565 11.9981 9.55066 11.9981 9.42128C11.9981 9.2919 11.8931 9.1869 11.7638 9.1869H2.90469C2.77531 9.1869 2.67031 9.2919 2.67031 9.42128ZM2.90469 10.4478H11.7638C11.8931 10.4478 11.9981 10.5528 11.9981 10.6822C11.9981 10.8116 11.8931 10.9166 11.7638 10.9166H2.90469C2.77531 10.9166 2.67031 10.8116 2.67031 10.6822C2.67031 10.5528 2.77531 10.4478 2.90469 10.4478ZM5.90442 11.7091H2.77867C2.71886 11.7091 2.67031 11.8141 2.67031 11.9435C2.67031 12.0728 2.71886 12.1778 2.77867 12.1778H5.90442C5.96423 12.1778 6.01278 12.0728 6.01278 11.9435C6.01278 11.8141 5.96423 11.7091 5.90442 11.7091ZM5.89295 12.945H5.89343C5.95915 12.945 6.01246 13.0494 6.01278 13.1785C6.01309 13.3078 5.95979 13.4132 5.89391 13.4138L2.79013 13.4391H2.78966C2.72394 13.4391 2.67063 13.3347 2.67031 13.2057C2.66999 13.0763 2.7233 12.971 2.78918 12.9703L5.89295 12.945Z"/>
|
5
|
+
</mask>
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.0131 0.0925293C15.2116 0.0925293 17 1.88128 17 4.0794C17 5.89659 15.7778 7.43378 14.1122 7.9119V14.7622C14.1122 15.3938 13.5984 15.9075 12.9669 15.9075H2.14531C1.51375 15.9075 1 15.3938 1 14.7622V3.94065C1 3.30909 1.51375 2.79534 2.14531 2.79534H9.23844C9.77406 1.22503 11.2638 0.0925293 13.0131 0.0925293ZM12.9669 15.4388C13.34 15.4388 13.6434 15.1353 13.6434 14.7622V8.01628C13.4381 8.04909 13.2278 8.06628 13.0134 8.06628C10.815 8.06628 9.02656 6.27753 9.02656 4.0794C9.02656 3.80003 9.05562 3.52722 9.11063 3.26409H2.14531C1.77219 3.26409 1.46875 3.56753 1.46875 3.94065V14.7622C1.46875 15.1353 1.77219 15.4388 2.14531 15.4388H12.9669ZM9.495 4.07909C9.495 6.01909 11.0734 7.59722 13.0131 7.59722C14.9531 7.59722 16.5312 6.01909 16.5312 4.07909C16.5312 2.13909 14.9531 0.560967 13.0131 0.560967C11.0731 0.560967 9.495 2.13909 9.495 4.07909ZM12.36 3.49034C12.36 3.62659 12.4416 3.74784 12.5675 3.7994C12.6934 3.85097 12.8366 3.8219 12.9322 3.72472L13.9444 2.69784C14.0719 2.56847 14.0719 2.35815 13.9444 2.22878L12.9322 1.2019C12.8366 1.10503 12.6934 1.07565 12.5675 1.12722C12.4416 1.17878 12.36 1.30034 12.36 1.43628V1.64034C11.8406 1.71222 11.3631 1.96128 11.0041 2.34972C10.6147 2.77097 10.4003 3.31909 10.4003 3.89315C10.4003 3.99097 10.4066 4.0894 10.4191 4.18597C10.4381 4.33315 10.5494 4.44847 10.6962 4.47253C10.7147 4.47565 10.7334 4.47722 10.7516 4.47722C10.8778 4.47722 10.9934 4.40659 11.0503 4.29003C11.3034 3.77034 11.7969 3.40159 12.36 3.30159V3.49034ZM10.8816 3.68128C10.9259 3.30409 11.0878 2.95034 11.3484 2.66815C11.6556 2.33565 12.0725 2.13159 12.5219 2.09409C12.6956 2.0794 12.8272 1.93815 12.8291 1.76472L13.5178 2.46347L12.8291 3.16222V3.14753C12.8291 3.05378 12.7894 2.96378 12.72 2.90065C12.6506 2.83753 12.5572 2.80597 12.4637 2.81472C11.8378 2.87253 11.2641 3.19347 10.8819 3.68128H10.8816ZM15.6075 3.97253C15.5884 3.82534 15.4772 3.71003 15.3303 3.68597C15.1838 3.66191 15.0412 3.73534 14.9762 3.86878C14.7231 4.38847 14.2297 4.75753 13.6666 4.85753V4.66816C13.6666 4.53191 13.5853 4.41066 13.4591 4.35909C13.3331 4.30753 13.1897 4.33659 13.0944 4.43378L12.0822 5.46066C11.9547 5.59003 11.9547 5.80034 12.0822 5.92972L13.0944 6.95659C13.1587 7.02191 13.2444 7.05628 13.3319 7.05628C13.3747 7.05628 13.4178 7.04816 13.4591 7.03097C13.585 6.97941 13.6666 6.85784 13.6666 6.72191V6.51784C14.1859 6.44597 14.6634 6.19691 15.0225 5.80847C15.4119 5.38722 15.6263 4.83909 15.6263 4.26503C15.6263 4.16722 15.62 4.06878 15.6075 3.97222V3.97253ZM14.6781 5.49034C14.3709 5.82284 13.9541 6.02691 13.5047 6.06441C13.3309 6.07909 13.1994 6.22034 13.1978 6.39378L12.5091 5.69503L13.1978 4.99628V5.01097C13.1978 5.10472 13.2375 5.19472 13.3069 5.25784C13.3763 5.32097 13.4697 5.35253 13.5631 5.34378C14.1891 5.28597 14.7628 4.96503 15.145 4.47722C15.1006 4.85441 14.9388 5.20816 14.6781 5.49034ZM7.99754 12.9804C7.99754 13.1652 7.93382 13.3192 7.80636 13.4424C7.68102 13.5635 7.48877 13.624 7.22961 13.624H6.80263V14.5513H6.51266V12.3303H7.22961C7.48028 12.3303 7.6704 12.3909 7.79998 12.5119C7.93169 12.633 7.99754 12.7892 7.99754 12.9804ZM7.22961 13.385C7.39106 13.385 7.51002 13.35 7.58649 13.2799C7.66297 13.2098 7.7012 13.1099 7.7012 12.9804C7.7012 12.7063 7.54401 12.5693 7.22961 12.5693H6.80263V13.385H7.22961ZM9.1195 14.58C8.95593 14.58 8.80723 14.5428 8.6734 14.4684C8.54169 14.3941 8.4376 14.2889 8.36112 14.153C8.28677 14.0149 8.2496 13.8556 8.2496 13.675C8.2496 13.4966 8.28784 13.3394 8.36431 13.2034C8.44291 13.0653 8.54912 12.9602 8.68296 12.888C8.81679 12.8136 8.96655 12.7764 9.13225 12.7764C9.29794 12.7764 9.4477 12.8136 9.58153 12.888C9.71537 12.9602 9.82052 13.0643 9.89699 13.2002C9.97559 13.3362 10.0149 13.4944 10.0149 13.675C10.0149 13.8556 9.97453 14.0149 9.89381 14.153C9.81521 14.2889 9.70793 14.3941 9.57197 14.4684C9.43602 14.5428 9.28519 14.58 9.1195 14.58ZM9.1195 14.325C9.22359 14.325 9.32131 14.3006 9.41265 14.2518C9.504 14.2029 9.57729 14.1296 9.63252 14.0319C9.68987 13.9342 9.71855 13.8152 9.71855 13.675C9.71855 13.5348 9.69094 13.4158 9.6357 13.3181C9.58047 13.2204 9.50825 13.1482 9.41903 13.1014C9.3298 13.0526 9.23315 13.0282 9.12906 13.0282C9.02284 13.0282 8.92513 13.0526 8.8359 13.1014C8.74881 13.1482 8.67871 13.2204 8.6256 13.3181C8.57249 13.4158 8.54594 13.5348 8.54594 13.675C8.54594 13.8173 8.57143 13.9374 8.62241 14.0351C8.67552 14.1328 8.74562 14.2061 8.83272 14.2549C8.91981 14.3017 9.01541 14.325 9.1195 14.325ZM10.6542 14.513C10.7605 14.5577 10.8805 14.58 11.0143 14.58C11.1397 14.58 11.2501 14.5587 11.3457 14.5162C11.4434 14.4716 11.5188 14.4111 11.5719 14.3346C11.6251 14.2581 11.6516 14.1721 11.6516 14.0765C11.6495 13.9703 11.6197 13.8842 11.5624 13.8184C11.5072 13.7525 11.4402 13.7037 11.3616 13.6718C11.283 13.6378 11.1811 13.6038 11.0557 13.5699C10.9559 13.5422 10.8773 13.5178 10.8199 13.4966C10.7647 13.4732 10.718 13.4435 10.6797 13.4073C10.6436 13.3691 10.6256 13.3213 10.6256 13.264C10.6256 13.1917 10.6564 13.1333 10.718 13.0887C10.7796 13.0441 10.8624 13.0218 10.9665 13.0218C11.0791 13.0218 11.1683 13.0494 11.2342 13.1046C11.3022 13.1599 11.3393 13.2331 11.3457 13.3245H11.6357C11.6272 13.1546 11.5634 13.0207 11.4445 12.923C11.3255 12.8253 11.1694 12.7764 10.9761 12.7764C10.8507 12.7764 10.7392 12.7987 10.6415 12.8433C10.5438 12.8858 10.4684 12.9442 10.4153 13.0186C10.3622 13.0929 10.3356 13.1747 10.3356 13.264C10.3356 13.3765 10.3643 13.4679 10.4216 13.538C10.4811 13.606 10.5512 13.658 10.6319 13.6941C10.7148 13.7281 10.821 13.7621 10.9506 13.7961C11.0929 13.8322 11.1981 13.8694 11.266 13.9076C11.334 13.9437 11.368 14 11.368 14.0765C11.368 14.1508 11.3361 14.2125 11.2724 14.2613C11.2087 14.3102 11.1216 14.3346 11.0111 14.3346C10.8922 14.3346 10.7955 14.307 10.7212 14.2518C10.6489 14.1965 10.6086 14.1254 10.6001 14.0383H10.3006C10.3069 14.1445 10.3409 14.239 10.4025 14.3219C10.4641 14.4026 10.548 14.4663 10.6542 14.513ZM12.4146 13.0441V14.0733C12.4146 14.1583 12.4327 14.2188 12.4688 14.2549C12.5049 14.2889 12.5676 14.3059 12.6568 14.3059H12.8703V14.5513H12.609C12.4476 14.5513 12.3265 14.5141 12.2458 14.4398C12.165 14.3654 12.1247 14.2433 12.1247 14.0733V13.0441H11.8984V12.8051H12.1247V12.3654H12.4146V12.8051H12.8703V13.0441H12.4146ZM2.90469 7.13342C2.77532 7.13342 2.67032 7.02842 2.67032 6.89905C2.67032 6.76967 2.77532 6.66467 2.90469 6.66467H8.78469C8.91407 6.66467 9.01907 6.76967 9.01907 6.89905C9.01907 7.02842 8.91407 7.13342 8.78469 7.13342H2.90469ZM3.9617 4.97132C4.08893 4.84833 4.15254 4.6946 4.15254 4.51011C4.15254 4.31927 4.08681 4.16341 3.95533 4.04255C3.82598 3.92168 3.6362 3.86124 3.38598 3.86124H2.67032V6.07821H2.95977V5.15262H3.38598C3.64468 5.15262 3.83659 5.09219 3.9617 4.97132ZM3.74223 4.8091C3.66589 4.87908 3.54714 4.91407 3.38598 4.91407H2.95977V4.0998H3.38598C3.69982 4.0998 3.85673 4.23657 3.85673 4.51011C3.85673 4.63946 3.81856 4.73913 3.74223 4.8091ZM5.01802 4.38606C4.92472 4.4412 4.85262 4.5186 4.80173 4.61826V4.33517H4.51229V6.07821H4.80173V5.13036C4.80173 4.77836 4.96395 4.60235 5.28838 4.60235H5.36472V4.30337C5.22901 4.30337 5.11344 4.33093 5.01802 4.38606ZM7.28922 5.1399C7.28922 5.19503 7.28603 5.25334 7.27967 5.31484H5.88651C5.89711 5.4866 5.95543 5.62125 6.06145 5.71879C6.1696 5.81421 6.30001 5.86192 6.45268 5.86192C6.57779 5.86192 6.68169 5.8333 6.76439 5.77604C6.84921 5.71667 6.90859 5.63821 6.94251 5.54067H7.25423C7.20758 5.70819 7.11427 5.84496 6.97432 5.95098C6.83437 6.05489 6.66049 6.10684 6.45268 6.10684C6.28728 6.10684 6.13885 6.06973 6.00738 5.99552C5.87803 5.9213 5.77625 5.81633 5.70203 5.68062C5.62781 5.54279 5.5907 5.38375 5.5907 5.20351C5.5907 5.02327 5.62675 4.86529 5.69885 4.72958C5.77095 4.59387 5.87167 4.48997 6.00102 4.41787C6.13249 4.34365 6.28304 4.30655 6.45268 4.30655C6.61808 4.30655 6.76439 4.34259 6.89162 4.41469C7.01885 4.48679 7.11639 4.58645 7.18425 4.71368C7.25423 4.83879 7.28922 4.98086 7.28922 5.1399ZM6.99023 5.07946C6.99023 4.9692 6.96584 4.87484 6.91707 4.79638C6.8683 4.7158 6.8015 4.65537 6.71668 4.61508C6.63398 4.57267 6.54174 4.55146 6.43996 4.55146C6.29365 4.55146 6.16854 4.59811 6.06463 4.69141C5.96285 4.78472 5.90454 4.91407 5.88969 5.07946H6.99023ZM2.90469 8.39441C2.77531 8.39441 2.67031 8.28941 2.67031 8.16003C2.67031 8.03066 2.77531 7.92566 2.90469 7.92566H9.94531C10.0747 7.92566 10.1797 8.03066 10.1797 8.16003C10.1797 8.28941 10.0747 8.39441 9.94531 8.39441H2.90469ZM2.67031 9.42128C2.67031 9.55066 2.77531 9.65565 2.90469 9.65565H11.7638C11.8931 9.65565 11.9981 9.55066 11.9981 9.42128C11.9981 9.2919 11.8931 9.1869 11.7638 9.1869H2.90469C2.77531 9.1869 2.67031 9.2919 2.67031 9.42128ZM2.90469 10.4478H11.7638C11.8931 10.4478 11.9981 10.5528 11.9981 10.6822C11.9981 10.8116 11.8931 10.9166 11.7638 10.9166H2.90469C2.77531 10.9166 2.67031 10.8116 2.67031 10.6822C2.67031 10.5528 2.77531 10.4478 2.90469 10.4478ZM5.90442 11.7091H2.77867C2.71886 11.7091 2.67031 11.8141 2.67031 11.9435C2.67031 12.0728 2.71886 12.1778 2.77867 12.1778H5.90442C5.96423 12.1778 6.01278 12.0728 6.01278 11.9435C6.01278 11.8141 5.96423 11.7091 5.90442 11.7091ZM5.89295 12.945H5.89343C5.95915 12.945 6.01246 13.0494 6.01278 13.1785C6.01309 13.3078 5.95979 13.4132 5.89391 13.4138L2.79013 13.4391H2.78966C2.72394 13.4391 2.67063 13.3347 2.67031 13.2057C2.66999 13.0763 2.7233 12.971 2.78918 12.9703L5.89295 12.945Z" fill="currentColor"/>
|
7
|
+
<path d="M14.1122 7.9119L14.0846 7.81579L14.0122 7.83657V7.9119H14.1122ZM9.23844 2.79534V2.89534H9.30999L9.33308 2.82762L9.23844 2.79534ZM13.6434 8.01628H13.7434V7.89903L13.6277 7.91753L13.6434 8.01628ZM9.11063 3.26409L9.20851 3.28455L9.23369 3.16409H9.11063V3.26409ZM12.9322 3.72472L12.861 3.65452L12.8609 3.65458L12.9322 3.72472ZM13.9444 2.69784L14.0156 2.76804L14.0156 2.76803L13.9444 2.69784ZM13.9444 2.22878L14.0156 2.15859L14.0156 2.15858L13.9444 2.22878ZM12.9322 1.2019L13.0034 1.1317L13.0034 1.13165L12.9322 1.2019ZM12.5675 1.12722L12.5296 1.03467L12.5675 1.12722ZM12.36 1.64034L12.3737 1.7394L12.46 1.72746V1.64034H12.36ZM11.0041 2.34972L10.9306 2.28184L10.9306 2.28184L11.0041 2.34972ZM10.4191 4.18597L10.3199 4.1988L10.3199 4.19881L10.4191 4.18597ZM10.6962 4.47253L10.713 4.37393L10.7124 4.37384L10.6962 4.47253ZM11.0503 4.29003L11.1402 4.33388L11.1402 4.33382L11.0503 4.29003ZM12.36 3.30159H12.46V3.18227L12.3425 3.20313L12.36 3.30159ZM11.3484 2.66815L11.275 2.60029L11.275 2.60031L11.3484 2.66815ZM10.8816 3.68128L10.7822 3.66959L10.7691 3.78128H10.8816V3.68128ZM12.5219 2.09409L12.5302 2.19374L12.5303 2.19374L12.5219 2.09409ZM12.8291 1.76472L12.9003 1.69452L12.7317 1.52345L12.7291 1.76364L12.8291 1.76472ZM13.5178 2.46347L13.589 2.53367L13.6582 2.46347L13.589 2.39327L13.5178 2.46347ZM12.8291 3.16222H12.7291V3.40612L12.9003 3.23242L12.8291 3.16222ZM12.4637 2.81472L12.4729 2.91429L12.4731 2.91428L12.4637 2.81472ZM10.8819 3.68128V3.78128H10.9306L10.9606 3.74295L10.8819 3.68128ZM15.3303 3.68597L15.3141 3.78465L15.3141 3.78465L15.3303 3.68597ZM15.6075 3.97253L15.5083 3.98538L15.7075 3.97253H15.6075ZM14.9762 3.86878L14.8863 3.82499L14.8863 3.82499L14.9762 3.86878ZM13.6666 4.85753H13.5666V4.97685L13.684 4.95599L13.6666 4.85753ZM13.4591 4.35909L13.4212 4.45164L13.4213 4.45167L13.4591 4.35909ZM13.0944 4.43378L13.1656 4.50398L13.1658 4.5038L13.0944 4.43378ZM12.0822 5.46066L12.011 5.39046L12.011 5.39046L12.0822 5.46066ZM12.0822 5.92972L12.011 5.99991L12.011 5.99992L12.0822 5.92972ZM13.0944 6.95659L13.1656 6.8864L13.1656 6.88639L13.0944 6.95659ZM13.4591 7.03097L13.4212 6.93842L13.4206 6.93866L13.4591 7.03097ZM13.6666 6.51784L13.6529 6.41879L13.5666 6.43073V6.51784H13.6666ZM15.0225 5.80847L15.0959 5.87635L15.0959 5.87635L15.0225 5.80847ZM15.6075 3.97222L15.7067 3.95938L15.5075 3.97222H15.6075ZM13.5047 6.06441L13.4964 5.96475L13.4963 5.96476L13.5047 6.06441ZM14.6781 5.49034L14.7516 5.5582L14.7516 5.55819L14.6781 5.49034ZM13.1978 6.39378L13.1266 6.46398L13.2956 6.63548L13.2978 6.39468L13.1978 6.39378ZM12.5091 5.69503L12.4378 5.62483L12.3686 5.69503L12.4378 5.76523L12.5091 5.69503ZM13.1978 4.99628H13.2978V4.75238L13.1266 4.92608L13.1978 4.99628ZM13.3069 5.25784L13.2396 5.33181L13.2396 5.33181L13.3069 5.25784ZM13.5631 5.34378L13.5539 5.24421L13.5538 5.24422L13.5631 5.34378ZM15.145 4.47722L15.2443 4.4889L15.2859 4.1352L15.0663 4.41555L15.145 4.47722ZM7.80636 13.4424L7.87584 13.5143L7.87586 13.5143L7.80636 13.4424ZM6.80263 13.624V13.524H6.70263V13.624H6.80263ZM6.80263 14.5513V14.6513H6.90263V14.5513H6.80263ZM6.51266 14.5513H6.41266V14.6513H6.51266V14.5513ZM6.51266 12.3303V12.2303H6.41266V12.3303H6.51266ZM7.79998 12.5119L7.73171 12.585L7.73231 12.5856L7.79998 12.5119ZM7.58649 13.2799L7.51892 13.2062H7.51892L7.58649 13.2799ZM6.80263 12.5693V12.4693H6.70263V12.5693H6.80263ZM6.80263 13.385H6.70263V13.485H6.80263V13.385ZM8.6734 14.4684L8.62424 14.5555L8.62483 14.5558L8.6734 14.4684ZM8.36112 14.153L8.27306 14.2004L8.27397 14.202L8.36112 14.153ZM8.36431 13.2034L8.2774 13.1539L8.27715 13.1544L8.36431 13.2034ZM8.68296 12.888L8.73045 12.976L8.73152 12.9754L8.68296 12.888ZM9.58153 12.888L9.53297 12.9754L9.53404 12.976L9.58153 12.888ZM9.89699 13.2002L9.80983 13.2493L9.81042 13.2503L9.89699 13.2002ZM9.89381 14.153L9.80748 14.1025L9.80723 14.1029L9.89381 14.153ZM9.41265 14.2518L9.45982 14.3399H9.45982L9.41265 14.2518ZM9.63252 14.0319L9.54626 13.9813L9.54546 13.9827L9.63252 14.0319ZM9.6357 13.3181L9.72276 13.2689L9.6357 13.3181ZM9.41903 13.1014L9.37099 13.1892L9.37262 13.19L9.41903 13.1014ZM8.8359 13.1014L8.88319 13.1896L8.88394 13.1892L8.8359 13.1014ZM8.6256 13.3181L8.71346 13.3659L8.6256 13.3181ZM8.62241 14.0351L8.53374 14.0813L8.53455 14.0828L8.62241 14.0351ZM8.83272 14.2549L8.78378 14.3422L8.78544 14.3431L8.83272 14.2549ZM10.6542 14.513L10.614 14.6046L10.6155 14.6052L10.6542 14.513ZM11.3457 14.5162L11.3863 14.6076L11.3872 14.6072L11.3457 14.5162ZM11.6516 14.0765H11.7516L11.7516 14.0745L11.6516 14.0765ZM11.5624 13.8184L11.4858 13.8827L11.487 13.8841L11.5624 13.8184ZM11.3616 13.6718L11.3219 13.7636L11.3241 13.7645L11.3616 13.6718ZM11.0557 13.5699L11.0291 13.6662L11.0296 13.6664L11.0557 13.5699ZM10.8199 13.4966L10.7809 13.5888L10.7852 13.5903L10.8199 13.4966ZM10.6797 13.4073L10.6069 13.4761L10.6111 13.48L10.6797 13.4073ZM11.2342 13.1046L11.1699 13.1813L11.1711 13.1822L11.2342 13.1046ZM11.3457 13.3245L11.2459 13.3315L11.2524 13.4245H11.3457V13.3245ZM11.6357 13.3245V13.4245H11.7408L11.7355 13.3195L11.6357 13.3245ZM11.4445 12.923L11.381 13.0003L11.381 13.0003L11.4445 12.923ZM10.6415 12.8433L10.6814 12.9351L10.683 12.9343L10.6415 12.8433ZM10.4153 13.0186L10.3339 12.9605V12.9605L10.4153 13.0186ZM10.4216 13.538L10.3442 13.6013L10.3464 13.6038L10.4216 13.538ZM10.6319 13.6941L10.5911 13.7854L10.594 13.7866L10.6319 13.6941ZM10.9506 13.7961L10.9252 13.8928L10.926 13.893L10.9506 13.7961ZM11.266 13.9076L11.217 13.9948L11.2191 13.9959L11.266 13.9076ZM11.2724 14.2613L11.2116 14.1819L11.2116 14.182L11.2724 14.2613ZM10.7212 14.2518L10.6604 14.3312L10.6615 14.332L10.7212 14.2518ZM10.6001 14.0383L10.6996 14.0285L10.6908 13.9383H10.6001V14.0383ZM10.3006 14.0383V13.9383H10.1944L10.2007 14.0442L10.3006 14.0383ZM10.4025 14.3219L10.3223 14.3815L10.323 14.3825L10.4025 14.3219ZM12.4146 13.0441V12.9441H12.3146V13.0441H12.4146ZM12.4688 14.2549L12.3981 14.3257L12.4003 14.3278L12.4688 14.2549ZM12.8703 14.3059H12.9703V14.2059H12.8703V14.3059ZM12.8703 14.5513V14.6513H12.9703V14.5513H12.8703ZM12.2458 14.4398L12.178 14.5133L12.178 14.5133L12.2458 14.4398ZM12.1247 13.0441H12.2247V12.9441H12.1247V13.0441ZM11.8984 13.0441H11.7984V13.1441H11.8984V13.0441ZM11.8984 12.8051V12.7051H11.7984V12.8051H11.8984ZM12.1247 12.8051V12.9051H12.2247V12.8051H12.1247ZM12.1247 12.3654V12.2654H12.0247V12.3654H12.1247ZM12.4146 12.3654H12.5146V12.2654H12.4146V12.3654ZM12.4146 12.8051H12.3146V12.9051H12.4146V12.8051ZM12.8703 12.8051H12.9703V12.7051H12.8703V12.8051ZM12.8703 13.0441V13.1441H12.9703V13.0441H12.8703ZM3.9617 4.97132L4.03118 5.04324L4.0312 5.04322L3.9617 4.97132ZM3.95533 4.04255L3.88706 4.11561L3.88765 4.11616L3.95533 4.04255ZM2.67032 3.86124V3.76124H2.57032V3.86124H2.67032ZM2.67032 6.07821H2.57032V6.17821H2.67032V6.07821ZM2.95977 6.07821V6.17821H3.05977V6.07821H2.95977ZM2.95977 5.15262V5.05262H2.85977V5.15262H2.95977ZM3.74223 4.8091L3.67465 4.73539L3.67465 4.73539L3.74223 4.8091ZM2.95977 4.91407H2.85977V5.01407H2.95977V4.91407ZM2.95977 4.0998V3.9998H2.85977V4.0998H2.95977ZM4.80173 4.61826H4.70173L4.89079 4.66374L4.80173 4.61826ZM5.01802 4.38606L4.96799 4.29947L4.96715 4.29997L5.01802 4.38606ZM4.80173 4.33517H4.90173V4.23517H4.80173V4.33517ZM4.51229 4.33517V4.23517H4.41229V4.33517H4.51229ZM4.51229 6.07821H4.41229V6.17821H4.51229V6.07821ZM4.80173 6.07821V6.17821H4.90173V6.07821H4.80173ZM5.36472 4.60235V4.70235H5.46472V4.60235H5.36472ZM5.36472 4.30337H5.46472V4.20337H5.36472V4.30337ZM7.27967 5.31484V5.41484H7.36986L7.37914 5.32513L7.27967 5.31484ZM5.88651 5.31484V5.21484H5.78015L5.7867 5.321L5.88651 5.31484ZM6.06145 5.71879L5.99373 5.7924L5.99529 5.79378L6.06145 5.71879ZM6.76439 5.77604L6.82132 5.85827L6.82174 5.85797L6.76439 5.77604ZM6.94251 5.54067V5.44067H6.87142L6.84807 5.50782L6.94251 5.54067ZM7.25423 5.54067L7.35056 5.5675L7.38588 5.44067H7.25423V5.54067ZM6.97432 5.95098L7.03394 6.03128L7.03471 6.03069L6.97432 5.95098ZM6.00738 5.99552L5.95761 6.08225L5.95822 6.0826L6.00738 5.99552ZM5.70203 5.68062L5.61398 5.72803L5.61429 5.7286L5.70203 5.68062ZM5.69885 4.72958L5.78716 4.7765L5.69885 4.72958ZM6.00102 4.41787L6.0497 4.50522L6.05018 4.50495L6.00102 4.41787ZM6.89162 4.41469L6.84232 4.50169H6.84232L6.89162 4.41469ZM7.18425 4.71368L7.096 4.76075L7.09698 4.7625L7.18425 4.71368ZM6.91707 4.79638L6.83151 4.84816L6.83214 4.84917L6.91707 4.79638ZM6.99023 5.07946V5.17946H7.09023V5.07946H6.99023ZM6.71668 4.61508L6.67103 4.7041L6.67378 4.70541L6.71668 4.61508ZM6.06463 4.69141L5.99782 4.61701L5.99706 4.6177L6.06463 4.69141ZM5.88969 5.07946L5.79009 5.07053L5.78032 5.17946H5.88969V5.07946ZM5.89295 12.945V12.845L5.89214 12.845L5.89295 12.945ZM6.01278 13.1785L6.11278 13.1782V13.1782L6.01278 13.1785ZM5.89391 13.4138L5.89472 13.5138L5.89486 13.5138L5.89391 13.4138ZM2.79013 13.4391V13.5391L2.79095 13.5391L2.79013 13.4391ZM2.67031 13.2057L2.57031 13.2059V13.2059L2.67031 13.2057ZM2.78918 12.9703L2.78836 12.8703L2.78823 12.8703L2.78918 12.9703ZM17.1 4.0794C17.1 1.82606 15.2668 -0.0074707 13.0131 -0.0074707V0.192529C15.1563 0.192529 16.9 1.9365 16.9 4.0794H17.1ZM14.1398 8.00802C15.847 7.51795 17.1 5.94247 17.1 4.0794H16.9C16.9 5.85072 15.7086 7.34961 14.0846 7.81579L14.1398 8.00802ZM14.2122 14.7622V7.9119H14.0122V14.7622H14.2122ZM12.9669 16.0075C13.6537 16.0075 14.2122 15.449 14.2122 14.7622H14.0122C14.0122 15.3386 13.5432 15.8075 12.9669 15.8075V16.0075ZM2.14531 16.0075H12.9669V15.8075H2.14531V16.0075ZM0.9 14.7622C0.9 15.449 1.45852 16.0075 2.14531 16.0075V15.8075C1.56898 15.8075 1.1 15.3386 1.1 14.7622H0.9ZM0.9 3.94065V14.7622H1.1V3.94065H0.9ZM2.14531 2.69534C1.45852 2.69534 0.9 3.25386 0.9 3.94065H1.1C1.1 3.36432 1.56898 2.89534 2.14531 2.89534V2.69534ZM9.23844 2.69534H2.14531V2.89534H9.23844V2.69534ZM13.0131 -0.0074707C11.2196 -0.0074707 9.69277 1.15359 9.14379 2.76306L9.33308 2.82762C9.85535 1.29647 11.3079 0.192529 13.0131 0.192529V-0.0074707ZM13.5434 14.7622C13.5434 15.0801 13.2848 15.3388 12.9669 15.3388V15.5388C13.3952 15.5388 13.7434 15.1906 13.7434 14.7622H13.5434ZM13.5434 8.01628V14.7622H13.7434V8.01628H13.5434ZM13.0134 8.16628C13.2332 8.16628 13.4488 8.14866 13.6592 8.11503L13.6277 7.91753C13.4275 7.94952 13.2225 7.96628 13.0134 7.96628V8.16628ZM8.92656 4.0794C8.92656 6.33275 10.7598 8.16628 13.0134 8.16628V7.96628C10.8702 7.96628 9.12656 6.22231 9.12656 4.0794H8.92656ZM9.01274 3.24363C8.95635 3.51341 8.92656 3.79308 8.92656 4.0794H9.12656C9.12656 3.80698 9.1549 3.54102 9.20851 3.28455L9.01274 3.24363ZM2.14531 3.36409H9.11063V3.16409H2.14531V3.36409ZM1.56875 3.94065C1.56875 3.62276 1.82742 3.36409 2.14531 3.36409V3.16409C1.71696 3.16409 1.36875 3.5123 1.36875 3.94065H1.56875ZM1.56875 14.7622V3.94065H1.36875V14.7622H1.56875ZM2.14531 15.3388C1.82742 15.3388 1.56875 15.0801 1.56875 14.7622H1.36875C1.36875 15.1906 1.71696 15.5388 2.14531 15.5388V15.3388ZM12.9669 15.3388H2.14531V15.5388H12.9669V15.3388ZM13.0131 7.49722C11.1287 7.49722 9.595 5.96386 9.595 4.07909H9.395C9.395 6.07433 11.0182 7.69722 13.0131 7.69722V7.49722ZM16.4312 4.07909C16.4312 5.96386 14.8979 7.49722 13.0131 7.49722V7.69722C15.0084 7.69722 16.6313 6.07432 16.6313 4.07909H16.4312ZM13.0131 0.660967C14.8979 0.660967 16.4312 2.19432 16.4312 4.07909H16.6313C16.6313 2.08386 15.0084 0.460967 13.0131 0.460967V0.660967ZM9.595 4.07909C9.595 2.19432 11.1284 0.660967 13.0131 0.660967V0.460967C11.0179 0.460967 9.395 2.08386 9.395 4.07909H9.595ZM12.6054 3.70686C12.517 3.67065 12.46 3.58593 12.46 3.49034H12.26C12.26 3.66725 12.3662 3.82503 12.5296 3.89195L12.6054 3.70686ZM12.8609 3.65458C12.7939 3.72273 12.6939 3.7431 12.6054 3.70686L12.5296 3.89195C12.693 3.95883 12.8793 3.92108 13.0035 3.79485L12.8609 3.65458ZM13.8732 2.62764L12.861 3.65452L13.0034 3.79492L14.0156 2.76804L13.8732 2.62764ZM13.8731 2.29897C13.9623 2.38942 13.9623 2.5372 13.8731 2.62765L14.0156 2.76803C14.1815 2.59973 14.1815 2.32689 14.0156 2.15859L13.8731 2.29897ZM12.861 1.2721L13.8732 2.29898L14.0156 2.15858L13.0034 1.1317L12.861 1.2721ZM12.6054 1.21976C12.6937 1.18359 12.7938 1.20407 12.861 1.27215L13.0034 1.13165C12.8793 1.00599 12.6931 0.967722 12.5296 1.03467L12.6054 1.21976ZM12.46 1.43628C12.46 1.34095 12.517 1.25595 12.6054 1.21976L12.5296 1.03467C12.3661 1.10161 12.26 1.25973 12.26 1.43628H12.46ZM12.46 1.64034V1.43628H12.26V1.64034H12.46ZM11.0775 2.4176C11.4209 2.04608 11.8773 1.80809 12.3737 1.7394L12.3463 1.54129C11.8039 1.61634 11.3053 1.87647 10.9306 2.28184L11.0775 2.4176ZM10.5003 3.89315C10.5003 3.34423 10.7052 2.82035 11.0775 2.41759L10.9306 2.28184C10.5242 2.72159 10.3003 3.29396 10.3003 3.89315H10.5003ZM10.5182 4.17313C10.5063 4.0809 10.5003 3.98675 10.5003 3.89315H10.3003C10.3003 3.99518 10.3068 4.09791 10.3199 4.1988L10.5182 4.17313ZM10.7124 4.37384C10.6092 4.35693 10.5316 4.27654 10.5182 4.17312L10.3199 4.19881C10.3446 4.38977 10.4896 4.54 10.6801 4.57121L10.7124 4.37384ZM10.7516 4.37722C10.7391 4.37722 10.7259 4.37613 10.713 4.37393L10.6795 4.57112C10.7035 4.57518 10.7278 4.57722 10.7516 4.57722V4.37722ZM10.9604 4.24618C10.9205 4.32812 10.8399 4.37722 10.7516 4.37722V4.57722C10.9157 4.57722 11.0664 4.48506 11.1402 4.33388L10.9604 4.24618ZM12.3425 3.20313C11.7481 3.30869 11.2276 3.6976 10.9604 4.24624L11.1402 4.33382C11.3792 3.84308 11.8456 3.4945 12.3775 3.40005L12.3425 3.20313ZM12.46 3.49034V3.30159H12.26V3.49034H12.46ZM11.275 2.60031C11 2.89804 10.8291 3.27146 10.7822 3.66959L10.9809 3.69296C11.0228 3.33672 11.1756 3.00264 11.4219 2.736L11.275 2.60031ZM12.5136 1.99444C12.0391 2.03403 11.5991 2.24952 11.275 2.60029L11.4219 2.73601C11.7122 2.42178 12.1059 2.22915 12.5302 2.19374L12.5136 1.99444ZM12.7291 1.76364C12.7278 1.88522 12.6361 1.98407 12.5135 1.99445L12.5303 2.19374C12.7551 2.17473 12.9266 1.99109 12.9291 1.7658L12.7291 1.76364ZM13.589 2.39327L12.9003 1.69452L12.7578 1.83492L13.4466 2.53367L13.589 2.39327ZM12.9003 3.23242L13.589 2.53367L13.4466 2.39327L12.7578 3.09202L12.9003 3.23242ZM12.7291 3.14753V3.16222H12.9291V3.14753H12.7291ZM12.6527 2.97462C12.7012 3.01875 12.7291 3.08187 12.7291 3.14753H12.9291C12.9291 3.02569 12.8776 2.90881 12.7873 2.82669L12.6527 2.97462ZM12.4731 2.91428C12.5383 2.90818 12.6039 2.93025 12.6527 2.97462L12.7873 2.82669C12.6973 2.7448 12.5761 2.70376 12.4544 2.71515L12.4731 2.91428ZM10.9606 3.74295C11.3262 3.2763 11.875 2.96952 12.4729 2.91429L12.4546 2.71514C11.8006 2.77554 11.2019 3.11063 10.8032 3.61961L10.9606 3.74295ZM10.8816 3.78128H10.8819V3.58128H10.8816V3.78128ZM15.3141 3.78465C15.4174 3.80157 15.4949 3.88196 15.5083 3.98538L15.7067 3.95969C15.6819 3.76873 15.537 3.61849 15.3465 3.58728L15.3141 3.78465ZM15.0662 3.91257C15.1117 3.81902 15.211 3.76772 15.3141 3.78465L15.3465 3.58729C15.1565 3.55609 14.9708 3.65167 14.8863 3.82499L15.0662 3.91257ZM13.684 4.95599C14.2785 4.85043 14.7989 4.46118 15.0662 3.91257L14.8863 3.82499C14.6473 4.31576 14.1809 4.66463 13.6491 4.75907L13.684 4.95599ZM13.5666 4.66816V4.85753H13.7666V4.66816H13.5666ZM13.4213 4.45167C13.5098 4.48784 13.5666 4.57245 13.5666 4.66816H13.7666C13.7666 4.49136 13.6608 4.33347 13.4969 4.26652L13.4213 4.45167ZM13.1658 4.5038C13.2324 4.43585 13.3326 4.41537 13.4212 4.45164L13.497 4.26655C13.3337 4.1997 13.147 4.23734 13.023 4.36376L13.1658 4.5038ZM12.1534 5.53086L13.1656 4.50398L13.0232 4.36358L12.011 5.39046L12.1534 5.53086ZM12.1534 5.85953C12.0643 5.76908 12.0643 5.62129 12.1534 5.53085L12.011 5.39046C11.8451 5.55877 11.8451 5.83161 12.011 5.99991L12.1534 5.85953ZM13.1656 6.88639L12.1534 5.85952L12.011 5.99992L13.0232 7.02679L13.1656 6.88639ZM13.3319 6.95628C13.2707 6.95628 13.2109 6.93233 13.1656 6.8864L13.0232 7.02679C13.1066 7.11148 13.218 7.15628 13.3319 7.15628V6.95628ZM13.4206 6.93866C13.392 6.95059 13.362 6.95628 13.3319 6.95628V7.15628C13.3874 7.15628 13.4436 7.14573 13.4975 7.12328L13.4206 6.93866ZM13.5666 6.72191C13.5666 6.81724 13.5096 6.90224 13.4212 6.93843L13.497 7.12351C13.6604 7.05657 13.7666 6.89845 13.7666 6.72191H13.5666ZM13.5666 6.51784V6.72191H13.7666V6.51784H13.5666ZM14.9491 5.74059C14.6057 6.1121 14.1492 6.3501 13.6529 6.41879L13.6803 6.6169C14.2226 6.54184 14.7212 6.28171 15.0959 5.87635L14.9491 5.74059ZM15.5262 4.26503C15.5262 4.81396 15.3213 5.33784 14.9491 5.74059L15.0959 5.87635C15.5024 5.4366 15.7263 4.86423 15.7263 4.26503H15.5262ZM15.5083 3.98506C15.5203 4.07729 15.5262 4.17144 15.5262 4.26503H15.7263C15.7263 4.163 15.7197 4.06027 15.7067 3.95938L15.5083 3.98506ZM15.7075 3.97253V3.97222H15.5075V3.97253H15.7075ZM13.513 6.16406C13.9874 6.12447 14.4275 5.90898 14.7516 5.5582L14.6047 5.42248C14.3144 5.73671 13.9207 5.92934 13.4964 5.96475L13.513 6.16406ZM13.2978 6.39468C13.2989 6.27327 13.3904 6.17443 13.5131 6.16405L13.4963 5.96476C13.2715 5.98376 13.0998 6.16742 13.0978 6.39288L13.2978 6.39468ZM12.4378 5.76523L13.1266 6.46398L13.269 6.32358L12.5803 5.62483L12.4378 5.76523ZM13.1266 4.92608L12.4378 5.62483L12.5803 5.76523L13.269 5.06648L13.1266 4.92608ZM13.2978 5.01097V4.99628H13.0978V5.01097H13.2978ZM13.3742 5.18388C13.3257 5.13975 13.2978 5.07663 13.2978 5.01097H13.0978C13.0978 5.13281 13.1493 5.24969 13.2396 5.33181L13.3742 5.18388ZM13.5538 5.24422C13.4886 5.25032 13.4229 5.22824 13.3742 5.18388L13.2396 5.33181C13.3296 5.41369 13.4508 5.45474 13.5724 5.44335L13.5538 5.24422ZM15.0663 4.41555C14.7007 4.8822 14.1518 5.18898 13.5539 5.24421L13.5723 5.44336C14.2263 5.38296 14.825 5.04787 15.2237 4.53889L15.0663 4.41555ZM14.7516 5.55819C15.0266 5.26046 15.1975 4.88704 15.2443 4.4889L15.0457 4.46554C15.0038 4.82178 14.8509 5.15586 14.6047 5.4225L14.7516 5.55819ZM7.87586 13.5143C8.02372 13.3714 8.09754 13.191 8.09754 12.9804H7.89754C7.89754 13.1394 7.84391 13.267 7.73686 13.3705L7.87586 13.5143ZM7.22961 13.724C7.50224 13.724 7.7245 13.6605 7.87584 13.5143L7.73688 13.3705C7.63755 13.4664 7.47531 13.524 7.22961 13.524V13.724ZM6.80263 13.724H7.22961V13.524H6.80263V13.724ZM6.90263 14.5513V13.624H6.70263V14.5513H6.90263ZM6.51266 14.6513H6.80263V14.4513H6.51266V14.6513ZM6.41266 12.3303V14.5513H6.61266V12.3303H6.41266ZM7.22961 12.2303H6.51266V12.4303H7.22961V12.2303ZM7.86826 12.4389C7.7137 12.2945 7.49514 12.2303 7.22961 12.2303V12.4303C7.46542 12.4303 7.62711 12.4873 7.73171 12.585L7.86826 12.4389ZM8.09754 12.9804C8.09754 12.7633 8.0215 12.5798 7.86766 12.4383L7.73231 12.5856C7.84188 12.6863 7.89754 12.815 7.89754 12.9804H8.09754ZM7.51892 13.2062C7.46882 13.2521 7.37941 13.285 7.22961 13.285V13.485C7.4027 13.485 7.55122 13.4479 7.65407 13.3536L7.51892 13.2062ZM7.6012 12.9804C7.6012 13.0894 7.5698 13.1595 7.51892 13.2062L7.65406 13.3536C7.75614 13.26 7.8012 13.1305 7.8012 12.9804H7.6012ZM7.22961 12.6693C7.37451 12.6693 7.46451 12.7012 7.5176 12.7475C7.56807 12.7914 7.6012 12.8626 7.6012 12.9804H7.8012C7.8012 12.8241 7.75574 12.6897 7.64901 12.5967C7.54491 12.5059 7.39911 12.4693 7.22961 12.4693V12.6693ZM6.80263 12.6693H7.22961V12.4693H6.80263V12.6693ZM6.90263 13.385V12.5693H6.70263V13.385H6.90263ZM7.22961 13.285H6.80263V13.485H7.22961V13.285ZM8.62483 14.5558C8.77453 14.639 8.94013 14.68 9.1195 14.68V14.48C8.97172 14.48 8.83992 14.4465 8.72196 14.381L8.62483 14.5558ZM8.27397 14.202C8.3591 14.3533 8.47611 14.4719 8.62424 14.5555L8.72256 14.3813C8.60727 14.3163 8.5161 14.2245 8.44828 14.1039L8.27397 14.202ZM8.1496 13.675C8.1496 13.8696 8.18976 14.0457 8.27308 14.2004L8.44917 14.1056C8.38378 13.9841 8.3496 13.8415 8.3496 13.675H8.1496ZM8.27715 13.1544C8.19111 13.3073 8.1496 13.4819 8.1496 13.675H8.3496C8.3496 13.5112 8.38456 13.3714 8.45147 13.2524L8.27715 13.1544ZM8.63546 12.7999C8.48439 12.8815 8.36484 13.0003 8.2774 13.1539L8.45122 13.2529C8.52098 13.1303 8.61386 13.0389 8.73045 12.976L8.63546 12.7999ZM9.13225 12.6764C8.95099 12.6764 8.78429 12.7173 8.63439 12.8005L8.73152 12.9754C8.84929 12.9099 8.98211 12.8764 9.13225 12.8764V12.6764ZM9.6301 12.8005C9.4802 12.7173 9.3135 12.6764 9.13225 12.6764V12.8764C9.28238 12.8764 9.4152 12.9099 9.53297 12.9754L9.6301 12.8005ZM9.98415 13.1512C9.89866 12.9992 9.77995 12.8814 9.62903 12.7999L9.53404 12.976C9.65079 13.039 9.74238 13.1293 9.80984 13.2492L9.98415 13.1512ZM10.1149 13.675C10.1149 13.4795 10.0722 13.3035 9.98357 13.1502L9.81042 13.2503C9.87898 13.3689 9.91489 13.5093 9.91489 13.675H10.1149ZM9.98014 14.2034C10.0709 14.0482 10.1149 13.871 10.1149 13.675H9.91489C9.91489 13.8402 9.87814 13.9816 9.80748 14.1025L9.98014 14.2034ZM9.61996 14.5562C9.77221 14.4729 9.89274 14.3546 9.98038 14.203L9.80723 14.1029C9.73767 14.2232 9.64365 14.3153 9.52399 14.3807L9.61996 14.5562ZM9.1195 14.68C9.30077 14.68 9.46827 14.6391 9.61996 14.5562L9.52399 14.3807C9.40377 14.4464 9.26962 14.48 9.1195 14.48V14.68ZM9.36549 14.1636C9.28872 14.2046 9.20722 14.225 9.1195 14.225V14.425C9.23996 14.425 9.35389 14.3966 9.45982 14.3399L9.36549 14.1636ZM9.54546 13.9827C9.49875 14.0653 9.43871 14.1244 9.36549 14.1636L9.45982 14.3399C9.56928 14.2814 9.65582 14.1939 9.71957 14.0811L9.54546 13.9827ZM9.61855 13.675C9.61855 13.8016 9.59271 13.9021 9.54628 13.9813L9.71876 14.0825C9.78703 13.9662 9.81855 13.8288 9.81855 13.675H9.61855ZM9.54865 13.3673C9.59353 13.4467 9.61855 13.5478 9.61855 13.675H9.81855C9.81855 13.5218 9.78834 13.3849 9.72276 13.2689L9.54865 13.3673ZM9.37262 13.19C9.44287 13.2268 9.50177 13.2844 9.54865 13.3673L9.72276 13.2689C9.65917 13.1564 9.57362 13.0695 9.46543 13.0129L9.37262 13.19ZM9.12906 13.1282C9.21677 13.1282 9.29685 13.1486 9.37099 13.1892L9.46706 13.0137C9.36276 12.9566 9.24953 12.9282 9.12906 12.9282V13.1282ZM8.88394 13.1892C8.95777 13.1487 9.03886 13.1282 9.12906 13.1282V12.9282C9.00682 12.9282 8.89248 12.9564 8.78787 13.0137L8.88394 13.1892ZM8.71346 13.3659C8.75847 13.2831 8.81535 13.226 8.88319 13.1896L8.78862 13.0133C8.68226 13.0704 8.59895 13.1577 8.53774 13.2704L8.71346 13.3659ZM8.64594 13.675C8.64594 13.5472 8.67013 13.4456 8.71346 13.3659L8.53774 13.2704C8.47485 13.3861 8.44594 13.5224 8.44594 13.675H8.64594ZM8.71107 13.9888C8.66939 13.9089 8.64594 13.8058 8.64594 13.675H8.44594C8.44594 13.8289 8.47347 13.9658 8.53375 14.0813L8.71107 13.9888ZM8.88164 14.1677C8.81281 14.1291 8.75544 14.0704 8.71028 13.9873L8.53455 14.0828C8.5956 14.1952 8.67843 14.283 8.78379 14.3422L8.88164 14.1677ZM9.1195 14.225C9.031 14.225 8.95178 14.2053 8.88 14.1668L8.78544 14.3431C8.88785 14.398 8.99981 14.425 9.1195 14.425V14.225ZM11.0143 14.48C10.8917 14.48 10.7851 14.4595 10.693 14.4208L10.6155 14.6052C10.7358 14.6558 10.8693 14.68 11.0143 14.68V14.48ZM11.3051 14.4248C11.2246 14.4606 11.1284 14.48 11.0143 14.48V14.68C11.1509 14.68 11.2757 14.6568 11.3863 14.6076L11.3051 14.4248ZM11.4898 14.2776C11.4484 14.3371 11.3881 14.3869 11.3042 14.4253L11.3872 14.6072C11.4987 14.5563 11.5892 14.485 11.6541 14.3916L11.4898 14.2776ZM11.5516 14.0765C11.5516 14.1523 11.531 14.2183 11.4898 14.2776L11.6541 14.3916C11.7191 14.2979 11.7516 14.1919 11.7516 14.0765H11.5516ZM11.487 13.8841C11.5258 13.9286 11.5499 13.9905 11.5516 14.0785L11.7516 14.0745C11.7491 13.9501 11.7137 13.8399 11.6378 13.7527L11.487 13.8841ZM11.3241 13.7645C11.3873 13.7901 11.4409 13.8291 11.4858 13.8827L11.639 13.7541C11.5734 13.6759 11.4932 13.6172 11.3992 13.5791L11.3241 13.7645ZM11.0296 13.6664C11.1524 13.6997 11.2494 13.7322 11.3219 13.7636L11.4013 13.58C11.3167 13.5434 11.2098 13.508 11.0819 13.4733L11.0296 13.6664ZM10.7852 13.5903C10.8464 13.613 10.9281 13.6383 11.0291 13.6662L11.0824 13.4735C10.9837 13.4462 10.9082 13.4226 10.8547 13.4028L10.7852 13.5903ZM10.6111 13.48C10.6591 13.5254 10.7163 13.5613 10.781 13.5887L10.8589 13.4045C10.8131 13.3851 10.7768 13.3615 10.7484 13.3346L10.6111 13.48ZM10.5256 13.264C10.5256 13.3443 10.5517 13.4174 10.607 13.476L10.7524 13.3387C10.7355 13.3208 10.7256 13.2983 10.7256 13.264H10.5256ZM10.6593 13.0077C10.5734 13.0699 10.5256 13.1577 10.5256 13.264H10.7256C10.7256 13.2257 10.7394 13.1967 10.7766 13.1697L10.6593 13.0077ZM10.9665 12.9218C10.849 12.9218 10.7433 12.9469 10.6593 13.0077L10.7766 13.1697C10.8159 13.1413 10.8759 13.1218 10.9665 13.1218V12.9218ZM11.2984 13.028C11.2096 12.9535 11.0952 12.9218 10.9665 12.9218V13.1218C11.063 13.1218 11.127 13.1453 11.1699 13.1812L11.2984 13.028ZM11.4455 13.3175C11.4373 13.2 11.3878 13.1006 11.2972 13.027L11.1711 13.1822C11.2165 13.2191 11.2414 13.2663 11.2459 13.3315L11.4455 13.3175ZM11.6357 13.2245H11.3457V13.4245H11.6357V13.2245ZM11.381 13.0003C11.4758 13.0781 11.5285 13.1844 11.5358 13.3295L11.7355 13.3195C11.7258 13.1247 11.6511 12.9633 11.508 12.8457L11.381 13.0003ZM10.9761 12.8764C11.1523 12.8764 11.2841 12.9207 11.381 13.0003L11.508 12.8457C11.3669 12.7299 11.1865 12.6764 10.9761 12.6764V12.8764ZM10.683 12.9343C10.7657 12.8966 10.8627 12.8764 10.9761 12.8764V12.6764C10.8388 12.6764 10.7127 12.7009 10.6 12.7524L10.683 12.9343ZM10.4966 13.0767C10.5376 13.0194 10.5975 12.9715 10.6814 12.935L10.6016 12.7516C10.4901 12.8001 10.3992 12.8691 10.3339 12.9605L10.4966 13.0767ZM10.4356 13.264C10.4356 13.1961 10.4553 13.1345 10.4966 13.0767L10.3339 12.9605C10.269 13.0513 10.2356 13.1534 10.2356 13.264H10.4356ZM10.499 13.4747C10.4596 13.4264 10.4356 13.3592 10.4356 13.264H10.2356C10.2356 13.3939 10.269 13.5093 10.3442 13.6013L10.499 13.4747ZM10.6728 13.6028C10.6055 13.5728 10.5471 13.5295 10.4969 13.4721L10.3464 13.6038C10.4152 13.6824 10.4969 13.7433 10.5911 13.7854L10.6728 13.6028ZM10.976 13.6994C10.8488 13.666 10.7472 13.6333 10.6699 13.6016L10.594 13.7866C10.6824 13.8229 10.7932 13.8582 10.9252 13.8928L10.976 13.6994ZM11.3151 13.8205C11.2354 13.7756 11.1199 13.7359 10.9752 13.6992L10.926 13.893C11.0659 13.9285 11.1608 13.9631 11.217 13.9948L11.3151 13.8205ZM11.468 14.0765C11.468 14.0231 11.456 13.9714 11.4281 13.9252C11.4003 13.8791 11.3602 13.8444 11.313 13.8193L11.2191 13.9959C11.2399 14.007 11.2508 14.0184 11.2569 14.0286C11.263 14.0388 11.268 14.0535 11.268 14.0765H11.468ZM11.3333 14.3407C11.4194 14.2746 11.468 14.1847 11.468 14.0765H11.268C11.268 14.117 11.2529 14.1503 11.2116 14.1819L11.3333 14.3407ZM11.0111 14.4346C11.1355 14.4346 11.2466 14.4071 11.3333 14.3407L11.2116 14.182C11.1708 14.2132 11.1077 14.2346 11.0111 14.2346V14.4346ZM10.6615 14.332C10.7575 14.4033 10.8768 14.4346 11.0111 14.4346V14.2346C10.9075 14.2346 10.8336 14.2107 10.7808 14.1715L10.6615 14.332ZM10.5006 14.048C10.5119 14.1639 10.5671 14.2598 10.6604 14.3312L10.7819 14.1723C10.7308 14.1332 10.7053 14.0868 10.6996 14.0285L10.5006 14.048ZM10.3006 14.1383H10.6001V13.9383H10.3006V14.1383ZM10.4828 14.2622C10.4331 14.1954 10.4056 14.1197 10.4004 14.0323L10.2007 14.0442C10.2082 14.1693 10.2487 14.2826 10.3223 14.3815L10.4828 14.2622ZM10.6945 14.4215C10.6015 14.3806 10.532 14.3267 10.482 14.2612L10.323 14.3825C10.3963 14.4785 10.4945 14.552 10.614 14.6046L10.6945 14.4215ZM12.5146 14.0733V13.0441H12.3146V14.0733H12.5146ZM12.5395 14.1842C12.5313 14.176 12.5146 14.1484 12.5146 14.0733H12.3146C12.3146 14.1681 12.3341 14.2616 12.3981 14.3257L12.5395 14.1842ZM12.6568 14.2059C12.5746 14.2059 12.5448 14.1892 12.5373 14.1821L12.4003 14.3278C12.465 14.3887 12.5605 14.4059 12.6568 14.4059V14.2059ZM12.8703 14.2059H12.6568V14.4059H12.8703V14.2059ZM12.9703 14.5513V14.3059H12.7703V14.5513H12.9703ZM12.609 14.6513H12.8703V14.4513H12.609V14.6513ZM12.178 14.5133C12.2843 14.6112 12.4341 14.6513 12.609 14.6513V14.4513C12.461 14.4513 12.3687 14.417 12.3135 14.3662L12.178 14.5133ZM12.0247 14.0733C12.0247 14.2561 12.0677 14.4117 12.178 14.5133L12.3135 14.3662C12.2623 14.3191 12.2247 14.2305 12.2247 14.0733H12.0247ZM12.0247 13.0441V14.0733H12.2247V13.0441H12.0247ZM11.8984 13.1441H12.1247V12.9441H11.8984V13.1441ZM11.7984 12.8051V13.0441H11.9984V12.8051H11.7984ZM12.1247 12.7051H11.8984V12.9051H12.1247V12.7051ZM12.0247 12.3654V12.8051H12.2247V12.3654H12.0247ZM12.4146 12.2654H12.1247V12.4654H12.4146V12.2654ZM12.5146 12.8051V12.3654H12.3146V12.8051H12.5146ZM12.8703 12.7051H12.4146V12.9051H12.8703V12.7051ZM12.9703 13.0441V12.8051H12.7703V13.0441H12.9703ZM12.4146 13.1441H12.8703V12.9441H12.4146V13.1441ZM2.57032 6.89905C2.57032 7.08365 2.72009 7.23342 2.90469 7.23342V7.03342C2.83055 7.03342 2.77032 6.97319 2.77032 6.89905H2.57032ZM2.90469 6.56467C2.72009 6.56467 2.57032 6.71444 2.57032 6.89905H2.77032C2.77032 6.8249 2.83055 6.76467 2.90469 6.76467V6.56467ZM8.78469 6.56467H2.90469V6.76467H8.78469V6.56467ZM9.11907 6.89905C9.11907 6.71445 8.9693 6.56467 8.78469 6.56467V6.76467C8.85884 6.76467 8.91907 6.8249 8.91907 6.89905H9.11907ZM8.78469 7.23342C8.9693 7.23342 9.11907 7.08365 9.11907 6.89905H8.91907C8.91907 6.9732 8.85884 7.03342 8.78469 7.03342V7.23342ZM2.90469 7.23342H8.78469V7.03342H2.90469V7.23342ZM4.05254 4.51011C4.05254 4.66878 3.99902 4.79615 3.89219 4.89942L4.0312 5.04322C4.17883 4.90051 4.25254 4.72041 4.25254 4.51011H4.05254ZM3.88765 4.11616C3.99699 4.21668 4.05254 4.34509 4.05254 4.51011H4.25254C4.25254 4.29345 4.17662 4.11015 4.02302 3.96893L3.88765 4.11616ZM3.38598 3.96124C3.62134 3.96124 3.78269 4.01808 3.88706 4.11561L4.02361 3.96948C3.86928 3.82527 3.65106 3.76124 3.38598 3.76124V3.96124ZM2.67032 3.96124H3.38598V3.76124H2.67032V3.96124ZM2.77032 6.07821V3.86124H2.57032V6.07821H2.77032ZM2.95977 5.97821H2.67032V6.17821H2.95977V5.97821ZM2.85977 5.15262V6.07821H3.05977V5.15262H2.85977ZM3.38598 5.05262H2.95977V5.25262H3.38598V5.05262ZM3.89222 4.8994C3.79311 4.99514 3.63122 5.05262 3.38598 5.05262V5.25262C3.65815 5.25262 3.88006 5.18923 4.03118 5.04324L3.89222 4.8994ZM3.38598 5.01407C3.55878 5.01407 3.70709 4.97697 3.8098 4.88282L3.67465 4.73539C3.62469 4.78119 3.5355 4.81407 3.38598 4.81407V5.01407ZM2.95977 5.01407H3.38598V4.81407H2.95977V5.01407ZM2.85977 4.0998V4.91407H3.05977V4.0998H2.85977ZM3.38598 3.9998H2.95977V4.1998H3.38598V3.9998ZM3.95673 4.51011C3.95673 4.35408 3.91134 4.2199 3.80475 4.12699C3.70079 4.03638 3.5552 3.9998 3.38598 3.9998V4.1998C3.5306 4.1998 3.62039 4.23161 3.67334 4.27776C3.72366 4.32163 3.75673 4.3926 3.75673 4.51011H3.95673ZM3.8098 4.88282C3.91173 4.78938 3.95673 4.66001 3.95673 4.51011H3.75673C3.75673 4.61891 3.72539 4.68888 3.67465 4.73539L3.8098 4.88282ZM4.89079 4.66374C4.93336 4.58038 4.99247 4.51732 5.0689 4.47216L4.96715 4.29997C4.85697 4.36508 4.77189 4.45681 4.71267 4.57278L4.89079 4.66374ZM4.70173 4.33517V4.61826H4.90173V4.33517H4.70173ZM4.51229 4.43517H4.80173V4.23517H4.51229V4.43517ZM4.61229 6.07821V4.33517H4.41229V6.07821H4.61229ZM4.80173 5.97821H4.51229V6.17821H4.80173V5.97821ZM4.70173 5.13036V6.07821H4.90173V5.13036H4.70173ZM5.28838 4.50235C5.10856 4.50235 4.95593 4.55151 4.84986 4.66658C4.74522 4.78011 4.70173 4.94087 4.70173 5.13036H4.90173C4.90173 4.96784 4.93935 4.8646 4.99693 4.80213C5.05308 4.7412 5.14377 4.70235 5.28838 4.70235V4.50235ZM5.36472 4.50235H5.28838V4.70235H5.36472V4.50235ZM5.26472 4.30337V4.60235H5.46472V4.30337H5.26472ZM5.06805 4.47265C5.14511 4.42813 5.24254 4.40337 5.36472 4.40337V4.20337C5.21548 4.20337 5.08178 4.23374 4.96799 4.29948L5.06805 4.47265ZM7.37914 5.32513C7.38582 5.26062 7.38921 5.19885 7.38921 5.1399H7.18922C7.18922 5.19121 7.18625 5.24607 7.1802 5.30455L7.37914 5.32513ZM5.88651 5.41484H7.27967V5.21484H5.88651V5.41484ZM6.12916 5.6452C6.04575 5.56846 5.99566 5.46 5.98632 5.30868L5.7867 5.321C5.79857 5.5132 5.86511 5.67404 5.99375 5.79238L6.12916 5.6452ZM6.45268 5.76192C6.32282 5.76192 6.21636 5.72211 6.12761 5.64381L5.99529 5.79378C6.12284 5.90632 6.2772 5.96192 6.45268 5.96192V5.76192ZM6.70747 5.69383C6.64518 5.73695 6.56245 5.76192 6.45268 5.76192V5.96192C6.59314 5.96192 6.71821 5.92965 6.82132 5.85826L6.70747 5.69383ZM6.84807 5.50782C6.82106 5.58546 6.7747 5.64677 6.70705 5.69412L6.82174 5.85797C6.92373 5.78657 6.99611 5.69097 7.03696 5.57352L6.84807 5.50782ZM7.25423 5.44067H6.94251V5.64067H7.25423V5.44067ZM7.03471 6.03069C7.19193 5.91159 7.29798 5.75632 7.35056 5.5675L7.15789 5.51384C7.11718 5.66006 7.03662 5.77833 6.91394 5.87128L7.03471 6.03069ZM6.45268 6.20684C6.67771 6.20684 6.87362 6.1503 7.03393 6.03128L6.91471 5.87069C6.79512 5.95948 6.64327 6.00684 6.45268 6.00684V6.20684ZM5.95822 6.0826C6.1061 6.16608 6.27175 6.20684 6.45268 6.20684V6.00684C6.30282 6.00684 6.1716 5.97339 6.05654 5.90843L5.95822 6.0826ZM5.61429 5.7286C5.69701 5.87985 5.81166 5.99851 5.95761 6.08225L6.05715 5.90878C5.9444 5.84409 5.85549 5.75281 5.78977 5.63264L5.61429 5.7286ZM5.4907 5.20351C5.4907 5.39778 5.5308 5.57356 5.61398 5.72803L5.79008 5.63321C5.72482 5.51202 5.6907 5.36973 5.6907 5.20351H5.4907ZM5.61054 4.68267C5.52954 4.83514 5.4907 5.00974 5.4907 5.20351H5.6907C5.6907 5.0368 5.72397 4.89545 5.78716 4.7765L5.61054 4.68267ZM5.95233 4.33052C5.8055 4.41237 5.69131 4.53062 5.61054 4.68267L5.78716 4.7765C5.85058 4.65712 5.93784 4.56757 6.0497 4.50522L5.95233 4.33052ZM6.45268 4.20655C6.26799 4.20655 6.10011 4.2471 5.95186 4.33079L6.05018 4.50495C6.16486 4.44021 6.2981 4.40655 6.45268 4.40655V4.20655ZM6.94093 4.32769C6.79678 4.246 6.63306 4.20655 6.45268 4.20655V4.40655C6.6031 4.40655 6.73201 4.43918 6.84232 4.50169L6.94093 4.32769ZM7.27249 4.66662C7.19557 4.5224 7.08441 4.409 6.94092 4.32769L6.84232 4.50169C6.9533 4.56458 7.03722 4.6505 7.09602 4.76074L7.27249 4.66662ZM7.38921 5.1399C7.38921 4.96568 7.35073 4.80647 7.27153 4.66487L7.09698 4.7625C7.15772 4.8711 7.18922 4.99604 7.18922 5.1399H7.38921ZM6.83214 4.84917C6.8693 4.90895 6.89023 4.98421 6.89023 5.07946H7.09023C7.09023 4.95419 7.06238 4.84073 7.002 4.74359L6.83214 4.84917ZM6.67378 4.70541C6.74086 4.73727 6.79285 4.78427 6.83152 4.84816L7.00262 4.7446C6.94375 4.64733 6.86215 4.57346 6.75959 4.52475L6.67378 4.70541ZM6.43996 4.65146C6.52741 4.65146 6.60378 4.66956 6.67105 4.70406L6.76231 4.5261C6.66419 4.47577 6.55607 4.45146 6.43996 4.45146V4.65146ZM6.13145 4.76582C6.21606 4.68984 6.31702 4.65146 6.43996 4.65146V4.45146C6.27027 4.45146 6.12101 4.50639 5.99782 4.61701L6.13145 4.76582ZM5.98929 5.0884C6.00238 4.94253 6.05238 4.8383 6.13221 4.76513L5.99706 4.6177C5.87332 4.73113 5.80669 4.88561 5.79009 5.07053L5.98929 5.0884ZM6.99023 4.97946H5.88969V5.17946H6.99023V4.97946ZM2.57031 8.16003C2.57031 8.34463 2.72008 8.49441 2.90469 8.49441V8.2944C2.83054 8.2944 2.77031 8.23418 2.77031 8.16003H2.57031ZM2.90469 7.82566C2.72008 7.82566 2.57031 7.97543 2.57031 8.16003H2.77031C2.77031 8.08588 2.83054 8.02566 2.90469 8.02566V7.82566ZM9.94531 7.82566H2.90469V8.02566H9.94531V7.82566ZM10.2797 8.16003C10.2797 7.97543 10.1299 7.82566 9.94531 7.82566V8.02566C10.0195 8.02566 10.0797 8.08588 10.0797 8.16003H10.2797ZM9.94531 8.49441C10.1299 8.49441 10.2797 8.34463 10.2797 8.16003H10.0797C10.0797 8.23418 10.0195 8.2944 9.94531 8.2944V8.49441ZM2.90469 8.49441H9.94531V8.2944H2.90469V8.49441ZM2.90469 9.55565C2.83054 9.55565 2.77031 9.49543 2.77031 9.42128H2.57031C2.57031 9.60588 2.72008 9.75566 2.90469 9.75566V9.55565ZM11.7638 9.55565H2.90469V9.75566H11.7638V9.55565ZM11.8981 9.42128C11.8981 9.49543 11.8379 9.55565 11.7638 9.55565V9.75566C11.9484 9.75566 12.0981 9.60588 12.0981 9.42128H11.8981ZM11.7638 9.28691C11.8379 9.28691 11.8981 9.34713 11.8981 9.42128H12.0981C12.0981 9.23668 11.9484 9.0869 11.7638 9.0869V9.28691ZM2.90469 9.28691H11.7638V9.0869H2.90469V9.28691ZM2.77031 9.42128C2.77031 9.34713 2.83054 9.28691 2.90469 9.28691V9.0869C2.72008 9.0869 2.57031 9.23668 2.57031 9.42128H2.77031ZM11.7638 10.3478H2.90469V10.5478H11.7638V10.3478ZM12.0981 10.6822C12.0981 10.4976 11.9484 10.3478 11.7638 10.3478V10.5478C11.8379 10.5478 11.8981 10.6081 11.8981 10.6822H12.0981ZM11.7638 11.0166C11.9484 11.0166 12.0981 10.8668 12.0981 10.6822H11.8981C11.8981 10.7564 11.8379 10.8166 11.7638 10.8166V11.0166ZM2.90469 11.0166H11.7638V10.8166H2.90469V11.0166ZM2.57031 10.6822C2.57031 10.8668 2.72008 11.0166 2.90469 11.0166V10.8166C2.83054 10.8166 2.77031 10.7564 2.77031 10.6822H2.57031ZM2.90469 10.3478C2.72008 10.3478 2.57031 10.4976 2.57031 10.6822H2.77031C2.77031 10.6081 2.83054 10.5478 2.90469 10.5478V10.3478ZM2.77867 11.8091H5.90442V11.6091H2.77867V11.8091ZM2.77031 11.9435C2.77031 11.8899 2.78056 11.8463 2.79283 11.8197C2.79574 11.8134 2.79845 11.8088 2.80063 11.8056C2.80285 11.8024 2.80413 11.8012 2.80403 11.8013C2.80374 11.8016 2.79495 11.8091 2.77867 11.8091V11.6091C2.68631 11.6091 2.63434 11.686 2.61129 11.7358C2.58433 11.7941 2.57031 11.8676 2.57031 11.9435H2.77031ZM2.77867 12.0778C2.79495 12.0778 2.80374 12.0854 2.80403 12.0857C2.80413 12.0857 2.80285 12.0846 2.80063 12.0813C2.79845 12.0781 2.79574 12.0735 2.79283 12.0672C2.78056 12.0407 2.77031 11.997 2.77031 11.9435H2.57031C2.57031 12.0193 2.58433 12.0928 2.61129 12.1511C2.63434 12.201 2.68631 12.2778 2.77867 12.2778V12.0778ZM5.90442 12.0778H2.77867V12.2778H5.90442V12.0778ZM5.91278 11.9435C5.91278 11.997 5.90253 12.0407 5.89026 12.0672C5.88735 12.0735 5.88465 12.0781 5.88246 12.0813C5.88024 12.0846 5.87896 12.0857 5.87907 12.0857C5.87936 12.0854 5.88814 12.0778 5.90442 12.0778V12.2778C5.99678 12.2778 6.04876 12.201 6.0718 12.1511C6.09876 12.0928 6.11278 12.0193 6.11278 11.9435H5.91278ZM5.90442 11.8091C5.88814 11.8091 5.87936 11.8016 5.87907 11.8013C5.87896 11.8012 5.88024 11.8024 5.88246 11.8056C5.88465 11.8088 5.88735 11.8134 5.89026 11.8197C5.90253 11.8463 5.91278 11.8899 5.91278 11.9435H6.11278C6.11278 11.8676 6.09876 11.7941 6.0718 11.7358C6.04876 11.686 5.99678 11.6091 5.90442 11.6091V11.8091ZM5.89343 12.845H5.89295V13.045H5.89343V12.845ZM6.11278 13.1782C6.11259 13.1013 6.09681 13.0268 6.06667 12.9678C6.0393 12.9143 5.98349 12.845 5.89343 12.845V13.045C5.86909 13.045 5.8728 13.028 5.88859 13.0589C5.90161 13.0843 5.91265 13.1265 5.91278 13.1787L6.11278 13.1782ZM5.89486 13.5138C5.98477 13.5129 6.04023 13.4433 6.06741 13.3895C6.09739 13.3302 6.11297 13.2554 6.11278 13.1782L5.91278 13.1787C5.91291 13.2309 5.90199 13.2734 5.88892 13.2993C5.87306 13.3307 5.86892 13.314 5.89296 13.3138L5.89486 13.5138ZM2.79095 13.5391L5.89472 13.5138L5.89309 13.3138L2.78932 13.3391L2.79095 13.5391ZM2.78966 13.5391H2.79013V13.3391H2.78966V13.5391ZM2.57031 13.2059C2.5705 13.2828 2.58627 13.3573 2.61641 13.4163C2.64379 13.4698 2.6996 13.5391 2.78966 13.5391V13.3391C2.81399 13.3391 2.81029 13.3562 2.7945 13.3253C2.78148 13.2998 2.77044 13.2576 2.77031 13.2054L2.57031 13.2059ZM2.78823 12.8703C2.69831 12.8712 2.64286 12.9408 2.61567 12.9946C2.5857 13.0539 2.57012 13.1287 2.57031 13.2059L2.77031 13.2054C2.77018 13.1532 2.7811 13.1107 2.79417 13.0848C2.81003 13.0535 2.81417 13.0701 2.79013 13.0703L2.78823 12.8703ZM5.89214 12.845L2.78836 12.8703L2.78999 13.0703L5.89377 13.045L5.89214 12.845Z" fill="currentColor" mask="url(#path-1-outside-1_2947_12976)"/>
|
8
|
+
</svg>
|