@3cr/viewer-browser 0.0.247 → 0.0.292
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/.circleci/config.yml +53 -0
- package/README.md +79 -74
- package/components.d.ts +94 -36
- package/dist/Viewer3CR.js +663 -47
- package/dist/Viewer3CR.mjs +108285 -37154
- package/dist/Viewer3CR.umd.js +663 -47
- package/index.html +35 -33
- package/package.json +27 -8
- package/playground/img.png +0 -0
- package/playground/index.html +6 -2
- package/src/App.vue +41 -97
- package/src/__tests__/app.spec.ts +2 -1
- package/src/__tests__/main.spec.ts +14 -14
- package/src/assets/_palette.scss +112 -0
- package/src/assets/_settings.scss +64 -0
- package/src/assets/_typography.scss +187 -0
- package/src/assets/images/cloud-storage.svg +22 -0
- package/src/assets/images/courtney.png +0 -0
- package/src/assets/images/dark/magic-wand.svg +32 -0
- package/src/assets/images/dark-theme.svg +33 -0
- package/src/assets/images/dot.svg +5 -0
- package/src/assets/images/dr-miles.png +0 -0
- package/src/assets/images/illustration.svg +118 -0
- package/src/assets/images/intro.svg +30 -0
- package/src/assets/{magic_wand.svg → images/light/magic-wand.svg} +22 -14
- package/src/assets/images/light-theme.svg +33 -0
- package/src/assets/images/system-theme.svg +51 -0
- package/src/assets/images/totalSegmentator.png +0 -0
- package/src/assets/logos/3dicom/black/black.svg +30 -0
- package/src/assets/logos/3dicom/colour/colour.svg +18 -0
- package/src/assets/logos/3dicom/colour/colour_single.svg +18 -0
- package/src/assets/logos/3dicom/wordmark/patients/patients.svg +29 -0
- package/src/assets/logos/3dicom/wordmark/powered-by/powered-by.svg +41 -0
- package/src/assets/logos/3dicom/wordmark/practitioners/practitioner.svg +34 -0
- package/src/assets/logos/3dicom/wordmark/research/research.svg +29 -0
- package/src/assets/logos/license/black/black.svg +22 -0
- package/src/assets/logos/license/white/white.svg +22 -0
- package/src/assets/styles.scss +435 -12
- package/src/components/ShFlatIconBtn.vue +36 -0
- package/src/components/ShPlainIconBtn.vue +42 -0
- package/src/components/ShSelect.vue +48 -0
- package/src/components/ShTextField.vue +39 -0
- package/src/components/ShTextarea.vue +39 -0
- package/src/components/__tests__/ShFlatIconBtn.spec.ts +32 -0
- package/src/components/__tests__/ShPlainIconBtn.spec.ts +37 -0
- package/src/components/__tests__/ShSelect.spec.ts +30 -0
- package/src/components/__tests__/ShTextField.spec.ts +30 -0
- package/src/components/__tests__/ShTextarea.spec.ts +30 -0
- package/src/components/demo/CloudDropZone.vue +105 -0
- package/src/components/demo/DemoAvatarDropdownMenu.vue +343 -0
- package/src/components/demo/DemoInfoModal.vue +60 -0
- package/src/components/demo/DemoNotificationNavigationDrawer.vue +118 -0
- package/src/components/demo/DemoPurchaseCreditsModal.vue +141 -0
- package/src/components/demo/DemoUpgradeCloudStorageModal.vue +74 -0
- package/src/components/demo/DemoUpgradePlanModal.vue +17 -0
- package/src/components/demo/UploadDicomToCloudModal.vue +225 -0
- package/src/components/demo/__tests__/CloudDropZone.spec.ts +132 -0
- package/src/components/demo/__tests__/DemoAvatarDropdownMenu.spec.ts +16 -0
- package/src/components/demo/{licence/__tests__/DemoLicenceEnableCloudStorageModal.spec.ts → __tests__/DemoEnableCloudStorageModal.spec.ts} +11 -11
- package/src/components/demo/{licence/__tests__/DemoLicenceInfoModal.spec.ts → __tests__/DemoInfoModal.spec.ts} +11 -8
- package/src/components/demo/__tests__/DemoNotificationNavigationDrawer.spec.ts +56 -0
- package/src/components/demo/__tests__/UploadDicomToCloudModal.spec.ts +320 -0
- package/src/components/demo/__tests__/demo-payload.spec.ts +10 -0
- package/src/components/demo/demo-notifications.ts +45 -0
- package/src/components/demo/demo-payload.ts +9 -0
- package/src/components/demo/fileReader.ts +47 -0
- package/src/{composables/useViewerOptions.ts → components/demo/mockDemoViewerStlDecimator.ts} +8 -12
- package/src/components/intro/ViewerIntro.vue +56 -0
- package/src/components/intro/ViewerTour.vue +53 -0
- package/src/components/intro/tour/Tour.vue +205 -0
- package/src/components/intro/tour/step.ts +6 -0
- package/src/components/modal/ActionRail.vue +4 -0
- package/src/components/modal/Viewer3cr.vue +224 -0
- package/src/components/modal/Viewer3crWebGL.vue +65 -0
- package/src/components/modal/ViewerActionRail.vue +10 -27
- package/src/components/modal/ViewerMain.vue +83 -0
- package/src/components/modal/ViewerNavigationDrawer.vue +269 -68
- package/src/components/modal/ViewerScanView.vue +223 -67
- package/src/components/modal/__tests__/{MftpWebGL3DRModal.spec.ts → Viewer3cr.spec.ts} +154 -53
- package/src/components/modal/__tests__/{WebGL3DR.spec.ts → Viewer3crWebGL.spec.ts} +11 -11
- package/src/components/modal/__tests__/ViewerNavigationDrawer.spec.ts +271 -11
- package/src/components/modal/__tests__/ViewerScanView.spec.ts +15 -7
- package/src/components/modal/actions/Action.vue +3 -8
- package/src/components/modal/actions/Flip3dAction.vue +31 -16
- package/src/components/modal/actions/FlipHorizontalAction.vue +14 -5
- package/src/components/modal/actions/FlipVerticalAction.vue +14 -5
- package/src/components/modal/actions/FullscreenAction.vue +9 -5
- package/src/components/modal/actions/PanAction.vue +11 -51
- package/src/components/modal/actions/ResetViewAction.vue +10 -8
- package/src/components/modal/actions/Rotate2dAction.vue +25 -15
- package/src/components/modal/actions/Slice3dAction.vue +22 -10
- package/src/components/modal/actions/ZoomAction.vue +21 -13
- package/src/components/modal/actions/__tests__/Action.spec.ts +2 -2
- package/src/components/modal/actions/__tests__/Flip3dAction.spec.ts +58 -14
- package/src/components/modal/actions/__tests__/FlipHorizontalAction.spec.ts +15 -5
- package/src/components/modal/actions/__tests__/FlipVerticalAction.spec.ts +15 -5
- package/src/components/modal/actions/__tests__/FullscreenAction.spec.ts +7 -5
- package/src/components/modal/actions/__tests__/PanAction.spec.ts +13 -32
- package/src/components/modal/actions/__tests__/ResetViewAction.spec.ts +5 -3
- package/src/components/modal/actions/__tests__/Rotate2dAction.spec.ts +13 -6
- package/src/components/modal/actions/__tests__/Slice3dAction.spec.ts +1 -1
- package/src/components/modal/actions/__tests__/ZoomAction.spec.ts +25 -11
- package/src/components/modal/app-bars/ViewerActionBar.vue +224 -0
- package/src/components/modal/app-bars/ViewerAppBar.vue +126 -0
- package/src/components/modal/app-bars/__tests__/ViewerActionBar.spec.ts +176 -0
- package/src/components/modal/app-bars/__tests__/ViewerAppBar.spec.ts +99 -0
- package/src/components/modal/layouts/Layout1x3ClipPath.vue +35 -0
- package/src/components/modal/layouts/Layout2x2ClipPath.vue +35 -0
- package/src/components/modal/layouts/LayoutFullscreenClipPath.vue +29 -0
- package/src/components/modal/layouts/__tests__/Layout1x3ClipPath.spec.ts +15 -0
- package/src/components/modal/layouts/__tests__/Layout2x2ClipPath.spec.ts +15 -0
- package/src/components/modal/layouts/__tests__/LayoutFullscreenClipPath.spec.ts +15 -0
- package/src/components/modal/layouts/composables/__tests__/useLayout1x3.spec.ts +40 -0
- package/src/components/modal/layouts/composables/__tests__/useLayout2x2.spec.ts +40 -0
- package/src/components/modal/layouts/composables/__tests__/useLayoutFullscreen.spec.ts +40 -0
- package/src/components/modal/layouts/composables/useLayout1x3.ts +46 -0
- package/src/components/modal/layouts/composables/useLayout2x2.ts +46 -0
- package/src/components/modal/layouts/composables/useLayoutFullscreen.ts +24 -0
- package/src/components/modal/menus/AutoAnnotateMenu.vue +67 -0
- package/src/components/modal/menus/AvatarDropdownMenu.vue +66 -0
- package/src/components/modal/menus/HelpMenu.vue +47 -0
- package/src/components/modal/menus/SettingsMenu.vue +242 -92
- package/src/components/modal/menus/ShareMenu.vue +58 -0
- package/src/components/modal/menus/__tests__/AutoAnnotateMenu.spec.ts +80 -0
- package/src/components/modal/menus/__tests__/AvatarDropdownMenu.spec.ts +49 -0
- package/src/components/modal/menus/__tests__/HelpMenu.spec.ts +12 -0
- package/src/components/modal/menus/__tests__/SettingsMenu.spec.ts +163 -57
- package/src/components/modal/modal/AboutModal.vue +61 -0
- package/src/components/modal/modal/AiModelList.vue +70 -0
- package/src/components/modal/{AskAI.vue → modal/AskAiModal.vue} +26 -34
- package/src/components/modal/modal/AutoAnnotateModal.vue +136 -0
- package/src/components/modal/modal/CloseViewerModal.vue +108 -0
- package/src/components/modal/modal/DataOverlayGeneralModal.vue +122 -0
- package/src/components/modal/modal/DataOverlayMeasurementModal.vue +59 -0
- package/src/components/modal/modal/DataOverlayModal.vue +121 -0
- package/src/components/modal/modal/ShareModal.vue +201 -0
- package/src/components/modal/modal/UploadsDrawer.vue +165 -0
- package/src/components/modal/modal/WhatsNewModal.vue +45 -0
- package/src/components/modal/modal/__tests__/AboutModal.spec.ts +60 -0
- package/src/components/modal/modal/__tests__/AiModelList.spec.ts +50 -0
- package/src/components/modal/{__tests__ → modal/__tests__}/AskAI.spec.ts +8 -7
- package/src/components/modal/modal/__tests__/AutoAnnotateModal.spec.ts +29 -0
- package/src/components/modal/modal/__tests__/CloseViewerModal.spec.ts +60 -0
- package/src/components/modal/modal/__tests__/DataOverlayGeneralModal.spec.ts +55 -0
- package/src/components/modal/modal/__tests__/DataOverlayMeasurementModal.spec.ts +82 -0
- package/src/components/modal/modal/__tests__/DataOverlayModal.spec.ts +94 -0
- package/src/components/modal/modal/__tests__/ShareModal.spec.ts +262 -0
- package/src/components/modal/modal/__tests__/UploadsDrawer.spec.ts +174 -0
- package/src/components/modal/modal/__tests__/WhatsNewModal.spec.ts +29 -0
- package/src/components/modal/snackbars/AnnotationGeneratedSnackbar.vue +34 -0
- package/src/components/modal/snackbars/ImagesSharedSnackbar.vue +26 -0
- package/src/components/modal/snackbars/LinkCopiedSnackbar.vue +26 -0
- package/src/components/modal/snackbars/__tests__/AnnotationGeneratedSnackbar.spec.ts +43 -0
- package/src/components/modal/snackbars/__tests__/ImagesSharedSnackbar.spec.ts +22 -0
- package/src/components/modal/snackbars/__tests__/LinkCopiedSnackbar.spec.ts +21 -0
- package/src/components/navigation/annotation/AnnotationCreateModal.vue +114 -0
- package/src/components/navigation/annotation/AnnotationCreateSnackbar.vue +20 -0
- package/src/components/navigation/annotation/AnnotationDataTable.vue +157 -0
- package/src/components/navigation/annotation/AnnotationDeleteModal.vue +48 -0
- package/src/components/navigation/annotation/AnnotationDeleteSnackbar.vue +25 -0
- package/src/components/navigation/annotation/AnnotationForm.vue +277 -0
- package/src/components/navigation/annotation/AnnotationIcon.vue +45 -0
- package/src/components/navigation/annotation/AnnotationInfo.vue +141 -0
- package/src/components/navigation/annotation/AnnotationMenu.vue +99 -0
- package/src/components/navigation/annotation/AnnotationPanel.vue +30 -0
- package/src/components/navigation/annotation/AnnotationTools.vue +104 -0
- package/src/components/navigation/annotation/AnnotationUpdateModal.vue +78 -0
- package/src/components/navigation/annotation/AnnotationVisibilityBtn.vue +52 -0
- package/src/components/navigation/annotation/DrawerTitle.vue +25 -0
- package/src/components/navigation/annotation/__tests__/AnnotationCreateModal.spec.ts +178 -0
- package/src/components/navigation/annotation/__tests__/AnnotationCreateSnackbar.spec.ts +31 -0
- package/src/components/navigation/annotation/__tests__/AnnotationDataTable.spec.ts +79 -0
- package/src/components/navigation/annotation/__tests__/AnnotationDeleteSnackbar.spec.ts +66 -0
- package/src/components/navigation/annotation/__tests__/AnnotationForm.spec.ts +261 -0
- package/src/components/navigation/annotation/__tests__/AnnotationIcon.spec.ts +13 -0
- package/src/components/navigation/annotation/__tests__/AnnotationTools.spec.ts +116 -0
- package/src/components/navigation/display/DisplayPanel.vue +156 -0
- package/src/components/{views/__tests__/DisplaySettings.spec.ts → navigation/display/__tests__/DisplayPanel.spec.ts} +14 -3
- package/src/components/navigation/history/HistoryModal.vue +140 -0
- package/src/components/navigation/mcad/McadAddObjectBtn.vue +41 -0
- package/src/components/navigation/mcad/McadDataTable.vue +78 -0
- package/src/components/navigation/mcad/McadDataTableItems.vue +382 -0
- package/src/components/navigation/mcad/McadDeleteModal.vue +44 -0
- package/src/components/navigation/mcad/McadDropZone.vue +148 -0
- package/src/components/navigation/mcad/McadFloating.vue +193 -0
- package/src/components/navigation/mcad/McadIcon.vue +34 -0
- package/src/components/navigation/mcad/McadInvert.vue +91 -0
- package/src/components/navigation/mcad/McadLockBtn.vue +62 -0
- package/src/components/navigation/mcad/McadMenu.vue +248 -0
- package/src/components/navigation/mcad/McadOpacity.vue +79 -0
- package/src/components/navigation/mcad/McadPanel.vue +31 -0
- package/src/components/navigation/mcad/McadToggleSortBtn.vue +18 -0
- package/src/components/navigation/mcad/McadToggleVisibilityBtn.vue +46 -0
- package/src/components/navigation/mcad/McadUpdateModal.vue +108 -0
- package/src/components/navigation/mcad/McadVisibilityBtn.vue +46 -0
- package/src/components/navigation/mcad/__tests__/McadAddObjectBtn.spec.ts +73 -0
- package/src/components/navigation/mcad/__tests__/McadDataTable.spec.ts +27 -0
- package/src/components/navigation/mcad/__tests__/McadDataTableItems.spec.ts +621 -0
- package/src/components/navigation/mcad/__tests__/McadDeleteModal.spec.ts +67 -0
- package/src/components/navigation/mcad/__tests__/McadDropZone.spec.ts +109 -0
- package/src/components/navigation/mcad/__tests__/McadIcon.spec.ts +13 -0
- package/src/components/navigation/mcad/__tests__/McadInvert.spec.ts +45 -0
- package/src/components/navigation/mcad/__tests__/McadLockBtn.spec.ts +38 -0
- package/src/components/navigation/mcad/__tests__/McadMenu.spec.ts +258 -0
- package/src/components/navigation/mcad/__tests__/McadOpacity.spec.ts +68 -0
- package/src/components/navigation/mcad/__tests__/McadToggleSortBtn.spec.ts +36 -0
- package/src/components/navigation/mcad/__tests__/McadToggleVisibilityBtn.spec.ts +53 -0
- package/src/components/navigation/mcad/__tests__/McadUpdateModal.spec.ts +122 -0
- package/src/components/navigation/mcad/__tests__/McadVisibilityBtn.spec.ts +45 -0
- package/src/components/navigation/measurement/MeasurementAngleSnackbar.vue +18 -0
- package/src/components/navigation/measurement/MeasurementDataTable.vue +162 -0
- package/src/components/navigation/measurement/MeasurementDeleteModal.vue +49 -0
- package/src/components/navigation/measurement/MeasurementDeleteSnackbar.vue +40 -0
- package/src/components/navigation/measurement/MeasurementIcon.vue +41 -0
- package/src/components/navigation/measurement/MeasurementInfo.vue +25 -0
- package/src/components/navigation/measurement/MeasurementInfoAngle.vue +36 -0
- package/src/components/navigation/measurement/MeasurementInfoLength.vue +37 -0
- package/src/components/navigation/measurement/MeasurementInfoPolygon.vue +58 -0
- package/src/components/navigation/measurement/MeasurementLengthSnackbar.vue +18 -0
- package/src/components/navigation/measurement/MeasurementMenu.vue +97 -0
- package/src/components/navigation/measurement/MeasurementPanel.vue +30 -0
- package/src/components/navigation/measurement/MeasurementPolygonSnackbar.vue +18 -0
- package/src/components/navigation/measurement/MeasurementTools.vue +101 -0
- package/src/components/navigation/measurement/MeasurementVisibilityBtn.vue +53 -0
- package/src/components/navigation/measurement/__tests__/MeasurementAngleSnackbar.spec.ts +34 -0
- package/src/components/navigation/measurement/__tests__/MeasurementDataTable.spec.ts +79 -0
- package/src/components/navigation/measurement/__tests__/MeasurementDeleteSnackbar.spec.ts +51 -0
- package/src/components/navigation/measurement/__tests__/MeasurementInfo.spec.ts +77 -0
- package/src/components/navigation/measurement/__tests__/MeasurementLengthSnackbar.spec.ts +35 -0
- package/src/components/navigation/measurement/__tests__/MeasurementPolygonSnackbar.spec.ts +35 -0
- package/src/components/navigation/measurement/__tests__/MeasurementTools.spec.ts +87 -0
- package/src/components/shared/ColourPalette.vue +72 -0
- package/src/components/shared/DoubleSliderSelector.vue +66 -28
- package/src/components/shared/HorizontalSliderSelector.vue +80 -0
- package/src/components/shared/KeyboardShortcuts.vue +184 -0
- package/src/components/shared/LoadingSpinner.vue +508 -144
- package/src/components/shared/MultiLoginError.vue +98 -0
- package/src/components/shared/NotificationToaster.vue +112 -0
- package/src/components/shared/UpdateSnackbar.vue +22 -9
- package/src/components/shared/ValueSelector.vue +10 -10
- package/src/components/shared/VerticalSliderSelector.vue +45 -44
- package/src/components/shared/__tests__/ColourPalette.spec.ts +21 -0
- package/src/components/shared/__tests__/DoubleSliderSelector.spec.ts +58 -46
- package/src/components/shared/__tests__/HorizontalSliderSelector.spec.ts +35 -0
- package/src/components/shared/__tests__/KeyboardShortcuts.spec.ts +50 -0
- package/src/components/shared/__tests__/MultiLoginError.spec.ts +50 -0
- package/src/components/shared/__tests__/NotificationToaster.spec.ts +65 -0
- package/src/components/shared/__tests__/UpdateSnackbar.spec.ts +7 -7
- package/src/components/shared/__tests__/ValueSelector.spec.ts +6 -0
- package/src/composables/__tests__/useDebounce.spec.ts +17 -0
- package/src/composables/__tests__/useMovingAverage.spec.ts +40 -0
- package/src/composables/__tests__/useNavigationCube.spec.ts +79 -0
- package/src/{functions/__tests__/notification.spec.ts → composables/__tests__/useNotificationHandler.spec.ts} +74 -17
- package/src/composables/__tests__/useToolGroup.spec.ts +41 -0
- package/src/composables/__tests__/useViewName.spec.ts +29 -0
- package/src/composables/useBoundingBox.ts +32 -0
- package/src/composables/useEventListener.ts +7 -9
- package/src/composables/useMedia.ts +27 -0
- package/src/composables/useNavigationCube.ts +80 -0
- package/src/composables/useNotificationHandler.ts +82 -0
- package/src/composables/useResizeObserver.ts +31 -0
- package/src/composables/useToolGroup.ts +36 -0
- package/src/composables/useViewName.ts +34 -0
- package/src/composables/useViewer3cr.ts +3 -2
- package/src/config.ts +1 -1
- package/src/constants.ts +8 -0
- package/src/functions/HotkeyScope.ts +87 -0
- package/src/functions/__tests__/HotkeyScope.spec.ts +49 -0
- package/src/functions/__tests__/colours.spec.ts +42 -0
- package/src/functions/__tests__/fileReader.spec.ts +130 -0
- package/src/functions/__tests__/modelHelper.spec.ts +1 -0
- package/src/functions/__tests__/tsHelper.spec.ts +7 -0
- package/src/functions/chunker.ts +21 -0
- package/src/functions/colours.ts +45 -0
- package/src/functions/fileReader.ts +48 -0
- package/src/functions/guards/__tests__/isDataOverlayAngle.spec.ts +21 -0
- package/src/functions/guards/__tests__/isDataOverlayLength.spec.ts +21 -0
- package/src/functions/guards/__tests__/isDataOverlayPolygon.spec.ts +21 -0
- package/src/functions/guards/isDataOverlayAngle.ts +3 -4
- package/src/functions/guards/isDataOverlayLength.ts +3 -4
- package/src/functions/guards/isDataOverlayPolygon.ts +3 -4
- package/src/functions/openUrl.ts +3 -0
- package/src/functions/{__tests__ → parsers/__tests__}/parseAction.spec.ts +1 -1
- package/src/functions/{__tests__ → parsers/__tests__}/parseCallToAction.spec.ts +1 -1
- package/src/functions/{__tests__ → parsers/__tests__}/parseDataOverlay.spec.ts +1 -1
- package/src/functions/{__tests__ → parsers/__tests__}/parseDataOverlayData.spec.ts +1 -1
- package/src/functions/{__tests__ → parsers/__tests__}/parseDataOverlayEvent.spec.ts +3 -3
- package/src/functions/{__tests__ → parsers/__tests__}/parseMcadEvent.spec.ts +3 -3
- package/src/functions/{parseAction.ts → parsers/parseAction.ts} +1 -2
- package/src/functions/{parseCallToAction.ts → parsers/parseCallToAction.ts} +2 -2
- package/src/functions/{parseDataOverlay.ts → parsers/parseDataOverlay.ts} +3 -3
- package/src/functions/parsers/parseDataOverlayData.ts +9 -0
- package/src/functions/parsers/parseDataOverlayEvent.ts +19 -0
- package/src/functions/parsers/parseMcadEvent.ts +9 -0
- package/src/functions/platform.ts +7 -0
- package/src/functions/translateTooltipShortcut.ts +35 -0
- package/src/functions/tsHelper.ts +3 -0
- package/src/main.ts +68 -43
- package/src/models/__tests__/iso-languages.spec.ts +23 -0
- package/src/models/__tests__/scanState.spec.ts +14 -38
- package/src/models/iso-languages.ts +1609 -0
- package/src/models/progress.ts +23 -0
- package/src/models/scanState.ts +56 -100
- package/src/plugins/__tests__/pinia.spec.ts +7 -0
- package/src/plugins/__tests__/vue-i18n.spec.ts +7 -0
- package/src/plugins/__tests__/vuetify.spec.ts +3 -3
- package/src/plugins/locales/en.json +442 -0
- package/src/plugins/material-symbols/aliases.ts +43 -0
- package/src/plugins/material-symbols/material-symbols-filled.ts +11 -0
- package/src/plugins/material-symbols/material-symbols-outlined.ts +9 -0
- package/src/plugins/pinia.ts +3 -0
- package/src/plugins/vue-i18n.ts +9 -0
- package/src/plugins/vuetify.ts +157 -25
- package/src/services/__tests__/features.service.spec.ts +14 -0
- package/src/services/__tests__/gpt.service.spec.ts +64 -3
- package/src/services/__tests__/viewer-3cr.service.spec.ts +616 -192
- package/src/services/features.service.ts +32 -0
- package/src/services/gpt.service.ts +5 -2
- package/src/services/viewer-3cr.service.ts +374 -307
- package/src/stores/__tests__/data-overlay.store.spec.ts +92 -0
- package/src/stores/__tests__/demo.store.spec.ts +196 -0
- package/src/stores/__tests__/drawer.store.spec.ts +27 -0
- package/src/stores/__tests__/intro.store.spec.ts +102 -0
- package/src/stores/__tests__/language.store.spec.ts +83 -0
- package/src/stores/__tests__/mcad-floating.store.spec.ts +339 -0
- package/src/stores/__tests__/mcad.store.spec.ts +88 -0
- package/src/stores/__tests__/save.store.spec.ts +51 -0
- package/src/stores/__tests__/theme.store.spec.ts +18 -0
- package/src/stores/__tests__/tool.store.spec.ts +53 -0
- package/src/stores/__tests__/upload.store.spec.ts +19 -0
- package/src/stores/__tests__/viewer.store.spec.ts +20 -0
- package/src/stores/data-overlay.store.ts +93 -0
- package/src/stores/demo.store.ts +284 -0
- package/src/stores/drawer.store.ts +23 -0
- package/src/stores/intro.store.ts +35 -0
- package/src/stores/language.store.ts +59 -0
- package/src/stores/mcad-floating.store.ts +141 -0
- package/src/stores/mcad.store.ts +53 -0
- package/src/stores/save.store.ts +59 -0
- package/src/stores/theme.store.ts +45 -0
- package/src/stores/tool.store.ts +41 -0
- package/src/stores/upload.store.ts +19 -0
- package/src/stores/viewer.store.ts +34 -0
- package/src/tools/__tests__/annotation-create.tool.spec.ts +90 -0
- package/src/tools/__tests__/annotation-move.tool.spec.ts +107 -0
- package/src/tools/__tests__/data-overlay.tool.spec.ts +127 -0
- package/src/tools/__tests__/mcad-move.tool.spec.ts +106 -0
- package/src/tools/__tests__/mcad-rotate.tool.spec.ts +103 -0
- package/src/tools/__tests__/mcad-scale.tool.spec.ts +8 -0
- package/src/tools/__tests__/mcad-select.tool.spec.ts +63 -0
- package/src/tools/__tests__/measurement-angle.tool.spec.ts +26 -0
- package/src/tools/__tests__/measurement-length.tool.spec.ts +26 -0
- package/src/tools/__tests__/measurement-polygon.tool.spec.ts +26 -0
- package/src/tools/annotation-create.tool.ts +48 -0
- package/src/tools/annotation-move.tool.ts +48 -0
- package/src/tools/data-overlay.tool.ts +45 -48
- package/src/tools/mcad-move.tool.ts +47 -0
- package/src/tools/mcad-rotate.tool.ts +47 -0
- package/src/tools/mcad-scale-tool.ts +10 -0
- package/src/tools/mcad-select-tool.ts +32 -0
- package/src/tools/measurement-angle.tool.ts +20 -0
- package/src/tools/measurement-length.tool.ts +20 -0
- package/src/tools/measurement-polygon.tool.ts +20 -0
- package/src/types/feature.ts +6 -0
- package/src/types/viewer-tool.ts +5 -0
- package/test/MockImportOriginal.ts +7 -0
- package/test/assertions/beTypeOrNull.ts +24 -0
- package/test/fakers/action-data.faker.ts +1 -1
- package/test/fakers/action.faker.ts +1 -1
- package/test/fakers/call-to-action.faker.ts +1 -1
- package/test/fakers/data-overlay-angle.faker.ts +1 -1
- package/test/fakers/data-overlay-annotation.faker.ts +1 -1
- package/test/fakers/data-overlay-data.faker.ts +18 -15
- package/test/fakers/data-overlay-interaction.faker.ts +25 -17
- package/test/fakers/data-overlay-length.faker.ts +1 -1
- package/test/fakers/data-overlay-mcad.faker.ts +4 -3
- package/test/fakers/data-overlay-polygon.faker.ts +1 -1
- package/test/fakers/feature.faker.ts +13 -0
- package/test/fakers/file.faker.ts +11 -0
- package/test/fakers/gpt-question.faker.ts +1 -1
- package/test/fakers/gpt-response.faker.ts +1 -1
- package/test/fakers/mcad-object-interaction.faker.ts +4 -4
- package/test/fakers/orientation.faker.ts +1 -1
- package/test/fakers/segment-angle.faker.ts +1 -1
- package/test/fakers/upload.faker.ts +14 -0
- package/test/getAnimationFrame.ts +3 -0
- package/test/plugins/findByTestId.ts +13 -6
- package/test/plugins/pinia.ts +20 -0
- package/test/plugins/vitest.d.ts +8 -0
- package/test/plugins/vue-i18n.ts +22 -0
- package/test/plugins/vuetify.ts +10 -0
- package/test/setup.ts +37 -12
- package/tsconfig.json +1 -1
- package/vite.config.mts +48 -18
- package/vitest.config.mts +12 -3
- package/src/assets/images/MainBackdrop.svg +0 -48
- package/src/assets/images/dark/Singular-Health-Disc-Mono.svg +0 -9
- package/src/assets/images/dark/demo-icon-small.png +0 -0
- package/src/assets/images/dark/demo-logo-small.svg +0 -27
- package/src/assets/images/dark/demo-logo.svg +0 -1
- package/src/assets/images/light/Singular-Health-Disc-Mono.svg +0 -9
- package/src/assets/logos/3dicom/white-mini.svg +0 -20
- package/src/components/demo/DemoModal.vue +0 -44
- package/src/components/demo/DemoPatientModal.vue +0 -52
- package/src/components/demo/__tests__/DemoModal.spec.ts +0 -26
- package/src/components/demo/__tests__/DemoPatientModal.spec.ts +0 -38
- package/src/components/demo/__tests__/options.spec.ts +0 -25
- package/src/components/demo/licence/DemoLicenceEnableCloudStorageModal.vue +0 -64
- package/src/components/demo/licence/DemoLicenceInfoModal.vue +0 -49
- package/src/components/demo/licence/DemoLicenceSendToPartyModal.vue +0 -178
- package/src/components/demo/licence/DemoLicenceShareToMobileModal.vue +0 -102
- package/src/components/demo/licence/__tests__/DemoLicenceSendToPartyModal.spec.ts +0 -36
- package/src/components/demo/licence/__tests__/DemoLicenceShareToMobileModal.spec.ts +0 -52
- package/src/components/demo/options.ts +0 -170
- package/src/components/demo/patient/DemoPatientEnableCloudStorageModal.vue +0 -64
- package/src/components/demo/patient/DemoPatientInfoModal.vue +0 -49
- package/src/components/demo/patient/DemoPatientSendToPartyModal.vue +0 -177
- package/src/components/demo/patient/DemoPatientShareToMobileModal.vue +0 -102
- package/src/components/demo/patient/__tests__/DemoPatientEnableCloudStorageModal.spec.ts +0 -38
- package/src/components/demo/patient/__tests__/DemoPatientInfoModal.spec.ts +0 -38
- package/src/components/demo/patient/__tests__/DemoPatientSendToPartyModal.spec.ts +0 -36
- package/src/components/demo/patient/__tests__/DemoPatientShareToMobileModal.spec.ts +0 -52
- package/src/components/modal/CloseViewerModal.vue +0 -69
- package/src/components/modal/MftpWebGL3DRModal.vue +0 -336
- package/src/components/modal/ViewerNavigationDrawerContent.vue +0 -168
- package/src/components/modal/ViewerNavigationDrawerFooter.vue +0 -131
- package/src/components/modal/ViewerNavigationDrawerHeader.vue +0 -33
- package/src/components/modal/WebGL3DR.vue +0 -91
- package/src/components/modal/__tests__/CloseViewerModal.spec.ts +0 -70
- package/src/components/modal/__tests__/ViewerNavigationDrawerContent.spec.ts +0 -11
- package/src/components/modal/__tests__/ViewerNavigationDrawerFooter.spec.ts +0 -46
- package/src/components/modal/__tests__/ViewerNavigationDrawerHeader.spec.ts +0 -40
- package/src/components/modal/actions/NavigationCubeAction.vue +0 -26
- package/src/components/modal/actions/__tests__/NavigationCubeAction.spec.ts +0 -25
- package/src/components/modal/buttons/AutoAnnotateBtn.vue +0 -197
- package/src/components/modal/buttons/__tests__/AutoAnnotateBtn.spec.ts +0 -28
- package/src/components/modal/menus/FileMenu.vue +0 -73
- package/src/components/modal/menus/__tests__/FileMenu.spec.ts +0 -110
- package/src/components/navigation/mcad/McadGlobalActions.vue +0 -20
- package/src/components/navigation/mcad/McadGlobalOpacitySlider.vue +0 -103
- package/src/components/navigation/mcad/McadGlobalScanViewBtn.vue +0 -28
- package/src/components/navigation/mcad/McadGlobalVisibilityBtn.vue +0 -38
- package/src/components/views/AnnotationTreeView.vue +0 -236
- package/src/components/views/DisplaySettings.vue +0 -94
- package/src/components/views/MarkupTreeView.vue +0 -201
- package/src/components/views/McadObjectTreeView.vue +0 -129
- package/src/components/views/__tests__/AnnotationTreeView.spec.ts +0 -62
- package/src/components/views/__tests__/MarkupTreeView.spec.ts +0 -41
- package/src/components/views/__tests__/McadObjectTreeView.spec.ts +0 -47
- package/src/components/views/modals/DataOverlayGeneralModal.vue +0 -71
- package/src/components/views/modals/DataOverlayMarkupModal.vue +0 -60
- package/src/components/views/modals/DataOverlayModal.vue +0 -88
- package/src/components/views/shared/MaskIcon.vue +0 -44
- package/src/components/views/shared/ObjectColor.vue +0 -31
- package/src/components/views/shared/ObjectLabel.vue +0 -30
- package/src/components/views/shared/Opacity.vue +0 -65
- package/src/components/views/shared/VisibilityBtn.vue +0 -25
- package/src/components/views/shared/__tests__/MaskIcon.spec.ts +0 -10
- package/src/components/views/shared/__tests__/ObjectColor.spec.ts +0 -10
- package/src/components/views/shared/__tests__/ObjectLabel.spec.ts +0 -10
- package/src/components/views/shared/__tests__/Opacity.spec.ts +0 -24
- package/src/components/views/shared/__tests__/VisibilityBtn.spec.ts +0 -11
- package/src/components/views/types/annotation-tree-view-item-child-action.ts +0 -6
- package/src/components/views/types/annotation-tree-view-item-child.ts +0 -9
- package/src/components/views/types/annotation-tree-view-item.ts +0 -13
- package/src/components/views/types/markup-tree-view-item-child.ts +0 -6
- package/src/components/views/types/markup-tree-view-item.ts +0 -14
- package/src/components/views/types/mcad-object-tree-view-item.ts +0 -13
- package/src/composables/__tests__/useAnnotations.spec.ts +0 -35
- package/src/composables/__tests__/useIntroJs.spec.ts +0 -51
- package/src/composables/__tests__/useMarkups.spec.ts +0 -39
- package/src/composables/__tests__/useMcadObjects.spec.ts +0 -36
- package/src/composables/__tests__/useNavigationCubeObserver.spec.ts +0 -61
- package/src/composables/useAnnotations.ts +0 -37
- package/src/composables/useIntroJs.ts +0 -142
- package/src/composables/useMarkups.ts +0 -41
- package/src/composables/useMcadObjects.ts +0 -32
- package/src/composables/useNavigationCubeObserver.ts +0 -114
- package/src/composables/useVersion3cr.ts +0 -7
- package/src/functions/__tests__/layoutOverlayStyle.spec.ts +0 -325
- package/src/functions/layoutOverlayStyle.ts +0 -84
- package/src/functions/notification.ts +0 -82
- package/src/functions/parseDataOverlayData.ts +0 -10
- package/src/functions/parseDataOverlayEvent.ts +0 -17
- package/src/functions/parseMcadEvent.ts +0 -10
- package/src/functions/rgbaToCss.ts +0 -13
- package/src/models/__tests__/loadViewerOptions.spec.ts +0 -72
- package/src/models/__tests__/loadViewerPayload.spec.ts +0 -10
- package/src/models/callbacks.ts +0 -4
- package/src/models/loadViewerOptions.ts +0 -79
- package/src/models/loadViewerPayload.ts +0 -17
- package/src/plugins/__tests__/usePlugins.spec.ts +0 -12
- package/src/plugins/usePlugins.ts +0 -8
- package/src/types/action-data.ts +0 -4
- package/src/types/action.ts +0 -13
- package/src/types/call-to-action.ts +0 -9
- package/src/types/colour.ts +0 -6
- package/src/types/data-overlay-angle.ts +0 -16
- package/src/types/data-overlay-annotation.ts +0 -18
- package/src/types/data-overlay-data.ts +0 -15
- package/src/types/data-overlay-event.ts +0 -5
- package/src/types/data-overlay-info.ts +0 -18
- package/src/types/data-overlay-interaction.ts +0 -15
- package/src/types/data-overlay-length.ts +0 -16
- package/src/types/data-overlay-markup.ts +0 -7
- package/src/types/data-overlay-mcad.ts +0 -20
- package/src/types/data-overlay-polygon.ts +0 -18
- package/src/types/data-overlay.ts +0 -16
- package/src/types/demo-type.ts +0 -4
- package/src/types/gpt-question.ts +0 -4
- package/src/types/gpt-response-payload.ts +0 -6
- package/src/types/mcad-object-interaction.ts +0 -15
- package/src/types/segment-angle.ts +0 -5
- package/src/types/vector2.ts +0 -4
- package/src/types/vector3.ts +0 -5
- package/test/fakers/data-overlay-info.faker.ts +0 -29
- /package/src/assets/logos/3dicom/{white.svg → white/white.svg} +0 -0
- /package/src/assets/{images/light/Singular-Health-Trademark-mono.svg → logos/singular-health/black/black.svg} +0 -0
- /package/src/assets/{images/dark/Singular-Health-Trademark-mono.svg → logos/singular-health/white/white.svg} +0 -0
|
@@ -1,24 +1,32 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
|
|
3
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
|
|
3
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
4
4
|
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
5
|
-
<svg width="800px" height="800px" viewBox="-3 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
6
|
-
<g id="icomoon-ignore">
|
|
7
|
-
</g>
|
|
5
|
+
<svg width="800px" height="800px" viewBox="-3 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
6
|
+
<g id="icomoon-ignore">
|
|
7
|
+
</g>
|
|
8
8
|
<path d="M-0.007 28.236l13.916-13.916 0.754 0.754-13.916 13.916-0.754-0.754z" fill="#000000">
|
|
9
|
-
|
|
9
|
+
|
|
10
|
+
</path>
|
|
10
11
|
<path d="M9.973 10.453h4.267v1.067h-4.267v-1.067z" fill="#000000">
|
|
11
|
-
|
|
12
|
+
|
|
13
|
+
</path>
|
|
12
14
|
<path d="M21.707 10.453h4.267v1.067h-4.267v-1.067z" fill="#000000">
|
|
13
|
-
|
|
15
|
+
|
|
16
|
+
</path>
|
|
14
17
|
<path d="M17.44 14.72h1.067v4.267h-1.067v-4.267z" fill="#000000">
|
|
15
|
-
|
|
18
|
+
|
|
19
|
+
</path>
|
|
16
20
|
<path d="M17.44 2.987h1.067v4.267h-1.067v-4.267z" fill="#000000">
|
|
17
|
-
|
|
21
|
+
|
|
22
|
+
</path>
|
|
18
23
|
<path d="M23.991 5.717l-3.017 3.017-0.754-0.754 3.017-3.017 0.754 0.754z" fill="#000000">
|
|
19
|
-
|
|
24
|
+
|
|
25
|
+
</path>
|
|
20
26
|
<path d="M23.246 17.042l-3.017-3.017 0.754-0.754 3.017 3.017-0.754 0.754z" fill="#000000">
|
|
21
|
-
|
|
27
|
+
|
|
28
|
+
</path>
|
|
22
29
|
<path d="M14.986 8.741l-3.017-3.017 0.754-0.754 3.017 3.017-0.754 0.754z" fill="#000000">
|
|
23
|
-
|
|
30
|
+
|
|
31
|
+
</path>
|
|
24
32
|
</svg>
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<svg width="186" height="124" viewBox="0 0 186 124" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0.5 4C0.5 2.06701 2.067 0.5 4 0.5H182C183.933 0.5 185.5 2.067 185.5 4V120C185.5 121.933 183.933 123.5 182 123.5H4C2.067 123.5 0.5 121.933 0.5 120V4Z" fill="white"/>
|
|
3
|
+
<g clip-path="url(#clip0_36_25812)">
|
|
4
|
+
<rect x="19" y="26" width="12" height="99" fill="#F7F7F8"/>
|
|
5
|
+
<rect x="28" y="26" width="142" height="8" fill="#F7F7F8"/>
|
|
6
|
+
<path d="M28 40H170V125H28V40Z" fill="white"/>
|
|
7
|
+
<path d="M32 48C32 45.7909 33.7909 44 36 44H93C95.2091 44 97 45.7909 97 48V77C97 79.2091 95.2091 81 93 81H36C33.7909 81 32 79.2091 32 77V48Z" fill="#F7F7F8"/>
|
|
8
|
+
<path d="M101 48C101 45.7909 102.791 44 105 44H162C164.209 44 166 45.7909 166 48V77C166 79.2091 164.209 81 162 81H105C102.791 81 101 79.2091 101 77V48Z" fill="#F7F7F8"/>
|
|
9
|
+
<path d="M32 89C32 86.7909 33.7909 85 36 85H93C95.2091 85 97 86.7909 97 89V118C97 120.209 95.2091 122 93 122H36C33.7909 122 32 120.209 32 118V89Z" fill="#F7F7F8"/>
|
|
10
|
+
<path d="M101 89C101 86.7909 102.791 85 105 85H162C164.209 85 166 86.7909 166 89V118C166 120.209 164.209 122 162 122H105C102.791 122 101 120.209 101 118V89Z" fill="#F7F7F8"/>
|
|
11
|
+
<path d="M28 38C28 35.7909 29.7909 34 32 34H170V44H28V38Z" fill="white"/>
|
|
12
|
+
<path d="M154 38C154 36.8954 154.895 36 156 36H164C165.105 36 166 36.8954 166 38V40C166 41.1046 165.105 42 164 42H156C154.895 42 154 41.1046 154 40V38Z" fill="#2E3176"/>
|
|
13
|
+
<path d="M77 39C77 38.4477 77.4477 38 78 38H84C84.5523 38 85 38.4477 85 39C85 39.5523 84.5523 40 84 40H78C77.4477 40 77 39.5523 77 39Z" fill="#D9D9DE"/>
|
|
14
|
+
<path d="M89 39C89 38.4477 89.4477 38 90 38H96C96.5523 38 97 38.4477 97 39C97 39.5523 96.5523 40 96 40H90C89.4477 40 89 39.5523 89 39Z" fill="#D9D9DE"/>
|
|
15
|
+
<path d="M101 39C101 38.4477 101.448 38 102 38H108C108.552 38 109 38.4477 109 39C109 39.5523 108.552 40 108 40H102C101.448 40 101 39.5523 101 39Z" fill="#D9D9DE"/>
|
|
16
|
+
<path d="M113 39C113 38.4477 113.448 38 114 38H120C120.552 38 121 38.4477 121 39C121 39.5523 120.552 40 120 40H114C113.448 40 113 39.5523 113 39Z" fill="#D9D9DE"/>
|
|
17
|
+
<path d="M32 38C32 36.8954 32.8954 36 34 36H42C43.1046 36 44 36.8954 44 38V40C44 41.1046 43.1046 42 42 42H34C32.8954 42 32 41.1046 32 40V38Z" fill="#D9D9DE"/>
|
|
18
|
+
<path d="M21 30C21 28.8954 21.8954 28 23 28H24C25.1046 28 26 28.8954 26 30V31C26 32.1046 25.1046 33 24 33H23C21.8954 33 21 32.1046 21 31V30Z" fill="#2E3176"/>
|
|
19
|
+
<mask id="path-17-inside-1_36_25812" fill="white">
|
|
20
|
+
<path d="M19 18H170V26H19V18Z"/>
|
|
21
|
+
</mask>
|
|
22
|
+
<path d="M19 18H170V26H19V18Z" fill="white"/>
|
|
23
|
+
<path d="M170 25H19V27H170V25Z" fill="#D9D9DE" mask="url(#path-17-inside-1_36_25812)"/>
|
|
24
|
+
<circle cx="22" cy="22" r="1" fill="#DC4756"/>
|
|
25
|
+
<circle cx="25" cy="22" r="1" fill="#ECB800"/>
|
|
26
|
+
<circle cx="28" cy="22" r="1" fill="#2FC423"/>
|
|
27
|
+
</g>
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id="clip0_36_25812">
|
|
30
|
+
<rect width="151" height="104" fill="white" transform="translate(19 18)"/>
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
</svg>
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
<svg width="186" height="124" viewBox="0 0 186 124" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M1 4C1 2.34315 2.34315 1 4 1H182C183.657 1 185 2.34315 185 4V120C185 121.657 183.657 123 182 123H4C2.34314 123 1 121.657 1 120V4Z" fill="white"/>
|
|
3
|
+
<path d="M99 2H182C183.105 2 184 2.89543 184 4V120C184 121.105 183.105 122 182 122H99V2Z" fill="#14141A"/>
|
|
4
|
+
<g clip-path="url(#clip0_36_25754)">
|
|
5
|
+
<rect x="19" y="26" width="12" height="99" fill="#F7F7F8"/>
|
|
6
|
+
<rect x="28" y="26" width="142" height="8" fill="#F7F7F8"/>
|
|
7
|
+
<path d="M28 40H170V125H28V40Z" fill="white"/>
|
|
8
|
+
<path d="M32 48C32 45.7909 33.7909 44 36 44H93C95.2091 44 97 45.7909 97 48V77C97 79.2091 95.2091 81 93 81H36C33.7909 81 32 79.2091 32 77V48Z" fill="#F7F7F8"/>
|
|
9
|
+
<path d="M101 48C101 45.7909 102.791 44 105 44H162C164.209 44 166 45.7909 166 48V77C166 79.2091 164.209 81 162 81H105C102.791 81 101 79.2091 101 77V48Z" fill="#F7F7F8"/>
|
|
10
|
+
<path d="M32 89C32 86.7909 33.7909 85 36 85H93C95.2091 85 97 86.7909 97 89V118C97 120.209 95.2091 122 93 122H36C33.7909 122 32 120.209 32 118V89Z" fill="#F7F7F8"/>
|
|
11
|
+
<path d="M28 38C28 35.7909 29.7909 34 32 34H170V44H28V38Z" fill="white"/>
|
|
12
|
+
<path d="M154 38C154 36.8954 154.895 36 156 36H164C165.105 36 166 36.8954 166 38V40C166 41.1046 165.105 42 164 42H156C154.895 42 154 41.1046 154 40V38Z" fill="#2E3176"/>
|
|
13
|
+
<path d="M77 39C77 38.4477 77.4477 38 78 38H84C84.5523 38 85 38.4477 85 39C85 39.5523 84.5523 40 84 40H78C77.4477 40 77 39.5523 77 39Z" fill="#D9D9DE"/>
|
|
14
|
+
<path d="M89 39C89 38.4477 89.4477 38 90 38H96C96.5523 38 97 38.4477 97 39C97 39.5523 96.5523 40 96 40H90C89.4477 40 89 39.5523 89 39Z" fill="#D9D9DE"/>
|
|
15
|
+
<path d="M101 39C101 38.4477 101.448 38 102 38H108C108.552 38 109 38.4477 109 39C109 39.5523 108.552 40 108 40H102C101.448 40 101 39.5523 101 39Z" fill="#D9D9DE"/>
|
|
16
|
+
<path d="M113 39C113 38.4477 113.448 38 114 38H120C120.552 38 121 38.4477 121 39C121 39.5523 120.552 40 120 40H114C113.448 40 113 39.5523 113 39Z" fill="#D9D9DE"/>
|
|
17
|
+
<path d="M32 38C32 36.8954 32.8954 36 34 36H42C43.1046 36 44 36.8954 44 38V40C44 41.1046 43.1046 42 42 42H34C32.8954 42 32 41.1046 32 40V38Z" fill="#D9D9DE"/>
|
|
18
|
+
<path d="M21 30C21 28.8954 21.8954 28 23 28H24C25.1046 28 26 28.8954 26 30V31C26 32.1046 25.1046 33 24 33H23C21.8954 33 21 32.1046 21 31V30Z" fill="#2E3176"/>
|
|
19
|
+
<mask id="path-18-inside-1_36_25754" fill="white">
|
|
20
|
+
<path d="M19 18H170V26H19V18Z"/>
|
|
21
|
+
</mask>
|
|
22
|
+
<path d="M19 18H170V26H19V18Z" fill="white"/>
|
|
23
|
+
<path d="M170 25H19V27H170V25Z" fill="#D9D9DE" mask="url(#path-18-inside-1_36_25754)"/>
|
|
24
|
+
<circle cx="22" cy="22" r="1" fill="#DC4756"/>
|
|
25
|
+
<circle cx="25" cy="22" r="1" fill="#ECB800"/>
|
|
26
|
+
<circle cx="28" cy="22" r="1" fill="#2FC423"/>
|
|
27
|
+
</g>
|
|
28
|
+
<g clip-path="url(#clip1_36_25754)">
|
|
29
|
+
<rect x="28" y="26" width="142" height="8" fill="#3A3A40"/>
|
|
30
|
+
<path d="M28 40H170V125H28V40Z" fill="#1D1D20"/>
|
|
31
|
+
<path d="M101 48C101 45.7909 102.791 44 105 44H162C164.209 44 166 45.7909 166 48V77C166 79.2091 164.209 81 162 81H105C102.791 81 101 79.2091 101 77V48Z" fill="#3A3A40"/>
|
|
32
|
+
<path d="M101 89C101 86.7909 102.791 85 105 85H162C164.209 85 166 86.7909 166 89V118C166 120.209 164.209 122 162 122H105C102.791 122 101 120.209 101 118V89Z" fill="#3A3A40"/>
|
|
33
|
+
<path d="M28 38C28 35.7909 29.7909 34 32 34H170V44H28V38Z" fill="#1D1D20"/>
|
|
34
|
+
<path d="M154 38C154 36.8954 154.895 36 156 36H164C165.105 36 166 36.8954 166 38V40C166 41.1046 165.105 42 164 42H156C154.895 42 154 41.1046 154 40V38Z" fill="#6875EC"/>
|
|
35
|
+
<path d="M101 39C101 38.4477 101.448 38 102 38H108C108.552 38 109 38.4477 109 39C109 39.5523 108.552 40 108 40H102C101.448 40 101 39.5523 101 39Z" fill="#C9D7FC"/>
|
|
36
|
+
<path d="M113 39C113 38.4477 113.448 38 114 38H120C120.552 38 121 38.4477 121 39C121 39.5523 120.552 40 120 40H114C113.448 40 113 39.5523 113 39Z" fill="#C9D7FC"/>
|
|
37
|
+
<mask id="path-31-inside-2_36_25754" fill="white">
|
|
38
|
+
<path d="M19 18H170V26H19V18Z"/>
|
|
39
|
+
</mask>
|
|
40
|
+
<path d="M19 18H170V26H19V18Z" fill="#1D1D20"/>
|
|
41
|
+
<path d="M170 25H19V27H170V25Z" fill="#4D4D57" mask="url(#path-31-inside-2_36_25754)"/>
|
|
42
|
+
</g>
|
|
43
|
+
<defs>
|
|
44
|
+
<clipPath id="clip0_36_25754">
|
|
45
|
+
<rect width="151" height="104" fill="white" transform="translate(19 18)"/>
|
|
46
|
+
</clipPath>
|
|
47
|
+
<clipPath id="clip1_36_25754">
|
|
48
|
+
<rect width="71" height="104" fill="white" transform="translate(99 18)"/>
|
|
49
|
+
</clipPath>
|
|
50
|
+
</defs>
|
|
51
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<svg width="498" height="155" viewBox="0 0 498 155" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M121.308 23.7844L73.585 10.8309V61.3496L121.308 75.5985V23.7844Z" stroke="url(#paint0_linear_184_3654)" stroke-width="16"/>
|
|
3
|
+
<path d="M97.447 49.6903L39.4971 34.6915V93.1868L97.447 109.686V49.6903Z" stroke="url(#paint1_linear_184_3654)" stroke-width="16"/>
|
|
4
|
+
<path d="M73.5849 75.599L8.81738 58.5549V125.027L73.5849 143.775V75.599Z" stroke="url(#paint2_linear_184_3654)" stroke-width="16"/>
|
|
5
|
+
<g clip-path="url(#clip0_184_3654)">
|
|
6
|
+
<path d="M428.03 110.634V43.9701H441.452L466.418 77.0782H460.154L484.404 43.9701H497.826V110.634H483.956V59.2714L489.504 60.5242L463.823 93.6323H462.033L437.247 60.5242L441.9 59.2714V110.634H428.03Z" fill="#1D1D1F"/>
|
|
7
|
+
<path d="M386.427 111.707C381.416 111.707 376.763 110.842 372.468 109.112C368.173 107.382 364.415 104.966 361.193 101.864C358.032 98.7026 355.556 95.0339 353.766 90.8581C351.977 86.6823 351.082 82.1485 351.082 77.2569C351.082 72.3652 351.947 67.8315 353.677 63.6557C355.467 59.4799 357.942 55.841 361.104 52.739C364.325 49.6369 368.083 47.2209 372.379 45.491C376.674 43.761 381.357 42.896 386.427 42.896C391.498 42.896 396.181 43.761 400.476 45.491C404.771 47.2209 408.499 49.6369 411.661 52.739C414.882 55.841 417.358 59.4799 419.088 63.6557C420.878 67.8315 421.772 72.3652 421.772 77.2569C421.772 82.1485 420.878 86.6823 419.088 90.8581C417.298 95.0339 414.793 98.7026 411.572 101.864C408.41 104.966 404.681 107.382 400.386 109.112C396.091 110.842 391.438 111.707 386.427 111.707ZM386.427 99.1798C389.47 99.1798 392.273 98.6429 394.838 97.5692C397.463 96.4954 399.76 95.004 401.729 93.0951C403.697 91.1265 405.218 88.8 406.292 86.1155C407.366 83.4311 407.903 80.4782 407.903 77.2569C407.903 74.0355 407.366 71.1125 406.292 68.4877C405.218 65.8033 403.697 63.4767 401.729 61.5081C399.76 59.5396 397.463 58.0482 394.838 57.0341C392.273 55.9603 389.47 55.4234 386.427 55.4234C383.385 55.4234 380.551 55.9603 377.926 57.0341C375.361 58.0482 373.094 59.5396 371.126 61.5081C369.157 63.4767 367.636 65.8033 366.562 68.4877C365.489 71.1125 364.952 74.0355 364.952 77.2569C364.952 80.4782 365.489 83.4311 366.562 86.1155C367.636 88.8 369.157 91.1265 371.126 93.0951C373.094 95.004 375.361 96.4954 377.926 97.5692C380.551 98.6429 383.385 99.1798 386.427 99.1798Z" fill="#1D1D1F"/>
|
|
8
|
+
<path d="M319.185 111.707C314.413 111.707 309.968 110.842 305.852 109.112C301.796 107.382 298.246 104.966 295.204 101.864C292.162 98.7624 289.775 95.1235 288.046 90.9477C286.375 86.7719 285.54 82.2083 285.54 77.257C285.54 72.3057 286.375 67.7421 288.046 63.5663C289.716 59.3309 292.072 55.692 295.115 52.6496C298.157 49.5476 301.706 47.1614 305.763 45.4911C309.879 43.7611 314.353 42.8961 319.185 42.8961C324.017 42.8961 328.342 43.7015 332.16 45.3121C336.037 46.9228 339.318 49.0703 342.003 51.7548C344.687 54.4392 346.596 57.4219 347.73 60.7029L335.471 66.6087C334.337 63.3874 332.339 60.7328 329.475 58.6449C326.672 56.4973 323.242 55.4235 319.185 55.4235C315.248 55.4235 311.788 56.3482 308.805 58.1974C305.823 60.0467 303.496 62.6119 301.826 65.8929C300.215 69.1142 299.41 72.9022 299.41 77.257C299.41 81.6118 300.215 85.4296 301.826 88.7106C303.496 91.9916 305.823 94.5568 308.805 96.406C311.788 98.2553 315.248 99.18 319.185 99.18C323.242 99.18 326.672 98.136 329.475 96.0481C332.339 93.9006 334.337 91.2161 335.471 87.9948L347.73 93.9006C346.596 97.1815 344.687 100.164 342.003 102.849C339.318 105.533 336.037 107.681 332.16 109.291C328.342 110.902 324.017 111.707 319.185 111.707Z" fill="#1D1D1F"/>
|
|
9
|
+
<path d="M265.397 110.634V43.9701H279.267V110.634H265.397Z" fill="#1D1D1F"/>
|
|
10
|
+
<path d="M202.827 110.634V43.9701H224.571C231.789 43.9701 238.053 45.4018 243.362 48.2652C248.671 51.1286 252.788 55.0658 255.711 60.0768C258.634 65.0877 260.095 70.8145 260.095 77.2572C260.095 83.6999 258.634 89.4565 255.711 94.5271C252.788 99.5381 248.671 103.475 243.362 106.339C238.053 109.202 231.789 110.634 224.571 110.634H202.827ZM216.697 98.5538H224.929C229.284 98.5538 233.042 97.6888 236.204 95.9588C239.365 94.1692 241.811 91.6935 243.541 88.5319C245.331 85.3105 246.226 81.5523 246.226 77.2572C246.226 72.9024 245.331 69.1442 243.541 65.9825C241.811 62.8209 239.365 60.375 236.204 58.6451C233.042 56.9151 229.284 56.0501 224.929 56.0501H216.697V98.5538Z" fill="#1D1D1F"/>
|
|
11
|
+
<path d="M171.839 111.708C168.14 111.708 164.62 111.022 161.28 109.649C157.939 108.218 155.106 106.219 152.779 103.654C150.452 101.089 148.901 98.0766 148.126 94.6166L160.385 90.5005C161.399 93.3639 162.89 95.5412 164.859 97.0326C166.828 98.4643 169.154 99.1802 171.839 99.1802C174.046 99.1802 175.925 98.7626 177.476 97.9274C179.087 97.0923 180.339 95.929 181.234 94.4376C182.129 92.8866 182.576 91.097 182.576 89.0688C182.576 87.0405 182.129 85.3105 181.234 83.8788C180.399 82.3875 179.176 81.254 177.565 80.4785C176.014 79.6434 174.105 79.2258 171.839 79.2258C170.526 79.2258 169.214 79.3749 167.901 79.6732C166.589 79.9715 165.396 80.389 164.322 80.9259L161.101 74.2148L178.192 55.6027H152.153V43.9701H193.762V54.7079L176.223 74.6622L176.671 69.0249C180.667 69.0249 184.127 69.8601 187.05 71.5304C190.033 73.1411 192.33 75.4079 193.94 78.331C195.611 81.254 196.446 84.6543 196.446 88.5319C196.446 92.9463 195.372 96.9133 193.225 100.433C191.077 103.953 188.154 106.726 184.455 108.755C180.757 110.723 176.551 111.708 171.839 111.708Z" fill="#1D1D1F"/>
|
|
12
|
+
</g>
|
|
13
|
+
<defs>
|
|
14
|
+
<linearGradient id="paint0_linear_184_3654" x1="97.4467" y1="10.8309" x2="85.8199" y2="69.7848" gradientUnits="userSpaceOnUse">
|
|
15
|
+
<stop stop-color="#1D1D1F" stop-opacity="0.8"/>
|
|
16
|
+
<stop offset="1" stop-color="#1D1D1F" stop-opacity="0.5"/>
|
|
17
|
+
</linearGradient>
|
|
18
|
+
<linearGradient id="paint1_linear_184_3654" x1="68.472" y1="34.6915" x2="55.5909" y2="103.187" gradientUnits="userSpaceOnUse">
|
|
19
|
+
<stop stop-color="#1D1D1F" stop-opacity="0.8"/>
|
|
20
|
+
<stop offset="1" stop-color="#1D1D1F" stop-opacity="0.5"/>
|
|
21
|
+
</linearGradient>
|
|
22
|
+
<linearGradient id="paint2_linear_184_3654" x1="41.2011" y1="58.5549" x2="26.3355" y2="136.301" gradientUnits="userSpaceOnUse">
|
|
23
|
+
<stop stop-color="#1D1D1F" stop-opacity="0.8"/>
|
|
24
|
+
<stop offset="1" stop-color="#1D1D1F" stop-opacity="0.5"/>
|
|
25
|
+
</linearGradient>
|
|
26
|
+
<clipPath id="clip0_184_3654">
|
|
27
|
+
<rect width="349.699" height="68.8112" fill="white" transform="translate(148.126 42.896)"/>
|
|
28
|
+
</clipPath>
|
|
29
|
+
</defs>
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg width="498" height="156" viewBox="0 0 498 156" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M121.308 24.1812L73.585 11.2277V61.7464L121.308 75.9952V24.1812Z" stroke="#BAD3F8" stroke-width="16.2984"/>
|
|
3
|
+
<path d="M97.447 50.0871L39.4971 35.0883V93.5836L97.447 110.082V50.0871Z" stroke="#5A93ED" stroke-width="16.2984"/>
|
|
4
|
+
<path d="M73.5849 75.9957L8.81738 58.9517V125.424L73.5849 144.172V75.9957Z" stroke="#2955DA" stroke-width="16.2984"/>
|
|
5
|
+
<g clip-path="url(#clip0_184_3626)">
|
|
6
|
+
<path d="M428.03 111.031V44.3669H441.452L466.418 77.4751H460.154L484.404 44.3669H497.826V111.031H483.956V59.6682L489.504 60.921L463.823 94.0291H462.033L437.247 60.921L441.9 59.6682V111.031H428.03Z" fill="#1D1D1F"/>
|
|
7
|
+
<path d="M386.427 112.104C381.416 112.104 376.763 111.239 372.468 109.509C368.173 107.779 364.415 105.363 361.193 102.261C358.032 99.0994 355.556 95.4307 353.766 91.2549C351.977 87.0791 351.082 82.5453 351.082 77.6537C351.082 72.762 351.947 68.2283 353.677 64.0525C355.467 59.8767 357.942 56.2378 361.104 53.1357C364.325 50.0337 368.083 47.6177 372.379 45.8877C376.674 44.1578 381.357 43.2928 386.427 43.2928C391.498 43.2928 396.181 44.1578 400.476 45.8877C404.771 47.6177 408.499 50.0337 411.661 53.1357C414.882 56.2378 417.358 59.8767 419.088 64.0525C420.878 68.2283 421.772 72.762 421.772 77.6537C421.772 82.5453 420.878 87.0791 419.088 91.2549C417.298 95.4307 414.793 99.0994 411.572 102.261C408.41 105.363 404.681 107.779 400.386 109.509C396.091 111.239 391.438 112.104 386.427 112.104ZM386.427 99.5766C389.47 99.5766 392.273 99.0397 394.838 97.966C397.463 96.8922 399.76 95.4008 401.729 93.4919C403.697 91.5233 405.218 89.1968 406.292 86.5123C407.366 83.8279 407.903 80.875 407.903 77.6537C407.903 74.4323 407.366 71.5093 406.292 68.8845C405.218 66.2 403.697 63.8735 401.729 61.9049C399.76 59.9363 397.463 58.445 394.838 57.4309C392.273 56.3571 389.47 55.8202 386.427 55.8202C383.385 55.8202 380.551 56.3571 377.926 57.4309C375.361 58.445 373.094 59.9363 371.126 61.9049C369.157 63.8735 367.636 66.2 366.562 68.8845C365.489 71.5093 364.952 74.4323 364.952 77.6537C364.952 80.875 365.489 83.8279 366.562 86.5123C367.636 89.1968 369.157 91.5233 371.126 93.4919C373.094 95.4008 375.361 96.8922 377.926 97.966C380.551 99.0397 383.385 99.5766 386.427 99.5766Z" fill="#1D1D1F"/>
|
|
8
|
+
<path d="M319.185 112.104C314.413 112.104 309.968 111.239 305.852 109.509C301.796 107.779 298.246 105.363 295.204 102.261C292.162 99.1592 289.775 95.5203 288.046 91.3445C286.375 87.1687 285.54 82.6052 285.54 77.6539C285.54 72.7025 286.375 68.139 288.046 63.9632C289.716 59.7277 292.072 56.0888 295.115 53.0464C298.157 49.9444 301.706 47.5583 305.763 45.8879C309.879 44.158 314.353 43.293 319.185 43.293C324.017 43.293 328.342 44.0983 332.16 45.709C336.037 47.3196 339.318 49.4672 342.003 52.1516C344.687 54.8361 346.596 57.8188 347.73 61.0998L335.471 67.0056C334.337 63.7842 332.339 61.1296 329.475 59.0417C326.672 56.8941 323.242 55.8204 319.185 55.8204C315.248 55.8204 311.788 56.745 308.805 58.5943C305.823 60.4436 303.496 63.0087 301.826 66.2897C300.215 69.511 299.41 73.2991 299.41 77.6539C299.41 82.0086 300.215 85.8265 301.826 89.1075C303.496 92.3885 305.823 94.9536 308.805 96.8029C311.788 98.6522 315.248 99.5768 319.185 99.5768C323.242 99.5768 326.672 98.5329 329.475 96.445C332.339 94.2974 334.337 91.613 335.471 88.3916L347.73 94.2974C346.596 97.5784 344.687 100.561 342.003 103.246C339.318 105.93 336.037 108.078 332.16 109.688C328.342 111.299 324.017 112.104 319.185 112.104Z" fill="#1D1D1F"/>
|
|
9
|
+
<path d="M265.397 111.031V44.3669H279.267V111.031H265.397Z" fill="#1D1D1F"/>
|
|
10
|
+
<path d="M202.827 111.031V44.3669H224.571C231.789 44.3669 238.053 45.7986 243.362 48.662C248.671 51.5254 252.788 55.4626 255.711 60.4736C258.634 65.4845 260.095 71.2114 260.095 77.654C260.095 84.0967 258.634 89.8533 255.711 94.9239C252.788 99.9349 248.671 103.872 243.362 106.735C238.053 109.599 231.789 111.031 224.571 111.031H202.827ZM216.697 98.9506H224.929C229.284 98.9506 233.042 98.0856 236.204 96.3556C239.365 94.566 241.811 92.0904 243.541 88.9287C245.331 85.7073 246.226 81.9491 246.226 77.654C246.226 73.2993 245.331 69.541 243.541 66.3794C241.811 63.2177 239.365 60.7718 236.204 59.0419C233.042 57.3119 229.284 56.4469 224.929 56.4469H216.697V98.9506Z" fill="#1D1D1F"/>
|
|
11
|
+
<path d="M171.839 112.104C168.14 112.104 164.62 111.418 161.28 110.046C157.939 108.615 155.106 106.616 152.779 104.051C150.452 101.486 148.901 98.4734 148.126 95.0134L160.385 90.8973C161.399 93.7607 162.89 95.9381 164.859 97.4294C166.828 98.8611 169.154 99.577 171.839 99.577C174.046 99.577 175.925 99.1594 177.476 98.3242C179.087 97.4891 180.339 96.3258 181.234 94.8345C182.129 93.2835 182.576 91.4938 182.576 89.4656C182.576 87.4373 182.129 85.7074 181.234 84.2757C180.399 82.7843 179.176 81.6509 177.565 80.8754C176.014 80.0402 174.105 79.6226 171.839 79.6226C170.526 79.6226 169.214 79.7718 167.901 80.07C166.589 80.3683 165.396 80.7859 164.322 81.3228L161.101 74.6117L178.192 55.9995H152.153V44.3669H193.762V55.1047L176.223 75.0591L176.671 69.4217C180.667 69.4217 184.127 70.2569 187.05 71.9272C190.033 73.5379 192.33 75.8047 193.94 78.7278C195.611 81.6509 196.446 85.0512 196.446 88.9287C196.446 93.3431 195.372 97.3101 193.225 100.83C191.077 104.349 188.154 107.123 184.455 109.151C180.757 111.12 176.551 112.104 171.839 112.104Z" fill="#1D1D1F"/>
|
|
12
|
+
</g>
|
|
13
|
+
<defs>
|
|
14
|
+
<clipPath id="clip0_184_3626">
|
|
15
|
+
<rect width="349.699" height="68.8112" fill="white" transform="translate(148.126 43.2928)"/>
|
|
16
|
+
</clipPath>
|
|
17
|
+
</defs>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg width="156" height="156" viewBox="0 0 156 156" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M121.308 24.1812L73.585 11.2277V61.7464L121.308 75.9952V24.1812Z" stroke="#BAD3F8" stroke-width="16.2984"/>
|
|
3
|
+
<path d="M97.447 50.0871L39.4971 35.0883V93.5836L97.447 110.082V50.0871Z" stroke="#5A93ED" stroke-width="16.2984"/>
|
|
4
|
+
<path d="M73.5849 75.9957L8.81738 58.9517V125.424L73.5849 144.172V75.9957Z" stroke="#2955DA" stroke-width="16.2984"/>
|
|
5
|
+
<!-- <g clip-path="url(#clip0_184_3626)">
|
|
6
|
+
<path d="M428.03 111.031V44.3669H441.452L466.418 77.4751H460.154L484.404 44.3669H497.826V111.031H483.956V59.6682L489.504 60.921L463.823 94.0291H462.033L437.247 60.921L441.9 59.6682V111.031H428.03Z" fill="#1D1D1F"/>
|
|
7
|
+
<path d="M386.427 112.104C381.416 112.104 376.763 111.239 372.468 109.509C368.173 107.779 364.415 105.363 361.193 102.261C358.032 99.0994 355.556 95.4307 353.766 91.2549C351.977 87.0791 351.082 82.5453 351.082 77.6537C351.082 72.762 351.947 68.2283 353.677 64.0525C355.467 59.8767 357.942 56.2378 361.104 53.1357C364.325 50.0337 368.083 47.6177 372.379 45.8877C376.674 44.1578 381.357 43.2928 386.427 43.2928C391.498 43.2928 396.181 44.1578 400.476 45.8877C404.771 47.6177 408.499 50.0337 411.661 53.1357C414.882 56.2378 417.358 59.8767 419.088 64.0525C420.878 68.2283 421.772 72.762 421.772 77.6537C421.772 82.5453 420.878 87.0791 419.088 91.2549C417.298 95.4307 414.793 99.0994 411.572 102.261C408.41 105.363 404.681 107.779 400.386 109.509C396.091 111.239 391.438 112.104 386.427 112.104ZM386.427 99.5766C389.47 99.5766 392.273 99.0397 394.838 97.966C397.463 96.8922 399.76 95.4008 401.729 93.4919C403.697 91.5233 405.218 89.1968 406.292 86.5123C407.366 83.8279 407.903 80.875 407.903 77.6537C407.903 74.4323 407.366 71.5093 406.292 68.8845C405.218 66.2 403.697 63.8735 401.729 61.9049C399.76 59.9363 397.463 58.445 394.838 57.4309C392.273 56.3571 389.47 55.8202 386.427 55.8202C383.385 55.8202 380.551 56.3571 377.926 57.4309C375.361 58.445 373.094 59.9363 371.126 61.9049C369.157 63.8735 367.636 66.2 366.562 68.8845C365.489 71.5093 364.952 74.4323 364.952 77.6537C364.952 80.875 365.489 83.8279 366.562 86.5123C367.636 89.1968 369.157 91.5233 371.126 93.4919C373.094 95.4008 375.361 96.8922 377.926 97.966C380.551 99.0397 383.385 99.5766 386.427 99.5766Z" fill="#1D1D1F"/>
|
|
8
|
+
<path d="M319.185 112.104C314.413 112.104 309.968 111.239 305.852 109.509C301.796 107.779 298.246 105.363 295.204 102.261C292.162 99.1592 289.775 95.5203 288.046 91.3445C286.375 87.1687 285.54 82.6052 285.54 77.6539C285.54 72.7025 286.375 68.139 288.046 63.9632C289.716 59.7277 292.072 56.0888 295.115 53.0464C298.157 49.9444 301.706 47.5583 305.763 45.8879C309.879 44.158 314.353 43.293 319.185 43.293C324.017 43.293 328.342 44.0983 332.16 45.709C336.037 47.3196 339.318 49.4672 342.003 52.1516C344.687 54.8361 346.596 57.8188 347.73 61.0998L335.471 67.0056C334.337 63.7842 332.339 61.1296 329.475 59.0417C326.672 56.8941 323.242 55.8204 319.185 55.8204C315.248 55.8204 311.788 56.745 308.805 58.5943C305.823 60.4436 303.496 63.0087 301.826 66.2897C300.215 69.511 299.41 73.2991 299.41 77.6539C299.41 82.0086 300.215 85.8265 301.826 89.1075C303.496 92.3885 305.823 94.9536 308.805 96.8029C311.788 98.6522 315.248 99.5768 319.185 99.5768C323.242 99.5768 326.672 98.5329 329.475 96.445C332.339 94.2974 334.337 91.613 335.471 88.3916L347.73 94.2974C346.596 97.5784 344.687 100.561 342.003 103.246C339.318 105.93 336.037 108.078 332.16 109.688C328.342 111.299 324.017 112.104 319.185 112.104Z" fill="#1D1D1F"/>
|
|
9
|
+
<path d="M265.397 111.031V44.3669H279.267V111.031H265.397Z" fill="#1D1D1F"/>
|
|
10
|
+
<path d="M202.827 111.031V44.3669H224.571C231.789 44.3669 238.053 45.7986 243.362 48.662C248.671 51.5254 252.788 55.4626 255.711 60.4736C258.634 65.4845 260.095 71.2114 260.095 77.654C260.095 84.0967 258.634 89.8533 255.711 94.9239C252.788 99.9349 248.671 103.872 243.362 106.735C238.053 109.599 231.789 111.031 224.571 111.031H202.827ZM216.697 98.9506H224.929C229.284 98.9506 233.042 98.0856 236.204 96.3556C239.365 94.566 241.811 92.0904 243.541 88.9287C245.331 85.7073 246.226 81.9491 246.226 77.654C246.226 73.2993 245.331 69.541 243.541 66.3794C241.811 63.2177 239.365 60.7718 236.204 59.0419C233.042 57.3119 229.284 56.4469 224.929 56.4469H216.697V98.9506Z" fill="#1D1D1F"/>
|
|
11
|
+
<path d="M171.839 112.104C168.14 112.104 164.62 111.418 161.28 110.046C157.939 108.615 155.106 106.616 152.779 104.051C150.452 101.486 148.901 98.4734 148.126 95.0134L160.385 90.8973C161.399 93.7607 162.89 95.9381 164.859 97.4294C166.828 98.8611 169.154 99.577 171.839 99.577C174.046 99.577 175.925 99.1594 177.476 98.3242C179.087 97.4891 180.339 96.3258 181.234 94.8345C182.129 93.2835 182.576 91.4938 182.576 89.4656C182.576 87.4373 182.129 85.7074 181.234 84.2757C180.399 82.7843 179.176 81.6509 177.565 80.8754C176.014 80.0402 174.105 79.6226 171.839 79.6226C170.526 79.6226 169.214 79.7718 167.901 80.07C166.589 80.3683 165.396 80.7859 164.322 81.3228L161.101 74.6117L178.192 55.9995H152.153V44.3669H193.762V55.1047L176.223 75.0591L176.671 69.4217C180.667 69.4217 184.127 70.2569 187.05 71.9272C190.033 73.5379 192.33 75.8047 193.94 78.7278C195.611 81.6509 196.446 85.0512 196.446 88.9287C196.446 93.3431 195.372 97.3101 193.225 100.83C191.077 104.349 188.154 107.123 184.455 109.151C180.757 111.12 176.551 112.104 171.839 112.104Z" fill="#1D1D1F"/>
|
|
12
|
+
</g> -->
|
|
13
|
+
<defs>
|
|
14
|
+
<clipPath id="clip0_184_3626">
|
|
15
|
+
<rect width="349.699" height="68.8112" fill="white" transform="translate(148.126 43.2928)"/>
|
|
16
|
+
</clipPath>
|
|
17
|
+
</defs>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<svg width="498" height="156" viewBox="0 0 498 156" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M121.308 24.3823L73.585 11.4288V61.9475L121.308 76.1963V24.3823Z" stroke="#BAD3F8" stroke-width="16.2984"/>
|
|
3
|
+
<path d="M97.447 50.2881L39.4971 35.2893V93.7846L97.447 110.283V50.2881Z" stroke="#5A93ED" stroke-width="16.2984"/>
|
|
4
|
+
<path d="M73.5849 76.1968L8.81738 59.1527V125.625L73.5849 144.373V76.1968Z" stroke="#2955DA" stroke-width="16.2984"/>
|
|
5
|
+
<g clip-path="url(#clip0_184_3936)">
|
|
6
|
+
<path d="M427.205 111.232V44.5681H440.627L465.593 77.6762H459.329L483.578 44.5681H497.001V111.232H483.131V59.8694L488.679 61.1221L462.998 94.2303H461.208L436.422 61.1221L441.075 59.8694V111.232H427.205Z" fill="#1D1D1F"/>
|
|
7
|
+
<path d="M385.602 112.305C380.591 112.305 375.938 111.44 371.643 109.71C367.348 107.98 363.59 105.564 360.368 102.462C357.207 99.3004 354.731 95.6317 352.941 91.4559C351.152 87.2801 350.257 82.7464 350.257 77.8547C350.257 72.9631 351.122 68.4293 352.852 64.2535C354.641 60.0777 357.117 56.4388 360.279 53.3368C363.5 50.2348 367.258 47.8188 371.553 46.0888C375.849 44.3588 380.531 43.4938 385.602 43.4938C390.673 43.4938 395.355 44.3588 399.651 46.0888C403.946 47.8188 407.674 50.2348 410.836 53.3368C414.057 56.4388 416.533 60.0777 418.263 64.2535C420.052 68.4293 420.947 72.9631 420.947 77.8547C420.947 82.7464 420.052 87.2801 418.263 91.4559C416.473 95.6317 413.968 99.3004 410.746 102.462C407.585 105.564 403.856 107.98 399.561 109.71C395.266 111.44 390.613 112.305 385.602 112.305ZM385.602 99.7777C388.644 99.7777 391.448 99.2408 394.013 98.167C396.638 97.0932 398.935 95.6019 400.903 93.6929C402.872 91.7243 404.393 89.3978 405.467 86.7134C406.541 84.0289 407.078 81.076 407.078 77.8547C407.078 74.6334 406.541 71.7103 405.467 69.0855C404.393 66.4011 402.872 64.0746 400.903 62.106C398.935 60.1374 396.638 58.646 394.013 57.6319C391.448 56.5581 388.644 56.0212 385.602 56.0212C382.56 56.0212 379.726 56.5581 377.101 57.6319C374.536 58.646 372.269 60.1374 370.301 62.106C368.332 64.0746 366.811 66.4011 365.737 69.0855C364.663 71.7103 364.126 74.6334 364.126 77.8547C364.126 81.076 364.663 84.0289 365.737 86.7134C366.811 89.3978 368.332 91.7243 370.301 93.6929C372.269 95.6019 374.536 97.0932 377.101 98.167C379.726 99.2408 382.56 99.7777 385.602 99.7777Z" fill="#1D1D1F"/>
|
|
8
|
+
<path d="M318.36 112.305C313.588 112.305 309.143 111.44 305.027 109.71C300.971 107.98 297.421 105.564 294.379 102.462C291.336 99.3603 288.95 95.7214 287.22 91.5456C285.55 87.3698 284.715 82.8062 284.715 77.8549C284.715 72.9036 285.55 68.34 287.22 64.1642C288.891 59.9288 291.247 56.2899 294.289 53.2475C297.332 50.1455 300.881 47.7593 304.938 46.089C309.054 44.359 313.528 43.494 318.36 43.494C323.192 43.494 327.517 44.2994 331.335 45.91C335.212 47.5207 338.493 49.6682 341.178 52.3527C343.862 55.0371 345.771 58.0198 346.904 61.3008L334.646 67.2066C333.512 63.9853 331.514 61.3307 328.65 59.2428C325.846 57.0952 322.416 56.0214 318.36 56.0214C314.423 56.0214 310.963 56.9461 307.98 58.7953C304.997 60.6446 302.671 63.2098 301 66.4908C299.39 69.7121 298.584 73.5001 298.584 77.8549C298.584 82.2097 299.39 86.0275 301 89.3085C302.671 92.5895 304.997 95.1547 307.98 97.0039C310.963 98.8532 314.423 99.7779 318.36 99.7779C322.416 99.7779 325.846 98.7339 328.65 96.646C331.514 94.4985 333.512 91.814 334.646 88.5927L346.904 94.4985C345.771 97.7794 343.862 100.762 341.178 103.447C338.493 106.131 335.212 108.279 331.335 109.889C327.517 111.5 323.192 112.305 318.36 112.305Z" fill="#1D1D1F"/>
|
|
9
|
+
<path d="M264.572 111.232V44.5681H278.442V111.232H264.572Z" fill="#1D1D1F"/>
|
|
10
|
+
<path d="M202.002 111.232V44.5679H223.746C230.964 44.5679 237.228 45.9996 242.537 48.863C247.846 51.7265 251.962 55.6636 254.885 60.6746C257.809 65.6856 259.27 71.4124 259.27 77.855C259.27 84.2977 257.809 90.0543 254.885 95.125C251.962 100.136 247.846 104.073 242.537 106.937C237.228 109.8 230.964 111.232 223.746 111.232H202.002ZM215.872 99.1516H224.104C228.459 99.1516 232.217 98.2866 235.379 96.5567C238.54 94.767 240.986 92.2914 242.716 89.1297C244.506 85.9084 245.4 82.1501 245.4 77.855C245.4 73.5003 244.506 69.7421 242.716 66.5804C240.986 63.4187 238.54 60.9729 235.379 59.2429C232.217 57.5129 228.459 56.6479 224.104 56.6479H215.872V99.1516Z" fill="#1D1D1F"/>
|
|
11
|
+
<path d="M171.013 112.305C167.315 112.305 163.795 111.619 160.455 110.247C157.114 108.816 154.28 106.817 151.954 104.252C149.627 101.687 148.076 98.6744 147.301 95.2144L159.56 91.0983C160.574 93.9617 162.065 96.1391 164.034 97.6304C166.002 99.0621 168.329 99.778 171.013 99.778C173.221 99.778 175.1 99.3604 176.651 98.5253C178.261 97.6901 179.514 96.5268 180.409 95.0355C181.304 93.4845 181.751 91.6948 181.751 89.6666C181.751 87.6383 181.304 85.9084 180.409 84.4767C179.574 82.9853 178.351 81.8519 176.74 81.0764C175.189 80.2412 173.28 79.8236 171.013 79.8236C169.701 79.8236 168.389 79.9728 167.076 80.271C165.764 80.5693 164.571 80.9869 163.497 81.5238L160.276 74.8127L177.367 56.2005H151.327V44.5679H192.936V55.3057L175.398 75.2601L175.845 69.6227C179.842 69.6227 183.302 70.4579 186.225 72.1282C189.208 73.7389 191.505 76.0058 193.115 78.9288C194.786 81.8519 195.621 85.2522 195.621 89.1297C195.621 93.5441 194.547 97.5111 192.399 101.031C190.252 104.55 187.329 107.324 183.63 109.353C179.932 111.321 175.726 112.305 171.013 112.305Z" fill="#1D1D1F"/>
|
|
12
|
+
</g>
|
|
13
|
+
<path d="M492.853 148.318C491.622 148.318 490.539 148.014 489.605 147.406C488.686 146.798 488.041 145.983 487.67 144.959L489.605 144.047C489.931 144.73 490.376 145.271 490.94 145.671C491.518 146.072 492.156 146.272 492.853 146.272C493.446 146.272 493.928 146.138 494.299 145.871C494.669 145.605 494.855 145.241 494.855 144.782C494.855 144.485 494.773 144.248 494.61 144.07C494.447 143.877 494.239 143.721 493.987 143.603C493.75 143.484 493.505 143.395 493.253 143.336L491.362 142.802C490.324 142.505 489.546 142.06 489.027 141.467C488.523 140.859 488.271 140.155 488.271 139.354C488.271 138.627 488.456 137.997 488.827 137.463C489.197 136.915 489.709 136.492 490.361 136.195C491.014 135.899 491.748 135.75 492.564 135.75C493.661 135.75 494.64 136.025 495.5 136.574C496.36 137.107 496.968 137.856 497.324 138.82L495.389 139.732C495.151 139.154 494.773 138.694 494.254 138.353C493.75 138.012 493.179 137.841 492.541 137.841C491.993 137.841 491.555 137.975 491.229 138.242C490.903 138.494 490.74 138.828 490.74 139.243C490.74 139.525 490.814 139.762 490.962 139.955C491.11 140.133 491.303 140.281 491.54 140.399C491.778 140.503 492.022 140.592 492.274 140.666L494.232 141.245C495.225 141.526 495.989 141.971 496.523 142.579C497.057 143.173 497.324 143.884 497.324 144.715C497.324 145.427 497.131 146.057 496.745 146.606C496.375 147.139 495.856 147.562 495.188 147.873C494.521 148.17 493.743 148.318 492.853 148.318Z" fill="#73737A"/>
|
|
14
|
+
<path d="M485.039 148.185C483.779 148.185 482.8 147.829 482.103 147.117C481.406 146.405 481.058 145.404 481.058 144.114V138.286H478.944V136.017H479.278C479.842 136.017 480.279 135.854 480.59 135.528C480.902 135.202 481.058 134.757 481.058 134.193V133.259H483.571V136.017H486.307V138.286H483.571V144.003C483.571 144.418 483.638 144.774 483.771 145.071C483.905 145.352 484.12 145.575 484.416 145.738C484.713 145.886 485.098 145.96 485.573 145.96C485.692 145.96 485.825 145.953 485.973 145.938C486.122 145.923 486.263 145.909 486.396 145.894V148.051C486.188 148.081 485.959 148.111 485.706 148.14C485.454 148.17 485.232 148.185 485.039 148.185Z" fill="#73737A"/>
|
|
15
|
+
<path d="M467.245 148.051V136.017H469.647V138.375L469.358 138.064C469.655 137.308 470.129 136.737 470.782 136.351C471.434 135.951 472.191 135.75 473.051 135.75C473.941 135.75 474.726 135.943 475.409 136.329C476.091 136.714 476.625 137.248 477.01 137.93C477.396 138.613 477.589 139.398 477.589 140.288V148.051H475.097V140.956C475.097 140.348 474.986 139.836 474.764 139.421C474.541 138.991 474.222 138.664 473.807 138.442C473.407 138.205 472.947 138.086 472.428 138.086C471.909 138.086 471.442 138.205 471.027 138.442C470.626 138.664 470.315 138.991 470.092 139.421C469.87 139.851 469.759 140.362 469.759 140.956V148.051H467.245Z" fill="#73737A"/>
|
|
16
|
+
<path d="M459.698 148.318C458.497 148.318 457.429 148.044 456.495 147.495C455.575 146.932 454.856 146.175 454.337 145.226C453.818 144.262 453.559 143.187 453.559 142.001C453.559 140.785 453.818 139.71 454.337 138.776C454.871 137.841 455.583 137.107 456.473 136.574C457.362 136.025 458.371 135.75 459.498 135.75C460.402 135.75 461.21 135.906 461.922 136.218C462.634 136.529 463.235 136.959 463.724 137.508C464.213 138.042 464.584 138.657 464.836 139.354C465.103 140.051 465.237 140.792 465.237 141.578C465.237 141.771 465.229 141.971 465.214 142.179C465.2 142.387 465.17 142.579 465.125 142.757H455.538V140.755H463.702L462.501 141.667C462.649 140.941 462.597 140.296 462.345 139.732C462.108 139.154 461.737 138.702 461.233 138.375C460.743 138.034 460.165 137.864 459.498 137.864C458.83 137.864 458.237 138.034 457.718 138.375C457.199 138.702 456.799 139.176 456.517 139.799C456.235 140.407 456.124 141.148 456.183 142.023C456.109 142.839 456.22 143.551 456.517 144.159C456.828 144.767 457.258 145.241 457.807 145.582C458.371 145.923 459.008 146.094 459.72 146.094C460.447 146.094 461.062 145.931 461.566 145.605C462.085 145.278 462.493 144.856 462.79 144.337L464.836 145.338C464.599 145.901 464.228 146.413 463.724 146.872C463.235 147.317 462.642 147.673 461.945 147.94C461.262 148.192 460.514 148.318 459.698 148.318Z" fill="#73737A"/>
|
|
17
|
+
<path d="M449.041 148.051V136.017H451.555V148.051H449.041ZM449.041 134.371V131.48H451.555V134.371H449.041Z" fill="#73737A"/>
|
|
18
|
+
<path d="M445.676 148.185C444.415 148.185 443.437 147.829 442.74 147.117C442.043 146.405 441.694 145.404 441.694 144.114V138.286H439.581V136.017H439.915C440.478 136.017 440.916 135.854 441.227 135.528C441.539 135.202 441.694 134.757 441.694 134.193V133.259H444.208V136.017H446.944V138.286H444.208V144.003C444.208 144.418 444.275 144.774 444.408 145.071C444.541 145.352 444.756 145.575 445.053 145.738C445.35 145.886 445.735 145.96 446.21 145.96C446.328 145.96 446.462 145.953 446.61 145.938C446.758 145.923 446.899 145.909 447.033 145.894V148.051C446.825 148.081 446.595 148.111 446.343 148.14C446.091 148.17 445.869 148.185 445.676 148.185Z" fill="#73737A"/>
|
|
19
|
+
<path d="M431.877 148.318C431.061 148.318 430.342 148.177 429.719 147.896C429.111 147.599 428.637 147.199 428.296 146.694C427.955 146.175 427.784 145.567 427.784 144.87C427.784 144.218 427.925 143.632 428.207 143.113C428.503 142.594 428.956 142.157 429.564 141.801C430.172 141.445 430.935 141.193 431.855 141.045L436.037 140.355V142.335L432.344 142.98C431.677 143.098 431.187 143.313 430.876 143.625C430.565 143.921 430.409 144.307 430.409 144.782C430.409 145.241 430.579 145.619 430.921 145.916C431.276 146.198 431.729 146.339 432.277 146.339C432.96 146.339 433.553 146.19 434.057 145.894C434.576 145.597 434.976 145.204 435.258 144.715C435.54 144.211 435.681 143.654 435.681 143.046V139.955C435.681 139.361 435.458 138.879 435.013 138.509C434.583 138.123 434.005 137.93 433.278 137.93C432.611 137.93 432.025 138.108 431.521 138.464C431.032 138.805 430.668 139.25 430.431 139.799L428.34 138.753C428.563 138.16 428.926 137.641 429.43 137.196C429.934 136.737 430.52 136.381 431.187 136.129C431.87 135.877 432.589 135.75 433.345 135.75C434.294 135.75 435.132 135.928 435.859 136.284C436.6 136.64 437.171 137.137 437.571 137.775C437.987 138.398 438.194 139.124 438.194 139.955V148.051H435.792V145.871L436.304 145.938C436.022 146.428 435.659 146.85 435.214 147.206C434.784 147.562 434.287 147.836 433.723 148.029C433.175 148.222 432.559 148.318 431.877 148.318Z" fill="#73737A"/>
|
|
20
|
+
<path d="M415.364 148.051V131.48H421.392C422.505 131.48 423.483 131.687 424.329 132.103C425.189 132.503 425.856 133.096 426.331 133.882C426.805 134.653 427.042 135.58 427.042 136.663C427.042 137.73 426.798 138.65 426.308 139.421C425.834 140.192 425.174 140.785 424.329 141.2C423.483 141.615 422.505 141.823 421.392 141.823H417.989V148.051H415.364ZM417.989 139.487H421.459C422.052 139.487 422.571 139.369 423.016 139.132C423.461 138.894 423.81 138.568 424.062 138.153C424.314 137.723 424.44 137.219 424.44 136.64C424.44 136.062 424.314 135.565 424.062 135.15C423.81 134.72 423.461 134.394 423.016 134.171C422.571 133.934 422.052 133.815 421.459 133.815H417.989V139.487Z" fill="#73737A"/>
|
|
21
|
+
<path d="M404.062 148.051V136.017H406.465V138.442L406.242 138.086C406.509 137.3 406.939 136.737 407.533 136.396C408.126 136.04 408.838 135.862 409.668 135.862H410.402V138.153H409.357C408.526 138.153 407.851 138.412 407.332 138.931C406.828 139.436 406.576 140.162 406.576 141.111V148.051H404.062Z" fill="#73737A"/>
|
|
22
|
+
<path d="M395.78 148.318C394.624 148.318 393.563 148.044 392.599 147.495C391.65 146.947 390.894 146.198 390.331 145.249C389.767 144.3 389.485 143.224 389.485 142.023C389.485 140.807 389.767 139.732 390.331 138.798C390.894 137.849 391.65 137.107 392.599 136.574C393.549 136.025 394.609 135.75 395.78 135.75C396.967 135.75 398.027 136.025 398.961 136.574C399.91 137.107 400.659 137.849 401.208 138.798C401.771 139.732 402.053 140.807 402.053 142.023C402.053 143.239 401.771 144.322 401.208 145.271C400.644 146.22 399.888 146.969 398.939 147.518C397.99 148.051 396.937 148.318 395.78 148.318ZM395.78 145.983C396.492 145.983 397.122 145.812 397.671 145.471C398.22 145.13 398.65 144.663 398.961 144.07C399.287 143.462 399.451 142.78 399.451 142.023C399.451 141.267 399.287 140.592 398.961 139.999C398.65 139.406 398.22 138.939 397.671 138.598C397.122 138.257 396.492 138.086 395.78 138.086C395.083 138.086 394.453 138.257 393.89 138.598C393.341 138.939 392.903 139.406 392.577 139.999C392.266 140.592 392.11 141.267 392.11 142.023C392.11 142.78 392.266 143.462 392.577 144.07C392.903 144.663 393.341 145.13 393.89 145.471C394.453 145.812 395.083 145.983 395.78 145.983Z" fill="#73737A"/>
|
|
23
|
+
<path d="M378 148.051V131.48H388.788V133.815H380.625V138.798H387.899V141.134H380.625V148.051H378Z" fill="#73737A"/>
|
|
24
|
+
<defs>
|
|
25
|
+
<clipPath id="clip0_184_3936">
|
|
26
|
+
<rect width="349.699" height="68.8112" fill="white" transform="translate(147.301 43.4938)"/>
|
|
27
|
+
</clipPath>
|
|
28
|
+
</defs>
|
|
29
|
+
</svg>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<svg width="498" height="156" viewBox="0 0 498 156" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M121.308 24.1812L73.585 11.2277V61.7464L121.308 75.9952V24.1812Z" stroke="#BAD3F8" stroke-width="16.2984"/>
|
|
3
|
+
<path d="M97.447 50.0871L39.4971 35.0883V93.5836L97.447 110.082V50.0871Z" stroke="#5A93ED" stroke-width="16.2984"/>
|
|
4
|
+
<path d="M73.5849 75.9957L8.81738 58.9517V125.424L73.5849 144.172V75.9957Z" stroke="#2955DA" stroke-width="16.2984"/>
|
|
5
|
+
<g clip-path="url(#clip0_184_3925)">
|
|
6
|
+
<path d="M427.205 111.031V44.367H440.627L465.593 77.4751H459.329L483.578 44.367H497.001V111.031H483.131V59.6683L488.679 60.9211L462.998 94.0292H461.208L436.422 60.9211L441.075 59.6683V111.031H427.205Z" fill="#1D1D1F"/>
|
|
7
|
+
<path d="M385.602 112.104C380.591 112.104 375.938 111.239 371.643 109.509C367.348 107.779 363.59 105.363 360.368 102.261C357.207 99.0994 354.731 95.4307 352.941 91.2549C351.152 87.0791 350.257 82.5453 350.257 77.6537C350.257 72.762 351.122 68.2283 352.852 64.0525C354.641 59.8767 357.117 56.2378 360.279 53.1357C363.5 50.0337 367.258 47.6177 371.553 45.8877C375.849 44.1578 380.531 43.2928 385.602 43.2928C390.673 43.2928 395.355 44.1578 399.651 45.8877C403.946 47.6177 407.674 50.0337 410.836 53.1357C414.057 56.2378 416.533 59.8767 418.263 64.0525C420.052 68.2283 420.947 72.762 420.947 77.6537C420.947 82.5453 420.052 87.0791 418.263 91.2549C416.473 95.4307 413.968 99.0994 410.746 102.261C407.585 105.363 403.856 107.779 399.561 109.509C395.266 111.239 390.613 112.104 385.602 112.104ZM385.602 99.5766C388.644 99.5766 391.448 99.0397 394.013 97.966C396.638 96.8922 398.935 95.4008 400.903 93.4919C402.872 91.5233 404.393 89.1968 405.467 86.5123C406.541 83.8279 407.078 80.875 407.078 77.6537C407.078 74.4323 406.541 71.5093 405.467 68.8845C404.393 66.2 402.872 63.8735 400.903 61.9049C398.935 59.9363 396.638 58.445 394.013 57.4309C391.448 56.3571 388.644 55.8202 385.602 55.8202C382.56 55.8202 379.726 56.3571 377.101 57.4309C374.536 58.445 372.269 59.9363 370.301 61.9049C368.332 63.8735 366.811 66.2 365.737 68.8845C364.663 71.5093 364.126 74.4323 364.126 77.6537C364.126 80.875 364.663 83.8279 365.737 86.5123C366.811 89.1968 368.332 91.5233 370.301 93.4919C372.269 95.4008 374.536 96.8922 377.101 97.966C379.726 99.0397 382.56 99.5766 385.602 99.5766Z" fill="#1D1D1F"/>
|
|
8
|
+
<path d="M318.36 112.104C313.588 112.104 309.143 111.239 305.027 109.509C300.971 107.779 297.421 105.363 294.379 102.261C291.336 99.1592 288.95 95.5203 287.22 91.3445C285.55 87.1687 284.715 82.6052 284.715 77.6539C284.715 72.7025 285.55 68.139 287.22 63.9632C288.891 59.7277 291.247 56.0888 294.289 53.0464C297.332 49.9444 300.881 47.5583 304.938 45.8879C309.054 44.158 313.528 43.293 318.36 43.293C323.192 43.293 327.517 44.0983 331.335 45.709C335.212 47.3196 338.493 49.4672 341.178 52.1516C343.862 54.8361 345.771 57.8188 346.904 61.0998L334.646 67.0056C333.512 63.7842 331.514 61.1296 328.65 59.0417C325.846 56.8941 322.416 55.8204 318.36 55.8204C314.423 55.8204 310.963 56.745 307.98 58.5943C304.997 60.4436 302.671 63.0087 301 66.2897C299.39 69.511 298.584 73.2991 298.584 77.6539C298.584 82.0086 299.39 85.8265 301 89.1075C302.671 92.3885 304.997 94.9536 307.98 96.8029C310.963 98.6522 314.423 99.5768 318.36 99.5768C322.416 99.5768 325.846 98.5329 328.65 96.445C331.514 94.2974 333.512 91.613 334.646 88.3916L346.904 94.2974C345.771 97.5784 343.862 100.561 341.178 103.246C338.493 105.93 335.212 108.078 331.335 109.688C327.517 111.299 323.192 112.104 318.36 112.104Z" fill="#1D1D1F"/>
|
|
9
|
+
<path d="M264.572 111.031V44.367H278.442V111.031H264.572Z" fill="#1D1D1F"/>
|
|
10
|
+
<path d="M202.002 111.031V44.3669H223.746C230.964 44.3669 237.228 45.7986 242.537 48.662C247.846 51.5254 251.962 55.4626 254.885 60.4736C257.809 65.4845 259.27 71.2114 259.27 77.654C259.27 84.0967 257.809 89.8533 254.885 94.9239C251.962 99.9349 247.846 103.872 242.537 106.735C237.228 109.599 230.964 111.031 223.746 111.031H202.002ZM215.872 98.9506H224.104C228.459 98.9506 232.217 98.0856 235.379 96.3556C238.54 94.566 240.986 92.0904 242.716 88.9287C244.506 85.7073 245.4 81.9491 245.4 77.654C245.4 73.2993 244.506 69.541 242.716 66.3794C240.986 63.2177 238.54 60.7718 235.379 59.0419C232.217 57.3119 228.459 56.4469 224.104 56.4469H215.872V98.9506Z" fill="#1D1D1F"/>
|
|
11
|
+
<path d="M171.013 112.104C167.315 112.104 163.795 111.418 160.455 110.046C157.114 108.615 154.28 106.616 151.954 104.051C149.627 101.486 148.076 98.4734 147.301 95.0134L159.56 90.8973C160.574 93.7607 162.065 95.9381 164.034 97.4294C166.002 98.8611 168.329 99.577 171.013 99.577C173.221 99.577 175.1 99.1594 176.651 98.3242C178.261 97.4891 179.514 96.3258 180.409 94.8345C181.304 93.2835 181.751 91.4938 181.751 89.4656C181.751 87.4373 181.304 85.7074 180.409 84.2757C179.574 82.7843 178.351 81.6509 176.74 80.8754C175.189 80.0402 173.28 79.6226 171.013 79.6226C169.701 79.6226 168.389 79.7718 167.076 80.07C165.764 80.3683 164.571 80.7859 163.497 81.3228L160.276 74.6117L177.367 55.9995H151.327V44.3669H192.936V55.1047L175.398 75.0591L175.845 69.4217C179.842 69.4217 183.302 70.2569 186.225 71.9272C189.208 73.5379 191.505 75.8047 193.115 78.7278C194.786 81.6509 195.621 85.0512 195.621 88.9287C195.621 93.3431 194.547 97.3101 192.399 100.83C190.252 104.349 187.329 107.123 183.63 109.151C179.932 111.12 175.726 112.104 171.013 112.104Z" fill="#1D1D1F"/>
|
|
12
|
+
</g>
|
|
13
|
+
<path d="M488.354 145.794V131.279H490.521V137.453L490.176 137.184C490.432 136.532 490.841 136.04 491.403 135.708C491.966 135.363 492.618 135.19 493.359 135.19C494.126 135.19 494.804 135.356 495.392 135.689C495.98 136.021 496.44 136.481 496.772 137.069C497.105 137.657 497.271 138.328 497.271 139.083V145.794H495.123V139.677C495.123 139.153 495.021 138.712 494.816 138.354C494.625 137.983 494.356 137.702 494.011 137.51C493.666 137.306 493.27 137.204 492.822 137.204C492.388 137.204 491.991 137.306 491.633 137.51C491.288 137.702 491.013 137.983 490.809 138.354C490.617 138.725 490.521 139.166 490.521 139.677V145.794H488.354Z" fill="#73737A"/>
|
|
14
|
+
<path d="M485.837 145.909C484.75 145.909 483.907 145.602 483.306 144.988C482.705 144.375 482.405 143.512 482.405 142.4V137.376H480.583V135.42H480.871C481.356 135.42 481.733 135.28 482.002 134.998C482.27 134.717 482.405 134.334 482.405 133.848V133.043H484.571V135.42H486.93V137.376H484.571V142.304C484.571 142.662 484.629 142.969 484.744 143.224C484.859 143.467 485.044 143.659 485.3 143.8C485.556 143.927 485.888 143.991 486.297 143.991C486.399 143.991 486.514 143.985 486.642 143.972C486.77 143.959 486.891 143.947 487.007 143.934V145.794C486.828 145.819 486.629 145.845 486.412 145.87C486.195 145.896 486.003 145.909 485.837 145.909Z" fill="#73737A"/>
|
|
15
|
+
<path d="M477.417 145.794V131.279H479.584V145.794H477.417Z" fill="#73737A"/>
|
|
16
|
+
<path d="M470.205 146.024C469.502 146.024 468.882 145.902 468.345 145.66C467.821 145.404 467.412 145.059 467.118 144.624C466.824 144.177 466.677 143.653 466.677 143.052C466.677 142.489 466.798 141.984 467.041 141.537C467.297 141.09 467.687 140.713 468.211 140.406C468.735 140.099 469.393 139.882 470.186 139.754L473.791 139.159V140.866L470.608 141.422C470.032 141.524 469.61 141.71 469.342 141.978C469.074 142.234 468.939 142.566 468.939 142.975C468.939 143.371 469.086 143.697 469.38 143.953C469.687 144.196 470.077 144.317 470.55 144.317C471.138 144.317 471.649 144.19 472.084 143.934C472.531 143.678 472.877 143.339 473.119 142.918C473.362 142.483 473.484 142.004 473.484 141.48V138.814C473.484 138.303 473.292 137.887 472.908 137.568C472.538 137.236 472.039 137.069 471.413 137.069C470.838 137.069 470.333 137.223 469.898 137.53C469.476 137.824 469.163 138.207 468.959 138.68L467.156 137.779C467.348 137.267 467.661 136.82 468.096 136.437C468.53 136.04 469.035 135.734 469.61 135.516C470.198 135.299 470.818 135.19 471.47 135.19C472.289 135.19 473.011 135.344 473.637 135.65C474.276 135.957 474.768 136.385 475.114 136.935C475.471 137.472 475.65 138.098 475.65 138.814V145.794H473.58V143.915L474.021 143.972C473.778 144.394 473.465 144.758 473.081 145.065C472.71 145.372 472.282 145.608 471.796 145.775C471.323 145.941 470.793 146.024 470.205 146.024Z" fill="#73737A"/>
|
|
17
|
+
<path d="M461.071 146.024C460.035 146.024 459.115 145.787 458.309 145.314C457.517 144.829 456.897 144.177 456.449 143.359C456.002 142.528 455.778 141.601 455.778 140.578C455.778 139.53 456.002 138.603 456.449 137.798C456.91 136.993 457.523 136.36 458.29 135.9C459.057 135.427 459.926 135.19 460.898 135.19C461.678 135.19 462.374 135.324 462.988 135.593C463.602 135.861 464.119 136.232 464.541 136.705C464.963 137.165 465.283 137.696 465.5 138.297C465.73 138.897 465.845 139.536 465.845 140.214C465.845 140.38 465.839 140.553 465.826 140.732C465.813 140.911 465.787 141.077 465.749 141.23H457.485V139.505H464.522L463.486 140.291C463.614 139.664 463.57 139.108 463.352 138.623C463.148 138.124 462.828 137.734 462.394 137.453C461.972 137.159 461.473 137.012 460.898 137.012C460.323 137.012 459.811 137.159 459.364 137.453C458.917 137.734 458.571 138.143 458.329 138.68C458.086 139.204 457.99 139.843 458.041 140.597C457.977 141.301 458.073 141.914 458.329 142.438C458.597 142.962 458.968 143.371 459.441 143.665C459.926 143.959 460.476 144.106 461.09 144.106C461.716 144.106 462.247 143.966 462.681 143.685C463.129 143.403 463.48 143.039 463.736 142.592L465.5 143.454C465.295 143.94 464.976 144.381 464.541 144.778C464.119 145.161 463.608 145.468 463.007 145.698C462.419 145.915 461.774 146.024 461.071 146.024Z" fill="#73737A"/>
|
|
18
|
+
<path d="M443.097 145.794V131.509H445.359V137.798H451.975V131.509H454.218V145.794H451.975V139.811H445.359V145.794H443.097Z" fill="#73737A"/>
|
|
19
|
+
<path d="M434.121 145.794V135.42H436.192V137.51L436 137.204C436.23 136.526 436.601 136.04 437.112 135.746C437.624 135.44 438.237 135.286 438.953 135.286H439.586V137.261H438.685C437.969 137.261 437.387 137.485 436.94 137.932C436.505 138.367 436.288 138.993 436.288 139.811V145.794H434.121Z" fill="#73737A"/>
|
|
20
|
+
<path d="M426.909 146.024C426.206 146.024 425.586 145.902 425.049 145.66C424.525 145.404 424.116 145.059 423.822 144.624C423.528 144.177 423.381 143.653 423.381 143.052C423.381 142.489 423.502 141.984 423.745 141.537C424.001 141.09 424.391 140.713 424.915 140.406C425.439 140.099 426.097 139.882 426.89 139.754L430.495 139.159V140.866L427.312 141.422C426.736 141.524 426.315 141.71 426.046 141.978C425.778 142.234 425.643 142.566 425.643 142.975C425.643 143.371 425.79 143.697 426.084 143.953C426.391 144.196 426.781 144.317 427.254 144.317C427.842 144.317 428.353 144.19 428.788 143.934C429.235 143.678 429.581 143.339 429.824 142.918C430.066 142.483 430.188 142.004 430.188 141.48V138.814C430.188 138.303 429.996 137.887 429.613 137.568C429.242 137.236 428.743 137.069 428.117 137.069C427.542 137.069 427.037 137.223 426.602 137.53C426.18 137.824 425.867 138.207 425.663 138.68L423.86 137.779C424.052 137.267 424.365 136.82 424.8 136.437C425.234 136.04 425.739 135.734 426.315 135.516C426.903 135.299 427.523 135.19 428.174 135.19C428.993 135.19 429.715 135.344 430.341 135.65C430.98 135.957 431.473 136.385 431.818 136.935C432.176 137.472 432.355 138.098 432.355 138.814V145.794H430.284V143.915L430.725 143.972C430.482 144.394 430.169 144.758 429.785 145.065C429.414 145.372 428.986 145.608 428.5 145.775C428.027 145.941 427.497 146.024 426.909 146.024Z" fill="#73737A"/>
|
|
21
|
+
<path d="M419.869 145.794V131.279H422.036V145.794H419.869Z" fill="#73737A"/>
|
|
22
|
+
<path d="M413.102 146.024C412.322 146.024 411.638 145.851 411.05 145.506C410.462 145.148 410.002 144.656 409.67 144.03C409.35 143.391 409.19 142.656 409.19 141.825V135.42H411.357V141.633C411.357 142.106 411.453 142.521 411.645 142.879C411.837 143.237 412.105 143.518 412.45 143.723C412.795 143.915 413.192 144.011 413.639 144.011C414.099 144.011 414.502 143.908 414.847 143.704C415.192 143.499 415.461 143.212 415.652 142.841C415.857 142.47 415.959 142.036 415.959 141.537V135.42H418.107V145.794H416.055V143.761L416.285 144.03C416.042 144.669 415.639 145.161 415.077 145.506C414.515 145.851 413.856 146.024 413.102 146.024Z" fill="#73737A"/>
|
|
23
|
+
<path d="M402.608 150.012C401.854 150.012 401.157 149.891 400.518 149.648C399.879 149.405 399.329 149.066 398.869 148.632C398.409 148.21 398.064 147.711 397.834 147.136L399.828 146.312C400.007 146.797 400.333 147.2 400.806 147.52C401.291 147.839 401.886 147.999 402.589 147.999C403.139 147.999 403.631 147.89 404.065 147.673C404.5 147.468 404.845 147.162 405.101 146.753C405.356 146.356 405.484 145.877 405.484 145.314V142.975L405.868 143.416C405.51 144.081 405.011 144.586 404.372 144.931C403.746 145.276 403.036 145.449 402.244 145.449C401.285 145.449 400.422 145.225 399.655 144.778C398.888 144.33 398.281 143.717 397.834 142.937C397.399 142.157 397.182 141.281 397.182 140.31C397.182 139.326 397.399 138.45 397.834 137.683C398.281 136.916 398.882 136.309 399.636 135.861C400.39 135.414 401.253 135.19 402.225 135.19C403.017 135.19 403.72 135.363 404.334 135.708C404.96 136.04 405.471 136.526 405.868 137.165L405.58 137.702V135.42H407.632V145.314C407.632 146.209 407.414 147.008 406.98 147.711C406.558 148.427 405.97 148.99 405.216 149.399C404.462 149.808 403.592 150.012 402.608 150.012ZM402.493 143.435C403.068 143.435 403.58 143.301 404.027 143.033C404.474 142.751 404.826 142.381 405.082 141.921C405.35 141.448 405.484 140.917 405.484 140.329C405.484 139.741 405.35 139.211 405.082 138.738C404.813 138.265 404.455 137.894 404.008 137.625C403.56 137.344 403.055 137.204 402.493 137.204C401.905 137.204 401.381 137.344 400.921 137.625C400.46 137.894 400.096 138.265 399.828 138.738C399.572 139.198 399.444 139.728 399.444 140.329C399.444 140.904 399.572 141.428 399.828 141.901C400.096 142.374 400.46 142.751 400.921 143.033C401.381 143.301 401.905 143.435 402.493 143.435Z" fill="#73737A"/>
|
|
24
|
+
<path d="M387.136 145.794V135.42H389.207V137.453L388.957 137.184C389.213 136.532 389.622 136.04 390.185 135.708C390.747 135.363 391.399 135.19 392.14 135.19C392.907 135.19 393.585 135.356 394.173 135.689C394.761 136.021 395.221 136.481 395.553 137.069C395.886 137.657 396.052 138.335 396.052 139.102V145.794H393.904V139.677C393.904 139.153 393.808 138.712 393.617 138.354C393.425 137.983 393.15 137.702 392.792 137.51C392.447 137.306 392.051 137.204 391.603 137.204C391.156 137.204 390.753 137.306 390.395 137.51C390.05 137.702 389.782 137.983 389.59 138.354C389.398 138.725 389.302 139.166 389.302 139.677V145.794H387.136Z" fill="#73737A"/>
|
|
25
|
+
<path d="M383.202 145.794V135.42H385.369V145.794H383.202ZM383.202 134.001V131.509H385.369V134.001H383.202Z" fill="#73737A"/>
|
|
26
|
+
<path d="M376.77 146.024C375.875 146.024 375.044 145.858 374.277 145.525C373.51 145.18 372.859 144.714 372.322 144.126C371.785 143.538 371.388 142.86 371.133 142.093L373.05 141.288C373.395 142.17 373.9 142.847 374.565 143.32C375.23 143.793 375.997 144.03 376.866 144.03C377.377 144.03 377.825 143.953 378.208 143.8C378.592 143.633 378.886 143.403 379.09 143.109C379.308 142.815 379.416 142.477 379.416 142.093C379.416 141.569 379.269 141.154 378.975 140.847C378.681 140.54 378.247 140.297 377.671 140.118L374.987 139.274C373.913 138.942 373.095 138.437 372.533 137.76C371.97 137.069 371.689 136.264 371.689 135.344C371.689 134.538 371.887 133.835 372.283 133.234C372.68 132.621 373.223 132.141 373.913 131.796C374.616 131.451 375.415 131.279 376.31 131.279C377.166 131.279 377.946 131.432 378.649 131.739C379.352 132.033 379.953 132.442 380.452 132.966C380.963 133.49 381.334 134.097 381.564 134.788L379.685 135.612C379.403 134.858 378.962 134.276 378.362 133.867C377.774 133.458 377.09 133.254 376.31 133.254C375.837 133.254 375.422 133.337 375.064 133.503C374.706 133.656 374.424 133.886 374.22 134.193C374.028 134.487 373.932 134.832 373.932 135.229C373.932 135.689 374.079 136.098 374.373 136.456C374.667 136.814 375.115 137.082 375.716 137.261L378.208 138.047C379.346 138.392 380.202 138.891 380.778 139.543C381.353 140.182 381.64 140.981 381.64 141.94C381.64 142.732 381.43 143.435 381.008 144.049C380.599 144.662 380.03 145.148 379.301 145.506C378.573 145.851 377.729 146.024 376.77 146.024Z" fill="#73737A"/>
|
|
27
|
+
<path d="M359.741 150.031C359.485 150.031 359.229 150.006 358.974 149.955C358.731 149.916 358.507 149.852 358.303 149.763V147.903C358.456 147.941 358.641 147.973 358.859 147.999C359.076 148.037 359.287 148.056 359.491 148.056C360.092 148.056 360.533 147.922 360.814 147.654C361.108 147.398 361.37 146.995 361.601 146.446L362.291 144.873L362.252 146.695L357.766 135.42H360.086L363.403 144.068H362.617L365.915 135.42H368.254L363.671 146.925C363.429 147.539 363.122 148.076 362.751 148.536C362.393 149.009 361.965 149.373 361.466 149.629C360.981 149.897 360.405 150.031 359.741 150.031Z" fill="#73737A"/>
|
|
28
|
+
<path d="M352.47 146.024C351.665 146.024 350.93 145.858 350.265 145.525C349.613 145.193 349.108 144.714 348.75 144.087L349 143.685V145.794H346.929V131.279H349.095V137.568L348.75 137.069C349.134 136.481 349.645 136.021 350.284 135.689C350.923 135.356 351.652 135.19 352.47 135.19C353.454 135.19 354.336 135.427 355.116 135.9C355.909 136.373 356.529 137.018 356.976 137.836C357.436 138.654 357.666 139.575 357.666 140.597C357.666 141.62 357.436 142.541 356.976 143.359C356.529 144.177 355.915 144.829 355.135 145.314C354.356 145.787 353.467 146.024 352.47 146.024ZM352.259 144.011C352.873 144.011 353.416 143.864 353.889 143.57C354.362 143.276 354.733 142.873 355.001 142.362C355.282 141.837 355.423 141.249 355.423 140.597C355.423 139.946 355.282 139.364 355.001 138.853C354.733 138.341 354.362 137.939 353.889 137.645C353.416 137.351 352.873 137.204 352.259 137.204C351.658 137.204 351.115 137.351 350.629 137.645C350.156 137.939 349.779 138.341 349.498 138.853C349.23 139.364 349.095 139.946 349.095 140.597C349.095 141.249 349.23 141.837 349.498 142.362C349.779 142.873 350.156 143.276 350.629 143.57C351.115 143.864 351.658 144.011 352.259 144.011Z" fill="#73737A"/>
|
|
29
|
+
<path d="M337.059 146.024C336.062 146.024 335.167 145.787 334.375 145.314C333.595 144.829 332.975 144.177 332.515 143.359C332.067 142.541 331.844 141.62 331.844 140.597C331.844 139.575 332.074 138.654 332.534 137.836C332.994 137.018 333.614 136.373 334.394 135.9C335.174 135.427 336.056 135.19 337.04 135.19C337.871 135.19 338.606 135.356 339.245 135.689C339.884 136.021 340.389 136.481 340.76 137.069L340.434 137.568V131.279H342.582V145.794H340.53V143.685L340.779 144.087C340.421 144.714 339.91 145.193 339.245 145.525C338.58 145.858 337.852 146.024 337.059 146.024ZM337.27 144.011C337.871 144.011 338.408 143.864 338.881 143.57C339.367 143.276 339.744 142.873 340.012 142.362C340.293 141.837 340.434 141.249 340.434 140.597C340.434 139.946 340.293 139.364 340.012 138.853C339.744 138.341 339.367 137.939 338.881 137.645C338.408 137.351 337.871 137.204 337.27 137.204C336.669 137.204 336.126 137.351 335.64 137.645C335.155 137.939 334.777 138.341 334.509 138.853C334.241 139.364 334.106 139.946 334.106 140.597C334.106 141.249 334.241 141.837 334.509 142.362C334.777 142.873 335.148 143.276 335.621 143.57C336.107 143.864 336.657 144.011 337.27 144.011Z" fill="#73737A"/>
|
|
30
|
+
<path d="M326.144 146.024C325.108 146.024 324.188 145.787 323.383 145.314C322.59 144.829 321.97 144.177 321.523 143.359C321.075 142.528 320.852 141.601 320.852 140.578C320.852 139.53 321.075 138.603 321.523 137.798C321.983 136.993 322.596 136.36 323.363 135.9C324.13 135.427 325 135.19 325.971 135.19C326.751 135.19 327.448 135.324 328.061 135.593C328.675 135.861 329.193 136.232 329.614 136.705C330.036 137.165 330.356 137.696 330.573 138.297C330.803 138.897 330.918 139.536 330.918 140.214C330.918 140.38 330.912 140.553 330.899 140.732C330.886 140.911 330.861 141.077 330.822 141.23H322.558V139.505H329.595L328.56 140.291C328.688 139.664 328.643 139.108 328.426 138.623C328.221 138.124 327.901 137.734 327.467 137.453C327.045 137.159 326.546 137.012 325.971 137.012C325.396 137.012 324.885 137.159 324.437 137.453C323.99 137.734 323.645 138.143 323.402 138.68C323.159 139.204 323.063 139.843 323.114 140.597C323.05 141.301 323.146 141.914 323.402 142.438C323.67 142.962 324.041 143.371 324.514 143.665C325 143.959 325.549 144.106 326.163 144.106C326.789 144.106 327.32 143.966 327.754 143.685C328.202 143.403 328.553 143.039 328.809 142.592L330.573 143.454C330.369 143.94 330.049 144.381 329.614 144.778C329.193 145.161 328.681 145.468 328.08 145.698C327.492 145.915 326.847 146.024 326.144 146.024Z" fill="#73737A"/>
|
|
31
|
+
<path d="M315.093 145.794V135.42H317.164V137.51L316.972 137.204C317.202 136.526 317.573 136.04 318.084 135.746C318.595 135.44 319.209 135.286 319.925 135.286H320.558V137.261H319.656C318.94 137.261 318.359 137.485 317.911 137.932C317.477 138.367 317.26 138.993 317.26 139.811V145.794H315.093Z" fill="#73737A"/>
|
|
32
|
+
<path d="M308.971 146.024C307.935 146.024 307.015 145.787 306.21 145.314C305.417 144.829 304.797 144.177 304.35 143.359C303.902 142.528 303.679 141.601 303.679 140.578C303.679 139.53 303.902 138.603 304.35 137.798C304.81 136.993 305.424 136.36 306.191 135.9C306.958 135.427 307.827 135.19 308.798 135.19C309.578 135.19 310.275 135.324 310.888 135.593C311.502 135.861 312.02 136.232 312.442 136.705C312.863 137.165 313.183 137.696 313.4 138.297C313.63 138.897 313.745 139.536 313.745 140.214C313.745 140.38 313.739 140.553 313.726 140.732C313.713 140.911 313.688 141.077 313.65 141.23H305.385V139.505H312.422L311.387 140.291C311.515 139.664 311.47 139.108 311.253 138.623C311.048 138.124 310.729 137.734 310.294 137.453C309.872 137.159 309.374 137.012 308.798 137.012C308.223 137.012 307.712 137.159 307.264 137.453C306.817 137.734 306.472 138.143 306.229 138.68C305.986 139.204 305.89 139.843 305.941 140.597C305.877 141.301 305.973 141.914 306.229 142.438C306.497 142.962 306.868 143.371 307.341 143.665C307.827 143.959 308.376 144.106 308.99 144.106C309.616 144.106 310.147 143.966 310.582 143.685C311.029 143.403 311.381 143.039 311.636 142.592L313.4 143.454C313.196 143.94 312.876 144.381 312.442 144.778C312.02 145.161 311.508 145.468 310.908 145.698C310.32 145.915 309.674 146.024 308.971 146.024Z" fill="#73737A"/>
|
|
33
|
+
<path d="M291.163 145.794L287.597 135.42H289.898L292.62 143.685H291.815L294.595 135.42H296.57L299.332 143.685H298.526L301.268 135.42H303.569L299.983 145.794H298.028L295.228 137.338H295.938L293.138 145.794H291.163Z" fill="#73737A"/>
|
|
34
|
+
<path d="M282.083 146.024C281.086 146.024 280.172 145.787 279.341 145.314C278.523 144.841 277.871 144.196 277.385 143.378C276.899 142.56 276.656 141.633 276.656 140.597C276.656 139.549 276.899 138.623 277.385 137.817C277.871 136.999 278.523 136.36 279.341 135.9C280.159 135.427 281.073 135.19 282.083 135.19C283.105 135.19 284.019 135.427 284.825 135.9C285.643 136.36 286.288 136.999 286.761 137.817C287.247 138.623 287.49 139.549 287.49 140.597C287.49 141.646 287.247 142.579 286.761 143.397C286.276 144.215 285.624 144.861 284.805 145.334C283.987 145.794 283.08 146.024 282.083 146.024ZM282.083 144.011C282.696 144.011 283.24 143.864 283.713 143.57C284.185 143.276 284.556 142.873 284.825 142.362C285.106 141.837 285.246 141.249 285.246 140.597C285.246 139.946 285.106 139.364 284.825 138.853C284.556 138.341 284.185 137.939 283.713 137.645C283.24 137.351 282.696 137.204 282.083 137.204C281.482 137.204 280.939 137.351 280.453 137.645C279.98 137.939 279.603 138.341 279.322 138.853C279.053 139.364 278.919 139.946 278.919 140.597C278.919 141.249 279.053 141.837 279.322 142.362C279.603 142.873 279.98 143.276 280.453 143.57C280.939 143.864 281.482 144.011 282.083 144.011Z" fill="#73737A"/>
|
|
35
|
+
<path d="M265 149.629V135.42H267.071V137.568L266.822 137.069C267.205 136.481 267.716 136.021 268.356 135.689C268.995 135.356 269.723 135.19 270.541 135.19C271.526 135.19 272.408 135.427 273.188 135.9C273.98 136.373 274.6 137.018 275.047 137.836C275.508 138.654 275.738 139.575 275.738 140.597C275.738 141.62 275.508 142.541 275.047 143.359C274.6 144.177 273.986 144.829 273.207 145.314C272.427 145.787 271.539 146.024 270.541 146.024C269.736 146.024 269.001 145.858 268.336 145.525C267.684 145.193 267.18 144.714 266.822 144.087L267.167 143.685V149.629H265ZM270.331 144.011C270.944 144.011 271.487 143.864 271.96 143.57C272.433 143.276 272.804 142.873 273.073 142.362C273.354 141.837 273.494 141.249 273.494 140.597C273.494 139.946 273.354 139.364 273.073 138.853C272.804 138.341 272.433 137.939 271.96 137.645C271.487 137.351 270.944 137.204 270.331 137.204C269.73 137.204 269.186 137.351 268.701 137.645C268.228 137.939 267.851 138.341 267.569 138.853C267.301 139.364 267.167 139.946 267.167 140.597C267.167 141.249 267.301 141.837 267.569 142.362C267.851 142.873 268.228 143.276 268.701 143.57C269.186 143.864 269.73 144.011 270.331 144.011Z" fill="#73737A"/>
|
|
36
|
+
<defs>
|
|
37
|
+
<clipPath id="clip0_184_3925">
|
|
38
|
+
<rect width="349.699" height="68.8112" fill="white" transform="translate(147.301 43.2928)"/>
|
|
39
|
+
</clipPath>
|
|
40
|
+
</defs>
|
|
41
|
+
</svg>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<svg width="497" height="156" viewBox="0 0 497 156" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M121.308 24.5834L73.585 11.6299V62.1486L121.308 76.3974V24.5834Z" stroke="#BAD3F8" stroke-width="16.2984"/>
|
|
3
|
+
<path d="M97.447 50.4892L39.4971 35.4904V93.9857L97.447 110.484V50.4892Z" stroke="#5A93ED" stroke-width="16.2984"/>
|
|
4
|
+
<path d="M73.5849 76.3979L8.81738 59.3538V125.826L73.5849 144.574V76.3979Z" stroke="#2955DA" stroke-width="16.2984"/>
|
|
5
|
+
<g clip-path="url(#clip0_184_3966)">
|
|
6
|
+
<path d="M427.205 111.433V44.7692H440.627L465.593 77.8773H459.329L483.578 44.7692H497.001V111.433H483.131V60.0705L488.679 61.3232L462.998 94.4314H461.208L436.422 61.3232L441.075 60.0705V111.433H427.205Z" fill="#1D1D1F"/>
|
|
7
|
+
<path d="M385.602 112.506C380.591 112.506 375.938 111.641 371.643 109.911C367.348 108.181 363.59 105.765 360.368 102.663C357.207 99.5016 354.731 95.8328 352.941 91.657C351.152 87.4812 350.257 82.9475 350.257 78.0558C350.257 73.1642 351.122 68.6304 352.852 64.4546C354.641 60.2788 357.117 56.6399 360.279 53.5379C363.5 50.4359 367.258 48.0199 371.553 46.2899C375.849 44.5599 380.531 43.6949 385.602 43.6949C390.673 43.6949 395.355 44.5599 399.651 46.2899C403.946 48.0199 407.674 50.4359 410.836 53.5379C414.057 56.6399 416.533 60.2788 418.263 64.4546C420.052 68.6304 420.947 73.1642 420.947 78.0558C420.947 82.9475 420.052 87.4812 418.263 91.657C416.473 95.8328 413.968 99.5016 410.746 102.663C407.585 105.765 403.856 108.181 399.561 109.911C395.266 111.641 390.613 112.506 385.602 112.506ZM385.602 99.9788C388.644 99.9788 391.448 99.4419 394.013 98.3681C396.638 97.2943 398.935 95.803 400.903 93.894C402.872 91.9255 404.393 89.5989 405.467 86.9145C406.541 84.2301 407.078 81.2772 407.078 78.0558C407.078 74.8345 406.541 71.9114 405.467 69.2866C404.393 66.6022 402.872 64.2757 400.903 62.3071C398.935 60.3385 396.638 58.8471 394.013 57.833C391.448 56.7592 388.644 56.2223 385.602 56.2223C382.56 56.2223 379.726 56.7592 377.101 57.833C374.536 58.8471 372.269 60.3385 370.301 62.3071C368.332 64.2757 366.811 66.6022 365.737 69.2866C364.663 71.9114 364.126 74.8345 364.126 78.0558C364.126 81.2772 364.663 84.2301 365.737 86.9145C366.811 89.5989 368.332 91.9255 370.301 93.894C372.269 95.803 374.536 97.2943 377.101 98.3681C379.726 99.4419 382.56 99.9788 385.602 99.9788Z" fill="#1D1D1F"/>
|
|
8
|
+
<path d="M318.36 112.506C313.588 112.506 309.143 111.641 305.027 109.911C300.971 108.181 297.421 105.765 294.379 102.663C291.336 99.5614 288.95 95.9225 287.22 91.7467C285.55 87.5709 284.715 83.0073 284.715 78.056C284.715 73.1047 285.55 68.5411 287.22 64.3653C288.891 60.1299 291.247 56.491 294.289 53.4486C297.332 50.3466 300.881 47.9604 304.938 46.2901C309.054 44.5601 313.528 43.6951 318.36 43.6951C323.192 43.6951 327.517 44.5005 331.335 46.1111C335.212 47.7218 338.493 49.8694 341.178 52.5538C343.862 55.2382 345.771 58.221 346.904 61.5019L334.646 67.4077C333.512 64.1864 331.514 61.5318 328.65 59.4439C325.846 57.2963 322.416 56.2225 318.36 56.2225C314.423 56.2225 310.963 57.1472 307.98 58.9965C304.997 60.8457 302.671 63.4109 301 66.6919C299.39 69.9132 298.584 73.7012 298.584 78.056C298.584 82.4108 299.39 86.2287 301 89.5096C302.671 92.7906 304.997 95.3558 307.98 97.2051C310.963 99.0543 314.423 99.979 318.36 99.979C322.416 99.979 325.846 98.935 328.65 96.8471C331.514 94.6996 333.512 92.0151 334.646 88.7938L346.904 94.6996C345.771 97.9806 343.862 100.963 341.178 103.648C338.493 106.332 335.212 108.48 331.335 110.09C327.517 111.701 323.192 112.506 318.36 112.506Z" fill="#1D1D1F"/>
|
|
9
|
+
<path d="M264.572 111.433V44.7692H278.442V111.433H264.572Z" fill="#1D1D1F"/>
|
|
10
|
+
<path d="M202.002 111.433V44.769H223.746C230.964 44.769 237.228 46.2007 242.537 49.0642C247.846 51.9276 251.962 55.8647 254.885 60.8757C257.809 65.8867 259.27 71.6135 259.27 78.0561C259.27 84.4988 257.809 90.2555 254.885 95.3261C251.962 100.337 247.846 104.274 242.537 107.138C237.228 110.001 230.964 111.433 223.746 111.433H202.002ZM215.872 99.3527H224.104C228.459 99.3527 232.217 98.4878 235.379 96.7578C238.54 94.9681 240.986 92.4925 242.716 89.3308C244.506 86.1095 245.4 82.3513 245.4 78.0561C245.4 73.7014 244.506 69.9432 242.716 66.7815C240.986 63.6198 238.54 61.174 235.379 59.444C232.217 57.714 228.459 56.849 224.104 56.849H215.872V99.3527Z" fill="#1D1D1F"/>
|
|
11
|
+
<path d="M171.013 112.507C167.315 112.507 163.795 111.82 160.455 110.448C157.114 109.017 154.28 107.018 151.954 104.453C149.627 101.888 148.076 98.8755 147.301 95.4156L159.56 91.2994C160.574 94.1628 162.065 96.3402 164.034 97.8316C166.002 99.2633 168.329 99.9791 171.013 99.9791C173.221 99.9791 175.1 99.5615 176.651 98.7264C178.261 97.8912 179.514 96.728 180.409 95.2366C181.304 93.6856 181.751 91.896 181.751 89.8677C181.751 87.8395 181.304 86.1095 180.409 84.6778C179.574 83.1864 178.351 82.053 176.74 81.2775C175.189 80.4423 173.28 80.0247 171.013 80.0247C169.701 80.0247 168.389 80.1739 167.076 80.4722C165.764 80.7704 164.571 81.188 163.497 81.7249L160.276 75.0138L177.367 56.4016H151.327V44.769H192.936V55.5068L175.398 75.4612L175.845 69.8239C179.842 69.8239 183.302 70.659 186.225 72.3293C189.208 73.94 191.505 76.2069 193.115 79.1299C194.786 82.053 195.621 85.4533 195.621 89.3308C195.621 93.7452 194.547 97.7122 192.399 101.232C190.252 104.751 187.329 107.525 183.63 109.554C179.932 111.522 175.726 112.507 171.013 112.507Z" fill="#1D1D1F"/>
|
|
12
|
+
</g>
|
|
13
|
+
<path d="M492.22 148.519C490.989 148.519 489.907 148.215 488.972 147.607C488.053 146.999 487.408 146.184 487.037 145.161L488.972 144.249C489.299 144.931 489.743 145.472 490.307 145.872C490.885 146.273 491.523 146.473 492.22 146.473C492.813 146.473 493.295 146.34 493.666 146.073C494.037 145.806 494.222 145.442 494.222 144.983C494.222 144.686 494.14 144.449 493.977 144.271C493.814 144.078 493.606 143.922 493.354 143.804C493.117 143.685 492.872 143.596 492.62 143.537L490.73 143.003C489.692 142.706 488.913 142.262 488.394 141.668C487.89 141.06 487.638 140.356 487.638 139.555C487.638 138.829 487.823 138.198 488.194 137.664C488.565 137.116 489.076 136.693 489.729 136.397C490.381 136.1 491.115 135.952 491.931 135.952C493.028 135.952 494.007 136.226 494.867 136.775C495.727 137.309 496.335 138.057 496.691 139.021L494.756 139.933C494.518 139.355 494.14 138.895 493.621 138.554C493.117 138.213 492.546 138.043 491.909 138.043C491.36 138.043 490.922 138.176 490.596 138.443C490.27 138.695 490.107 139.029 490.107 139.444C490.107 139.726 490.181 139.963 490.329 140.156C490.478 140.334 490.67 140.482 490.908 140.601C491.145 140.704 491.389 140.793 491.642 140.868L493.599 141.446C494.593 141.728 495.356 142.173 495.89 142.781C496.424 143.374 496.691 144.086 496.691 144.916C496.691 145.628 496.498 146.258 496.113 146.807C495.742 147.341 495.223 147.763 494.556 148.075C493.888 148.371 493.11 148.519 492.22 148.519Z" fill="#73737A"/>
|
|
14
|
+
<path d="M480.157 148.253V136.219H482.56V138.643L482.337 138.287C482.604 137.501 483.034 136.938 483.627 136.597C484.22 136.241 484.932 136.063 485.763 136.063H486.497V138.354H485.451C484.621 138.354 483.946 138.614 483.427 139.133C482.923 139.637 482.671 140.363 482.671 141.312V148.253H480.157Z" fill="#73737A"/>
|
|
15
|
+
<path d="M472.61 148.519C471.409 148.519 470.341 148.245 469.407 147.696C468.487 147.133 467.768 146.377 467.249 145.428C466.73 144.464 466.471 143.389 466.471 142.202C466.471 140.986 466.73 139.911 467.249 138.977C467.783 138.043 468.495 137.309 469.385 136.775C470.274 136.226 471.283 135.952 472.41 135.952C473.314 135.952 474.123 136.107 474.834 136.419C475.546 136.73 476.147 137.16 476.636 137.709C477.126 138.243 477.496 138.858 477.748 139.555C478.015 140.252 478.149 140.994 478.149 141.78C478.149 141.972 478.141 142.173 478.127 142.38C478.112 142.588 478.082 142.781 478.038 142.958H468.45V140.957H476.614L475.413 141.869C475.561 141.142 475.509 140.497 475.257 139.933C475.02 139.355 474.649 138.903 474.145 138.576C473.655 138.235 473.077 138.065 472.41 138.065C471.743 138.065 471.149 138.235 470.63 138.576C470.111 138.903 469.711 139.377 469.429 140C469.147 140.608 469.036 141.35 469.095 142.224C469.021 143.04 469.133 143.752 469.429 144.36C469.741 144.968 470.171 145.442 470.719 145.783C471.283 146.125 471.92 146.295 472.632 146.295C473.359 146.295 473.974 146.132 474.479 145.806C474.998 145.479 475.405 145.057 475.702 144.538L477.748 145.539C477.511 146.102 477.14 146.614 476.636 147.074C476.147 147.518 475.554 147.874 474.857 148.141C474.175 148.393 473.426 148.519 472.61 148.519Z" fill="#73737A"/>
|
|
16
|
+
<path d="M454.372 148.253V136.219H456.774V138.576L456.485 138.265C456.782 137.509 457.256 136.938 457.909 136.552C458.561 136.152 459.318 135.952 460.178 135.952C461.067 135.952 461.853 136.144 462.536 136.53C463.218 136.916 463.752 137.449 464.137 138.132C464.523 138.814 464.715 139.6 464.715 140.489V148.253H462.224V141.157C462.224 140.549 462.113 140.037 461.891 139.622C461.668 139.192 461.349 138.866 460.934 138.643C460.534 138.406 460.074 138.287 459.555 138.287C459.036 138.287 458.569 138.406 458.154 138.643C457.753 138.866 457.442 139.192 457.219 139.622C456.997 140.052 456.886 140.564 456.886 141.157V148.253H454.372Z" fill="#73737A"/>
|
|
17
|
+
<path d="M446.09 148.519C444.933 148.519 443.873 148.245 442.909 147.696C441.96 147.148 441.204 146.399 440.64 145.45C440.077 144.501 439.795 143.426 439.795 142.224C439.795 141.008 440.077 139.933 440.64 138.999C441.204 138.05 441.96 137.309 442.909 136.775C443.858 136.226 444.918 135.952 446.09 135.952C447.276 135.952 448.337 136.226 449.271 136.775C450.22 137.309 450.969 138.05 451.517 138.999C452.081 139.933 452.363 141.008 452.363 142.224C452.363 143.44 452.081 144.523 451.517 145.472C450.954 146.421 450.198 147.17 449.249 147.719C448.3 148.253 447.247 148.519 446.09 148.519ZM446.09 146.184C446.802 146.184 447.432 146.013 447.981 145.672C448.529 145.331 448.959 144.864 449.271 144.271C449.597 143.663 449.76 142.981 449.76 142.224C449.76 141.468 449.597 140.793 449.271 140.2C448.959 139.607 448.529 139.14 447.981 138.799C447.432 138.458 446.802 138.287 446.09 138.287C445.393 138.287 444.763 138.458 444.199 138.799C443.651 139.14 443.213 139.607 442.887 140.2C442.575 140.793 442.42 141.468 442.42 142.224C442.42 142.981 442.575 143.663 442.887 144.271C443.213 144.864 443.651 145.331 444.199 145.672C444.763 146.013 445.393 146.184 446.09 146.184Z" fill="#73737A"/>
|
|
18
|
+
<path d="M435.276 148.252V136.219H437.79V148.252H435.276ZM435.276 134.572V131.681H437.79V134.572H435.276Z" fill="#73737A"/>
|
|
19
|
+
<path d="M431.912 148.386C430.652 148.386 429.673 148.03 428.976 147.318C428.279 146.606 427.931 145.605 427.931 144.315V138.487H425.817V136.219H426.151C426.715 136.219 427.152 136.055 427.463 135.729C427.775 135.403 427.931 134.958 427.931 134.395V133.46H430.444V136.219H433.18V138.487H430.444V144.204C430.444 144.619 430.511 144.975 430.644 145.272C430.778 145.554 430.993 145.776 431.289 145.939C431.586 146.087 431.972 146.162 432.446 146.162C432.565 146.162 432.698 146.154 432.846 146.139C432.995 146.125 433.136 146.11 433.269 146.095V148.253C433.061 148.282 432.832 148.312 432.58 148.341C432.327 148.371 432.105 148.386 431.912 148.386Z" fill="#73737A"/>
|
|
20
|
+
<path d="M421.699 148.252V136.219H424.213V148.252H421.699ZM421.699 134.572V131.681H424.213V134.572H421.699Z" fill="#73737A"/>
|
|
21
|
+
<path d="M418.334 148.386C417.074 148.386 416.095 148.03 415.398 147.318C414.701 146.606 414.352 145.605 414.352 144.315V138.487H412.239V136.219H412.573C413.136 136.219 413.574 136.055 413.885 135.729C414.197 135.403 414.352 134.958 414.352 134.395V133.46H416.866V136.219H419.602V138.487H416.866V144.204C416.866 144.619 416.933 144.975 417.066 145.272C417.2 145.554 417.415 145.776 417.711 145.939C418.008 146.087 418.393 146.162 418.868 146.162C418.987 146.162 419.12 146.154 419.268 146.139C419.417 146.125 419.558 146.11 419.691 146.095V148.253C419.483 148.282 419.254 148.312 419.001 148.341C418.749 148.371 418.527 148.386 418.334 148.386Z" fill="#73737A"/>
|
|
22
|
+
<path d="M405.801 148.519C404.6 148.519 403.532 148.245 402.598 147.696C401.678 147.133 400.944 146.377 400.396 145.428C399.862 144.478 399.595 143.403 399.595 142.202C399.595 141.016 399.862 139.948 400.396 138.999C400.929 138.05 401.663 137.309 402.598 136.775C403.532 136.226 404.6 135.952 405.801 135.952C406.616 135.952 407.38 136.1 408.092 136.397C408.804 136.678 409.419 137.071 409.938 137.575C410.472 138.08 410.865 138.665 411.117 139.333L408.915 140.356C408.663 139.733 408.255 139.236 407.692 138.866C407.143 138.48 406.513 138.287 405.801 138.287C405.119 138.287 404.503 138.458 403.955 138.799C403.421 139.125 402.998 139.592 402.687 140.2C402.375 140.793 402.22 141.468 402.22 142.224C402.22 142.981 402.375 143.663 402.687 144.271C402.998 144.864 403.421 145.331 403.955 145.672C404.503 146.013 405.119 146.184 405.801 146.184C406.527 146.184 407.158 145.998 407.692 145.628C408.24 145.242 408.648 144.731 408.915 144.093L411.117 145.138C410.88 145.776 410.494 146.354 409.96 146.873C409.441 147.378 408.826 147.778 408.114 148.075C407.402 148.371 406.631 148.519 405.801 148.519Z" fill="#73737A"/>
|
|
23
|
+
<path d="M391.273 148.519C390.457 148.519 389.738 148.379 389.115 148.097C388.507 147.8 388.032 147.4 387.691 146.896C387.35 146.377 387.18 145.769 387.18 145.072C387.18 144.419 387.321 143.833 387.602 143.314C387.899 142.795 388.351 142.358 388.959 142.002C389.567 141.646 390.331 141.394 391.25 141.246L395.432 140.556V142.536L391.74 143.181C391.072 143.3 390.583 143.515 390.272 143.826C389.96 144.123 389.804 144.508 389.804 144.983C389.804 145.442 389.975 145.821 390.316 146.117C390.672 146.399 391.124 146.54 391.673 146.54C392.355 146.54 392.948 146.391 393.452 146.095C393.971 145.798 394.372 145.405 394.654 144.916C394.935 144.412 395.076 143.856 395.076 143.248V140.156C395.076 139.563 394.854 139.081 394.409 138.71C393.979 138.324 393.401 138.132 392.674 138.132C392.007 138.132 391.421 138.31 390.917 138.665C390.427 139.006 390.064 139.451 389.827 140L387.736 138.955C387.958 138.361 388.322 137.842 388.826 137.398C389.33 136.938 389.916 136.582 390.583 136.33C391.265 136.078 391.984 135.952 392.741 135.952C393.69 135.952 394.528 136.13 395.254 136.486C395.996 136.841 396.567 137.338 396.967 137.976C397.382 138.599 397.59 139.325 397.59 140.156V148.253H395.187V146.073L395.699 146.139C395.417 146.629 395.054 147.051 394.609 147.407C394.179 147.763 393.682 148.038 393.119 148.23C392.57 148.423 391.955 148.519 391.273 148.519Z" fill="#73737A"/>
|
|
24
|
+
<path d="M380.056 148.253V136.219H382.458V138.643L382.236 138.287C382.502 137.501 382.933 136.938 383.526 136.597C384.119 136.241 384.831 136.063 385.661 136.063H386.395V138.354H385.35C384.519 138.354 383.845 138.614 383.326 139.133C382.821 139.637 382.569 140.363 382.569 141.312V148.253H380.056Z" fill="#73737A"/>
|
|
25
|
+
<path d="M366.364 148.252V131.681H372.392C373.505 131.681 374.483 131.888 375.329 132.304C376.189 132.704 376.856 133.297 377.331 134.083C377.805 134.854 378.042 135.781 378.042 136.864C378.042 137.931 377.798 138.851 377.308 139.622C376.834 140.393 376.174 140.986 375.329 141.401C374.483 141.817 373.505 142.024 372.392 142.024H368.989V148.252H366.364ZM368.989 139.689H372.459C373.052 139.689 373.571 139.57 374.016 139.333C374.461 139.095 374.81 138.769 375.062 138.354C375.314 137.924 375.44 137.42 375.44 136.841C375.44 136.263 375.314 135.766 375.062 135.351C374.81 134.921 374.461 134.595 374.016 134.372C373.571 134.135 373.052 134.016 372.459 134.016H368.989V139.689Z" fill="#73737A"/>
|
|
26
|
+
<path d="M355.062 148.253V136.219H357.465V138.643L357.242 138.287C357.509 137.501 357.939 136.938 358.533 136.597C359.126 136.241 359.838 136.063 360.668 136.063H361.402V138.354H360.357C359.526 138.354 358.851 138.614 358.332 139.133C357.828 139.637 357.576 140.363 357.576 141.312V148.253H355.062Z" fill="#73737A"/>
|
|
27
|
+
<path d="M346.78 148.519C345.624 148.519 344.563 148.245 343.599 147.696C342.65 147.148 341.894 146.399 341.331 145.45C340.767 144.501 340.485 143.426 340.485 142.224C340.485 141.008 340.767 139.933 341.331 138.999C341.894 138.05 342.65 137.309 343.599 136.775C344.549 136.226 345.609 135.952 346.78 135.952C347.967 135.952 349.027 136.226 349.961 136.775C350.91 137.309 351.659 138.05 352.208 138.999C352.771 139.933 353.053 141.008 353.053 142.224C353.053 143.44 352.771 144.523 352.208 145.472C351.644 146.421 350.888 147.17 349.939 147.719C348.99 148.253 347.937 148.519 346.78 148.519ZM346.78 146.184C347.492 146.184 348.122 146.013 348.671 145.672C349.22 145.331 349.65 144.864 349.961 144.271C350.287 143.663 350.451 142.981 350.451 142.224C350.451 141.468 350.287 140.793 349.961 140.2C349.65 139.607 349.22 139.14 348.671 138.799C348.122 138.458 347.492 138.287 346.78 138.287C346.083 138.287 345.453 138.458 344.89 138.799C344.341 139.14 343.903 139.607 343.577 140.2C343.266 140.793 343.11 141.468 343.11 142.224C343.11 142.981 343.266 143.663 343.577 144.271C343.903 144.864 344.341 145.331 344.89 145.672C345.453 146.013 346.083 146.184 346.78 146.184Z" fill="#73737A"/>
|
|
28
|
+
<path d="M329 148.252V131.681H339.788V134.016H331.625V138.999H338.899V141.335H331.625V148.252H329Z" fill="#73737A"/>
|
|
29
|
+
<defs>
|
|
30
|
+
<clipPath id="clip0_184_3966">
|
|
31
|
+
<rect width="349.699" height="68.8112" fill="white" transform="translate(147.301 43.6949)"/>
|
|
32
|
+
</clipPath>
|
|
33
|
+
</defs>
|
|
34
|
+
</svg>
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<svg width="498" height="155" viewBox="0 0 498 155" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M121.308 23.7844L73.585 10.8309V61.3496L121.308 75.5985V23.7844Z" stroke="#BAD3F8" stroke-width="16.2984"/>
|
|
3
|
+
<path d="M97.447 49.6903L39.4971 34.6915V93.1868L97.447 109.686V49.6903Z" stroke="#5A93ED" stroke-width="16.2984"/>
|
|
4
|
+
<path d="M73.5849 75.599L8.81738 58.5549V125.027L73.5849 143.775V75.599Z" stroke="#2955DA" stroke-width="16.2984"/>
|
|
5
|
+
<g clip-path="url(#clip0_184_3980)">
|
|
6
|
+
<path d="M427.205 110.634V43.9702H440.627L465.593 77.0784H459.329L483.578 43.9702H497.001V110.634H483.131V59.2716L488.679 60.5243L462.998 93.6324H461.208L436.422 60.5243L441.075 59.2716V110.634H427.205Z" fill="#1D1D1F"/>
|
|
7
|
+
<path d="M385.602 111.707C380.591 111.707 375.938 110.842 371.643 109.112C367.348 107.382 363.59 104.966 360.368 101.864C357.207 98.7026 354.731 95.0339 352.941 90.8581C351.152 86.6823 350.257 82.1485 350.257 77.2569C350.257 72.3652 351.122 67.8315 352.852 63.6557C354.641 59.4799 357.117 55.841 360.279 52.739C363.5 49.6369 367.258 47.2209 371.553 45.491C375.849 43.761 380.531 42.896 385.602 42.896C390.673 42.896 395.355 43.761 399.651 45.491C403.946 47.2209 407.674 49.6369 410.836 52.739C414.057 55.841 416.533 59.4799 418.263 63.6557C420.052 67.8315 420.947 72.3652 420.947 77.2569C420.947 82.1485 420.052 86.6823 418.263 90.8581C416.473 95.0339 413.968 98.7026 410.746 101.864C407.585 104.966 403.856 107.382 399.561 109.112C395.266 110.842 390.613 111.707 385.602 111.707ZM385.602 99.1798C388.644 99.1798 391.448 98.6429 394.013 97.5692C396.638 96.4954 398.935 95.004 400.903 93.0951C402.872 91.1265 404.393 88.8 405.467 86.1155C406.541 83.4311 407.078 80.4782 407.078 77.2569C407.078 74.0355 406.541 71.1125 405.467 68.4877C404.393 65.8033 402.872 63.4767 400.903 61.5081C398.935 59.5396 396.638 58.0482 394.013 57.0341C391.448 55.9603 388.644 55.4234 385.602 55.4234C382.56 55.4234 379.726 55.9603 377.101 57.0341C374.536 58.0482 372.269 59.5396 370.301 61.5081C368.332 63.4767 366.811 65.8033 365.737 68.4877C364.663 71.1125 364.126 74.0355 364.126 77.2569C364.126 80.4782 364.663 83.4311 365.737 86.1155C366.811 88.8 368.332 91.1265 370.301 93.0951C372.269 95.004 374.536 96.4954 377.101 97.5692C379.726 98.6429 382.56 99.1798 385.602 99.1798Z" fill="#1D1D1F"/>
|
|
8
|
+
<path d="M318.36 111.707C313.588 111.707 309.143 110.842 305.027 109.112C300.971 107.382 297.421 104.966 294.379 101.864C291.336 98.7624 288.95 95.1235 287.22 90.9477C285.55 86.7719 284.715 82.2083 284.715 77.257C284.715 72.3057 285.55 67.7421 287.22 63.5663C288.891 59.3309 291.247 55.692 294.289 52.6496C297.332 49.5476 300.881 47.1614 304.938 45.4911C309.054 43.7611 313.528 42.8961 318.36 42.8961C323.192 42.8961 327.517 43.7015 331.335 45.3121C335.212 46.9228 338.493 49.0703 341.178 51.7548C343.862 54.4392 345.771 57.4219 346.904 60.7029L334.646 66.6087C333.512 63.3874 331.514 60.7328 328.65 58.6449C325.846 56.4973 322.416 55.4235 318.36 55.4235C314.423 55.4235 310.963 56.3482 307.98 58.1974C304.997 60.0467 302.671 62.6119 301 65.8929C299.39 69.1142 298.584 72.9022 298.584 77.257C298.584 81.6118 299.39 85.4296 301 88.7106C302.671 91.9916 304.997 94.5568 307.98 96.406C310.963 98.2553 314.423 99.18 318.36 99.18C322.416 99.18 325.846 98.136 328.65 96.0481C331.514 93.9006 333.512 91.2161 334.646 87.9948L346.904 93.9006C345.771 97.1815 343.862 100.164 341.178 102.849C338.493 105.533 335.212 107.681 331.335 109.291C327.517 110.902 323.192 111.707 318.36 111.707Z" fill="#1D1D1F"/>
|
|
9
|
+
<path d="M264.572 110.634V43.9702H278.442V110.634H264.572Z" fill="#1D1D1F"/>
|
|
10
|
+
<path d="M202.002 110.634V43.9701H223.746C230.964 43.9701 237.228 45.4018 242.537 48.2652C247.846 51.1286 251.962 55.0658 254.885 60.0768C257.809 65.0877 259.27 70.8145 259.27 77.2572C259.27 83.6999 257.809 89.4565 254.885 94.5271C251.962 99.5381 247.846 103.475 242.537 106.339C237.228 109.202 230.964 110.634 223.746 110.634H202.002ZM215.872 98.5538H224.104C228.459 98.5538 232.217 97.6888 235.379 95.9588C238.54 94.1692 240.986 91.6935 242.716 88.5319C244.506 85.3105 245.4 81.5523 245.4 77.2572C245.4 72.9024 244.506 69.1442 242.716 65.9825C240.986 62.8209 238.54 60.375 235.379 58.6451C232.217 56.9151 228.459 56.0501 224.104 56.0501H215.872V98.5538Z" fill="#1D1D1F"/>
|
|
11
|
+
<path d="M171.013 111.708C167.315 111.708 163.795 111.022 160.455 109.649C157.114 108.218 154.28 106.219 151.954 103.654C149.627 101.089 148.076 98.0766 147.301 94.6166L159.56 90.5005C160.574 93.3639 162.065 95.5412 164.034 97.0326C166.002 98.4643 168.329 99.1802 171.013 99.1802C173.221 99.1802 175.1 98.7626 176.651 97.9274C178.261 97.0923 179.514 95.929 180.409 94.4376C181.304 92.8866 181.751 91.097 181.751 89.0688C181.751 87.0405 181.304 85.3105 180.409 83.8788C179.574 82.3875 178.351 81.254 176.74 80.4785C175.189 79.6434 173.28 79.2258 171.013 79.2258C169.701 79.2258 168.389 79.3749 167.076 79.6732C165.764 79.9715 164.571 80.389 163.497 80.9259L160.276 74.2148L177.367 55.6027H151.327V43.9701H192.936V54.7079L175.398 74.6622L175.845 69.0249C179.842 69.0249 183.302 69.8601 186.225 71.5304C189.208 73.1411 191.505 75.4079 193.115 78.331C194.786 81.254 195.621 84.6543 195.621 88.5319C195.621 92.9463 194.547 96.9133 192.399 100.433C190.252 103.953 187.329 106.726 183.63 108.755C179.932 110.723 175.726 111.708 171.013 111.708Z" fill="#1D1D1F"/>
|
|
12
|
+
</g>
|
|
13
|
+
<path d="M486.853 147.72V130.882H489.366V138.044L488.966 137.733C489.262 136.977 489.737 136.406 490.389 136.02C491.042 135.62 491.798 135.42 492.658 135.42C493.548 135.42 494.334 135.612 495.016 135.998C495.698 136.383 496.232 136.917 496.618 137.599C497.003 138.282 497.196 139.06 497.196 139.935V147.72H494.705V140.625C494.705 140.017 494.586 139.505 494.349 139.09C494.126 138.66 493.815 138.334 493.414 138.111C493.014 137.874 492.554 137.755 492.035 137.755C491.531 137.755 491.071 137.874 490.656 138.111C490.256 138.334 489.937 138.66 489.7 139.09C489.477 139.52 489.366 140.031 489.366 140.625V147.72H486.853Z" fill="#73737A"/>
|
|
14
|
+
<path d="M479.524 147.987C478.323 147.987 477.256 147.713 476.321 147.164C475.402 146.601 474.668 145.845 474.119 144.895C473.585 143.946 473.318 142.871 473.318 141.67C473.318 140.484 473.585 139.416 474.119 138.467C474.653 137.518 475.387 136.776 476.321 136.243C477.256 135.694 478.323 135.42 479.524 135.42C480.34 135.42 481.104 135.568 481.816 135.864C482.527 136.146 483.143 136.539 483.662 137.043C484.196 137.548 484.589 138.133 484.841 138.801L482.639 139.824C482.386 139.201 481.979 138.704 481.415 138.334C480.866 137.948 480.236 137.755 479.524 137.755C478.842 137.755 478.227 137.926 477.678 138.267C477.144 138.593 476.722 139.06 476.41 139.668C476.099 140.261 475.943 140.936 475.943 141.692C475.943 142.449 476.099 143.131 476.41 143.739C476.722 144.332 477.144 144.799 477.678 145.14C478.227 145.481 478.842 145.652 479.524 145.652C480.251 145.652 480.881 145.466 481.415 145.096C481.964 144.71 482.372 144.198 482.639 143.561L484.841 144.606C484.603 145.244 484.218 145.822 483.684 146.341C483.165 146.846 482.55 147.246 481.838 147.542C481.126 147.839 480.355 147.987 479.524 147.987Z" fill="#73737A"/>
|
|
15
|
+
<path d="M466.193 147.72V135.686H468.596V138.111L468.373 137.755C468.64 136.969 469.07 136.406 469.663 136.065C470.257 135.709 470.968 135.531 471.799 135.531H472.533V137.822H471.487C470.657 137.822 469.982 138.081 469.463 138.6C468.959 139.105 468.707 139.831 468.707 140.78V147.72H466.193Z" fill="#73737A"/>
|
|
16
|
+
<path d="M457.382 147.987C456.566 147.987 455.847 147.846 455.224 147.565C454.616 147.268 454.142 146.868 453.801 146.364C453.46 145.845 453.289 145.237 453.289 144.54C453.289 143.887 453.43 143.301 453.712 142.782C454.008 142.263 454.461 141.826 455.069 141.47C455.677 141.114 456.44 140.862 457.36 140.714L461.542 140.024V142.004L457.849 142.649C457.182 142.767 456.692 142.982 456.381 143.294C456.07 143.59 455.914 143.976 455.914 144.451C455.914 144.91 456.084 145.288 456.425 145.585C456.781 145.867 457.234 146.008 457.782 146.008C458.464 146.008 459.058 145.859 459.562 145.563C460.081 145.266 460.481 144.873 460.763 144.384C461.045 143.88 461.186 143.324 461.186 142.716V139.624C461.186 139.03 460.963 138.549 460.518 138.178C460.088 137.792 459.51 137.599 458.783 137.599C458.116 137.599 457.53 137.777 457.026 138.133C456.537 138.474 456.173 138.919 455.936 139.468L453.845 138.422C454.068 137.829 454.431 137.31 454.935 136.865C455.439 136.406 456.025 136.05 456.692 135.798C457.375 135.546 458.094 135.42 458.85 135.42C459.799 135.42 460.637 135.598 461.364 135.953C462.105 136.309 462.676 136.806 463.076 137.444C463.492 138.067 463.699 138.793 463.699 139.624V147.72H461.297V145.541L461.808 145.607C461.527 146.097 461.163 146.519 460.719 146.875C460.288 147.231 459.792 147.505 459.228 147.698C458.68 147.891 458.064 147.987 457.382 147.987Z" fill="#73737A"/>
|
|
17
|
+
<path d="M446.34 147.987C445.139 147.987 444.072 147.713 443.137 147.164C442.218 146.601 441.499 145.845 440.98 144.895C440.461 143.932 440.201 142.856 440.201 141.67C440.201 140.454 440.461 139.379 440.98 138.445C441.514 137.51 442.225 136.776 443.115 136.243C444.005 135.694 445.013 135.42 446.14 135.42C447.045 135.42 447.853 135.575 448.565 135.887C449.277 136.198 449.877 136.628 450.367 137.177C450.856 137.711 451.227 138.326 451.479 139.023C451.746 139.72 451.879 140.462 451.879 141.247C451.879 141.44 451.872 141.64 451.857 141.848C451.842 142.056 451.812 142.248 451.768 142.426H442.181V140.424H450.344L449.143 141.336C449.292 140.61 449.24 139.965 448.988 139.401C448.75 138.823 448.38 138.371 447.875 138.044C447.386 137.703 446.808 137.533 446.14 137.533C445.473 137.533 444.88 137.703 444.361 138.044C443.842 138.371 443.441 138.845 443.16 139.468C442.878 140.076 442.767 140.817 442.826 141.692C442.752 142.508 442.863 143.22 443.16 143.828C443.471 144.436 443.901 144.91 444.45 145.251C445.013 145.592 445.651 145.763 446.363 145.763C447.089 145.763 447.705 145.6 448.209 145.274C448.728 144.947 449.136 144.525 449.432 144.006L451.479 145.007C451.242 145.57 450.871 146.082 450.367 146.542C449.877 146.986 449.284 147.342 448.587 147.609C447.905 147.861 447.156 147.987 446.34 147.987Z" fill="#73737A"/>
|
|
18
|
+
<path d="M434.201 147.987C432.971 147.987 431.888 147.683 430.954 147.075C430.034 146.467 429.389 145.652 429.019 144.629L430.954 143.717C431.28 144.399 431.725 144.94 432.288 145.34C432.867 145.741 433.504 145.941 434.201 145.941C434.795 145.941 435.277 145.807 435.647 145.541C436.018 145.274 436.203 144.91 436.203 144.451C436.203 144.154 436.122 143.917 435.959 143.739C435.796 143.546 435.588 143.39 435.336 143.272C435.099 143.153 434.854 143.064 434.602 143.005L432.711 142.471C431.673 142.174 430.894 141.729 430.375 141.136C429.871 140.528 429.619 139.824 429.619 139.023C429.619 138.296 429.805 137.666 430.175 137.132C430.546 136.584 431.058 136.161 431.71 135.864C432.363 135.568 433.097 135.42 433.912 135.42C435.01 135.42 435.988 135.694 436.848 136.243C437.709 136.776 438.317 137.525 438.672 138.489L436.737 139.401C436.5 138.823 436.122 138.363 435.603 138.022C435.099 137.681 434.528 137.51 433.89 137.51C433.341 137.51 432.904 137.644 432.578 137.911C432.251 138.163 432.088 138.497 432.088 138.912C432.088 139.194 432.162 139.431 432.311 139.624C432.459 139.802 432.652 139.95 432.889 140.069C433.126 140.172 433.371 140.261 433.623 140.335L435.581 140.914C436.574 141.196 437.338 141.64 437.872 142.248C438.405 142.842 438.672 143.553 438.672 144.384C438.672 145.096 438.48 145.726 438.094 146.275C437.723 146.808 437.204 147.231 436.537 147.542C435.87 147.839 435.091 147.987 434.201 147.987Z" fill="#73737A"/>
|
|
19
|
+
<path d="M422.206 147.987C421.005 147.987 419.937 147.713 419.003 147.164C418.083 146.601 417.364 145.845 416.845 144.895C416.326 143.932 416.066 142.856 416.066 141.67C416.066 140.454 416.326 139.379 416.845 138.445C417.379 137.51 418.091 136.776 418.98 136.243C419.87 135.694 420.879 135.42 422.006 135.42C422.91 135.42 423.718 135.575 424.43 135.887C425.142 136.198 425.743 136.628 426.232 137.177C426.721 137.711 427.092 138.326 427.344 139.023C427.611 139.72 427.744 140.462 427.744 141.247C427.744 141.44 427.737 141.64 427.722 141.848C427.707 142.056 427.678 142.248 427.633 142.426H418.046V140.424H426.21L425.008 141.336C425.157 140.61 425.105 139.965 424.853 139.401C424.615 138.823 424.245 138.371 423.741 138.044C423.251 137.703 422.673 137.533 422.006 137.533C421.338 137.533 420.745 137.703 420.226 138.044C419.707 138.371 419.307 138.845 419.025 139.468C418.743 140.076 418.632 140.817 418.691 141.692C418.617 142.508 418.728 143.22 419.025 143.828C419.336 144.436 419.766 144.91 420.315 145.251C420.879 145.592 421.516 145.763 422.228 145.763C422.955 145.763 423.57 145.6 424.074 145.274C424.593 144.947 425.001 144.525 425.298 144.006L427.344 145.007C427.107 145.57 426.736 146.082 426.232 146.542C425.743 146.986 425.149 147.342 424.452 147.609C423.77 147.861 423.021 147.987 422.206 147.987Z" fill="#73737A"/>
|
|
20
|
+
<path d="M403.364 147.721V131.149H409.392C410.505 131.149 411.483 131.356 412.329 131.772C413.174 132.172 413.834 132.765 414.308 133.551C414.798 134.322 415.042 135.249 415.042 136.332C415.042 137.473 414.753 138.452 414.175 139.268C413.611 140.083 412.848 140.677 411.884 141.047L415.71 147.721H412.729L408.658 140.491L410.371 141.492H405.989V147.721H403.364ZM405.989 139.157H409.437C410.045 139.157 410.571 139.038 411.016 138.801C411.461 138.563 411.802 138.237 412.039 137.822C412.291 137.392 412.418 136.888 412.418 136.309C412.418 135.731 412.291 135.234 412.039 134.819C411.802 134.389 411.461 134.063 411.016 133.84C410.571 133.603 410.045 133.484 409.437 133.484H405.989V139.157Z" fill="#73737A"/>
|
|
21
|
+
<path d="M392.062 147.72V135.686H394.465V138.111L394.242 137.755C394.509 136.969 394.939 136.406 395.533 136.065C396.126 135.709 396.838 135.531 397.668 135.531H398.402V137.822H397.357C396.526 137.822 395.851 138.081 395.332 138.6C394.828 139.105 394.576 139.831 394.576 140.78V147.72H392.062Z" fill="#73737A"/>
|
|
22
|
+
<path d="M383.78 147.987C382.624 147.987 381.563 147.713 380.599 147.164C379.65 146.616 378.894 145.867 378.331 144.918C377.767 143.969 377.485 142.894 377.485 141.692C377.485 140.476 377.767 139.401 378.331 138.467C378.894 137.518 379.65 136.776 380.599 136.243C381.549 135.694 382.609 135.42 383.78 135.42C384.967 135.42 386.027 135.694 386.961 136.243C387.91 136.776 388.659 137.518 389.208 138.467C389.771 139.401 390.053 140.476 390.053 141.692C390.053 142.908 389.771 143.991 389.208 144.94C388.644 145.889 387.888 146.638 386.939 147.187C385.99 147.72 384.937 147.987 383.78 147.987ZM383.78 145.652C384.492 145.652 385.122 145.481 385.671 145.14C386.22 144.799 386.65 144.332 386.961 143.739C387.287 143.131 387.451 142.449 387.451 141.692C387.451 140.936 387.287 140.261 386.961 139.668C386.65 139.075 386.22 138.608 385.671 138.267C385.122 137.926 384.492 137.755 383.78 137.755C383.083 137.755 382.453 137.926 381.89 138.267C381.341 138.608 380.903 139.075 380.577 139.668C380.266 140.261 380.11 140.936 380.11 141.692C380.11 142.449 380.266 143.131 380.577 143.739C380.903 144.332 381.341 144.799 381.89 145.14C382.453 145.481 383.083 145.652 383.78 145.652Z" fill="#73737A"/>
|
|
23
|
+
<path d="M366 147.721V131.149H376.788V133.484H368.625V138.467H375.899V140.803H368.625V147.721H366Z" fill="#73737A"/>
|
|
24
|
+
<defs>
|
|
25
|
+
<clipPath id="clip0_184_3980">
|
|
26
|
+
<rect width="349.699" height="68.8112" fill="white" transform="translate(147.301 42.896)"/>
|
|
27
|
+
</clipPath>
|
|
28
|
+
</defs>
|
|
29
|
+
</svg>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<?xml version="1.0"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 64" version="1.1" width="512" height="64">
|
|
3
|
+
<g>
|
|
4
|
+
<svg viewBox="0 0 448 64" width="448" height="64" >
|
|
5
|
+
<g>
|
|
6
|
+
<svg height="64" viewBox="1.05 -31.05 391.32 31.7" width="448">
|
|
7
|
+
<path fill="#000000" d="M15.7-10.9L15.7-10.9 12.15-10.9Q10.75-13 9.22-15.33 7.7-17.65 6.23-20.05 4.75-22.45 3.43-24.78 2.1-27.1 1.05-29.1L1.05-29.1Q1.25-29.65 1.8-30.18 2.35-30.7 3.25-30.7L3.25-30.7Q4.2-30.7 4.73-30.2 5.25-29.7 5.8-28.7L5.8-28.7Q6.45-27.55 7.28-26.13 8.1-24.7 9-23.13 9.9-21.55 10.8-20 11.7-18.45 12.48-17.1 13.25-15.75 13.85-14.75L13.85-14.75 14.05-14.75Q15.8-17.65 17.25-20.25 18.7-22.85 20.05-25.35 21.4-27.85 22.7-30.35L22.7-30.35Q23-30.55 23.45-30.63 23.9-30.7 24.25-30.7L24.25-30.7Q25.2-30.7 25.68-30.25 26.15-29.8 26.15-29L26.15-29Q26.15-28.5 25.38-26.88 24.6-25.25 23.2-22.83 21.8-20.4 19.9-17.35 18-14.3 15.7-10.9ZM11.9-1.6L11.9-12.85 15.95-12.85 15.95-0.1Q15.7 0 15.18 0.13 14.65 0.25 14.1 0.25L14.1 0.25Q13 0.25 12.45-0.2 11.9-0.65 11.9-1.6L11.9-1.6ZM59.2-15.2L59.2-15.2 59.2-15.2Q59.2-10 57.3-6.48 55.4-2.95 52.12-1.15 48.85 0.65 44.7 0.65L44.7 0.65Q40.6 0.65 37.3-1.15 34-2.95 32.1-6.48 30.2-10 30.2-15.2L30.2-15.2Q30.2-20.4 32.15-23.93 34.1-27.45 37.37-29.25 40.65-31.05 44.7-31.05L44.7-31.05Q48.8-31.05 52.07-29.25 55.35-27.45 57.27-23.93 59.2-20.4 59.2-15.2ZM55.05-15.2L55.05-15.2 55.05-15.2Q55.05-21.15 52.22-24.38 49.4-27.6 44.7-27.6L44.7-27.6Q40.05-27.6 37.22-24.38 34.4-21.15 34.4-15.2L34.4-15.2Q34.4-9.25 37.2-6.03 40-2.8 44.7-2.8L44.7-2.8Q49.45-2.8 52.25-6.03 55.05-9.25 55.05-15.2ZM78.15 0.65L78.15 0.65 78.15 0.65Q74.4 0.65 71.75-0.73 69.1-2.1 67.72-4.63 66.35-7.15 66.35-10.5L66.35-10.5 66.35-14.6 70.4-14.6 70.4-10.85Q70.4-6.85 72.62-4.83 74.85-2.8 78.15-2.8L78.15-2.8Q81.45-2.8 83.67-4.83 85.9-6.85 85.9-10.85L85.9-10.85 85.9-14.6 90-14.6 90-10.5Q90-7.15 88.62-4.63 87.25-2.1 84.6-0.73 81.95 0.65 78.15 0.65ZM70.4-28.8L70.4-12.55 66.35-12.55 66.35-30.3Q66.6-30.4 67.12-30.53 67.65-30.65 68.25-30.65L68.25-30.65Q69.35-30.65 69.87-30.23 70.4-29.8 70.4-28.8L70.4-28.8ZM90-28.8L90-12.55 85.9-12.55 85.9-30.3Q86.15-30.4 86.67-30.53 87.2-30.65 87.8-30.65L87.8-30.65Q88.9-30.65 89.45-30.23 90-29.8 90-28.8L90-28.8ZM102.89-27.1L102.89-14.9 108.64-14.9Q112.34-14.9 114.44-16.5 116.54-18.1 116.54-21.25L116.54-21.25Q116.54-24.35 114.34-25.95 112.14-27.55 108.04-27.55L108.04-27.55Q106.69-27.55 105.32-27.43 103.94-27.3 102.89-27.1L102.89-27.1ZM108.64-11.5L108.64-11.5 98.84-11.5 98.84-28.2Q98.84-29 99.27-29.43 99.69-29.85 100.49-30.1L100.49-30.1Q101.94-30.55 104.07-30.75 106.19-30.95 108.19-30.95L108.19-30.95Q114.44-30.95 117.54-28.4 120.64-25.85 120.64-21.25L120.64-21.25Q120.64-18.3 119.29-16.1 117.94-13.9 115.29-12.7 112.64-11.5 108.64-11.5ZM116.94-1.3L108.74-12.8 111.74-14.3Q113.14-12.55 114.64-10.65 116.14-8.75 117.54-6.95 118.94-5.15 120.04-3.73 121.14-2.3 121.74-1.5L121.74-1.5Q121.54-0.65 120.87-0.15 120.19 0.35 119.49 0.35L119.49 0.35Q118.64 0.35 118.09-0.08 117.54-0.5 116.94-1.3L116.94-1.3ZM98.84-1.6L98.84-12.6 102.94-12.6 102.94-0.1Q102.64 0 102.14 0.13 101.64 0.25 101.04 0.25L101.04 0.25Q99.94 0.25 99.39-0.2 98.84-0.65 98.84-1.6L98.84-1.6ZM143.29-2.2L143.29-17.75 147.39-17.75 147.39-0.4 145.49 0Q144.54 0 143.91-0.63 143.29-1.25 143.29-2.2L143.29-2.2ZM160.64 0L145.49 0 145.49-3.5 161.74-3.5Q161.99-3.3 162.14-2.85 162.29-2.4 162.29-1.85L162.29-1.85Q162.29-1 161.84-0.5 161.39 0 160.64 0L160.64 0ZM147.39-28.8L147.39-14.75 143.29-14.75 143.29-30.3Q143.54-30.4 144.06-30.53 144.59-30.65 145.19-30.65L145.19-30.65Q146.29-30.65 146.84-30.23 147.39-29.8 147.39-28.8L147.39-28.8ZM195.59-15.2L195.59-15.2 195.59-15.2Q195.59-10 193.69-6.48 191.79-2.95 188.51-1.15 185.24 0.65 181.09 0.65L181.09 0.65Q176.99 0.65 173.69-1.15 170.39-2.95 168.49-6.48 166.59-10 166.59-15.2L166.59-15.2Q166.59-20.4 168.54-23.93 170.49-27.45 173.76-29.25 177.04-31.05 181.09-31.05L181.09-31.05Q185.19-31.05 188.46-29.25 191.74-27.45 193.66-23.93 195.59-20.4 195.59-15.2ZM191.44-15.2L191.44-15.2 191.44-15.2Q191.44-21.15 188.61-24.38 185.79-27.6 181.09-27.6L181.09-27.6Q176.44-27.6 173.61-24.38 170.79-21.15 170.79-15.2L170.79-15.2Q170.79-9.25 173.59-6.03 176.39-2.8 181.09-2.8L181.09-2.8Q185.84-2.8 188.64-6.03 191.44-9.25 191.44-15.2ZM226.83-14.35L226.83-14.35 226.83-3.5Q226.83-2.6 226.31-1.98 225.78-1.35 224.73-0.85L224.73-0.85Q223.48-0.2 221.28 0.23 219.08 0.65 216.83 0.65L216.83 0.65Q212.18 0.65 208.61-1.05 205.03-2.75 203.03-6.25 201.03-9.75 201.03-15.15L201.03-15.15Q201.03-20.5 203.11-24.03 205.18-27.55 208.63-29.3 212.08-31.05 216.18-31.05L216.18-31.05Q219.03-31.05 221.18-30.45 223.33-29.85 224.53-28.95 225.73-28.05 225.73-27.1L225.73-27.1Q225.73-26.45 225.33-25.93 224.93-25.4 224.38-25.15L224.38-25.15Q223.03-26.05 221.18-26.83 219.33-27.6 216.43-27.6L216.43-27.6Q213.28-27.6 210.73-26.2 208.18-24.8 206.71-22.03 205.23-19.25 205.23-15.15L205.23-15.15Q205.23-10.85 206.76-8.13 208.28-5.4 210.93-4.1 213.58-2.8 216.88-2.8L216.88-2.8Q218.68-2.8 220.28-3.1 221.88-3.4 222.78-3.85L222.78-3.85 222.78-13.05 215.23-13.05Q215.08-13.3 214.93-13.73 214.78-14.15 214.78-14.65L214.78-14.65Q214.78-15.5 215.18-15.98 215.58-16.45 216.33-16.45L216.33-16.45 224.68-16.45Q225.58-16.45 226.21-15.88 226.83-15.3 226.83-14.35ZM261.98-15.2L261.98-15.2 261.98-15.2Q261.98-10 260.08-6.48 258.18-2.95 254.91-1.15 251.63 0.65 247.48 0.65L247.48 0.65Q243.38 0.65 240.08-1.15 236.78-2.95 234.88-6.48 232.98-10 232.98-15.2L232.98-15.2Q232.98-20.4 234.93-23.93 236.88-27.45 240.16-29.25 243.43-31.05 247.48-31.05L247.48-31.05Q251.58-31.05 254.86-29.25 258.13-27.45 260.06-23.93 261.98-20.4 261.98-15.2ZM257.83-15.2L257.83-15.2 257.83-15.2Q257.83-21.15 255.01-24.38 252.18-27.6 247.48-27.6L247.48-27.6Q242.83-27.6 240.01-24.38 237.18-21.15 237.18-15.2L237.18-15.2Q237.18-9.25 239.98-6.03 242.78-2.8 247.48-2.8L247.48-2.8Q252.23-2.8 255.03-6.03 257.83-9.25 257.83-15.2ZM284.18-1.6L284.18-18.1 288.28-18.1 288.28-0.1Q287.98 0 287.48 0.13 286.98 0.25 286.38 0.25L286.38 0.25Q285.28 0.25 284.73-0.2 284.18-0.65 284.18-1.6L284.18-1.6ZM288.28-28.8L288.28-14.75 284.18-14.75 284.18-30.3Q284.43-30.4 284.95-30.53 285.48-30.65 286.08-30.65L286.08-30.65Q287.18-30.65 287.73-30.23 288.28-29.8 288.28-28.8L288.28-28.8ZM303.88-1.6L303.88-18.1 307.98-18.1 307.98-0.1Q307.68 0 307.18 0.13 306.68 0.25 306.08 0.25L306.08 0.25Q304.98 0.25 304.43-0.2 303.88-0.65 303.88-1.6L303.88-1.6ZM307.98-28.8L307.98-14.75 303.88-14.75 303.88-30.3Q304.13-30.4 304.65-30.53 305.18-30.65 305.78-30.65L305.78-30.65Q306.88-30.65 307.43-30.23 307.98-29.8 307.98-28.8L307.98-28.8ZM306.03-17.1L306.03-13.7 286.63-13.7 286.63-17.1 306.03-17.1ZM316.87-2.2L316.87-18.3 320.92-18.3 320.92-0.4Q320.72-0.35 320.17-0.18 319.62 0 319.07 0L319.07 0Q318.07 0 317.47-0.63 316.87-1.25 316.87-2.2L316.87-2.2ZM320.92-30L320.92-12.4 316.87-12.45 316.87-28.2Q316.87-29.2 317.47-29.8 318.07-30.4 319.07-30.4L319.07-30.4Q319.62-30.4 320.17-30.25 320.72-30.1 320.92-30L320.92-30ZM333.02-13.9L319.07-13.9 319.07-17.3 334.12-17.3Q334.27-17.1 334.42-16.65 334.57-16.2 334.57-15.7L334.57-15.7Q334.57-14.9 334.17-14.4 333.77-13.9 333.02-13.9L333.02-13.9ZM334.82 0L319.07 0 319.07-3.4 335.92-3.4Q336.07-3.2 336.22-2.78 336.37-2.35 336.37-1.8L336.37-1.8Q336.37-1 335.97-0.5 335.57 0 334.82 0L334.82 0ZM334.57-26.95L319.07-26.95 319.07-30.4 335.67-30.4Q335.82-30.2 335.97-29.75 336.12-29.3 336.12-28.8L336.12-28.8Q336.12-28 335.72-27.48 335.32-26.95 334.57-26.95L334.57-26.95ZM347.47-27.1L347.47-14.9 353.22-14.9Q356.92-14.9 359.02-16.5 361.12-18.1 361.12-21.25L361.12-21.25Q361.12-24.35 358.92-25.95 356.72-27.55 352.62-27.55L352.62-27.55Q351.27-27.55 349.9-27.43 348.52-27.3 347.47-27.1L347.47-27.1ZM353.22-11.5L353.22-11.5 343.42-11.5 343.42-28.2Q343.42-29 343.85-29.43 344.27-29.85 345.07-30.1L345.07-30.1Q346.52-30.55 348.65-30.75 350.77-30.95 352.77-30.95L352.77-30.95Q359.02-30.95 362.12-28.4 365.22-25.85 365.22-21.25L365.22-21.25Q365.22-18.3 363.87-16.1 362.52-13.9 359.87-12.7 357.22-11.5 353.22-11.5ZM361.52-1.3L353.32-12.8 356.32-14.3Q357.72-12.55 359.22-10.65 360.72-8.75 362.12-6.95 363.52-5.15 364.62-3.73 365.72-2.3 366.32-1.5L366.32-1.5Q366.12-0.65 365.45-0.15 364.77 0.35 364.07 0.35L364.07 0.35Q363.22 0.35 362.67-0.08 362.12-0.5 361.52-1.3L361.52-1.3ZM343.42-1.6L343.42-12.6 347.52-12.6 347.52-0.1Q347.22 0 346.72 0.13 346.22 0.25 345.62 0.25L345.62 0.25Q344.52 0.25 343.97-0.2 343.42-0.65 343.42-1.6L343.42-1.6ZM372.87-2.2L372.87-18.3 376.92-18.3 376.92-0.4Q376.72-0.35 376.17-0.18 375.62 0 375.07 0L375.07 0Q374.07 0 373.47-0.63 372.87-1.25 372.87-2.2L372.87-2.2ZM376.92-30L376.92-12.4 372.87-12.45 372.87-28.2Q372.87-29.2 373.47-29.8 374.07-30.4 375.07-30.4L375.07-30.4Q375.62-30.4 376.17-30.25 376.72-30.1 376.92-30L376.92-30ZM389.02-13.9L375.07-13.9 375.07-17.3 390.12-17.3Q390.27-17.1 390.42-16.65 390.57-16.2 390.57-15.7L390.57-15.7Q390.57-14.9 390.17-14.4 389.77-13.9 389.02-13.9L389.02-13.9ZM390.82 0L375.07 0 375.07-3.4 391.92-3.4Q392.07-3.2 392.22-2.78 392.37-2.35 392.37-1.8L392.37-1.8Q392.37-1 391.97-0.5 391.57 0 390.82 0L390.82 0ZM390.57-26.95L375.07-26.95 375.07-30.4 391.67-30.4Q391.82-30.2 391.97-29.75 392.12-29.3 392.12-28.8L392.12-28.8Q392.12-28 391.72-27.48 391.32-26.95 390.57-26.95L390.57-26.95Z"/>
|
|
8
|
+
</svg>
|
|
9
|
+
</g>
|
|
10
|
+
</svg>
|
|
11
|
+
</g>
|
|
12
|
+
<g transform="matrix(1,0,0,1,448,0)">
|
|
13
|
+
<svg viewBox="0 0 64 64" width="64" height="64">
|
|
14
|
+
<g>
|
|
15
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="15.509999999999998 5 64.98000000000002 90">
|
|
16
|
+
<path fill="#000000" d="M49.948 5c-9.011 0-17.417 3.197-23.667 9.004-7.046 6.548-10.771 15.858-10.771 26.922 0 19.274 31.807 52.126 33.161 53.515 0.347 0.356 0.823 0.557 1.32 0.559h0.005c0.496 0 0.971-0.199 1.318-0.552 1.355-1.374 33.176-33.866 33.176-53.522C84.49 17.341 67.115 5 49.948 5m0.056 85.466c-6.047-6.46-30.79-33.85-30.79-49.54 0-10.008 3.317-18.379 9.588-24.208 5.563-5.168 13.073-8.015 21.146-8.015 14.853 0 30.839 10.084 30.839 32.223 0 16.003-24.725 43.133-30.783 49.54"/>
|
|
17
|
+
<path fill="#000000" d="M50 19.491c-10.019 0-18.171 8.152-18.171 18.171S39.981 55.833 50 55.833s18.171-8.152 18.171-18.171S60.019 19.491 50 19.491m0 32.638c-7.977 0-14.467-6.49-14.467-14.467S42.023 23.195 50 23.195c7.979 0 14.467 6.49 14.467 14.467S57.979 52.129 50 52.129"/>
|
|
18
|
+
</svg>
|
|
19
|
+
</g>
|
|
20
|
+
</svg>
|
|
21
|
+
</g>
|
|
22
|
+
</svg>
|