@clement_lores/admin-design-system 1.0.0
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/.babelrc.cjs +23 -0
- package/.eslintrc +50 -0
- package/.firebaserc +17 -0
- package/.prettierrc +6 -0
- package/.releaserc +36 -0
- package/.storybook/main.mjs +103 -0
- package/.storybook/manager.mjs +49 -0
- package/.storybook/preview-head.html +4 -0
- package/.storybook/preview.mjs +53 -0
- package/.storybook/theme-decorator.js +27 -0
- package/README.md +132 -0
- package/build/atoms/avatar/avatar.js +44 -0
- package/build/atoms/avatar/avatar.stories.js +19 -0
- package/build/atoms/avatar/index.js +1 -0
- package/build/atoms/badge/badge-props.doc.md +10 -0
- package/build/atoms/badge/badge.doc.md +90 -0
- package/build/atoms/badge/badge.js +86 -0
- package/build/atoms/badge/badge.stories.js +91 -0
- package/build/atoms/badge/index.js +1 -0
- package/build/atoms/box/box-props.doc.md +16 -0
- package/build/atoms/box/box.doc.md +75 -0
- package/build/atoms/box/box.js +97 -0
- package/build/atoms/box/box.stories.js +41 -0
- package/build/atoms/box/index.js +1 -0
- package/build/atoms/button/button-css.js +193 -0
- package/build/atoms/button/button-props.doc.md +4 -0
- package/build/atoms/button/button-props.js +1 -0
- package/build/atoms/button/button.doc.md +103 -0
- package/build/atoms/button/button.js +37 -0
- package/build/atoms/button/button.stories.js +111 -0
- package/build/atoms/button/index.js +3 -0
- package/build/atoms/check-box/check-box.js +177 -0
- package/build/atoms/check-box/check-box.stories.js +54 -0
- package/build/atoms/check-box/index.js +1 -0
- package/build/atoms/currency-input/currency-input.js +63 -0
- package/build/atoms/currency-input/currency-input.stories.js +103 -0
- package/build/atoms/currency-input/index.js +1 -0
- package/build/atoms/icon/icon.js +134 -0
- package/build/atoms/icon/icon.stories.js +69 -0
- package/build/atoms/icon/index.js +1 -0
- package/build/atoms/illustration/illustration.js +71 -0
- package/build/atoms/illustration/illustration.stories.js +55 -0
- package/build/atoms/illustration/index.js +1 -0
- package/build/atoms/illustrations/accept.js +48 -0
- package/build/atoms/illustrations/adminjs-logo.js +52 -0
- package/build/atoms/illustrations/astronaut.js +58 -0
- package/build/atoms/illustrations/bag.js +90 -0
- package/build/atoms/illustrations/beware.js +57 -0
- package/build/atoms/illustrations/box.js +95 -0
- package/build/atoms/illustrations/calendar.js +97 -0
- package/build/atoms/illustrations/cancel.js +48 -0
- package/build/atoms/illustrations/cards.js +65 -0
- package/build/atoms/illustrations/clip.js +107 -0
- package/build/atoms/illustrations/cloud.js +58 -0
- package/build/atoms/illustrations/cup.js +60 -0
- package/build/atoms/illustrations/details.js +84 -0
- package/build/atoms/illustrations/docs.js +77 -0
- package/build/atoms/illustrations/document-check.js +66 -0
- package/build/atoms/illustrations/document-search.js +69 -0
- package/build/atoms/illustrations/drawer.js +84 -0
- package/build/atoms/illustrations/file-search.js +37 -0
- package/build/atoms/illustrations/flag-in-cog.js +97 -0
- package/build/atoms/illustrations/folder.js +73 -0
- package/build/atoms/illustrations/folders.js +74 -0
- package/build/atoms/illustrations/github-logo.js +26 -0
- package/build/atoms/illustrations/identity-card.js +93 -0
- package/build/atoms/illustrations/index.js +35 -0
- package/build/atoms/illustrations/launch.js +75 -0
- package/build/atoms/illustrations/moon.js +135 -0
- package/build/atoms/illustrations/not-found.js +80 -0
- package/build/atoms/illustrations/notebook.js +132 -0
- package/build/atoms/illustrations/padlock.js +79 -0
- package/build/atoms/illustrations/photos.js +65 -0
- package/build/atoms/illustrations/planet.js +110 -0
- package/build/atoms/illustrations/plug.js +80 -0
- package/build/atoms/illustrations/props.type.js +1 -0
- package/build/atoms/illustrations/rocket-new.js +113 -0
- package/build/atoms/illustrations/rocket.js +343 -0
- package/build/atoms/illustrations/slack-logo.js +52 -0
- package/build/atoms/illustrations/tags.js +62 -0
- package/build/atoms/index.js +23 -0
- package/build/atoms/input/index.js +1 -0
- package/build/atoms/input/input.js +164 -0
- package/build/atoms/input/input.stories.js +109 -0
- package/build/atoms/label/index.js +1 -0
- package/build/atoms/label/label.js +144 -0
- package/build/atoms/label/label.stories.js +61 -0
- package/build/atoms/link/index.js +1 -0
- package/build/atoms/link/link.js +118 -0
- package/build/atoms/link/link.stories.js +52 -0
- package/build/atoms/loader/index.js +1 -0
- package/build/atoms/loader/loader.js +83 -0
- package/build/atoms/loader/loader.stories.js +7 -0
- package/build/atoms/overlay/index.js +1 -0
- package/build/atoms/overlay/overlay.js +19 -0
- package/build/atoms/overlay/overlay.stories.js +7 -0
- package/build/atoms/phone-input/index.js +1 -0
- package/build/atoms/phone-input/phone-input.js +69 -0
- package/build/atoms/phone-input/phone-input.stories.js +59 -0
- package/build/atoms/placeholder/index.js +1 -0
- package/build/atoms/placeholder/placeholder.js +110 -0
- package/build/atoms/placeholder/placeholder.stories.js +17 -0
- package/build/atoms/radio/index.js +1 -0
- package/build/atoms/radio/radio.js +146 -0
- package/build/atoms/radio/radio.stories.js +42 -0
- package/build/atoms/section/index.js +1 -0
- package/build/atoms/section/section.js +45 -0
- package/build/atoms/section/section.stories.js +24 -0
- package/build/atoms/table/index.js +6 -0
- package/build/atoms/table/table-body.js +15 -0
- package/build/atoms/table/table-caption.js +39 -0
- package/build/atoms/table/table-cell.js +38 -0
- package/build/atoms/table/table-head.js +33 -0
- package/build/atoms/table/table-row.js +24 -0
- package/build/atoms/table/table.js +114 -0
- package/build/atoms/table/table.stories.js +46 -0
- package/build/atoms/tabs/index.js +2 -0
- package/build/atoms/tabs/tab.js +29 -0
- package/build/atoms/tabs/tabs.js +118 -0
- package/build/atoms/tabs/tabs.stories.js +26 -0
- package/build/atoms/text/index.js +1 -0
- package/build/atoms/text/text.js +77 -0
- package/build/atoms/text-area/index.js +1 -0
- package/build/atoms/text-area/text-area.js +58 -0
- package/build/atoms/text-area/text-area.stories.js +26 -0
- package/build/atoms/tooltip/index.js +5 -0
- package/build/atoms/tooltip/tooltip-content.js +10 -0
- package/build/atoms/tooltip/tooltip-control.js +102 -0
- package/build/atoms/tooltip/tooltip-props.js +1 -0
- package/build/atoms/tooltip/tooltip-styled.js +129 -0
- package/build/atoms/tooltip/tooltip.doc.md +61 -0
- package/build/atoms/tooltip/tooltip.js +65 -0
- package/build/atoms/tooltip/tooltip.stories.js +47 -0
- package/build/atoms/typography/caption-shared.js +10 -0
- package/build/atoms/typography/caption.js +10 -0
- package/build/atoms/typography/card-title.js +14 -0
- package/build/atoms/typography/header.doc.md +38 -0
- package/build/atoms/typography/header.js +128 -0
- package/build/atoms/typography/index.js +5 -0
- package/build/atoms/typography/small-text.js +10 -0
- package/build/atoms/typography/title.js +10 -0
- package/build/atoms/typography/typography.stories.js +80 -0
- package/build/constants.js +2 -0
- package/build/global.js +53 -0
- package/build/hooks/use-window-size.js +28 -0
- package/build/index.doc.md +133 -0
- package/build/index.js +16 -0
- package/build/molecules/date-picker/date-picker.js +326 -0
- package/build/molecules/date-picker/date-picker.stories.js +49 -0
- package/build/molecules/date-picker/index.js +2 -0
- package/build/molecules/date-picker/useDatePicker.js +37 -0
- package/build/molecules/drawer/drawer-content.js +22 -0
- package/build/molecules/drawer/drawer-footer.js +21 -0
- package/build/molecules/drawer/drawer.js +120 -0
- package/build/molecules/drawer/drawer.stories.js +39 -0
- package/build/molecules/drawer/index.js +3 -0
- package/build/molecules/drop-down/drop-down-item-action.js +19 -0
- package/build/molecules/drop-down/drop-down-item.js +95 -0
- package/build/molecules/drop-down/drop-down-menu.js +45 -0
- package/build/molecules/drop-down/drop-down-trigger.js +11 -0
- package/build/molecules/drop-down/drop-down.doc.md +74 -0
- package/build/molecules/drop-down/drop-down.js +85 -0
- package/build/molecules/drop-down/drop-down.stories.js +66 -0
- package/build/molecules/drop-down/index.js +5 -0
- package/build/molecules/drop-zone/drop-zone-image.js +46 -0
- package/build/molecules/drop-zone/drop-zone-item.js +128 -0
- package/build/molecules/drop-zone/drop-zone.js +318 -0
- package/build/molecules/drop-zone/drop-zone.stories.js +111 -0
- package/build/molecules/drop-zone/index.js +2 -0
- package/build/molecules/form-group/form-group.js +184 -0
- package/build/molecules/form-group/form-group.stories.js +35 -0
- package/build/molecules/form-group/form-message.js +23 -0
- package/build/molecules/form-group/index.js +3 -0
- package/build/molecules/form-group/input-group.js +68 -0
- package/build/molecules/index.js +15 -0
- package/build/molecules/info-box/index.js +1 -0
- package/build/molecules/info-box/info-box.js +70 -0
- package/build/molecules/info-box/info-box.stories.js +17 -0
- package/build/molecules/message-box/index.js +1 -0
- package/build/molecules/message-box/message-box.js +173 -0
- package/build/molecules/message-box/message-box.stories.js +43 -0
- package/build/molecules/modal/index.js +4 -0
- package/build/molecules/modal/modal-inline.js +63 -0
- package/build/molecules/modal/modal-props.js +1 -0
- package/build/molecules/modal/modal-styled.js +52 -0
- package/build/molecules/modal/modal-wrapper.js +33 -0
- package/build/molecules/modal/modal.doc.md +138 -0
- package/build/molecules/modal/modal.js +17 -0
- package/build/molecules/modal/modal.stories.js +79 -0
- package/build/molecules/navigation-element/index.js +3 -0
- package/build/molecules/navigation-element/navigation-element-props.js +1 -0
- package/build/molecules/navigation-element/navigation-element-styled.js +66 -0
- package/build/molecules/navigation-element/navigation-element.doc.md +69 -0
- package/build/molecules/navigation-element/navigation-element.js +61 -0
- package/build/molecules/navigation-element/navigation-element.stories.js +53 -0
- package/build/molecules/pagination/index.js +1 -0
- package/build/molecules/pagination/pagination.js +141 -0
- package/build/molecules/pagination/pagination.stories.js +22 -0
- package/build/molecules/rich-text-editor/components/heading-select.js +29 -0
- package/build/molecules/rich-text-editor/components/image-button.js +45 -0
- package/build/molecules/rich-text-editor/components/menu-bar.js +32 -0
- package/build/molecules/rich-text-editor/components/menu-button.js +37 -0
- package/build/molecules/rich-text-editor/icons/align-center.js +12 -0
- package/build/molecules/rich-text-editor/icons/align-justify.js +12 -0
- package/build/molecules/rich-text-editor/icons/align-left.js +12 -0
- package/build/molecules/rich-text-editor/icons/align-right.js +12 -0
- package/build/molecules/rich-text-editor/icons/bold.js +12 -0
- package/build/molecules/rich-text-editor/icons/bullet-list.js +12 -0
- package/build/molecules/rich-text-editor/icons/clear.js +12 -0
- package/build/molecules/rich-text-editor/icons/code.js +18 -0
- package/build/molecules/rich-text-editor/icons/font-size.js +12 -0
- package/build/molecules/rich-text-editor/icons/image.js +18 -0
- package/build/molecules/rich-text-editor/icons/index.js +20 -0
- package/build/molecules/rich-text-editor/icons/italic.js +12 -0
- package/build/molecules/rich-text-editor/icons/link.js +15 -0
- package/build/molecules/rich-text-editor/icons/ordered-list.js +12 -0
- package/build/molecules/rich-text-editor/icons/pagebreak.js +12 -0
- package/build/molecules/rich-text-editor/icons/paragraph.js +12 -0
- package/build/molecules/rich-text-editor/icons/quote.js +12 -0
- package/build/molecules/rich-text-editor/icons/redo.js +12 -0
- package/build/molecules/rich-text-editor/icons/strikethrough.js +12 -0
- package/build/molecules/rich-text-editor/icons/undo.js +12 -0
- package/build/molecules/rich-text-editor/index.js +2 -0
- package/build/molecules/rich-text-editor/rich-text-editor-props.js +1 -0
- package/build/molecules/rich-text-editor/rich-text-editor.js +60 -0
- package/build/molecules/rich-text-editor/rich-text-editor.stories.js +85 -0
- package/build/molecules/rich-text-editor/rich-text-editor.styled.js +46 -0
- package/build/molecules/rich-text-editor/useTiptapCommands.js +15 -0
- package/build/molecules/select/index.js +2 -0
- package/build/molecules/select/select-async.js +43 -0
- package/build/molecules/select/select-theme.js +36 -0
- package/build/molecules/select/select.js +45 -0
- package/build/molecules/select/select.stories.js +80 -0
- package/build/molecules/stepper/index.js +2 -0
- package/build/molecules/stepper/step.js +141 -0
- package/build/molecules/stepper/stepper.js +115 -0
- package/build/molecules/stepper/stepper.stories.js +54 -0
- package/build/molecules/tinymce-editor/index.js +1 -0
- package/build/molecules/tinymce-editor/tinymce-editor.js +89 -0
- package/build/molecules/tinymce-editor/tinymce-editor.styled.js +15 -0
- package/build/molecules/value-group/index.js +2 -0
- package/build/molecules/value-group/value-group-props.js +1 -0
- package/build/molecules/value-group/value-group.doc.md +67 -0
- package/build/molecules/value-group/value-group.js +28 -0
- package/build/molecules/value-group/value-group.stories.js +41 -0
- package/build/organisms/button-group/button-group.doc.md +92 -0
- package/build/organisms/button-group/button-group.js +34 -0
- package/build/organisms/button-group/button-group.stories.js +103 -0
- package/build/organisms/button-group/button-group.styled.js +54 -0
- package/build/organisms/button-group/button-group.types.js +1 -0
- package/build/organisms/button-group/button-in-group.js +25 -0
- package/build/organisms/button-group/drop-down-item-with-buttons.js +45 -0
- package/build/organisms/button-group/index.js +6 -0
- package/build/organisms/button-group/single-button-in-group.js +39 -0
- package/build/organisms/current-user-nav/current-user-nav-props.js +1 -0
- package/build/organisms/current-user-nav/current-user-nav-styled.js +27 -0
- package/build/organisms/current-user-nav/current-user-nav.doc.md +72 -0
- package/build/organisms/current-user-nav/current-user-nav.js +68 -0
- package/build/organisms/current-user-nav/current-user-nav.stories.js +74 -0
- package/build/organisms/current-user-nav/index.js +3 -0
- package/build/organisms/index.js +4 -0
- package/build/organisms/made-with-love/index.js +1 -0
- package/build/organisms/made-with-love/made-with-love.js +43 -0
- package/build/organisms/made-with-love/made-with-love.stories.js +7 -0
- package/build/organisms/navigation/index.js +4 -0
- package/build/organisms/navigation/navigation-element-wrapper.js +14 -0
- package/build/organisms/navigation/navigation-props.js +1 -0
- package/build/organisms/navigation/navigation-styled.js +14 -0
- package/build/organisms/navigation/navigation.doc.md +126 -0
- package/build/organisms/navigation/navigation.js +34 -0
- package/build/organisms/navigation/navigation.stories.js +110 -0
- package/build/templates/blog.js +0 -0
- package/build/templates/blog.stories.js +52 -0
- package/build/theme.doc.md +111 -0
- package/build/theme.js +532 -0
- package/build/utils/assert.js +7 -0
- package/build/utils/color-props.js +1 -0
- package/build/utils/combine-styles.js +28 -0
- package/build/utils/content-styles.js +268 -0
- package/build/utils/css-class.js +35 -0
- package/build/utils/date-utils.js +50 -0
- package/build/utils/datepicker.styles.js +788 -0
- package/build/utils/default-theme.interface.js +1 -0
- package/build/utils/direction-props.js +1 -0
- package/build/utils/focus-shadow.style.js +6 -0
- package/build/utils/generate-id.js +8 -0
- package/build/utils/human-file-size.js +23 -0
- package/build/utils/index.js +13 -0
- package/build/utils/non-nullish-partial-record.type.js +1 -0
- package/build/utils/phone-input.styles.js +1168 -0
- package/build/utils/portal-utils.js +31 -0
- package/build/utils/reset.styles.js +94 -0
- package/build/utils/select-styles.js +47 -0
- package/build/utils/story-wrapper.js +22 -0
- package/build/utils/styled.js +6 -0
- package/build/utils/theme-get.js +51 -0
- package/commitlint.config.cjs +5 -0
- package/config/rollup.js +70 -0
- package/entry.js +11 -0
- package/firebase.json +17 -0
- package/package.json +171 -0
- package/src/atoms/avatar/avatar.stories.tsx +28 -0
- package/src/atoms/avatar/avatar.tsx +44 -0
- package/src/atoms/avatar/index.ts +1 -0
- package/src/atoms/badge/badge-props.doc.md +10 -0
- package/src/atoms/badge/badge.doc.md +90 -0
- package/src/atoms/badge/badge.stories.tsx +90 -0
- package/src/atoms/badge/badge.tsx +99 -0
- package/src/atoms/badge/index.ts +1 -0
- package/src/atoms/box/box-props.doc.md +16 -0
- package/src/atoms/box/box.doc.md +75 -0
- package/src/atoms/box/box.stories.tsx +47 -0
- package/src/atoms/box/box.tsx +131 -0
- package/src/atoms/box/index.ts +1 -0
- package/src/atoms/button/button-css.tsx +196 -0
- package/src/atoms/button/button-props.doc.md +4 -0
- package/src/atoms/button/button-props.ts +43 -0
- package/src/atoms/button/button.doc.md +103 -0
- package/src/atoms/button/button.stories.tsx +113 -0
- package/src/atoms/button/button.tsx +39 -0
- package/src/atoms/button/index.ts +3 -0
- package/src/atoms/check-box/check-box.stories.tsx +46 -0
- package/src/atoms/check-box/check-box.tsx +169 -0
- package/src/atoms/check-box/index.ts +1 -0
- package/src/atoms/currency-input/currency-input.stories.tsx +77 -0
- package/src/atoms/currency-input/currency-input.tsx +74 -0
- package/src/atoms/currency-input/index.ts +1 -0
- package/src/atoms/icon/icon.stories.tsx +46 -0
- package/src/atoms/icon/icon.tsx +155 -0
- package/src/atoms/icon/index.ts +1 -0
- package/src/atoms/illustration/illustration.stories.tsx +39 -0
- package/src/atoms/illustration/illustration.tsx +84 -0
- package/src/atoms/illustration/index.ts +1 -0
- package/src/atoms/illustrations/accept.tsx +17 -0
- package/src/atoms/illustrations/adminjs-logo.tsx +37 -0
- package/src/atoms/illustrations/astronaut.tsx +22 -0
- package/src/atoms/illustrations/bag.tsx +25 -0
- package/src/atoms/illustrations/beware.tsx +18 -0
- package/src/atoms/illustrations/box.tsx +25 -0
- package/src/atoms/illustrations/calendar.tsx +24 -0
- package/src/atoms/illustrations/cancel.tsx +17 -0
- package/src/atoms/illustrations/cards.tsx +20 -0
- package/src/atoms/illustrations/clip.tsx +28 -0
- package/src/atoms/illustrations/cloud.tsx +22 -0
- package/src/atoms/illustrations/cup.tsx +20 -0
- package/src/atoms/illustrations/details.tsx +24 -0
- package/src/atoms/illustrations/docs.tsx +25 -0
- package/src/atoms/illustrations/document-check.tsx +22 -0
- package/src/atoms/illustrations/document-search.tsx +22 -0
- package/src/atoms/illustrations/drawer.tsx +26 -0
- package/src/atoms/illustrations/file-search.tsx +18 -0
- package/src/atoms/illustrations/flag-in-cog.tsx +26 -0
- package/src/atoms/illustrations/folder.tsx +24 -0
- package/src/atoms/illustrations/folders.tsx +22 -0
- package/src/atoms/illustrations/github-logo.tsx +15 -0
- package/src/atoms/illustrations/identity-card.tsx +28 -0
- package/src/atoms/illustrations/index.ts +35 -0
- package/src/atoms/illustrations/launch.tsx +24 -0
- package/src/atoms/illustrations/moon.tsx +42 -0
- package/src/atoms/illustrations/not-found.tsx +24 -0
- package/src/atoms/illustrations/notebook.tsx +32 -0
- package/src/atoms/illustrations/padlock.tsx +24 -0
- package/src/atoms/illustrations/photos.tsx +19 -0
- package/src/atoms/illustrations/planet.tsx +28 -0
- package/src/atoms/illustrations/plug.tsx +23 -0
- package/src/atoms/illustrations/props.type.ts +7 -0
- package/src/atoms/illustrations/rocket-new.tsx +30 -0
- package/src/atoms/illustrations/rocket.tsx +90 -0
- package/src/atoms/illustrations/slack-logo.tsx +29 -0
- package/src/atoms/illustrations/tags.tsx +20 -0
- package/src/atoms/index.ts +23 -0
- package/src/atoms/input/index.ts +1 -0
- package/src/atoms/input/input.stories.tsx +77 -0
- package/src/atoms/input/input.tsx +146 -0
- package/src/atoms/label/index.ts +1 -0
- package/src/atoms/label/label.stories.tsx +42 -0
- package/src/atoms/label/label.tsx +163 -0
- package/src/atoms/link/index.ts +1 -0
- package/src/atoms/link/link.stories.tsx +45 -0
- package/src/atoms/link/link.tsx +128 -0
- package/src/atoms/loader/index.ts +1 -0
- package/src/atoms/loader/loader.stories.tsx +12 -0
- package/src/atoms/loader/loader.tsx +91 -0
- package/src/atoms/overlay/index.ts +1 -0
- package/src/atoms/overlay/overlay.stories.tsx +12 -0
- package/src/atoms/overlay/overlay.tsx +24 -0
- package/src/atoms/phone-input/index.ts +1 -0
- package/src/atoms/phone-input/phone-input.stories.tsx +47 -0
- package/src/atoms/phone-input/phone-input.tsx +79 -0
- package/src/atoms/placeholder/index.ts +1 -0
- package/src/atoms/placeholder/placeholder.stories.tsx +25 -0
- package/src/atoms/placeholder/placeholder.tsx +105 -0
- package/src/atoms/radio/index.ts +1 -0
- package/src/atoms/radio/radio.stories.tsx +35 -0
- package/src/atoms/radio/radio.tsx +142 -0
- package/src/atoms/section/index.ts +1 -0
- package/src/atoms/section/section.stories.tsx +35 -0
- package/src/atoms/section/section.tsx +47 -0
- package/src/atoms/table/index.ts +6 -0
- package/src/atoms/table/table-body.tsx +19 -0
- package/src/atoms/table/table-caption.tsx +43 -0
- package/src/atoms/table/table-cell.tsx +35 -0
- package/src/atoms/table/table-head.tsx +31 -0
- package/src/atoms/table/table-row.tsx +26 -0
- package/src/atoms/table/table.stories.tsx +76 -0
- package/src/atoms/table/table.tsx +110 -0
- package/src/atoms/tabs/index.ts +2 -0
- package/src/atoms/tabs/tab.tsx +38 -0
- package/src/atoms/tabs/tabs.stories.tsx +30 -0
- package/src/atoms/tabs/tabs.tsx +165 -0
- package/src/atoms/text/index.ts +1 -0
- package/src/atoms/text/text.tsx +98 -0
- package/src/atoms/text-area/index.ts +1 -0
- package/src/atoms/text-area/text-area.stories.tsx +24 -0
- package/src/atoms/text-area/text-area.tsx +63 -0
- package/src/atoms/tooltip/index.ts +5 -0
- package/src/atoms/tooltip/tooltip-content.tsx +13 -0
- package/src/atoms/tooltip/tooltip-control.tsx +118 -0
- package/src/atoms/tooltip/tooltip-props.ts +30 -0
- package/src/atoms/tooltip/tooltip-styled.tsx +138 -0
- package/src/atoms/tooltip/tooltip.doc.md +61 -0
- package/src/atoms/tooltip/tooltip.stories.tsx +53 -0
- package/src/atoms/tooltip/tooltip.tsx +77 -0
- package/src/atoms/typography/caption-shared.ts +13 -0
- package/src/atoms/typography/caption.ts +15 -0
- package/src/atoms/typography/card-title.ts +19 -0
- package/src/atoms/typography/header.doc.md +38 -0
- package/src/atoms/typography/header.tsx +128 -0
- package/src/atoms/typography/index.ts +5 -0
- package/src/atoms/typography/small-text.ts +15 -0
- package/src/atoms/typography/title.ts +15 -0
- package/src/atoms/typography/typography.stories.tsx +259 -0
- package/src/constants.ts +2 -0
- package/src/global.ts +53 -0
- package/src/hooks/use-window-size.ts +36 -0
- package/src/index.doc.md +133 -0
- package/src/index.ts +20 -0
- package/src/molecules/date-picker/date-picker.stories.tsx +48 -0
- package/src/molecules/date-picker/date-picker.tsx +329 -0
- package/src/molecules/date-picker/index.ts +2 -0
- package/src/molecules/date-picker/useDatePicker.ts +45 -0
- package/src/molecules/drawer/drawer-content.tsx +18 -0
- package/src/molecules/drawer/drawer-footer.tsx +19 -0
- package/src/molecules/drawer/drawer.stories.tsx +55 -0
- package/src/molecules/drawer/drawer.tsx +127 -0
- package/src/molecules/drawer/index.ts +3 -0
- package/src/molecules/drop-down/drop-down-item-action.tsx +20 -0
- package/src/molecules/drop-down/drop-down-item.tsx +95 -0
- package/src/molecules/drop-down/drop-down-menu.tsx +45 -0
- package/src/molecules/drop-down/drop-down-trigger.tsx +12 -0
- package/src/molecules/drop-down/drop-down.doc.md +74 -0
- package/src/molecules/drop-down/drop-down.stories.tsx +82 -0
- package/src/molecules/drop-down/drop-down.tsx +99 -0
- package/src/molecules/drop-down/index.ts +5 -0
- package/src/molecules/drop-zone/drop-zone-image.tsx +15 -0
- package/src/molecules/drop-zone/drop-zone-item.tsx +126 -0
- package/src/molecules/drop-zone/drop-zone.stories.tsx +94 -0
- package/src/molecules/drop-zone/drop-zone.tsx +374 -0
- package/src/molecules/drop-zone/index.ts +2 -0
- package/src/molecules/form-group/form-group.stories.tsx +62 -0
- package/src/molecules/form-group/form-group.tsx +170 -0
- package/src/molecules/form-group/form-message.tsx +20 -0
- package/src/molecules/form-group/index.ts +3 -0
- package/src/molecules/form-group/input-group.tsx +59 -0
- package/src/molecules/index.ts +15 -0
- package/src/molecules/info-box/index.ts +1 -0
- package/src/molecules/info-box/info-box.stories.tsx +23 -0
- package/src/molecules/info-box/info-box.tsx +78 -0
- package/src/molecules/message-box/index.ts +1 -0
- package/src/molecules/message-box/message-box.stories.tsx +35 -0
- package/src/molecules/message-box/message-box.tsx +185 -0
- package/src/molecules/modal/index.ts +4 -0
- package/src/molecules/modal/modal-inline.tsx +53 -0
- package/src/molecules/modal/modal-props.ts +43 -0
- package/src/molecules/modal/modal-styled.tsx +60 -0
- package/src/molecules/modal/modal-wrapper.tsx +37 -0
- package/src/molecules/modal/modal.doc.md +138 -0
- package/src/molecules/modal/modal.stories.tsx +67 -0
- package/src/molecules/modal/modal.tsx +24 -0
- package/src/molecules/navigation-element/index.ts +3 -0
- package/src/molecules/navigation-element/navigation-element-props.ts +43 -0
- package/src/molecules/navigation-element/navigation-element-styled.ts +57 -0
- package/src/molecules/navigation-element/navigation-element.doc.md +69 -0
- package/src/molecules/navigation-element/navigation-element.stories.tsx +42 -0
- package/src/molecules/navigation-element/navigation-element.tsx +65 -0
- package/src/molecules/pagination/index.ts +1 -0
- package/src/molecules/pagination/pagination.stories.tsx +25 -0
- package/src/molecules/pagination/pagination.tsx +182 -0
- package/src/molecules/rich-text-editor/components/heading-select.tsx +42 -0
- package/src/molecules/rich-text-editor/components/image-button.tsx +49 -0
- package/src/molecules/rich-text-editor/components/menu-bar.tsx +31 -0
- package/src/molecules/rich-text-editor/components/menu-button.tsx +44 -0
- package/src/molecules/rich-text-editor/icons/align-center.tsx +17 -0
- package/src/molecules/rich-text-editor/icons/align-justify.tsx +17 -0
- package/src/molecules/rich-text-editor/icons/align-left.tsx +17 -0
- package/src/molecules/rich-text-editor/icons/align-right.tsx +17 -0
- package/src/molecules/rich-text-editor/icons/bold.tsx +17 -0
- package/src/molecules/rich-text-editor/icons/bullet-list.tsx +17 -0
- package/src/molecules/rich-text-editor/icons/clear.tsx +17 -0
- package/src/molecules/rich-text-editor/icons/code.tsx +16 -0
- package/src/molecules/rich-text-editor/icons/font-size.tsx +14 -0
- package/src/molecules/rich-text-editor/icons/image.tsx +22 -0
- package/src/molecules/rich-text-editor/icons/index.ts +20 -0
- package/src/molecules/rich-text-editor/icons/italic.tsx +14 -0
- package/src/molecules/rich-text-editor/icons/link.tsx +21 -0
- package/src/molecules/rich-text-editor/icons/ordered-list.tsx +17 -0
- package/src/molecules/rich-text-editor/icons/pagebreak.tsx +17 -0
- package/src/molecules/rich-text-editor/icons/paragraph.tsx +14 -0
- package/src/molecules/rich-text-editor/icons/quote.tsx +17 -0
- package/src/molecules/rich-text-editor/icons/redo.tsx +17 -0
- package/src/molecules/rich-text-editor/icons/strikethrough.tsx +17 -0
- package/src/molecules/rich-text-editor/icons/undo.tsx +17 -0
- package/src/molecules/rich-text-editor/index.ts +2 -0
- package/src/molecules/rich-text-editor/rich-text-editor-props.ts +1 -0
- package/src/molecules/rich-text-editor/rich-text-editor.stories.tsx +88 -0
- package/src/molecules/rich-text-editor/rich-text-editor.styled.tsx +52 -0
- package/src/molecules/rich-text-editor/rich-text-editor.tsx +81 -0
- package/src/molecules/rich-text-editor/useTiptapCommands.ts +50 -0
- package/src/molecules/select/index.ts +2 -0
- package/src/molecules/select/select-async.tsx +51 -0
- package/src/molecules/select/select-theme.ts +41 -0
- package/src/molecules/select/select.stories.tsx +77 -0
- package/src/molecules/select/select.tsx +51 -0
- package/src/molecules/stepper/index.ts +2 -0
- package/src/molecules/stepper/step.tsx +162 -0
- package/src/molecules/stepper/stepper.stories.tsx +76 -0
- package/src/molecules/stepper/stepper.tsx +118 -0
- package/src/molecules/tinymce-editor/index.ts +1 -0
- package/src/molecules/tinymce-editor/tinymce-editor.styled.tsx +22 -0
- package/src/molecules/tinymce-editor/tinymce-editor.tsx +110 -0
- package/src/molecules/value-group/index.ts +2 -0
- package/src/molecules/value-group/value-group-props.ts +16 -0
- package/src/molecules/value-group/value-group.doc.md +67 -0
- package/src/molecules/value-group/value-group.stories.tsx +48 -0
- package/src/molecules/value-group/value-group.tsx +32 -0
- package/src/organisms/button-group/button-group.doc.md +92 -0
- package/src/organisms/button-group/button-group.stories.tsx +112 -0
- package/src/organisms/button-group/button-group.styled.tsx +61 -0
- package/src/organisms/button-group/button-group.tsx +41 -0
- package/src/organisms/button-group/button-group.types.ts +61 -0
- package/src/organisms/button-group/button-in-group.tsx +38 -0
- package/src/organisms/button-group/drop-down-item-with-buttons.tsx +56 -0
- package/src/organisms/button-group/index.ts +6 -0
- package/src/organisms/button-group/single-button-in-group.tsx +42 -0
- package/src/organisms/current-user-nav/current-user-nav-props.ts +39 -0
- package/src/organisms/current-user-nav/current-user-nav-styled.ts +31 -0
- package/src/organisms/current-user-nav/current-user-nav.doc.md +72 -0
- package/src/organisms/current-user-nav/current-user-nav.stories.tsx +53 -0
- package/src/organisms/current-user-nav/current-user-nav.tsx +72 -0
- package/src/organisms/current-user-nav/index.ts +3 -0
- package/src/organisms/index.ts +4 -0
- package/src/organisms/made-with-love/index.ts +1 -0
- package/src/organisms/made-with-love/made-with-love.stories.tsx +12 -0
- package/src/organisms/made-with-love/made-with-love.tsx +50 -0
- package/src/organisms/navigation/index.ts +4 -0
- package/src/organisms/navigation/navigation-element-wrapper.tsx +27 -0
- package/src/organisms/navigation/navigation-props.ts +26 -0
- package/src/organisms/navigation/navigation-styled.tsx +17 -0
- package/src/organisms/navigation/navigation.doc.md +126 -0
- package/src/organisms/navigation/navigation.stories.tsx +124 -0
- package/src/organisms/navigation/navigation.tsx +34 -0
- package/src/templates/blog.stories.tsx +69 -0
- package/src/templates/blog.tsx +0 -0
- package/src/theme.doc.md +111 -0
- package/src/theme.ts +554 -0
- package/src/utils/assert.ts +8 -0
- package/src/utils/color-props.ts +7 -0
- package/src/utils/combine-styles.ts +35 -0
- package/src/utils/content-styles.ts +268 -0
- package/src/utils/css-class.ts +37 -0
- package/src/utils/date-utils.ts +60 -0
- package/src/utils/datepicker.styles.ts +790 -0
- package/src/utils/default-theme.interface.ts +30 -0
- package/src/utils/direction-props.ts +1 -0
- package/src/utils/focus-shadow.style.ts +8 -0
- package/src/utils/generate-id.ts +10 -0
- package/src/utils/human-file-size.ts +30 -0
- package/src/utils/index.ts +14 -0
- package/src/utils/non-nullish-partial-record.type.ts +13 -0
- package/src/utils/phone-input.styles.ts +1170 -0
- package/src/utils/portal-utils.tsx +45 -0
- package/src/utils/reset.styles.ts +98 -0
- package/src/utils/select-styles.ts +52 -0
- package/src/utils/story-wrapper.tsx +23 -0
- package/src/utils/styled.ts +7 -0
- package/src/utils/theme-get.ts +57 -0
- package/tsconfig.json +36 -0
- package/types/src/atoms/avatar/avatar.d.ts +10 -0
- package/types/src/atoms/avatar/avatar.stories.d.ts +6 -0
- package/types/src/atoms/avatar/index.d.ts +1 -0
- package/types/src/atoms/badge/badge.d.ts +51 -0
- package/types/src/atoms/badge/badge.stories.d.ts +6 -0
- package/types/src/atoms/badge/index.d.ts +1 -0
- package/types/src/atoms/box/box.d.ts +47 -0
- package/types/src/atoms/box/box.stories.d.ts +7 -0
- package/types/src/atoms/box/index.d.ts +1 -0
- package/types/src/atoms/button/button-css.d.ts +18 -0
- package/types/src/atoms/button/button-props.d.ts +38 -0
- package/types/src/atoms/button/button.d.ts +25 -0
- package/types/src/atoms/button/button.stories.d.ts +6 -0
- package/types/src/atoms/button/index.d.ts +3 -0
- package/types/src/atoms/check-box/check-box.d.ts +39 -0
- package/types/src/atoms/check-box/check-box.stories.d.ts +6 -0
- package/types/src/atoms/check-box/index.d.ts +1 -0
- package/types/src/atoms/currency-input/currency-input.d.ts +74 -0
- package/types/src/atoms/currency-input/currency-input.stories.d.ts +6 -0
- package/types/src/atoms/currency-input/index.d.ts +1 -0
- package/types/src/atoms/icon/icon.d.ts +93 -0
- package/types/src/atoms/icon/icon.stories.d.ts +6 -0
- package/types/src/atoms/icon/index.d.ts +1 -0
- package/types/src/atoms/illustration/illustration.d.ts +52 -0
- package/types/src/atoms/illustration/illustration.stories.d.ts +6 -0
- package/types/src/atoms/illustration/index.d.ts +1 -0
- package/types/src/atoms/illustrations/accept.d.ts +4 -0
- package/types/src/atoms/illustrations/adminjs-logo.d.ts +4 -0
- package/types/src/atoms/illustrations/astronaut.d.ts +4 -0
- package/types/src/atoms/illustrations/bag.d.ts +4 -0
- package/types/src/atoms/illustrations/beware.d.ts +4 -0
- package/types/src/atoms/illustrations/box.d.ts +4 -0
- package/types/src/atoms/illustrations/calendar.d.ts +4 -0
- package/types/src/atoms/illustrations/cancel.d.ts +4 -0
- package/types/src/atoms/illustrations/cards.d.ts +4 -0
- package/types/src/atoms/illustrations/clip.d.ts +4 -0
- package/types/src/atoms/illustrations/cloud.d.ts +4 -0
- package/types/src/atoms/illustrations/cup.d.ts +4 -0
- package/types/src/atoms/illustrations/details.d.ts +4 -0
- package/types/src/atoms/illustrations/docs.d.ts +4 -0
- package/types/src/atoms/illustrations/document-check.d.ts +4 -0
- package/types/src/atoms/illustrations/document-search.d.ts +4 -0
- package/types/src/atoms/illustrations/drawer.d.ts +4 -0
- package/types/src/atoms/illustrations/file-search.d.ts +4 -0
- package/types/src/atoms/illustrations/flag-in-cog.d.ts +4 -0
- package/types/src/atoms/illustrations/folder.d.ts +4 -0
- package/types/src/atoms/illustrations/folders.d.ts +4 -0
- package/types/src/atoms/illustrations/github-logo.d.ts +4 -0
- package/types/src/atoms/illustrations/identity-card.d.ts +4 -0
- package/types/src/atoms/illustrations/index.d.ts +35 -0
- package/types/src/atoms/illustrations/launch.d.ts +4 -0
- package/types/src/atoms/illustrations/moon.d.ts +4 -0
- package/types/src/atoms/illustrations/not-found.d.ts +4 -0
- package/types/src/atoms/illustrations/notebook.d.ts +4 -0
- package/types/src/atoms/illustrations/padlock.d.ts +4 -0
- package/types/src/atoms/illustrations/photos.d.ts +4 -0
- package/types/src/atoms/illustrations/planet.d.ts +4 -0
- package/types/src/atoms/illustrations/plug.d.ts +4 -0
- package/types/src/atoms/illustrations/props.type.d.ts +6 -0
- package/types/src/atoms/illustrations/rocket-new.d.ts +4 -0
- package/types/src/atoms/illustrations/rocket.d.ts +4 -0
- package/types/src/atoms/illustrations/slack-logo.d.ts +4 -0
- package/types/src/atoms/illustrations/tags.d.ts +4 -0
- package/types/src/atoms/index.d.ts +23 -0
- package/types/src/atoms/input/index.d.ts +1 -0
- package/types/src/atoms/input/input.d.ts +63 -0
- package/types/src/atoms/input/input.stories.d.ts +6 -0
- package/types/src/atoms/label/index.d.ts +1 -0
- package/types/src/atoms/label/label.d.ts +79 -0
- package/types/src/atoms/label/label.stories.d.ts +5 -0
- package/types/src/atoms/link/index.d.ts +1 -0
- package/types/src/atoms/link/link.d.ts +74 -0
- package/types/src/atoms/link/link.stories.d.ts +5 -0
- package/types/src/atoms/loader/index.d.ts +1 -0
- package/types/src/atoms/loader/loader.d.ts +27 -0
- package/types/src/atoms/loader/loader.stories.d.ts +5 -0
- package/types/src/atoms/overlay/index.d.ts +1 -0
- package/types/src/atoms/overlay/overlay.d.ts +3 -0
- package/types/src/atoms/overlay/overlay.stories.d.ts +5 -0
- package/types/src/atoms/phone-input/index.d.ts +1 -0
- package/types/src/atoms/phone-input/phone-input.d.ts +47 -0
- package/types/src/atoms/phone-input/phone-input.stories.d.ts +6 -0
- package/types/src/atoms/placeholder/index.d.ts +1 -0
- package/types/src/atoms/placeholder/placeholder.d.ts +52 -0
- package/types/src/atoms/placeholder/placeholder.stories.d.ts +6 -0
- package/types/src/atoms/radio/index.d.ts +1 -0
- package/types/src/atoms/radio/radio.d.ts +40 -0
- package/types/src/atoms/radio/radio.stories.d.ts +5 -0
- package/types/src/atoms/section/index.d.ts +1 -0
- package/types/src/atoms/section/section.d.ts +31 -0
- package/types/src/atoms/section/section.stories.d.ts +5 -0
- package/types/src/atoms/table/index.d.ts +6 -0
- package/types/src/atoms/table/table-body.d.ts +6 -0
- package/types/src/atoms/table/table-caption.d.ts +6 -0
- package/types/src/atoms/table/table-cell.d.ts +9 -0
- package/types/src/atoms/table/table-head.d.ts +6 -0
- package/types/src/atoms/table/table-row.d.ts +6 -0
- package/types/src/atoms/table/table.d.ts +90 -0
- package/types/src/atoms/table/table.stories.d.ts +7 -0
- package/types/src/atoms/tabs/index.d.ts +2 -0
- package/types/src/atoms/tabs/tab.d.ts +17 -0
- package/types/src/atoms/tabs/tabs.d.ts +49 -0
- package/types/src/atoms/tabs/tabs.stories.d.ts +5 -0
- package/types/src/atoms/text/index.d.ts +1 -0
- package/types/src/atoms/text/text.d.ts +62 -0
- package/types/src/atoms/text-area/index.d.ts +1 -0
- package/types/src/atoms/text-area/text-area.d.ts +46 -0
- package/types/src/atoms/text-area/text-area.stories.d.ts +5 -0
- package/types/src/atoms/tooltip/index.d.ts +5 -0
- package/types/src/atoms/tooltip/tooltip-content.d.ts +16 -0
- package/types/src/atoms/tooltip/tooltip-control.d.ts +9 -0
- package/types/src/atoms/tooltip/tooltip-props.d.ts +25 -0
- package/types/src/atoms/tooltip/tooltip-styled.d.ts +3 -0
- package/types/src/atoms/tooltip/tooltip.d.ts +12 -0
- package/types/src/atoms/tooltip/tooltip.stories.d.ts +5 -0
- package/types/src/atoms/typography/caption-shared.d.ts +3 -0
- package/types/src/atoms/typography/caption.d.ts +3 -0
- package/types/src/atoms/typography/card-title.d.ts +3 -0
- package/types/src/atoms/typography/header.d.ts +29 -0
- package/types/src/atoms/typography/index.d.ts +5 -0
- package/types/src/atoms/typography/small-text.d.ts +3 -0
- package/types/src/atoms/typography/title.d.ts +3 -0
- package/types/src/atoms/typography/typography.stories.d.ts +9 -0
- package/types/src/constants.d.ts +1 -0
- package/types/src/global.d.ts +1 -0
- package/types/src/hooks/use-window-size.d.ts +6 -0
- package/types/src/index.d.ts +16 -0
- package/types/src/molecules/date-picker/date-picker.d.ts +78 -0
- package/types/src/molecules/date-picker/date-picker.stories.d.ts +5 -0
- package/types/src/molecules/date-picker/index.d.ts +2 -0
- package/types/src/molecules/date-picker/useDatePicker.d.ts +14 -0
- package/types/src/molecules/drawer/drawer-content.d.ts +7 -0
- package/types/src/molecules/drawer/drawer-footer.d.ts +7 -0
- package/types/src/molecules/drawer/drawer.d.ts +88 -0
- package/types/src/molecules/drawer/drawer.stories.d.ts +5 -0
- package/types/src/molecules/drawer/index.d.ts +3 -0
- package/types/src/molecules/drop-down/drop-down-item-action.d.ts +12 -0
- package/types/src/molecules/drop-down/drop-down-item.d.ts +32 -0
- package/types/src/molecules/drop-down/drop-down-menu.d.ts +31 -0
- package/types/src/molecules/drop-down/drop-down-trigger.d.ts +6 -0
- package/types/src/molecules/drop-down/drop-down.d.ts +30 -0
- package/types/src/molecules/drop-down/drop-down.stories.d.ts +10 -0
- package/types/src/molecules/drop-down/index.d.ts +5 -0
- package/types/src/molecules/drop-zone/drop-zone-image.d.ts +3 -0
- package/types/src/molecules/drop-zone/drop-zone-item.d.ts +55 -0
- package/types/src/molecules/drop-zone/drop-zone.d.ts +148 -0
- package/types/src/molecules/drop-zone/drop-zone.stories.d.ts +8 -0
- package/types/src/molecules/drop-zone/index.d.ts +2 -0
- package/types/src/molecules/form-group/form-group.d.ts +119 -0
- package/types/src/molecules/form-group/form-group.stories.d.ts +6 -0
- package/types/src/molecules/form-group/form-message.d.ts +11 -0
- package/types/src/molecules/form-group/index.d.ts +3 -0
- package/types/src/molecules/form-group/input-group.d.ts +6 -0
- package/types/src/molecules/index.d.ts +15 -0
- package/types/src/molecules/info-box/index.d.ts +1 -0
- package/types/src/molecules/info-box/info-box.d.ts +53 -0
- package/types/src/molecules/info-box/info-box.stories.d.ts +5 -0
- package/types/src/molecules/message-box/index.d.ts +1 -0
- package/types/src/molecules/message-box/message-box.d.ts +94 -0
- package/types/src/molecules/message-box/message-box.stories.d.ts +7 -0
- package/types/src/molecules/modal/index.d.ts +4 -0
- package/types/src/molecules/modal/modal-inline.d.ts +14 -0
- package/types/src/molecules/modal/modal-props.d.ts +38 -0
- package/types/src/molecules/modal/modal-styled.d.ts +12 -0
- package/types/src/molecules/modal/modal-wrapper.d.ts +4 -0
- package/types/src/molecules/modal/modal.d.ts +12 -0
- package/types/src/molecules/modal/modal.stories.d.ts +5 -0
- package/types/src/molecules/navigation-element/index.d.ts +3 -0
- package/types/src/molecules/navigation-element/navigation-element-props.d.ts +38 -0
- package/types/src/molecules/navigation-element/navigation-element-styled.d.ts +3 -0
- package/types/src/molecules/navigation-element/navigation-element.d.ts +14 -0
- package/types/src/molecules/navigation-element/navigation-element.stories.d.ts +5 -0
- package/types/src/molecules/pagination/index.d.ts +1 -0
- package/types/src/molecules/pagination/pagination.d.ts +64 -0
- package/types/src/molecules/pagination/pagination.stories.d.ts +5 -0
- package/types/src/molecules/rich-text-editor/components/heading-select.d.ts +7 -0
- package/types/src/molecules/rich-text-editor/components/image-button.d.ts +7 -0
- package/types/src/molecules/rich-text-editor/components/menu-bar.d.ts +7 -0
- package/types/src/molecules/rich-text-editor/components/menu-button.d.ts +12 -0
- package/types/src/molecules/rich-text-editor/icons/align-center.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/align-justify.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/align-left.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/align-right.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/bold.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/bullet-list.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/clear.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/code.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/font-size.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/image.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/index.d.ts +19 -0
- package/types/src/molecules/rich-text-editor/icons/italic.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/link.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/ordered-list.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/pagebreak.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/paragraph.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/quote.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/redo.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/strikethrough.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/undo.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/index.d.ts +2 -0
- package/types/src/molecules/rich-text-editor/rich-text-editor-props.d.ts +1 -0
- package/types/src/molecules/rich-text-editor/rich-text-editor.d.ts +15 -0
- package/types/src/molecules/rich-text-editor/rich-text-editor.stories.d.ts +5 -0
- package/types/src/molecules/rich-text-editor/rich-text-editor.styled.d.ts +22 -0
- package/types/src/molecules/rich-text-editor/useTiptapCommands.d.ts +12 -0
- package/types/src/molecules/select/index.d.ts +2 -0
- package/types/src/molecules/select/select-async.d.ts +9 -0
- package/types/src/molecules/select/select-theme.d.ts +7 -0
- package/types/src/molecules/select/select.d.ts +9 -0
- package/types/src/molecules/select/select.stories.d.ts +7 -0
- package/types/src/molecules/stepper/index.d.ts +2 -0
- package/types/src/molecules/stepper/step.d.ts +86 -0
- package/types/src/molecules/stepper/stepper.d.ts +112 -0
- package/types/src/molecules/stepper/stepper.stories.d.ts +6 -0
- package/types/src/molecules/tinymce-editor/index.d.ts +1 -0
- package/types/src/molecules/tinymce-editor/tinymce-editor.d.ts +14 -0
- package/types/src/molecules/tinymce-editor/tinymce-editor.styled.d.ts +21 -0
- package/types/src/molecules/value-group/index.d.ts +2 -0
- package/types/src/molecules/value-group/value-group-props.d.ts +15 -0
- package/types/src/molecules/value-group/value-group.d.ts +14 -0
- package/types/src/molecules/value-group/value-group.stories.d.ts +7 -0
- package/types/src/organisms/button-group/button-group.d.ts +13 -0
- package/types/src/organisms/button-group/button-group.stories.d.ts +7 -0
- package/types/src/organisms/button-group/button-group.styled.d.ts +33 -0
- package/types/src/organisms/button-group/button-group.types.d.ts +59 -0
- package/types/src/organisms/button-group/button-in-group.d.ts +4 -0
- package/types/src/organisms/button-group/drop-down-item-with-buttons.d.ts +4 -0
- package/types/src/organisms/button-group/index.d.ts +6 -0
- package/types/src/organisms/button-group/single-button-in-group.d.ts +4 -0
- package/types/src/organisms/current-user-nav/current-user-nav-props.d.ts +37 -0
- package/types/src/organisms/current-user-nav/current-user-nav-styled.d.ts +12 -0
- package/types/src/organisms/current-user-nav/current-user-nav.d.ts +14 -0
- package/types/src/organisms/current-user-nav/current-user-nav.stories.d.ts +7 -0
- package/types/src/organisms/current-user-nav/index.d.ts +3 -0
- package/types/src/organisms/index.d.ts +4 -0
- package/types/src/organisms/made-with-love/index.d.ts +1 -0
- package/types/src/organisms/made-with-love/made-with-love.d.ts +3 -0
- package/types/src/organisms/made-with-love/made-with-love.stories.d.ts +5 -0
- package/types/src/organisms/navigation/index.d.ts +4 -0
- package/types/src/organisms/navigation/navigation-element-wrapper.d.ts +4 -0
- package/types/src/organisms/navigation/navigation-props.d.ts +21 -0
- package/types/src/organisms/navigation/navigation-styled.d.ts +12 -0
- package/types/src/organisms/navigation/navigation.d.ts +14 -0
- package/types/src/organisms/navigation/navigation.stories.d.ts +8 -0
- package/types/src/templates/blog.d.ts +1 -0
- package/types/src/templates/blog.stories.d.ts +4 -0
- package/types/src/theme.d.ts +503 -0
- package/types/src/utils/assert.d.ts +2 -0
- package/types/src/utils/color-props.d.ts +5 -0
- package/types/src/utils/combine-styles.d.ts +23 -0
- package/types/src/utils/content-styles.d.ts +21 -0
- package/types/src/utils/css-class.d.ts +21 -0
- package/types/src/utils/date-utils.d.ts +34 -0
- package/types/src/utils/datepicker.styles.d.ts +3 -0
- package/types/src/utils/default-theme.interface.d.ts +17 -0
- package/types/src/utils/direction-props.d.ts +1 -0
- package/types/src/utils/focus-shadow.style.d.ts +3 -0
- package/types/src/utils/generate-id.d.ts +2 -0
- package/types/src/utils/human-file-size.d.ts +12 -0
- package/types/src/utils/index.d.ts +13 -0
- package/types/src/utils/non-nullish-partial-record.type.d.ts +16 -0
- package/types/src/utils/phone-input.styles.d.ts +3 -0
- package/types/src/utils/portal-utils.d.ts +7 -0
- package/types/src/utils/reset.styles.d.ts +37 -0
- package/types/src/utils/select-styles.d.ts +5 -0
- package/types/src/utils/story-wrapper.d.ts +9 -0
- package/types/src/utils/styled.d.ts +4 -0
- package/types/src/utils/theme-get.d.ts +32 -0
- package/vendor-types/csstype/index.d.ts +0 -0
- package/vendor-types/jw-paginate/index.d.ts +10 -0
- package/vendor-types/styled-components/index.d.ts +7 -0
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export const Cancel = ({
|
|
3
|
+
width = 152,
|
|
4
|
+
height = 152
|
|
5
|
+
}) => /*#__PURE__*/React.createElement("svg", {
|
|
6
|
+
width: width,
|
|
7
|
+
height: height,
|
|
8
|
+
viewBox: "0 0 152 152",
|
|
9
|
+
fill: "none",
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
11
|
+
}, /*#__PURE__*/React.createElement("circle", {
|
|
12
|
+
cx: "76",
|
|
13
|
+
cy: "76",
|
|
14
|
+
r: "76",
|
|
15
|
+
fill: "white"
|
|
16
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
17
|
+
cx: "106.552",
|
|
18
|
+
cy: "54.4483",
|
|
19
|
+
r: "17.4483",
|
|
20
|
+
fill: "#3040D6"
|
|
21
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
22
|
+
cx: "75.4483",
|
|
23
|
+
cy: "76.4483",
|
|
24
|
+
r: "39.4483",
|
|
25
|
+
fill: "white",
|
|
26
|
+
stroke: "#3B3552",
|
|
27
|
+
strokeWidth: "1.5"
|
|
28
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
29
|
+
fillRule: "evenodd",
|
|
30
|
+
clipRule: "evenodd",
|
|
31
|
+
d: "M94.4566 55.3942C93.9524 52.5876 97.1355 50.5582 99.2233 52.5005C101.189 54.3291 103.108 56.331 104.211 58.0518C107.613 63.3609 109.586 69.674 109.586 76.448C109.586 95.3018 94.3022 110.586 75.4484 110.586C72.1858 110.586 67.9237 109.349 64.2042 107.979C61.4858 106.978 61.9438 103.199 64.7455 102.463C66.6153 101.971 68.4144 101.415 69.7243 100.832C84.7188 94.1566 95.1725 79.1265 95.1725 61.6549C95.1725 59.9403 94.8626 57.6539 94.4566 55.3942Z",
|
|
32
|
+
fill: "#3040D6",
|
|
33
|
+
fillOpacity: "0.05"
|
|
34
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
35
|
+
fillRule: "evenodd",
|
|
36
|
+
clipRule: "evenodd",
|
|
37
|
+
d: "M89.9817 61.9151C91.845 63.7784 91.845 66.7995 89.9817 68.6628L82.1964 76.4481L89.9817 84.2344C91.845 86.0978 91.845 89.1188 89.9817 90.9821C88.1183 92.8455 85.0973 92.8455 83.2339 90.9821L75.4486 83.1958L67.6623 90.9821C65.799 92.8455 62.7779 92.8455 60.9146 90.9821C59.0513 89.1188 59.0513 86.0978 60.9146 84.2344L68.7009 76.4481L60.9146 68.6628C59.0513 66.7995 59.0513 63.7784 60.9146 61.9151C62.7779 60.0517 65.799 60.0517 67.6623 61.9151L75.4486 69.7004L83.2339 61.9151C85.0973 60.0517 88.1183 60.0517 89.9817 61.9151Z",
|
|
38
|
+
fill: "white",
|
|
39
|
+
stroke: "#3B3552",
|
|
40
|
+
strokeWidth: "1.5"
|
|
41
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
42
|
+
d: "M91.3152 101.937L90.6786 102.333L91.0752 102.97L91.7118 102.573L91.3152 101.937ZM98.7326 95.4212L99.3126 95.8967L99.7881 95.3167L99.2081 94.8412L98.7326 95.4212ZM90.522 100.664L90.1254 100.027L89.4888 100.424L89.8854 101.06L90.522 100.664ZM97.5726 94.4702L98.0481 93.8902L97.4681 93.4147L96.9926 93.9947L97.5726 94.4702ZM104.115 85.5611L104.829 85.7912V85.7912L104.115 85.5611ZM105.566 76.2881H106.316V75.5381H105.566V76.2881ZM101.354 91.6799L100.972 92.3249L101.617 92.7077L101.999 92.0627L101.354 91.6799ZM100.065 90.9143L99.4196 90.5315L99.0368 91.1765L99.6817 91.5593L100.065 90.9143ZM102.688 85.1009L101.974 84.8708L102.688 85.1009ZM104.066 76.2881V75.5381H103.316V76.2881H104.066ZM91.7118 102.573C94.598 100.775 97.1659 98.5151 99.3126 95.8967L98.1526 94.9457C96.1093 97.438 93.6651 99.589 90.9186 101.3L91.7118 102.573ZM89.8854 101.06L90.6786 102.333L91.9517 101.54L91.1585 100.267L89.8854 101.06ZM96.9926 93.9947C95.0527 96.3609 92.7323 98.4029 90.1254 100.027L90.9186 101.3C93.6651 99.589 96.1093 97.438 98.1526 94.9457L96.9926 93.9947ZM99.2081 94.8412L98.0481 93.8902L97.0971 95.0502L98.2571 96.0012L99.2081 94.8412ZM104.829 85.7912C105.795 82.795 106.316 79.6009 106.316 76.2881H104.816C104.816 79.4428 104.32 82.4817 103.402 85.331L104.829 85.7912ZM101.999 92.0627C103.163 90.1018 104.117 88.0009 104.829 85.7912L103.402 85.331C102.724 87.4327 101.817 89.4313 100.709 91.2971L101.999 92.0627ZM99.6817 91.5593L100.972 92.3249L101.737 91.035L100.447 90.2694L99.6817 91.5593ZM101.974 84.8708C101.331 86.8646 100.471 88.7608 99.4196 90.5315L100.709 91.2971C101.817 89.4313 102.724 87.4327 103.402 85.331L101.974 84.8708ZM103.316 76.2881C103.316 79.2847 102.845 82.1684 101.974 84.8708L103.402 85.331C104.32 82.4817 104.816 79.4428 104.816 76.2881H103.316ZM105.566 75.5381H104.066V77.0381H105.566V75.5381Z",
|
|
43
|
+
fill: "#3B3552"
|
|
44
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
45
|
+
d: "M58.221 32.3018L58.9197 32.0292L58.6471 31.3305L57.9484 31.603L58.221 32.3018ZM41.4245 43.4932L40.8852 42.972L40.364 43.5113L40.9033 44.0325L41.4245 43.4932ZM58.7661 33.6992L59.0387 34.3979L59.7374 34.1253L59.4648 33.4266L58.7661 33.6992ZM42.5032 44.5356L41.982 45.0749L42.5213 45.5961L43.0425 45.0568L42.5032 44.5356ZM36.7713 49.1159L37.2035 48.5031L36.5906 48.0708L36.1584 48.6837L36.7713 49.1159ZM31.2998 59.3513L30.5998 59.082L30.3306 59.7821L31.0306 60.0513L31.2998 59.3513ZM37.9971 49.9805L38.61 50.4128L39.0422 49.7999L38.4293 49.3676L37.9971 49.9805ZM32.6998 59.8897L32.4306 60.5897L33.1306 60.8589L33.3999 60.1589L32.6998 59.8897ZM57.9484 31.603C51.4516 34.1374 45.6449 38.0467 40.8852 42.972L41.9638 44.0144C46.5759 39.2419 52.2014 35.455 58.4935 33.0005L57.9484 31.603ZM59.4648 33.4266L58.9197 32.0292L57.5222 32.5743L58.0674 33.9718L59.4648 33.4266ZM43.0425 45.0568C47.5068 40.4371 52.9511 36.7726 59.0387 34.3979L58.4935 33.0005C52.2014 35.455 46.5759 39.2419 41.9638 44.0144L43.0425 45.0568ZM40.9033 44.0325L41.982 45.0749L43.0243 43.9963L41.9457 42.9539L40.9033 44.0325ZM36.1584 48.6837C33.9021 51.8828 32.027 55.371 30.5998 59.082L31.9998 59.6205C33.3821 56.0264 35.1982 52.6476 37.3842 49.5482L36.1584 48.6837ZM38.4293 49.3676L37.2035 48.5031L36.339 49.7288L37.5648 50.5934L38.4293 49.3676ZM33.3999 60.1589C34.7371 56.6817 36.4944 53.4123 38.61 50.4128L37.3842 49.5482C35.1982 52.6476 33.3821 56.0264 31.9998 59.6205L33.3999 60.1589ZM31.0306 60.0513L32.4306 60.5897L32.9691 59.1897L31.569 58.6512L31.0306 60.0513Z",
|
|
46
|
+
fill: "#3B3552"
|
|
47
|
+
}));
|
|
48
|
+
export default Cancel;
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export const Cards = ({
|
|
3
|
+
width = 152,
|
|
4
|
+
height = 152
|
|
5
|
+
}) => /*#__PURE__*/React.createElement("svg", {
|
|
6
|
+
width: width,
|
|
7
|
+
height: height,
|
|
8
|
+
viewBox: "0 0 152 152",
|
|
9
|
+
fill: "none",
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
11
|
+
}, /*#__PURE__*/React.createElement("circle", {
|
|
12
|
+
cx: "76",
|
|
13
|
+
cy: "76",
|
|
14
|
+
r: "76",
|
|
15
|
+
fill: "white"
|
|
16
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17
|
+
d: "M24.3999 67.862C23.9353 66.1282 24.9642 64.3461 26.698 63.8816L102.981 43.4415C104.715 42.9769 106.497 44.0058 106.962 45.7396L121.071 98.3949C121.535 100.129 120.506 101.911 118.773 102.375L42.4892 122.815C40.7555 123.28 38.9734 122.251 38.5088 120.517L24.3999 67.862Z",
|
|
18
|
+
fill: "white",
|
|
19
|
+
stroke: "#3B3552",
|
|
20
|
+
strokeWidth: "1.5"
|
|
21
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22
|
+
fillRule: "evenodd",
|
|
23
|
+
clipRule: "evenodd",
|
|
24
|
+
d: "M28.2945 69.2522C28.0086 68.1852 28.6418 67.0886 29.7087 66.8027L98.4793 48.3756C99.5463 48.0898 100.643 48.7229 100.929 49.7899L113.882 98.1321C114.168 99.199 113.535 100.296 112.468 100.582L43.6972 119.009C42.6303 119.294 41.5336 118.661 41.2478 117.594L28.2945 69.2522Z",
|
|
25
|
+
fill: "#3040D6",
|
|
26
|
+
fillOpacity: "0.05"
|
|
27
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
28
|
+
x: "41.7759",
|
|
29
|
+
y: "41.75",
|
|
30
|
+
width: "85.4744",
|
|
31
|
+
height: "61.0128",
|
|
32
|
+
rx: "3.25",
|
|
33
|
+
fill: "white",
|
|
34
|
+
stroke: "#3B3552",
|
|
35
|
+
strokeWidth: "1.5"
|
|
36
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
37
|
+
d: "M36.7759 43V43.75H37.5259V43H36.7759ZM35.2759 43H34.5259V43.75H35.2759V43ZM60.3461 34.25H61.0961V33.5H60.3461V34.25ZM60.3461 35.75V36.5H61.0961V35.75H60.3461ZM66.3951 35.75H65.6451V36.5H66.3951V35.75ZM66.3951 34.25V33.5H65.6451V34.25H66.3951ZM74.4405 34.25H75.1905V33.5H74.4405V34.25ZM74.4405 35.75V36.5H75.1905V35.75H74.4405ZM37.5259 43C37.5259 39.4101 40.436 36.5 44.0259 36.5V35C39.6076 35 36.0259 38.5817 36.0259 43H37.5259ZM35.2759 43.75H36.7759V42.25H35.2759V43.75ZM44.0259 33.5C38.7792 33.5 34.5259 37.7533 34.5259 43H36.0259C36.0259 38.5817 39.6076 35 44.0259 35V33.5ZM44.0684 33.5H44.0259V35H44.0684V33.5ZM44.1108 33.5H44.0684V35H44.1108V33.5ZM44.1532 33.5H44.1108V35H44.1532V33.5ZM44.1955 33.5H44.1532V35H44.1955V33.5ZM44.2379 33.5H44.1955V35H44.2379V33.5ZM44.2801 33.5H44.2379V35H44.2801V33.5ZM44.3224 33.5H44.2801V35H44.3224V33.5ZM44.3646 33.5H44.3224V35H44.3646V33.5ZM44.4067 33.5H44.3646V35H44.4067V33.5ZM44.4488 33.5H44.4067V35H44.4488V33.5ZM44.4909 33.5H44.4488V35H44.4909V33.5ZM44.5329 33.5H44.4909V35H44.5329V33.5ZM44.5749 33.5H44.5329V35H44.5749V33.5ZM44.6168 33.5H44.5749V35H44.6168V33.5ZM44.6587 33.5H44.6168V35H44.6587V33.5ZM44.7006 33.5H44.6587V35H44.7006V33.5ZM44.7424 33.5H44.7006V35H44.7424V33.5ZM44.7842 33.5H44.7424V35H44.7842V33.5ZM44.8259 33.5H44.7842V35H44.8259V33.5ZM44.8676 33.5H44.8259V35H44.8676V33.5ZM44.9092 33.5H44.8676V35H44.9092V33.5ZM44.9508 33.5H44.9092V35H44.9508V33.5ZM44.9924 33.5H44.9508V35H44.9924V33.5ZM45.0339 33.5H44.9924V35H45.0339V33.5ZM45.0754 33.5H45.0339V35H45.0754V33.5ZM45.1169 33.5H45.0754V35H45.1169V33.5ZM45.1583 33.5H45.1169V35H45.1583V33.5ZM45.1996 33.5H45.1583V35H45.1996V33.5ZM45.2409 33.5H45.1996V35H45.2409V33.5ZM45.2822 33.5H45.2409V35H45.2822V33.5ZM45.3235 33.5H45.2822V35H45.3235V33.5ZM45.3646 33.5H45.3235V35H45.3646V33.5ZM45.4058 33.5H45.3646V35H45.4058V33.5ZM45.4469 33.5H45.4058V35H45.4469V33.5ZM45.488 33.5H45.4469V35H45.488V33.5ZM45.529 33.5H45.488V35H45.529V33.5ZM45.57 33.5H45.529V35H45.57V33.5ZM45.6109 33.5H45.57V35H45.6109V33.5ZM45.6518 33.5H45.6109V35H45.6518V33.5ZM45.6927 33.5H45.6518V35H45.6927V33.5ZM45.7335 33.5H45.6927V35H45.7335V33.5ZM45.7743 33.5H45.7335V35H45.7743V33.5ZM45.815 33.5H45.7743V35H45.815V33.5ZM45.8557 33.5H45.815V35H45.8557V33.5ZM45.8964 33.5H45.8557V35H45.8964V33.5ZM45.937 33.5H45.8964V35H45.937V33.5ZM45.9776 33.5H45.937V35H45.9776V33.5ZM46.0181 33.5H45.9776V35H46.0181V33.5ZM46.0586 33.5H46.0181V35H46.0586V33.5ZM46.099 33.5H46.0586V35H46.099V33.5ZM46.1394 33.5H46.099V35H46.1394V33.5ZM46.1798 33.5H46.1394V35H46.1798V33.5ZM46.2201 33.5H46.1798V35H46.2201V33.5ZM46.2604 33.5H46.2201V35H46.2604V33.5ZM46.3006 33.5H46.2604V35H46.3006V33.5ZM46.3408 33.5H46.3006V35H46.3408V33.5ZM46.381 33.5H46.3408V35H46.381V33.5ZM46.4211 33.5H46.381V35H46.4211V33.5ZM46.4612 33.5H46.4211V35H46.4612V33.5ZM46.5012 33.5H46.4612V35H46.5012V33.5ZM46.5412 33.5H46.5012V35H46.5412V33.5ZM46.5811 33.5H46.5412V35H46.5811V33.5ZM46.621 33.5H46.5811V35H46.621V33.5ZM46.6609 33.5H46.621V35H46.6609V33.5ZM46.7007 33.5H46.6609V35H46.7007V33.5ZM46.7405 33.5H46.7007V35H46.7405V33.5ZM46.7803 33.5H46.7405V35H46.7803V33.5ZM46.82 33.5H46.7803V35H46.82V33.5ZM46.8596 33.5H46.82V35H46.8596V33.5ZM46.8992 33.5H46.8596V35H46.8992V33.5ZM46.9388 33.5H46.8992V35H46.9388V33.5ZM46.9783 33.5H46.9388V35H46.9783V33.5ZM47.0178 33.5H46.9783V35H47.0178V33.5ZM47.0573 33.5H47.0178V35H47.0573V33.5ZM47.0967 33.5H47.0573V35H47.0967V33.5ZM47.1361 33.5H47.0967V35H47.1361V33.5ZM47.1754 33.5H47.1361V35H47.1754V33.5ZM47.2147 33.5H47.1754V35H47.2147V33.5ZM47.2539 33.5H47.2147V35H47.2539V33.5ZM47.2931 33.5H47.2539V35H47.2931V33.5ZM47.3323 33.5H47.2931V35H47.3323V33.5ZM47.3714 33.5H47.3323V35H47.3714V33.5ZM47.4105 33.5H47.3714V35H47.4105V33.5ZM47.4495 33.5H47.4105V35H47.4495V33.5ZM47.4885 33.5H47.4495V35H47.4885V33.5ZM47.5274 33.5H47.4885V35H47.5274V33.5ZM47.5663 33.5H47.5274V35H47.5663V33.5ZM47.6052 33.5H47.5663V35H47.6052V33.5ZM47.644 33.5H47.6052V35H47.644V33.5ZM47.6828 33.5H47.644V35H47.6828V33.5ZM47.7216 33.5H47.6828V35H47.7216V33.5ZM47.7603 33.5H47.7216V35H47.7603V33.5ZM47.7989 33.5H47.7603V35H47.7989V33.5ZM47.8376 33.5H47.7989V35H47.8376V33.5ZM47.8761 33.5H47.8376V35H47.8761V33.5ZM47.9147 33.5H47.8761V35H47.9147V33.5ZM47.9532 33.5H47.9147V35H47.9532V33.5ZM47.9916 33.5H47.9532V35H47.9916V33.5ZM48.03 33.5H47.9916V35H48.03V33.5ZM48.0684 33.5H48.03V35H48.0684V33.5ZM48.1067 33.5H48.0684V35H48.1067V33.5ZM48.145 33.5H48.1067V35H48.145V33.5ZM48.1833 33.5H48.145V35H48.1833V33.5ZM48.2215 33.5H48.1833V35H48.2215V33.5ZM48.2596 33.5H48.2215V35H48.2596V33.5ZM48.2978 33.5H48.2596V35H48.2978V33.5ZM48.3358 33.5H48.2978V35H48.3358V33.5ZM48.3739 33.5H48.3358V35H48.3739V33.5ZM48.4119 33.5H48.3739V35H48.4119V33.5ZM48.4498 33.5H48.4119V35H48.4498V33.5ZM48.4877 33.5H48.4498V35H48.4877V33.5ZM48.5256 33.5H48.4877V35H48.5256V33.5ZM48.5635 33.5H48.5256V35H48.5635V33.5ZM48.6012 33.5H48.5635V35H48.6012V33.5ZM48.639 33.5H48.6012V35H48.639V33.5ZM48.6767 33.5H48.639V35H48.6767V33.5ZM48.7144 33.5H48.6767V35H48.7144V33.5ZM48.752 33.5H48.7144V35H48.752V33.5ZM48.7896 33.5H48.752V35H48.7896V33.5ZM48.8271 33.5H48.7896V35H48.8271V33.5ZM48.8646 33.5H48.8271V35H48.8646V33.5ZM48.9021 33.5H48.8646V35H48.9021V33.5ZM48.9395 33.5H48.9021V35H48.9395V33.5ZM48.9769 33.5H48.9395V35H48.9769V33.5ZM49.0142 33.5H48.9769V35H49.0142V33.5ZM49.0515 33.5H49.0142V35H49.0515V33.5ZM49.0887 33.5H49.0515V35H49.0887V33.5ZM49.1259 33.5H49.0887V35H49.1259V33.5ZM49.1631 33.5H49.1259V35H49.1631V33.5ZM49.2002 33.5H49.1631V35H49.2002V33.5ZM49.2373 33.5H49.2002V35H49.2373V33.5ZM49.2744 33.5H49.2373V35H49.2744V33.5ZM49.3114 33.5H49.2744V35H49.3114V33.5ZM49.3483 33.5H49.3114V35H49.3483V33.5ZM49.3852 33.5H49.3483V35H49.3852V33.5ZM49.4221 33.5H49.3852V35H49.4221V33.5ZM49.459 33.5H49.4221V35H49.459V33.5ZM49.4957 33.5H49.459V35H49.4957V33.5ZM49.5325 33.5H49.4957V35H49.5325V33.5ZM49.5692 33.5H49.5325V35H49.5692V33.5ZM49.6059 33.5H49.5692V35H49.6059V33.5ZM49.6425 33.5H49.6059V35H49.6425V33.5ZM49.6791 33.5H49.6425V35H49.6791V33.5ZM49.7156 33.5H49.6791V35H49.7156V33.5ZM49.7521 33.5H49.7156V35H49.7521V33.5ZM49.7886 33.5H49.7521V35H49.7886V33.5ZM49.825 33.5H49.7886V35H49.825V33.5ZM49.8614 33.5H49.825V35H49.8614V33.5ZM49.8977 33.5H49.8614V35H49.8977V33.5ZM49.934 33.5H49.8977V35H49.934V33.5ZM49.9703 33.5H49.934V35H49.9703V33.5ZM50.0065 33.5H49.9703V35H50.0065V33.5ZM50.0427 33.5H50.0065V35H50.0427V33.5ZM50.0788 33.5H50.0427V35H50.0788V33.5ZM50.1149 33.5H50.0788V35H50.1149V33.5ZM50.1509 33.5H50.1149V35H50.1509V33.5ZM50.1869 33.5H50.1509V35H50.1869V33.5ZM50.2229 33.5H50.1869V35H50.2229V33.5ZM50.2588 33.5H50.2229V35H50.2588V33.5ZM50.2947 33.5H50.2588V35H50.2947V33.5ZM50.3305 33.5H50.2947V35H50.3305V33.5ZM50.3663 33.5H50.3305V35H50.3663V33.5ZM50.4021 33.5H50.3663V35H50.4021V33.5ZM50.4378 33.5H50.4021V35H50.4378V33.5ZM50.4735 33.5H50.4378V35H50.4735V33.5ZM50.5091 33.5H50.4735V35H50.5091V33.5ZM50.5447 33.5H50.5091V35H50.5447V33.5ZM50.5803 33.5H50.5447V35H50.5803V33.5ZM50.6158 33.5H50.5803V35H50.6158V33.5ZM50.6512 33.5H50.6158V35H50.6512V33.5ZM50.6867 33.5H50.6512V35H50.6867V33.5ZM50.722 33.5H50.6867V35H50.722V33.5ZM50.7574 33.5H50.722V35H50.7574V33.5ZM50.7927 33.5H50.7574V35H50.7927V33.5ZM50.8279 33.5H50.7927V35H50.8279V33.5ZM50.8631 33.5H50.8279V35H50.8631V33.5ZM50.8983 33.5H50.8631V35H50.8983V33.5ZM50.9335 33.5H50.8983V35H50.9335V33.5ZM50.9685 33.5H50.9335V35H50.9685V33.5ZM51.0036 33.5H50.9685V35H51.0036V33.5ZM51.0386 33.5H51.0036V35H51.0386V33.5ZM51.0736 33.5H51.0386V35H51.0736V33.5ZM51.1085 33.5H51.0736V35H51.1085V33.5ZM51.1434 33.5H51.1085V35H51.1434V33.5ZM51.1782 33.5H51.1434V35H51.1782V33.5ZM51.213 33.5H51.1782V35H51.213V33.5ZM51.2478 33.5H51.213V35H51.2478V33.5ZM51.2825 33.5H51.2478V35H51.2825V33.5ZM51.3172 33.5H51.2825V35H51.3172V33.5ZM51.3518 33.5H51.3172V35H51.3518V33.5ZM51.3864 33.5H51.3518V35H51.3864V33.5ZM51.421 33.5H51.3864V35H51.421V33.5ZM51.4555 33.5H51.421V35H51.4555V33.5ZM51.4899 33.5H51.4555V35H51.4899V33.5ZM51.5244 33.5H51.4899V35H51.5244V33.5ZM51.5588 33.5H51.5244V35H51.5588V33.5ZM51.5931 33.5H51.5588V35H51.5931V33.5ZM51.6274 33.5H51.5931V35H51.6274V33.5ZM51.6617 33.5H51.6274V35H51.6617V33.5ZM51.6959 33.5H51.6617V35H51.6959V33.5ZM51.7301 33.5H51.6959V35H51.7301V33.5ZM51.7642 33.5H51.7301V35H51.7642V33.5ZM51.7983 33.5H51.7642V35H51.7983V33.5ZM51.8324 33.5H51.7983V35H51.8324V33.5ZM51.8664 33.5H51.8324V35H51.8664V33.5ZM51.9003 33.5H51.8664V35H51.9003V33.5ZM51.9343 33.5H51.9003V35H51.9343V33.5ZM51.9682 33.5H51.9343V35H51.9682V33.5ZM52.002 33.5H51.9682V35H52.002V33.5ZM52.0358 33.5H52.002V35H52.0358V33.5ZM52.0696 33.5H52.0358V35H52.0696V33.5ZM52.1033 33.5H52.0696V35H52.1033V33.5ZM52.137 33.5H52.1033V35H52.137V33.5ZM52.1706 33.5H52.137V35H52.1706V33.5ZM52.2042 33.5H52.1706V35H52.2042V33.5ZM52.2378 33.5H52.2042V35H52.2378V33.5ZM52.2713 33.5H52.2378V35H52.2713V33.5ZM52.3048 33.5H52.2713V35H52.3048V33.5ZM52.3382 33.5H52.3048V35H52.3382V33.5ZM52.3716 33.5H52.3382V35H52.3716V33.5ZM52.4049 33.5H52.3716V35H52.4049V33.5ZM52.4382 33.5H52.4049V35H52.4382V33.5ZM52.4715 33.5H52.4382V35H52.4715V33.5ZM52.5047 33.5H52.4715V35H52.5047V33.5ZM52.5379 33.5H52.5047V35H52.5379V33.5ZM52.5711 33.5H52.5379V35H52.5711V33.5ZM52.6042 33.5H52.5711V35H52.6042V33.5ZM52.6372 33.5H52.6042V35H52.6372V33.5ZM52.6702 33.5H52.6372V35H52.6702V33.5ZM52.7032 33.5H52.6702V35H52.7032V33.5ZM52.7361 33.5H52.7032V35H52.7361V33.5ZM52.769 33.5H52.7361V35H52.769V33.5ZM52.8019 33.5H52.769V35H52.8019V33.5ZM52.8347 33.5H52.8019V35H52.8347V33.5ZM52.8675 33.5H52.8347V35H52.8675V33.5ZM52.9002 33.5H52.8675V35H52.9002V33.5ZM52.9329 33.5H52.9002V35H52.9329V33.5ZM52.9655 33.5H52.9329V35H52.9655V33.5ZM52.9981 33.5H52.9655V35H52.9981V33.5ZM53.0307 33.5H52.9981V35H53.0307V33.5ZM53.0632 33.5H53.0307V35H53.0632V33.5ZM53.0957 33.5H53.0632V35H53.0957V33.5ZM53.1281 33.5H53.0957V35H53.1281V33.5ZM53.1605 33.5H53.1281V35H53.1605V33.5ZM53.1929 33.5H53.1605V35H53.1929V33.5ZM53.2252 33.5H53.1929V35H53.2252V33.5ZM53.2574 33.5H53.2252V35H53.2574V33.5ZM53.2897 33.5H53.2574V35H53.2897V33.5ZM53.3218 33.5H53.2897V35H53.3218V33.5ZM53.354 33.5H53.3218V35H53.354V33.5ZM53.3861 33.5H53.354V35H53.3861V33.5ZM53.4182 33.5H53.3861V35H53.4182V33.5ZM53.4502 33.5H53.4182V35H53.4502V33.5ZM53.4822 33.5H53.4502V35H53.4822V33.5ZM53.5141 33.5H53.4822V35H53.5141V33.5ZM53.546 33.5H53.5141V35H53.546V33.5ZM53.5778 33.5H53.546V35H53.5778V33.5ZM53.6097 33.5H53.5778V35H53.6097V33.5ZM53.6414 33.5H53.6097V35H53.6414V33.5ZM53.6732 33.5H53.6414V35H53.6732V33.5ZM53.7049 33.5H53.6732V35H53.7049V33.5ZM53.7365 33.5H53.7049V35H53.7365V33.5ZM53.7681 33.5H53.7365V35H53.7681V33.5ZM53.7997 33.5H53.7681V35H53.7997V33.5ZM53.8312 33.5H53.7997V35H53.8312V33.5ZM53.8627 33.5H53.8312V35H53.8627V33.5ZM53.8941 33.5H53.8627V35H53.8941V33.5ZM53.9255 33.5H53.8941V35H53.9255V33.5ZM53.9569 33.5H53.9255V35H53.9569V33.5ZM53.9882 33.5H53.9569V35H53.9882V33.5ZM54.0195 33.5H53.9882V35H54.0195V33.5ZM54.0507 33.5H54.0195V35H54.0507V33.5ZM54.0819 33.5H54.0507V35H54.0819V33.5ZM54.113 33.5H54.0819V35H54.113V33.5ZM54.1441 33.5H54.113V35H54.1441V33.5ZM54.1752 33.5H54.1441V35H54.1752V33.5ZM54.2062 33.5H54.1752V35H54.2062V33.5ZM54.2372 33.5H54.2062V35H54.2372V33.5ZM54.2681 33.5H54.2372V35H54.2681V33.5ZM54.299 33.5H54.2681V35H54.299V33.5ZM54.3299 33.5H54.299V35H54.3299V33.5ZM54.3607 33.5H54.3299V35H54.3607V33.5ZM54.3915 33.5H54.3607V35H54.3915V33.5ZM54.4222 33.5H54.3915V35H54.4222V33.5ZM54.4529 33.5H54.4222V35H54.4529V33.5ZM54.4836 33.5H54.4529V35H54.4836V33.5ZM54.5142 33.5H54.4836V35H54.5142V33.5ZM54.5448 33.5H54.5142V35H54.5448V33.5ZM54.5753 33.5H54.5448V35H54.5753V33.5ZM54.6058 33.5H54.5753V35H54.6058V33.5ZM54.6362 33.5H54.6058V35H54.6362V33.5ZM54.6666 33.5H54.6362V35H54.6666V33.5ZM54.697 33.5H54.6666V35H54.697V33.5ZM54.7273 33.5H54.697V35H54.7273V33.5ZM54.7576 33.5H54.7273V35H54.7576V33.5ZM54.7878 33.5H54.7576V35H54.7878V33.5ZM54.818 33.5H54.7878V35H54.818V33.5ZM54.8482 33.5H54.818V35H54.8482V33.5ZM54.8783 33.5H54.8482V35H54.8783V33.5ZM54.9083 33.5H54.8783V35H54.9083V33.5ZM54.9384 33.5H54.9083V35H54.9384V33.5ZM54.9683 33.5H54.9384V35H54.9683V33.5ZM54.9983 33.5H54.9683V35H54.9983V33.5ZM55.0282 33.5H54.9983V35H55.0282V33.5ZM55.0581 33.5H55.0282V35H55.0581V33.5ZM55.0879 33.5H55.0581V35H55.0879V33.5ZM55.1177 33.5H55.0879V35H55.1177V33.5ZM55.1474 33.5H55.1177V35H55.1474V33.5ZM55.1771 33.5H55.1474V35H55.1771V33.5ZM55.2068 33.5H55.1771V35H55.2068V33.5ZM55.2364 33.5H55.2068V35H55.2364V33.5ZM55.2659 33.5H55.2364V35H55.2659V33.5ZM55.2955 33.5H55.2659V35H55.2955V33.5ZM55.325 33.5H55.2955V35H55.325V33.5ZM55.3544 33.5H55.325V35H55.3544V33.5ZM55.3838 33.5H55.3544V35H55.3838V33.5ZM55.4132 33.5H55.3838V35H55.4132V33.5ZM55.4425 33.5H55.4132V35H55.4425V33.5ZM55.4718 33.5H55.4425V35H55.4718V33.5ZM55.501 33.5H55.4718V35H55.501V33.5ZM55.5302 33.5H55.501V35H55.5302V33.5ZM55.5594 33.5H55.5302V35H55.5594V33.5ZM55.5885 33.5H55.5594V35H55.5885V33.5ZM55.6176 33.5H55.5885V35H55.6176V33.5ZM55.6466 33.5H55.6176V35H55.6466V33.5ZM55.6756 33.5H55.6466V35H55.6756V33.5ZM55.7045 33.5H55.6756V35H55.7045V33.5ZM55.7334 33.5H55.7045V35H55.7334V33.5ZM55.7623 33.5H55.7334V35H55.7623V33.5ZM55.7911 33.5H55.7623V35H55.7911V33.5ZM55.8199 33.5H55.7911V35H55.8199V33.5ZM55.8487 33.5H55.8199V35H55.8487V33.5ZM55.8774 33.5H55.8487V35H55.8774V33.5ZM55.906 33.5H55.8774V35H55.906V33.5ZM55.9346 33.5H55.906V35H55.9346V33.5ZM55.9632 33.5H55.9346V35H55.9632V33.5ZM55.9917 33.5H55.9632V35H55.9917V33.5ZM56.0202 33.5H55.9917V35H56.0202V33.5ZM56.0487 33.5H56.0202V35H56.0487V33.5ZM56.0771 33.5H56.0487V35H56.0771V33.5ZM56.1055 33.5H56.0771V35H56.1055V33.5ZM56.1338 33.5H56.1055V35H56.1338V33.5ZM56.1621 33.5H56.1338V35H56.1621V33.5ZM56.1903 33.5H56.1621V35H56.1903V33.5ZM56.2185 33.5H56.1903V35H56.2185V33.5ZM56.2467 33.5H56.2185V35H56.2467V33.5ZM56.2748 33.5H56.2467V35H56.2748V33.5ZM56.3029 33.5H56.2748V35H56.3029V33.5ZM56.3309 33.5H56.3029V35H56.3309V33.5ZM56.3589 33.5H56.3309V35H56.3589V33.5ZM56.3869 33.5H56.3589V35H56.3869V33.5ZM56.4148 33.5H56.3869V35H56.4148V33.5ZM56.4426 33.5H56.4148V35H56.4426V33.5ZM56.4705 33.5H56.4426V35H56.4705V33.5ZM56.4983 33.5H56.4705V35H56.4983V33.5ZM56.526 33.5H56.4983V35H56.526V33.5ZM56.5537 33.5H56.526V35H56.5537V33.5ZM56.5814 33.5H56.5537V35H56.5814V33.5ZM56.609 33.5H56.5814V35H56.609V33.5ZM56.6366 33.5H56.609V35H56.6366V33.5ZM56.6641 33.5H56.6366V35H56.6641V33.5ZM56.6916 33.5H56.6641V35H56.6916V33.5ZM56.7191 33.5H56.6916V35H56.7191V33.5ZM56.7465 33.5H56.7191V35H56.7465V33.5ZM56.7739 33.5H56.7465V35H56.7739V33.5ZM56.8012 33.5H56.7739V35H56.8012V33.5ZM56.8285 33.5H56.8012V35H56.8285V33.5ZM56.8557 33.5H56.8285V35H56.8557V33.5ZM56.8829 33.5H56.8557V35H56.8829V33.5ZM56.9101 33.5H56.8829V35H56.9101V33.5ZM56.9372 33.5H56.9101V35H56.9372V33.5ZM56.9643 33.5H56.9372V35H56.9643V33.5ZM56.9913 33.5H56.9643V35H56.9913V33.5ZM57.0183 33.5H56.9913V35H57.0183V33.5ZM57.0453 33.5H57.0183V35H57.0453V33.5ZM57.0722 33.5H57.0453V35H57.0722V33.5ZM57.0991 33.5H57.0722V35H57.0991V33.5ZM57.1259 33.5H57.0991V35H57.1259V33.5ZM57.1527 33.5H57.1259V35H57.1527V33.5ZM57.1795 33.5H57.1527V35H57.1795V33.5ZM57.2062 33.5H57.1795V35H57.2062V33.5ZM57.2328 33.5H57.2062V35H57.2328V33.5ZM57.2595 33.5H57.2328V35H57.2595V33.5ZM57.286 33.5H57.2595V35H57.286V33.5ZM57.3126 33.5H57.286V35H57.3126V33.5ZM57.3391 33.5H57.3126V35H57.3391V33.5ZM57.3655 33.5H57.3391V35H57.3655V33.5ZM57.392 33.5H57.3655V35H57.392V33.5ZM57.4183 33.5H57.392V35H57.4183V33.5ZM57.4447 33.5H57.4183V35H57.4447V33.5ZM57.471 33.5H57.4447V35H57.471V33.5ZM57.4972 33.5H57.471V35H57.4972V33.5ZM57.5234 33.5H57.4972V35H57.5234V33.5ZM57.5496 33.5H57.5234V35H57.5496V33.5ZM57.5757 33.5H57.5496V35H57.5757V33.5ZM57.6018 33.5H57.5757V35H57.6018V33.5ZM57.6278 33.5H57.6018V35H57.6278V33.5ZM57.6539 33.5H57.6278V35H57.6539V33.5ZM57.6798 33.5H57.6539V35H57.6798V33.5ZM57.7057 33.5H57.6798V35H57.7057V33.5ZM57.7316 33.5H57.7057V35H57.7316V33.5ZM57.7574 33.5H57.7316V35H57.7574V33.5ZM57.7832 33.5H57.7574V35H57.7832V33.5ZM57.809 33.5H57.7832V35H57.809V33.5ZM57.8347 33.5H57.809V35H57.8347V33.5ZM57.8604 33.5H57.8347V35H57.8604V33.5ZM57.886 33.5H57.8604V35H57.886V33.5ZM57.9116 33.5H57.886V35H57.9116V33.5ZM57.9371 33.5H57.9116V35H57.9371V33.5ZM57.9626 33.5H57.9371V35H57.9626V33.5ZM57.9881 33.5H57.9626V35H57.9881V33.5ZM58.0135 33.5H57.9881V35H58.0135V33.5ZM58.0389 33.5H58.0135V35H58.0389V33.5ZM58.0642 33.5H58.0389V35H58.0642V33.5ZM58.0895 33.5H58.0642V35H58.0895V33.5ZM58.1148 33.5H58.0895V35H58.1148V33.5ZM58.14 33.5H58.1148V35H58.14V33.5ZM58.1652 33.5H58.14V35H58.1652V33.5ZM58.1903 33.5H58.1652V35H58.1903V33.5ZM58.2154 33.5H58.1903V35H58.2154V33.5ZM58.2405 33.5H58.2154V35H58.2405V33.5ZM58.2655 33.5H58.2405V35H58.2655V33.5ZM58.2904 33.5H58.2655V35H58.2904V33.5ZM58.3153 33.5H58.2904V35H58.3153V33.5ZM58.3402 33.5H58.3153V35H58.3402V33.5ZM58.3651 33.5H58.3402V35H58.3651V33.5ZM58.3899 33.5H58.3651V35H58.3899V33.5ZM58.4146 33.5H58.3899V35H58.4146V33.5ZM58.4393 33.5H58.4146V35H58.4393V33.5ZM58.464 33.5H58.4393V35H58.464V33.5ZM58.4886 33.5H58.464V35H58.4886V33.5ZM58.5132 33.5H58.4886V35H58.5132V33.5ZM58.5378 33.5H58.5132V35H58.5378V33.5ZM58.5623 33.5H58.5378V35H58.5623V33.5ZM58.5868 33.5H58.5623V35H58.5868V33.5ZM58.6112 33.5H58.5868V35H58.6112V33.5ZM58.6356 33.5H58.6112V35H58.6356V33.5ZM58.6599 33.5H58.6356V35H58.6599V33.5ZM58.6842 33.5H58.6599V35H58.6842V33.5ZM58.7085 33.5H58.6842V35H58.7085V33.5ZM58.7327 33.5H58.7085V35H58.7327V33.5ZM58.7569 33.5H58.7327V35H58.7569V33.5ZM58.781 33.5H58.7569V35H58.781V33.5ZM58.8051 33.5H58.781V35H58.8051V33.5ZM58.8292 33.5H58.8051V35H58.8292V33.5ZM58.8532 33.5H58.8292V35H58.8532V33.5ZM58.8771 33.5H58.8532V35H58.8771V33.5ZM58.9011 33.5H58.8771V35H58.9011V33.5ZM58.9249 33.5H58.9011V35H58.9249V33.5ZM58.9488 33.5H58.9249V35H58.9488V33.5ZM58.9726 33.5H58.9488V35H58.9726V33.5ZM58.9964 33.5H58.9726V35H58.9964V33.5ZM59.0201 33.5H58.9964V35H59.0201V33.5ZM59.0437 33.5H59.0201V35H59.0437V33.5ZM59.0674 33.5H59.0437V35H59.0674V33.5ZM59.091 33.5H59.0674V35H59.091V33.5ZM59.1145 33.5H59.091V35H59.1145V33.5ZM59.138 33.5H59.1145V35H59.138V33.5ZM59.1615 33.5H59.138V35H59.1615V33.5ZM59.1849 33.5H59.1615V35H59.1849V33.5ZM59.2083 33.5H59.1849V35H59.2083V33.5ZM59.2317 33.5H59.2083V35H59.2317V33.5ZM59.255 33.5H59.2317V35H59.255V33.5ZM59.2782 33.5H59.255V35H59.2782V33.5ZM59.3015 33.5H59.2782V35H59.3015V33.5ZM59.3247 33.5H59.3015V35H59.3247V33.5ZM59.3478 33.5H59.3247V35H59.3478V33.5ZM59.3709 33.5H59.3478V35H59.3709V33.5ZM59.3939 33.5H59.3709V35H59.3939V33.5ZM59.417 33.5H59.3939V35H59.417V33.5ZM59.4399 33.5H59.417V35H59.4399V33.5ZM59.4629 33.5H59.4399V35H59.4629V33.5ZM59.4858 33.5H59.4629V35H59.4858V33.5ZM59.5086 33.5H59.4858V35H59.5086V33.5ZM59.5314 33.5H59.5086V35H59.5314V33.5ZM59.5542 33.5H59.5314V35H59.5542V33.5ZM59.5769 33.5H59.5542V35H59.5769V33.5ZM59.5996 33.5H59.5769V35H59.5996V33.5ZM59.6222 33.5H59.5996V35H59.6222V33.5ZM59.6448 33.5H59.6222V35H59.6448V33.5ZM59.6674 33.5H59.6448V35H59.6674V33.5ZM59.6899 33.5H59.6674V35H59.6899V33.5ZM59.7124 33.5H59.6899V35H59.7124V33.5ZM59.7348 33.5H59.7124V35H59.7348V33.5ZM59.7572 33.5H59.7348V35H59.7572V33.5ZM59.7795 33.5H59.7572V35H59.7795V33.5ZM59.8018 33.5H59.7795V35H59.8018V33.5ZM59.8241 33.5H59.8018V35H59.8241V33.5ZM59.8463 33.5H59.8241V35H59.8463V33.5ZM59.8685 33.5H59.8463V35H59.8685V33.5ZM59.8907 33.5H59.8685V35H59.8907V33.5ZM59.9128 33.5H59.8907V35H59.9128V33.5ZM59.9348 33.5H59.9128V35H59.9348V33.5ZM59.9568 33.5H59.9348V35H59.9568V33.5ZM59.9788 33.5H59.9568V35H59.9788V33.5ZM60.0008 33.5H59.9788V35H60.0008V33.5ZM60.0227 33.5H60.0008V35H60.0227V33.5ZM60.0445 33.5H60.0227V35H60.0445V33.5ZM60.0663 33.5H60.0445V35H60.0663V33.5ZM60.0881 33.5H60.0663V35H60.0881V33.5ZM60.1098 33.5H60.0881V35H60.1098V33.5ZM60.1315 33.5H60.1098V35H60.1315V33.5ZM60.1531 33.5H60.1315V35H60.1531V33.5ZM60.1747 33.5H60.1531V35H60.1747V33.5ZM60.1963 33.5H60.1747V35H60.1963V33.5ZM60.2178 33.5H60.1963V35H60.2178V33.5ZM60.2393 33.5H60.2178V35H60.2393V33.5ZM60.2607 33.5H60.2393V35H60.2607V33.5ZM60.2821 33.5H60.2607V35H60.2821V33.5ZM60.3035 33.5H60.2821V35H60.3035V33.5ZM60.3248 33.5H60.3035V35H60.3248V33.5ZM60.3461 33.5H60.3248V35H60.3461V33.5ZM61.0961 35.75V34.25H59.5961V35.75H61.0961ZM60.3248 36.5H60.3461V35H60.3248V36.5ZM60.3035 36.5H60.3248V35H60.3035V36.5ZM60.2821 36.5H60.3035V35H60.2821V36.5ZM60.2607 36.5H60.2821V35H60.2607V36.5ZM60.2393 36.5H60.2607V35H60.2393V36.5ZM60.2178 36.5H60.2393V35H60.2178V36.5ZM60.1963 36.5H60.2178V35H60.1963V36.5ZM60.1747 36.5H60.1963V35H60.1747V36.5ZM60.1531 36.5H60.1747V35H60.1531V36.5ZM60.1315 36.5H60.1531V35H60.1315V36.5ZM60.1098 36.5H60.1315V35H60.1098V36.5ZM60.0881 36.5H60.1098V35H60.0881V36.5ZM60.0663 36.5H60.0881V35H60.0663V36.5ZM60.0445 36.5H60.0663V35H60.0445V36.5ZM60.0227 36.5H60.0445V35H60.0227V36.5ZM60.0008 36.5H60.0227V35H60.0008V36.5ZM59.9788 36.5H60.0008V35H59.9788V36.5ZM59.9568 36.5H59.9788V35H59.9568V36.5ZM59.9348 36.5H59.9568V35H59.9348V36.5ZM59.9128 36.5H59.9348V35H59.9128V36.5ZM59.8907 36.5H59.9128V35H59.8907V36.5ZM59.8685 36.5H59.8907V35H59.8685V36.5ZM59.8463 36.5H59.8685V35H59.8463V36.5ZM59.8241 36.5H59.8463V35H59.8241V36.5ZM59.8018 36.5H59.8241V35H59.8018V36.5ZM59.7795 36.5H59.8018V35H59.7795V36.5ZM59.7572 36.5H59.7795V35H59.7572V36.5ZM59.7348 36.5H59.7572V35H59.7348V36.5ZM59.7124 36.5H59.7348V35H59.7124V36.5ZM59.6899 36.5H59.7124V35H59.6899V36.5ZM59.6674 36.5H59.6899V35H59.6674V36.5ZM59.6448 36.5H59.6674V35H59.6448V36.5ZM59.6222 36.5H59.6448V35H59.6222V36.5ZM59.5996 36.5H59.6222V35H59.5996V36.5ZM59.5769 36.5H59.5996V35H59.5769V36.5ZM59.5542 36.5H59.5769V35H59.5542V36.5ZM59.5314 36.5H59.5542V35H59.5314V36.5ZM59.5086 36.5H59.5314V35H59.5086V36.5ZM59.4858 36.5H59.5086V35H59.4858V36.5ZM59.4629 36.5H59.4858V35H59.4629V36.5ZM59.4399 36.5H59.4629V35H59.4399V36.5ZM59.417 36.5H59.4399V35H59.417V36.5ZM59.3939 36.5H59.417V35H59.3939V36.5ZM59.3709 36.5H59.3939V35H59.3709V36.5ZM59.3478 36.5H59.3709V35H59.3478V36.5ZM59.3247 36.5H59.3478V35H59.3247V36.5ZM59.3015 36.5H59.3247V35H59.3015V36.5ZM59.2782 36.5H59.3015V35H59.2782V36.5ZM59.255 36.5H59.2782V35H59.255V36.5ZM59.2317 36.5H59.255V35H59.2317V36.5ZM59.2083 36.5H59.2317V35H59.2083V36.5ZM59.1849 36.5H59.2083V35H59.1849V36.5ZM59.1615 36.5H59.1849V35H59.1615V36.5ZM59.138 36.5H59.1615V35H59.138V36.5ZM59.1145 36.5H59.138V35H59.1145V36.5ZM59.091 36.5H59.1145V35H59.091V36.5ZM59.0674 36.5H59.091V35H59.0674V36.5ZM59.0437 36.5H59.0674V35H59.0437V36.5ZM59.0201 36.5H59.0437V35H59.0201V36.5ZM58.9964 36.5H59.0201V35H58.9964V36.5ZM58.9726 36.5H58.9964V35H58.9726V36.5ZM58.9488 36.5H58.9726V35H58.9488V36.5ZM58.9249 36.5H58.9488V35H58.9249V36.5ZM58.9011 36.5H58.9249V35H58.9011V36.5ZM58.8771 36.5H58.9011V35H58.8771V36.5ZM58.8532 36.5H58.8771V35H58.8532V36.5ZM58.8292 36.5H58.8532V35H58.8292V36.5ZM58.8051 36.5H58.8292V35H58.8051V36.5ZM58.781 36.5H58.8051V35H58.781V36.5ZM58.7569 36.5H58.781V35H58.7569V36.5ZM58.7327 36.5H58.7569V35H58.7327V36.5ZM58.7085 36.5H58.7327V35H58.7085V36.5ZM58.6842 36.5H58.7085V35H58.6842V36.5ZM58.6599 36.5H58.6842V35H58.6599V36.5ZM58.6356 36.5H58.6599V35H58.6356V36.5ZM58.6112 36.5H58.6356V35H58.6112V36.5ZM58.5868 36.5H58.6112V35H58.5868V36.5ZM58.5623 36.5H58.5868V35H58.5623V36.5ZM58.5378 36.5H58.5623V35H58.5378V36.5ZM58.5132 36.5H58.5378V35H58.5132V36.5ZM58.4886 36.5H58.5132V35H58.4886V36.5ZM58.464 36.5H58.4886V35H58.464V36.5ZM58.4393 36.5H58.464V35H58.4393V36.5ZM58.4146 36.5H58.4393V35H58.4146V36.5ZM58.3899 36.5H58.4146V35H58.3899V36.5ZM58.3651 36.5H58.3899V35H58.3651V36.5ZM58.3402 36.5H58.3651V35H58.3402V36.5ZM58.3153 36.5H58.3402V35H58.3153V36.5ZM58.2904 36.5H58.3153V35H58.2904V36.5ZM58.2655 36.5H58.2904V35H58.2655V36.5ZM58.2405 36.5H58.2655V35H58.2405V36.5ZM58.2154 36.5H58.2405V35H58.2154V36.5ZM58.1903 36.5H58.2154V35H58.1903V36.5ZM58.1652 36.5H58.1903V35H58.1652V36.5ZM58.14 36.5H58.1652V35H58.14V36.5ZM58.1148 36.5H58.14V35H58.1148V36.5ZM58.0895 36.5H58.1148V35H58.0895V36.5ZM58.0642 36.5H58.0895V35H58.0642V36.5ZM58.0389 36.5H58.0642V35H58.0389V36.5ZM58.0135 36.5H58.0389V35H58.0135V36.5ZM57.9881 36.5H58.0135V35H57.9881V36.5ZM57.9626 36.5H57.9881V35H57.9626V36.5ZM57.9371 36.5H57.9626V35H57.9371V36.5ZM57.9116 36.5H57.9371V35H57.9116V36.5ZM57.886 36.5H57.9116V35H57.886V36.5ZM57.8604 36.5H57.886V35H57.8604V36.5ZM57.8347 36.5H57.8604V35H57.8347V36.5ZM57.809 36.5H57.8347V35H57.809V36.5ZM57.7832 36.5H57.809V35H57.7832V36.5ZM57.7574 36.5H57.7832V35H57.7574V36.5ZM57.7316 36.5H57.7574V35H57.7316V36.5ZM57.7057 36.5H57.7316V35H57.7057V36.5ZM57.6798 36.5H57.7057V35H57.6798V36.5ZM57.6539 36.5H57.6798V35H57.6539V36.5ZM57.6278 36.5H57.6539V35H57.6278V36.5ZM57.6018 36.5H57.6278V35H57.6018V36.5ZM57.5757 36.5H57.6018V35H57.5757V36.5ZM57.5496 36.5H57.5757V35H57.5496V36.5ZM57.5234 36.5H57.5496V35H57.5234V36.5ZM57.4972 36.5H57.5234V35H57.4972V36.5ZM57.471 36.5H57.4972V35H57.471V36.5ZM57.4447 36.5H57.471V35H57.4447V36.5ZM57.4183 36.5H57.4447V35H57.4183V36.5ZM57.392 36.5H57.4183V35H57.392V36.5ZM57.3655 36.5H57.392V35H57.3655V36.5ZM57.3391 36.5H57.3655V35H57.3391V36.5ZM57.3126 36.5H57.3391V35H57.3126V36.5ZM57.286 36.5H57.3126V35H57.286V36.5ZM57.2595 36.5H57.286V35H57.2595V36.5ZM57.2328 36.5H57.2595V35H57.2328V36.5ZM57.2062 36.5H57.2328V35H57.2062V36.5ZM57.1795 36.5H57.2062V35H57.1795V36.5ZM57.1527 36.5H57.1795V35H57.1527V36.5ZM57.1259 36.5H57.1527V35H57.1259V36.5ZM57.0991 36.5H57.1259V35H57.0991V36.5ZM57.0722 36.5H57.0991V35H57.0722V36.5ZM57.0453 36.5H57.0722V35H57.0453V36.5ZM57.0183 36.5H57.0453V35H57.0183V36.5ZM56.9913 36.5H57.0183V35H56.9913V36.5ZM56.9643 36.5H56.9913V35H56.9643V36.5ZM56.9372 36.5H56.9643V35H56.9372V36.5ZM56.9101 36.5H56.9372V35H56.9101V36.5ZM56.8829 36.5H56.9101V35H56.8829V36.5ZM56.8557 36.5H56.8829V35H56.8557V36.5ZM56.8285 36.5H56.8557V35H56.8285V36.5ZM56.8012 36.5H56.8285V35H56.8012V36.5ZM56.7739 36.5H56.8012V35H56.7739V36.5ZM56.7465 36.5H56.7739V35H56.7465V36.5ZM56.7191 36.5H56.7465V35H56.7191V36.5ZM56.6916 36.5H56.7191V35H56.6916V36.5ZM56.6641 36.5H56.6916V35H56.6641V36.5ZM56.6366 36.5H56.6641V35H56.6366V36.5ZM56.609 36.5H56.6366V35H56.609V36.5ZM56.5814 36.5H56.609V35H56.5814V36.5ZM56.5537 36.5H56.5814V35H56.5537V36.5ZM56.526 36.5H56.5537V35H56.526V36.5ZM56.4983 36.5H56.526V35H56.4983V36.5ZM56.4705 36.5H56.4983V35H56.4705V36.5ZM56.4426 36.5H56.4705V35H56.4426V36.5ZM56.4148 36.5H56.4426V35H56.4148V36.5ZM56.3869 36.5H56.4148V35H56.3869V36.5ZM56.3589 36.5H56.3869V35H56.3589V36.5ZM56.3309 36.5H56.3589V35H56.3309V36.5ZM56.3029 36.5H56.3309V35H56.3029V36.5ZM56.2748 36.5H56.3029V35H56.2748V36.5ZM56.2467 36.5H56.2748V35H56.2467V36.5ZM56.2185 36.5H56.2467V35H56.2185V36.5ZM56.1903 36.5H56.2185V35H56.1903V36.5ZM56.1621 36.5H56.1903V35H56.1621V36.5ZM56.1338 36.5H56.1621V35H56.1338V36.5ZM56.1055 36.5H56.1338V35H56.1055V36.5ZM56.0771 36.5H56.1055V35H56.0771V36.5ZM56.0487 36.5H56.0771V35H56.0487V36.5ZM56.0202 36.5H56.0487V35H56.0202V36.5ZM55.9917 36.5H56.0202V35H55.9917V36.5ZM55.9632 36.5H55.9917V35H55.9632V36.5ZM55.9346 36.5H55.9632V35H55.9346V36.5ZM55.906 36.5H55.9346V35H55.906V36.5ZM55.8774 36.5H55.906V35H55.8774V36.5ZM55.8487 36.5H55.8774V35H55.8487V36.5ZM55.8199 36.5H55.8487V35H55.8199V36.5ZM55.7911 36.5H55.8199V35H55.7911V36.5ZM55.7623 36.5H55.7911V35H55.7623V36.5ZM55.7334 36.5H55.7623V35H55.7334V36.5ZM55.7045 36.5H55.7334V35H55.7045V36.5ZM55.6756 36.5H55.7045V35H55.6756V36.5ZM55.6466 36.5H55.6756V35H55.6466V36.5ZM55.6176 36.5H55.6466V35H55.6176V36.5ZM55.5885 36.5H55.6176V35H55.5885V36.5ZM55.5594 36.5H55.5885V35H55.5594V36.5ZM55.5302 36.5H55.5594V35H55.5302V36.5ZM55.501 36.5H55.5302V35H55.501V36.5ZM55.4718 36.5H55.501V35H55.4718V36.5ZM55.4425 36.5H55.4718V35H55.4425V36.5ZM55.4132 36.5H55.4425V35H55.4132V36.5ZM55.3838 36.5H55.4132V35H55.3838V36.5ZM55.3544 36.5H55.3838V35H55.3544V36.5ZM55.325 36.5H55.3544V35H55.325V36.5ZM55.2955 36.5H55.325V35H55.2955V36.5ZM55.2659 36.5H55.2955V35H55.2659V36.5ZM55.2364 36.5H55.2659V35H55.2364V36.5ZM55.2068 36.5H55.2364V35H55.2068V36.5ZM55.1771 36.5H55.2068V35H55.1771V36.5ZM55.1474 36.5H55.1771V35H55.1474V36.5ZM55.1177 36.5H55.1474V35H55.1177V36.5ZM55.0879 36.5H55.1177V35H55.0879V36.5ZM55.0581 36.5H55.0879V35H55.0581V36.5ZM55.0282 36.5H55.0581V35H55.0282V36.5ZM54.9983 36.5H55.0282V35H54.9983V36.5ZM54.9683 36.5H54.9983V35H54.9683V36.5ZM54.9384 36.5H54.9683V35H54.9384V36.5ZM54.9083 36.5H54.9384V35H54.9083V36.5ZM54.8783 36.5H54.9083V35H54.8783V36.5ZM54.8482 36.5H54.8783V35H54.8482V36.5ZM54.818 36.5H54.8482V35H54.818V36.5ZM54.7878 36.5H54.818V35H54.7878V36.5ZM54.7576 36.5H54.7878V35H54.7576V36.5ZM54.7273 36.5H54.7576V35H54.7273V36.5ZM54.697 36.5H54.7273V35H54.697V36.5ZM54.6666 36.5H54.697V35H54.6666V36.5ZM54.6362 36.5H54.6666V35H54.6362V36.5ZM54.6058 36.5H54.6362V35H54.6058V36.5ZM54.5753 36.5H54.6058V35H54.5753V36.5ZM54.5448 36.5H54.5753V35H54.5448V36.5ZM54.5142 36.5H54.5448V35H54.5142V36.5ZM54.4836 36.5H54.5142V35H54.4836V36.5ZM54.4529 36.5H54.4836V35H54.4529V36.5ZM54.4222 36.5H54.4529V35H54.4222V36.5ZM54.3915 36.5H54.4222V35H54.3915V36.5ZM54.3607 36.5H54.3915V35H54.3607V36.5ZM54.3299 36.5H54.3607V35H54.3299V36.5ZM54.299 36.5H54.3299V35H54.299V36.5ZM54.2681 36.5H54.299V35H54.2681V36.5ZM54.2372 36.5H54.2681V35H54.2372V36.5ZM54.2062 36.5H54.2372V35H54.2062V36.5ZM54.1752 36.5H54.2062V35H54.1752V36.5ZM54.1441 36.5H54.1752V35H54.1441V36.5ZM54.113 36.5H54.1441V35H54.113V36.5ZM54.0819 36.5H54.113V35H54.0819V36.5ZM54.0507 36.5H54.0819V35H54.0507V36.5ZM54.0195 36.5H54.0507V35H54.0195V36.5ZM53.9882 36.5H54.0195V35H53.9882V36.5ZM53.9569 36.5H53.9882V35H53.9569V36.5ZM53.9255 36.5H53.9569V35H53.9255V36.5ZM53.8941 36.5H53.9255V35H53.8941V36.5ZM53.8627 36.5H53.8941V35H53.8627V36.5ZM53.8312 36.5H53.8627V35H53.8312V36.5ZM53.7997 36.5H53.8312V35H53.7997V36.5ZM53.7681 36.5H53.7997V35H53.7681V36.5ZM53.7365 36.5H53.7681V35H53.7365V36.5ZM53.7049 36.5H53.7365V35H53.7049V36.5ZM53.6732 36.5H53.7049V35H53.6732V36.5ZM53.6414 36.5H53.6732V35H53.6414V36.5ZM53.6097 36.5H53.6414V35H53.6097V36.5ZM53.5778 36.5H53.6097V35H53.5778V36.5ZM53.546 36.5H53.5778V35H53.546V36.5ZM53.5141 36.5H53.546V35H53.5141V36.5ZM53.4822 36.5H53.5141V35H53.4822V36.5ZM53.4502 36.5H53.4822V35H53.4502V36.5ZM53.4182 36.5H53.4502V35H53.4182V36.5ZM53.3861 36.5H53.4182V35H53.3861V36.5ZM53.354 36.5H53.3861V35H53.354V36.5ZM53.3218 36.5H53.354V35H53.3218V36.5ZM53.2897 36.5H53.3218V35H53.2897V36.5ZM53.2574 36.5H53.2897V35H53.2574V36.5ZM53.2252 36.5H53.2574V35H53.2252V36.5ZM53.1929 36.5H53.2252V35H53.1929V36.5ZM53.1605 36.5H53.1929V35H53.1605V36.5ZM53.1281 36.5H53.1605V35H53.1281V36.5ZM53.0957 36.5H53.1281V35H53.0957V36.5ZM53.0632 36.5H53.0957V35H53.0632V36.5ZM53.0307 36.5H53.0632V35H53.0307V36.5ZM52.9981 36.5H53.0307V35H52.9981V36.5ZM52.9655 36.5H52.9981V35H52.9655V36.5ZM52.9329 36.5H52.9655V35H52.9329V36.5ZM52.9002 36.5H52.9329V35H52.9002V36.5ZM52.8675 36.5H52.9002V35H52.8675V36.5ZM52.8347 36.5H52.8675V35H52.8347V36.5ZM52.8019 36.5H52.8347V35H52.8019V36.5ZM52.769 36.5H52.8019V35H52.769V36.5ZM52.7361 36.5H52.769V35H52.7361V36.5ZM52.7032 36.5H52.7361V35H52.7032V36.5ZM52.6702 36.5H52.7032V35H52.6702V36.5ZM52.6372 36.5H52.6702V35H52.6372V36.5ZM52.6042 36.5H52.6372V35H52.6042V36.5ZM52.5711 36.5H52.6042V35H52.5711V36.5ZM52.5379 36.5H52.5711V35H52.5379V36.5ZM52.5047 36.5H52.5379V35H52.5047V36.5ZM52.4715 36.5H52.5047V35H52.4715V36.5ZM52.4382 36.5H52.4715V35H52.4382V36.5ZM52.4049 36.5H52.4382V35H52.4049V36.5ZM52.3716 36.5H52.4049V35H52.3716V36.5ZM52.3382 36.5H52.3716V35H52.3382V36.5ZM52.3048 36.5H52.3382V35H52.3048V36.5ZM52.2713 36.5H52.3048V35H52.2713V36.5ZM52.2378 36.5H52.2713V35H52.2378V36.5ZM52.2042 36.5H52.2378V35H52.2042V36.5ZM52.1706 36.5H52.2042V35H52.1706V36.5ZM52.137 36.5H52.1706V35H52.137V36.5ZM52.1033 36.5H52.137V35H52.1033V36.5ZM52.0696 36.5H52.1033V35H52.0696V36.5ZM52.0358 36.5H52.0696V35H52.0358V36.5ZM52.002 36.5H52.0358V35H52.002V36.5ZM51.9682 36.5H52.002V35H51.9682V36.5ZM51.9343 36.5H51.9682V35H51.9343V36.5ZM51.9003 36.5H51.9343V35H51.9003V36.5ZM51.8664 36.5H51.9003V35H51.8664V36.5ZM51.8324 36.5H51.8664V35H51.8324V36.5ZM51.7983 36.5H51.8324V35H51.7983V36.5ZM51.7642 36.5H51.7983V35H51.7642V36.5ZM51.7301 36.5H51.7642V35H51.7301V36.5ZM51.6959 36.5H51.7301V35H51.6959V36.5ZM51.6617 36.5H51.6959V35H51.6617V36.5ZM51.6274 36.5H51.6617V35H51.6274V36.5ZM51.5931 36.5H51.6274V35H51.5931V36.5ZM51.5588 36.5H51.5931V35H51.5588V36.5ZM51.5244 36.5H51.5588V35H51.5244V36.5ZM51.4899 36.5H51.5244V35H51.4899V36.5ZM51.4555 36.5H51.4899V35H51.4555V36.5ZM51.421 36.5H51.4555V35H51.421V36.5ZM51.3864 36.5H51.421V35H51.3864V36.5ZM51.3518 36.5H51.3864V35H51.3518V36.5ZM51.3172 36.5H51.3518V35H51.3172V36.5ZM51.2825 36.5H51.3172V35H51.2825V36.5ZM51.2478 36.5H51.2825V35H51.2478V36.5ZM51.213 36.5H51.2478V35H51.213V36.5ZM51.1782 36.5H51.213V35H51.1782V36.5ZM51.1434 36.5H51.1782V35H51.1434V36.5ZM51.1085 36.5H51.1434V35H51.1085V36.5ZM51.0736 36.5H51.1085V35H51.0736V36.5ZM51.0386 36.5H51.0736V35H51.0386V36.5ZM51.0036 36.5H51.0386V35H51.0036V36.5ZM50.9685 36.5H51.0036V35H50.9685V36.5ZM50.9335 36.5H50.9685V35H50.9335V36.5ZM50.8983 36.5H50.9335V35H50.8983V36.5ZM50.8631 36.5H50.8983V35H50.8631V36.5ZM50.8279 36.5H50.8631V35H50.8279V36.5ZM50.7927 36.5H50.8279V35H50.7927V36.5ZM50.7574 36.5H50.7927V35H50.7574V36.5ZM50.722 36.5H50.7574V35H50.722V36.5ZM50.6867 36.5H50.722V35H50.6867V36.5ZM50.6512 36.5H50.6867V35H50.6512V36.5ZM50.6158 36.5H50.6512V35H50.6158V36.5ZM50.5803 36.5H50.6158V35H50.5803V36.5ZM50.5447 36.5H50.5803V35H50.5447V36.5ZM50.5091 36.5H50.5447V35H50.5091V36.5ZM50.4735 36.5H50.5091V35H50.4735V36.5ZM50.4378 36.5H50.4735V35H50.4378V36.5ZM50.4021 36.5H50.4378V35H50.4021V36.5ZM50.3663 36.5H50.4021V35H50.3663V36.5ZM50.3305 36.5H50.3663V35H50.3305V36.5ZM50.2947 36.5H50.3305V35H50.2947V36.5ZM50.2588 36.5H50.2947V35H50.2588V36.5ZM50.2229 36.5H50.2588V35H50.2229V36.5ZM50.1869 36.5H50.2229V35H50.1869V36.5ZM50.1509 36.5H50.1869V35H50.1509V36.5ZM50.1149 36.5H50.1509V35H50.1149V36.5ZM50.0788 36.5H50.1149V35H50.0788V36.5ZM50.0427 36.5H50.0788V35H50.0427V36.5ZM50.0065 36.5H50.0427V35H50.0065V36.5ZM49.9703 36.5H50.0065V35H49.9703V36.5ZM49.934 36.5H49.9703V35H49.934V36.5ZM49.8977 36.5H49.934V35H49.8977V36.5ZM49.8614 36.5H49.8977V35H49.8614V36.5ZM49.825 36.5H49.8614V35H49.825V36.5ZM49.7886 36.5H49.825V35H49.7886V36.5ZM49.7521 36.5H49.7886V35H49.7521V36.5ZM49.7156 36.5H49.7521V35H49.7156V36.5ZM49.6791 36.5H49.7156V35H49.6791V36.5ZM49.6425 36.5H49.6791V35H49.6425V36.5ZM49.6059 36.5H49.6425V35H49.6059V36.5ZM49.5692 36.5H49.6059V35H49.5692V36.5ZM49.5325 36.5H49.5692V35H49.5325V36.5ZM49.4957 36.5H49.5325V35H49.4957V36.5ZM49.459 36.5H49.4957V35H49.459V36.5ZM49.4221 36.5H49.459V35H49.4221V36.5ZM49.3852 36.5H49.4221V35H49.3852V36.5ZM49.3483 36.5H49.3852V35H49.3483V36.5ZM49.3114 36.5H49.3483V35H49.3114V36.5ZM49.2744 36.5H49.3114V35H49.2744V36.5ZM49.2373 36.5H49.2744V35H49.2373V36.5ZM49.2002 36.5H49.2373V35H49.2002V36.5ZM49.1631 36.5H49.2002V35H49.1631V36.5ZM49.1259 36.5H49.1631V35H49.1259V36.5ZM49.0887 36.5H49.1259V35H49.0887V36.5ZM49.0515 36.5H49.0887V35H49.0515V36.5ZM49.0142 36.5H49.0515V35H49.0142V36.5ZM48.9769 36.5H49.0142V35H48.9769V36.5ZM48.9395 36.5H48.9769V35H48.9395V36.5ZM48.9021 36.5H48.9395V35H48.9021V36.5ZM48.8646 36.5H48.9021V35H48.8646V36.5ZM48.8271 36.5H48.8646V35H48.8271V36.5ZM48.7896 36.5H48.8271V35H48.7896V36.5ZM48.752 36.5H48.7896V35H48.752V36.5ZM48.7144 36.5H48.752V35H48.7144V36.5ZM48.6767 36.5H48.7144V35H48.6767V36.5ZM48.639 36.5H48.6767V35H48.639V36.5ZM48.6012 36.5H48.639V35H48.6012V36.5ZM48.5635 36.5H48.6012V35H48.5635V36.5ZM48.5256 36.5H48.5635V35H48.5256V36.5ZM48.4877 36.5H48.5256V35H48.4877V36.5ZM48.4498 36.5H48.4877V35H48.4498V36.5ZM48.4119 36.5H48.4498V35H48.4119V36.5ZM48.3739 36.5H48.4119V35H48.3739V36.5ZM48.3358 36.5H48.3739V35H48.3358V36.5ZM48.2978 36.5H48.3358V35H48.2978V36.5ZM48.2596 36.5H48.2978V35H48.2596V36.5ZM48.2215 36.5H48.2596V35H48.2215V36.5ZM48.1833 36.5H48.2215V35H48.1833V36.5ZM48.145 36.5H48.1833V35H48.145V36.5ZM48.1067 36.5H48.145V35H48.1067V36.5ZM48.0684 36.5H48.1067V35H48.0684V36.5ZM48.03 36.5H48.0684V35H48.03V36.5ZM47.9916 36.5H48.03V35H47.9916V36.5ZM47.9532 36.5H47.9916V35H47.9532V36.5ZM47.9147 36.5H47.9532V35H47.9147V36.5ZM47.8761 36.5H47.9147V35H47.8761V36.5ZM47.8376 36.5H47.8761V35H47.8376V36.5ZM47.7989 36.5H47.8376V35H47.7989V36.5ZM47.7603 36.5H47.7989V35H47.7603V36.5ZM47.7216 36.5H47.7603V35H47.7216V36.5ZM47.6828 36.5H47.7216V35H47.6828V36.5ZM47.644 36.5H47.6828V35H47.644V36.5ZM47.6052 36.5H47.644V35H47.6052V36.5ZM47.5663 36.5H47.6052V35H47.5663V36.5ZM47.5274 36.5H47.5663V35H47.5274V36.5ZM47.4885 36.5H47.5274V35H47.4885V36.5ZM47.4495 36.5H47.4885V35H47.4495V36.5ZM47.4105 36.5H47.4495V35H47.4105V36.5ZM47.3714 36.5H47.4105V35H47.3714V36.5ZM47.3323 36.5H47.3714V35H47.3323V36.5ZM47.2931 36.5H47.3323V35H47.2931V36.5ZM47.2539 36.5H47.2931V35H47.2539V36.5ZM47.2147 36.5H47.2539V35H47.2147V36.5ZM47.1754 36.5H47.2147V35H47.1754V36.5ZM47.1361 36.5H47.1754V35H47.1361V36.5ZM47.0967 36.5H47.1361V35H47.0967V36.5ZM47.0573 36.5H47.0967V35H47.0573V36.5ZM47.0178 36.5H47.0573V35H47.0178V36.5ZM46.9783 36.5H47.0178V35H46.9783V36.5ZM46.9388 36.5H46.9783V35H46.9388V36.5ZM46.8992 36.5H46.9388V35H46.8992V36.5ZM46.8596 36.5H46.8992V35H46.8596V36.5ZM46.82 36.5H46.8596V35H46.82V36.5ZM46.7803 36.5H46.82V35H46.7803V36.5ZM46.7405 36.5H46.7803V35H46.7405V36.5ZM46.7007 36.5H46.7405V35H46.7007V36.5ZM46.6609 36.5H46.7007V35H46.6609V36.5ZM46.621 36.5H46.6609V35H46.621V36.5ZM46.5811 36.5H46.621V35H46.5811V36.5ZM46.5412 36.5H46.5811V35H46.5412V36.5ZM46.5012 36.5H46.5412V35H46.5012V36.5ZM46.4612 36.5H46.5012V35H46.4612V36.5ZM46.4211 36.5H46.4612V35H46.4211V36.5ZM46.381 36.5H46.4211V35H46.381V36.5ZM46.3408 36.5H46.381V35H46.3408V36.5ZM46.3006 36.5H46.3408V35H46.3006V36.5ZM46.2604 36.5H46.3006V35H46.2604V36.5ZM46.2201 36.5H46.2604V35H46.2201V36.5ZM46.1798 36.5H46.2201V35H46.1798V36.5ZM46.1394 36.5H46.1798V35H46.1394V36.5ZM46.099 36.5H46.1394V35H46.099V36.5ZM46.0586 36.5H46.099V35H46.0586V36.5ZM46.0181 36.5H46.0586V35H46.0181V36.5ZM45.9776 36.5H46.0181V35H45.9776V36.5ZM45.937 36.5H45.9776V35H45.937V36.5ZM45.8964 36.5H45.937V35H45.8964V36.5ZM45.8557 36.5H45.8964V35H45.8557V36.5ZM45.815 36.5H45.8557V35H45.815V36.5ZM45.7743 36.5H45.815V35H45.7743V36.5ZM45.7335 36.5H45.7743V35H45.7335V36.5ZM45.6927 36.5H45.7335V35H45.6927V36.5ZM45.6518 36.5H45.6927V35H45.6518V36.5ZM45.6109 36.5H45.6518V35H45.6109V36.5ZM45.57 36.5H45.6109V35H45.57V36.5ZM45.529 36.5H45.57V35H45.529V36.5ZM45.488 36.5H45.529V35H45.488V36.5ZM45.4469 36.5H45.488V35H45.4469V36.5ZM45.4058 36.5H45.4469V35H45.4058V36.5ZM45.3646 36.5H45.4058V35H45.3646V36.5ZM45.3235 36.5H45.3646V35H45.3235V36.5ZM45.2822 36.5H45.3235V35H45.2822V36.5ZM45.2409 36.5H45.2822V35H45.2409V36.5ZM45.1996 36.5H45.2409V35H45.1996V36.5ZM45.1583 36.5H45.1996V35H45.1583V36.5ZM45.1169 36.5H45.1583V35H45.1169V36.5ZM45.0754 36.5H45.1169V35H45.0754V36.5ZM45.0339 36.5H45.0754V35H45.0339V36.5ZM44.9924 36.5H45.0339V35H44.9924V36.5ZM44.9508 36.5H44.9924V35H44.9508V36.5ZM44.9092 36.5H44.9508V35H44.9092V36.5ZM44.8676 36.5H44.9092V35H44.8676V36.5ZM44.8259 36.5H44.8676V35H44.8259V36.5ZM44.7842 36.5H44.8259V35H44.7842V36.5ZM44.7424 36.5H44.7842V35H44.7424V36.5ZM44.7006 36.5H44.7424V35H44.7006V36.5ZM44.6587 36.5H44.7006V35H44.6587V36.5ZM44.6168 36.5H44.6587V35H44.6168V36.5ZM44.5749 36.5H44.6168V35H44.5749V36.5ZM44.5329 36.5H44.5749V35H44.5329V36.5ZM44.4909 36.5H44.5329V35H44.4909V36.5ZM44.4488 36.5H44.4909V35H44.4488V36.5ZM44.4067 36.5H44.4488V35H44.4067V36.5ZM44.3646 36.5H44.4067V35H44.3646V36.5ZM44.3224 36.5H44.3646V35H44.3224V36.5ZM44.2801 36.5H44.3224V35H44.2801V36.5ZM44.2379 36.5H44.2801V35H44.2379V36.5ZM44.1955 36.5H44.2379V35H44.1955V36.5ZM44.1532 36.5H44.1955V35H44.1532V36.5ZM44.1108 36.5H44.1532V35H44.1108V36.5ZM44.0684 36.5H44.1108V35H44.0684V36.5ZM44.0259 36.5H44.0684V35H44.0259V36.5ZM66.3951 36.5H66.4073V35H66.3951V36.5ZM65.6451 34.25V35.75H67.1451V34.25H65.6451ZM66.4073 33.5H66.3951V35H66.4073V33.5ZM66.4195 33.5H66.4073V35H66.4195V33.5ZM66.4318 33.5H66.4195V35H66.4318V33.5ZM66.444 33.5H66.4318V35H66.444V33.5ZM66.4563 33.5H66.444V35H66.4563V33.5ZM66.4686 33.5H66.4563V35H66.4686V33.5ZM66.4809 33.5H66.4686V35H66.4809V33.5ZM66.4932 33.5H66.4809V35H66.4932V33.5ZM66.5056 33.5H66.4932V35H66.5056V33.5ZM66.5179 33.5H66.5056V35H66.5179V33.5ZM66.5303 33.5H66.5179V35H66.5303V33.5ZM66.5426 33.5H66.5303V35H66.5426V33.5ZM66.555 33.5H66.5426V35H66.555V33.5ZM66.5674 33.5H66.555V35H66.5674V33.5ZM66.5798 33.5H66.5674V35H66.5798V33.5ZM66.5923 33.5H66.5798V35H66.5923V33.5ZM66.6047 33.5H66.5923V35H66.6047V33.5ZM66.6172 33.5H66.6047V35H66.6172V33.5ZM66.6296 33.5H66.6172V35H66.6296V33.5ZM66.6421 33.5H66.6296V35H66.6421V33.5ZM66.6546 33.5H66.6421V35H66.6546V33.5ZM66.6671 33.5H66.6546V35H66.6671V33.5ZM66.6797 33.5H66.6671V35H66.6797V33.5ZM66.6922 33.5H66.6797V35H66.6922V33.5ZM66.7047 33.5H66.6922V35H66.7047V33.5ZM66.7173 33.5H66.7047V35H66.7173V33.5ZM66.7299 33.5H66.7173V35H66.7299V33.5ZM66.7425 33.5H66.7299V35H66.7425V33.5ZM66.7551 33.5H66.7425V35H66.7551V33.5ZM66.7677 33.5H66.7551V35H66.7677V33.5ZM66.7803 33.5H66.7677V35H66.7803V33.5ZM66.793 33.5H66.7803V35H66.793V33.5ZM66.8057 33.5H66.793V35H66.8057V33.5ZM66.8183 33.5H66.8057V35H66.8183V33.5ZM66.831 33.5H66.8183V35H66.831V33.5ZM66.8437 33.5H66.831V35H66.8437V33.5ZM66.8564 33.5H66.8437V35H66.8564V33.5ZM66.8692 33.5H66.8564V35H66.8692V33.5ZM66.8819 33.5H66.8692V35H66.8819V33.5ZM66.8947 33.5H66.8819V35H66.8947V33.5ZM66.9074 33.5H66.8947V35H66.9074V33.5ZM66.9202 33.5H66.9074V35H66.9202V33.5ZM66.933 33.5H66.9202V35H66.933V33.5ZM66.9458 33.5H66.933V35H66.9458V33.5ZM66.9586 33.5H66.9458V35H66.9586V33.5ZM66.9715 33.5H66.9586V35H66.9715V33.5ZM66.9843 33.5H66.9715V35H66.9843V33.5ZM66.9972 33.5H66.9843V35H66.9972V33.5ZM67.0101 33.5H66.9972V35H67.0101V33.5ZM67.023 33.5H67.0101V35H67.023V33.5ZM67.0359 33.5H67.023V35H67.0359V33.5ZM67.0488 33.5H67.0359V35H67.0488V33.5ZM67.0617 33.5H67.0488V35H67.0617V33.5ZM67.0747 33.5H67.0617V35H67.0747V33.5ZM67.0876 33.5H67.0747V35H67.0876V33.5ZM67.1006 33.5H67.0876V35H67.1006V33.5ZM67.1136 33.5H67.1006V35H67.1136V33.5ZM67.1266 33.5H67.1136V35H67.1266V33.5ZM67.1396 33.5H67.1266V35H67.1396V33.5ZM67.1527 33.5H67.1396V35H67.1527V33.5ZM67.1657 33.5H67.1527V35H67.1657V33.5ZM67.1788 33.5H67.1657V35H67.1788V33.5ZM67.1918 33.5H67.1788V35H67.1918V33.5ZM67.2049 33.5H67.1918V35H67.2049V33.5ZM67.218 33.5H67.2049V35H67.218V33.5ZM67.2311 33.5H67.218V35H67.2311V33.5ZM67.2442 33.5H67.2311V35H67.2442V33.5ZM67.2574 33.5H67.2442V35H67.2574V33.5ZM67.2705 33.5H67.2574V35H67.2705V33.5ZM67.2837 33.5H67.2705V35H67.2837V33.5ZM67.2969 33.5H67.2837V35H67.2969V33.5ZM67.3101 33.5H67.2969V35H67.3101V33.5ZM67.3233 33.5H67.3101V35H67.3233V33.5ZM67.3365 33.5H67.3233V35H67.3365V33.5ZM67.3497 33.5H67.3365V35H67.3497V33.5ZM67.363 33.5H67.3497V35H67.363V33.5ZM67.3763 33.5H67.363V35H67.3763V33.5ZM67.3895 33.5H67.3763V35H67.3895V33.5ZM67.4028 33.5H67.3895V35H67.4028V33.5ZM67.4161 33.5H67.4028V35H67.4161V33.5ZM67.4294 33.5H67.4161V35H67.4294V33.5ZM67.4428 33.5H67.4294V35H67.4428V33.5ZM67.4561 33.5H67.4428V35H67.4561V33.5ZM67.4695 33.5H67.4561V35H67.4695V33.5ZM67.4828 33.5H67.4695V35H67.4828V33.5ZM67.4962 33.5H67.4828V35H67.4962V33.5ZM67.5096 33.5H67.4962V35H67.5096V33.5ZM67.523 33.5H67.5096V35H67.523V33.5ZM67.5365 33.5H67.523V35H67.5365V33.5ZM67.5499 33.5H67.5365V35H67.5499V33.5ZM67.5634 33.5H67.5499V35H67.5634V33.5ZM67.5768 33.5H67.5634V35H67.5768V33.5ZM67.5903 33.5H67.5768V35H67.5903V33.5ZM67.6038 33.5H67.5903V35H67.6038V33.5ZM67.6173 33.5H67.6038V35H67.6173V33.5ZM67.6308 33.5H67.6173V35H67.6308V33.5ZM67.6444 33.5H67.6308V35H67.6444V33.5ZM67.6579 33.5H67.6444V35H67.6579V33.5ZM67.6715 33.5H67.6579V35H67.6715V33.5ZM67.685 33.5H67.6715V35H67.685V33.5ZM67.6986 33.5H67.685V35H67.6986V33.5ZM67.7122 33.5H67.6986V35H67.7122V33.5ZM67.7259 33.5H67.7122V35H67.7259V33.5ZM67.7395 33.5H67.7259V35H67.7395V33.5ZM67.7531 33.5H67.7395V35H67.7531V33.5ZM67.7668 33.5H67.7531V35H67.7668V33.5ZM67.7805 33.5H67.7668V35H67.7805V33.5ZM67.7941 33.5H67.7805V35H67.7941V33.5ZM67.8078 33.5H67.7941V35H67.8078V33.5ZM67.8216 33.5H67.8078V35H67.8216V33.5ZM67.8353 33.5H67.8216V35H67.8353V33.5ZM67.849 33.5H67.8353V35H67.849V33.5ZM67.8628 33.5H67.849V35H67.8628V33.5ZM67.8765 33.5H67.8628V35H67.8765V33.5ZM67.8903 33.5H67.8765V35H67.8903V33.5ZM67.9041 33.5H67.8903V35H67.9041V33.5ZM67.9179 33.5H67.9041V35H67.9179V33.5ZM67.9318 33.5H67.9179V35H67.9318V33.5ZM67.9456 33.5H67.9318V35H67.9456V33.5ZM67.9594 33.5H67.9456V35H67.9594V33.5ZM67.9733 33.5H67.9594V35H67.9733V33.5ZM67.9872 33.5H67.9733V35H67.9872V33.5ZM68.0011 33.5H67.9872V35H68.0011V33.5ZM68.015 33.5H68.0011V35H68.015V33.5ZM68.0289 33.5H68.015V35H68.0289V33.5ZM68.0428 33.5H68.0289V35H68.0428V33.5ZM68.0568 33.5H68.0428V35H68.0568V33.5ZM68.0707 33.5H68.0568V35H68.0707V33.5ZM68.0847 33.5H68.0707V35H68.0847V33.5ZM68.0987 33.5H68.0847V35H68.0987V33.5ZM68.1127 33.5H68.0987V35H68.1127V33.5ZM68.1267 33.5H68.1127V35H68.1267V33.5ZM68.1407 33.5H68.1267V35H68.1407V33.5ZM68.1548 33.5H68.1407V35H68.1548V33.5ZM68.1688 33.5H68.1548V35H68.1688V33.5ZM68.1829 33.5H68.1688V35H68.1829V33.5ZM68.197 33.5H68.1829V35H68.197V33.5ZM68.2111 33.5H68.197V35H68.2111V33.5ZM68.2252 33.5H68.2111V35H68.2252V33.5ZM68.2393 33.5H68.2252V35H68.2393V33.5ZM68.2534 33.5H68.2393V35H68.2534V33.5ZM68.2676 33.5H68.2534V35H68.2676V33.5ZM68.2817 33.5H68.2676V35H68.2817V33.5ZM68.2959 33.5H68.2817V35H68.2959V33.5ZM68.3101 33.5H68.2959V35H68.3101V33.5ZM68.3243 33.5H68.3101V35H68.3243V33.5ZM68.3385 33.5H68.3243V35H68.3385V33.5ZM68.3528 33.5H68.3385V35H68.3528V33.5ZM68.367 33.5H68.3528V35H68.367V33.5ZM68.3813 33.5H68.367V35H68.3813V33.5ZM68.3955 33.5H68.3813V35H68.3955V33.5ZM68.4098 33.5H68.3955V35H68.4098V33.5ZM68.4241 33.5H68.4098V35H68.4241V33.5ZM68.4384 33.5H68.4241V35H68.4384V33.5ZM68.4528 33.5H68.4384V35H68.4528V33.5ZM68.4671 33.5H68.4528V35H68.4671V33.5ZM68.4815 33.5H68.4671V35H68.4815V33.5ZM68.4958 33.5H68.4815V35H68.4958V33.5ZM68.5102 33.5H68.4958V35H68.5102V33.5ZM68.5246 33.5H68.5102V35H68.5246V33.5ZM68.539 33.5H68.5246V35H68.539V33.5ZM68.5534 33.5H68.539V35H68.5534V33.5ZM68.5679 33.5H68.5534V35H68.5679V33.5ZM68.5823 33.5H68.5679V35H68.5823V33.5ZM68.5968 33.5H68.5823V35H68.5968V33.5ZM68.6113 33.5H68.5968V35H68.6113V33.5ZM68.6258 33.5H68.6113V35H68.6258V33.5ZM68.6403 33.5H68.6258V35H68.6403V33.5ZM68.6548 33.5H68.6403V35H68.6548V33.5ZM68.6693 33.5H68.6548V35H68.6693V33.5ZM68.6839 33.5H68.6693V35H68.6839V33.5ZM68.6984 33.5H68.6839V35H68.6984V33.5ZM68.713 33.5H68.6984V35H68.713V33.5ZM68.7276 33.5H68.713V35H68.7276V33.5ZM68.7422 33.5H68.7276V35H68.7422V33.5ZM68.7568 33.5H68.7422V35H68.7568V33.5ZM68.7714 33.5H68.7568V35H68.7714V33.5ZM68.7861 33.5H68.7714V35H68.7861V33.5ZM68.8007 33.5H68.7861V35H68.8007V33.5ZM68.8154 33.5H68.8007V35H68.8154V33.5ZM68.8301 33.5H68.8154V35H68.8301V33.5ZM68.8448 33.5H68.8301V35H68.8448V33.5ZM68.8595 33.5H68.8448V35H68.8595V33.5ZM68.8742 33.5H68.8595V35H68.8742V33.5ZM68.8889 33.5H68.8742V35H68.8889V33.5ZM68.9037 33.5H68.8889V35H68.9037V33.5ZM68.9184 33.5H68.9037V35H68.9184V33.5ZM68.9332 33.5H68.9184V35H68.9332V33.5ZM68.948 33.5H68.9332V35H68.948V33.5ZM68.9628 33.5H68.948V35H68.9628V33.5ZM68.9776 33.5H68.9628V35H68.9776V33.5ZM68.9925 33.5H68.9776V35H68.9925V33.5ZM69.0073 33.5H68.9925V35H69.0073V33.5ZM69.0222 33.5H69.0073V35H69.0222V33.5ZM69.0371 33.5H69.0222V35H69.0371V33.5ZM69.0519 33.5H69.0371V35H69.0519V33.5ZM69.0668 33.5H69.0519V35H69.0668V33.5ZM69.0818 33.5H69.0668V35H69.0818V33.5ZM69.0967 33.5H69.0818V35H69.0967V33.5ZM69.1116 33.5H69.0967V35H69.1116V33.5ZM69.1266 33.5H69.1116V35H69.1266V33.5ZM69.1416 33.5H69.1266V35H69.1416V33.5ZM69.1565 33.5H69.1416V35H69.1565V33.5ZM69.1715 33.5H69.1565V35H69.1715V33.5ZM69.1865 33.5H69.1715V35H69.1865V33.5ZM69.2016 33.5H69.1865V35H69.2016V33.5ZM69.2166 33.5H69.2016V35H69.2166V33.5ZM69.2317 33.5H69.2166V35H69.2317V33.5ZM69.2467 33.5H69.2317V35H69.2467V33.5ZM69.2618 33.5H69.2467V35H69.2618V33.5ZM69.2769 33.5H69.2618V35H69.2769V33.5ZM69.292 33.5H69.2769V35H69.292V33.5ZM69.3071 33.5H69.292V35H69.3071V33.5ZM69.3223 33.5H69.3071V35H69.3223V33.5ZM69.3374 33.5H69.3223V35H69.3374V33.5ZM69.3526 33.5H69.3374V35H69.3526V33.5ZM69.3677 33.5H69.3526V35H69.3677V33.5ZM69.3829 33.5H69.3677V35H69.3829V33.5ZM69.3981 33.5H69.3829V35H69.3981V33.5ZM69.4133 33.5H69.3981V35H69.4133V33.5ZM69.4286 33.5H69.4133V35H69.4286V33.5ZM69.4438 33.5H69.4286V35H69.4438V33.5ZM69.4591 33.5H69.4438V35H69.4591V33.5ZM69.4743 33.5H69.4591V35H69.4743V33.5ZM69.4896 33.5H69.4743V35H69.4896V33.5ZM69.5049 33.5H69.4896V35H69.5049V33.5ZM69.5202 33.5H69.5049V35H69.5202V33.5ZM69.5356 33.5H69.5202V35H69.5356V33.5ZM69.5509 33.5H69.5356V35H69.5509V33.5ZM69.5662 33.5H69.5509V35H69.5662V33.5ZM69.5816 33.5H69.5662V35H69.5816V33.5ZM69.597 33.5H69.5816V35H69.597V33.5ZM69.6124 33.5H69.597V35H69.6124V33.5ZM69.6278 33.5H69.6124V35H69.6278V33.5ZM69.6432 33.5H69.6278V35H69.6432V33.5ZM69.6586 33.5H69.6432V35H69.6586V33.5ZM69.6741 33.5H69.6586V35H69.6741V33.5ZM69.6895 33.5H69.6741V35H69.6895V33.5ZM69.705 33.5H69.6895V35H69.705V33.5ZM69.7205 33.5H69.705V35H69.7205V33.5ZM69.736 33.5H69.7205V35H69.736V33.5ZM69.7515 33.5H69.736V35H69.7515V33.5ZM69.7671 33.5H69.7515V35H69.7671V33.5ZM69.7826 33.5H69.7671V35H69.7826V33.5ZM69.7982 33.5H69.7826V35H69.7982V33.5ZM69.8137 33.5H69.7982V35H69.8137V33.5ZM69.8293 33.5H69.8137V35H69.8293V33.5ZM69.8449 33.5H69.8293V35H69.8449V33.5ZM69.8605 33.5H69.8449V35H69.8605V33.5ZM69.8761 33.5H69.8605V35H69.8761V33.5ZM69.8918 33.5H69.8761V35H69.8918V33.5ZM69.9074 33.5H69.8918V35H69.9074V33.5ZM69.9231 33.5H69.9074V35H69.9231V33.5ZM69.9388 33.5H69.9231V35H69.9388V33.5ZM69.9545 33.5H69.9388V35H69.9545V33.5ZM69.9702 33.5H69.9545V35H69.9702V33.5ZM69.9859 33.5H69.9702V35H69.9859V33.5ZM70.0016 33.5H69.9859V35H70.0016V33.5ZM70.0174 33.5H70.0016V35H70.0174V33.5ZM70.0331 33.5H70.0174V35H70.0331V33.5ZM70.0489 33.5H70.0331V35H70.0489V33.5ZM70.0647 33.5H70.0489V35H70.0647V33.5ZM70.0805 33.5H70.0647V35H70.0805V33.5ZM70.0963 33.5H70.0805V35H70.0963V33.5ZM70.1122 33.5H70.0963V35H70.1122V33.5ZM70.128 33.5H70.1122V35H70.128V33.5ZM70.1439 33.5H70.128V35H70.1439V33.5ZM70.1597 33.5H70.1439V35H70.1597V33.5ZM70.1756 33.5H70.1597V35H70.1756V33.5ZM70.1915 33.5H70.1756V35H70.1915V33.5ZM70.2074 33.5H70.1915V35H70.2074V33.5ZM70.2234 33.5H70.2074V35H70.2234V33.5ZM70.2393 33.5H70.2234V35H70.2393V33.5ZM70.2552 33.5H70.2393V35H70.2552V33.5ZM70.2712 33.5H70.2552V35H70.2712V33.5ZM70.2872 33.5H70.2712V35H70.2872V33.5ZM70.3032 33.5H70.2872V35H70.3032V33.5ZM70.3192 33.5H70.3032V35H70.3192V33.5ZM70.3352 33.5H70.3192V35H70.3352V33.5ZM70.3512 33.5H70.3352V35H70.3512V33.5ZM70.3673 33.5H70.3512V35H70.3673V33.5ZM70.3834 33.5H70.3673V35H70.3834V33.5ZM70.3994 33.5H70.3834V35H70.3994V33.5ZM70.4155 33.5H70.3994V35H70.4155V33.5ZM70.4316 33.5H70.4155V35H70.4316V33.5ZM70.4477 33.5H70.4316V35H70.4477V33.5ZM70.4639 33.5H70.4477V35H70.4639V33.5ZM70.48 33.5H70.4639V35H70.48V33.5ZM70.4962 33.5H70.48V35H70.4962V33.5ZM70.5123 33.5H70.4962V35H70.5123V33.5ZM70.5285 33.5H70.5123V35H70.5285V33.5ZM70.5447 33.5H70.5285V35H70.5447V33.5ZM70.5609 33.5H70.5447V35H70.5609V33.5ZM70.5772 33.5H70.5609V35H70.5772V33.5ZM70.5934 33.5H70.5772V35H70.5934V33.5ZM70.6097 33.5H70.5934V35H70.6097V33.5ZM70.6259 33.5H70.6097V35H70.6259V33.5ZM70.6422 33.5H70.6259V35H70.6422V33.5ZM70.6585 33.5H70.6422V35H70.6585V33.5ZM70.6748 33.5H70.6585V35H70.6748V33.5ZM70.6911 33.5H70.6748V35H70.6911V33.5ZM70.7075 33.5H70.6911V35H70.7075V33.5ZM70.7238 33.5H70.7075V35H70.7238V33.5ZM70.7402 33.5H70.7238V35H70.7402V33.5ZM70.7566 33.5H70.7402V35H70.7566V33.5ZM70.7729 33.5H70.7566V35H70.7729V33.5ZM70.7893 33.5H70.7729V35H70.7893V33.5ZM70.8058 33.5H70.7893V35H70.8058V33.5ZM70.8222 33.5H70.8058V35H70.8222V33.5ZM70.8386 33.5H70.8222V35H70.8386V33.5ZM70.8551 33.5H70.8386V35H70.8551V33.5ZM70.8716 33.5H70.8551V35H70.8716V33.5ZM70.8881 33.5H70.8716V35H70.8881V33.5ZM70.9046 33.5H70.8881V35H70.9046V33.5ZM70.9211 33.5H70.9046V35H70.9211V33.5ZM70.9376 33.5H70.9211V35H70.9376V33.5ZM70.9541 33.5H70.9376V35H70.9541V33.5ZM70.9707 33.5H70.9541V35H70.9707V33.5ZM70.9873 33.5H70.9707V35H70.9873V33.5ZM71.0038 33.5H70.9873V35H71.0038V33.5ZM71.0204 33.5H71.0038V35H71.0204V33.5ZM71.037 33.5H71.0204V35H71.037V33.5ZM71.0537 33.5H71.037V35H71.0537V33.5ZM71.0703 33.5H71.0537V35H71.0703V33.5ZM71.0869 33.5H71.0703V35H71.0869V33.5ZM71.1036 33.5H71.0869V35H71.1036V33.5ZM71.1203 33.5H71.1036V35H71.1203V33.5ZM71.137 33.5H71.1203V35H71.137V33.5ZM71.1537 33.5H71.137V35H71.1537V33.5ZM71.1704 33.5H71.1537V35H71.1704V33.5ZM71.1871 33.5H71.1704V35H71.1871V33.5ZM71.2039 33.5H71.1871V35H71.2039V33.5ZM71.2206 33.5H71.2039V35H71.2206V33.5ZM71.2374 33.5H71.2206V35H71.2374V33.5ZM71.2542 33.5H71.2374V35H71.2542V33.5ZM71.271 33.5H71.2542V35H71.271V33.5ZM71.2878 33.5H71.271V35H71.2878V33.5ZM71.3046 33.5H71.2878V35H71.3046V33.5ZM71.3215 33.5H71.3046V35H71.3215V33.5ZM71.3383 33.5H71.3215V35H71.3383V33.5ZM71.3552 33.5H71.3383V35H71.3552V33.5ZM71.3721 33.5H71.3552V35H71.3721V33.5ZM71.389 33.5H71.3721V35H71.389V33.5ZM71.4059 33.5H71.389V35H71.4059V33.5ZM71.4228 33.5H71.4059V35H71.4228V33.5ZM71.4397 33.5H71.4228V35H71.4397V33.5ZM71.4567 33.5H71.4397V35H71.4567V33.5ZM71.4737 33.5H71.4567V35H71.4737V33.5ZM71.4906 33.5H71.4737V35H71.4906V33.5ZM71.5076 33.5H71.4906V35H71.5076V33.5ZM71.5246 33.5H71.5076V35H71.5246V33.5ZM71.5416 33.5H71.5246V35H71.5416V33.5ZM71.5587 33.5H71.5416V35H71.5587V33.5ZM71.5757 33.5H71.5587V35H71.5757V33.5ZM71.5928 33.5H71.5757V35H71.5928V33.5ZM71.6099 33.5H71.5928V35H71.6099V33.5ZM71.6269 33.5H71.6099V35H71.6269V33.5ZM71.644 33.5H71.6269V35H71.644V33.5ZM71.6612 33.5H71.644V35H71.6612V33.5ZM71.6783 33.5H71.6612V35H71.6783V33.5ZM71.6954 33.5H71.6783V35H71.6954V33.5ZM71.7126 33.5H71.6954V35H71.7126V33.5ZM71.7297 33.5H71.7126V35H71.7297V33.5ZM71.7469 33.5H71.7297V35H71.7469V33.5ZM71.7641 33.5H71.7469V35H71.7641V33.5ZM71.7813 33.5H71.7641V35H71.7813V33.5ZM71.7986 33.5H71.7813V35H71.7986V33.5ZM71.8158 33.5H71.7986V35H71.8158V33.5ZM71.833 33.5H71.8158V35H71.833V33.5ZM71.8503 33.5H71.833V35H71.8503V33.5ZM71.8676 33.5H71.8503V35H71.8676V33.5ZM71.8849 33.5H71.8676V35H71.8849V33.5ZM71.9022 33.5H71.8849V35H71.9022V33.5ZM71.9195 33.5H71.9022V35H71.9195V33.5ZM71.9368 33.5H71.9195V35H71.9368V33.5ZM71.9542 33.5H71.9368V35H71.9542V33.5ZM71.9715 33.5H71.9542V35H71.9715V33.5ZM71.9889 33.5H71.9715V35H71.9889V33.5ZM72.0063 33.5H71.9889V35H72.0063V33.5ZM72.0237 33.5H72.0063V35H72.0237V33.5ZM72.0411 33.5H72.0237V35H72.0411V33.5ZM72.0585 33.5H72.0411V35H72.0585V33.5ZM72.076 33.5H72.0585V35H72.076V33.5ZM72.0934 33.5H72.076V35H72.0934V33.5ZM72.1109 33.5H72.0934V35H72.1109V33.5ZM72.1284 33.5H72.1109V35H72.1284V33.5ZM72.1459 33.5H72.1284V35H72.1459V33.5ZM72.1634 33.5H72.1459V35H72.1634V33.5ZM72.1809 33.5H72.1634V35H72.1809V33.5ZM72.1985 33.5H72.1809V35H72.1985V33.5ZM72.216 33.5H72.1985V35H72.216V33.5ZM72.2336 33.5H72.216V35H72.2336V33.5ZM72.2511 33.5H72.2336V35H72.2511V33.5ZM72.2687 33.5H72.2511V35H72.2687V33.5ZM72.2863 33.5H72.2687V35H72.2863V33.5ZM72.304 33.5H72.2863V35H72.304V33.5ZM72.3216 33.5H72.304V35H72.3216V33.5ZM72.3392 33.5H72.3216V35H72.3392V33.5ZM72.3569 33.5H72.3392V35H72.3569V33.5ZM72.3746 33.5H72.3569V35H72.3746V33.5ZM72.3923 33.5H72.3746V35H72.3923V33.5ZM72.41 33.5H72.3923V35H72.41V33.5ZM72.4277 33.5H72.41V35H72.4277V33.5ZM72.4454 33.5H72.4277V35H72.4454V33.5ZM72.4632 33.5H72.4454V35H72.4632V33.5ZM72.4809 33.5H72.4632V35H72.4809V33.5ZM72.4987 33.5H72.4809V35H72.4987V33.5ZM72.5165 33.5H72.4987V35H72.5165V33.5ZM72.5343 33.5H72.5165V35H72.5343V33.5ZM72.5521 33.5H72.5343V35H72.5521V33.5ZM72.5699 33.5H72.5521V35H72.5699V33.5ZM72.5877 33.5H72.5699V35H72.5877V33.5ZM72.6056 33.5H72.5877V35H72.6056V33.5ZM72.6234 33.5H72.6056V35H72.6234V33.5ZM72.6413 33.5H72.6234V35H72.6413V33.5ZM72.6592 33.5H72.6413V35H72.6592V33.5ZM72.6771 33.5H72.6592V35H72.6771V33.5ZM72.695 33.5H72.6771V35H72.695V33.5ZM72.713 33.5H72.695V35H72.713V33.5ZM72.7309 33.5H72.713V35H72.7309V33.5ZM72.7489 33.5H72.7309V35H72.7489V33.5ZM72.7669 33.5H72.7489V35H72.7669V33.5ZM72.7848 33.5H72.7669V35H72.7848V33.5ZM72.8028 33.5H72.7848V35H72.8028V33.5ZM72.8209 33.5H72.8028V35H72.8209V33.5ZM72.8389 33.5H72.8209V35H72.8389V33.5ZM72.8569 33.5H72.8389V35H72.8569V33.5ZM72.875 33.5H72.8569V35H72.875V33.5ZM72.8931 33.5H72.875V35H72.8931V33.5ZM72.9111 33.5H72.8931V35H72.9111V33.5ZM72.9292 33.5H72.9111V35H72.9292V33.5ZM72.9474 33.5H72.9292V35H72.9474V33.5ZM72.9655 33.5H72.9474V35H72.9655V33.5ZM72.9836 33.5H72.9655V35H72.9836V33.5ZM73.0018 33.5H72.9836V35H73.0018V33.5ZM73.0199 33.5H73.0018V35H73.0199V33.5ZM73.0381 33.5H73.0199V35H73.0381V33.5ZM73.0563 33.5H73.0381V35H73.0563V33.5ZM73.0745 33.5H73.0563V35H73.0745V33.5ZM73.0927 33.5H73.0745V35H73.0927V33.5ZM73.111 33.5H73.0927V35H73.111V33.5ZM73.1292 33.5H73.111V35H73.1292V33.5ZM73.1475 33.5H73.1292V35H73.1475V33.5ZM73.1657 33.5H73.1475V35H73.1657V33.5ZM73.184 33.5H73.1657V35H73.184V33.5ZM73.2023 33.5H73.184V35H73.2023V33.5ZM73.2207 33.5H73.2023V35H73.2207V33.5ZM73.239 33.5H73.2207V35H73.239V33.5ZM73.2573 33.5H73.239V35H73.2573V33.5ZM73.2757 33.5H73.2573V35H73.2757V33.5ZM73.2941 33.5H73.2757V35H73.2941V33.5ZM73.3124 33.5H73.2941V35H73.3124V33.5ZM73.3308 33.5H73.3124V35H73.3308V33.5ZM73.3493 33.5H73.3308V35H73.3493V33.5ZM73.3677 33.5H73.3493V35H73.3677V33.5ZM73.3861 33.5H73.3677V35H73.3861V33.5ZM73.4046 33.5H73.3861V35H73.4046V33.5ZM73.423 33.5H73.4046V35H73.423V33.5ZM73.4415 33.5H73.423V35H73.4415V33.5ZM73.46 33.5H73.4415V35H73.46V33.5ZM73.4785 33.5H73.46V35H73.4785V33.5ZM73.497 33.5H73.4785V35H73.497V33.5ZM73.5156 33.5H73.497V35H73.5156V33.5ZM73.5341 33.5H73.5156V35H73.5341V33.5ZM73.5527 33.5H73.5341V35H73.5527V33.5ZM73.5713 33.5H73.5527V35H73.5713V33.5ZM73.5898 33.5H73.5713V35H73.5898V33.5ZM73.6084 33.5H73.5898V35H73.6084V33.5ZM73.6271 33.5H73.6084V35H73.6271V33.5ZM73.6457 33.5H73.6271V35H73.6457V33.5ZM73.6643 33.5H73.6457V35H73.6643V33.5ZM73.683 33.5H73.6643V35H73.683V33.5ZM73.7017 33.5H73.683V35H73.7017V33.5ZM73.7203 33.5H73.7017V35H73.7203V33.5ZM73.739 33.5H73.7203V35H73.739V33.5ZM73.7578 33.5H73.739V35H73.7578V33.5ZM73.7765 33.5H73.7578V35H73.7765V33.5ZM73.7952 33.5H73.7765V35H73.7952V33.5ZM73.814 33.5H73.7952V35H73.814V33.5ZM73.8327 33.5H73.814V35H73.8327V33.5ZM73.8515 33.5H73.8327V35H73.8515V33.5ZM73.8703 33.5H73.8515V35H73.8703V33.5ZM73.8891 33.5H73.8703V35H73.8891V33.5ZM73.9079 33.5H73.8891V35H73.9079V33.5ZM73.9268 33.5H73.9079V35H73.9268V33.5ZM73.9456 33.5H73.9268V35H73.9456V33.5ZM73.9645 33.5H73.9456V35H73.9645V33.5ZM73.9834 33.5H73.9645V35H73.9834V33.5ZM74.0023 33.5H73.9834V35H74.0023V33.5ZM74.0212 33.5H74.0023V35H74.0212V33.5ZM74.0401 33.5H74.0212V35H74.0401V33.5ZM74.059 33.5H74.0401V35H74.059V33.5ZM74.0779 33.5H74.059V35H74.0779V33.5ZM74.0969 33.5H74.0779V35H74.0969V33.5ZM74.1159 33.5H74.0969V35H74.1159V33.5ZM74.1349 33.5H74.1159V35H74.1349V33.5ZM74.1539 33.5H74.1349V35H74.1539V33.5ZM74.1729 33.5H74.1539V35H74.1729V33.5ZM74.1919 33.5H74.1729V35H74.1919V33.5ZM74.2109 33.5H74.1919V35H74.2109V33.5ZM74.23 33.5H74.2109V35H74.23V33.5ZM74.2491 33.5H74.23V35H74.2491V33.5ZM74.2681 33.5H74.2491V35H74.2681V33.5ZM74.2872 33.5H74.2681V35H74.2872V33.5ZM74.3063 33.5H74.2872V35H74.3063V33.5ZM74.3255 33.5H74.3063V35H74.3255V33.5ZM74.3446 33.5H74.3255V35H74.3446V33.5ZM74.3638 33.5H74.3446V35H74.3638V33.5ZM74.3829 33.5H74.3638V35H74.3829V33.5ZM74.4021 33.5H74.3829V35H74.4021V33.5ZM74.4213 33.5H74.4021V35H74.4213V33.5ZM74.4405 33.5H74.4213V35H74.4405V33.5ZM75.1905 35.75V34.25H73.6905V35.75H75.1905ZM74.4213 36.5H74.4405V35H74.4213V36.5ZM74.4021 36.5H74.4213V35H74.4021V36.5ZM74.3829 36.5H74.4021V35H74.3829V36.5ZM74.3638 36.5H74.3829V35H74.3638V36.5ZM74.3446 36.5H74.3638V35H74.3446V36.5ZM74.3255 36.5H74.3446V35H74.3255V36.5ZM74.3063 36.5H74.3255V35H74.3063V36.5ZM74.2872 36.5H74.3063V35H74.2872V36.5ZM74.2681 36.5H74.2872V35H74.2681V36.5ZM74.2491 36.5H74.2681V35H74.2491V36.5ZM74.23 36.5H74.2491V35H74.23V36.5ZM74.2109 36.5H74.23V35H74.2109V36.5ZM74.1919 36.5H74.2109V35H74.1919V36.5ZM74.1729 36.5H74.1919V35H74.1729V36.5ZM74.1539 36.5H74.1729V35H74.1539V36.5ZM74.1349 36.5H74.1539V35H74.1349V36.5ZM74.1159 36.5H74.1349V35H74.1159V36.5ZM74.0969 36.5H74.1159V35H74.0969V36.5ZM74.0779 36.5H74.0969V35H74.0779V36.5ZM74.059 36.5H74.0779V35H74.059V36.5ZM74.0401 36.5H74.059V35H74.0401V36.5ZM74.0212 36.5H74.0401V35H74.0212V36.5ZM74.0023 36.5H74.0212V35H74.0023V36.5ZM73.9834 36.5H74.0023V35H73.9834V36.5ZM73.9645 36.5H73.9834V35H73.9645V36.5ZM73.9456 36.5H73.9645V35H73.9456V36.5ZM73.9268 36.5H73.9456V35H73.9268V36.5ZM73.9079 36.5H73.9268V35H73.9079V36.5ZM73.8891 36.5H73.9079V35H73.8891V36.5ZM73.8703 36.5H73.8891V35H73.8703V36.5ZM73.8515 36.5H73.8703V35H73.8515V36.5ZM73.8327 36.5H73.8515V35H73.8327V36.5ZM73.814 36.5H73.8327V35H73.814V36.5ZM73.7952 36.5H73.814V35H73.7952V36.5ZM73.7765 36.5H73.7952V35H73.7765V36.5ZM73.7578 36.5H73.7765V35H73.7578V36.5ZM73.739 36.5H73.7578V35H73.739V36.5ZM73.7203 36.5H73.739V35H73.7203V36.5ZM73.7017 36.5H73.7203V35H73.7017V36.5ZM73.683 36.5H73.7017V35H73.683V36.5ZM73.6643 36.5H73.683V35H73.6643V36.5ZM73.6457 36.5H73.6643V35H73.6457V36.5ZM73.6271 36.5H73.6457V35H73.6271V36.5ZM73.6084 36.5H73.6271V35H73.6084V36.5ZM73.5898 36.5H73.6084V35H73.5898V36.5ZM73.5713 36.5H73.5898V35H73.5713V36.5ZM73.5527 36.5H73.5713V35H73.5527V36.5ZM73.5341 36.5H73.5527V35H73.5341V36.5ZM73.5156 36.5H73.5341V35H73.5156V36.5ZM73.497 36.5H73.5156V35H73.497V36.5ZM73.4785 36.5H73.497V35H73.4785V36.5ZM73.46 36.5H73.4785V35H73.46V36.5ZM73.4415 36.5H73.46V35H73.4415V36.5ZM73.423 36.5H73.4415V35H73.423V36.5ZM73.4046 36.5H73.423V35H73.4046V36.5ZM73.3861 36.5H73.4046V35H73.3861V36.5ZM73.3677 36.5H73.3861V35H73.3677V36.5ZM73.3493 36.5H73.3677V35H73.3493V36.5ZM73.3308 36.5H73.3493V35H73.3308V36.5ZM73.3124 36.5H73.3308V35H73.3124V36.5ZM73.2941 36.5H73.3124V35H73.2941V36.5ZM73.2757 36.5H73.2941V35H73.2757V36.5ZM73.2573 36.5H73.2757V35H73.2573V36.5ZM73.239 36.5H73.2573V35H73.239V36.5ZM73.2207 36.5H73.239V35H73.2207V36.5ZM73.2023 36.5H73.2207V35H73.2023V36.5ZM73.184 36.5H73.2023V35H73.184V36.5ZM73.1657 36.5H73.184V35H73.1657V36.5ZM73.1475 36.5H73.1657V35H73.1475V36.5ZM73.1292 36.5H73.1475V35H73.1292V36.5ZM73.111 36.5H73.1292V35H73.111V36.5ZM73.0927 36.5H73.111V35H73.0927V36.5ZM73.0745 36.5H73.0927V35H73.0745V36.5ZM73.0563 36.5H73.0745V35H73.0563V36.5ZM73.0381 36.5H73.0563V35H73.0381V36.5ZM73.0199 36.5H73.0381V35H73.0199V36.5ZM73.0018 36.5H73.0199V35H73.0018V36.5ZM72.9836 36.5H73.0018V35H72.9836V36.5ZM72.9655 36.5H72.9836V35H72.9655V36.5ZM72.9474 36.5H72.9655V35H72.9474V36.5ZM72.9292 36.5H72.9474V35H72.9292V36.5ZM72.9111 36.5H72.9292V35H72.9111V36.5ZM72.8931 36.5H72.9111V35H72.8931V36.5ZM72.875 36.5H72.8931V35H72.875V36.5ZM72.8569 36.5H72.875V35H72.8569V36.5ZM72.8389 36.5H72.8569V35H72.8389V36.5ZM72.8209 36.5H72.8389V35H72.8209V36.5ZM72.8028 36.5H72.8209V35H72.8028V36.5ZM72.7848 36.5H72.8028V35H72.7848V36.5ZM72.7669 36.5H72.7848V35H72.7669V36.5ZM72.7489 36.5H72.7669V35H72.7489V36.5ZM72.7309 36.5H72.7489V35H72.7309V36.5ZM72.713 36.5H72.7309V35H72.713V36.5ZM72.695 36.5H72.713V35H72.695V36.5ZM72.6771 36.5H72.695V35H72.6771V36.5ZM72.6592 36.5H72.6771V35H72.6592V36.5ZM72.6413 36.5H72.6592V35H72.6413V36.5ZM72.6234 36.5H72.6413V35H72.6234V36.5ZM72.6056 36.5H72.6234V35H72.6056V36.5ZM72.5877 36.5H72.6056V35H72.5877V36.5ZM72.5699 36.5H72.5877V35H72.5699V36.5ZM72.5521 36.5H72.5699V35H72.5521V36.5ZM72.5343 36.5H72.5521V35H72.5343V36.5ZM72.5165 36.5H72.5343V35H72.5165V36.5ZM72.4987 36.5H72.5165V35H72.4987V36.5ZM72.4809 36.5H72.4987V35H72.4809V36.5ZM72.4632 36.5H72.4809V35H72.4632V36.5ZM72.4454 36.5H72.4632V35H72.4454V36.5ZM72.4277 36.5H72.4454V35H72.4277V36.5ZM72.41 36.5H72.4277V35H72.41V36.5ZM72.3923 36.5H72.41V35H72.3923V36.5ZM72.3746 36.5H72.3923V35H72.3746V36.5ZM72.3569 36.5H72.3746V35H72.3569V36.5ZM72.3392 36.5H72.3569V35H72.3392V36.5ZM72.3216 36.5H72.3392V35H72.3216V36.5ZM72.304 36.5H72.3216V35H72.304V36.5ZM72.2863 36.5H72.304V35H72.2863V36.5ZM72.2687 36.5H72.2863V35H72.2687V36.5ZM72.2511 36.5H72.2687V35H72.2511V36.5ZM72.2336 36.5H72.2511V35H72.2336V36.5ZM72.216 36.5H72.2336V35H72.216V36.5ZM72.1985 36.5H72.216V35H72.1985V36.5ZM72.1809 36.5H72.1985V35H72.1809V36.5ZM72.1634 36.5H72.1809V35H72.1634V36.5ZM72.1459 36.5H72.1634V35H72.1459V36.5ZM72.1284 36.5H72.1459V35H72.1284V36.5ZM72.1109 36.5H72.1284V35H72.1109V36.5ZM72.0934 36.5H72.1109V35H72.0934V36.5ZM72.076 36.5H72.0934V35H72.076V36.5ZM72.0585 36.5H72.076V35H72.0585V36.5ZM72.0411 36.5H72.0585V35H72.0411V36.5ZM72.0237 36.5H72.0411V35H72.0237V36.5ZM72.0063 36.5H72.0237V35H72.0063V36.5ZM71.9889 36.5H72.0063V35H71.9889V36.5ZM71.9715 36.5H71.9889V35H71.9715V36.5ZM71.9542 36.5H71.9715V35H71.9542V36.5ZM71.9368 36.5H71.9542V35H71.9368V36.5ZM71.9195 36.5H71.9368V35H71.9195V36.5ZM71.9022 36.5H71.9195V35H71.9022V36.5ZM71.8849 36.5H71.9022V35H71.8849V36.5ZM71.8676 36.5H71.8849V35H71.8676V36.5ZM71.8503 36.5H71.8676V35H71.8503V36.5ZM71.833 36.5H71.8503V35H71.833V36.5ZM71.8158 36.5H71.833V35H71.8158V36.5ZM71.7986 36.5H71.8158V35H71.7986V36.5ZM71.7813 36.5H71.7986V35H71.7813V36.5ZM71.7641 36.5H71.7813V35H71.7641V36.5ZM71.7469 36.5H71.7641V35H71.7469V36.5ZM71.7297 36.5H71.7469V35H71.7297V36.5ZM71.7126 36.5H71.7297V35H71.7126V36.5ZM71.6954 36.5H71.7126V35H71.6954V36.5ZM71.6783 36.5H71.6954V35H71.6783V36.5ZM71.6612 36.5H71.6783V35H71.6612V36.5ZM71.644 36.5H71.6612V35H71.644V36.5ZM71.6269 36.5H71.644V35H71.6269V36.5ZM71.6099 36.5H71.6269V35H71.6099V36.5ZM71.5928 36.5H71.6099V35H71.5928V36.5ZM71.5757 36.5H71.5928V35H71.5757V36.5ZM71.5587 36.5H71.5757V35H71.5587V36.5ZM71.5416 36.5H71.5587V35H71.5416V36.5ZM71.5246 36.5H71.5416V35H71.5246V36.5ZM71.5076 36.5H71.5246V35H71.5076V36.5ZM71.4906 36.5H71.5076V35H71.4906V36.5ZM71.4737 36.5H71.4906V35H71.4737V36.5ZM71.4567 36.5H71.4737V35H71.4567V36.5ZM71.4397 36.5H71.4567V35H71.4397V36.5ZM71.4228 36.5H71.4397V35H71.4228V36.5ZM71.4059 36.5H71.4228V35H71.4059V36.5ZM71.389 36.5H71.4059V35H71.389V36.5ZM71.3721 36.5H71.389V35H71.3721V36.5ZM71.3552 36.5H71.3721V35H71.3552V36.5ZM71.3383 36.5H71.3552V35H71.3383V36.5ZM71.3215 36.5H71.3383V35H71.3215V36.5ZM71.3046 36.5H71.3215V35H71.3046V36.5ZM71.2878 36.5H71.3046V35H71.2878V36.5ZM71.271 36.5H71.2878V35H71.271V36.5ZM71.2542 36.5H71.271V35H71.2542V36.5ZM71.2374 36.5H71.2542V35H71.2374V36.5ZM71.2206 36.5H71.2374V35H71.2206V36.5ZM71.2039 36.5H71.2206V35H71.2039V36.5ZM71.1871 36.5H71.2039V35H71.1871V36.5ZM71.1704 36.5H71.1871V35H71.1704V36.5ZM71.1537 36.5H71.1704V35H71.1537V36.5ZM71.137 36.5H71.1537V35H71.137V36.5ZM71.1203 36.5H71.137V35H71.1203V36.5ZM71.1036 36.5H71.1203V35H71.1036V36.5ZM71.0869 36.5H71.1036V35H71.0869V36.5ZM71.0703 36.5H71.0869V35H71.0703V36.5ZM71.0537 36.5H71.0703V35H71.0537V36.5ZM71.037 36.5H71.0537V35H71.037V36.5ZM71.0204 36.5H71.037V35H71.0204V36.5ZM71.0038 36.5H71.0204V35H71.0038V36.5ZM70.9873 36.5H71.0038V35H70.9873V36.5ZM70.9707 36.5H70.9873V35H70.9707V36.5ZM70.9541 36.5H70.9707V35H70.9541V36.5ZM70.9376 36.5H70.9541V35H70.9376V36.5ZM70.9211 36.5H70.9376V35H70.9211V36.5ZM70.9046 36.5H70.9211V35H70.9046V36.5ZM70.8881 36.5H70.9046V35H70.8881V36.5ZM70.8716 36.5H70.8881V35H70.8716V36.5ZM70.8551 36.5H70.8716V35H70.8551V36.5ZM70.8386 36.5H70.8551V35H70.8386V36.5ZM70.8222 36.5H70.8386V35H70.8222V36.5ZM70.8058 36.5H70.8222V35H70.8058V36.5ZM70.7893 36.5H70.8058V35H70.7893V36.5ZM70.7729 36.5H70.7893V35H70.7729V36.5ZM70.7566 36.5H70.7729V35H70.7566V36.5ZM70.7402 36.5H70.7566V35H70.7402V36.5ZM70.7238 36.5H70.7402V35H70.7238V36.5ZM70.7075 36.5H70.7238V35H70.7075V36.5ZM70.6911 36.5H70.7075V35H70.6911V36.5ZM70.6748 36.5H70.6911V35H70.6748V36.5ZM70.6585 36.5H70.6748V35H70.6585V36.5ZM70.6422 36.5H70.6585V35H70.6422V36.5ZM70.6259 36.5H70.6422V35H70.6259V36.5ZM70.6097 36.5H70.6259V35H70.6097V36.5ZM70.5934 36.5H70.6097V35H70.5934V36.5ZM70.5772 36.5H70.5934V35H70.5772V36.5ZM70.5609 36.5H70.5772V35H70.5609V36.5ZM70.5447 36.5H70.5609V35H70.5447V36.5ZM70.5285 36.5H70.5447V35H70.5285V36.5ZM70.5123 36.5H70.5285V35H70.5123V36.5ZM70.4962 36.5H70.5123V35H70.4962V36.5ZM70.48 36.5H70.4962V35H70.48V36.5ZM70.4639 36.5H70.48V35H70.4639V36.5ZM70.4477 36.5H70.4639V35H70.4477V36.5ZM70.4316 36.5H70.4477V35H70.4316V36.5ZM70.4155 36.5H70.4316V35H70.4155V36.5ZM70.3994 36.5H70.4155V35H70.3994V36.5ZM70.3834 36.5H70.3994V35H70.3834V36.5ZM70.3673 36.5H70.3834V35H70.3673V36.5ZM70.3512 36.5H70.3673V35H70.3512V36.5ZM70.3352 36.5H70.3512V35H70.3352V36.5ZM70.3192 36.5H70.3352V35H70.3192V36.5ZM70.3032 36.5H70.3192V35H70.3032V36.5ZM70.2872 36.5H70.3032V35H70.2872V36.5ZM70.2712 36.5H70.2872V35H70.2712V36.5ZM70.2552 36.5H70.2712V35H70.2552V36.5ZM70.2393 36.5H70.2552V35H70.2393V36.5ZM70.2234 36.5H70.2393V35H70.2234V36.5ZM70.2074 36.5H70.2234V35H70.2074V36.5ZM70.1915 36.5H70.2074V35H70.1915V36.5ZM70.1756 36.5H70.1915V35H70.1756V36.5ZM70.1597 36.5H70.1756V35H70.1597V36.5ZM70.1439 36.5H70.1597V35H70.1439V36.5ZM70.128 36.5H70.1439V35H70.128V36.5ZM70.1122 36.5H70.128V35H70.1122V36.5ZM70.0963 36.5H70.1122V35H70.0963V36.5ZM70.0805 36.5H70.0963V35H70.0805V36.5ZM70.0647 36.5H70.0805V35H70.0647V36.5ZM70.0489 36.5H70.0647V35H70.0489V36.5ZM70.0331 36.5H70.0489V35H70.0331V36.5ZM70.0174 36.5H70.0331V35H70.0174V36.5ZM70.0016 36.5H70.0174V35H70.0016V36.5ZM69.9859 36.5H70.0016V35H69.9859V36.5ZM69.9702 36.5H69.9859V35H69.9702V36.5ZM69.9545 36.5H69.9702V35H69.9545V36.5ZM69.9388 36.5H69.9545V35H69.9388V36.5ZM69.9231 36.5H69.9388V35H69.9231V36.5ZM69.9074 36.5H69.9231V35H69.9074V36.5ZM69.8918 36.5H69.9074V35H69.8918V36.5ZM69.8761 36.5H69.8918V35H69.8761V36.5ZM69.8605 36.5H69.8761V35H69.8605V36.5ZM69.8449 36.5H69.8605V35H69.8449V36.5ZM69.8293 36.5H69.8449V35H69.8293V36.5ZM69.8137 36.5H69.8293V35H69.8137V36.5ZM69.7982 36.5H69.8137V35H69.7982V36.5ZM69.7826 36.5H69.7982V35H69.7826V36.5ZM69.7671 36.5H69.7826V35H69.7671V36.5ZM69.7515 36.5H69.7671V35H69.7515V36.5ZM69.736 36.5H69.7515V35H69.736V36.5ZM69.7205 36.5H69.736V35H69.7205V36.5ZM69.705 36.5H69.7205V35H69.705V36.5ZM69.6895 36.5H69.705V35H69.6895V36.5ZM69.6741 36.5H69.6895V35H69.6741V36.5ZM69.6586 36.5H69.6741V35H69.6586V36.5ZM69.6432 36.5H69.6586V35H69.6432V36.5ZM69.6278 36.5H69.6432V35H69.6278V36.5ZM69.6124 36.5H69.6278V35H69.6124V36.5ZM69.597 36.5H69.6124V35H69.597V36.5ZM69.5816 36.5H69.597V35H69.5816V36.5ZM69.5662 36.5H69.5816V35H69.5662V36.5ZM69.5509 36.5H69.5662V35H69.5509V36.5ZM69.5356 36.5H69.5509V35H69.5356V36.5ZM69.5202 36.5H69.5356V35H69.5202V36.5ZM69.5049 36.5H69.5202V35H69.5049V36.5ZM69.4896 36.5H69.5049V35H69.4896V36.5ZM69.4743 36.5H69.4896V35H69.4743V36.5ZM69.4591 36.5H69.4743V35H69.4591V36.5ZM69.4438 36.5H69.4591V35H69.4438V36.5ZM69.4286 36.5H69.4438V35H69.4286V36.5ZM69.4133 36.5H69.4286V35H69.4133V36.5ZM69.3981 36.5H69.4133V35H69.3981V36.5ZM69.3829 36.5H69.3981V35H69.3829V36.5ZM69.3677 36.5H69.3829V35H69.3677V36.5ZM69.3526 36.5H69.3677V35H69.3526V36.5ZM69.3374 36.5H69.3526V35H69.3374V36.5ZM69.3223 36.5H69.3374V35H69.3223V36.5ZM69.3071 36.5H69.3223V35H69.3071V36.5ZM69.292 36.5H69.3071V35H69.292V36.5ZM69.2769 36.5H69.292V35H69.2769V36.5ZM69.2618 36.5H69.2769V35H69.2618V36.5ZM69.2467 36.5H69.2618V35H69.2467V36.5ZM69.2317 36.5H69.2467V35H69.2317V36.5ZM69.2166 36.5H69.2317V35H69.2166V36.5ZM69.2016 36.5H69.2166V35H69.2016V36.5ZM69.1865 36.5H69.2016V35H69.1865V36.5ZM69.1715 36.5H69.1865V35H69.1715V36.5ZM69.1565 36.5H69.1715V35H69.1565V36.5ZM69.1416 36.5H69.1565V35H69.1416V36.5ZM69.1266 36.5H69.1416V35H69.1266V36.5ZM69.1116 36.5H69.1266V35H69.1116V36.5ZM69.0967 36.5H69.1116V35H69.0967V36.5ZM69.0818 36.5H69.0967V35H69.0818V36.5ZM69.0668 36.5H69.0818V35H69.0668V36.5ZM69.0519 36.5H69.0668V35H69.0519V36.5ZM69.0371 36.5H69.0519V35H69.0371V36.5ZM69.0222 36.5H69.0371V35H69.0222V36.5ZM69.0073 36.5H69.0222V35H69.0073V36.5ZM68.9925 36.5H69.0073V35H68.9925V36.5ZM68.9776 36.5H68.9925V35H68.9776V36.5ZM68.9628 36.5H68.9776V35H68.9628V36.5ZM68.948 36.5H68.9628V35H68.948V36.5ZM68.9332 36.5H68.948V35H68.9332V36.5ZM68.9184 36.5H68.9332V35H68.9184V36.5ZM68.9037 36.5H68.9184V35H68.9037V36.5ZM68.8889 36.5H68.9037V35H68.8889V36.5ZM68.8742 36.5H68.8889V35H68.8742V36.5ZM68.8595 36.5H68.8742V35H68.8595V36.5ZM68.8448 36.5H68.8595V35H68.8448V36.5ZM68.8301 36.5H68.8448V35H68.8301V36.5ZM68.8154 36.5H68.8301V35H68.8154V36.5ZM68.8007 36.5H68.8154V35H68.8007V36.5ZM68.7861 36.5H68.8007V35H68.7861V36.5ZM68.7714 36.5H68.7861V35H68.7714V36.5ZM68.7568 36.5H68.7714V35H68.7568V36.5ZM68.7422 36.5H68.7568V35H68.7422V36.5ZM68.7276 36.5H68.7422V35H68.7276V36.5ZM68.713 36.5H68.7276V35H68.713V36.5ZM68.6984 36.5H68.713V35H68.6984V36.5ZM68.6839 36.5H68.6984V35H68.6839V36.5ZM68.6693 36.5H68.6839V35H68.6693V36.5ZM68.6548 36.5H68.6693V35H68.6548V36.5ZM68.6403 36.5H68.6548V35H68.6403V36.5ZM68.6258 36.5H68.6403V35H68.6258V36.5ZM68.6113 36.5H68.6258V35H68.6113V36.5ZM68.5968 36.5H68.6113V35H68.5968V36.5ZM68.5823 36.5H68.5968V35H68.5823V36.5ZM68.5679 36.5H68.5823V35H68.5679V36.5ZM68.5534 36.5H68.5679V35H68.5534V36.5ZM68.539 36.5H68.5534V35H68.539V36.5ZM68.5246 36.5H68.539V35H68.5246V36.5ZM68.5102 36.5H68.5246V35H68.5102V36.5ZM68.4958 36.5H68.5102V35H68.4958V36.5ZM68.4815 36.5H68.4958V35H68.4815V36.5ZM68.4671 36.5H68.4815V35H68.4671V36.5ZM68.4528 36.5H68.4671V35H68.4528V36.5ZM68.4384 36.5H68.4528V35H68.4384V36.5ZM68.4241 36.5H68.4384V35H68.4241V36.5ZM68.4098 36.5H68.4241V35H68.4098V36.5ZM68.3955 36.5H68.4098V35H68.3955V36.5ZM68.3813 36.5H68.3955V35H68.3813V36.5ZM68.367 36.5H68.3813V35H68.367V36.5ZM68.3528 36.5H68.367V35H68.3528V36.5ZM68.3385 36.5H68.3528V35H68.3385V36.5ZM68.3243 36.5H68.3385V35H68.3243V36.5ZM68.3101 36.5H68.3243V35H68.3101V36.5ZM68.2959 36.5H68.3101V35H68.2959V36.5ZM68.2817 36.5H68.2959V35H68.2817V36.5ZM68.2676 36.5H68.2817V35H68.2676V36.5ZM68.2534 36.5H68.2676V35H68.2534V36.5ZM68.2393 36.5H68.2534V35H68.2393V36.5ZM68.2252 36.5H68.2393V35H68.2252V36.5ZM68.2111 36.5H68.2252V35H68.2111V36.5ZM68.197 36.5H68.2111V35H68.197V36.5ZM68.1829 36.5H68.197V35H68.1829V36.5ZM68.1688 36.5H68.1829V35H68.1688V36.5ZM68.1548 36.5H68.1688V35H68.1548V36.5ZM68.1407 36.5H68.1548V35H68.1407V36.5ZM68.1267 36.5H68.1407V35H68.1267V36.5ZM68.1127 36.5H68.1267V35H68.1127V36.5ZM68.0987 36.5H68.1127V35H68.0987V36.5ZM68.0847 36.5H68.0987V35H68.0847V36.5ZM68.0707 36.5H68.0847V35H68.0707V36.5ZM68.0568 36.5H68.0707V35H68.0568V36.5ZM68.0428 36.5H68.0568V35H68.0428V36.5ZM68.0289 36.5H68.0428V35H68.0289V36.5ZM68.015 36.5H68.0289V35H68.015V36.5ZM68.0011 36.5H68.015V35H68.0011V36.5ZM67.9872 36.5H68.0011V35H67.9872V36.5ZM67.9733 36.5H67.9872V35H67.9733V36.5ZM67.9594 36.5H67.9733V35H67.9594V36.5ZM67.9456 36.5H67.9594V35H67.9456V36.5ZM67.9318 36.5H67.9456V35H67.9318V36.5ZM67.9179 36.5H67.9318V35H67.9179V36.5ZM67.9041 36.5H67.9179V35H67.9041V36.5ZM67.8903 36.5H67.9041V35H67.8903V36.5ZM67.8765 36.5H67.8903V35H67.8765V36.5ZM67.8628 36.5H67.8765V35H67.8628V36.5ZM67.849 36.5H67.8628V35H67.849V36.5ZM67.8353 36.5H67.849V35H67.8353V36.5ZM67.8216 36.5H67.8353V35H67.8216V36.5ZM67.8078 36.5H67.8216V35H67.8078V36.5ZM67.7941 36.5H67.8078V35H67.7941V36.5ZM67.7805 36.5H67.7941V35H67.7805V36.5ZM67.7668 36.5H67.7805V35H67.7668V36.5ZM67.7531 36.5H67.7668V35H67.7531V36.5ZM67.7395 36.5H67.7531V35H67.7395V36.5ZM67.7259 36.5H67.7395V35H67.7259V36.5ZM67.7122 36.5H67.7259V35H67.7122V36.5ZM67.6986 36.5H67.7122V35H67.6986V36.5ZM67.685 36.5H67.6986V35H67.685V36.5ZM67.6715 36.5H67.685V35H67.6715V36.5ZM67.6579 36.5H67.6715V35H67.6579V36.5ZM67.6444 36.5H67.6579V35H67.6444V36.5ZM67.6308 36.5H67.6444V35H67.6308V36.5ZM67.6173 36.5H67.6308V35H67.6173V36.5ZM67.6038 36.5H67.6173V35H67.6038V36.5ZM67.5903 36.5H67.6038V35H67.5903V36.5ZM67.5768 36.5H67.5903V35H67.5768V36.5ZM67.5634 36.5H67.5768V35H67.5634V36.5ZM67.5499 36.5H67.5634V35H67.5499V36.5ZM67.5365 36.5H67.5499V35H67.5365V36.5ZM67.523 36.5H67.5365V35H67.523V36.5ZM67.5096 36.5H67.523V35H67.5096V36.5ZM67.4962 36.5H67.5096V35H67.4962V36.5ZM67.4828 36.5H67.4962V35H67.4828V36.5ZM67.4695 36.5H67.4828V35H67.4695V36.5ZM67.4561 36.5H67.4695V35H67.4561V36.5ZM67.4428 36.5H67.4561V35H67.4428V36.5ZM67.4294 36.5H67.4428V35H67.4294V36.5ZM67.4161 36.5H67.4294V35H67.4161V36.5ZM67.4028 36.5H67.4161V35H67.4028V36.5ZM67.3895 36.5H67.4028V35H67.3895V36.5ZM67.3763 36.5H67.3895V35H67.3763V36.5ZM67.363 36.5H67.3763V35H67.363V36.5ZM67.3497 36.5H67.363V35H67.3497V36.5ZM67.3365 36.5H67.3497V35H67.3365V36.5ZM67.3233 36.5H67.3365V35H67.3233V36.5ZM67.3101 36.5H67.3233V35H67.3101V36.5ZM67.2969 36.5H67.3101V35H67.2969V36.5ZM67.2837 36.5H67.2969V35H67.2837V36.5ZM67.2705 36.5H67.2837V35H67.2705V36.5ZM67.2574 36.5H67.2705V35H67.2574V36.5ZM67.2442 36.5H67.2574V35H67.2442V36.5ZM67.2311 36.5H67.2442V35H67.2311V36.5ZM67.218 36.5H67.2311V35H67.218V36.5ZM67.2049 36.5H67.218V35H67.2049V36.5ZM67.1918 36.5H67.2049V35H67.1918V36.5ZM67.1788 36.5H67.1918V35H67.1788V36.5ZM67.1657 36.5H67.1788V35H67.1657V36.5ZM67.1527 36.5H67.1657V35H67.1527V36.5ZM67.1396 36.5H67.1527V35H67.1396V36.5ZM67.1266 36.5H67.1396V35H67.1266V36.5ZM67.1136 36.5H67.1266V35H67.1136V36.5ZM67.1006 36.5H67.1136V35H67.1006V36.5ZM67.0876 36.5H67.1006V35H67.0876V36.5ZM67.0747 36.5H67.0876V35H67.0747V36.5ZM67.0617 36.5H67.0747V35H67.0617V36.5ZM67.0488 36.5H67.0617V35H67.0488V36.5ZM67.0359 36.5H67.0488V35H67.0359V36.5ZM67.023 36.5H67.0359V35H67.023V36.5ZM67.0101 36.5H67.023V35H67.0101V36.5ZM66.9972 36.5H67.0101V35H66.9972V36.5ZM66.9843 36.5H66.9972V35H66.9843V36.5ZM66.9715 36.5H66.9843V35H66.9715V36.5ZM66.9586 36.5H66.9715V35H66.9586V36.5ZM66.9458 36.5H66.9586V35H66.9458V36.5ZM66.933 36.5H66.9458V35H66.933V36.5ZM66.9202 36.5H66.933V35H66.9202V36.5ZM66.9074 36.5H66.9202V35H66.9074V36.5ZM66.8947 36.5H66.9074V35H66.8947V36.5ZM66.8819 36.5H66.8947V35H66.8819V36.5ZM66.8692 36.5H66.8819V35H66.8692V36.5ZM66.8564 36.5H66.8692V35H66.8564V36.5ZM66.8437 36.5H66.8564V35H66.8437V36.5ZM66.831 36.5H66.8437V35H66.831V36.5ZM66.8183 36.5H66.831V35H66.8183V36.5ZM66.8057 36.5H66.8183V35H66.8057V36.5ZM66.793 36.5H66.8057V35H66.793V36.5ZM66.7803 36.5H66.793V35H66.7803V36.5ZM66.7677 36.5H66.7803V35H66.7677V36.5ZM66.7551 36.5H66.7677V35H66.7551V36.5ZM66.7425 36.5H66.7551V35H66.7425V36.5ZM66.7299 36.5H66.7425V35H66.7299V36.5ZM66.7173 36.5H66.7299V35H66.7173V36.5ZM66.7047 36.5H66.7173V35H66.7047V36.5ZM66.6922 36.5H66.7047V35H66.6922V36.5ZM66.6797 36.5H66.6922V35H66.6797V36.5ZM66.6671 36.5H66.6797V35H66.6671V36.5ZM66.6546 36.5H66.6671V35H66.6546V36.5ZM66.6421 36.5H66.6546V35H66.6421V36.5ZM66.6296 36.5H66.6421V35H66.6296V36.5ZM66.6172 36.5H66.6296V35H66.6172V36.5ZM66.6047 36.5H66.6172V35H66.6047V36.5ZM66.5923 36.5H66.6047V35H66.5923V36.5ZM66.5798 36.5H66.5923V35H66.5798V36.5ZM66.5674 36.5H66.5798V35H66.5674V36.5ZM66.555 36.5H66.5674V35H66.555V36.5ZM66.5426 36.5H66.555V35H66.5426V36.5ZM66.5303 36.5H66.5426V35H66.5303V36.5ZM66.5179 36.5H66.5303V35H66.5179V36.5ZM66.5056 36.5H66.5179V35H66.5056V36.5ZM66.4932 36.5H66.5056V35H66.4932V36.5ZM66.4809 36.5H66.4932V35H66.4809V36.5ZM66.4686 36.5H66.4809V35H66.4686V36.5ZM66.4563 36.5H66.4686V35H66.4563V36.5ZM66.444 36.5H66.4563V35H66.444V36.5ZM66.4318 36.5H66.444V35H66.4318V36.5ZM66.4195 36.5H66.4318V35H66.4195V36.5ZM66.4073 36.5H66.4195V35H66.4073V36.5Z",
|
|
38
|
+
fill: "#3B3552"
|
|
39
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
40
|
+
d: "M51.8975 80.41H78.171",
|
|
41
|
+
stroke: "#3B3552",
|
|
42
|
+
strokeWidth: "1.5",
|
|
43
|
+
strokeLinecap: "round"
|
|
44
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
45
|
+
d: "M51.8975 89.4706H70.9231",
|
|
46
|
+
stroke: "#3B3552",
|
|
47
|
+
strokeWidth: "1.5",
|
|
48
|
+
strokeLinecap: "round"
|
|
49
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
50
|
+
x: "41.7759",
|
|
51
|
+
y: "54.4336",
|
|
52
|
+
width: "85.4744",
|
|
53
|
+
height: "13.9017",
|
|
54
|
+
fill: "white",
|
|
55
|
+
stroke: "#3B3552",
|
|
56
|
+
strokeWidth: "1.5"
|
|
57
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
58
|
+
x: "43.7437",
|
|
59
|
+
y: "56.4014",
|
|
60
|
+
width: "81.5385",
|
|
61
|
+
height: "9.96581",
|
|
62
|
+
rx: "1",
|
|
63
|
+
fill: "#3040D6"
|
|
64
|
+
}));
|
|
65
|
+
export default Cards;
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export const Clip = ({
|
|
3
|
+
width = 152,
|
|
4
|
+
height = 152
|
|
5
|
+
}) => /*#__PURE__*/React.createElement("svg", {
|
|
6
|
+
width: width,
|
|
7
|
+
height: height,
|
|
8
|
+
viewBox: "0 0 152 152",
|
|
9
|
+
fill: "none",
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
11
|
+
}, /*#__PURE__*/React.createElement("circle", {
|
|
12
|
+
cx: "76",
|
|
13
|
+
cy: "76",
|
|
14
|
+
r: "76",
|
|
15
|
+
fill: "white"
|
|
16
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
17
|
+
x: "37.75",
|
|
18
|
+
y: "33.6338",
|
|
19
|
+
width: "76.5",
|
|
20
|
+
height: "91.0116",
|
|
21
|
+
rx: "3.25",
|
|
22
|
+
fill: "white",
|
|
23
|
+
stroke: "#3B3552",
|
|
24
|
+
strokeWidth: "1.5"
|
|
25
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
26
|
+
x: "40.6279",
|
|
27
|
+
y: "36.5117",
|
|
28
|
+
width: "70.7442",
|
|
29
|
+
height: "85.2558",
|
|
30
|
+
rx: "2",
|
|
31
|
+
fill: "#3040D6",
|
|
32
|
+
fillOpacity: "0.05"
|
|
33
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
34
|
+
x: "44.0986",
|
|
35
|
+
y: "38.1689",
|
|
36
|
+
width: "63.8023",
|
|
37
|
+
height: "79.2209",
|
|
38
|
+
rx: "1.25",
|
|
39
|
+
fill: "white",
|
|
40
|
+
stroke: "#3B3552",
|
|
41
|
+
strokeWidth: "1.5"
|
|
42
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
43
|
+
d: "M63.3022 80.5004H88.6976",
|
|
44
|
+
stroke: "#3B3552",
|
|
45
|
+
strokeWidth: "1.5",
|
|
46
|
+
strokeLinecap: "round"
|
|
47
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
48
|
+
cx: "76.0002",
|
|
49
|
+
cy: "63.7214",
|
|
50
|
+
r: "8.16279",
|
|
51
|
+
fill: "#3040D6"
|
|
52
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
53
|
+
d: "M63.3022 89.5697H88.6976",
|
|
54
|
+
stroke: "#3B3552",
|
|
55
|
+
strokeWidth: "1.5",
|
|
56
|
+
strokeLinecap: "round"
|
|
57
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
58
|
+
d: "M63.3022 98.64H88.6976",
|
|
59
|
+
stroke: "#3B3552",
|
|
60
|
+
strokeWidth: "1.5",
|
|
61
|
+
strokeLinecap: "round"
|
|
62
|
+
}), /*#__PURE__*/React.createElement("mask", {
|
|
63
|
+
id: "path-9-inside-1_0_2394",
|
|
64
|
+
fill: "white"
|
|
65
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
66
|
+
fillRule: "evenodd",
|
|
67
|
+
clipRule: "evenodd",
|
|
68
|
+
d: "M81.4419 27.4419H101.93C104.139 27.4419 105.93 29.2327 105.93 31.4419V38.8605C105.93 41.0696 104.139 42.8605 101.93 42.8605H50.0698C47.8607 42.8605 46.0698 41.0696 46.0698 38.8605V31.4419C46.0698 29.2327 47.8607 27.4419 50.0698 27.4419H70.5582C70.5582 24.4364 72.9946 22 76.0001 22C79.0055 22 81.4419 24.4364 81.4419 27.4419Z"
|
|
69
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
70
|
+
fillRule: "evenodd",
|
|
71
|
+
clipRule: "evenodd",
|
|
72
|
+
d: "M81.4419 27.4419H101.93C104.139 27.4419 105.93 29.2327 105.93 31.4419V38.8605C105.93 41.0696 104.139 42.8605 101.93 42.8605H50.0698C47.8607 42.8605 46.0698 41.0696 46.0698 38.8605V31.4419C46.0698 29.2327 47.8607 27.4419 50.0698 27.4419H70.5582C70.5582 24.4364 72.9946 22 76.0001 22C79.0055 22 81.4419 24.4364 81.4419 27.4419Z",
|
|
73
|
+
fill: "white"
|
|
74
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
75
|
+
d: "M81.4419 27.4419H79.9419V28.9419H81.4419V27.4419ZM70.5582 27.4419V28.9419H72.0582V27.4419H70.5582ZM81.4419 28.9419H101.93V25.9419H81.4419V28.9419ZM101.93 28.9419C103.311 28.9419 104.43 30.0611 104.43 31.4419H107.43C107.43 28.4043 104.968 25.9419 101.93 25.9419V28.9419ZM104.43 31.4419V38.8605H107.43V31.4419H104.43ZM104.43 38.8605C104.43 40.2412 103.311 41.3605 101.93 41.3605V44.3605C104.968 44.3605 107.43 41.898 107.43 38.8605H104.43ZM101.93 41.3605H50.0698V44.3605H101.93V41.3605ZM50.0698 41.3605C48.6891 41.3605 47.5698 40.2412 47.5698 38.8605H44.5698C44.5698 41.898 47.0323 44.3605 50.0698 44.3605V41.3605ZM47.5698 38.8605V31.4419H44.5698V38.8605H47.5698ZM47.5698 31.4419C47.5698 30.0611 48.6891 28.9419 50.0698 28.9419V25.9419C47.0323 25.9419 44.5698 28.4043 44.5698 31.4419H47.5698ZM50.0698 28.9419H70.5582V25.9419H50.0698V28.9419ZM72.0582 27.4419C72.0582 25.2648 73.823 23.5 76.0001 23.5V20.5C72.1662 20.5 69.0582 23.608 69.0582 27.4419H72.0582ZM76.0001 23.5C78.1771 23.5 79.9419 25.2648 79.9419 27.4419H82.9419C82.9419 23.608 79.8339 20.5 76.0001 20.5V23.5Z",
|
|
76
|
+
fill: "#3B3552",
|
|
77
|
+
mask: "url(#path-9-inside-1_0_2394)"
|
|
78
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
79
|
+
x: "48.7905",
|
|
80
|
+
y: "34.6973",
|
|
81
|
+
width: "54.4186",
|
|
82
|
+
height: "5.44186",
|
|
83
|
+
rx: "1",
|
|
84
|
+
fill: "#3040D6",
|
|
85
|
+
fillOpacity: "0.05"
|
|
86
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
87
|
+
d: "M50.3636 31.5H57.6364",
|
|
88
|
+
stroke: "#3B3552",
|
|
89
|
+
strokeWidth: "1.5",
|
|
90
|
+
strokeLinecap: "round"
|
|
91
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
92
|
+
d: "M61.0909 31.5H62.9091",
|
|
93
|
+
stroke: "#3B3552",
|
|
94
|
+
strokeWidth: "1.5",
|
|
95
|
+
strokeLinecap: "round"
|
|
96
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
97
|
+
d: "M121 66V85",
|
|
98
|
+
stroke: "#3B3552",
|
|
99
|
+
strokeWidth: "1.5",
|
|
100
|
+
strokeLinecap: "round"
|
|
101
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
102
|
+
d: "M121 90V98",
|
|
103
|
+
stroke: "#3B3552",
|
|
104
|
+
strokeWidth: "1.5",
|
|
105
|
+
strokeLinecap: "round"
|
|
106
|
+
}));
|
|
107
|
+
export default Clip;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export const Cloud = ({
|
|
3
|
+
width = 152,
|
|
4
|
+
height = 152
|
|
5
|
+
}) => /*#__PURE__*/React.createElement("svg", {
|
|
6
|
+
width: width,
|
|
7
|
+
height: height,
|
|
8
|
+
viewBox: "0 0 152 152",
|
|
9
|
+
fill: "none",
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
11
|
+
}, /*#__PURE__*/React.createElement("circle", {
|
|
12
|
+
cx: "76",
|
|
13
|
+
cy: "76",
|
|
14
|
+
r: "76",
|
|
15
|
+
fill: "white"
|
|
16
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
17
|
+
cx: "118.584",
|
|
18
|
+
cy: "67.7497",
|
|
19
|
+
r: "15.4167",
|
|
20
|
+
fill: "#3040D6"
|
|
21
|
+
}), /*#__PURE__*/React.createElement("mask", {
|
|
22
|
+
id: "path-3-inside-1_0_2342",
|
|
23
|
+
fill: "white"
|
|
24
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25
|
+
fillRule: "evenodd",
|
|
26
|
+
clipRule: "evenodd",
|
|
27
|
+
d: "M113.745 105.738H39.2599V105.729C39.062 105.735 38.8633 105.738 38.664 105.738C27.8039 105.738 19 96.9345 19 86.0744C19 76.6454 25.6365 68.7664 34.4932 66.8536C34.5754 51.4564 47.0826 39 62.4991 39C72.5641 39 81.389 44.3094 86.3259 52.2803C88.7449 51.3986 91.3566 50.9176 94.0806 50.9176C106.586 50.9176 116.724 61.0553 116.724 73.5609C116.724 73.6527 116.723 73.7444 116.722 73.836C124.185 75.2325 129.833 81.7815 129.833 89.6496C129.833 98.3357 122.95 105.414 114.34 105.728V105.738H113.745Z"
|
|
28
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
29
|
+
fillRule: "evenodd",
|
|
30
|
+
clipRule: "evenodd",
|
|
31
|
+
d: "M113.745 105.738H39.2599V105.729C39.062 105.735 38.8633 105.738 38.664 105.738C27.8039 105.738 19 96.9345 19 86.0744C19 76.6454 25.6365 68.7664 34.4932 66.8536C34.5754 51.4564 47.0826 39 62.4991 39C72.5641 39 81.389 44.3094 86.3259 52.2803C88.7449 51.3986 91.3566 50.9176 94.0806 50.9176C106.586 50.9176 116.724 61.0553 116.724 73.5609C116.724 73.6527 116.723 73.7444 116.722 73.836C124.185 75.2325 129.833 81.7815 129.833 89.6496C129.833 98.3357 122.95 105.414 114.34 105.728V105.738H113.745Z",
|
|
32
|
+
fill: "white"
|
|
33
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
34
|
+
d: "M39.2599 105.738H37.7599V107.238H39.2599V105.738ZM39.2599 105.729H40.7599V104.184L39.2152 104.23L39.2599 105.729ZM34.4932 66.8536L34.8099 68.3198L35.9868 68.0656L35.9932 66.8616L34.4932 66.8536ZM86.3259 52.2803L85.0506 53.0701L85.6931 54.1075L86.8395 53.6896L86.3259 52.2803ZM116.722 73.836L115.222 73.8181L115.207 75.0785L116.446 75.3104L116.722 73.836ZM114.34 105.728L114.286 104.229L112.84 104.281V105.728H114.34ZM114.34 105.738V107.238H115.84V105.738H114.34ZM113.745 104.238H39.2599V107.238H113.745V104.238ZM40.7599 105.738V105.729H37.7599V105.738H40.7599ZM39.2152 104.23C39.0322 104.236 38.8484 104.238 38.664 104.238V107.238C38.8782 107.238 39.0917 107.235 39.3045 107.229L39.2152 104.23ZM38.664 104.238C28.6323 104.238 20.5 96.1061 20.5 86.0744H17.5C17.5 97.7629 26.9754 107.238 38.664 107.238V104.238ZM20.5 86.0744C20.5 77.3664 26.6291 70.0866 34.8099 68.3198L34.1766 65.3874C24.6438 67.4462 17.5 75.9243 17.5 86.0744H20.5ZM35.9932 66.8616C36.071 52.2893 47.9083 40.5 62.4991 40.5V37.5C46.2568 37.5 33.0799 50.6235 32.9933 66.8456L35.9932 66.8616ZM62.4991 40.5C72.0233 40.5 80.3758 45.5223 85.0506 53.0701L87.6011 51.4905C82.4023 43.0966 73.1049 37.5 62.4991 37.5V40.5ZM86.8395 53.6896C89.0964 52.867 91.5343 52.4176 94.0806 52.4176V49.4176C91.1788 49.4176 88.3934 49.9302 85.8122 50.871L86.8395 53.6896ZM94.0806 52.4176C105.758 52.4176 115.224 61.8838 115.224 73.5609H118.224C118.224 60.2269 107.415 49.4176 94.0806 49.4176V52.4176ZM115.224 73.5609C115.224 73.6468 115.224 73.7326 115.222 73.8181L118.222 73.8538C118.223 73.7563 118.224 73.6586 118.224 73.5609H115.224ZM116.446 75.3104C123.213 76.5766 128.333 82.5167 128.333 89.6496H131.333C131.333 81.0463 125.158 73.8885 116.998 72.3615L116.446 75.3104ZM128.333 89.6496C128.333 97.5255 122.092 103.944 114.286 104.229L114.395 107.227C123.808 106.884 131.333 99.1458 131.333 89.6496H128.333ZM112.84 105.728V105.738H115.84V105.728H112.84ZM114.34 104.238H113.745V107.238H114.34V104.238Z",
|
|
35
|
+
fill: "#3B3552",
|
|
36
|
+
mask: "url(#path-3-inside-1_0_2342)"
|
|
37
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
38
|
+
d: "M124.739 106.726L125.336 106.271L124.882 105.675L124.285 106.129L124.739 106.726ZM115.615 109.988L115.587 109.238L115.615 109.988ZM125.648 107.919L126.102 108.516L126.699 108.062L126.244 107.465L125.648 107.919ZM116.38 111.447L116.322 110.699L115.642 110.751L115.63 111.434L116.38 111.447ZM116.379 111.499V112.249H117.116L117.129 111.512L116.379 111.499ZM104.829 111.499H104.079V112.249H104.829V111.499ZM104.829 109.999V109.249H104.079V109.999H104.829ZM115.317 109.999V110.749H115.331L115.345 110.748L115.317 109.999ZM99.7899 109.999H100.54V109.249H99.7899V109.999ZM93.4033 109.999V109.249H92.6533V109.999H93.4033ZM99.7899 111.499V112.249H100.54V111.499H99.7899ZM93.4033 111.499H92.6533V112.249H93.4033V111.499ZM124.285 106.129C121.852 107.98 118.851 109.12 115.587 109.238L115.642 110.737C119.225 110.607 122.523 109.355 125.193 107.322L124.285 106.129ZM126.244 107.465L125.336 106.271L124.142 107.18L125.051 108.373L126.244 107.465ZM116.437 112.195C120.054 111.917 123.378 110.589 126.102 108.516L125.193 107.322C122.692 109.226 119.642 110.445 116.322 110.699L116.437 112.195ZM117.129 111.512L117.129 111.46L115.63 111.434L115.629 111.486L117.129 111.512ZM115.642 112.249H116.379V110.749H115.642V112.249ZM104.829 112.249H115.642V110.749H104.829V112.249ZM104.079 109.999V111.499H105.579V109.999H104.079ZM115.317 109.249H104.829V110.749H115.317V109.249ZM115.587 109.238L115.29 109.249L115.345 110.748L115.642 110.737L115.587 109.238ZM99.7899 109.249H93.4033V110.749H99.7899V109.249ZM100.54 111.499V109.999H99.0399V111.499H100.54ZM93.4033 112.249H99.7899V110.749H93.4033V112.249ZM92.6533 109.999V111.499H94.1533V109.999H92.6533Z",
|
|
39
|
+
fill: "#3B3552"
|
|
40
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
41
|
+
fillRule: "evenodd",
|
|
42
|
+
clipRule: "evenodd",
|
|
43
|
+
d: "M52.7914 53.1815C56.0452 76.7133 76.2399 94.8335 100.667 94.8335C106.605 94.8335 112.292 93.7627 117.548 91.8037C118.205 91.5586 119.014 91.2088 119.848 90.8262C122.001 89.8395 124.492 91.513 123.943 93.8165C123.763 94.5703 123.554 95.2336 123.313 95.6647C121.249 99.3701 117.292 101.877 112.75 101.877H39.3226L39.323 101.868C30.8147 101.599 24 94.6169 24 86.0432C24 77.7031 30.4483 70.8691 38.6312 70.2548C38.5194 69.315 38.4624 68.3578 38.4624 67.3873C38.4624 61.4398 40.606 55.993 44.1629 51.7774C45.0618 50.712 46.5645 49.4825 48.0385 48.3941C49.8974 47.0214 52.4241 48.3692 52.5693 50.6755C52.6305 51.6465 52.7044 52.5524 52.7914 53.1815Z",
|
|
44
|
+
fill: "#3040D6",
|
|
45
|
+
fillOpacity: "0.05"
|
|
46
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
47
|
+
d: "M110.17 41.9797L35.089 117.06",
|
|
48
|
+
stroke: "#3B3552",
|
|
49
|
+
strokeWidth: "1.5",
|
|
50
|
+
strokeLinecap: "round"
|
|
51
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
52
|
+
d: "M36.4578 73.6412L35.7277 73.8127V73.8127L36.4578 73.6412ZM35.5562 73.0825L35.7277 73.8127L35.7277 73.8127L35.5562 73.0825ZM39.1052 80.4818L39.7606 80.1173L39.7606 80.1173L39.1052 80.4818ZM38.8142 81.5018L39.1788 82.1572H39.1788L38.8142 81.5018ZM37.7943 81.2108L38.4497 80.8463L37.7943 81.2108ZM34.9976 73.9842L35.7277 73.8127L35.7277 73.8127L34.9976 73.9842ZM40.999 83.4178L41.6014 82.971L40.999 83.4178ZM39.9498 83.2621L39.5031 82.6597H39.5031L39.9498 83.2621ZM43.5079 86.3381L44.0404 85.81L43.5079 86.3381ZM43.5036 87.3988L44.0318 87.9313H44.0318L43.5036 87.3988ZM42.443 87.3945L41.9105 87.9227L42.443 87.3945ZM39.7941 84.3113L39.1917 84.758L39.7941 84.3113ZM37.188 73.4697C36.9985 72.6632 36.1912 72.163 35.3847 72.3524L35.7277 73.8127L35.7277 73.8127L37.188 73.4697ZM39.7606 80.1173C38.6148 78.0568 37.7412 75.8249 37.188 73.4697L35.7277 73.8127C36.3131 76.305 37.2376 78.6666 38.4497 80.8463L39.7606 80.1173ZM39.1788 82.1572C39.9028 81.7546 40.1633 80.8413 39.7606 80.1173L38.4497 80.8463V80.8463L39.1788 82.1572ZM37.1388 81.5753C37.5414 82.2993 38.4548 82.5599 39.1788 82.1572L38.4497 80.8463L37.1388 81.5753ZM34.2674 74.1557C34.8851 76.7851 35.8604 79.2765 37.1388 81.5753L38.4497 80.8463C37.2376 78.6666 36.3131 76.305 35.7277 73.8127L34.2674 74.1557ZM35.3847 72.3524C34.5782 72.5418 34.078 73.3492 34.2674 74.1557L35.7277 73.8127L35.7277 73.8127L35.3847 72.3524ZM41.6014 82.971C41.1079 82.3056 40.1685 82.1662 39.5031 82.6597L40.3966 83.8645L41.6014 82.971ZM44.0404 85.81C43.1616 84.924 42.3461 83.9752 41.6014 82.971L40.3966 83.8645C41.1841 84.9264 42.0463 85.9296 42.9755 86.8663L44.0404 85.81ZM44.0318 87.9313C44.62 87.3478 44.6238 86.3981 44.0404 85.81L42.9755 86.8663L44.0318 87.9313ZM41.9105 87.9227C42.4939 88.5108 43.4437 88.5147 44.0318 87.9313L42.9755 86.8663L41.9105 87.9227ZM39.1917 84.758C40.022 85.8776 40.931 86.9352 41.9105 87.9227L42.9755 86.8663C42.0463 85.9296 41.1841 84.9264 40.3966 83.8645L39.1917 84.758ZM39.5031 82.6597C38.8376 83.1531 38.6982 84.0926 39.1917 84.758L40.3966 83.8645L39.5031 82.6597Z",
|
|
53
|
+
fill: "#3B3552"
|
|
54
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
55
|
+
d: "M77.4516 35.2916L77.7551 34.6057L77.4516 35.2916ZM76.4623 35.674L75.7765 35.3705L76.4623 35.674ZM86.9292 41.4393L87.4313 40.8822L86.9292 41.4393ZM86.984 42.4985L87.5411 43.0007H87.5411L86.984 42.4985ZM85.9248 42.5534L85.4226 43.1104V43.1104L85.9248 42.5534ZM76.8447 36.6633L76.5412 37.3492L76.8447 36.6633ZM66.2719 32.3976L66.2041 33.1446L66.2719 32.3976ZM65.4572 33.0768L66.2041 33.1446L65.4572 33.0768ZM72.3341 33.4809L72.1387 34.205L72.3341 33.4809ZM72.8629 34.4004L73.587 34.5957L72.8629 34.4004ZM71.9434 34.9292L72.1388 34.205L71.9434 34.9292ZM66.1364 33.8915L66.2041 33.1446L66.1364 33.8915ZM77.7551 34.6057C76.9976 34.2705 76.1117 34.6129 75.7765 35.3705L77.1482 35.9774V35.9774L77.7551 34.6057ZM87.4313 40.8822C84.5785 38.3104 81.317 36.1818 77.7551 34.6057L77.1482 35.9774C80.5629 37.4884 83.6906 39.5295 86.427 41.9963L87.4313 40.8822ZM87.5411 43.0007C88.0958 42.3854 88.0466 41.4369 87.4313 40.8822L86.427 41.9963L86.427 41.9963L87.5411 43.0007ZM85.4226 43.1104C86.0379 43.6651 86.9864 43.616 87.5411 43.0007L86.427 41.9963H86.427L85.4226 43.1104ZM76.5412 37.3492C79.8087 38.795 82.8027 40.7486 85.4226 43.1104L86.427 41.9963C83.6906 39.5295 80.5629 37.4884 77.1482 35.9774L76.5412 37.3492ZM75.7765 35.3705C75.4412 36.1281 75.7836 37.0139 76.5412 37.3492L77.1482 35.9774L75.7765 35.3705ZM66.3397 31.6507C65.5147 31.5758 64.7852 32.184 64.7103 33.009L66.2041 33.1446L66.3397 31.6507ZM72.5294 32.7568C70.5285 32.217 68.46 31.8432 66.3397 31.6507L66.2041 33.1446C68.2376 33.3291 70.2208 33.6876 72.1387 34.205L72.5294 32.7568ZM73.587 34.5957C73.8027 33.7959 73.3293 32.9726 72.5294 32.7568L72.1387 34.205L72.1388 34.205L73.587 34.5957ZM71.7481 35.6533C72.5479 35.869 73.3712 35.3956 73.587 34.5957L72.1388 34.205L71.7481 35.6533ZM66.0686 34.6384C68.0152 34.8151 69.913 35.1582 71.7481 35.6533L72.1388 34.205C70.2208 33.6876 68.2376 33.3291 66.2041 33.1446L66.0686 34.6384ZM64.7103 33.009C64.6354 33.834 65.2435 34.5636 66.0686 34.6384L66.2041 33.1446L64.7103 33.009Z",
|
|
56
|
+
fill: "#3B3552"
|
|
57
|
+
}));
|
|
58
|
+
export default Cloud;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export const Cup = ({
|
|
3
|
+
width = 152,
|
|
4
|
+
height = 152
|
|
5
|
+
}) => /*#__PURE__*/React.createElement("svg", {
|
|
6
|
+
width: width,
|
|
7
|
+
height: height,
|
|
8
|
+
viewBox: "0 0 152 152",
|
|
9
|
+
fill: "none",
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
11
|
+
}, /*#__PURE__*/React.createElement("circle", {
|
|
12
|
+
cx: "76",
|
|
13
|
+
cy: "76",
|
|
14
|
+
r: "76",
|
|
15
|
+
fill: "white"
|
|
16
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17
|
+
d: "M105.853 116.816C105.853 117.662 105.226 118.645 103.65 119.677C102.105 120.69 99.8197 121.63 96.9287 122.431C91.1573 124.03 83.1414 125.029 74.2572 125.029C65.373 125.029 57.3571 124.03 51.5857 122.431C48.6947 121.63 46.4095 120.69 44.8645 119.677C43.2886 118.645 42.6616 117.662 42.6616 116.816C42.6616 115.97 43.2886 114.987 44.8645 113.954C46.4095 112.942 48.6947 112.002 51.5857 111.201C57.3571 109.601 65.373 108.603 74.2572 108.603C83.1414 108.603 91.1573 109.601 96.9287 111.201C99.8197 112.002 102.105 112.942 103.65 113.954C105.226 114.987 105.853 115.97 105.853 116.816Z",
|
|
18
|
+
fill: "white",
|
|
19
|
+
stroke: "#3B3552",
|
|
20
|
+
strokeWidth: "1.5"
|
|
21
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22
|
+
d: "M31.75 62.6172H116.765V74.7275C116.765 98.2037 97.7335 117.235 74.2574 117.235C50.7812 117.235 31.75 98.2037 31.75 74.7275V62.6172Z",
|
|
23
|
+
fill: "white",
|
|
24
|
+
stroke: "#3B3552",
|
|
25
|
+
strokeWidth: "1.5"
|
|
26
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
fillRule: "evenodd",
|
|
28
|
+
clipRule: "evenodd",
|
|
29
|
+
d: "M108.28 71.9888C109.791 71.576 111.28 72.7134 111.28 74.2794L111.279 74.5493C111.279 92.0736 99.2304 106.784 82.9649 110.847C82.3502 111.001 81.583 111.141 80.7612 111.266C78.8158 111.562 77.8383 109.126 79.2482 107.753C79.3136 107.689 79.3765 107.627 79.4366 107.567C86.9741 99.9868 91.6697 89.5787 91.7917 78.0739L91.7941 77.6142C91.7946 75.8018 93.1732 74.287 94.9775 74.1161L95.3561 74.0802L96.5004 73.9546L97.6223 73.8227C97.8073 73.8002 97.9914 73.7774 98.1745 73.7544L99.2613 73.6131L100.324 73.4659L101.362 73.3127C101.532 73.2867 101.702 73.2604 101.871 73.2339L102.87 73.0721L103.842 72.9048C104.002 72.8764 104.161 72.8478 104.318 72.819L105.249 72.6435C106.013 72.4951 106.748 72.3412 107.451 72.1821L108.28 71.9888Z",
|
|
30
|
+
fill: "#3040D6",
|
|
31
|
+
fillOpacity: "0.05"
|
|
32
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
33
|
+
d: "M116.765 61.4778C116.765 61.7541 116.62 62.1207 116.127 62.5764C115.635 63.0312 114.867 63.5054 113.809 63.9787C111.698 64.9229 108.596 65.7915 104.706 66.5277C96.9359 67.9976 86.1705 68.9116 74.2574 68.9116C62.3442 68.9116 51.5788 67.9976 43.8092 66.5277C39.9182 65.7915 36.8166 64.9229 34.7056 63.9787C33.6476 63.5054 32.8799 63.0312 32.388 62.5764C31.8951 62.1207 31.75 61.7541 31.75 61.4778C31.75 61.2015 31.8951 60.8349 32.388 60.3791C32.8799 59.9243 33.6476 59.4501 34.7056 58.9769C36.8166 58.0326 39.9182 57.164 43.8092 56.4279C51.5788 54.9579 62.3442 54.0439 74.2574 54.0439C86.1705 54.0439 96.9359 54.9579 104.706 56.4279C108.596 57.164 111.698 58.0326 113.809 58.9769C114.867 59.4501 115.635 59.9243 116.127 60.3791C116.62 60.8349 116.765 61.2015 116.765 61.4778Z",
|
|
34
|
+
fill: "white",
|
|
35
|
+
stroke: "#3B3552",
|
|
36
|
+
strokeWidth: "1.5"
|
|
37
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
38
|
+
d: "M37.2725 75.0268L36.555 74.8084L36.3366 75.5259L37.054 75.7443L37.2725 75.0268ZM62.2577 78.6114L62.217 79.3603L62.9659 79.4009L63.0066 78.652L62.2577 78.6114ZM37.7093 73.5918L37.9277 72.8743L37.2102 72.6559L36.9918 73.3734L37.7093 73.5918ZM62.3391 77.1136L63.088 77.1543L63.1286 76.4054L62.3797 76.3647L62.3391 77.1136ZM67.1576 78.8199L66.408 78.7966L66.3846 79.5462L67.1343 79.5696L67.1576 78.8199ZM74.2575 78.9293V79.6793H75.0075V78.9293H74.2575ZM67.2043 77.3206L67.2276 76.571L66.478 76.5477L66.4546 77.2973L67.2043 77.3206ZM74.2575 77.4293H75.0075V76.6793H74.2575V77.4293ZM37.054 75.7443C42.815 77.498 51.7566 78.7922 62.217 79.3603L62.2984 77.8625C51.886 77.297 43.083 76.0116 37.4909 74.3093L37.054 75.7443ZM36.9918 73.3734L36.555 74.8084L37.99 75.2452L38.4268 73.8102L36.9918 73.3734ZM62.3797 76.3647C52.0153 75.8018 43.3509 74.5252 37.9277 72.8743L37.4909 74.3093C43.083 76.0116 51.886 77.297 62.2984 77.8625L62.3797 76.3647ZM63.0066 78.652L63.088 77.1543L61.5902 77.0729L61.5088 78.5707L63.0066 78.652ZM67.1343 79.5696C69.4526 79.6417 71.8321 79.6793 74.2575 79.6793V78.1793C71.8475 78.1793 69.4836 78.142 67.1809 78.0703L67.1343 79.5696ZM66.4546 77.2973L66.408 78.7966L67.9072 78.8433L67.9539 77.344L66.4546 77.2973ZM74.2575 76.6793C71.863 76.6793 69.5146 76.6422 67.2276 76.571L67.1809 78.0703C69.4836 78.142 71.8475 78.1793 74.2575 78.1793V76.6793ZM75.0075 78.9293V77.4293H73.5075V78.9293H75.0075Z",
|
|
39
|
+
fill: "#3B3552"
|
|
40
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
41
|
+
fillRule: "evenodd",
|
|
42
|
+
clipRule: "evenodd",
|
|
43
|
+
d: "M74.8439 60.3097L76.3503 60.3177L77.84 60.3346L79.3118 60.3601L80.7645 60.3942L82.1967 60.4365L83.1395 60.4693L84.5349 60.5251L85.9064 60.5887L86.8069 60.6354L87.6959 60.6855L89.4378 60.7954L90.7112 60.8862L91.9549 60.984L93.5647 61.125L94.3481 61.1999L95.4951 61.3176L96.9701 61.4843L97.6835 61.5717L98.3803 61.6617L99.3936 61.8015L100.047 61.8978L100.994 62.0469L101.603 62.1492L102.48 62.307L103.04 62.415L103.581 62.5252L104.102 62.6375L104.602 62.7518L105.081 62.8682L105.313 62.9271L105.76 63.0464L106.185 63.1675L106.782 63.3526L106.893 63.3981C107.404 63.6071 107.349 64.3528 106.81 64.4736C106.61 64.5186 106.406 64.5632 106.199 64.6074L105.687 64.7153L104.843 64.8845L103.879 65.0663C103.522 65.1315 103.16 65.1954 102.792 65.2581L102.236 65.3511L101.101 65.5314C99.0563 65.8448 96.8669 66.1208 94.5613 66.3565L93.6913 66.443L92.3666 66.5655L91.0192 66.6794L90.3374 66.733L88.9582 66.8335L88.2611 66.8804L87.5591 66.9251L86.1413 67.0075L84.7058 67.0806L83.9818 67.1137L82.522 67.1728C79.8317 67.2723 77.0665 67.3238 74.2574 67.3238C71.9165 67.3238 69.6061 67.2881 67.3441 67.2185L65.9929 67.1728L64.5331 67.1137L63.8091 67.0806L62.3736 67.0075L60.9558 66.9251L60.2538 66.8804L59.5567 66.8335L58.1775 66.733L57.4956 66.6794L56.1483 66.5655L55.4831 66.5054L54.1701 66.3785C52.0831 66.1681 50.09 65.9248 48.2115 65.6507L47.4135 65.5314L46.2786 65.3511C45.7811 65.2693 45.293 65.1852 44.8146 65.0988L44.1045 64.9675L43.672 64.8845L42.8282 64.7153C42.5369 64.6551 42.251 64.5942 41.9705 64.5326C41.3516 64.3967 41.2871 63.5306 41.8801 63.3074C41.9041 63.2984 41.9211 63.2922 41.9302 63.2893L42.4388 63.1357L43.0949 62.9551L43.6788 62.8079L44.1697 62.6924L44.6813 62.5789L45.4869 62.4126L46.3371 62.2513L46.9281 62.1465L47.8498 61.9937L48.4872 61.8949L49.1426 61.7985L49.8155 61.7045L50.857 61.5685L51.9358 61.4383L52.6752 61.355L53.4303 61.2744L54.2006 61.1966L55.384 61.0853L56.5998 60.9807L57.8465 60.883L59.123 60.7923L60.428 60.7087L61.3132 60.6571L62.2102 60.6089L63.5767 60.5429L64.9675 60.4847L66.3814 60.4345L67.8169 60.3924L69.2728 60.3587L70.2542 60.341L71.7414 60.3216L72.7425 60.3136L73.7507 60.3096L74.8439 60.3097Z",
|
|
44
|
+
fill: "#3040D6"
|
|
45
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
46
|
+
d: "M116.735 61.8672H117.504C127.762 61.8672 135.612 71.0005 134.071 81.1418V81.1418C132.827 89.3306 125.787 95.3819 117.504 95.3819H111.643",
|
|
47
|
+
stroke: "#3B3552",
|
|
48
|
+
strokeWidth: "1.5"
|
|
49
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
50
|
+
d: "M66.0734 19L67.9404 21.1159C70.9952 24.578 70.0904 29.9737 66.0734 32.25V32.25C62.0564 34.5263 61.1517 39.922 64.2065 43.3841L66.0734 45.5",
|
|
51
|
+
stroke: "#3B3552",
|
|
52
|
+
strokeWidth: "1.5",
|
|
53
|
+
strokeLinecap: "round"
|
|
54
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
55
|
+
d: "M76.9855 36.9268L78.8525 39.0426C81.9073 42.5047 81.0025 47.9005 76.9855 50.1768V50.1768C72.9685 52.4531 72.0638 57.8488 75.1186 61.3109L76.9855 63.4268",
|
|
56
|
+
stroke: "#3B3552",
|
|
57
|
+
strokeWidth: "1.5",
|
|
58
|
+
strokeLinecap: "round"
|
|
59
|
+
}));
|
|
60
|
+
export default Cup;
|