@campxdev/shared 1.10.39 → 1.10.41

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.
Files changed (280) hide show
  1. package/antd.customize.less +73 -73
  2. package/exports.ts +19 -19
  3. package/package.json +87 -87
  4. package/src/assets/fonts/avenir/index.ts +13 -13
  5. package/src/assets/fonts/poppins/index.ts +18 -18
  6. package/src/assets/images/index.ts +17 -17
  7. package/src/assets/images/unauth.svg +92 -92
  8. package/src/components/ActionButton.tsx +20 -20
  9. package/src/components/ApplicationProfile/ApplicationProfile.tsx +334 -334
  10. package/src/components/ApplicationProfile/DepartmentFilter.tsx +77 -77
  11. package/src/components/ApplicationProfile/UserProfileRelation.tsx +140 -140
  12. package/src/components/ApplicationProfile/index.tsx +1 -1
  13. package/src/components/ApplicationProfile/services.ts +83 -83
  14. package/src/components/Attachment.tsx +26 -26
  15. package/src/components/AutocompleteSearch/AutocompleteSearch.tsx +57 -57
  16. package/src/components/AutocompleteSearch/index.tsx +1 -1
  17. package/src/components/Breadcrumbs.tsx +72 -72
  18. package/src/components/Card.tsx +98 -98
  19. package/src/components/CardsGrid.tsx +28 -28
  20. package/src/components/ChangePassword.tsx +123 -123
  21. package/src/components/Chips.tsx +81 -81
  22. package/src/components/Detail.tsx +15 -15
  23. package/src/components/DetailsGrid.tsx +52 -52
  24. package/src/components/DividerHeading.tsx +41 -41
  25. package/src/components/DrawerWrapper/DialogWrapper.tsx +67 -67
  26. package/src/components/DrawerWrapper/DrawerTemplate.tsx +53 -53
  27. package/src/components/DrawerWrapper/DrawerWrapper.tsx +53 -53
  28. package/src/components/DropDownButton/AnchorElement.tsx +44 -44
  29. package/src/components/DropDownButton/DropDownButton.tsx +184 -184
  30. package/src/components/DropDownButton/DropdownMenuItem.tsx +122 -122
  31. package/src/components/DropDownButton/index.tsx +1 -1
  32. package/src/components/DropDownButton/styles.tsx +59 -59
  33. package/src/components/ErrorBoundary/ErrorBoundary.tsx +33 -33
  34. package/src/components/ErrorBoundary/ErrorFallback.tsx +240 -240
  35. package/src/components/ErrorBoundary/GlobalNetworkLoadingIndicator.tsx +13 -13
  36. package/src/components/ErrorBoundary/index.tsx +1 -1
  37. package/src/components/ErrorBox.tsx +42 -42
  38. package/src/components/ExcelToJsonInput/ExcelJsonUpload.tsx +50 -50
  39. package/src/components/ExcelToJsonInput/ExcelToJsonInput.tsx +57 -57
  40. package/src/components/ExcelToJsonInput/index.tsx +1 -1
  41. package/src/components/FilterComponents/FilterButton.tsx +56 -56
  42. package/src/components/FilterComponents/SearchBar.tsx +45 -45
  43. package/src/components/FloatingContainer.tsx +33 -33
  44. package/src/components/Form/Form.tsx +147 -147
  45. package/src/components/Form/RenderForm.tsx +189 -189
  46. package/src/components/FullScreenLoader.tsx +19 -19
  47. package/src/components/HookForm/AutoCompleteSearch.tsx +113 -113
  48. package/src/components/HookForm/DatePicker.tsx +40 -40
  49. package/src/components/HookForm/DateTimePicker.tsx +47 -47
  50. package/src/components/HookForm/FormLabel.tsx +14 -14
  51. package/src/components/HookForm/MultiCheckbox.tsx +69 -69
  52. package/src/components/HookForm/MultiSelect.tsx +61 -61
  53. package/src/components/HookForm/RadioGroup.tsx +47 -47
  54. package/src/components/HookForm/SingleCheckbox.tsx +34 -34
  55. package/src/components/HookForm/SingleSelect.tsx +46 -46
  56. package/src/components/HookForm/TextField.tsx +40 -40
  57. package/src/components/HookForm/TimePicker.tsx +40 -40
  58. package/src/components/HookForm/index.ts +23 -23
  59. package/src/components/IconButtons/IconButtons.tsx +137 -137
  60. package/src/components/IconButtons/Icons.tsx +299 -299
  61. package/src/components/IconButtons/assets/edit.svg +4 -4
  62. package/src/components/IconButtons/assets/eye.svg +6 -6
  63. package/src/components/IconButtons/assets/trash.svg +7 -7
  64. package/src/components/IconButtons/index.tsx +8 -8
  65. package/src/components/IconLabel.tsx +37 -37
  66. package/src/components/Image/Image.tsx +45 -45
  67. package/src/components/Image/index.tsx +1 -1
  68. package/src/components/ImageUpload.tsx +105 -98
  69. package/src/components/Input/AsyncSearchSelect/AsyncSearchSelect.tsx +216 -216
  70. package/src/components/Input/AsyncSearchSelect/index.tsx +1 -1
  71. package/src/components/Input/AsyncSearchSelect/styles.tsx +105 -105
  72. package/src/components/Input/AutoCompleteSearch.tsx +121 -121
  73. package/src/components/Input/DatePicker.tsx +94 -94
  74. package/src/components/Input/DateRangePicker.tsx +105 -105
  75. package/src/components/Input/DateTimePicker.tsx +87 -87
  76. package/src/components/Input/FormLabel.tsx +21 -21
  77. package/src/components/Input/MultiCheckbox.tsx +64 -64
  78. package/src/components/Input/MultiSelect.tsx +161 -161
  79. package/src/components/Input/RadioGroup.tsx +110 -110
  80. package/src/components/Input/SingleCheckbox.tsx +78 -78
  81. package/src/components/Input/SingleSelect.tsx +104 -104
  82. package/src/components/Input/TextField.tsx +46 -46
  83. package/src/components/Input/TimePicker.tsx +77 -77
  84. package/src/components/Input/index.ts +26 -26
  85. package/src/components/Input/types.ts +3 -3
  86. package/src/components/Institutions/InsititutionsDialog.tsx +78 -78
  87. package/src/components/Institutions/InsititutionsNotAssignedDialog .tsx +12 -12
  88. package/src/components/Institutions/InstitutionsDropdown.tsx +33 -33
  89. package/src/components/Institutions/index.tsx +1 -1
  90. package/src/components/Institutions/services.ts +12 -12
  91. package/src/components/JsonPreview.tsx +7 -7
  92. package/src/components/LabelValue.tsx +21 -21
  93. package/src/components/Layout/ChangePassword.tsx +49 -49
  94. package/src/components/Layout/Header/AppHeader.tsx +109 -109
  95. package/src/components/Layout/Header/AppsMenu.tsx +132 -132
  96. package/src/components/Layout/Header/HeaderActions/CogWheelMenu.tsx +33 -33
  97. package/src/components/Layout/Header/HeaderActions/FreshChatButton.tsx +61 -61
  98. package/src/components/Layout/Header/HeaderActions/FreshDeskHelpButton.tsx +53 -53
  99. package/src/components/Layout/Header/HeaderActions/HeaderActions.tsx +29 -29
  100. package/src/components/Layout/Header/HeaderActions/UserBox.tsx +74 -74
  101. package/src/components/Layout/Header/Notification.tsx +13 -13
  102. package/src/components/Layout/Header/Search/SearchButton.tsx +69 -69
  103. package/src/components/Layout/Header/Search/SearchDialog.tsx +178 -178
  104. package/src/components/Layout/Header/applications.ts +101 -101
  105. package/src/components/Layout/Header/assets/campx_square_small.svg +8 -8
  106. package/src/components/Layout/Header/assets/commuteX.png +0 -0
  107. package/src/components/Layout/Header/assets/commutex.svg +14 -14
  108. package/src/components/Layout/Header/assets/commutexSmall.svg +11 -11
  109. package/src/components/Layout/Header/assets/enroll.svg +14 -14
  110. package/src/components/Layout/Header/assets/enrollx.svg +14 -14
  111. package/src/components/Layout/Header/assets/exams_small.svg +11 -11
  112. package/src/components/Layout/Header/assets/examsx.svg +14 -14
  113. package/src/components/Layout/Header/assets/hostel_small.svg +13 -13
  114. package/src/components/Layout/Header/assets/hostelx.svg +13 -13
  115. package/src/components/Layout/Header/assets/index.ts +37 -37
  116. package/src/components/Layout/Header/assets/libraryx.svg +12 -12
  117. package/src/components/Layout/Header/assets/pay_small.svg +15 -15
  118. package/src/components/Layout/Header/assets/payx.svg +19 -19
  119. package/src/components/Layout/Header/assets/people_small.svg +9 -9
  120. package/src/components/Layout/Header/assets/peoplex.svg +12 -12
  121. package/src/components/Layout/Header/assets/squarex.svg +12 -12
  122. package/src/components/Layout/Header/icons.tsx +57 -57
  123. package/src/components/Layout/Header/index.tsx +1 -1
  124. package/src/components/Layout/Header/styles.tsx +133 -133
  125. package/src/components/Layout/Helmet.tsx +129 -129
  126. package/src/components/Layout/LayoutWrapper.tsx +28 -28
  127. package/src/components/Layout/SideMenuHeader.tsx +29 -29
  128. package/src/components/Layout/SideNav.tsx +168 -168
  129. package/src/components/Layout/Tickets/HelpWidget/HelpWidget.tsx +273 -273
  130. package/src/components/Layout/Tickets/HelpWidget/styles.tsx +94 -94
  131. package/src/components/Layout/Tickets/MyTickets.tsx +72 -72
  132. package/src/components/Layout/Tickets/TicketDetails.tsx +65 -65
  133. package/src/components/Layout/Tickets/TimeLine.tsx +64 -64
  134. package/src/components/Layout/Tickets/index.tsx +1 -1
  135. package/src/components/Layout/Tickets/services.ts +11 -11
  136. package/src/components/Layout/Tickets/styles.tsx +136 -136
  137. package/src/components/LinearProgress.tsx +19 -19
  138. package/src/components/ListItemButton.tsx +95 -95
  139. package/src/components/LoginForm.tsx +274 -274
  140. package/src/components/MediaRow/MediaRow.tsx +67 -67
  141. package/src/components/MediaRow/index.tsx +1 -1
  142. package/src/components/ModalButtons/DialogButton.tsx +133 -133
  143. package/src/components/ModalButtons/DrawerButton.tsx +118 -118
  144. package/src/components/ModalButtons/PopoverButton.tsx +99 -99
  145. package/src/components/ModalButtons/index.tsx +4 -4
  146. package/src/components/MyProfile/Education/Education.tsx +47 -47
  147. package/src/components/MyProfile/Education/EducationCard.tsx +62 -62
  148. package/src/components/MyProfile/Education/EducationForm.tsx +117 -117
  149. package/src/components/MyProfile/Education/Styles.tsx +27 -27
  150. package/src/components/MyProfile/Experience/Experience.tsx +47 -47
  151. package/src/components/MyProfile/Experience/ExperienceCard.tsx +65 -65
  152. package/src/components/MyProfile/Experience/ExperienceForm.tsx +134 -134
  153. package/src/components/MyProfile/Experience/Styles.tsx +27 -27
  154. package/src/components/MyProfile/FileUpload.tsx +69 -69
  155. package/src/components/MyProfile/MyProfile.tsx +161 -152
  156. package/src/components/MyProfile/NoDataSection.tsx +27 -27
  157. package/src/components/MyProfile/PaperPublication/Authors.tsx +88 -88
  158. package/src/components/MyProfile/PaperPublication/PaperPublications.tsx +52 -52
  159. package/src/components/MyProfile/PaperPublication/PublicationCard.tsx +80 -80
  160. package/src/components/MyProfile/PaperPublication/PublicationsForm.tsx +286 -286
  161. package/src/components/MyProfile/PaperPublication/Styles.tsx +51 -51
  162. package/src/components/MyProfile/ResearchProjects/FileRender.tsx +53 -0
  163. package/src/components/MyProfile/ResearchProjects/ResearchProjectCard.tsx +69 -0
  164. package/src/components/MyProfile/ResearchProjects/ResearchProjectData.tsx +36 -0
  165. package/src/components/MyProfile/ResearchProjects/ResearchProjectForm.tsx +475 -0
  166. package/src/components/MyProfile/ResearchProjects/ResearchProjects.tsx +55 -0
  167. package/src/components/MyProfile/ResearchProjects/Styles.tsx +26 -0
  168. package/src/components/MyProfile/ResearchProjects/services.tsx +42 -0
  169. package/src/components/MyProfile/StyledTabsContainer.tsx +53 -53
  170. package/src/components/MyProfile/Styles.tsx +128 -128
  171. package/src/components/MyProfile/Workshop/Styles.tsx +38 -38
  172. package/src/components/MyProfile/Workshop/Workshop.tsx +49 -49
  173. package/src/components/MyProfile/Workshop/WorkshopCard.tsx +64 -64
  174. package/src/components/MyProfile/Workshop/WorkshopData.tsx +36 -36
  175. package/src/components/MyProfile/Workshop/WorkshopForm.tsx +215 -215
  176. package/src/components/MyProfile/index.ts +1 -1
  177. package/src/components/MyProfile/service.ts +58 -58
  178. package/src/components/NoDataIllustration.tsx +35 -35
  179. package/src/components/PageContent.tsx +12 -12
  180. package/src/components/PageHeader.tsx +55 -55
  181. package/src/components/PageNotFound.tsx +26 -26
  182. package/src/components/PopupConfirm/ConfirmContextProvider.tsx +40 -40
  183. package/src/components/PopupConfirm/PopupConfirm.tsx +71 -71
  184. package/src/components/PopupConfirm/index.tsx +1 -1
  185. package/src/components/PopupConfirm/useConfirm.ts +47 -47
  186. package/src/components/ResetPassword.tsx +107 -107
  187. package/src/components/Row.tsx +24 -24
  188. package/src/components/Spinner.tsx +18 -18
  189. package/src/components/StepsHeader/StepsHeader.tsx +115 -115
  190. package/src/components/StepsHeader/index.tsx +1 -1
  191. package/src/components/StyledTableContainer.tsx +33 -33
  192. package/src/components/SwitchButton.tsx +41 -41
  193. package/src/components/Table.tsx +42 -42
  194. package/src/components/Tables/BasicTable/Table.tsx +198 -198
  195. package/src/components/Tables/BasicTable/TableFooter.tsx +86 -86
  196. package/src/components/Tables/BasicTable/index.tsx +1 -1
  197. package/src/components/Tables/ReactTable/BatchActionsHeader.tsx +58 -58
  198. package/src/components/Tables/ReactTable/ReactTable.tsx +295 -295
  199. package/src/components/Tables/ReactTable/RenderTableBody.tsx +49 -49
  200. package/src/components/Tables/ReactTable/index.tsx +1 -1
  201. package/src/components/Tables/ReactTable/react-table-config.d.ts +128 -128
  202. package/src/components/Tables/common/NoRecordsFound.tsx +31 -31
  203. package/src/components/Tables/common/TableStats.tsx +22 -22
  204. package/src/components/Tables/common/icons.tsx +50 -50
  205. package/src/components/Tables/common/no-data-illu.svg +23 -23
  206. package/src/components/Tables/common/styles.tsx +170 -170
  207. package/src/components/Tables/common/types.ts +57 -57
  208. package/src/components/Tabs/NavigationTabs.tsx +80 -80
  209. package/src/components/Tabs/Tabs.tsx +53 -53
  210. package/src/components/Tabs/TabsContainer.tsx +56 -56
  211. package/src/components/Tabs/index.tsx +1 -1
  212. package/src/components/Tabs/styles.tsx +55 -55
  213. package/src/components/ToastContainer/ToastContainer.tsx +57 -57
  214. package/src/components/ToastContainer/index.tsx +1 -1
  215. package/src/components/UploadButton/UploadButton.tsx +127 -127
  216. package/src/components/UploadButton/index.tsx +1 -1
  217. package/src/components/UploadButton/types.ts +20 -20
  218. package/src/components/UploadDocument.tsx +108 -108
  219. package/src/components/UploadFileDialog/UploadFileDialog.tsx +256 -256
  220. package/src/components/UploadFileDialog/index.tsx +1 -1
  221. package/src/components/index.ts +110 -110
  222. package/src/config/axios.ts +80 -80
  223. package/src/config/axiosEvaluator.ts +53 -53
  224. package/src/config/axiosXTenant.ts +57 -57
  225. package/src/constants/UIConstants.ts +128 -124
  226. package/src/constants/formValidations.ts +6 -6
  227. package/src/constants/index.ts +5 -5
  228. package/src/constants/isDevelopment.ts +4 -4
  229. package/src/constants/permissions.ts +67 -67
  230. package/src/constants/validateMessages.ts +12 -12
  231. package/src/contexts/LoginFormProvider.tsx +37 -37
  232. package/src/contexts/Providers.tsx +73 -73
  233. package/src/contexts/PublicProviders.tsx +30 -30
  234. package/src/contexts/QueryClientProvider.tsx +22 -22
  235. package/src/contexts/RootModal.tsx +76 -76
  236. package/src/hooks/index.ts +5 -5
  237. package/src/hooks/useAuth.ts +259 -259
  238. package/src/hooks/useExternalScript.ts +38 -38
  239. package/src/hooks/useFetch.ts +53 -53
  240. package/src/hooks/useFilters.ts +83 -83
  241. package/src/hooks/useRouter.ts +31 -31
  242. package/src/layouts/Components/DashBoardMenu.tsx +232 -232
  243. package/src/layouts/Components/icons/index.tsx +403 -403
  244. package/src/layouts/Components/styles.tsx +74 -74
  245. package/src/layouts/ComponentsLayout.tsx +3 -3
  246. package/src/permissions/PageWithPermission.tsx +18 -18
  247. package/src/permissions/PermissionDeniedPage.tsx +16 -16
  248. package/src/permissions/ValidateAccess.tsx +18 -18
  249. package/src/permissions/index.ts +2 -2
  250. package/src/react-app-env.d.ts +1 -1
  251. package/src/shared-state/AssetsStore.ts +15 -15
  252. package/src/shared-state/InstitutionsStore.ts +8 -8
  253. package/src/shared-state/PermissionsStore.ts +1299 -1276
  254. package/src/shared-state/UserStore.ts +15 -15
  255. package/src/shared-state/index.ts +4 -4
  256. package/src/sitemap/enrollx.ts +52 -52
  257. package/src/sitemap/exams_sitemap.ts +172 -172
  258. package/src/sitemap/payments.ts +128 -128
  259. package/src/sitemap/sitemap.ts +26 -26
  260. package/src/sitemap/square.ts +222 -222
  261. package/src/theme/App.less +3 -3
  262. package/src/theme/MuiThemeProvider.tsx +18 -18
  263. package/src/theme/customCssBaseline.ts +135 -135
  264. package/src/theme/index.css +28 -28
  265. package/src/theme/muiTheme.ts +597 -597
  266. package/src/theme/theme.d.ts +77 -77
  267. package/src/utils/adminAxios.ts +15 -15
  268. package/src/utils/alphabet.ts +23 -23
  269. package/src/utils/arrayPadEnd.ts +3 -3
  270. package/src/utils/buffertoCSV.ts +11 -11
  271. package/src/utils/formatCurrency.ts +9 -9
  272. package/src/utils/getUrlParams.ts +5 -5
  273. package/src/utils/index.ts +8 -8
  274. package/src/utils/logout.ts +25 -25
  275. package/src/utils/ordinalSuffixOf.ts +14 -14
  276. package/src/utils/romanize.ts +40 -40
  277. package/src/utils/withRouteWrapper.tsx +25 -25
  278. package/src/utils/withSuspense.tsx +6 -6
  279. package/styled-components.tsx +60 -60
  280. package/tsconfig.json +21 -21
@@ -1,92 +1,92 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="401.466" height="318.456" viewBox="0 0 401.466 318.456">
2
- <defs>
3
- <clipPath id="clip-path">
4
- <path id="Path_24941" data-name="Path 24941" d="M180.57,259.19s-16.11-3.05-25.86,15.38c-8.22,15.51-42.18,97.13-52.7,122.51h42c8.87-40.35,26-113.81,33.44-116.55,10.29-3.8,25.94.27,25.94.27Z" fill="#ffaf20" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
5
- </clipPath>
6
- </defs>
7
- <g id="_401_Error_Unauthorized-bro" data-name="401 Error Unauthorized-bro" transform="translate(-50.533 -79.258)">
8
- <g id="freepik--background-simple--inject-80">
9
- <path id="Path_24902" data-name="Path 24902" d="M51.18,296.87s6.9,60.2,58.06,85.92,101.27.7,147.28-5.33c24.09-3.15,46.44,8.69,70.06,11.17,75.54,7.93,134.82-81.08,124.18-146.56-9.2-56.69-45.43-96.7-111.43-125.24S227.93,65.57,151.26,92.41,45.71,218.93,51.18,296.87Z" fill="#ffaf20"/>
10
- <path id="Path_24903" data-name="Path 24903" d="M51.18,296.87s6.9,60.2,58.06,85.92,101.27.7,147.28-5.33c24.09-3.15,46.44,8.69,70.06,11.17,75.54,7.93,134.82-81.08,124.18-146.56-9.2-56.69-45.43-96.7-111.43-125.24S227.93,65.57,151.26,92.41,45.71,218.93,51.18,296.87Z" fill="#fff" opacity="0.8"/>
11
- </g>
12
- <g id="freepik--Window--inject-80">
13
- <path id="Path_24904" data-name="Path 24904" d="M304.31,383.86H449.6V150.92H304.31Zm75.81-56h63.76V322.2H380.12v-52h63.76v-5.64H380.12v-50.9h63.76V208H380.12V156.56H444.3V378.21H380.12Zm-70.5-171.29h65.19V208H309.62Zm0,57.1h65.19v50.91H309.62Zm0,56.55h65.19v52H309.62Zm0,57.64h65.19v50.36H309.62Z" fill="#b5b5b5"/>
14
- <path id="Path_24905" data-name="Path 24905" d="M449.11,145.58a72.93,72.93,0,0,0-145.26,0l-.34,3.81H449.45ZM311.26,142.4a65.62,65.62,0,0,1,16.53-34.85l41,34.85Zm61-6.17L332.8,102.64A65.6,65.6,0,0,1,372.29,86.4Zm7-49.91a65.71,65.71,0,0,1,37.88,13.82l-37.88,35.58Zm3.09,56.08,40.08-37.65A65.52,65.52,0,0,1,441.7,142.4Z" fill="#b5b5b5"/>
15
- </g>
16
- <g id="freepik--Plants--inject-80">
17
- <path id="Path_24906" data-name="Path 24906" d="M134,302.73a16.92,16.92,0,0,0-8.29,5.07,36.208,36.208,0,0,0-5,6.8c-.9,1.56-1.72,3.17-2.48,4.8-.49,1.06-.86,2.39-1.33,3.61-.67,1.08-1.33,2.19-1.9,3.23,2-7.21,8.46-20.48,8.57-24.25.13-4.1-3.81,2-6,10.35a116.288,116.288,0,0,0-2.82,14.39c-.23.43-.43.84-.61,1.22-.4.84-1.09,2.27-2,4.13,2-6.12,2.73-13.39,1.52-14.29-1.75-1.3-2.38,1.89-2.37,7.78A50.68,50.68,0,0,1,109.22,338c-1.1,2.18-2.33,4.58-3.65,7.11,1.38-4.41,2.18-10.76,2.94-15.52,1.1-6.92.63-9.08-1.61-5.75s-1.85,8.15-1.32,14.05a24.58,24.58,0,0,1-2,11c-1.69,3.21-3.48,6.52-5.29,9.78a33.36,33.36,0,0,0,2.88-10.57c.78-8-.25-15.35-2.1-13.27s-.76,7.65-1,14.43a77,77,0,0,1-1.39,12.22l-.56,1A33.45,33.45,0,0,0,96.7,352c.37-1.34.24-2.19-.21-2.6-.06-1.51.06-3.78-.58-4.93-1.62-2.89-3.39,1-3.41,2.54a25.881,25.881,0,0,0,.24,3.51,9.3,9.3,0,0,0-1.62,2c-.24.41-.5.87-.77,1.37,0-.48.06-1,.08-1.46a7.17,7.17,0,0,0-.8-3.77,23.54,23.54,0,0,0,2.09-6.15,3.36,3.36,0,0,0-.18-2.13,1.74,1.74,0,0,0-2.59-.7c-3.08,1.63-3.9,5.55-4.25,8.69a52.209,52.209,0,0,1-1.6,8c-.63,2.37-1.18,4.51-1.54,6a42.842,42.842,0,0,0-1-4.73c-.35-1.29-.68-2.54-1-3.74a25.07,25.07,0,0,1,2.48-12.67c3.64-7.48,6.27-11,3.75-11.13s-6.18,3.77-6.7,9.93a68.919,68.919,0,0,0-.24,11.25c-.8-2.87-1.59-5.57-2.41-8.32a18.19,18.19,0,0,1,.45-9.15c1.72-5.08,6.85-14.1,4.15-13.39s-5.94,5.94-6.3,11.48a30.14,30.14,0,0,0,.95,8.6c-.59-1.93-1.21-3.92-1.88-6-.28-.9-.58-1.85-.87-2.84a1.117,1.117,0,0,0-.08-.5,14.06,14.06,0,0,1,1.48-8.33c2.58-4.64,7.38-8.62,4.55-9.69s-7.12,6.49-7.36,10.27a18,18,0,0,0,.34,4.28c-.11-.29-.23-.59-.35-.88-.61-2.16-1.2-4.3-1.72-6.2a17.34,17.34,0,0,1,1.64-8.11c2.52-5.78,5.73-12.39,2.46-10.71-2.64,1.36-5.49,9.16-4.93,15.74-.22-.86-.42-1.6-.58-2.2-.43-3.77-1.24-12.65,0-17.94.81-3.53,2.13-6.87,2.54-10.5a2.23,2.23,0,0,0-.06-1.12c-.88-2.19-3.73,2.07-4.2,2.77a16.93,16.93,0,0,0-2.59,9.37,35.89,35.89,0,0,0,1,8.38c.4,1.75.89,3.49,1.46,5.2.36,1.11,1,2.34,1.49,3.54.24,1.25.52,2.52.81,3.66C65.38,312,61,297.88,58.55,295c-2.71-3.08-1.4,4.09,2.66,11.68A116.311,116.311,0,0,0,69,319.16c.13.47.26.91.39,1.31.28.89.75,2.41,1.35,4.39-2.75-5.81-7.14-11.65-8.64-11.49-2.16.24-.44,3,3.58,7.31a51,51,0,0,1,6.93,10.48c.68,2.35,1.42,4.94,2.18,7.69-2-4.17-5.75-9.36-8.44-13.35-3.92-5.81-5.74-7.07-5.11-3.11s4.21,7.22,8.64,11.17A24.74,24.74,0,0,1,75.9,343c.95,3.49,1.9,7.14,2.8,10.76a33.39,33.39,0,0,0-5.1-9.7c-4.9-6.4-10.67-11.06-10.6-8.28s4.66,6.11,9.13,11.2a75.111,75.111,0,0,1,7.32,9.89c.09.36.18.73.26,1.09-2-3.67-5.19-6.66-8.29-9.42-1.09-1-2.74-3.1-4.15-3.55-3.14-1-1.79,3.05-.75,4.18,3.36,3.68,8.1,5.95,11.21,9.82a34,34,0,0,1,3.14,4.64c.22,1.27.38,2.46.51,3.57a48.679,48.679,0,0,0-3.75-3.2c-3.8-2.56-6-6.07-8.93-9.45-.88-1-2.37-2.25-3.78-2.31-2-.09-2.59,2-2,3.65,2.31,6.8,11,7.1,16.09,10.63a14.819,14.819,0,0,1,2.57,2.08,43.191,43.191,0,0,1,.17,6.32H70.06v4.87h3.47l2.82,17.34H99.71l2.82-17.34H106v-4.87H88.43c.8-1,1.66-2,2.52-3.14l3.7.11s12.84.56,17.55-2,.51-5-4-3.69-13.37,5.31-15.33,5.25l-1.66-.05c.92-1.19,1.84-2.43,2.71-3.69a86,86,0,0,0,10.41-3.32c3.69-1.46,8-2.64,11.14-5.11a3.4,3.4,0,0,0,1.32-1.68,1.74,1.74,0,0,0-1.41-2.27c-3.37-.91-6.65,1.39-9,3.45a53,53,0,0,1-6.63,4.76c-2.08,1.29-3.94,2.49-5.21,3.31.93-1.38,1.79-2.77,2.52-4.12.63-1.18,1.24-2.31,1.82-3.42a25.08,25.08,0,0,1,10.46-7.57c7.76-3,12.07-3.74,10.34-5.57s-7.1-1.47-11.68,2.68a68.1,68.1,0,0,0-7.86,8.06c1.37-2.64,2.65-5.16,3.92-7.73a18.23,18.23,0,0,1,6.58-6.38c4.72-2.53,14.62-5.63,12.16-6.95s-8.39.28-12.43,4.09a30,30,0,0,0-5.18,6.94c.89-1.82,1.79-3.7,2.74-5.69.41-.86.85-1.75,1.3-2.67.1-.14.2-.28.29-.43a14,14,0,0,1,6.77-5.07c5-1.63,11.28-1.27,9.93-4s-9.63-.11-12.39,2.48a18.709,18.709,0,0,0-2.67,3.36c.12-.28.24-.58.35-.88,1-2,2-4,3-5.7a17.32,17.32,0,0,1,6.73-4.81c5.79-2.5,12.65-5.15,9.11-6.15-2.86-.81-10.27,2.94-14.34,8.14l1.07-2c2.26-3.06,7.73-10.1,12.23-13.13,3-2,6.25-3.57,9-5.94a2.37,2.37,0,0,0,.72-.86C139.85,301.36,134.86,302.53,134,302.73ZM81.72,363.35c.75-1.15,2.08-3.27,3.55-6A37.867,37.867,0,0,0,86.82,361c-1.36,2.79-2.6,5.22-3.32,5.84l-1.24,1.1C82.12,366.41,81.94,364.87,81.72,363.35Zm8.5,8.09a39.611,39.611,0,0,1-2.94,3.47H82.72c-.07-1.86-.2-4.14-.42-6.57l2.78-2.45s1.22-1,2.86-2.61a23.5,23.5,0,0,1,1.83,4.88,14.24,14.24,0,0,1,.45,3.28ZM94,361.82a34.53,34.53,0,0,1-.87,5.54c-.71,1.08-1.4,2.06-2.06,3-.06-1.68-.51-4.71-.56-4.92A20.639,20.639,0,0,1,90,361.3a54.375,54.375,0,0,0,3.78-4.3,22.5,22.5,0,0,1,.22,4.82Z" fill="#263238"/>
18
- </g>
19
- <g id="freepik--Device--inject-80">
20
- <path id="Path_24907" data-name="Path 24907" d="M368,363.31l16.19,26.07A5,5,0,0,1,380,397H346.9a5,5,0,0,0,4.25-7.6l-15.66-25.51Z" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
21
- <path id="Path_24908" data-name="Path 24908" d="M368.02,363.31l-32.53.58,6.02,9.81h32.96Z" fill="#263238" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
22
- <rect id="Rectangle_6626" data-name="Rectangle 6626" width="138.27" height="116.78" rx="2.91" transform="translate(416.82 369.12) rotate(180)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
23
- <rect id="Rectangle_6627" data-name="Rectangle 6627" width="138.27" height="116.78" rx="2.91" transform="translate(411.59 369.12) rotate(180)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
24
- <path id="Path_24909" data-name="Path 24909" d="M278,252.34H407a4.65,4.65,0,0,1,4.64,4.65V348.2H273.32V257a4.65,4.65,0,0,1,4.68-4.66Z" fill="#263238" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
25
- <rect id="Rectangle_6628" data-name="Rectangle 6628" width="126.65" height="84.82" transform="translate(405.78 341.81) rotate(180)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
26
- <rect id="Rectangle_6629" data-name="Rectangle 6629" width="4.02" height="1.34" transform="translate(237.74 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
27
- <rect id="Rectangle_6630" data-name="Rectangle 6630" width="4.02" height="1.34" transform="translate(243.1 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
28
- <rect id="Rectangle_6631" data-name="Rectangle 6631" width="4.02" height="1.34" transform="translate(248.47 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
29
- <rect id="Rectangle_6632" data-name="Rectangle 6632" width="4.02" height="1.34" transform="translate(253.83 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
30
- <rect id="Rectangle_6633" data-name="Rectangle 6633" width="4.02" height="1.34" transform="translate(259.19 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
31
- <rect id="Rectangle_6634" data-name="Rectangle 6634" width="4.02" height="1.34" transform="translate(264.56 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
32
- <rect id="Rectangle_6635" data-name="Rectangle 6635" width="4.02" height="1.34" transform="translate(269.92 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
33
- <rect id="Rectangle_6636" data-name="Rectangle 6636" width="4.02" height="1.34" transform="translate(275.28 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
34
- <rect id="Rectangle_6637" data-name="Rectangle 6637" width="4.02" height="1.34" transform="translate(280.65 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
35
- <rect id="Rectangle_6638" data-name="Rectangle 6638" width="4.02" height="1.34" transform="translate(286.01 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
36
- <rect id="Rectangle_6639" data-name="Rectangle 6639" width="4.02" height="1.34" transform="translate(291.37 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
37
- <rect id="Rectangle_6640" data-name="Rectangle 6640" width="4.02" height="1.34" transform="translate(296.74 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
38
- <rect id="Rectangle_6641" data-name="Rectangle 6641" width="4.02" height="1.34" transform="translate(302.1 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
39
- <rect id="Rectangle_6642" data-name="Rectangle 6642" width="4.02" height="1.34" transform="translate(307.46 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
40
- <rect id="Rectangle_6643" data-name="Rectangle 6643" width="4.02" height="1.34" transform="translate(312.83 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
41
- <rect id="Rectangle_6644" data-name="Rectangle 6644" width="4.02" height="1.34" transform="translate(318.19 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
42
- <rect id="Rectangle_6645" data-name="Rectangle 6645" width="4.02" height="1.34" transform="translate(323.55 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
43
- <rect id="Rectangle_6646" data-name="Rectangle 6646" width="4.02" height="1.34" transform="translate(328.92 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
44
- <rect id="Rectangle_6647" data-name="Rectangle 6647" width="4.02" height="1.34" transform="translate(334.28 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
45
- <rect id="Rectangle_6648" data-name="Rectangle 6648" width="4.02" height="1.34" transform="translate(339.64 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
46
- <rect id="Rectangle_6649" data-name="Rectangle 6649" width="4.02" height="1.34" transform="translate(345.01 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
47
- <rect id="Rectangle_6650" data-name="Rectangle 6650" width="116.29" height="4.34" transform="translate(235.66 392.7)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
48
- <rect id="Rectangle_6651" data-name="Rectangle 6651" width="28.37" height="4.34" transform="translate(323.59 392.7)" fill="#263238" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
49
- </g>
50
- <g id="freepik--Text--inject-80">
51
- <path id="Path_24910" data-name="Path 24910" d="M294.25,309.48l17.8-42.09h10.68v42.09h4.62v8.9h-4.62v11.3h-9.61v-11.3H294.25Zm18.87,0v-23.4l-9.88,23.4Z" fill="#263238"/>
52
- <path id="Path_24911" data-name="Path 24911" d="M331,282.34c0-10,5.25-15.66,14.86-15.66s14.86,5.69,14.86,15.66v32.39c0,10-5.25,15.66-14.86,15.66S331,324.69,331,314.73Zm9.79,33c0,4.45,2,6.14,5.07,6.14s5.08-1.69,5.08-6.14V281.72c0-4.45-2-6.14-5.08-6.14s-5.07,1.69-5.07,6.14Z" fill="#263238"/>
53
- <path id="Path_24912" data-name="Path 24912" d="M373.09,275.22c7.57,0,9.26-3.65,10.77-7.83h6.58v62.29h-9.78V282.16h-7.57Z" fill="#263238"/>
54
- </g>
55
- <g id="freepik--Character--inject-80">
56
- <path id="Path_24925" data-name="Path 24925" d="M253.37,203.86a30.66,30.66,0,0,1,2.8,13.32c0,8-3.85,15.76-2.8,18.92s1.41,14.26-.76,16.43c-1.24,1.24-6.5-.36-6.5-.36s-1.41,4.2-2.81,4.2-5.25-.7-6.65,1.75.7,5.26-.7,6.66a19,19,0,0,1-3.16,2.45s-3.71,3.39-6.17,3.39-14.55-8.53-14.55-8.53S202.84,268,199,270.82s-6,12.42-6,12.42-20.78-14.75-17.27-28.41,44.7-33.1,58-40.81S253.37,203.86,253.37,203.86Z" fill="#b2b2b2" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
57
- <path id="Path_24926" data-name="Path 24926" d="M250.22,232.24s1.18-5.43-3.72-5.43" fill="none" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.297"/>
58
- <path id="Path_24927" data-name="Path 24927" d="M245.56,221.21c-.49-.93,4.84-4,8.63-.7" fill="none" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.297"/>
59
- <path id="Path_24928" data-name="Path 24928" d="M249.62,232.08c-.61,1.27-1.67,2-2.37,1.7s-.76-1.64-.15-2.91,1.68-2,2.37-1.71S250.24,230.8,249.62,232.08Z" fill="#263238"/>
60
- <path id="Path_24929" data-name="Path 24929" d="M213.61,246.73a2.78,2.78,0,1,1-2.78-2.78,2.78,2.78,0,0,1,2.78,2.78Z" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
61
- <line id="Line_712" data-name="Line 712" y2="9.81" transform="translate(210.83 249.51)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
62
- <path id="Path_24930" data-name="Path 24930" d="M210.67,256.05s-4.25,12.1-3.6,13.08,7.69.49,8.18,0S210.67,256.05,210.67,256.05Z" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
63
- <path id="Path_24931" data-name="Path 24931" d="M229.42,301.44s8.73,5.64,6.48,5.92a11.72,11.72,0,0,1-7.32-1.69,12.67,12.67,0,0,0-6.77-1.69h-5.63s2.25-4,5.07-4.51S229.42,301.44,229.42,301.44Z" fill="#b2b2b2" stroke="#263238" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1.148"/>
64
- <path id="Path_24932" data-name="Path 24932" d="M228.86,296.93s11.83,5.64,11.55,7.05-.85,1.69-3.95,1.41-9.29-3.95-9.29-3.95l-7-1.13S224.35,294.12,228.86,296.93Z" fill="#b2b2b2" stroke="#263238" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1.148"/>
65
- <path id="Path_24933" data-name="Path 24933" d="M199.27,300.31s11.27-5.91,13.81-7.32,7.61-.85,11.27-.85,15.5.28,16.06,2.54-3.38,2.82-7.33,2.82-7.32-.57-10.42,2.81a27.689,27.689,0,0,0-4.79,7.89,55,55,0,0,0,9,1.13c3.66,0,9.29,1.41,8.73,3.1s-2,3.38-6.48,2.82-10.71.28-15.5.56-12.11-1.13-12.11-1.13Z" fill="#b2b2b2" stroke="#263238" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1.148"/>
66
- <path id="Path_24934" data-name="Path 24934" d="M203.41,280.8s3,0,.91,6.66S201,306.81,201,306.81l-9.68-32.06Z" fill="#545454" stroke="#263238" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1.148"/>
67
- <path id="Path_24935" data-name="Path 24935" d="M194.07,397.08a28.765,28.765,0,0,0,1.82-2.94c6.14-11.56,8.31-47.68,7.23-71.53s-1.86-37.79-6.55-46.46c0,0-11.1-12.51-22.3-17.93s-31.85,10.2-42,25.74S100,377.89,93.47,392.7a11.78,11.78,0,0,0-1,4.38Z" fill="#ffaf20" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
68
- <path id="Path_24936" data-name="Path 24936" d="M287.26,334.29a40.838,40.838,0,0,0,5.67-.15c.87,0,10.39-1.4,7.83-4-.79-.79-3.12-.7-4.14-.83A67.439,67.439,0,0,0,281,329l6.54-2.73a31.776,31.776,0,0,1,4.2-.26h2.63c1.59,0,5.53-.56,6.32-2.14,1.27-2.54-9.59-3.69-11.16-3.69s-9.66,1-10.09,1l-1.61.32h-.29s7.58-2.17,10.83-2.17,7.59,1.09,8.67-2.17-7.22-2.16-14.45-1.8-12.28,4.69-16.61,8.31-12.65,19.14-21.68,27.09S216.48,366,216.48,366s-10.86-61.46-15.55-79.16-17-22.29-17-22.29l-16.75,54.71c2.12,11.44,15,71,15.67,72.39a25.34,25.34,0,0,0,3.18,5.46h42a59.8,59.8,0,0,0,5.35-5.1c5.78-6.15,25.29-40.1,25.29-40.1s2.17-.36,7.23-3.26c3.28-1.87,8.41-6.82,12.39-5.93a40.481,40.481,0,0,0,9.95.61c2.72-.08,5.94-.2,8-2.26,1.69-1.69-1.85-1.38-2.8-1.46-3-.25-5.75-1.4-8.63-2.15-.91-.24-4.31-1.53-5.19-1.09a27.456,27.456,0,0,0,2.53-1.44C283.32,334.17,285.09,334.29,287.26,334.29Z" fill="#ffaf20" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
69
- <path id="Path_24937" data-name="Path 24937" d="M287.26,334.29a40.838,40.838,0,0,0,5.67-.15c.87,0,10.39-1.4,7.83-4-.79-.79-3.12-.7-4.14-.83A67.439,67.439,0,0,0,281,329l6.54-2.73a31.776,31.776,0,0,1,4.2-.26h2.63c1.59,0,5.53-.56,6.32-2.14,1.27-2.54-9.59-3.69-11.16-3.69s-9.66,1-10.09,1l-1.61.32h-.29s7.58-2.17,10.83-2.17,7.59,1.09,8.67-2.17-7.22-2.16-14.45-1.8-12.28,4.69-16.61,8.31-12.65,19.14-21.68,27.09S216.48,366,216.48,366s-5.06-27.68-9.76-50.85a69.12,69.12,0,0,0-36.15,20.53c4.55,21.66,11.8,54.94,12.32,56a25.339,25.339,0,0,0,3.18,5.46h42a59.8,59.8,0,0,0,5.35-5.1c5.78-6.15,25.29-40.1,25.29-40.1s2.17-.36,7.23-3.26c3.28-1.87,8.41-6.82,12.39-5.93a40.48,40.48,0,0,0,9.95.61c2.72-.08,5.94-.2,8-2.26,1.69-1.69-1.85-1.38-2.8-1.46-3-.25-5.75-1.4-8.63-2.15-.91-.24-4.31-1.53-5.19-1.09a27.456,27.456,0,0,0,2.53-1.44C283.32,334.17,285.09,334.29,287.26,334.29Z" fill="#263238" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
70
- <path id="Path_24938" data-name="Path 24938" d="M287.26,334.29a40.838,40.838,0,0,0,5.67-.15c.87,0,10.39-1.4,7.83-4-.79-.79-3.12-.7-4.14-.83A67.439,67.439,0,0,0,281,329l6.54-2.73a31.776,31.776,0,0,1,4.2-.26h2.63c1.59,0,5.53-.56,6.32-2.14,1.27-2.54-9.59-3.69-11.16-3.69s-9.66,1-10.09,1l-1.61.32h-.29s7.58-2.17,10.83-2.17,7.59,1.09,8.67-2.17-7.22-2.16-14.45-1.8-12.28,4.69-16.61,8.31-12.65,19.14-21.68,27.09S216.48,366,216.48,366s-4.16-22.76-8.44-44.28a60.7,60.7,0,0,0-36.17,20.14c4.51,21.28,10.55,48.85,11,49.79a25.339,25.339,0,0,0,3.18,5.46h42a59.794,59.794,0,0,0,5.35-5.1c5.78-6.15,25.29-40.1,25.29-40.1s2.17-.36,7.23-3.26c3.28-1.87,8.41-6.82,12.39-5.93a40.483,40.483,0,0,0,9.95.61c2.72-.08,5.94-.2,8-2.26,1.69-1.69-1.85-1.38-2.8-1.46-3-.25-5.75-1.4-8.63-2.15-.91-.24-4.31-1.53-5.19-1.09a27.449,27.449,0,0,0,2.53-1.44C283.32,334.17,285.09,334.29,287.26,334.29Z" fill="#b2b2b2" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
71
- <line id="Line_713" data-name="Line 713" x2="3.8" y2="18.6" transform="translate(216.48 365.97)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
72
- <path id="Path_24939" data-name="Path 24939" d="M180.57,259.19s-16.11-3.05-25.86,15.38c-8.22,15.51-42.18,97.13-52.7,122.51h42c8.87-40.35,26-113.81,33.44-116.55,10.29-3.8,25.94.27,25.94.27Z" fill="#ffaf20"/>
73
- <g id="Group_11112" data-name="Group 11112" clip-path="url(#clip-path)">
74
- <path id="Path_24940" data-name="Path 24940" d="M144,397.08c8.87-40.35,26-113.81,33.44-116.55,10.29-3.8,25.94.27,25.94.27l-22.84-21.61s-16.11-3.05-25.86,15.38c-8.22,15.51-42.18,97.13-52.7,122.51Z" fill="#fff" opacity="0.5"/>
75
- </g>
76
- <path id="Path_24942" data-name="Path 24942" d="M180.57,259.19s-16.11-3.05-25.86,15.38c-8.22,15.51-42.18,97.13-52.7,122.51h42c8.87-40.35,26-113.81,33.44-116.55,10.29-3.8,25.94.27,25.94.27Z" fill="none" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
77
- <rect id="Rectangle_6652" data-name="Rectangle 6652" width="33.6" height="4.34" transform="translate(318.36 392.7)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
78
- <path id="Path_24943" data-name="Path 24943" d="M256.94,203.76s-4.33,15.17-25.28,25.29S202,245.3,196.25,250s-9.75,11.92-23.48,3.61-11.56-37.57-6.86-52.38,16.61-31.43,43.35-30.71,49.85,17.7,50.94,24.57S256.94,203.76,256.94,203.76Z" fill="#263238" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
79
- <path id="Path_24944" data-name="Path 24944" d="M188.81,196.91a5.59,5.59,0,1,1-5.57-5.08,5.34,5.34,0,0,1,5.57,5.08Z" fill="#fff"/>
80
- <path id="Path_24945" data-name="Path 24945" d="M183.43,211.65s3.35-10.23-4.39-13-8.19,3.65-29,12.74-35,12.47-38.89,23.4,4,16.7,4,16.7-15.69,7.38-18.68,18.79,6.31,23.39,28,28.39,37.31-4.65,42.2-12.82,6.28-19,6.28-19,5.5,5.51,12.22-8.89S183.43,211.65,183.43,211.65Z" fill="#263238" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
81
- <g id="Group_11113" data-name="Group 11113" opacity="0.25">
82
- <path id="Path_24946" data-name="Path 24946" d="M189.39,250.36c3.25-13.73-5.06-49.13-5.06-49.13" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
83
- <path id="Path_24947" data-name="Path 24947" d="M154.4,294.56c-14.63,3.21-25-14.23-14.83-25.54a16.4,16.4,0,0,1,14.56-5.12c3,.49,6.12,2.1,7.27,4.94a8.74,8.74,0,0,1-.25,6.26c-2.33,6.15-17.89,14.21-17.89,2.5,0-5.33,7.94-10.53,9.69-6.78s.49,6.3-2.42,6.3" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
84
- <path id="Path_24948" data-name="Path 24948" d="M157.31,238.35c-3.87,0-5.81,9.69,1,10.66s17.56-3.17,9.69-13.08c-3.92-5-20.83-7.27-25.68,1.93s1,20.84,17,23.27c10.85,1.64,25.42-1.59,26.17-15,.48-8.72.48-36.83.48-36.83" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
85
- <path id="Path_24949" data-name="Path 24949" d="M135.5,230.59s-17,10.18-11.63,20.36,28.6,8.72,28.6,8.72" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
86
- <path id="Path_24950" data-name="Path 24950" d="M127.75,255.31s-18.9,2.42-16,20.84" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
87
- </g>
88
- <rect id="Rectangle_6653" data-name="Rectangle 6653" width="225.84" height="244.22" transform="translate(88.23 152.82)" fill="none"/>
89
- <line id="Line_714" data-name="Line 714" x2="365.08" transform="translate(62.74 397.12)" fill="none" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
90
- </g>
91
- </g>
92
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="401.466" height="318.456" viewBox="0 0 401.466 318.456">
2
+ <defs>
3
+ <clipPath id="clip-path">
4
+ <path id="Path_24941" data-name="Path 24941" d="M180.57,259.19s-16.11-3.05-25.86,15.38c-8.22,15.51-42.18,97.13-52.7,122.51h42c8.87-40.35,26-113.81,33.44-116.55,10.29-3.8,25.94.27,25.94.27Z" fill="#ffaf20" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g id="_401_Error_Unauthorized-bro" data-name="401 Error Unauthorized-bro" transform="translate(-50.533 -79.258)">
8
+ <g id="freepik--background-simple--inject-80">
9
+ <path id="Path_24902" data-name="Path 24902" d="M51.18,296.87s6.9,60.2,58.06,85.92,101.27.7,147.28-5.33c24.09-3.15,46.44,8.69,70.06,11.17,75.54,7.93,134.82-81.08,124.18-146.56-9.2-56.69-45.43-96.7-111.43-125.24S227.93,65.57,151.26,92.41,45.71,218.93,51.18,296.87Z" fill="#ffaf20"/>
10
+ <path id="Path_24903" data-name="Path 24903" d="M51.18,296.87s6.9,60.2,58.06,85.92,101.27.7,147.28-5.33c24.09-3.15,46.44,8.69,70.06,11.17,75.54,7.93,134.82-81.08,124.18-146.56-9.2-56.69-45.43-96.7-111.43-125.24S227.93,65.57,151.26,92.41,45.71,218.93,51.18,296.87Z" fill="#fff" opacity="0.8"/>
11
+ </g>
12
+ <g id="freepik--Window--inject-80">
13
+ <path id="Path_24904" data-name="Path 24904" d="M304.31,383.86H449.6V150.92H304.31Zm75.81-56h63.76V322.2H380.12v-52h63.76v-5.64H380.12v-50.9h63.76V208H380.12V156.56H444.3V378.21H380.12Zm-70.5-171.29h65.19V208H309.62Zm0,57.1h65.19v50.91H309.62Zm0,56.55h65.19v52H309.62Zm0,57.64h65.19v50.36H309.62Z" fill="#b5b5b5"/>
14
+ <path id="Path_24905" data-name="Path 24905" d="M449.11,145.58a72.93,72.93,0,0,0-145.26,0l-.34,3.81H449.45ZM311.26,142.4a65.62,65.62,0,0,1,16.53-34.85l41,34.85Zm61-6.17L332.8,102.64A65.6,65.6,0,0,1,372.29,86.4Zm7-49.91a65.71,65.71,0,0,1,37.88,13.82l-37.88,35.58Zm3.09,56.08,40.08-37.65A65.52,65.52,0,0,1,441.7,142.4Z" fill="#b5b5b5"/>
15
+ </g>
16
+ <g id="freepik--Plants--inject-80">
17
+ <path id="Path_24906" data-name="Path 24906" d="M134,302.73a16.92,16.92,0,0,0-8.29,5.07,36.208,36.208,0,0,0-5,6.8c-.9,1.56-1.72,3.17-2.48,4.8-.49,1.06-.86,2.39-1.33,3.61-.67,1.08-1.33,2.19-1.9,3.23,2-7.21,8.46-20.48,8.57-24.25.13-4.1-3.81,2-6,10.35a116.288,116.288,0,0,0-2.82,14.39c-.23.43-.43.84-.61,1.22-.4.84-1.09,2.27-2,4.13,2-6.12,2.73-13.39,1.52-14.29-1.75-1.3-2.38,1.89-2.37,7.78A50.68,50.68,0,0,1,109.22,338c-1.1,2.18-2.33,4.58-3.65,7.11,1.38-4.41,2.18-10.76,2.94-15.52,1.1-6.92.63-9.08-1.61-5.75s-1.85,8.15-1.32,14.05a24.58,24.58,0,0,1-2,11c-1.69,3.21-3.48,6.52-5.29,9.78a33.36,33.36,0,0,0,2.88-10.57c.78-8-.25-15.35-2.1-13.27s-.76,7.65-1,14.43a77,77,0,0,1-1.39,12.22l-.56,1A33.45,33.45,0,0,0,96.7,352c.37-1.34.24-2.19-.21-2.6-.06-1.51.06-3.78-.58-4.93-1.62-2.89-3.39,1-3.41,2.54a25.881,25.881,0,0,0,.24,3.51,9.3,9.3,0,0,0-1.62,2c-.24.41-.5.87-.77,1.37,0-.48.06-1,.08-1.46a7.17,7.17,0,0,0-.8-3.77,23.54,23.54,0,0,0,2.09-6.15,3.36,3.36,0,0,0-.18-2.13,1.74,1.74,0,0,0-2.59-.7c-3.08,1.63-3.9,5.55-4.25,8.69a52.209,52.209,0,0,1-1.6,8c-.63,2.37-1.18,4.51-1.54,6a42.842,42.842,0,0,0-1-4.73c-.35-1.29-.68-2.54-1-3.74a25.07,25.07,0,0,1,2.48-12.67c3.64-7.48,6.27-11,3.75-11.13s-6.18,3.77-6.7,9.93a68.919,68.919,0,0,0-.24,11.25c-.8-2.87-1.59-5.57-2.41-8.32a18.19,18.19,0,0,1,.45-9.15c1.72-5.08,6.85-14.1,4.15-13.39s-5.94,5.94-6.3,11.48a30.14,30.14,0,0,0,.95,8.6c-.59-1.93-1.21-3.92-1.88-6-.28-.9-.58-1.85-.87-2.84a1.117,1.117,0,0,0-.08-.5,14.06,14.06,0,0,1,1.48-8.33c2.58-4.64,7.38-8.62,4.55-9.69s-7.12,6.49-7.36,10.27a18,18,0,0,0,.34,4.28c-.11-.29-.23-.59-.35-.88-.61-2.16-1.2-4.3-1.72-6.2a17.34,17.34,0,0,1,1.64-8.11c2.52-5.78,5.73-12.39,2.46-10.71-2.64,1.36-5.49,9.16-4.93,15.74-.22-.86-.42-1.6-.58-2.2-.43-3.77-1.24-12.65,0-17.94.81-3.53,2.13-6.87,2.54-10.5a2.23,2.23,0,0,0-.06-1.12c-.88-2.19-3.73,2.07-4.2,2.77a16.93,16.93,0,0,0-2.59,9.37,35.89,35.89,0,0,0,1,8.38c.4,1.75.89,3.49,1.46,5.2.36,1.11,1,2.34,1.49,3.54.24,1.25.52,2.52.81,3.66C65.38,312,61,297.88,58.55,295c-2.71-3.08-1.4,4.09,2.66,11.68A116.311,116.311,0,0,0,69,319.16c.13.47.26.91.39,1.31.28.89.75,2.41,1.35,4.39-2.75-5.81-7.14-11.65-8.64-11.49-2.16.24-.44,3,3.58,7.31a51,51,0,0,1,6.93,10.48c.68,2.35,1.42,4.94,2.18,7.69-2-4.17-5.75-9.36-8.44-13.35-3.92-5.81-5.74-7.07-5.11-3.11s4.21,7.22,8.64,11.17A24.74,24.74,0,0,1,75.9,343c.95,3.49,1.9,7.14,2.8,10.76a33.39,33.39,0,0,0-5.1-9.7c-4.9-6.4-10.67-11.06-10.6-8.28s4.66,6.11,9.13,11.2a75.111,75.111,0,0,1,7.32,9.89c.09.36.18.73.26,1.09-2-3.67-5.19-6.66-8.29-9.42-1.09-1-2.74-3.1-4.15-3.55-3.14-1-1.79,3.05-.75,4.18,3.36,3.68,8.1,5.95,11.21,9.82a34,34,0,0,1,3.14,4.64c.22,1.27.38,2.46.51,3.57a48.679,48.679,0,0,0-3.75-3.2c-3.8-2.56-6-6.07-8.93-9.45-.88-1-2.37-2.25-3.78-2.31-2-.09-2.59,2-2,3.65,2.31,6.8,11,7.1,16.09,10.63a14.819,14.819,0,0,1,2.57,2.08,43.191,43.191,0,0,1,.17,6.32H70.06v4.87h3.47l2.82,17.34H99.71l2.82-17.34H106v-4.87H88.43c.8-1,1.66-2,2.52-3.14l3.7.11s12.84.56,17.55-2,.51-5-4-3.69-13.37,5.31-15.33,5.25l-1.66-.05c.92-1.19,1.84-2.43,2.71-3.69a86,86,0,0,0,10.41-3.32c3.69-1.46,8-2.64,11.14-5.11a3.4,3.4,0,0,0,1.32-1.68,1.74,1.74,0,0,0-1.41-2.27c-3.37-.91-6.65,1.39-9,3.45a53,53,0,0,1-6.63,4.76c-2.08,1.29-3.94,2.49-5.21,3.31.93-1.38,1.79-2.77,2.52-4.12.63-1.18,1.24-2.31,1.82-3.42a25.08,25.08,0,0,1,10.46-7.57c7.76-3,12.07-3.74,10.34-5.57s-7.1-1.47-11.68,2.68a68.1,68.1,0,0,0-7.86,8.06c1.37-2.64,2.65-5.16,3.92-7.73a18.23,18.23,0,0,1,6.58-6.38c4.72-2.53,14.62-5.63,12.16-6.95s-8.39.28-12.43,4.09a30,30,0,0,0-5.18,6.94c.89-1.82,1.79-3.7,2.74-5.69.41-.86.85-1.75,1.3-2.67.1-.14.2-.28.29-.43a14,14,0,0,1,6.77-5.07c5-1.63,11.28-1.27,9.93-4s-9.63-.11-12.39,2.48a18.709,18.709,0,0,0-2.67,3.36c.12-.28.24-.58.35-.88,1-2,2-4,3-5.7a17.32,17.32,0,0,1,6.73-4.81c5.79-2.5,12.65-5.15,9.11-6.15-2.86-.81-10.27,2.94-14.34,8.14l1.07-2c2.26-3.06,7.73-10.1,12.23-13.13,3-2,6.25-3.57,9-5.94a2.37,2.37,0,0,0,.72-.86C139.85,301.36,134.86,302.53,134,302.73ZM81.72,363.35c.75-1.15,2.08-3.27,3.55-6A37.867,37.867,0,0,0,86.82,361c-1.36,2.79-2.6,5.22-3.32,5.84l-1.24,1.1C82.12,366.41,81.94,364.87,81.72,363.35Zm8.5,8.09a39.611,39.611,0,0,1-2.94,3.47H82.72c-.07-1.86-.2-4.14-.42-6.57l2.78-2.45s1.22-1,2.86-2.61a23.5,23.5,0,0,1,1.83,4.88,14.24,14.24,0,0,1,.45,3.28ZM94,361.82a34.53,34.53,0,0,1-.87,5.54c-.71,1.08-1.4,2.06-2.06,3-.06-1.68-.51-4.71-.56-4.92A20.639,20.639,0,0,1,90,361.3a54.375,54.375,0,0,0,3.78-4.3,22.5,22.5,0,0,1,.22,4.82Z" fill="#263238"/>
18
+ </g>
19
+ <g id="freepik--Device--inject-80">
20
+ <path id="Path_24907" data-name="Path 24907" d="M368,363.31l16.19,26.07A5,5,0,0,1,380,397H346.9a5,5,0,0,0,4.25-7.6l-15.66-25.51Z" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
21
+ <path id="Path_24908" data-name="Path 24908" d="M368.02,363.31l-32.53.58,6.02,9.81h32.96Z" fill="#263238" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
22
+ <rect id="Rectangle_6626" data-name="Rectangle 6626" width="138.27" height="116.78" rx="2.91" transform="translate(416.82 369.12) rotate(180)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
23
+ <rect id="Rectangle_6627" data-name="Rectangle 6627" width="138.27" height="116.78" rx="2.91" transform="translate(411.59 369.12) rotate(180)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
24
+ <path id="Path_24909" data-name="Path 24909" d="M278,252.34H407a4.65,4.65,0,0,1,4.64,4.65V348.2H273.32V257a4.65,4.65,0,0,1,4.68-4.66Z" fill="#263238" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
25
+ <rect id="Rectangle_6628" data-name="Rectangle 6628" width="126.65" height="84.82" transform="translate(405.78 341.81) rotate(180)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
26
+ <rect id="Rectangle_6629" data-name="Rectangle 6629" width="4.02" height="1.34" transform="translate(237.74 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
27
+ <rect id="Rectangle_6630" data-name="Rectangle 6630" width="4.02" height="1.34" transform="translate(243.1 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
28
+ <rect id="Rectangle_6631" data-name="Rectangle 6631" width="4.02" height="1.34" transform="translate(248.47 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
29
+ <rect id="Rectangle_6632" data-name="Rectangle 6632" width="4.02" height="1.34" transform="translate(253.83 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
30
+ <rect id="Rectangle_6633" data-name="Rectangle 6633" width="4.02" height="1.34" transform="translate(259.19 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
31
+ <rect id="Rectangle_6634" data-name="Rectangle 6634" width="4.02" height="1.34" transform="translate(264.56 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
32
+ <rect id="Rectangle_6635" data-name="Rectangle 6635" width="4.02" height="1.34" transform="translate(269.92 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
33
+ <rect id="Rectangle_6636" data-name="Rectangle 6636" width="4.02" height="1.34" transform="translate(275.28 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
34
+ <rect id="Rectangle_6637" data-name="Rectangle 6637" width="4.02" height="1.34" transform="translate(280.65 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
35
+ <rect id="Rectangle_6638" data-name="Rectangle 6638" width="4.02" height="1.34" transform="translate(286.01 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
36
+ <rect id="Rectangle_6639" data-name="Rectangle 6639" width="4.02" height="1.34" transform="translate(291.37 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
37
+ <rect id="Rectangle_6640" data-name="Rectangle 6640" width="4.02" height="1.34" transform="translate(296.74 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
38
+ <rect id="Rectangle_6641" data-name="Rectangle 6641" width="4.02" height="1.34" transform="translate(302.1 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
39
+ <rect id="Rectangle_6642" data-name="Rectangle 6642" width="4.02" height="1.34" transform="translate(307.46 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
40
+ <rect id="Rectangle_6643" data-name="Rectangle 6643" width="4.02" height="1.34" transform="translate(312.83 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
41
+ <rect id="Rectangle_6644" data-name="Rectangle 6644" width="4.02" height="1.34" transform="translate(318.19 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
42
+ <rect id="Rectangle_6645" data-name="Rectangle 6645" width="4.02" height="1.34" transform="translate(323.55 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
43
+ <rect id="Rectangle_6646" data-name="Rectangle 6646" width="4.02" height="1.34" transform="translate(328.92 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
44
+ <rect id="Rectangle_6647" data-name="Rectangle 6647" width="4.02" height="1.34" transform="translate(334.28 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
45
+ <rect id="Rectangle_6648" data-name="Rectangle 6648" width="4.02" height="1.34" transform="translate(339.64 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
46
+ <rect id="Rectangle_6649" data-name="Rectangle 6649" width="4.02" height="1.34" transform="translate(345.01 391.16)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
47
+ <rect id="Rectangle_6650" data-name="Rectangle 6650" width="116.29" height="4.34" transform="translate(235.66 392.7)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
48
+ <rect id="Rectangle_6651" data-name="Rectangle 6651" width="28.37" height="4.34" transform="translate(323.59 392.7)" fill="#263238" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
49
+ </g>
50
+ <g id="freepik--Text--inject-80">
51
+ <path id="Path_24910" data-name="Path 24910" d="M294.25,309.48l17.8-42.09h10.68v42.09h4.62v8.9h-4.62v11.3h-9.61v-11.3H294.25Zm18.87,0v-23.4l-9.88,23.4Z" fill="#263238"/>
52
+ <path id="Path_24911" data-name="Path 24911" d="M331,282.34c0-10,5.25-15.66,14.86-15.66s14.86,5.69,14.86,15.66v32.39c0,10-5.25,15.66-14.86,15.66S331,324.69,331,314.73Zm9.79,33c0,4.45,2,6.14,5.07,6.14s5.08-1.69,5.08-6.14V281.72c0-4.45-2-6.14-5.08-6.14s-5.07,1.69-5.07,6.14Z" fill="#263238"/>
53
+ <path id="Path_24912" data-name="Path 24912" d="M373.09,275.22c7.57,0,9.26-3.65,10.77-7.83h6.58v62.29h-9.78V282.16h-7.57Z" fill="#263238"/>
54
+ </g>
55
+ <g id="freepik--Character--inject-80">
56
+ <path id="Path_24925" data-name="Path 24925" d="M253.37,203.86a30.66,30.66,0,0,1,2.8,13.32c0,8-3.85,15.76-2.8,18.92s1.41,14.26-.76,16.43c-1.24,1.24-6.5-.36-6.5-.36s-1.41,4.2-2.81,4.2-5.25-.7-6.65,1.75.7,5.26-.7,6.66a19,19,0,0,1-3.16,2.45s-3.71,3.39-6.17,3.39-14.55-8.53-14.55-8.53S202.84,268,199,270.82s-6,12.42-6,12.42-20.78-14.75-17.27-28.41,44.7-33.1,58-40.81S253.37,203.86,253.37,203.86Z" fill="#b2b2b2" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
57
+ <path id="Path_24926" data-name="Path 24926" d="M250.22,232.24s1.18-5.43-3.72-5.43" fill="none" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.297"/>
58
+ <path id="Path_24927" data-name="Path 24927" d="M245.56,221.21c-.49-.93,4.84-4,8.63-.7" fill="none" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.297"/>
59
+ <path id="Path_24928" data-name="Path 24928" d="M249.62,232.08c-.61,1.27-1.67,2-2.37,1.7s-.76-1.64-.15-2.91,1.68-2,2.37-1.71S250.24,230.8,249.62,232.08Z" fill="#263238"/>
60
+ <path id="Path_24929" data-name="Path 24929" d="M213.61,246.73a2.78,2.78,0,1,1-2.78-2.78,2.78,2.78,0,0,1,2.78,2.78Z" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
61
+ <line id="Line_712" data-name="Line 712" y2="9.81" transform="translate(210.83 249.51)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
62
+ <path id="Path_24930" data-name="Path 24930" d="M210.67,256.05s-4.25,12.1-3.6,13.08,7.69.49,8.18,0S210.67,256.05,210.67,256.05Z" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
63
+ <path id="Path_24931" data-name="Path 24931" d="M229.42,301.44s8.73,5.64,6.48,5.92a11.72,11.72,0,0,1-7.32-1.69,12.67,12.67,0,0,0-6.77-1.69h-5.63s2.25-4,5.07-4.51S229.42,301.44,229.42,301.44Z" fill="#b2b2b2" stroke="#263238" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1.148"/>
64
+ <path id="Path_24932" data-name="Path 24932" d="M228.86,296.93s11.83,5.64,11.55,7.05-.85,1.69-3.95,1.41-9.29-3.95-9.29-3.95l-7-1.13S224.35,294.12,228.86,296.93Z" fill="#b2b2b2" stroke="#263238" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1.148"/>
65
+ <path id="Path_24933" data-name="Path 24933" d="M199.27,300.31s11.27-5.91,13.81-7.32,7.61-.85,11.27-.85,15.5.28,16.06,2.54-3.38,2.82-7.33,2.82-7.32-.57-10.42,2.81a27.689,27.689,0,0,0-4.79,7.89,55,55,0,0,0,9,1.13c3.66,0,9.29,1.41,8.73,3.1s-2,3.38-6.48,2.82-10.71.28-15.5.56-12.11-1.13-12.11-1.13Z" fill="#b2b2b2" stroke="#263238" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1.148"/>
66
+ <path id="Path_24934" data-name="Path 24934" d="M203.41,280.8s3,0,.91,6.66S201,306.81,201,306.81l-9.68-32.06Z" fill="#545454" stroke="#263238" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1.148"/>
67
+ <path id="Path_24935" data-name="Path 24935" d="M194.07,397.08a28.765,28.765,0,0,0,1.82-2.94c6.14-11.56,8.31-47.68,7.23-71.53s-1.86-37.79-6.55-46.46c0,0-11.1-12.51-22.3-17.93s-31.85,10.2-42,25.74S100,377.89,93.47,392.7a11.78,11.78,0,0,0-1,4.38Z" fill="#ffaf20" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
68
+ <path id="Path_24936" data-name="Path 24936" d="M287.26,334.29a40.838,40.838,0,0,0,5.67-.15c.87,0,10.39-1.4,7.83-4-.79-.79-3.12-.7-4.14-.83A67.439,67.439,0,0,0,281,329l6.54-2.73a31.776,31.776,0,0,1,4.2-.26h2.63c1.59,0,5.53-.56,6.32-2.14,1.27-2.54-9.59-3.69-11.16-3.69s-9.66,1-10.09,1l-1.61.32h-.29s7.58-2.17,10.83-2.17,7.59,1.09,8.67-2.17-7.22-2.16-14.45-1.8-12.28,4.69-16.61,8.31-12.65,19.14-21.68,27.09S216.48,366,216.48,366s-10.86-61.46-15.55-79.16-17-22.29-17-22.29l-16.75,54.71c2.12,11.44,15,71,15.67,72.39a25.34,25.34,0,0,0,3.18,5.46h42a59.8,59.8,0,0,0,5.35-5.1c5.78-6.15,25.29-40.1,25.29-40.1s2.17-.36,7.23-3.26c3.28-1.87,8.41-6.82,12.39-5.93a40.481,40.481,0,0,0,9.95.61c2.72-.08,5.94-.2,8-2.26,1.69-1.69-1.85-1.38-2.8-1.46-3-.25-5.75-1.4-8.63-2.15-.91-.24-4.31-1.53-5.19-1.09a27.456,27.456,0,0,0,2.53-1.44C283.32,334.17,285.09,334.29,287.26,334.29Z" fill="#ffaf20" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
69
+ <path id="Path_24937" data-name="Path 24937" d="M287.26,334.29a40.838,40.838,0,0,0,5.67-.15c.87,0,10.39-1.4,7.83-4-.79-.79-3.12-.7-4.14-.83A67.439,67.439,0,0,0,281,329l6.54-2.73a31.776,31.776,0,0,1,4.2-.26h2.63c1.59,0,5.53-.56,6.32-2.14,1.27-2.54-9.59-3.69-11.16-3.69s-9.66,1-10.09,1l-1.61.32h-.29s7.58-2.17,10.83-2.17,7.59,1.09,8.67-2.17-7.22-2.16-14.45-1.8-12.28,4.69-16.61,8.31-12.65,19.14-21.68,27.09S216.48,366,216.48,366s-5.06-27.68-9.76-50.85a69.12,69.12,0,0,0-36.15,20.53c4.55,21.66,11.8,54.94,12.32,56a25.339,25.339,0,0,0,3.18,5.46h42a59.8,59.8,0,0,0,5.35-5.1c5.78-6.15,25.29-40.1,25.29-40.1s2.17-.36,7.23-3.26c3.28-1.87,8.41-6.82,12.39-5.93a40.48,40.48,0,0,0,9.95.61c2.72-.08,5.94-.2,8-2.26,1.69-1.69-1.85-1.38-2.8-1.46-3-.25-5.75-1.4-8.63-2.15-.91-.24-4.31-1.53-5.19-1.09a27.456,27.456,0,0,0,2.53-1.44C283.32,334.17,285.09,334.29,287.26,334.29Z" fill="#263238" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
70
+ <path id="Path_24938" data-name="Path 24938" d="M287.26,334.29a40.838,40.838,0,0,0,5.67-.15c.87,0,10.39-1.4,7.83-4-.79-.79-3.12-.7-4.14-.83A67.439,67.439,0,0,0,281,329l6.54-2.73a31.776,31.776,0,0,1,4.2-.26h2.63c1.59,0,5.53-.56,6.32-2.14,1.27-2.54-9.59-3.69-11.16-3.69s-9.66,1-10.09,1l-1.61.32h-.29s7.58-2.17,10.83-2.17,7.59,1.09,8.67-2.17-7.22-2.16-14.45-1.8-12.28,4.69-16.61,8.31-12.65,19.14-21.68,27.09S216.48,366,216.48,366s-4.16-22.76-8.44-44.28a60.7,60.7,0,0,0-36.17,20.14c4.51,21.28,10.55,48.85,11,49.79a25.339,25.339,0,0,0,3.18,5.46h42a59.794,59.794,0,0,0,5.35-5.1c5.78-6.15,25.29-40.1,25.29-40.1s2.17-.36,7.23-3.26c3.28-1.87,8.41-6.82,12.39-5.93a40.483,40.483,0,0,0,9.95.61c2.72-.08,5.94-.2,8-2.26,1.69-1.69-1.85-1.38-2.8-1.46-3-.25-5.75-1.4-8.63-2.15-.91-.24-4.31-1.53-5.19-1.09a27.449,27.449,0,0,0,2.53-1.44C283.32,334.17,285.09,334.29,287.26,334.29Z" fill="#b2b2b2" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
71
+ <line id="Line_713" data-name="Line 713" x2="3.8" y2="18.6" transform="translate(216.48 365.97)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
72
+ <path id="Path_24939" data-name="Path 24939" d="M180.57,259.19s-16.11-3.05-25.86,15.38c-8.22,15.51-42.18,97.13-52.7,122.51h42c8.87-40.35,26-113.81,33.44-116.55,10.29-3.8,25.94.27,25.94.27Z" fill="#ffaf20"/>
73
+ <g id="Group_11112" data-name="Group 11112" clip-path="url(#clip-path)">
74
+ <path id="Path_24940" data-name="Path 24940" d="M144,397.08c8.87-40.35,26-113.81,33.44-116.55,10.29-3.8,25.94.27,25.94.27l-22.84-21.61s-16.11-3.05-25.86,15.38c-8.22,15.51-42.18,97.13-52.7,122.51Z" fill="#fff" opacity="0.5"/>
75
+ </g>
76
+ <path id="Path_24942" data-name="Path 24942" d="M180.57,259.19s-16.11-3.05-25.86,15.38c-8.22,15.51-42.18,97.13-52.7,122.51h42c8.87-40.35,26-113.81,33.44-116.55,10.29-3.8,25.94.27,25.94.27Z" fill="none" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
77
+ <rect id="Rectangle_6652" data-name="Rectangle 6652" width="33.6" height="4.34" transform="translate(318.36 392.7)" fill="#fff" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
78
+ <path id="Path_24943" data-name="Path 24943" d="M256.94,203.76s-4.33,15.17-25.28,25.29S202,245.3,196.25,250s-9.75,11.92-23.48,3.61-11.56-37.57-6.86-52.38,16.61-31.43,43.35-30.71,49.85,17.7,50.94,24.57S256.94,203.76,256.94,203.76Z" fill="#263238" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
79
+ <path id="Path_24944" data-name="Path 24944" d="M188.81,196.91a5.59,5.59,0,1,1-5.57-5.08,5.34,5.34,0,0,1,5.57,5.08Z" fill="#fff"/>
80
+ <path id="Path_24945" data-name="Path 24945" d="M183.43,211.65s3.35-10.23-4.39-13-8.19,3.65-29,12.74-35,12.47-38.89,23.4,4,16.7,4,16.7-15.69,7.38-18.68,18.79,6.31,23.39,28,28.39,37.31-4.65,42.2-12.82,6.28-19,6.28-19,5.5,5.51,12.22-8.89S183.43,211.65,183.43,211.65Z" fill="#263238" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
81
+ <g id="Group_11113" data-name="Group 11113" opacity="0.25">
82
+ <path id="Path_24946" data-name="Path 24946" d="M189.39,250.36c3.25-13.73-5.06-49.13-5.06-49.13" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
83
+ <path id="Path_24947" data-name="Path 24947" d="M154.4,294.56c-14.63,3.21-25-14.23-14.83-25.54a16.4,16.4,0,0,1,14.56-5.12c3,.49,6.12,2.1,7.27,4.94a8.74,8.74,0,0,1-.25,6.26c-2.33,6.15-17.89,14.21-17.89,2.5,0-5.33,7.94-10.53,9.69-6.78s.49,6.3-2.42,6.3" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
84
+ <path id="Path_24948" data-name="Path 24948" d="M157.31,238.35c-3.87,0-5.81,9.69,1,10.66s17.56-3.17,9.69-13.08c-3.92-5-20.83-7.27-25.68,1.93s1,20.84,17,23.27c10.85,1.64,25.42-1.59,26.17-15,.48-8.72.48-36.83.48-36.83" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
85
+ <path id="Path_24949" data-name="Path 24949" d="M135.5,230.59s-17,10.18-11.63,20.36,28.6,8.72,28.6,8.72" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
86
+ <path id="Path_24950" data-name="Path 24950" d="M127.75,255.31s-18.9,2.42-16,20.84" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
87
+ </g>
88
+ <rect id="Rectangle_6653" data-name="Rectangle 6653" width="225.84" height="244.22" transform="translate(88.23 152.82)" fill="none"/>
89
+ <line id="Line_714" data-name="Line 714" x2="365.08" transform="translate(62.74 397.12)" fill="none" stroke="#263238" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.148"/>
90
+ </g>
91
+ </g>
92
+ </svg>
@@ -1,20 +1,20 @@
1
- import { Button, ButtonProps, CircularProgress } from '@mui/material'
2
- import React from 'react'
3
-
4
- interface ActionButtonProps extends ButtonProps {
5
- loading?: boolean
6
- }
7
-
8
- export default function ActionButton({ loading, ...props }: ActionButtonProps) {
9
- return (
10
- <Button
11
- sx={{ height: '50px' }}
12
- variant={!props?.variant ? 'contained' : props?.variant}
13
- endIcon={loading ? <CircularProgress size={20} /> : null}
14
- disabled={loading}
15
- {...props}
16
- >
17
- {props.children}
18
- </Button>
19
- )
20
- }
1
+ import { Button, ButtonProps, CircularProgress } from '@mui/material'
2
+ import React from 'react'
3
+
4
+ interface ActionButtonProps extends ButtonProps {
5
+ loading?: boolean
6
+ }
7
+
8
+ export default function ActionButton({ loading, ...props }: ActionButtonProps) {
9
+ return (
10
+ <Button
11
+ sx={{ height: '50px' }}
12
+ variant={!props?.variant ? 'contained' : props?.variant}
13
+ endIcon={loading ? <CircularProgress size={20} /> : null}
14
+ disabled={loading}
15
+ {...props}
16
+ >
17
+ {props.children}
18
+ </Button>
19
+ )
20
+ }