odaptos_design_system 2.0.5 → 2.0.7
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/LICENSE +20 -20
- package/README.md +112 -112
- package/dist/odaptos_design_system.cjs.development.js +35 -31
- package/dist/odaptos_design_system.cjs.development.js.map +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js.map +1 -1
- package/dist/odaptos_design_system.esm.js +36 -32
- package/dist/odaptos_design_system.esm.js.map +1 -1
- package/package.json +103 -103
- package/src/Atoms/Avatar/Avatar.module.scss +72 -72
- package/src/Atoms/Avatar/Avatar.tsx +43 -43
- package/src/Atoms/Badge/Badge.modules.scss +108 -108
- package/src/Atoms/Badge/Badge.tsx +109 -109
- package/src/Atoms/Box/Box.module.scss +12 -12
- package/src/Atoms/Box/Box.tsx +18 -18
- package/src/Atoms/Buttons/Button.modules.scss +266 -266
- package/src/Atoms/Buttons/Button.tsx +69 -69
- package/src/Atoms/Buttons/IconButton.modules.scss +195 -195
- package/src/Atoms/Buttons/IconButton.tsx +65 -65
- package/src/Atoms/Cards/Card.modules.scss +12 -12
- package/src/Atoms/Cards/Card.tsx +24 -24
- package/src/Atoms/Cards/CardButton.modules.scss +23 -23
- package/src/Atoms/Cards/CardButton.tsx +14 -14
- package/src/Atoms/Checkbox/Checkbox.module.scss +5 -5
- package/src/Atoms/Checkbox/Checkbox.tsx +121 -121
- package/src/Atoms/ColorPicker/ColorPicker.modules.scss +46 -46
- package/src/Atoms/ColorPicker/ColorPicker.tsx +35 -35
- package/src/Atoms/DataProtectionDisclaimer/DataProtectionDisclaimer.tsx +23 -23
- package/src/Atoms/DataProtectionDisclaimer/data-protection-disclaimer.module.scss +14 -14
- package/src/Atoms/NumbersCode/NumbersCode.modules.scss +4 -4
- package/src/Atoms/NumbersCode/NumbersCode.tsx +224 -224
- package/src/Atoms/PopoverBeta/PopoverBeta.tsx +107 -107
- package/src/Atoms/QuestionButton/QuestionButton.module.scss +29 -29
- package/src/Atoms/QuestionButton/QuestionButton.tsx +26 -26
- package/src/Atoms/Radio/Radio.module.scss +9 -9
- package/src/Atoms/Radio/Radio.tsx +89 -89
- package/src/Atoms/Search/Search.tsx +32 -32
- package/src/Atoms/SquareText/SquareText.module.scss +7 -7
- package/src/Atoms/SquareText/SquareText.tsx +19 -19
- package/src/Atoms/Switch/Switch.module.scss +14 -14
- package/src/Atoms/Switch/Switch.tsx +64 -64
- package/src/Atoms/Tag/Tag.modules.scss +86 -86
- package/src/Atoms/Tag/Tag.tsx +134 -134
- package/src/Atoms/TimeInterval/TimeInterval.module.scss +5 -5
- package/src/Atoms/TimeInterval/TimeInterval.tsx +52 -52
- package/src/Atoms/Tooltip/Layout/TooltipCustomLayout.module.scss +54 -54
- package/src/Atoms/Tooltip/Layout/TooltipCustomLayout.tsx +140 -140
- package/src/Atoms/Tooltip/Tooltip.tsx +184 -184
- package/src/Atoms/Typography/Caption.modules.scss +17 -17
- package/src/Atoms/Typography/Caption.tsx +33 -33
- package/src/Atoms/Typography/Link.modules.scss +140 -140
- package/src/Atoms/Typography/Link.tsx +73 -73
- package/src/Atoms/Typography/Text.modules.scss +277 -277
- package/src/Atoms/Typography/Text.tsx +69 -69
- package/src/Atoms/Typography/TextForButton.modules.scss +29 -29
- package/src/Atoms/Typography/TextForButton.tsx +41 -41
- package/src/Atoms/Typography/TextForDropDownItem.modules.scss +31 -31
- package/src/Atoms/Typography/TextForDropDownItem.tsx +42 -42
- package/src/Atoms/Typography/TextWithLink.modules.scss +281 -281
- package/src/Atoms/Typography/TextWithLink.tsx +73 -73
- package/src/Atoms/Typography/Title.modules.scss +82 -82
- package/src/Atoms/Typography/Title.tsx +148 -148
- package/src/DesignTokens/ColorGuide/colors.ts +99 -99
- package/src/DesignTokens/Icons/Arrows/ArrowDoubleLineDownIcon.tsx +52 -52
- package/src/DesignTokens/Icons/Arrows/ArrowDoubleLineLeftIcon.tsx +52 -52
- package/src/DesignTokens/Icons/Arrows/ArrowDoubleLineRightIcon.tsx +52 -52
- package/src/DesignTokens/Icons/Arrows/ArrowDoubleLineUpIcon.tsx +52 -52
- package/src/DesignTokens/Icons/Arrows/ArrowFilledDownIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Arrows/ArrowFilledLeftIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Arrows/ArrowFilledRightIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Arrows/ArrowFilledUpIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Arrows/ArrowLineDownIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Arrows/ArrowLineLeftIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Arrows/ArrowLineRightIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Arrows/ArrowLineUpIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Arrows/ArrowPointerDown.tsx +52 -52
- package/src/DesignTokens/Icons/Arrows/ArrowPointerDownLeft.tsx +45 -45
- package/src/DesignTokens/Icons/Arrows/ArrowPointerDownRight.tsx +45 -45
- package/src/DesignTokens/Icons/Arrows/ArrowPointerLeft.tsx +52 -52
- package/src/DesignTokens/Icons/Arrows/ArrowPointerRight.tsx +52 -52
- package/src/DesignTokens/Icons/Arrows/ArrowPointerUp.tsx +52 -52
- package/src/DesignTokens/Icons/Arrows/ArrowPointerUpLeft.tsx +45 -45
- package/src/DesignTokens/Icons/Arrows/ArrowPointerUpRight.tsx +45 -45
- package/src/DesignTokens/Icons/Circled/AddCircledIcon.tsx +51 -51
- package/src/DesignTokens/Icons/Circled/AlertCircledIcon.tsx +64 -64
- package/src/DesignTokens/Icons/Circled/CheckedCircled.tsx +52 -52
- package/src/DesignTokens/Icons/Circled/InfoCircledIcon.tsx +64 -64
- package/src/DesignTokens/Icons/Circled/MinusCircledIcon.tsx +52 -52
- package/src/DesignTokens/Icons/Circled/NavigationCircledIcon.tsx +58 -58
- package/src/DesignTokens/Icons/Circled/QuestionCircledIcon.tsx +57 -57
- package/src/DesignTokens/Icons/Circled/RemoveCircledIcon.tsx +51 -51
- package/src/DesignTokens/Icons/Circled/SearchCircledIcon.tsx +58 -58
- package/src/DesignTokens/Icons/Circled/SettingsCircledIcon.tsx +51 -51
- package/src/DesignTokens/Icons/Equipment/CameraIcon.tsx +45 -45
- package/src/DesignTokens/Icons/Equipment/LaptopIcon.tsx +74 -74
- package/src/DesignTokens/Icons/Equipment/MicrophonePodcastIcon.tsx +38 -38
- package/src/DesignTokens/Icons/Equipment/MobileIcon.tsx +81 -81
- package/src/DesignTokens/Icons/Equipment/TvFlatScreenIcon.tsx +75 -75
- package/src/DesignTokens/Icons/Equipment/TvIcon.tsx +51 -51
- package/src/DesignTokens/Icons/Illustrations/AI_UserTest.tsx +544 -544
- package/src/DesignTokens/Icons/Illustrations/AngryIntervieweeFemale.tsx +163 -163
- package/src/DesignTokens/Icons/Illustrations/Blog.tsx +124 -124
- package/src/DesignTokens/Icons/Illustrations/EmotionsHeatMap.tsx +113 -113
- package/src/DesignTokens/Icons/Illustrations/Faq.tsx +74 -74
- package/src/DesignTokens/Icons/Illustrations/HappyMen.tsx +254 -254
- package/src/DesignTokens/Icons/Illustrations/IntegratedUsabilityScore.tsx +101 -101
- package/src/DesignTokens/Icons/Illustrations/InterviewTranscript.tsx +162 -162
- package/src/DesignTokens/Icons/Illustrations/InterviewTranscriptGreen.tsx +162 -162
- package/src/DesignTokens/Icons/Illustrations/MenShowingSomething.tsx +141 -141
- package/src/DesignTokens/Icons/Illustrations/MetaAnalyse.tsx +112 -112
- package/src/DesignTokens/Icons/Illustrations/MetaAnalyse2.tsx +74 -74
- package/src/DesignTokens/Icons/Illustrations/Non_Moderated.tsx +86 -86
- package/src/DesignTokens/Icons/Illustrations/OdaAccountPro.tsx +204 -204
- package/src/DesignTokens/Icons/Illustrations/OdaWaiting.tsx +339 -339
- package/src/DesignTokens/Icons/Illustrations/ScheduleTasks.tsx +118 -118
- package/src/DesignTokens/Icons/Illustrations/Sentiment.tsx +112 -112
- package/src/DesignTokens/Icons/Illustrations/Success.tsx +228 -228
- package/src/DesignTokens/Icons/Illustrations/UsabilityBrowser.tsx +127 -127
- package/src/DesignTokens/Icons/Illustrations/UserFlows.tsx +133 -133
- package/src/DesignTokens/Icons/Illustrations/UserPanel.tsx +127 -127
- package/src/DesignTokens/Icons/Illustrations/UxGuide.tsx +151 -151
- package/src/DesignTokens/Icons/Illustrations/VideoFlag.tsx +67 -67
- package/src/DesignTokens/Icons/Illustrations/VideoFlag2.tsx +69 -69
- package/src/DesignTokens/Icons/Illustrations/VideoFlagGreen.tsx +69 -69
- package/src/DesignTokens/Icons/Illustrations/WaitingMen.tsx +249 -249
- package/src/DesignTokens/Icons/Interaction/AccountIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Interaction/AddIcon.tsx +51 -51
- package/src/DesignTokens/Icons/Interaction/AddTagIcon.tsx +47 -47
- package/src/DesignTokens/Icons/Interaction/AgendaIcon.tsx +76 -76
- package/src/DesignTokens/Icons/Interaction/BillingIcon.tsx +75 -75
- package/src/DesignTokens/Icons/Interaction/BinIcon.tsx +73 -73
- package/src/DesignTokens/Icons/Interaction/CheckedIcon.tsx +38 -38
- package/src/DesignTokens/Icons/Interaction/ClockIcon.tsx +58 -58
- package/src/DesignTokens/Icons/Interaction/CloseIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Interaction/CogIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Interaction/CopyPasteIcon.tsx +83 -83
- package/src/DesignTokens/Icons/Interaction/DragDropIcon.tsx +42 -42
- package/src/DesignTokens/Icons/Interaction/EditIcon.tsx +56 -56
- package/src/DesignTokens/Icons/Interaction/EditTextIcon.tsx +64 -64
- package/src/DesignTokens/Icons/Interaction/FilterIcon.tsx +49 -49
- package/src/DesignTokens/Icons/Interaction/LayoutIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Interaction/LayoutLeftIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Interaction/LayoutRightIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Interaction/LockIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Interaction/LogoutIcon.tsx +58 -58
- package/src/DesignTokens/Icons/Interaction/MenuHorizontalIcon.tsx +36 -36
- package/src/DesignTokens/Icons/Interaction/MenuVerticalIcon.tsx +57 -57
- package/src/DesignTokens/Icons/Interaction/MinusIcon.tsx +34 -34
- package/src/DesignTokens/Icons/Interaction/PencilWriteIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Interaction/SearchIcon.tsx +52 -52
- package/src/DesignTokens/Icons/Interaction/SearchRemoveIcon.tsx +63 -63
- package/src/DesignTokens/Icons/Interaction/SettingsSliderIcon.tsx +45 -45
- package/src/DesignTokens/Icons/Interaction/ShareIcon.tsx +62 -62
- package/src/DesignTokens/Icons/Interaction/SortingIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Interaction/TagAddIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Interaction/TagEditIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Interaction/TagRemoveIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Interaction/TeamIcon.tsx +76 -76
- package/src/DesignTokens/Icons/Interaction/UnLockIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Interaction/UndoIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Interaction/UnlockedIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Logos/LogoBeta.tsx +52 -52
- package/src/DesignTokens/Icons/Logos/LogoNormal.tsx +38 -38
- package/src/DesignTokens/Icons/Logos/LogoSmall.tsx +32 -32
- package/src/DesignTokens/Icons/Logos/LogoSquare.tsx +72 -72
- package/src/DesignTokens/Icons/Logos/LogoText.tsx +32 -32
- package/src/DesignTokens/Icons/Logos/LogoWhite.tsx +38 -38
- package/src/DesignTokens/Icons/MediaControl/CutClipIcon.tsx +39 -39
- package/src/DesignTokens/Icons/MediaControl/HangUpIcon.tsx +58 -58
- package/src/DesignTokens/Icons/MediaControl/MeetingIcon.tsx +45 -45
- package/src/DesignTokens/Icons/MediaControl/MicrophoneIcon.tsx +51 -51
- package/src/DesignTokens/Icons/MediaControl/MoveBackIcon.tsx +32 -32
- package/src/DesignTokens/Icons/MediaControl/MoveInIcon.tsx +59 -59
- package/src/DesignTokens/Icons/MediaControl/MuteIcon.tsx +51 -51
- package/src/DesignTokens/Icons/MediaControl/NoCameraIcon.tsx +54 -54
- package/src/DesignTokens/Icons/MediaControl/NoMicrophoneIcon.tsx +46 -46
- package/src/DesignTokens/Icons/MediaControl/PauseIcon.tsx +45 -45
- package/src/DesignTokens/Icons/MediaControl/PlayIcon.tsx +39 -39
- package/src/DesignTokens/Icons/MediaControl/PreviousIcon.tsx +49 -49
- package/src/DesignTokens/Icons/MediaControl/RecordIcon.tsx +40 -40
- package/src/DesignTokens/Icons/MediaControl/RecordingIcon.tsx +82 -82
- package/src/DesignTokens/Icons/MediaControl/StopRecordIcon.tsx +38 -38
- package/src/DesignTokens/Icons/MediaControl/TagIcon.tsx +46 -46
- package/src/DesignTokens/Icons/MediaControl/VolumeIcon.tsx +57 -57
- package/src/DesignTokens/Icons/Miscellaneous/AddSeatIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Miscellaneous/AddUsersIcon.tsx +69 -69
- package/src/DesignTokens/Icons/Miscellaneous/AnonymizeIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Miscellaneous/AppWindowPieIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Miscellaneous/ArchiveIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Miscellaneous/BillPdfIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Miscellaneous/BinocularIcon.tsx +38 -38
- package/src/DesignTokens/Icons/Miscellaneous/BookFlipPageIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Miscellaneous/BrainIcon.tsx +105 -105
- package/src/DesignTokens/Icons/Miscellaneous/BulbIcon.tsx +45 -45
- package/src/DesignTokens/Icons/Miscellaneous/CalendarIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Miscellaneous/ChatBubbleIcon.tsx +68 -68
- package/src/DesignTokens/Icons/Miscellaneous/ChatIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Miscellaneous/CheckoutIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Miscellaneous/ClipIcon.tsx +57 -57
- package/src/DesignTokens/Icons/Miscellaneous/ContentPenWriteIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Miscellaneous/CreditCardIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Miscellaneous/DownloadIcon.tsx +78 -78
- package/src/DesignTokens/Icons/Miscellaneous/EarthIcon.tsx +58 -58
- package/src/DesignTokens/Icons/Miscellaneous/FaceCenterIcon.tsx +42 -42
- package/src/DesignTokens/Icons/Miscellaneous/FaceRecognitionIcon.tsx +88 -88
- package/src/DesignTokens/Icons/Miscellaneous/FileUploadIcon.tsx +65 -65
- package/src/DesignTokens/Icons/Miscellaneous/FilesIcon.tsx +51 -51
- package/src/DesignTokens/Icons/Miscellaneous/FillRecordIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Miscellaneous/FilledTaskIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Miscellaneous/FlashIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Miscellaneous/FolderIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Miscellaneous/GoogleIcon.tsx +67 -67
- package/src/DesignTokens/Icons/Miscellaneous/GroupIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Miscellaneous/HardDriveIcon.tsx +58 -58
- package/src/DesignTokens/Icons/Miscellaneous/HelpIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Miscellaneous/HelpIconAlt.tsx +33 -33
- package/src/DesignTokens/Icons/Miscellaneous/LanguageIcon.tsx +34 -34
- package/src/DesignTokens/Icons/Miscellaneous/LinkIcon.tsx +42 -42
- package/src/DesignTokens/Icons/Miscellaneous/ListToDoIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Miscellaneous/MessagesBubbleSquareQuestionIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Miscellaneous/MetaAnalyseIcon.tsx +74 -74
- package/src/DesignTokens/Icons/Miscellaneous/ModeratedIcon.tsx +88 -88
- package/src/DesignTokens/Icons/Miscellaneous/MultipleUsersIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Miscellaneous/NbOfUsersIcon.tsx +64 -64
- package/src/DesignTokens/Icons/Miscellaneous/NeutralBackgroudIcon.tsx +42 -42
- package/src/DesignTokens/Icons/Miscellaneous/OfficeDrawerIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Miscellaneous/OneColumnIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Miscellaneous/RefreshIcon.tsx +54 -54
- package/src/DesignTokens/Icons/Miscellaneous/ReportIcon.tsx +70 -70
- package/src/DesignTokens/Icons/Miscellaneous/SeatIcon.tsx +36 -36
- package/src/DesignTokens/Icons/Miscellaneous/SendEmailIcon.tsx +51 -51
- package/src/DesignTokens/Icons/Miscellaneous/SendIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Miscellaneous/SmartBrainIcon.tsx +52 -52
- package/src/DesignTokens/Icons/Miscellaneous/StarIcon.tsx +44 -44
- package/src/DesignTokens/Icons/Miscellaneous/TaskIcon.tsx +64 -64
- package/src/DesignTokens/Icons/Miscellaneous/TestDetailsIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Miscellaneous/TestIcon.tsx +47 -47
- package/src/DesignTokens/Icons/Miscellaneous/ThreeColumnIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Miscellaneous/TwoColumnIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Miscellaneous/UnmoderatedIcon.tsx +63 -63
- package/src/DesignTokens/Icons/Miscellaneous/ViewIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Miscellaneous/ViewOffIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Miscellaneous/VoiceIcon.tsx +47 -47
- package/src/DesignTokens/Icons/Notifications/AlamBellIdleIcon.tsx +50 -50
- package/src/DesignTokens/Icons/Notifications/AlarmBellStatusIcon.tsx +56 -56
- package/src/DesignTokens/Icons/Notifications/ConversationIdleIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Notifications/ConversationStatusIcon.tsx +54 -54
- package/src/DesignTokens/Icons/Notifications/NotifAlertIcon.tsx +41 -41
- package/src/DesignTokens/Icons/Other/DashedArrowSvg.tsx +38 -38
- package/src/DesignTokens/Icons/Other/ProjectHoverSvg.tsx +52 -52
- package/src/DesignTokens/Icons/Other/ProjectSvg.tsx +40 -40
- package/src/DesignTokens/Icons/Partners/Partner1.tsx +165 -165
- package/src/DesignTokens/Icons/Partners/Partner2.tsx +94 -94
- package/src/DesignTokens/Icons/Partners/Partner3.tsx +47 -47
- package/src/DesignTokens/Icons/Partners/Partner4.tsx +199 -199
- package/src/DesignTokens/Icons/Partners/Partner5.tsx +79 -79
- package/src/DesignTokens/Icons/Partners/Partner6.tsx +39 -39
- package/src/DesignTokens/Icons/Partners/Partner7.tsx +45 -45
- package/src/DesignTokens/Icons/Partners/Partner8.tsx +37 -37
- package/src/DesignTokens/Icons/Partners/Partner9.tsx +63 -63
- package/src/DesignTokens/Icons/index.ts +197 -197
- package/src/Molecules/Accordion/Accordion.modules.scss +41 -41
- package/src/Molecules/Accordion/Accordion.tsx +49 -49
- package/src/Molecules/ChatMessage/ChatMessage.module.scss +161 -161
- package/src/Molecules/ChatMessage/ChatMessage.tsx +110 -110
- package/src/Molecules/FeaturesTable/FeaturesTable.module.scss +212 -212
- package/src/Molecules/FeaturesTable/FeaturesTable.tsx +35 -35
- package/src/Molecules/FeaturesTable/components/TableBody/TableBody.tsx +54 -54
- package/src/Molecules/FeaturesTable/components/TableBody/components/FeatureGroup.tsx +36 -36
- package/src/Molecules/FeaturesTable/components/TableBody/components/FeatureRow.tsx +64 -64
- package/src/Molecules/FeaturesTable/components/TableBody/components/RowCell.tsx +29 -29
- package/src/Molecules/FeaturesTable/components/TableBody/components/SectionTitleRow.tsx +16 -16
- package/src/Molecules/FeaturesTable/components/TableHeader/TableHeader.tsx +37 -37
- package/src/Molecules/FeaturesTable/components/TableHeader/components/HeaderCell.tsx +69 -69
- package/src/Molecules/Interviews/Chat.modules.scss +221 -221
- package/src/Molecules/Interviews/Chat.tsx +374 -374
- package/src/Molecules/Interviews/ChatInput.modules.scss +33 -33
- package/src/Molecules/Interviews/ChatInput.tsx +42 -42
- package/src/Molecules/Interviews/CircleIconButton.modules.scss +51 -51
- package/src/Molecules/Interviews/CircledIconButton.tsx +37 -37
- package/src/Molecules/Interviews/ControlsBar.modules.scss +62 -62
- package/src/Molecules/Interviews/ControlsBar.tsx +247 -246
- package/src/Molecules/Interviews/EndRecording.module.scss +20 -20
- package/src/Molecules/Interviews/EndRecording.tsx +31 -31
- package/src/Molecules/Interviews/InterviewButton.modules.scss +112 -112
- package/src/Molecules/Interviews/InterviewButton.tsx +54 -54
- package/src/Molecules/Interviews/MarkUpBar.modules.scss +36 -36
- package/src/Molecules/Interviews/MarkUpBar.tsx +67 -67
- package/src/Molecules/Interviews/Scenario.modules.scss +21 -21
- package/src/Molecules/Interviews/Scenario.tsx +53 -53
- package/src/Molecules/Interviews/SusExplanation.module.scss +11 -11
- package/src/Molecules/Interviews/SusExplanation.tsx +17 -17
- package/src/Molecules/Interviews/Task.modules.scss +294 -294
- package/src/Molecules/Interviews/Task.tsx +258 -258
- package/src/Molecules/Interviews/WelcomeMessage.modules.scss +28 -28
- package/src/Molecules/Interviews/WelcomeMessage.tsx +33 -33
- package/src/Molecules/LogoSlider/LogoSlider.module.scss +6 -6
- package/src/Molecules/LogoSlider/LogoSlider.tsx +55 -55
- package/src/Molecules/Notifications/Banner.modules.scss +160 -160
- package/src/Molecules/Notifications/Banner.tsx +134 -134
- package/src/Molecules/Notifications/NotificationIcon.tsx +26 -26
- package/src/Molecules/Notifications/Toast.modules.scss +87 -87
- package/src/Molecules/Notifications/Toast.tsx +90 -90
- package/src/Molecules/PricingCard/PricingCard.module.scss +120 -120
- package/src/Molecules/PricingCard/PricingCard.tsx +284 -284
- package/src/Molecules/StarRating/StarRating.module.scss +24 -24
- package/src/Molecules/StarRating/StarRating.tsx +71 -71
- package/src/Molecules/Tabs/Tabs.tsx +83 -83
- package/src/Molecules/Tabs/TabsUnderLine.tsx +200 -199
- package/src/Molecules/Tabs/tabs.modules.scss +60 -60
- package/src/Molecules/Tabs/tabsUnderline.modules.scss +63 -63
- package/src/Molecules/Thematic/Thematic.modules.scss +121 -121
- package/src/Molecules/Thematic/Thematic.tsx +458 -458
- package/src/Molecules/ToggleTab/ToggleTab.module.scss +37 -37
- package/src/Molecules/ToggleTab/ToggleTab.tsx +118 -118
- package/src/Molecules/UserIndicator/UserIndicator.module.scss +16 -16
- package/src/Molecules/UserIndicator/UserIndicator.tsx +58 -58
- package/src/Organisms/DatePicker/DatePicker.modules.scss +68 -68
- package/src/Organisms/DatePicker/DatePicker.tsx +268 -268
- package/src/Organisms/FormQuestions/FormQuestions.module.scss +52 -52
- package/src/Organisms/FormQuestions/FormQuestions.tsx +78 -78
- package/src/Organisms/Modal/Modal.modules.scss +66 -66
- package/src/Organisms/Modal/Modal.tsx +163 -163
- package/src/Organisms/MultiSelect/MultiSelect.modules.scss +78 -78
- package/src/Organisms/MultiSelect/MultiSelect.tsx +303 -303
- package/src/Organisms/MultiSelect/MultiSelectWithCategories.modules.scss +78 -78
- package/src/Organisms/MultiSelect/MultiSelectWithCategories.tsx +325 -325
- package/src/Organisms/NumberField/NumberField.module.scss +60 -60
- package/src/Organisms/NumberField/NumberField.tsx +244 -244
- package/src/Organisms/PasswordField/PasswordField.module.scss +55 -55
- package/src/Organisms/PasswordField/PasswordField.tsx +231 -231
- package/src/Organisms/RatingScale/RatingScale.module.scss +26 -26
- package/src/Organisms/RatingScale/RatingScale.tsx +104 -104
- package/src/Organisms/SingleSelect/SingleSelect.modules.scss +64 -64
- package/src/Organisms/SingleSelect/SingleSelect.tsx +271 -271
- package/src/Organisms/Table/Table.modules.scss +6 -6
- package/src/Organisms/Table/TableFooter.modules.scss +56 -56
- package/src/Organisms/Table/TableFooter.tsx +43 -43
- package/src/Organisms/Table/header.modules.scss +24 -24
- package/src/Organisms/Table/header.tsx +80 -80
- package/src/Organisms/Table/index.tsx +79 -79
- package/src/Organisms/Table/rows.modules.scss +37 -37
- package/src/Organisms/Table/rows.tsx +86 -86
- package/src/Organisms/Table/table-cell.modules.scss +13 -13
- package/src/Organisms/Table/table-cell.tsx +40 -40
- package/src/Organisms/TextInput/TextInput.modules.scss +55 -55
- package/src/Organisms/TextInput/TextInput.tsx +222 -222
- package/src/Organisms/Textarea/Textarea.module.scss +19 -19
- package/src/Organisms/Textarea/Textarea.tsx +97 -97
- package/src/Organisms/TimePicker/TimePicker.modules.scss +67 -67
- package/src/Organisms/TimePicker/TimePicker.tsx +242 -242
- package/src/__mocks__/PricingPageData/pricingPageMockedData.js +2120 -2120
- package/src/hooks/useClickOutside.ts +30 -30
- package/src/index.ts +74 -74
- package/src/utils/changeColorLuminance.ts +22 -22
- package/src/utils/getIconSize.ts +7 -7
- package/src/utils/getReadableTextColor.ts +36 -36
|
@@ -1,544 +1,544 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { SvgIcon, SvgIconProps } from '@mui/material';
|
|
3
|
-
|
|
4
|
-
export default function AI_UserTest({
|
|
5
|
-
stroke,
|
|
6
|
-
strokeWidth,
|
|
7
|
-
fill,
|
|
8
|
-
...rest
|
|
9
|
-
}: SvgIconProps) {
|
|
10
|
-
return (
|
|
11
|
-
<SvgIcon
|
|
12
|
-
strokeWidth={strokeWidth ?? 0.1}
|
|
13
|
-
stroke={stroke ? stroke : 'currentColor'}
|
|
14
|
-
{...rest}
|
|
15
|
-
>
|
|
16
|
-
<svg
|
|
17
|
-
width="688"
|
|
18
|
-
height="549"
|
|
19
|
-
viewBox="0 0 688 549"
|
|
20
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
21
|
-
>
|
|
22
|
-
<path
|
|
23
|
-
d="M163.573 312.212C155.834 288.825 150.189 272.837 147.355 247.285C146.738 241.714 146.639 235.606 150.655 231.696C154.976 227.489 160.294 225.355 180.11 225.736"
|
|
24
|
-
stroke="#004799"
|
|
25
|
-
strokeWidth="4.575"
|
|
26
|
-
strokeLinecap="round"
|
|
27
|
-
strokeLinejoin="round"
|
|
28
|
-
/>
|
|
29
|
-
<path
|
|
30
|
-
d="M247.21 87.8531C247.226 86.9326 247.243 86.0115 247.256 85.0882C247.302 81.7162 247.241 78.9565 249.558 76.7552C251.589 74.8258 254.191 74.435 256.672 74.213C263.665 73.5872 270.633 74.3104 277.583 74.079C283.878 73.8693 289.899 74.0009 296.132 74.5888C298.134 74.7776 300.201 75.1427 301.907 76.5631C306.241 80.1722 304.409 90.3295 303.571 95.8529C302.713 101.501 300.524 104.48 296.107 104.519C281.97 104.645 267.962 105.02 253.817 105.04C252.2 105.042 250.499 105.017 249.09 103.945C246.821 102.219 247.184 98.5312 247.148 95.5382C247.117 92.9567 247.164 90.407 247.21 87.8531Z"
|
|
31
|
-
fill="#D5DFE8"
|
|
32
|
-
stroke="#D5DFE8"
|
|
33
|
-
strokeWidth="4.575"
|
|
34
|
-
strokeLinecap="round"
|
|
35
|
-
strokeLinejoin="round"
|
|
36
|
-
/>
|
|
37
|
-
<path
|
|
38
|
-
d="M174.538 304.916C174.502 307.355 174.842 309.832 175.513 312.212C192.114 311.282 208.461 310.542 227.07 309.811C226.574 303.912 226.886 297.477 231.427 293.956C234.916 291.251 239.732 291.527 244.147 291.476C265.76 291.226 282.765 291.226 304.379 291.476C308.793 291.527 313.61 291.251 317.099 293.956C318.885 295.341 320.012 297.179 320.697 299.256L331.569 268.985C339.557 242.075 330.415 211.046 309.586 192.228C288.758 173.41 257.417 167.39 230.854 176.466C204.292 185.542 183.362 209.085 176.737 236.362C172.689 253.032 173.958 270.779 179.7 286.945C176.716 292.566 174.632 298.601 174.538 304.916Z"
|
|
39
|
-
fill="url(#paint0_linear_9_179)"
|
|
40
|
-
/>
|
|
41
|
-
<path
|
|
42
|
-
d="M305.818 239.66C304.85 237.831 306.092 235.46 307.91 234.471C309.728 233.482 311.905 233.501 313.974 233.545C319.615 233.665 325.255 233.785 330.896 233.905C332.923 233.948 335.06 234.021 336.787 235.084C338.515 236.146 339.583 238.564 338.487 240.271"
|
|
43
|
-
fill="white"
|
|
44
|
-
/>
|
|
45
|
-
<path
|
|
46
|
-
d="M305.818 239.66C304.85 237.831 306.092 235.46 307.91 234.471C309.728 233.482 311.905 233.501 313.974 233.545C319.615 233.665 325.255 233.785 330.896 233.905C332.923 233.948 335.06 234.021 336.787 235.084C338.515 236.146 339.583 238.564 338.487 240.271"
|
|
47
|
-
stroke="#004799"
|
|
48
|
-
strokeWidth="4.575"
|
|
49
|
-
strokeLinecap="round"
|
|
50
|
-
strokeLinejoin="round"
|
|
51
|
-
/>
|
|
52
|
-
<path
|
|
53
|
-
d="M287.779 249.662C282.927 243.619 274.337 243.258 266.175 245.612C258.013 247.965 251.137 253.378 244.491 258.669C229.854 270.324 215.217 281.978 200.579 293.632"
|
|
54
|
-
stroke="#004799"
|
|
55
|
-
strokeWidth="4.575"
|
|
56
|
-
strokeLinecap="round"
|
|
57
|
-
strokeLinejoin="round"
|
|
58
|
-
/>
|
|
59
|
-
<path
|
|
60
|
-
d="M203.074 288.334C204.216 288.412 205.358 288.489 206.5 288.566"
|
|
61
|
-
stroke="#004799"
|
|
62
|
-
strokeWidth="4.575"
|
|
63
|
-
strokeLinecap="round"
|
|
64
|
-
strokeLinejoin="round"
|
|
65
|
-
/>
|
|
66
|
-
<path
|
|
67
|
-
d="M253.622 251.796L236.79 235.397C239.062 232.526 242.945 228.864 246.743 228.395C252.848 233.775 259.93 239.762 265.286 245.889"
|
|
68
|
-
stroke="#004799"
|
|
69
|
-
strokeWidth="4.575"
|
|
70
|
-
strokeLinecap="round"
|
|
71
|
-
strokeLinejoin="round"
|
|
72
|
-
/>
|
|
73
|
-
<path
|
|
74
|
-
d="M275.152 252.624C279.035 252.558 282.922 254.075 285.733 256.754"
|
|
75
|
-
stroke="#004799"
|
|
76
|
-
strokeWidth="4.575"
|
|
77
|
-
strokeLinecap="round"
|
|
78
|
-
strokeLinejoin="round"
|
|
79
|
-
/>
|
|
80
|
-
<path
|
|
81
|
-
d="M277.046 261.493C279.14 261.895 281.173 262.621 283.048 263.637"
|
|
82
|
-
stroke="#004799"
|
|
83
|
-
strokeWidth="4.575"
|
|
84
|
-
strokeLinecap="round"
|
|
85
|
-
strokeLinejoin="round"
|
|
86
|
-
/>
|
|
87
|
-
<path
|
|
88
|
-
d="M349.134 274.5C351.566 266.558 353.728 259.496 356.16 251.554C356.801 249.461 357.44 247.189 356.699 245.13C355.854 242.783 353.361 241.35 350.887 241.034C348.65 240.749 331.045 240.229 326.54 240.084C317.68 239.8 308.815 239.589 299.949 239.574C297.427 239.569 294.752 239.637 292.631 241.001C290.303 242.499 289.131 245.246 288.319 247.893C284.011 261.941 275.741 290.592 275.741 290.592C287.884 290.592 299.955 290.878 312.069 291.703C313.905 291.828 315.785 291.976 317.456 292.745C319.701 293.776 321.339 295.841 322.353 298.093C323.367 300.345 323.827 302.801 324.279 305.229C325.708 305.298 327.137 305.367 328.566 305.436C326.402 298.946 327.272 291.514 330.875 285.699C334.478 279.884 342.36 275.452 349.134 274.5Z"
|
|
89
|
-
fill="#D5DFE8"
|
|
90
|
-
stroke="#D5DFE8"
|
|
91
|
-
strokeWidth="4.575"
|
|
92
|
-
strokeLinecap="round"
|
|
93
|
-
strokeLinejoin="round"
|
|
94
|
-
/>
|
|
95
|
-
<path
|
|
96
|
-
d="M405.43 319.116C404.245 320.391 402.948 321.508 401.527 322.427C391.94 328.634 376.881 328.227 365.471 328.719C316.195 330.844 274.331 330.865 225.25 331.581C208.924 331.818 189.458 331.421 173.136 330.971C162.108 330.667 146.812 329.113 139.037 321.286C132.342 314.546 129.475 302.497 128.16 293.088C124.446 266.515 119.91 243.581 120.755 216.721C121.79 183.835 119.679 158.1 128.719 143.312C140.275 124.411 161.579 122.97 181.713 122.09C244.823 119.33 307.298 116.567 370.086 123.506C384.126 125.058 399.32 127.703 408.813 138.164C418.069 148.364 418.637 163.332 419.836 177.053C421.683 198.193 420.945 244.198 418.577 273.354"
|
|
97
|
-
stroke="#004799"
|
|
98
|
-
strokeWidth="4.575"
|
|
99
|
-
strokeLinecap="round"
|
|
100
|
-
strokeLinejoin="round"
|
|
101
|
-
/>
|
|
102
|
-
<path
|
|
103
|
-
d="M402.557 307.999C375.573 307.492 348.582 307.35 321.595 307.565C321.803 302.339 321.068 297.034 317.099 293.956C313.61 291.251 308.793 291.527 304.379 291.476C282.765 291.226 265.76 291.226 244.147 291.476C239.732 291.527 234.916 291.251 231.427 293.956C226.886 297.477 226.574 303.912 227.07 309.81C193.754 311.12 167.689 312.454 134.434 314.867"
|
|
104
|
-
stroke="#004799"
|
|
105
|
-
strokeWidth="4.575"
|
|
106
|
-
strokeLinecap="round"
|
|
107
|
-
strokeLinejoin="round"
|
|
108
|
-
/>
|
|
109
|
-
<path
|
|
110
|
-
d="M243.847 311.424C246.034 311.424 247.806 309.652 247.806 307.465C247.806 305.279 246.034 303.507 243.847 303.507C241.661 303.507 239.889 305.279 239.889 307.465C239.889 309.652 241.661 311.424 243.847 311.424Z"
|
|
111
|
-
stroke="#004799"
|
|
112
|
-
strokeWidth="4.575"
|
|
113
|
-
strokeLinecap="round"
|
|
114
|
-
strokeLinejoin="round"
|
|
115
|
-
/>
|
|
116
|
-
<path
|
|
117
|
-
d="M264.125 311.424C266.311 311.424 268.083 309.652 268.083 307.465C268.083 305.279 266.311 303.507 264.125 303.507C261.938 303.507 260.166 305.279 260.166 307.465C260.166 309.652 261.938 311.424 264.125 311.424Z"
|
|
118
|
-
stroke="#004799"
|
|
119
|
-
strokeWidth="4.575"
|
|
120
|
-
strokeLinecap="round"
|
|
121
|
-
strokeLinejoin="round"
|
|
122
|
-
/>
|
|
123
|
-
<path
|
|
124
|
-
d="M284.402 311.424C286.588 311.424 288.361 309.652 288.361 307.465C288.361 305.279 286.588 303.507 284.402 303.507C282.216 303.507 280.443 305.279 280.443 307.465C280.443 309.652 282.216 311.424 284.402 311.424Z"
|
|
125
|
-
stroke="#004799"
|
|
126
|
-
strokeWidth="4.575"
|
|
127
|
-
strokeLinecap="round"
|
|
128
|
-
strokeLinejoin="round"
|
|
129
|
-
/>
|
|
130
|
-
<path
|
|
131
|
-
d="M304.679 311.424C306.866 311.424 308.638 309.652 308.638 307.465C308.638 305.279 306.866 303.507 304.679 303.507C302.493 303.507 300.721 305.279 300.721 307.465C300.721 309.652 302.493 311.424 304.679 311.424Z"
|
|
132
|
-
stroke="#004799"
|
|
133
|
-
strokeWidth="4.575"
|
|
134
|
-
strokeLinecap="round"
|
|
135
|
-
strokeLinejoin="round"
|
|
136
|
-
/>
|
|
137
|
-
<path
|
|
138
|
-
d="M332.779 307.465C329.469 302.867 328.719 295.221 330.679 289.905C332.639 284.589 336.787 280.255 341.66 277.366C343.749 276.129 346.229 275.109 348.556 275.801C350.908 276.501 352.418 278.731 353.712 280.816C356.191 284.811 358.639 288.934 359.698 293.516C360.756 298.097 360.027 303.841 357.032 307.465"
|
|
139
|
-
stroke="#004799"
|
|
140
|
-
strokeWidth="4.575"
|
|
141
|
-
strokeLinecap="round"
|
|
142
|
-
strokeLinejoin="round"
|
|
143
|
-
/>
|
|
144
|
-
<path
|
|
145
|
-
d="M340.369 278.453C344.492 283.01 347.803 288.301 350.1 294.002"
|
|
146
|
-
stroke="#004799"
|
|
147
|
-
strokeWidth="4.575"
|
|
148
|
-
strokeLinecap="round"
|
|
149
|
-
strokeLinejoin="round"
|
|
150
|
-
/>
|
|
151
|
-
<path
|
|
152
|
-
d="M332.779 285.733C336.193 290.11 339.093 294.457 341.549 299.435"
|
|
153
|
-
stroke="#004799"
|
|
154
|
-
strokeWidth="4.575"
|
|
155
|
-
strokeLinecap="round"
|
|
156
|
-
strokeLinejoin="round"
|
|
157
|
-
/>
|
|
158
|
-
<path
|
|
159
|
-
d="M255.706 203.567L255.773 202.428"
|
|
160
|
-
stroke="#004799"
|
|
161
|
-
strokeWidth="4.575"
|
|
162
|
-
strokeLinecap="round"
|
|
163
|
-
strokeLinejoin="round"
|
|
164
|
-
/>
|
|
165
|
-
<path
|
|
166
|
-
d="M295.62 203.567L295.687 202.428"
|
|
167
|
-
stroke="#004799"
|
|
168
|
-
strokeWidth="4.575"
|
|
169
|
-
strokeLinecap="round"
|
|
170
|
-
strokeLinejoin="round"
|
|
171
|
-
/>
|
|
172
|
-
<path
|
|
173
|
-
d="M269.967 217.438C270.261 219.964 271.672 222.339 273.75 223.805C275.827 225.271 278.538 225.805 281.016 225.235"
|
|
174
|
-
stroke="#004799"
|
|
175
|
-
strokeWidth="4.575"
|
|
176
|
-
strokeLinecap="round"
|
|
177
|
-
strokeLinejoin="round"
|
|
178
|
-
/>
|
|
179
|
-
<path
|
|
180
|
-
d="M234.958 211.101C234.534 210.483 234.144 209.814 233.791 209.092C231.504 204.423 231.209 199.064 230.954 193.871C230.664 187.963 230.374 182.054 230.084 176.146C229.822 170.799 230.027 166.759 233.782 162.533C236.606 159.354 240.385 157.108 244.408 155.732C247.825 154.562 251.529 153.994 255.069 154.715C260.645 155.85 264.403 160.26 265.992 165.495C268.725 174.501 268.839 184.063 268.931 193.474C268.984 198.91 268.934 204.714 265.929 209.244C263.643 212.69 259.882 214.942 255.939 216.186C248.302 218.595 239.624 217.92 234.958 211.101Z"
|
|
181
|
-
stroke="#004799"
|
|
182
|
-
strokeWidth="4.575"
|
|
183
|
-
strokeLinecap="round"
|
|
184
|
-
strokeLinejoin="round"
|
|
185
|
-
/>
|
|
186
|
-
<path
|
|
187
|
-
d="M280.048 169.64C280.027 161.745 283.618 157.806 288.126 155.721C291.249 154.275 296.396 152.918 299.831 153.136C303.559 153.374 307.408 154.477 310.035 157.134C312.082 159.204 313.195 162.011 314.039 164.797C316.927 174.334 317.243 184.433 317.515 194.394C317.624 198.383 317.685 202.574 315.829 206.105C314.323 208.969 311.66 211.114 308.702 212.426C305.745 213.737 302.497 214.273 299.268 214.482C296.177 214.682 292.934 214.56 290.204 213.097C287.255 211.517 285.284 208.57 283.87 205.538C281.211 199.832 280.064 175.995 280.048 169.64Z"
|
|
188
|
-
stroke="#004799"
|
|
189
|
-
strokeWidth="4.575"
|
|
190
|
-
strokeLinecap="round"
|
|
191
|
-
strokeLinejoin="round"
|
|
192
|
-
/>
|
|
193
|
-
<path
|
|
194
|
-
d="M269.197 198.678C273.369 198.153 277.583 197.954 281.787 198.082"
|
|
195
|
-
stroke="#004799"
|
|
196
|
-
strokeWidth="4.575"
|
|
197
|
-
strokeLinecap="round"
|
|
198
|
-
strokeLinejoin="round"
|
|
199
|
-
/>
|
|
200
|
-
<path
|
|
201
|
-
d="M274.336 93.1276C268.821 91.7515 272.181 83.5065 277.362 85.5149C281.988 87.3088 279.893 93.7996 275.156 93.2724C274.863 93.2399 274.59 93.191 274.336 93.1276Z"
|
|
202
|
-
stroke="#004799"
|
|
203
|
-
strokeWidth="4.575"
|
|
204
|
-
strokeLinecap="round"
|
|
205
|
-
strokeLinejoin="round"
|
|
206
|
-
/>
|
|
207
|
-
<path
|
|
208
|
-
d="M65.4842 521.55H119.935"
|
|
209
|
-
stroke="#004799"
|
|
210
|
-
strokeWidth="4.575"
|
|
211
|
-
strokeLinecap="round"
|
|
212
|
-
strokeLinejoin="round"
|
|
213
|
-
/>
|
|
214
|
-
<path
|
|
215
|
-
d="M142.173 382.773V348.374L76.6884 356.388L79.2379 374.48L74.7953 403.554C74.9051 405.805 75.1247 408.056 75.4724 410.288C76.6802 418.066 79.7088 425.788 85.3178 431.315C90.9176 436.842 99.3813 439.815 106.939 437.61C112.091 436.11 116.364 432.431 119.768 428.277C126.264 420.372 130.134 410.581 132.34 400.598C133.392 395.84 134.087 391.018 134.591 386.169L142.173 382.773Z"
|
|
216
|
-
fill="white"
|
|
217
|
-
stroke="#004799"
|
|
218
|
-
strokeWidth="4.575"
|
|
219
|
-
strokeLinecap="round"
|
|
220
|
-
strokeLinejoin="round"
|
|
221
|
-
/>
|
|
222
|
-
<path
|
|
223
|
-
d="M94.9009 366.462C91.146 380.079 84.2557 392.82 74.9169 403.417C70.442 408.494 65.3247 413.145 59.2405 416.11C56.3923 417.498 52.7266 418.41 50.2568 416.425C47.8243 414.471 47.8789 410.786 48.4259 407.714C51.5546 390.14 64.0878 374.298 75.9473 360.957L96.3249 351.864L94.9009 366.462Z"
|
|
224
|
-
fill="white"
|
|
225
|
-
stroke="#004799"
|
|
226
|
-
strokeWidth="4.575"
|
|
227
|
-
strokeLinecap="round"
|
|
228
|
-
strokeLinejoin="round"
|
|
229
|
-
/>
|
|
230
|
-
<path
|
|
231
|
-
d="M122.22 363.953C116.785 364.941 111.221 365.371 105.695 365.435C95.648 365.554 85.3177 364.383 75.9389 360.97C71.0528 359.195 66.4321 356.806 62.2322 353.686C52.6613 346.568 45.8903 335.78 43.6303 324.068C41.3702 312.356 43.6486 299.829 49.8797 289.664C57.1814 277.76 69.5065 269.451 82.8197 265.233C96.1238 261.015 112.823 261.381 128.121 264.025C147.364 267.347 165.417 281.081 167.466 309.876C168.253 321.057 164.685 332.339 158.637 341.855C155.736 346.421 151.921 350.328 147.556 353.531"
|
|
232
|
-
fill="white"
|
|
233
|
-
/>
|
|
234
|
-
<path
|
|
235
|
-
d="M122.22 363.953C116.785 364.941 111.221 365.371 105.695 365.435C95.648 365.554 85.3177 364.383 75.9389 360.97C71.0528 359.195 66.4321 356.806 62.2322 353.686C52.6613 346.568 45.8903 335.78 43.6303 324.068C41.3702 312.356 43.6486 299.829 49.8797 289.664C57.1814 277.76 69.5065 269.451 82.8197 265.233C96.1238 261.015 112.823 261.381 128.121 264.025C147.364 267.347 165.417 281.081 167.466 309.876C168.253 321.057 164.685 332.339 158.637 341.855C155.736 346.421 151.921 350.328 147.556 353.531"
|
|
236
|
-
stroke="#004799"
|
|
237
|
-
strokeWidth="4.575"
|
|
238
|
-
strokeLinecap="round"
|
|
239
|
-
strokeLinejoin="round"
|
|
240
|
-
/>
|
|
241
|
-
<path
|
|
242
|
-
d="M89.6072 344.129L140.774 339.59C149.661 338.802 156.226 330.958 155.438 322.071L153.016 294.767C152.228 285.88 144.384 279.314 135.497 280.103L84.3305 284.641C75.4434 285.43 68.878 293.273 69.6663 302.16L72.0883 329.465C72.8766 338.352 80.7201 344.917 89.6072 344.129Z"
|
|
243
|
-
fill="url(#paint1_linear_9_179)"
|
|
244
|
-
/>
|
|
245
|
-
<path
|
|
246
|
-
d="M135.019 319.476C141.073 319.476 145.981 314.568 145.981 308.514C145.981 302.46 141.073 297.552 135.019 297.552C128.965 297.552 124.057 302.46 124.057 308.514C124.057 314.568 128.965 319.476 135.019 319.476Z"
|
|
247
|
-
stroke="white"
|
|
248
|
-
strokeWidth="4.575"
|
|
249
|
-
strokeLinecap="round"
|
|
250
|
-
strokeLinejoin="round"
|
|
251
|
-
/>
|
|
252
|
-
<path
|
|
253
|
-
d="M101.944 322.41C107.998 322.41 112.906 317.502 112.906 311.448C112.906 305.394 107.998 300.486 101.944 300.486C95.8896 300.486 90.9818 305.394 90.9818 311.448C90.9818 317.502 95.8896 322.41 101.944 322.41Z"
|
|
254
|
-
stroke="white"
|
|
255
|
-
strokeWidth="4.575"
|
|
256
|
-
strokeLinecap="round"
|
|
257
|
-
strokeLinejoin="round"
|
|
258
|
-
/>
|
|
259
|
-
<path
|
|
260
|
-
d="M125.692 327.436C122.375 329.408 117.576 328.236 115.542 324.957"
|
|
261
|
-
stroke="white"
|
|
262
|
-
strokeWidth="4.575"
|
|
263
|
-
strokeLinecap="round"
|
|
264
|
-
strokeLinejoin="round"
|
|
265
|
-
/>
|
|
266
|
-
<path
|
|
267
|
-
d="M101.233 448.53C97.1019 448.961 92.8578 448.253 89.0902 446.505"
|
|
268
|
-
stroke="#004799"
|
|
269
|
-
strokeWidth="4.575"
|
|
270
|
-
strokeLinecap="round"
|
|
271
|
-
strokeLinejoin="round"
|
|
272
|
-
/>
|
|
273
|
-
<path
|
|
274
|
-
d="M94.8545 457.923C93.3407 458.033 90.5651 457.325 90.5651 457.325"
|
|
275
|
-
stroke="#004799"
|
|
276
|
-
strokeWidth="4.575"
|
|
277
|
-
strokeLinecap="round"
|
|
278
|
-
strokeLinejoin="round"
|
|
279
|
-
/>
|
|
280
|
-
<path
|
|
281
|
-
d="M121.751 425.123C107.599 427.445 92.9022 426.371 79.2374 422.019"
|
|
282
|
-
stroke="#004799"
|
|
283
|
-
strokeWidth="4.575"
|
|
284
|
-
strokeLinecap="round"
|
|
285
|
-
strokeLinejoin="round"
|
|
286
|
-
/>
|
|
287
|
-
<path
|
|
288
|
-
d="M265.649 48.5563C265.407 47.2875 265.165 46.0186 264.923 44.7497"
|
|
289
|
-
stroke="#004799"
|
|
290
|
-
strokeWidth="4.575"
|
|
291
|
-
strokeLinecap="round"
|
|
292
|
-
strokeLinejoin="round"
|
|
293
|
-
/>
|
|
294
|
-
<path
|
|
295
|
-
d="M298.803 46.4832C299.27 45.3275 299.737 44.1719 300.204 43.0162"
|
|
296
|
-
stroke="#004799"
|
|
297
|
-
strokeWidth="4.575"
|
|
298
|
-
strokeLinecap="round"
|
|
299
|
-
strokeLinejoin="round"
|
|
300
|
-
/>
|
|
301
|
-
<path
|
|
302
|
-
d="M327.312 66.1365C328.843 65.5859 330.374 65.0352 331.905 64.4846"
|
|
303
|
-
stroke="#004799"
|
|
304
|
-
strokeWidth="4.575"
|
|
305
|
-
strokeLinecap="round"
|
|
306
|
-
strokeLinejoin="round"
|
|
307
|
-
/>
|
|
308
|
-
<path
|
|
309
|
-
d="M330.483 99.5346L335.074 100.938"
|
|
310
|
-
stroke="#004799"
|
|
311
|
-
strokeWidth="4.575"
|
|
312
|
-
strokeLinecap="round"
|
|
313
|
-
strokeLinejoin="round"
|
|
314
|
-
/>
|
|
315
|
-
<path
|
|
316
|
-
d="M462.45 319.477C459.279 321.38 446.558 325.826 443.156 324.376C439.442 322.793 437.84 318.45 437.024 314.497C433.578 297.795 435.777 284.694 434.243 267.71C434.072 265.811 433.714 263.696 432.176 262.568C430.505 261.343 428.015 261.869 426.477 263.257C424.94 264.645 424.164 266.677 423.6 268.671C423.035 270.664 422.616 272.734 421.584 274.53C421.584 274.53 406.346 268.491 399.281 266.692C398.083 266.387 396.855 266.17 395.624 266.275C394.392 266.38 393.128 267.101 392.768 268.284C392.475 269.244 392.836 270.307 393.457 271.094C394.079 271.882 394.933 272.446 395.771 272.997C398.759 274.96 402.59 277.476 402.59 277.476C402.59 277.476 397.327 275.785 393.54 274.473C392.376 274.07 391.094 273.682 389.94 274.112C388.048 274.816 387.55 277.471 388.478 279.264C389.406 281.057 391.272 282.143 393.088 283.024C394.905 283.905 399.373 286.042 399.373 286.042C396.192 285.247 393.096 284.022 389.818 284.072C388.949 284.085 388.005 284.179 387.375 284.776C386.076 286.006 387.073 288.224 388.395 289.427C392.392 293.066 398.669 293.694 402.09 297.879C404.269 300.545 404.843 304.148 405.147 307.578C405.922 316.303 405.466 325.11 406.385 333.821C407.305 342.533 409.773 351.416 415.538 358.011C417.849 360.654 420.658 362.85 423.76 364.493"
|
|
317
|
-
stroke="#004799"
|
|
318
|
-
strokeWidth="4.575"
|
|
319
|
-
strokeLinecap="round"
|
|
320
|
-
strokeLinejoin="round"
|
|
321
|
-
/>
|
|
322
|
-
<path
|
|
323
|
-
d="M639.509 218.476C636.087 212.252 627.694 208.307 619.534 206.224C611.374 204.14 602.811 203.539 594.433 204.393C599.348 200.497 604.255 196.178 606.723 190.412C609.19 184.645 608.492 177.064 603.53 173.228C598.639 169.446 591.608 170.321 585.724 172.219C568.335 177.829 554.396 188.405 540.312 201.739C543.192 190.304 546.092 178.702 545.846 166.914C545.776 163.526 545.336 159.884 543.066 157.369C540.398 154.412 535.847 153.862 531.987 154.84C524.671 156.692 519.274 162.818 514.865 168.943C485.351 209.945 475.179 236.049 469.094 261.659C462.031 291.381 456.185 321.399 453.753 351.852C452.84 363.291 452.277 375.255 456.874 385.769C467.702 410.535 493.861 414.392 517.746 415.881C534.02 416.896 555.954 415.966 572.196 414.528C580.317 413.809 583.819 415.447 590.937 411.472C597.94 407.561 602.011 403.606 606.735 396.984C617.091 382.464 621.39 364.499 623.681 346.812C628.224 311.742 625.654 275.775 616.229 241.692C620.443 241.901 624.658 241.806 628.697 240.665C634.43 239.045 639.826 234.865 641.149 229.057C641.959 225.506 640.989 221.168 639.509 218.476Z"
|
|
324
|
-
fill="url(#paint2_linear_9_179)"
|
|
325
|
-
/>
|
|
326
|
-
<path
|
|
327
|
-
d="M594.935 416.327C559.573 414.681 495.493 413.277 469.931 416.327C458.49 447.129 445.415 487.707 435.015 521.018C412.333 521.018 404.036 519.422 384.036 512.813L389.624 505.807C391.121 503.93 392.201 501.763 392.795 499.437C395.653 488.257 404.675 453.087 410.326 432.496"
|
|
328
|
-
stroke="#004799"
|
|
329
|
-
strokeWidth="4.575"
|
|
330
|
-
strokeLinecap="round"
|
|
331
|
-
strokeLinejoin="round"
|
|
332
|
-
/>
|
|
333
|
-
<path
|
|
334
|
-
d="M471.647 380.974C442.896 400.699 402.648 439.458 372.992 463.225C371.311 464.572 368.825 464.058 367.794 462.166C359.726 447.365 352.996 432.501 349.324 417.573C349.324 417.573 351.883 418.349 354.75 419.321C357.04 420.098 359.578 419.55 361.353 417.907C404.293 378.146 422.071 363.33 431.604 360.786C437.71 359.156 444.1 358.625 450.395 359.169"
|
|
335
|
-
stroke="#004799"
|
|
336
|
-
strokeWidth="4.575"
|
|
337
|
-
strokeLinecap="round"
|
|
338
|
-
strokeLinejoin="round"
|
|
339
|
-
/>
|
|
340
|
-
<path
|
|
341
|
-
d="M599.422 335.239C595.014 350.122 588.024 365.667 579.789 378.825C577.185 382.986 574.41 387.201 570.414 390.053C563.484 395 553.953 394.933 545.938 392.058C542.597 390.859 539.456 389.007 536.386 387.254C528.474 382.736 520.798 377.805 513.113 372.916C511.238 371.724 502.454 366.15 502.454 366.15C502.454 366.15 496.602 368.297 495.204 368.613C492.282 369.275 489.271 369.553 486.277 369.428C482.974 369.291 480.518 368.434 479.24 365.385C476.776 365.857 474.228 365.508 472.668 362.662C471.908 361.274 473.279 357.542 473.279 357.542C473.279 357.542 470.274 356.365 470.053 355.413C469.161 351.582 473.123 346.877 483.67 342.518C484.665 342.107 495.94 338.508 495.984 338.606C494.872 336.158 493.24 334.442 492.128 331.994C491.351 330.285 490.589 328.225 491.575 326.628C492.303 325.449 493.814 324.944 495.196 325.043C496.578 325.141 497.869 325.737 499.12 326.333C515.763 334.276 531.437 344.085 547.069 353.87C549.431 350.312 551.69 346.215 553.561 342.145"
|
|
342
|
-
stroke="#004799"
|
|
343
|
-
strokeWidth="4.575"
|
|
344
|
-
strokeLinecap="round"
|
|
345
|
-
strokeLinejoin="round"
|
|
346
|
-
/>
|
|
347
|
-
<path
|
|
348
|
-
d="M489.055 268.816C489.117 268.31 489.179 267.803 489.24 267.296"
|
|
349
|
-
stroke="#004799"
|
|
350
|
-
strokeWidth="4.575"
|
|
351
|
-
strokeLinecap="round"
|
|
352
|
-
strokeLinejoin="round"
|
|
353
|
-
/>
|
|
354
|
-
<path
|
|
355
|
-
d="M533.479 270.369L533.668 269.229"
|
|
356
|
-
stroke="#004799"
|
|
357
|
-
strokeWidth="4.575"
|
|
358
|
-
strokeLinecap="round"
|
|
359
|
-
strokeLinejoin="round"
|
|
360
|
-
/>
|
|
361
|
-
<path
|
|
362
|
-
d="M482.852 247.766C483.788 246.495 485.278 245.648 486.849 245.493C488.42 245.338 490.047 245.878 491.214 246.941"
|
|
363
|
-
stroke="#004799"
|
|
364
|
-
strokeWidth="4.575"
|
|
365
|
-
strokeLinecap="round"
|
|
366
|
-
strokeLinejoin="round"
|
|
367
|
-
/>
|
|
368
|
-
<path
|
|
369
|
-
d="M533.693 237.18C535.437 236.136 537.588 235.793 539.571 236.242C541.553 236.691 543.346 237.928 544.47 239.622"
|
|
370
|
-
stroke="#004799"
|
|
371
|
-
strokeWidth="4.575"
|
|
372
|
-
strokeLinecap="round"
|
|
373
|
-
strokeLinejoin="round"
|
|
374
|
-
/>
|
|
375
|
-
<path
|
|
376
|
-
d="M498.376 284.924C504.543 286.763 511.122 287.23 517.49 286.278L518.103 286.306C518.03 287.925 517.911 289.545 517.646 291.128L517.28 291.064C510.884 289.966 503.417 292.427 500.544 298.256C498.156 294.742 497.808 289.481 497.854 284.924H498.376Z"
|
|
377
|
-
fill="white"
|
|
378
|
-
/>
|
|
379
|
-
<path
|
|
380
|
-
d="M497.854 284.924C497.863 283.387 497.937 281.932 497.973 280.642C498.074 277.375 501.67 278.876 503.875 279.05C507.416 279.333 510.957 279.608 514.498 279.892C515.367 279.956 516.282 280.047 516.978 280.56C518.195 281.465 518.25 283.231 518.176 284.741C518.158 285.263 518.131 285.784 518.103 286.306C518.03 287.925 517.911 289.545 517.646 291.128C517.454 292.272 517.179 293.397 516.795 294.495C515.697 297.606 513.492 300.497 510.381 301.605C507.809 302.52 504.79 302.062 502.594 300.424C501.78 299.82 501.102 299.088 500.544 298.256C498.156 294.742 497.808 289.481 497.854 284.924Z"
|
|
381
|
-
stroke="#004799"
|
|
382
|
-
strokeWidth="4.575"
|
|
383
|
-
strokeLinecap="round"
|
|
384
|
-
strokeLinejoin="round"
|
|
385
|
-
/>
|
|
386
|
-
<path
|
|
387
|
-
d="M498.376 284.924C504.543 286.763 511.122 287.23 517.49 286.278"
|
|
388
|
-
stroke="#004799"
|
|
389
|
-
strokeWidth="4.575"
|
|
390
|
-
strokeLinecap="round"
|
|
391
|
-
strokeLinejoin="round"
|
|
392
|
-
/>
|
|
393
|
-
<path
|
|
394
|
-
d="M500.544 298.256C503.418 292.427 510.884 289.966 517.28 291.064"
|
|
395
|
-
stroke="#004799"
|
|
396
|
-
strokeWidth="4.575"
|
|
397
|
-
strokeLinecap="round"
|
|
398
|
-
strokeLinejoin="round"
|
|
399
|
-
/>
|
|
400
|
-
<path
|
|
401
|
-
d="M469.161 422.807C477.795 432.374 481.659 438.573 506.679 438.573C535.166 438.573 563.659 438.498 592.123 437.344C599.989 437.025 608.25 436.531 614.917 432.344C625.966 425.405 629.034 404.773 631.112 391.893C633.847 374.945 636.582 357.996 639.316 341.047C641.632 326.697 643.95 312.323 644.971 297.822C645.476 290.652 645.556 283.013 641.906 276.821C638.001 270.198 629.857 266.358 622.264 267.559"
|
|
402
|
-
stroke="#004799"
|
|
403
|
-
strokeWidth="4.575"
|
|
404
|
-
strokeLinecap="round"
|
|
405
|
-
strokeLinejoin="round"
|
|
406
|
-
/>
|
|
407
|
-
<path
|
|
408
|
-
d="M270.763 521.55H623.149"
|
|
409
|
-
stroke="#004799"
|
|
410
|
-
strokeWidth="4.575"
|
|
411
|
-
strokeLinecap="round"
|
|
412
|
-
strokeLinejoin="round"
|
|
413
|
-
/>
|
|
414
|
-
<path
|
|
415
|
-
d="M583.457 437.672C587.069 467.442 590.682 491.008 594.294 520.778"
|
|
416
|
-
stroke="#004799"
|
|
417
|
-
strokeWidth="4.575"
|
|
418
|
-
strokeLinecap="round"
|
|
419
|
-
strokeLinejoin="round"
|
|
420
|
-
/>
|
|
421
|
-
<path
|
|
422
|
-
d="M594.934 437.367C597.576 467.239 600.218 490.906 602.859 520.778"
|
|
423
|
-
stroke="#004799"
|
|
424
|
-
strokeWidth="4.575"
|
|
425
|
-
strokeLinecap="round"
|
|
426
|
-
strokeLinejoin="round"
|
|
427
|
-
/>
|
|
428
|
-
<path
|
|
429
|
-
d="M405.425 275.229C403.513 279.508 401.601 283.786 399.69 288.065"
|
|
430
|
-
stroke="#004799"
|
|
431
|
-
strokeWidth="4.575"
|
|
432
|
-
strokeLinecap="round"
|
|
433
|
-
strokeLinejoin="round"
|
|
434
|
-
/>
|
|
435
|
-
<path
|
|
436
|
-
d="M418.558 295.386C419.091 295.035 419.624 294.684 420.158 294.333"
|
|
437
|
-
stroke="#004799"
|
|
438
|
-
strokeWidth="4.575"
|
|
439
|
-
strokeLinecap="round"
|
|
440
|
-
strokeLinejoin="round"
|
|
441
|
-
/>
|
|
442
|
-
<path
|
|
443
|
-
d="M473.765 357.565C477.745 354.873 482.079 352.707 486.621 351.141"
|
|
444
|
-
stroke="#004799"
|
|
445
|
-
strokeWidth="4.575"
|
|
446
|
-
strokeLinecap="round"
|
|
447
|
-
strokeLinejoin="round"
|
|
448
|
-
/>
|
|
449
|
-
<path
|
|
450
|
-
d="M479.615 364.681C483.187 362.344 487.05 360.452 491.087 359.063"
|
|
451
|
-
stroke="#004799"
|
|
452
|
-
strokeWidth="4.575"
|
|
453
|
-
strokeLinecap="round"
|
|
454
|
-
strokeLinejoin="round"
|
|
455
|
-
/>
|
|
456
|
-
<path
|
|
457
|
-
d="M493.07 438.66C486.935 468.014 480.802 491.164 474.667 520.519"
|
|
458
|
-
stroke="#004799"
|
|
459
|
-
strokeWidth="4.575"
|
|
460
|
-
strokeLinecap="round"
|
|
461
|
-
strokeLinejoin="round"
|
|
462
|
-
/>
|
|
463
|
-
<path
|
|
464
|
-
d="M481.659 437.378C476.484 466.917 471.309 490.251 466.134 519.789"
|
|
465
|
-
stroke="#004799"
|
|
466
|
-
strokeWidth="4.575"
|
|
467
|
-
strokeLinecap="round"
|
|
468
|
-
strokeLinejoin="round"
|
|
469
|
-
/>
|
|
470
|
-
<path
|
|
471
|
-
d="M532.771 438.839C529.159 468.609 525.546 491.008 521.933 520.778"
|
|
472
|
-
stroke="#004799"
|
|
473
|
-
strokeWidth="4.575"
|
|
474
|
-
strokeLinecap="round"
|
|
475
|
-
strokeLinejoin="round"
|
|
476
|
-
/>
|
|
477
|
-
<path
|
|
478
|
-
d="M521.293 438.533C518.651 468.405 516.01 490.906 513.368 520.778"
|
|
479
|
-
stroke="#004799"
|
|
480
|
-
strokeWidth="4.575"
|
|
481
|
-
strokeLinecap="round"
|
|
482
|
-
strokeLinejoin="round"
|
|
483
|
-
/>
|
|
484
|
-
<path
|
|
485
|
-
d="M474.983 410.635C473.674 412.102 471.239 414.86 469.931 416.327"
|
|
486
|
-
stroke="#004799"
|
|
487
|
-
strokeWidth="4.575"
|
|
488
|
-
strokeLinecap="round"
|
|
489
|
-
strokeLinejoin="round"
|
|
490
|
-
/>
|
|
491
|
-
<path
|
|
492
|
-
d="M466.134 384.883C471.559 384.535 486.621 384.812 486.621 384.812"
|
|
493
|
-
stroke="#004799"
|
|
494
|
-
strokeWidth="4.575"
|
|
495
|
-
strokeLinecap="round"
|
|
496
|
-
strokeLinejoin="round"
|
|
497
|
-
/>
|
|
498
|
-
<path
|
|
499
|
-
d="M138.129 342.076C134.485 339.302 129.822 336.872 125.544 338.505C123.001 339.476 121.207 341.888 120.411 344.49C119.615 347.093 119.444 349.921 119.992 352.587C122.689 365.695 128.709 377.96 138.407 387.183C140.769 389.429 143.632 391.188 146.733 392.193C149.833 393.199 153.354 393.232 156.244 391.724C159.561 389.993 161.646 386.445 162.401 382.781C164.135 374.371 161.484 369.109 157.123 362.459C152.22 354.984 145.242 347.491 138.129 342.076Z"
|
|
500
|
-
fill="white"
|
|
501
|
-
stroke="#004799"
|
|
502
|
-
strokeWidth="4.575"
|
|
503
|
-
strokeLinecap="round"
|
|
504
|
-
strokeLinejoin="round"
|
|
505
|
-
/>
|
|
506
|
-
<defs>
|
|
507
|
-
<linearGradient
|
|
508
|
-
id="paint0_linear_9_179"
|
|
509
|
-
x1="215.118"
|
|
510
|
-
y1="187.778"
|
|
511
|
-
x2="266.526"
|
|
512
|
-
y2="296.304"
|
|
513
|
-
gradientUnits="userSpaceOnUse"
|
|
514
|
-
>
|
|
515
|
-
<stop stop-color="#8AEB8A" />
|
|
516
|
-
<stop offset="1" stop-color="#33A7FF" />
|
|
517
|
-
</linearGradient>
|
|
518
|
-
<linearGradient
|
|
519
|
-
id="paint1_linear_9_179"
|
|
520
|
-
x1="127.714"
|
|
521
|
-
y1="340.584"
|
|
522
|
-
x2="103.211"
|
|
523
|
-
y2="294.577"
|
|
524
|
-
gradientUnits="userSpaceOnUse"
|
|
525
|
-
>
|
|
526
|
-
<stop stop-color="#0077FF" />
|
|
527
|
-
<stop offset="1" stop-color="#33A7FF" />
|
|
528
|
-
</linearGradient>
|
|
529
|
-
<linearGradient
|
|
530
|
-
id="paint2_linear_9_179"
|
|
531
|
-
x1="562.087"
|
|
532
|
-
y1="383.312"
|
|
533
|
-
x2="525.277"
|
|
534
|
-
y2="170.973"
|
|
535
|
-
gradientUnits="userSpaceOnUse"
|
|
536
|
-
>
|
|
537
|
-
<stop stop-color="#F5836C" />
|
|
538
|
-
<stop offset="1" stop-color="#FFDB29" />
|
|
539
|
-
</linearGradient>
|
|
540
|
-
</defs>
|
|
541
|
-
</svg>
|
|
542
|
-
</SvgIcon>
|
|
543
|
-
);
|
|
544
|
-
}
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { SvgIcon, SvgIconProps } from '@mui/material';
|
|
3
|
+
|
|
4
|
+
export default function AI_UserTest({
|
|
5
|
+
stroke,
|
|
6
|
+
strokeWidth,
|
|
7
|
+
fill,
|
|
8
|
+
...rest
|
|
9
|
+
}: SvgIconProps) {
|
|
10
|
+
return (
|
|
11
|
+
<SvgIcon
|
|
12
|
+
strokeWidth={strokeWidth ?? 0.1}
|
|
13
|
+
stroke={stroke ? stroke : 'currentColor'}
|
|
14
|
+
{...rest}
|
|
15
|
+
>
|
|
16
|
+
<svg
|
|
17
|
+
width="688"
|
|
18
|
+
height="549"
|
|
19
|
+
viewBox="0 0 688 549"
|
|
20
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
d="M163.573 312.212C155.834 288.825 150.189 272.837 147.355 247.285C146.738 241.714 146.639 235.606 150.655 231.696C154.976 227.489 160.294 225.355 180.11 225.736"
|
|
24
|
+
stroke="#004799"
|
|
25
|
+
strokeWidth="4.575"
|
|
26
|
+
strokeLinecap="round"
|
|
27
|
+
strokeLinejoin="round"
|
|
28
|
+
/>
|
|
29
|
+
<path
|
|
30
|
+
d="M247.21 87.8531C247.226 86.9326 247.243 86.0115 247.256 85.0882C247.302 81.7162 247.241 78.9565 249.558 76.7552C251.589 74.8258 254.191 74.435 256.672 74.213C263.665 73.5872 270.633 74.3104 277.583 74.079C283.878 73.8693 289.899 74.0009 296.132 74.5888C298.134 74.7776 300.201 75.1427 301.907 76.5631C306.241 80.1722 304.409 90.3295 303.571 95.8529C302.713 101.501 300.524 104.48 296.107 104.519C281.97 104.645 267.962 105.02 253.817 105.04C252.2 105.042 250.499 105.017 249.09 103.945C246.821 102.219 247.184 98.5312 247.148 95.5382C247.117 92.9567 247.164 90.407 247.21 87.8531Z"
|
|
31
|
+
fill="#D5DFE8"
|
|
32
|
+
stroke="#D5DFE8"
|
|
33
|
+
strokeWidth="4.575"
|
|
34
|
+
strokeLinecap="round"
|
|
35
|
+
strokeLinejoin="round"
|
|
36
|
+
/>
|
|
37
|
+
<path
|
|
38
|
+
d="M174.538 304.916C174.502 307.355 174.842 309.832 175.513 312.212C192.114 311.282 208.461 310.542 227.07 309.811C226.574 303.912 226.886 297.477 231.427 293.956C234.916 291.251 239.732 291.527 244.147 291.476C265.76 291.226 282.765 291.226 304.379 291.476C308.793 291.527 313.61 291.251 317.099 293.956C318.885 295.341 320.012 297.179 320.697 299.256L331.569 268.985C339.557 242.075 330.415 211.046 309.586 192.228C288.758 173.41 257.417 167.39 230.854 176.466C204.292 185.542 183.362 209.085 176.737 236.362C172.689 253.032 173.958 270.779 179.7 286.945C176.716 292.566 174.632 298.601 174.538 304.916Z"
|
|
39
|
+
fill="url(#paint0_linear_9_179)"
|
|
40
|
+
/>
|
|
41
|
+
<path
|
|
42
|
+
d="M305.818 239.66C304.85 237.831 306.092 235.46 307.91 234.471C309.728 233.482 311.905 233.501 313.974 233.545C319.615 233.665 325.255 233.785 330.896 233.905C332.923 233.948 335.06 234.021 336.787 235.084C338.515 236.146 339.583 238.564 338.487 240.271"
|
|
43
|
+
fill="white"
|
|
44
|
+
/>
|
|
45
|
+
<path
|
|
46
|
+
d="M305.818 239.66C304.85 237.831 306.092 235.46 307.91 234.471C309.728 233.482 311.905 233.501 313.974 233.545C319.615 233.665 325.255 233.785 330.896 233.905C332.923 233.948 335.06 234.021 336.787 235.084C338.515 236.146 339.583 238.564 338.487 240.271"
|
|
47
|
+
stroke="#004799"
|
|
48
|
+
strokeWidth="4.575"
|
|
49
|
+
strokeLinecap="round"
|
|
50
|
+
strokeLinejoin="round"
|
|
51
|
+
/>
|
|
52
|
+
<path
|
|
53
|
+
d="M287.779 249.662C282.927 243.619 274.337 243.258 266.175 245.612C258.013 247.965 251.137 253.378 244.491 258.669C229.854 270.324 215.217 281.978 200.579 293.632"
|
|
54
|
+
stroke="#004799"
|
|
55
|
+
strokeWidth="4.575"
|
|
56
|
+
strokeLinecap="round"
|
|
57
|
+
strokeLinejoin="round"
|
|
58
|
+
/>
|
|
59
|
+
<path
|
|
60
|
+
d="M203.074 288.334C204.216 288.412 205.358 288.489 206.5 288.566"
|
|
61
|
+
stroke="#004799"
|
|
62
|
+
strokeWidth="4.575"
|
|
63
|
+
strokeLinecap="round"
|
|
64
|
+
strokeLinejoin="round"
|
|
65
|
+
/>
|
|
66
|
+
<path
|
|
67
|
+
d="M253.622 251.796L236.79 235.397C239.062 232.526 242.945 228.864 246.743 228.395C252.848 233.775 259.93 239.762 265.286 245.889"
|
|
68
|
+
stroke="#004799"
|
|
69
|
+
strokeWidth="4.575"
|
|
70
|
+
strokeLinecap="round"
|
|
71
|
+
strokeLinejoin="round"
|
|
72
|
+
/>
|
|
73
|
+
<path
|
|
74
|
+
d="M275.152 252.624C279.035 252.558 282.922 254.075 285.733 256.754"
|
|
75
|
+
stroke="#004799"
|
|
76
|
+
strokeWidth="4.575"
|
|
77
|
+
strokeLinecap="round"
|
|
78
|
+
strokeLinejoin="round"
|
|
79
|
+
/>
|
|
80
|
+
<path
|
|
81
|
+
d="M277.046 261.493C279.14 261.895 281.173 262.621 283.048 263.637"
|
|
82
|
+
stroke="#004799"
|
|
83
|
+
strokeWidth="4.575"
|
|
84
|
+
strokeLinecap="round"
|
|
85
|
+
strokeLinejoin="round"
|
|
86
|
+
/>
|
|
87
|
+
<path
|
|
88
|
+
d="M349.134 274.5C351.566 266.558 353.728 259.496 356.16 251.554C356.801 249.461 357.44 247.189 356.699 245.13C355.854 242.783 353.361 241.35 350.887 241.034C348.65 240.749 331.045 240.229 326.54 240.084C317.68 239.8 308.815 239.589 299.949 239.574C297.427 239.569 294.752 239.637 292.631 241.001C290.303 242.499 289.131 245.246 288.319 247.893C284.011 261.941 275.741 290.592 275.741 290.592C287.884 290.592 299.955 290.878 312.069 291.703C313.905 291.828 315.785 291.976 317.456 292.745C319.701 293.776 321.339 295.841 322.353 298.093C323.367 300.345 323.827 302.801 324.279 305.229C325.708 305.298 327.137 305.367 328.566 305.436C326.402 298.946 327.272 291.514 330.875 285.699C334.478 279.884 342.36 275.452 349.134 274.5Z"
|
|
89
|
+
fill="#D5DFE8"
|
|
90
|
+
stroke="#D5DFE8"
|
|
91
|
+
strokeWidth="4.575"
|
|
92
|
+
strokeLinecap="round"
|
|
93
|
+
strokeLinejoin="round"
|
|
94
|
+
/>
|
|
95
|
+
<path
|
|
96
|
+
d="M405.43 319.116C404.245 320.391 402.948 321.508 401.527 322.427C391.94 328.634 376.881 328.227 365.471 328.719C316.195 330.844 274.331 330.865 225.25 331.581C208.924 331.818 189.458 331.421 173.136 330.971C162.108 330.667 146.812 329.113 139.037 321.286C132.342 314.546 129.475 302.497 128.16 293.088C124.446 266.515 119.91 243.581 120.755 216.721C121.79 183.835 119.679 158.1 128.719 143.312C140.275 124.411 161.579 122.97 181.713 122.09C244.823 119.33 307.298 116.567 370.086 123.506C384.126 125.058 399.32 127.703 408.813 138.164C418.069 148.364 418.637 163.332 419.836 177.053C421.683 198.193 420.945 244.198 418.577 273.354"
|
|
97
|
+
stroke="#004799"
|
|
98
|
+
strokeWidth="4.575"
|
|
99
|
+
strokeLinecap="round"
|
|
100
|
+
strokeLinejoin="round"
|
|
101
|
+
/>
|
|
102
|
+
<path
|
|
103
|
+
d="M402.557 307.999C375.573 307.492 348.582 307.35 321.595 307.565C321.803 302.339 321.068 297.034 317.099 293.956C313.61 291.251 308.793 291.527 304.379 291.476C282.765 291.226 265.76 291.226 244.147 291.476C239.732 291.527 234.916 291.251 231.427 293.956C226.886 297.477 226.574 303.912 227.07 309.81C193.754 311.12 167.689 312.454 134.434 314.867"
|
|
104
|
+
stroke="#004799"
|
|
105
|
+
strokeWidth="4.575"
|
|
106
|
+
strokeLinecap="round"
|
|
107
|
+
strokeLinejoin="round"
|
|
108
|
+
/>
|
|
109
|
+
<path
|
|
110
|
+
d="M243.847 311.424C246.034 311.424 247.806 309.652 247.806 307.465C247.806 305.279 246.034 303.507 243.847 303.507C241.661 303.507 239.889 305.279 239.889 307.465C239.889 309.652 241.661 311.424 243.847 311.424Z"
|
|
111
|
+
stroke="#004799"
|
|
112
|
+
strokeWidth="4.575"
|
|
113
|
+
strokeLinecap="round"
|
|
114
|
+
strokeLinejoin="round"
|
|
115
|
+
/>
|
|
116
|
+
<path
|
|
117
|
+
d="M264.125 311.424C266.311 311.424 268.083 309.652 268.083 307.465C268.083 305.279 266.311 303.507 264.125 303.507C261.938 303.507 260.166 305.279 260.166 307.465C260.166 309.652 261.938 311.424 264.125 311.424Z"
|
|
118
|
+
stroke="#004799"
|
|
119
|
+
strokeWidth="4.575"
|
|
120
|
+
strokeLinecap="round"
|
|
121
|
+
strokeLinejoin="round"
|
|
122
|
+
/>
|
|
123
|
+
<path
|
|
124
|
+
d="M284.402 311.424C286.588 311.424 288.361 309.652 288.361 307.465C288.361 305.279 286.588 303.507 284.402 303.507C282.216 303.507 280.443 305.279 280.443 307.465C280.443 309.652 282.216 311.424 284.402 311.424Z"
|
|
125
|
+
stroke="#004799"
|
|
126
|
+
strokeWidth="4.575"
|
|
127
|
+
strokeLinecap="round"
|
|
128
|
+
strokeLinejoin="round"
|
|
129
|
+
/>
|
|
130
|
+
<path
|
|
131
|
+
d="M304.679 311.424C306.866 311.424 308.638 309.652 308.638 307.465C308.638 305.279 306.866 303.507 304.679 303.507C302.493 303.507 300.721 305.279 300.721 307.465C300.721 309.652 302.493 311.424 304.679 311.424Z"
|
|
132
|
+
stroke="#004799"
|
|
133
|
+
strokeWidth="4.575"
|
|
134
|
+
strokeLinecap="round"
|
|
135
|
+
strokeLinejoin="round"
|
|
136
|
+
/>
|
|
137
|
+
<path
|
|
138
|
+
d="M332.779 307.465C329.469 302.867 328.719 295.221 330.679 289.905C332.639 284.589 336.787 280.255 341.66 277.366C343.749 276.129 346.229 275.109 348.556 275.801C350.908 276.501 352.418 278.731 353.712 280.816C356.191 284.811 358.639 288.934 359.698 293.516C360.756 298.097 360.027 303.841 357.032 307.465"
|
|
139
|
+
stroke="#004799"
|
|
140
|
+
strokeWidth="4.575"
|
|
141
|
+
strokeLinecap="round"
|
|
142
|
+
strokeLinejoin="round"
|
|
143
|
+
/>
|
|
144
|
+
<path
|
|
145
|
+
d="M340.369 278.453C344.492 283.01 347.803 288.301 350.1 294.002"
|
|
146
|
+
stroke="#004799"
|
|
147
|
+
strokeWidth="4.575"
|
|
148
|
+
strokeLinecap="round"
|
|
149
|
+
strokeLinejoin="round"
|
|
150
|
+
/>
|
|
151
|
+
<path
|
|
152
|
+
d="M332.779 285.733C336.193 290.11 339.093 294.457 341.549 299.435"
|
|
153
|
+
stroke="#004799"
|
|
154
|
+
strokeWidth="4.575"
|
|
155
|
+
strokeLinecap="round"
|
|
156
|
+
strokeLinejoin="round"
|
|
157
|
+
/>
|
|
158
|
+
<path
|
|
159
|
+
d="M255.706 203.567L255.773 202.428"
|
|
160
|
+
stroke="#004799"
|
|
161
|
+
strokeWidth="4.575"
|
|
162
|
+
strokeLinecap="round"
|
|
163
|
+
strokeLinejoin="round"
|
|
164
|
+
/>
|
|
165
|
+
<path
|
|
166
|
+
d="M295.62 203.567L295.687 202.428"
|
|
167
|
+
stroke="#004799"
|
|
168
|
+
strokeWidth="4.575"
|
|
169
|
+
strokeLinecap="round"
|
|
170
|
+
strokeLinejoin="round"
|
|
171
|
+
/>
|
|
172
|
+
<path
|
|
173
|
+
d="M269.967 217.438C270.261 219.964 271.672 222.339 273.75 223.805C275.827 225.271 278.538 225.805 281.016 225.235"
|
|
174
|
+
stroke="#004799"
|
|
175
|
+
strokeWidth="4.575"
|
|
176
|
+
strokeLinecap="round"
|
|
177
|
+
strokeLinejoin="round"
|
|
178
|
+
/>
|
|
179
|
+
<path
|
|
180
|
+
d="M234.958 211.101C234.534 210.483 234.144 209.814 233.791 209.092C231.504 204.423 231.209 199.064 230.954 193.871C230.664 187.963 230.374 182.054 230.084 176.146C229.822 170.799 230.027 166.759 233.782 162.533C236.606 159.354 240.385 157.108 244.408 155.732C247.825 154.562 251.529 153.994 255.069 154.715C260.645 155.85 264.403 160.26 265.992 165.495C268.725 174.501 268.839 184.063 268.931 193.474C268.984 198.91 268.934 204.714 265.929 209.244C263.643 212.69 259.882 214.942 255.939 216.186C248.302 218.595 239.624 217.92 234.958 211.101Z"
|
|
181
|
+
stroke="#004799"
|
|
182
|
+
strokeWidth="4.575"
|
|
183
|
+
strokeLinecap="round"
|
|
184
|
+
strokeLinejoin="round"
|
|
185
|
+
/>
|
|
186
|
+
<path
|
|
187
|
+
d="M280.048 169.64C280.027 161.745 283.618 157.806 288.126 155.721C291.249 154.275 296.396 152.918 299.831 153.136C303.559 153.374 307.408 154.477 310.035 157.134C312.082 159.204 313.195 162.011 314.039 164.797C316.927 174.334 317.243 184.433 317.515 194.394C317.624 198.383 317.685 202.574 315.829 206.105C314.323 208.969 311.66 211.114 308.702 212.426C305.745 213.737 302.497 214.273 299.268 214.482C296.177 214.682 292.934 214.56 290.204 213.097C287.255 211.517 285.284 208.57 283.87 205.538C281.211 199.832 280.064 175.995 280.048 169.64Z"
|
|
188
|
+
stroke="#004799"
|
|
189
|
+
strokeWidth="4.575"
|
|
190
|
+
strokeLinecap="round"
|
|
191
|
+
strokeLinejoin="round"
|
|
192
|
+
/>
|
|
193
|
+
<path
|
|
194
|
+
d="M269.197 198.678C273.369 198.153 277.583 197.954 281.787 198.082"
|
|
195
|
+
stroke="#004799"
|
|
196
|
+
strokeWidth="4.575"
|
|
197
|
+
strokeLinecap="round"
|
|
198
|
+
strokeLinejoin="round"
|
|
199
|
+
/>
|
|
200
|
+
<path
|
|
201
|
+
d="M274.336 93.1276C268.821 91.7515 272.181 83.5065 277.362 85.5149C281.988 87.3088 279.893 93.7996 275.156 93.2724C274.863 93.2399 274.59 93.191 274.336 93.1276Z"
|
|
202
|
+
stroke="#004799"
|
|
203
|
+
strokeWidth="4.575"
|
|
204
|
+
strokeLinecap="round"
|
|
205
|
+
strokeLinejoin="round"
|
|
206
|
+
/>
|
|
207
|
+
<path
|
|
208
|
+
d="M65.4842 521.55H119.935"
|
|
209
|
+
stroke="#004799"
|
|
210
|
+
strokeWidth="4.575"
|
|
211
|
+
strokeLinecap="round"
|
|
212
|
+
strokeLinejoin="round"
|
|
213
|
+
/>
|
|
214
|
+
<path
|
|
215
|
+
d="M142.173 382.773V348.374L76.6884 356.388L79.2379 374.48L74.7953 403.554C74.9051 405.805 75.1247 408.056 75.4724 410.288C76.6802 418.066 79.7088 425.788 85.3178 431.315C90.9176 436.842 99.3813 439.815 106.939 437.61C112.091 436.11 116.364 432.431 119.768 428.277C126.264 420.372 130.134 410.581 132.34 400.598C133.392 395.84 134.087 391.018 134.591 386.169L142.173 382.773Z"
|
|
216
|
+
fill="white"
|
|
217
|
+
stroke="#004799"
|
|
218
|
+
strokeWidth="4.575"
|
|
219
|
+
strokeLinecap="round"
|
|
220
|
+
strokeLinejoin="round"
|
|
221
|
+
/>
|
|
222
|
+
<path
|
|
223
|
+
d="M94.9009 366.462C91.146 380.079 84.2557 392.82 74.9169 403.417C70.442 408.494 65.3247 413.145 59.2405 416.11C56.3923 417.498 52.7266 418.41 50.2568 416.425C47.8243 414.471 47.8789 410.786 48.4259 407.714C51.5546 390.14 64.0878 374.298 75.9473 360.957L96.3249 351.864L94.9009 366.462Z"
|
|
224
|
+
fill="white"
|
|
225
|
+
stroke="#004799"
|
|
226
|
+
strokeWidth="4.575"
|
|
227
|
+
strokeLinecap="round"
|
|
228
|
+
strokeLinejoin="round"
|
|
229
|
+
/>
|
|
230
|
+
<path
|
|
231
|
+
d="M122.22 363.953C116.785 364.941 111.221 365.371 105.695 365.435C95.648 365.554 85.3177 364.383 75.9389 360.97C71.0528 359.195 66.4321 356.806 62.2322 353.686C52.6613 346.568 45.8903 335.78 43.6303 324.068C41.3702 312.356 43.6486 299.829 49.8797 289.664C57.1814 277.76 69.5065 269.451 82.8197 265.233C96.1238 261.015 112.823 261.381 128.121 264.025C147.364 267.347 165.417 281.081 167.466 309.876C168.253 321.057 164.685 332.339 158.637 341.855C155.736 346.421 151.921 350.328 147.556 353.531"
|
|
232
|
+
fill="white"
|
|
233
|
+
/>
|
|
234
|
+
<path
|
|
235
|
+
d="M122.22 363.953C116.785 364.941 111.221 365.371 105.695 365.435C95.648 365.554 85.3177 364.383 75.9389 360.97C71.0528 359.195 66.4321 356.806 62.2322 353.686C52.6613 346.568 45.8903 335.78 43.6303 324.068C41.3702 312.356 43.6486 299.829 49.8797 289.664C57.1814 277.76 69.5065 269.451 82.8197 265.233C96.1238 261.015 112.823 261.381 128.121 264.025C147.364 267.347 165.417 281.081 167.466 309.876C168.253 321.057 164.685 332.339 158.637 341.855C155.736 346.421 151.921 350.328 147.556 353.531"
|
|
236
|
+
stroke="#004799"
|
|
237
|
+
strokeWidth="4.575"
|
|
238
|
+
strokeLinecap="round"
|
|
239
|
+
strokeLinejoin="round"
|
|
240
|
+
/>
|
|
241
|
+
<path
|
|
242
|
+
d="M89.6072 344.129L140.774 339.59C149.661 338.802 156.226 330.958 155.438 322.071L153.016 294.767C152.228 285.88 144.384 279.314 135.497 280.103L84.3305 284.641C75.4434 285.43 68.878 293.273 69.6663 302.16L72.0883 329.465C72.8766 338.352 80.7201 344.917 89.6072 344.129Z"
|
|
243
|
+
fill="url(#paint1_linear_9_179)"
|
|
244
|
+
/>
|
|
245
|
+
<path
|
|
246
|
+
d="M135.019 319.476C141.073 319.476 145.981 314.568 145.981 308.514C145.981 302.46 141.073 297.552 135.019 297.552C128.965 297.552 124.057 302.46 124.057 308.514C124.057 314.568 128.965 319.476 135.019 319.476Z"
|
|
247
|
+
stroke="white"
|
|
248
|
+
strokeWidth="4.575"
|
|
249
|
+
strokeLinecap="round"
|
|
250
|
+
strokeLinejoin="round"
|
|
251
|
+
/>
|
|
252
|
+
<path
|
|
253
|
+
d="M101.944 322.41C107.998 322.41 112.906 317.502 112.906 311.448C112.906 305.394 107.998 300.486 101.944 300.486C95.8896 300.486 90.9818 305.394 90.9818 311.448C90.9818 317.502 95.8896 322.41 101.944 322.41Z"
|
|
254
|
+
stroke="white"
|
|
255
|
+
strokeWidth="4.575"
|
|
256
|
+
strokeLinecap="round"
|
|
257
|
+
strokeLinejoin="round"
|
|
258
|
+
/>
|
|
259
|
+
<path
|
|
260
|
+
d="M125.692 327.436C122.375 329.408 117.576 328.236 115.542 324.957"
|
|
261
|
+
stroke="white"
|
|
262
|
+
strokeWidth="4.575"
|
|
263
|
+
strokeLinecap="round"
|
|
264
|
+
strokeLinejoin="round"
|
|
265
|
+
/>
|
|
266
|
+
<path
|
|
267
|
+
d="M101.233 448.53C97.1019 448.961 92.8578 448.253 89.0902 446.505"
|
|
268
|
+
stroke="#004799"
|
|
269
|
+
strokeWidth="4.575"
|
|
270
|
+
strokeLinecap="round"
|
|
271
|
+
strokeLinejoin="round"
|
|
272
|
+
/>
|
|
273
|
+
<path
|
|
274
|
+
d="M94.8545 457.923C93.3407 458.033 90.5651 457.325 90.5651 457.325"
|
|
275
|
+
stroke="#004799"
|
|
276
|
+
strokeWidth="4.575"
|
|
277
|
+
strokeLinecap="round"
|
|
278
|
+
strokeLinejoin="round"
|
|
279
|
+
/>
|
|
280
|
+
<path
|
|
281
|
+
d="M121.751 425.123C107.599 427.445 92.9022 426.371 79.2374 422.019"
|
|
282
|
+
stroke="#004799"
|
|
283
|
+
strokeWidth="4.575"
|
|
284
|
+
strokeLinecap="round"
|
|
285
|
+
strokeLinejoin="round"
|
|
286
|
+
/>
|
|
287
|
+
<path
|
|
288
|
+
d="M265.649 48.5563C265.407 47.2875 265.165 46.0186 264.923 44.7497"
|
|
289
|
+
stroke="#004799"
|
|
290
|
+
strokeWidth="4.575"
|
|
291
|
+
strokeLinecap="round"
|
|
292
|
+
strokeLinejoin="round"
|
|
293
|
+
/>
|
|
294
|
+
<path
|
|
295
|
+
d="M298.803 46.4832C299.27 45.3275 299.737 44.1719 300.204 43.0162"
|
|
296
|
+
stroke="#004799"
|
|
297
|
+
strokeWidth="4.575"
|
|
298
|
+
strokeLinecap="round"
|
|
299
|
+
strokeLinejoin="round"
|
|
300
|
+
/>
|
|
301
|
+
<path
|
|
302
|
+
d="M327.312 66.1365C328.843 65.5859 330.374 65.0352 331.905 64.4846"
|
|
303
|
+
stroke="#004799"
|
|
304
|
+
strokeWidth="4.575"
|
|
305
|
+
strokeLinecap="round"
|
|
306
|
+
strokeLinejoin="round"
|
|
307
|
+
/>
|
|
308
|
+
<path
|
|
309
|
+
d="M330.483 99.5346L335.074 100.938"
|
|
310
|
+
stroke="#004799"
|
|
311
|
+
strokeWidth="4.575"
|
|
312
|
+
strokeLinecap="round"
|
|
313
|
+
strokeLinejoin="round"
|
|
314
|
+
/>
|
|
315
|
+
<path
|
|
316
|
+
d="M462.45 319.477C459.279 321.38 446.558 325.826 443.156 324.376C439.442 322.793 437.84 318.45 437.024 314.497C433.578 297.795 435.777 284.694 434.243 267.71C434.072 265.811 433.714 263.696 432.176 262.568C430.505 261.343 428.015 261.869 426.477 263.257C424.94 264.645 424.164 266.677 423.6 268.671C423.035 270.664 422.616 272.734 421.584 274.53C421.584 274.53 406.346 268.491 399.281 266.692C398.083 266.387 396.855 266.17 395.624 266.275C394.392 266.38 393.128 267.101 392.768 268.284C392.475 269.244 392.836 270.307 393.457 271.094C394.079 271.882 394.933 272.446 395.771 272.997C398.759 274.96 402.59 277.476 402.59 277.476C402.59 277.476 397.327 275.785 393.54 274.473C392.376 274.07 391.094 273.682 389.94 274.112C388.048 274.816 387.55 277.471 388.478 279.264C389.406 281.057 391.272 282.143 393.088 283.024C394.905 283.905 399.373 286.042 399.373 286.042C396.192 285.247 393.096 284.022 389.818 284.072C388.949 284.085 388.005 284.179 387.375 284.776C386.076 286.006 387.073 288.224 388.395 289.427C392.392 293.066 398.669 293.694 402.09 297.879C404.269 300.545 404.843 304.148 405.147 307.578C405.922 316.303 405.466 325.11 406.385 333.821C407.305 342.533 409.773 351.416 415.538 358.011C417.849 360.654 420.658 362.85 423.76 364.493"
|
|
317
|
+
stroke="#004799"
|
|
318
|
+
strokeWidth="4.575"
|
|
319
|
+
strokeLinecap="round"
|
|
320
|
+
strokeLinejoin="round"
|
|
321
|
+
/>
|
|
322
|
+
<path
|
|
323
|
+
d="M639.509 218.476C636.087 212.252 627.694 208.307 619.534 206.224C611.374 204.14 602.811 203.539 594.433 204.393C599.348 200.497 604.255 196.178 606.723 190.412C609.19 184.645 608.492 177.064 603.53 173.228C598.639 169.446 591.608 170.321 585.724 172.219C568.335 177.829 554.396 188.405 540.312 201.739C543.192 190.304 546.092 178.702 545.846 166.914C545.776 163.526 545.336 159.884 543.066 157.369C540.398 154.412 535.847 153.862 531.987 154.84C524.671 156.692 519.274 162.818 514.865 168.943C485.351 209.945 475.179 236.049 469.094 261.659C462.031 291.381 456.185 321.399 453.753 351.852C452.84 363.291 452.277 375.255 456.874 385.769C467.702 410.535 493.861 414.392 517.746 415.881C534.02 416.896 555.954 415.966 572.196 414.528C580.317 413.809 583.819 415.447 590.937 411.472C597.94 407.561 602.011 403.606 606.735 396.984C617.091 382.464 621.39 364.499 623.681 346.812C628.224 311.742 625.654 275.775 616.229 241.692C620.443 241.901 624.658 241.806 628.697 240.665C634.43 239.045 639.826 234.865 641.149 229.057C641.959 225.506 640.989 221.168 639.509 218.476Z"
|
|
324
|
+
fill="url(#paint2_linear_9_179)"
|
|
325
|
+
/>
|
|
326
|
+
<path
|
|
327
|
+
d="M594.935 416.327C559.573 414.681 495.493 413.277 469.931 416.327C458.49 447.129 445.415 487.707 435.015 521.018C412.333 521.018 404.036 519.422 384.036 512.813L389.624 505.807C391.121 503.93 392.201 501.763 392.795 499.437C395.653 488.257 404.675 453.087 410.326 432.496"
|
|
328
|
+
stroke="#004799"
|
|
329
|
+
strokeWidth="4.575"
|
|
330
|
+
strokeLinecap="round"
|
|
331
|
+
strokeLinejoin="round"
|
|
332
|
+
/>
|
|
333
|
+
<path
|
|
334
|
+
d="M471.647 380.974C442.896 400.699 402.648 439.458 372.992 463.225C371.311 464.572 368.825 464.058 367.794 462.166C359.726 447.365 352.996 432.501 349.324 417.573C349.324 417.573 351.883 418.349 354.75 419.321C357.04 420.098 359.578 419.55 361.353 417.907C404.293 378.146 422.071 363.33 431.604 360.786C437.71 359.156 444.1 358.625 450.395 359.169"
|
|
335
|
+
stroke="#004799"
|
|
336
|
+
strokeWidth="4.575"
|
|
337
|
+
strokeLinecap="round"
|
|
338
|
+
strokeLinejoin="round"
|
|
339
|
+
/>
|
|
340
|
+
<path
|
|
341
|
+
d="M599.422 335.239C595.014 350.122 588.024 365.667 579.789 378.825C577.185 382.986 574.41 387.201 570.414 390.053C563.484 395 553.953 394.933 545.938 392.058C542.597 390.859 539.456 389.007 536.386 387.254C528.474 382.736 520.798 377.805 513.113 372.916C511.238 371.724 502.454 366.15 502.454 366.15C502.454 366.15 496.602 368.297 495.204 368.613C492.282 369.275 489.271 369.553 486.277 369.428C482.974 369.291 480.518 368.434 479.24 365.385C476.776 365.857 474.228 365.508 472.668 362.662C471.908 361.274 473.279 357.542 473.279 357.542C473.279 357.542 470.274 356.365 470.053 355.413C469.161 351.582 473.123 346.877 483.67 342.518C484.665 342.107 495.94 338.508 495.984 338.606C494.872 336.158 493.24 334.442 492.128 331.994C491.351 330.285 490.589 328.225 491.575 326.628C492.303 325.449 493.814 324.944 495.196 325.043C496.578 325.141 497.869 325.737 499.12 326.333C515.763 334.276 531.437 344.085 547.069 353.87C549.431 350.312 551.69 346.215 553.561 342.145"
|
|
342
|
+
stroke="#004799"
|
|
343
|
+
strokeWidth="4.575"
|
|
344
|
+
strokeLinecap="round"
|
|
345
|
+
strokeLinejoin="round"
|
|
346
|
+
/>
|
|
347
|
+
<path
|
|
348
|
+
d="M489.055 268.816C489.117 268.31 489.179 267.803 489.24 267.296"
|
|
349
|
+
stroke="#004799"
|
|
350
|
+
strokeWidth="4.575"
|
|
351
|
+
strokeLinecap="round"
|
|
352
|
+
strokeLinejoin="round"
|
|
353
|
+
/>
|
|
354
|
+
<path
|
|
355
|
+
d="M533.479 270.369L533.668 269.229"
|
|
356
|
+
stroke="#004799"
|
|
357
|
+
strokeWidth="4.575"
|
|
358
|
+
strokeLinecap="round"
|
|
359
|
+
strokeLinejoin="round"
|
|
360
|
+
/>
|
|
361
|
+
<path
|
|
362
|
+
d="M482.852 247.766C483.788 246.495 485.278 245.648 486.849 245.493C488.42 245.338 490.047 245.878 491.214 246.941"
|
|
363
|
+
stroke="#004799"
|
|
364
|
+
strokeWidth="4.575"
|
|
365
|
+
strokeLinecap="round"
|
|
366
|
+
strokeLinejoin="round"
|
|
367
|
+
/>
|
|
368
|
+
<path
|
|
369
|
+
d="M533.693 237.18C535.437 236.136 537.588 235.793 539.571 236.242C541.553 236.691 543.346 237.928 544.47 239.622"
|
|
370
|
+
stroke="#004799"
|
|
371
|
+
strokeWidth="4.575"
|
|
372
|
+
strokeLinecap="round"
|
|
373
|
+
strokeLinejoin="round"
|
|
374
|
+
/>
|
|
375
|
+
<path
|
|
376
|
+
d="M498.376 284.924C504.543 286.763 511.122 287.23 517.49 286.278L518.103 286.306C518.03 287.925 517.911 289.545 517.646 291.128L517.28 291.064C510.884 289.966 503.417 292.427 500.544 298.256C498.156 294.742 497.808 289.481 497.854 284.924H498.376Z"
|
|
377
|
+
fill="white"
|
|
378
|
+
/>
|
|
379
|
+
<path
|
|
380
|
+
d="M497.854 284.924C497.863 283.387 497.937 281.932 497.973 280.642C498.074 277.375 501.67 278.876 503.875 279.05C507.416 279.333 510.957 279.608 514.498 279.892C515.367 279.956 516.282 280.047 516.978 280.56C518.195 281.465 518.25 283.231 518.176 284.741C518.158 285.263 518.131 285.784 518.103 286.306C518.03 287.925 517.911 289.545 517.646 291.128C517.454 292.272 517.179 293.397 516.795 294.495C515.697 297.606 513.492 300.497 510.381 301.605C507.809 302.52 504.79 302.062 502.594 300.424C501.78 299.82 501.102 299.088 500.544 298.256C498.156 294.742 497.808 289.481 497.854 284.924Z"
|
|
381
|
+
stroke="#004799"
|
|
382
|
+
strokeWidth="4.575"
|
|
383
|
+
strokeLinecap="round"
|
|
384
|
+
strokeLinejoin="round"
|
|
385
|
+
/>
|
|
386
|
+
<path
|
|
387
|
+
d="M498.376 284.924C504.543 286.763 511.122 287.23 517.49 286.278"
|
|
388
|
+
stroke="#004799"
|
|
389
|
+
strokeWidth="4.575"
|
|
390
|
+
strokeLinecap="round"
|
|
391
|
+
strokeLinejoin="round"
|
|
392
|
+
/>
|
|
393
|
+
<path
|
|
394
|
+
d="M500.544 298.256C503.418 292.427 510.884 289.966 517.28 291.064"
|
|
395
|
+
stroke="#004799"
|
|
396
|
+
strokeWidth="4.575"
|
|
397
|
+
strokeLinecap="round"
|
|
398
|
+
strokeLinejoin="round"
|
|
399
|
+
/>
|
|
400
|
+
<path
|
|
401
|
+
d="M469.161 422.807C477.795 432.374 481.659 438.573 506.679 438.573C535.166 438.573 563.659 438.498 592.123 437.344C599.989 437.025 608.25 436.531 614.917 432.344C625.966 425.405 629.034 404.773 631.112 391.893C633.847 374.945 636.582 357.996 639.316 341.047C641.632 326.697 643.95 312.323 644.971 297.822C645.476 290.652 645.556 283.013 641.906 276.821C638.001 270.198 629.857 266.358 622.264 267.559"
|
|
402
|
+
stroke="#004799"
|
|
403
|
+
strokeWidth="4.575"
|
|
404
|
+
strokeLinecap="round"
|
|
405
|
+
strokeLinejoin="round"
|
|
406
|
+
/>
|
|
407
|
+
<path
|
|
408
|
+
d="M270.763 521.55H623.149"
|
|
409
|
+
stroke="#004799"
|
|
410
|
+
strokeWidth="4.575"
|
|
411
|
+
strokeLinecap="round"
|
|
412
|
+
strokeLinejoin="round"
|
|
413
|
+
/>
|
|
414
|
+
<path
|
|
415
|
+
d="M583.457 437.672C587.069 467.442 590.682 491.008 594.294 520.778"
|
|
416
|
+
stroke="#004799"
|
|
417
|
+
strokeWidth="4.575"
|
|
418
|
+
strokeLinecap="round"
|
|
419
|
+
strokeLinejoin="round"
|
|
420
|
+
/>
|
|
421
|
+
<path
|
|
422
|
+
d="M594.934 437.367C597.576 467.239 600.218 490.906 602.859 520.778"
|
|
423
|
+
stroke="#004799"
|
|
424
|
+
strokeWidth="4.575"
|
|
425
|
+
strokeLinecap="round"
|
|
426
|
+
strokeLinejoin="round"
|
|
427
|
+
/>
|
|
428
|
+
<path
|
|
429
|
+
d="M405.425 275.229C403.513 279.508 401.601 283.786 399.69 288.065"
|
|
430
|
+
stroke="#004799"
|
|
431
|
+
strokeWidth="4.575"
|
|
432
|
+
strokeLinecap="round"
|
|
433
|
+
strokeLinejoin="round"
|
|
434
|
+
/>
|
|
435
|
+
<path
|
|
436
|
+
d="M418.558 295.386C419.091 295.035 419.624 294.684 420.158 294.333"
|
|
437
|
+
stroke="#004799"
|
|
438
|
+
strokeWidth="4.575"
|
|
439
|
+
strokeLinecap="round"
|
|
440
|
+
strokeLinejoin="round"
|
|
441
|
+
/>
|
|
442
|
+
<path
|
|
443
|
+
d="M473.765 357.565C477.745 354.873 482.079 352.707 486.621 351.141"
|
|
444
|
+
stroke="#004799"
|
|
445
|
+
strokeWidth="4.575"
|
|
446
|
+
strokeLinecap="round"
|
|
447
|
+
strokeLinejoin="round"
|
|
448
|
+
/>
|
|
449
|
+
<path
|
|
450
|
+
d="M479.615 364.681C483.187 362.344 487.05 360.452 491.087 359.063"
|
|
451
|
+
stroke="#004799"
|
|
452
|
+
strokeWidth="4.575"
|
|
453
|
+
strokeLinecap="round"
|
|
454
|
+
strokeLinejoin="round"
|
|
455
|
+
/>
|
|
456
|
+
<path
|
|
457
|
+
d="M493.07 438.66C486.935 468.014 480.802 491.164 474.667 520.519"
|
|
458
|
+
stroke="#004799"
|
|
459
|
+
strokeWidth="4.575"
|
|
460
|
+
strokeLinecap="round"
|
|
461
|
+
strokeLinejoin="round"
|
|
462
|
+
/>
|
|
463
|
+
<path
|
|
464
|
+
d="M481.659 437.378C476.484 466.917 471.309 490.251 466.134 519.789"
|
|
465
|
+
stroke="#004799"
|
|
466
|
+
strokeWidth="4.575"
|
|
467
|
+
strokeLinecap="round"
|
|
468
|
+
strokeLinejoin="round"
|
|
469
|
+
/>
|
|
470
|
+
<path
|
|
471
|
+
d="M532.771 438.839C529.159 468.609 525.546 491.008 521.933 520.778"
|
|
472
|
+
stroke="#004799"
|
|
473
|
+
strokeWidth="4.575"
|
|
474
|
+
strokeLinecap="round"
|
|
475
|
+
strokeLinejoin="round"
|
|
476
|
+
/>
|
|
477
|
+
<path
|
|
478
|
+
d="M521.293 438.533C518.651 468.405 516.01 490.906 513.368 520.778"
|
|
479
|
+
stroke="#004799"
|
|
480
|
+
strokeWidth="4.575"
|
|
481
|
+
strokeLinecap="round"
|
|
482
|
+
strokeLinejoin="round"
|
|
483
|
+
/>
|
|
484
|
+
<path
|
|
485
|
+
d="M474.983 410.635C473.674 412.102 471.239 414.86 469.931 416.327"
|
|
486
|
+
stroke="#004799"
|
|
487
|
+
strokeWidth="4.575"
|
|
488
|
+
strokeLinecap="round"
|
|
489
|
+
strokeLinejoin="round"
|
|
490
|
+
/>
|
|
491
|
+
<path
|
|
492
|
+
d="M466.134 384.883C471.559 384.535 486.621 384.812 486.621 384.812"
|
|
493
|
+
stroke="#004799"
|
|
494
|
+
strokeWidth="4.575"
|
|
495
|
+
strokeLinecap="round"
|
|
496
|
+
strokeLinejoin="round"
|
|
497
|
+
/>
|
|
498
|
+
<path
|
|
499
|
+
d="M138.129 342.076C134.485 339.302 129.822 336.872 125.544 338.505C123.001 339.476 121.207 341.888 120.411 344.49C119.615 347.093 119.444 349.921 119.992 352.587C122.689 365.695 128.709 377.96 138.407 387.183C140.769 389.429 143.632 391.188 146.733 392.193C149.833 393.199 153.354 393.232 156.244 391.724C159.561 389.993 161.646 386.445 162.401 382.781C164.135 374.371 161.484 369.109 157.123 362.459C152.22 354.984 145.242 347.491 138.129 342.076Z"
|
|
500
|
+
fill="white"
|
|
501
|
+
stroke="#004799"
|
|
502
|
+
strokeWidth="4.575"
|
|
503
|
+
strokeLinecap="round"
|
|
504
|
+
strokeLinejoin="round"
|
|
505
|
+
/>
|
|
506
|
+
<defs>
|
|
507
|
+
<linearGradient
|
|
508
|
+
id="paint0_linear_9_179"
|
|
509
|
+
x1="215.118"
|
|
510
|
+
y1="187.778"
|
|
511
|
+
x2="266.526"
|
|
512
|
+
y2="296.304"
|
|
513
|
+
gradientUnits="userSpaceOnUse"
|
|
514
|
+
>
|
|
515
|
+
<stop stop-color="#8AEB8A" />
|
|
516
|
+
<stop offset="1" stop-color="#33A7FF" />
|
|
517
|
+
</linearGradient>
|
|
518
|
+
<linearGradient
|
|
519
|
+
id="paint1_linear_9_179"
|
|
520
|
+
x1="127.714"
|
|
521
|
+
y1="340.584"
|
|
522
|
+
x2="103.211"
|
|
523
|
+
y2="294.577"
|
|
524
|
+
gradientUnits="userSpaceOnUse"
|
|
525
|
+
>
|
|
526
|
+
<stop stop-color="#0077FF" />
|
|
527
|
+
<stop offset="1" stop-color="#33A7FF" />
|
|
528
|
+
</linearGradient>
|
|
529
|
+
<linearGradient
|
|
530
|
+
id="paint2_linear_9_179"
|
|
531
|
+
x1="562.087"
|
|
532
|
+
y1="383.312"
|
|
533
|
+
x2="525.277"
|
|
534
|
+
y2="170.973"
|
|
535
|
+
gradientUnits="userSpaceOnUse"
|
|
536
|
+
>
|
|
537
|
+
<stop stop-color="#F5836C" />
|
|
538
|
+
<stop offset="1" stop-color="#FFDB29" />
|
|
539
|
+
</linearGradient>
|
|
540
|
+
</defs>
|
|
541
|
+
</svg>
|
|
542
|
+
</SvgIcon>
|
|
543
|
+
);
|
|
544
|
+
}
|