@himakarinv/nativex 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +105 -0
- package/images.d.ts +14 -0
- package/index.js +8 -0
- package/nativewind-preset.js +18 -0
- package/package.json +120 -0
- package/src/assets/branding/logo.jpg +0 -0
- package/src/assets/branding/softech-logo.png +0 -0
- package/src/assets/icons/2-layers.svg +3 -0
- package/src/assets/icons/Forbidden.svg +211 -0
- package/src/assets/icons/Internal-server-error.svg +119 -0
- package/src/assets/icons/Log-out-nav.svg +4 -0
- package/src/assets/icons/Not-Found.svg +282 -0
- package/src/assets/icons/Unauthorized.svg +314 -0
- package/src/assets/icons/User-Frame.svg +5 -0
- package/src/assets/icons/alert.svg +4 -0
- package/src/assets/icons/arrow-right.svg +3 -0
- package/src/assets/icons/avatar-female.svg +10 -0
- package/src/assets/icons/avatar-male.svg +10 -0
- package/src/assets/icons/bell.svg +3 -0
- package/src/assets/icons/calendar-event.svg +11 -0
- package/src/assets/icons/calendar.svg +6 -0
- package/src/assets/icons/card.svg +4 -0
- package/src/assets/icons/caret-right.svg +3 -0
- package/src/assets/icons/chat.svg +11 -0
- package/src/assets/icons/check.svg +3 -0
- package/src/assets/icons/checkbox-minus.svg +3 -0
- package/src/assets/icons/checkmark.svg +3 -0
- package/src/assets/icons/chevron-down.svg +3 -0
- package/src/assets/icons/chevron-left.svg +9 -0
- package/src/assets/icons/chevron-right.svg +9 -0
- package/src/assets/icons/circle-radio-active.svg +10 -0
- package/src/assets/icons/circle-radio.svg +10 -0
- package/src/assets/icons/clock.svg +3 -0
- package/src/assets/icons/close.svg +3 -0
- package/src/assets/icons/code.svg +3 -0
- package/src/assets/icons/country.svg +20 -0
- package/src/assets/icons/dot.svg +3 -0
- package/src/assets/icons/download.svg +1 -0
- package/src/assets/icons/dropdown-arrow.svg +3 -0
- package/src/assets/icons/dropdown-avatar.svg +3 -0
- package/src/assets/icons/email.svg +3 -0
- package/src/assets/icons/error.svg +3 -0
- package/src/assets/icons/eye-off.svg +1 -0
- package/src/assets/icons/eye.svg +1 -0
- package/src/assets/icons/hashtag-icon.svg +3 -0
- package/src/assets/icons/help-circle.svg +10 -0
- package/src/assets/icons/help.svg +4 -0
- package/src/assets/icons/hide-checkbox.svg +3 -0
- package/src/assets/icons/home-smile.svg +3 -0
- package/src/assets/icons/home.svg +3 -0
- package/src/assets/icons/info.svg +5 -0
- package/src/assets/icons/left-arrow.svg +3 -0
- package/src/assets/icons/log-out.svg +3 -0
- package/src/assets/icons/notification-box.svg +4 -0
- package/src/assets/icons/pencil.svg +1 -0
- package/src/assets/icons/plus.svg +3 -0
- package/src/assets/icons/radio-dot.svg +3 -0
- package/src/assets/icons/right-arrow.svg +3 -0
- package/src/assets/icons/search.svg +3 -0
- package/src/assets/icons/settings.svg +11 -0
- package/src/assets/icons/slack.svg +17 -0
- package/src/assets/icons/slash.svg +3 -0
- package/src/assets/icons/success.svg +3 -0
- package/src/assets/icons/successicon.svg +5 -0
- package/src/assets/icons/three-dot-vertical.svg +5 -0
- package/src/assets/icons/trash.svg +1 -0
- package/src/assets/icons/trend-down-01.svg +3 -0
- package/src/assets/icons/trend-up-01.svg +3 -0
- package/src/assets/icons/up-arrow.svg +3 -0
- package/src/assets/icons/user-plus.svg +10 -0
- package/src/assets/icons/user.svg +3 -0
- package/src/assets/icons/users.svg +3 -0
- package/src/assets/icons/vertical-dots-true-icon.svg +5 -0
- package/src/assets/icons/vertical-line.svg +3 -0
- package/src/assets/icons/vertical-three-dots-icon.svg +5 -0
- package/src/assets/icons/warning.svg +3 -0
- package/src/assets/icons/zap.svg +3 -0
- package/src/components/ActionsMenu/ActionsMenu.tsx +314 -0
- package/src/components/ActionsMenu/index.ts +2 -0
- package/src/components/Alert/Alert.tsx +291 -0
- package/src/components/Alert/index.ts +2 -0
- package/src/components/Badge/Badge.tsx +230 -0
- package/src/components/Badge/index.ts +2 -0
- package/src/components/Breadcrumb/Breadcrumb.tsx +364 -0
- package/src/components/Breadcrumb/index.ts +7 -0
- package/src/components/Button/Button.tsx +584 -0
- package/src/components/Button/index.ts +9 -0
- package/src/components/Checkbox/Checkbox.tsx +336 -0
- package/src/components/Checkbox/index.ts +2 -0
- package/src/components/CreatePassword/CreatePassword.tsx +161 -0
- package/src/components/CreatePassword/index.ts +2 -0
- package/src/components/DataTable/DataTable.tsx +822 -0
- package/src/components/DataTable/index.ts +10 -0
- package/src/components/Datepicker/Datepicker.tsx +797 -0
- package/src/components/Datepicker/index.ts +2 -0
- package/src/components/Dropdown/Dropdown.tsx +277 -0
- package/src/components/Dropdown/index.ts +7 -0
- package/src/components/DropdownMenu/DropdownMenu.tsx +471 -0
- package/src/components/DropdownMenu/index.ts +11 -0
- package/src/components/DynamicForm/DynamicForm.tsx +741 -0
- package/src/components/DynamicForm/index.ts +13 -0
- package/src/components/ErrorPages/ErrorPages.tsx +135 -0
- package/src/components/ErrorPages/index.ts +2 -0
- package/src/components/ForgotPassword/ForgotPassword.tsx +121 -0
- package/src/components/ForgotPassword/index.ts +2 -0
- package/src/components/HintError/HintError.tsx +37 -0
- package/src/components/HintError/index.ts +2 -0
- package/src/components/Icon/Icon.tsx +43 -0
- package/src/components/Icon/icon-registry.ts +227 -0
- package/src/components/Icon/index.ts +3 -0
- package/src/components/InputDropdown/InputDropdown.tsx +662 -0
- package/src/components/InputDropdown/index.ts +9 -0
- package/src/components/InputField/InputField.tsx +527 -0
- package/src/components/InputField/index.ts +2 -0
- package/src/components/Label/Label.tsx +88 -0
- package/src/components/Label/index.ts +2 -0
- package/src/components/LoginForm/LoginForm.tsx +158 -0
- package/src/components/LoginForm/index.ts +2 -0
- package/src/components/LoginShell/LoginShell.tsx +97 -0
- package/src/components/LoginShell/RoleCard.tsx +24 -0
- package/src/components/LoginShell/SoftechLogo.tsx +24 -0
- package/src/components/LoginShell/branding-assets.ts +2 -0
- package/src/components/LoginShell/index.ts +20 -0
- package/src/components/LoginShell/login-copy.ts +45 -0
- package/src/components/LoginShell/loginPageStyles.ts +210 -0
- package/src/components/Modals/Modals.tsx +313 -0
- package/src/components/Modals/index.ts +2 -0
- package/src/components/Offcanvas/Offcanvas.tsx +404 -0
- package/src/components/Offcanvas/index.ts +13 -0
- package/src/components/PageHeader/PageHeader.tsx +128 -0
- package/src/components/PageHeader/index.ts +2 -0
- package/src/components/Pagination/Pagination.tsx +540 -0
- package/src/components/Pagination/index.ts +8 -0
- package/src/components/ResetPassword/ResetPassword.tsx +172 -0
- package/src/components/ResetPassword/index.ts +2 -0
- package/src/components/RoleSelection/RoleSelection.tsx +111 -0
- package/src/components/RoleSelection/index.ts +2 -0
- package/src/components/SendOtp/SendOtp.tsx +149 -0
- package/src/components/SendOtp/index.ts +2 -0
- package/src/components/Sidenavbar/Sidenavbar.tsx +358 -0
- package/src/components/Sidenavbar/index.ts +2 -0
- package/src/components/StatCard/StatCard.tsx +393 -0
- package/src/components/StatCard/index.ts +6 -0
- package/src/components/Tabs/Tabs.tsx +239 -0
- package/src/components/Tabs/index.ts +2 -0
- package/src/components/Textarea/Textarea.tsx +217 -0
- package/src/components/Textarea/index.ts +2 -0
- package/src/components/Timepicker/Timepicker.tsx +384 -0
- package/src/components/Timepicker/index.ts +2 -0
- package/src/components/Toast/Toast.tsx +278 -0
- package/src/components/Toast/index.ts +2 -0
- package/src/components/Toggle/Toggle.tsx +296 -0
- package/src/components/Toggle/index.ts +2 -0
- package/src/components/Typeahead/Typeahead.tsx +521 -0
- package/src/components/Typeahead/index.ts +2 -0
- package/src/components/Verification/Verification.tsx +374 -0
- package/src/components/Verification/index.ts +2 -0
- package/src/index.ts +39 -0
- package/src/theme/borders.ts +19 -0
- package/src/theme/button.ts +41 -0
- package/src/theme/colors.ts +273 -0
- package/src/theme/index.ts +14 -0
- package/src/theme/nativewind-theme.js +182 -0
- package/src/theme/radius.ts +12 -0
- package/src/theme/shadows.ts +40 -0
- package/src/theme/spacing.ts +18 -0
- package/src/theme/typography.ts +35 -0
- package/src/utils/a11y.ts +21 -0
- package/svg.d.ts +7 -0
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
<svg width="486" height="486" viewBox="0 0 486 486" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M37.801 260.108C37.801 260.108 41.3391 332.61 102.565 379.14C163.792 425.669 247.578 426.583 315.433 429.12C383.289 431.657 434.717 391.601 441.599 333.213C448.481 274.824 396.411 259.341 367.212 193.983C338.013 128.626 340.2 106.814 280.023 67.9051C219.847 28.996 127.332 56.8244 79.7039 128.053C32.0759 199.281 37.801 260.108 37.801 260.108Z" fill="#185197"/>
|
|
3
|
+
<path opacity="0.7" d="M37.801 260.108C37.801 260.108 41.3391 332.61 102.565 379.14C163.792 425.669 247.578 426.583 315.433 429.12C383.289 431.657 434.717 391.601 441.599 333.213C448.481 274.824 396.411 259.341 367.212 193.983C338.013 128.626 340.2 106.814 280.023 67.9051C219.847 28.996 127.332 56.8244 79.7039 128.053C32.0759 199.281 37.801 260.108 37.801 260.108Z" fill="white"/>
|
|
4
|
+
<path d="M408.949 362.42C408.949 362.42 405.644 348.374 408.123 335.972C410.602 323.569 416.385 331.841 423.004 323.569C429.624 315.297 426.309 299.599 433.745 292.98C441.181 286.361 451.931 287.197 454.41 274.794C456.888 262.391 458.55 252.438 463.508 254.129C468.465 255.821 459.377 270.653 459.377 279.761C459.377 288.869 464.334 294.633 461.029 303.73C457.724 312.828 443.669 309.514 443.669 320.254C443.669 330.995 449.452 341.745 444.495 349.191C439.538 356.636 426.309 358.279 424.657 362.41C423.004 366.541 418.825 373.987 414.733 373.987C410.64 373.987 408.949 362.42 408.949 362.42Z" fill="#BFBFBF"/>
|
|
5
|
+
<path d="M406.295 362.555C407.122 360.077 405.469 338.586 398.033 334.455C390.598 330.324 382.326 331.976 378.195 324.531C374.064 317.085 374.054 313.79 369.923 312.964C365.792 312.138 345.954 308.823 348.432 312.964C350.911 317.105 365.792 310.475 365.792 318.747C365.792 327.019 364.14 340.238 369.097 343.543C374.054 346.848 387.283 346.022 386.457 353.467C385.631 360.913 383.152 363.381 387.283 365.87C391.414 368.358 402.991 379.089 404.643 370.827L406.295 362.555Z" fill="#BFBFBF"/>
|
|
6
|
+
<path d="M415.461 380.8C415.461 380.8 411.573 368.756 422.197 346.614C432.821 324.472 440.49 307.627 445.301 298.986" stroke="#263238" stroke-width="1.22136" stroke-miterlimit="10"/>
|
|
7
|
+
<path d="M406.79 382.724C406.79 382.724 405.352 376.941 400.53 361.058C395.709 345.176 389.945 340.841 381.761 335.543C373.577 330.246 373.101 321.585 371.652 319.175" stroke="#263238" stroke-width="1.22136" stroke-miterlimit="10"/>
|
|
8
|
+
<path d="M427.009 374.054C427.009 374.054 427.981 365.394 435.679 362.983C443.377 360.573 450.599 361.545 452.048 356.247C453.496 350.95 453.486 345.652 456.859 342.766C460.232 339.879 464.557 338.43 465.043 339.85C465.529 341.269 460.183 342.26 460.183 347.071C460.183 351.883 467.405 363.916 456.82 368.728C446.235 373.539 437.565 369.214 433.716 372.616C429.866 376.018 427.456 378.389 427.456 378.389L427.009 374.054Z" fill="#BFBFBF"/>
|
|
9
|
+
<path d="M426.046 382.724C426.046 382.724 429.419 370.205 437.603 367.318C445.787 364.431 454.895 370.691 458.783 364.907C462.671 359.124 459.755 353.36 459.259 349.511" stroke="#263238" stroke-width="1.22136" stroke-miterlimit="10"/>
|
|
10
|
+
<path d="M431.46 380.8H401.62C401.303 380.799 400.99 380.86 400.698 380.98C400.405 381.1 400.14 381.277 399.916 381.5C399.692 381.723 399.514 381.988 399.393 382.28C399.271 382.572 399.209 382.885 399.209 383.201C399.209 383.84 399.463 384.454 399.915 384.906C400.367 385.358 400.98 385.612 401.62 385.612H401.863L404.186 391.706C404.367 392.178 404.686 392.584 405.103 392.87C405.519 393.157 406.013 393.31 406.518 393.31H426.571C427.076 393.309 427.569 393.155 427.985 392.869C428.401 392.583 428.722 392.177 428.904 391.706L431.227 385.612H431.46C432.099 385.612 432.712 385.358 433.164 384.906C433.617 384.454 433.871 383.84 433.871 383.201C433.871 382.885 433.808 382.572 433.687 382.28C433.566 381.988 433.388 381.723 433.164 381.5C432.94 381.277 432.674 381.1 432.382 380.98C432.089 380.86 431.776 380.799 431.46 380.8Z" fill="#263238"/>
|
|
11
|
+
<path d="M441.501 243.72H298.724C296.184 243.72 294.126 245.779 294.126 248.318V266.378C294.126 268.917 296.184 270.975 298.724 270.975H441.501C444.04 270.975 446.098 268.917 446.098 266.378V248.318C446.098 245.779 444.04 243.72 441.501 243.72Z" fill="#185197"/>
|
|
12
|
+
<path d="M305.557 252.409V264.656H304.235V252.409H305.557Z" fill="#263238"/>
|
|
13
|
+
<path d="M308.522 264.656H307.297V252.409H309.027L311.856 261.264V252.409H313.071V264.656H311.651L308.522 254.752V264.656Z" fill="#263238"/>
|
|
14
|
+
<path d="M316.599 264.658V253.694H314.344V252.45H320.224V253.694H317.969V264.697L316.599 264.658Z" fill="#263238"/>
|
|
15
|
+
<path d="M325.871 257.833V259.058H322.878V263.412H326.591V264.656H321.556V252.409H326.591V253.692H322.916V257.872L325.871 257.833Z" fill="#263238"/>
|
|
16
|
+
<path d="M330.897 252.409C332.841 252.409 333.629 253.381 333.629 255.209V256.181C333.629 257.532 333.152 258.368 332.103 258.708C333.22 259.038 333.638 259.952 333.638 261.264V263.208C333.597 263.711 333.684 264.216 333.891 264.676H332.501C332.311 264.205 332.234 263.695 332.278 263.189V261.245C332.278 259.864 331.626 259.427 330.489 259.427H329.517V264.656H328.156V252.409H330.897ZM330.547 258.183C331.626 258.183 332.278 257.833 332.278 256.501V255.325C332.278 254.227 331.879 253.653 330.858 253.653H329.507V258.183H330.547Z" fill="#263238"/>
|
|
17
|
+
<path d="M336.612 264.656H335.388V252.409H337.118L339.956 261.264V252.409H341.171V264.656H339.762L336.622 254.752L336.612 264.656Z" fill="#263238"/>
|
|
18
|
+
<path d="M344.292 262.187L343.825 264.656H342.562L344.904 252.409H346.848L349.191 264.656H347.83L347.353 262.187H344.292ZM344.467 261.021H347.198L345.818 253.945L344.467 261.021Z" fill="#263238"/>
|
|
19
|
+
<path d="M350.648 264.656V252.409H352.009V263.412H355.508V264.656H350.648Z" fill="#263238"/>
|
|
20
|
+
<path d="M365.257 255.344V255.636H363.965V255.237C363.965 254.139 363.547 253.488 362.565 253.488C361.583 253.488 361.165 254.139 361.165 255.218C361.165 257.969 365.277 258.231 365.277 261.672C365.277 263.529 364.383 264.744 362.507 264.744C360.631 264.744 359.766 263.529 359.766 261.672V260.982H361.039V261.75C361.039 262.848 361.496 263.499 362.478 263.499C363.459 263.499 363.906 262.848 363.906 261.75C363.906 259.018 359.814 258.756 359.814 255.305C359.814 253.42 360.689 252.244 362.526 252.244C364.363 252.244 365.257 253.488 365.257 255.344Z" fill="#263238"/>
|
|
21
|
+
<path d="M371.168 257.833V259.058H368.184V263.412H371.858V264.656H366.813V252.409H371.858V253.692H368.184V257.872L371.168 257.833Z" fill="#263238"/>
|
|
22
|
+
<path d="M376.163 252.409C378.107 252.409 378.894 253.381 378.894 255.209V256.181C378.894 257.532 378.418 258.368 377.368 258.708C378.486 259.038 378.914 259.952 378.914 261.264V263.208C378.869 263.71 378.953 264.215 379.157 264.676H377.776C377.577 264.207 377.497 263.696 377.543 263.189V261.245C377.543 259.864 376.902 259.427 375.764 259.427H374.792V264.656H373.422V252.409H376.163ZM375.813 258.183C376.902 258.183 377.543 257.833 377.543 256.501V255.325C377.543 254.227 377.145 253.653 376.124 253.653H374.802V258.183H375.813Z" fill="#263238"/>
|
|
23
|
+
<path d="M381.703 252.409L383.696 263.101L385.64 252.409H386.894L384.6 264.656H382.588L380.284 252.409H381.703Z" fill="#263238"/>
|
|
24
|
+
<path d="M392.687 257.833V259.058H389.693V263.412H393.377V264.656H388.332V252.409H393.377V253.692H389.693V257.872L392.687 257.833Z" fill="#263238"/>
|
|
25
|
+
<path d="M397.713 252.409C399.657 252.409 400.444 253.381 400.444 255.209V256.181C400.444 257.532 399.968 258.368 398.918 258.708C400.036 259.038 400.463 259.952 400.463 261.264V263.208C400.419 263.71 400.503 264.215 400.706 264.676H399.326C399.127 264.207 399.047 263.696 399.093 263.189V261.245C399.093 259.864 398.442 259.427 397.304 259.427H396.332V264.656H394.972V252.409H397.713ZM397.363 258.183C398.442 258.183 399.093 257.833 399.093 256.501V255.325C399.093 254.227 398.694 253.653 397.674 253.653H396.342V258.183H397.363Z" fill="#263238"/>
|
|
26
|
+
<path d="M409.639 257.833V259.058H406.655V263.412H410.329V264.656H405.323V252.409H410.368V253.692H406.694V257.872L409.639 257.833Z" fill="#263238"/>
|
|
27
|
+
<path d="M414.665 252.409C416.609 252.409 417.396 253.381 417.396 255.209V256.181C417.396 257.532 416.92 258.368 415.87 258.708C416.988 259.038 417.416 259.952 417.416 261.264V263.208C417.376 263.71 417.46 264.214 417.659 264.676H416.278C416.079 264.207 415.999 263.696 416.045 263.189V261.245C416.045 259.864 415.404 259.427 414.266 259.427H413.294V264.656H411.934V252.409H414.665ZM414.315 258.183C415.404 258.183 416.045 257.833 416.045 256.501V255.325C416.045 254.227 415.647 253.653 414.626 253.653H413.304V258.183H414.315Z" fill="#263238"/>
|
|
28
|
+
<path d="M421.905 252.409C423.849 252.409 424.636 253.381 424.636 255.209V256.181C424.636 257.532 424.16 258.368 423.11 258.708C424.238 259.038 424.656 259.952 424.656 261.264V263.208C424.617 263.71 424.7 264.214 424.899 264.676H423.519C423.324 264.206 423.244 263.696 423.285 263.189V261.245C423.285 259.864 422.644 259.427 421.507 259.427H420.535V264.656H419.164V252.409H421.905ZM421.555 258.183C422.644 258.183 423.285 257.833 423.285 256.501V255.325C423.285 254.227 422.887 253.653 421.876 253.653H420.544V258.183H421.555Z" fill="#263238"/>
|
|
29
|
+
<path d="M426.318 255.366C426.318 253.49 427.242 252.285 429.118 252.285C430.994 252.285 431.937 253.49 431.937 255.366V261.703C431.937 263.56 430.965 264.785 429.118 264.785C427.271 264.785 426.318 263.56 426.318 261.703V255.366ZM427.66 261.771C427.66 262.889 428.136 263.54 429.118 263.54C430.099 263.54 430.566 262.889 430.566 261.771V255.298C430.566 254.19 430.109 253.529 429.118 253.529C428.126 253.529 427.66 254.19 427.66 255.298V261.771Z" fill="#263238"/>
|
|
30
|
+
<path d="M436.31 252.409C438.254 252.409 439.032 253.381 439.032 255.209V256.181C439.032 257.532 438.565 258.368 437.516 258.708C438.633 259.038 439.051 259.952 439.051 261.264V263.208C439.01 263.711 439.097 264.216 439.304 264.676H437.914C437.724 264.205 437.647 263.695 437.691 263.189V261.245C437.691 259.864 437.039 259.427 435.902 259.427H434.93V264.656H433.569V252.409H436.31ZM435.96 258.183C437.039 258.183 437.691 257.833 437.691 256.501V255.325C437.691 254.227 437.282 253.653 436.271 253.653H434.94V258.183H435.96Z" fill="#263238"/>
|
|
31
|
+
<path d="M327.68 214.813V220.499C327.68 224.873 329.624 226.448 332.666 226.448C335.709 226.448 337.653 224.873 337.653 220.499V207.037C337.653 202.663 335.709 201.001 332.666 201.001C329.624 201.001 327.68 202.663 327.68 207.037V208.874H318.582L320.332 173.357H345.701V182.105H328.992L328.205 196.685C329.063 195.246 330.3 194.068 331.781 193.282C333.261 192.495 334.929 192.129 336.603 192.224C343.689 192.224 347.295 197.21 347.295 206.221V219.829C347.295 229.626 342.435 235.225 332.948 235.225C323.461 235.225 318.601 229.626 318.601 219.829V214.813H327.68Z" fill="#263238"/>
|
|
32
|
+
<path d="M354.624 188.063C354.624 178.266 359.785 172.667 369.204 172.667C378.623 172.667 383.784 178.266 383.784 188.063V219.906C383.784 229.704 378.623 235.303 369.204 235.303C359.785 235.303 354.624 229.704 354.624 219.906V188.063ZM364.247 220.519C364.247 224.893 366.191 226.555 369.233 226.555C372.276 226.555 374.22 224.893 374.22 220.519V187.471C374.22 183.097 372.276 181.434 369.233 181.434C366.191 181.434 364.247 183.097 364.247 187.471V220.519Z" fill="#263238"/>
|
|
33
|
+
<path d="M391.016 188.063C391.016 178.266 396.177 172.667 405.596 172.667C415.014 172.667 420.176 178.266 420.176 188.063V219.906C420.176 229.704 415.014 235.303 405.596 235.303C396.177 235.303 391.016 229.704 391.016 219.906V188.063ZM400.638 220.519C400.638 224.893 402.582 226.555 405.625 226.555C408.667 226.555 410.611 224.893 410.611 220.519V187.471C410.611 183.097 408.667 181.434 405.625 181.434C402.582 181.434 400.638 183.097 400.638 187.471V220.519Z" fill="#263238"/>
|
|
34
|
+
<path d="M148.716 329.061C154.785 328.154 160.965 329.692 165.901 333.337C173.842 339.442 179.878 354.964 182.998 376.698C186.118 398.432 187.858 407.802 206.2 410.893C224.542 413.984 268.495 412.73 294.749 412.118C321.003 411.506 319.788 387.079 297.811 384.64C275.834 382.2 260.612 388.061 237.683 382.987C214.753 377.913 258.095 371.197 291.085 376.086C324.074 380.975 338.713 382.19 356.432 380.363" stroke="#263238" stroke-width="2.44271" stroke-linecap="round" stroke-linejoin="round"/>
|
|
35
|
+
<path d="M148.716 296.558C148.716 296.558 166.513 296.694 171.393 315.026C176.272 333.358 178.109 358.999 178.721 379.178C179.334 399.357 179.946 416.435 203.148 421.314C226.349 426.194 289.257 424.366 306.355 420.702C323.452 417.038 342.387 400.552 328.341 396.888C314.296 393.224 294.749 396.888 302.097 401.748C309.446 406.608 328.973 405.412 352.175 402.36" stroke="#263238" stroke-width="2.44271" stroke-linecap="round" stroke-linejoin="round"/>
|
|
36
|
+
<path d="M152.37 360.31C152.37 360.31 163.247 359.338 167.495 371.653C171.742 383.969 166.523 386.778 168.914 392.921C171.305 399.064 186.196 393.329 186.128 398.422C186.06 403.068 180.169 404.381 146.227 402.378C101.846 399.764 72.4816 406.636 74.8436 410.893C77.2055 415.15 112.664 411.865 104.149 418.455C95.6346 425.045 74.8436 417.483 58.7667 417.036C42.6898 416.589 39.8516 420.341 39.8516 420.341" stroke="#263238" stroke-width="2.44271" stroke-linecap="round" stroke-linejoin="round"/>
|
|
37
|
+
<path d="M153.683 186.672H46.8216C44.9106 186.672 43.3613 188.222 43.3613 190.133V392.581C43.3613 394.492 44.9106 396.041 46.8216 396.041H153.683C155.594 396.041 157.144 394.492 157.144 392.581V190.133C157.144 188.222 155.594 186.672 153.683 186.672Z" fill="#263238" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
38
|
+
<path d="M154.374 218.03H46.083V298.23H154.374V218.03Z" fill="#616161"/>
|
|
39
|
+
<path d="M154.374 311.263H46.083V391.463H154.374V311.263Z" fill="#616161"/>
|
|
40
|
+
<path d="M140.94 321.034H79.4609V383.728H140.94V321.034Z" fill="#185197" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
41
|
+
<path d="M140.94 226.991H79.4609V242.465H140.94V226.991Z" fill="#185197" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
42
|
+
<path d="M140.94 256.707H79.4609V272.181H140.94V256.707Z" fill="#185197" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
43
|
+
<path d="M138.879 219.827L137.693 223.083H83.2323L82.0464 219.827H70.5088V234.135H82.0464L83.2323 230.879H137.693L138.879 234.135H151.943V219.827H138.879Z" fill="#263238" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
44
|
+
<path d="M138.879 235.438L137.693 238.685H83.2323L82.0464 235.438H70.5088V249.737H82.0464L83.2323 246.49H137.693L138.879 249.737H151.943V235.438H138.879Z" fill="#263238" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
45
|
+
<path d="M138.879 251.039L137.693 254.295H83.2323L82.0464 251.039H70.5088V265.346H82.0464L83.2323 262.09H137.693L138.879 265.346H151.943V251.039H138.879Z" fill="#263238" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
46
|
+
<path d="M138.879 266.638L137.693 269.894H83.2323L82.0464 266.638H70.5088V280.946H82.0464L83.2323 277.7H137.693L138.879 280.946H151.943V266.638H138.879Z" fill="#263238" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
47
|
+
<path d="M138.879 282.25L137.693 285.496H83.2323L82.0464 282.25H70.5088V296.558H82.0464L83.2323 293.302H137.693L138.879 296.558H151.943V282.25H138.879Z" fill="#263238" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
48
|
+
<path d="M138.879 313.459L137.693 316.706H83.2323L82.0464 313.459H70.5088V327.758H82.0464L83.2323 324.511H137.693L138.879 327.758H151.943V313.459H138.879Z" fill="#263238" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
49
|
+
<path d="M138.879 329.061L137.693 332.317H83.2323L82.0464 329.061H70.5088V343.369H82.0464L83.2323 340.122H137.693L138.879 343.369H151.943V329.061H138.879Z" fill="#263238" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
50
|
+
<path d="M138.879 344.673L137.693 347.919H83.2323L82.0464 344.673H70.5088V358.971H82.0464L83.2323 355.724H137.693L138.879 358.971H151.943V344.673H138.879Z" fill="#263238" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
51
|
+
<path d="M138.879 360.271L137.693 363.527H83.2323L82.0464 360.271H70.5088V374.578H82.0464L83.2323 371.322H137.693L138.879 374.578H151.943V360.271H138.879Z" fill="#263238" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
52
|
+
<path d="M138.879 375.882L137.693 379.129H83.2323L82.0464 375.882H70.5088V390.18H82.0464L83.2323 386.934H137.693L138.879 390.18H151.943V375.882H138.879Z" fill="#263238" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
53
|
+
<path d="M151.925 300.727H48.2607V310.495H151.925V300.727Z" fill="white"/>
|
|
54
|
+
<path d="M57.0085 305.508C57.0085 304.968 56.8484 304.44 56.5482 303.991C56.2481 303.542 55.8215 303.191 55.3225 302.985C54.8234 302.778 54.2742 302.724 53.7444 302.829C53.2145 302.935 52.7279 303.195 52.3459 303.577C51.9639 303.959 51.7038 304.446 51.5984 304.975C51.493 305.505 51.5471 306.054 51.7538 306.553C51.9605 307.053 52.3106 307.479 52.7598 307.779C53.2089 308.079 53.737 308.239 54.2772 308.239C54.6359 308.239 54.9911 308.169 55.3225 308.032C55.6538 307.894 55.9549 307.693 56.2086 307.44C56.4622 307.186 56.6634 306.885 56.8006 306.553C56.9379 306.222 57.0085 305.867 57.0085 305.508Z" fill="#263238" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
55
|
+
<path d="M63.3739 308.239C64.8824 308.239 66.1052 307.017 66.1052 305.508C66.1052 304 64.8824 302.777 63.3739 302.777C61.8654 302.777 60.6426 304 60.6426 305.508C60.6426 307.017 61.8654 308.239 63.3739 308.239Z" fill="#185197" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
56
|
+
<path d="M75.2039 305.508C75.2039 304.968 75.0437 304.44 74.7435 303.991C74.4434 303.542 74.0168 303.191 73.5178 302.985C73.0187 302.778 72.4695 302.724 71.9397 302.829C71.4099 302.935 70.9232 303.195 70.5412 303.577C70.1592 303.959 69.8991 304.446 69.7937 304.975C69.6883 305.505 69.7424 306.054 69.9491 306.553C70.1558 307.053 70.5059 307.479 70.9551 307.779C71.4043 308.079 71.9323 308.239 72.4725 308.239C73.1969 308.239 73.8916 307.952 74.4039 307.44C74.9161 306.927 75.2039 306.233 75.2039 305.508Z" fill="#263238" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
57
|
+
<path d="M151.925 207.094H48.2607V216.863H151.925V207.094Z" fill="white"/>
|
|
58
|
+
<path d="M57.0085 211.897C57.0085 211.357 56.8484 210.829 56.5482 210.38C56.2481 209.931 55.8215 209.581 55.3225 209.374C54.8234 209.167 54.2742 209.113 53.7444 209.218C53.2145 209.324 52.7279 209.584 52.3459 209.966C51.9639 210.348 51.7038 210.835 51.5984 211.364C51.493 211.894 51.5471 212.443 51.7538 212.943C51.9605 213.442 52.3106 213.868 52.7598 214.168C53.2089 214.468 53.737 214.629 54.2772 214.629C54.6359 214.629 54.9911 214.558 55.3225 214.421C55.6538 214.283 55.9549 214.082 56.2086 213.829C56.4622 213.575 56.6634 213.274 56.8006 212.943C56.9379 212.611 57.0085 212.256 57.0085 211.897Z" fill="white" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
59
|
+
<path d="M66.0955 211.897C66.0955 211.357 65.9353 210.829 65.6351 210.38C65.335 209.931 64.9084 209.581 64.4094 209.374C63.9103 209.167 63.3611 209.113 62.8313 209.218C62.3015 209.324 61.8148 209.584 61.4328 209.966C61.0508 210.348 60.7907 210.835 60.6853 211.364C60.5799 211.894 60.634 212.443 60.8407 212.943C61.0474 213.442 61.3975 213.868 61.8467 214.168C62.2959 214.468 62.8239 214.629 63.3641 214.629C64.0885 214.629 64.7832 214.341 65.2955 213.829C65.8077 213.316 66.0955 212.622 66.0955 211.897Z" fill="#185197" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
60
|
+
<path d="M75.2039 211.897C75.2039 211.357 75.0437 210.829 74.7435 210.38C74.4434 209.931 74.0168 209.581 73.5178 209.374C73.0187 209.167 72.4695 209.113 71.9397 209.218C71.4099 209.324 70.9232 209.584 70.5412 209.966C70.1592 210.348 69.8991 210.835 69.7937 211.364C69.6883 211.894 69.7424 212.443 69.9491 212.943C70.1558 213.442 70.5059 213.868 70.9551 214.168C71.4043 214.468 71.9323 214.629 72.4725 214.629C73.1969 214.629 73.8916 214.341 74.4039 213.829C74.9161 213.316 75.2039 212.622 75.2039 211.897Z" fill="white" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
61
|
+
<path d="M151.925 194.527H48.2607V204.295H151.925V194.527Z" fill="white"/>
|
|
62
|
+
<path d="M57.0085 199.308C57.0085 198.768 56.8484 198.24 56.5482 197.791C56.2481 197.342 55.8215 196.992 55.3225 196.785C54.8234 196.578 54.2742 196.524 53.7444 196.63C53.2145 196.735 52.7279 196.995 52.3459 197.377C51.9639 197.759 51.7038 198.246 51.5984 198.776C51.493 199.305 51.5471 199.855 51.7538 200.354C51.9605 200.853 52.3106 201.279 52.7598 201.579C53.2089 201.88 53.737 202.04 54.2772 202.04C54.6359 202.04 54.9911 201.969 55.3225 201.832C55.6538 201.695 55.9549 201.493 56.2086 201.24C56.4622 200.986 56.6634 200.685 56.8006 200.354C56.9379 200.022 57.0085 199.667 57.0085 199.308Z" fill="#185197" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
63
|
+
<path d="M66.0955 199.308C66.0955 198.768 65.9353 198.24 65.6351 197.791C65.335 197.342 64.9084 196.992 64.4094 196.785C63.9103 196.578 63.3611 196.524 62.8313 196.63C62.3015 196.735 61.8148 196.995 61.4328 197.377C61.0508 197.759 60.7907 198.246 60.6853 198.776C60.5799 199.305 60.634 199.855 60.8407 200.354C61.0474 200.853 61.3975 201.279 61.8467 201.579C62.2959 201.88 62.8239 202.04 63.3641 202.04C64.0885 202.04 64.7832 201.752 65.2955 201.24C65.8077 200.728 66.0955 200.033 66.0955 199.308Z" fill="#263238" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
64
|
+
<path d="M75.2039 199.308C75.2039 198.768 75.0437 198.24 74.7435 197.791C74.4434 197.342 74.0168 196.992 73.5178 196.785C73.0187 196.578 72.4695 196.524 71.9397 196.63C71.4099 196.735 70.9232 196.995 70.5412 197.377C70.1592 197.759 69.8991 198.246 69.7937 198.776C69.6883 199.305 69.7424 199.855 69.9491 200.354C70.1558 200.853 70.5059 201.279 70.9551 201.579C71.4043 201.88 71.9323 202.04 72.4725 202.04C73.1969 202.04 73.8916 201.752 74.4039 201.24C74.9161 200.728 75.2039 200.033 75.2039 199.308Z" fill="#263238" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
65
|
+
<path d="M65.6199 220.07H48.5225V227.399H65.6199V220.07Z" fill="#263238" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
66
|
+
<path d="M65.6199 235.942H48.5225V243.271H65.6199V235.942Z" fill="#263238" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
67
|
+
<path d="M65.6199 251.824H48.5225V259.153H65.6199V251.824Z" fill="#185197" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
68
|
+
<path d="M65.6199 267.698H48.5225V275.027H65.6199V267.698Z" fill="#185197" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
69
|
+
<path d="M65.6199 283.58H48.5225V290.909H65.6199V283.58Z" fill="#185197" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
70
|
+
<path d="M65.6199 313.294H48.5225V320.623H65.6199V313.294Z" fill="#185197" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
71
|
+
<path d="M65.6199 329.178H48.5225V336.507H65.6199V329.178Z" fill="#263238" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
72
|
+
<path d="M65.6199 345.05H48.5225V352.379H65.6199V345.05Z" fill="#185197" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
73
|
+
<path d="M65.6199 360.932H48.5225V368.261H65.6199V360.932Z" fill="#263238" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
74
|
+
<path d="M65.6199 376.804H48.5225V384.133H65.6199V376.804Z" fill="#185197" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
75
|
+
<path d="M208.824 142.263C208.824 142.263 192.436 146.433 187.887 152.663C183.338 158.894 164.899 201.263 164.899 201.263C164.899 201.263 158.922 207.97 165.385 214.434C171.849 220.897 184.777 223.289 189.569 217.544C194.361 211.8 201.291 184.739 202.253 181.629C203.216 178.518 210.389 152.177 211.108 150.748C211.827 149.319 212.518 143.118 208.824 142.263Z" fill="#BDBDBD" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
76
|
+
<path d="M208.824 142.263C208.824 142.263 192.436 146.433 187.887 152.663C185.136 156.425 177.302 173.435 171.538 186.275C174.337 185.711 186.001 183.981 199.658 190.863C200.97 186.275 201.942 182.649 202.253 181.629C203.225 178.518 210.389 152.177 211.108 150.748C211.827 149.319 212.518 143.118 208.824 142.263Z" fill="#263238" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
77
|
+
<path d="M256.84 87.0629C259.659 88.654 261.917 91.0782 263.304 94.003C265.248 98.5519 265.248 105.492 265.248 105.492C265.248 105.492 295.895 104.52 307.627 104.296C319.359 104.073 327.262 106.931 327.495 112.675C327.728 118.42 325.104 129.675 318.64 133.981C312.176 138.287 292.066 131.347 281.772 128.48C271.479 125.612 267.882 126.536 260.466 125.564C253.049 124.592 250.882 121.734 249.686 117.185C248.491 112.636 250.882 104.015 250.882 97.0745C250.882 90.1344 249.9 85.6243 256.84 87.0629Z" fill="#BDBDBD" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
78
|
+
<path d="M301.612 116.505C301.612 116.505 297.306 127.517 289.404 133.505C283.737 137.801 276.087 140.25 272.228 141.281C258.416 137.393 238.918 135.565 227.516 138.093C227.516 138.093 211.595 141.903 208.825 142.253C206.055 142.603 199.474 164.755 198.084 179.986C196.694 195.217 201.204 232.96 201.204 235.73C201.204 238.5 202.934 284.554 205.705 297.365C208.475 310.175 211.595 327.497 211.935 329.907C212.275 332.318 214.705 350.319 214.705 356.219C214.705 362.119 211.896 376.31 211.896 376.31C211.896 376.31 199.435 384.621 194.585 389.461C189.735 394.302 198.152 399.415 204.305 400.542C214.744 402.486 227.147 392.232 227.147 392.232L241.056 386.701C244.74 385.224 245.829 381.268 245.916 377.72L246.558 352.078C248.735 361.15 250.524 370.316 251.923 379.576C252.487 383.367 253.07 387.352 255.354 390.414C256.622 392.172 258.262 393.629 260.156 394.681C261.536 395.323 263.004 395.187 264.394 395.984C266.95 397.461 268 400.649 270.479 402.253C275.816 405.41 281.943 406.978 288.14 406.773C288.14 406.773 301.981 407.473 302.72 399.852C303.459 392.232 284.709 379.771 284.709 379.771C284.709 379.771 281.939 329.227 279.849 312.605C277.759 295.984 272.228 268.982 272.228 257.201C272.228 245.421 277.769 190.027 277.769 190.027C277.769 190.027 278.332 188.569 279.198 186.197L280.111 185.691C288.014 181.142 310.039 163.423 317.222 152.167C324.104 141.397 326.592 121.19 326.787 115.28" fill="#BDBDBD"/>
|
|
79
|
+
<path d="M301.612 116.505C301.612 116.505 297.306 127.517 289.404 133.505C283.737 137.801 276.087 140.25 272.228 141.281C258.416 137.393 238.918 135.565 227.516 138.093C227.516 138.093 211.595 141.903 208.825 142.253C206.055 142.603 199.474 164.755 198.084 179.986C196.694 195.217 201.204 232.96 201.204 235.73C201.204 238.5 202.934 284.554 205.705 297.365C208.475 310.175 211.595 327.497 211.935 329.907C212.275 332.318 214.705 350.319 214.705 356.219C214.705 362.119 211.896 376.31 211.896 376.31C211.896 376.31 199.435 384.621 194.585 389.461C189.735 394.302 198.152 399.415 204.305 400.542C214.744 402.486 227.147 392.232 227.147 392.232L241.056 386.701C244.74 385.224 245.829 381.268 245.916 377.72L246.558 352.078C248.735 361.15 250.524 370.316 251.923 379.576C252.487 383.367 253.07 387.352 255.354 390.414C256.622 392.172 258.262 393.629 260.156 394.681C261.536 395.323 263.004 395.187 264.394 395.984C266.95 397.461 268 400.649 270.479 402.253C275.816 405.41 281.943 406.978 288.14 406.773C288.14 406.773 301.981 407.473 302.72 399.852C303.459 392.232 284.709 379.771 284.709 379.771C284.709 379.771 281.939 329.227 279.849 312.605C277.759 295.984 272.228 268.982 272.228 257.201C272.228 245.421 277.769 190.027 277.769 190.027C277.769 190.027 278.332 188.569 279.198 186.197L280.111 185.691C288.014 181.142 310.039 163.423 317.222 152.167C324.104 141.397 326.592 121.19 326.787 115.28" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
80
|
+
<path d="M302.651 399.851C303.341 392.231 284.64 379.77 284.64 379.77C284.64 379.77 284.426 375.882 284.076 369.904C273.229 372.518 262.108 373.823 250.95 373.792C251.281 375.736 251.605 377.68 251.922 379.624C252.486 383.415 253.069 387.4 255.353 390.462C256.621 392.219 258.261 393.676 260.155 394.729C261.535 395.37 263.003 395.234 264.393 396.031C266.949 397.509 267.999 400.697 270.478 402.301C275.815 405.458 281.942 407.026 288.139 406.82C288.139 406.82 301.951 407.472 302.651 399.851Z" fill="#263238" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
81
|
+
<path d="M241.056 386.7C244.739 385.222 245.828 381.266 245.916 377.718C245.916 376.377 245.984 375.036 246.013 373.694C234.96 373.32 223.98 371.749 213.266 369.009C212.605 373.053 211.964 376.309 211.964 376.309C211.964 376.309 199.503 384.62 194.652 389.46C189.802 394.301 198.22 399.413 204.372 400.541C214.812 402.485 227.214 392.23 227.214 392.23L241.056 386.7Z" fill="#263238" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
82
|
+
<path d="M302.652 399.852C302.652 399.745 302.652 399.628 302.652 399.512C299.593 401.7 296.058 403.132 292.339 403.691C281.394 405.635 271.421 400.046 268.748 397.616C266.075 395.186 264.374 393.233 260.234 390.56C256.093 387.887 252.351 381.306 252.351 381.306L252.195 381.549C252.71 384.708 253.43 387.867 255.325 390.414C256.593 392.172 258.232 393.628 260.127 394.681C261.507 395.322 262.975 395.186 264.365 395.983C266.921 397.461 267.971 400.649 270.449 402.253C275.786 405.41 281.913 406.978 288.111 406.773C288.111 406.773 301.952 407.472 302.652 399.852Z" fill="white" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
83
|
+
<path d="M241.056 386.7C244.273 385.407 245.508 382.238 245.838 379.099C242.65 381.043 235.282 385.29 230.607 387.157C224.532 389.587 220.391 396.877 208.484 396.877C199.989 396.877 195.333 393.552 193.36 391.637C192.31 395.739 199.192 399.579 204.363 400.541C214.802 402.485 227.205 392.23 227.205 392.23L241.056 386.7Z" fill="white" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
84
|
+
<path d="M285.991 135.76C281.651 138.169 277.027 140.027 272.227 141.291C258.415 137.403 238.917 135.576 227.515 138.103C227.515 138.103 211.594 141.913 208.824 142.263C206.053 142.613 199.473 164.765 198.083 179.996C197.228 189.405 198.618 207.367 199.803 220.402C228.662 230.977 259.436 227.352 274.482 224.475C275.999 207.212 277.719 190.037 277.719 190.037C277.719 190.037 278.283 188.579 279.148 186.207L280.062 185.702C285.437 182.611 297.315 173.445 306.636 164.318C287.925 158.923 285.66 144.168 285.991 135.76Z" fill="#263238" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
85
|
+
<path d="M259.164 152.275C259.107 149.368 258.364 146.515 256.996 143.95C255.628 141.384 253.673 139.178 251.291 137.51C242.446 136.655 233.795 136.713 227.516 138.103C227.516 138.103 223.113 139.163 218.535 140.203C215.452 143.471 213.717 147.782 213.675 152.275C213.675 163.074 223.861 171.832 236.42 171.832C248.978 171.832 259.164 163.074 259.164 152.275Z" fill="#616161" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
86
|
+
<path d="M252.35 381.306C257.543 383.133 263.048 383.906 268.544 383.581C280.489 383.065 284.64 379.77 284.64 379.77C284.64 379.77 281.87 329.226 279.78 312.605C277.69 295.984 272.159 268.982 272.159 257.201C272.159 250.261 274.103 228.167 275.668 211.196L274.92 211.284C272.931 211.515 270.915 211.315 269.01 210.698C267.105 210.081 265.356 209.06 263.88 207.707C262.405 206.353 261.238 204.697 260.459 202.852C259.681 201.007 259.308 199.016 259.368 197.015L259.698 185.963C250.69 186.551 241.646 186.29 232.686 185.186C216.59 183.368 199.969 177.915 199.969 177.915L198.219 178.45C198.219 178.965 198.112 179.48 198.064 179.985C196.684 195.226 201.184 232.959 201.184 235.73C201.184 238.5 202.914 284.553 205.684 297.364C208.455 310.175 211.575 327.496 211.915 329.907C212.255 332.317 214.685 350.319 214.685 356.219C214.685 362.119 212.022 375.775 211.925 376.281C214.005 376.922 218.359 378.225 226.203 380.451C238.139 383.833 245.847 379.761 245.847 379.761C245.847 375.61 246.537 352.068 246.537 352.068C246.537 352.068 250.931 371.994 252.35 381.306Z" fill="white" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
87
|
+
<path d="M212.8 192.503L243.894 197.616V216.784L226.427 234.261L212.372 217.212L212.8 192.503Z" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
88
|
+
<path d="M235.224 300.291C232.979 287.655 231.336 275.174 231.336 266.212L218.875 257.902" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
89
|
+
<path d="M246.557 352.078C246.557 352.078 241.308 331.792 236.973 309.572" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
90
|
+
<path d="M255.82 244.681C256.103 245.803 256.534 246.881 257.103 247.889C260.943 254.693 266.473 255.558 266.473 255.558L267.329 237.663" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
91
|
+
<path d="M257.104 234.253C256.442 235.543 255.967 236.921 255.694 238.346" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
92
|
+
<path d="M272.373 288.684C272.82 291.046 273.277 293.369 273.724 295.585" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
93
|
+
<path d="M266.474 255.558C266.474 255.558 268.67 268.69 271.207 282.453" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
94
|
+
<path d="M225.504 130.734L225.31 140.94C225.31 140.94 221.791 143.758 221.091 151.146C220.391 158.533 227.429 165.405 235.341 165.405C243.253 165.405 250.125 159.242 251.359 153.615C252.594 147.987 251 139.89 251 139.89L250.475 127.575C250.475 127.575 242.699 132.493 235.341 131.093C227.983 129.694 225.844 127.04 225.844 127.04L225.504 130.734Z" fill="#BDBDBD" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
95
|
+
<path d="M219.973 104.101C219.973 104.101 219.496 109.933 220.76 111.362C222.024 112.791 223.764 113.889 224.084 112.625C224.405 111.362 224.551 104.733 224.872 103.314C225.192 101.894 220.128 100.116 219.973 104.101Z" fill="#BDBDBD" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
96
|
+
<path d="M223.064 104.002C223.064 104.002 221.616 115.666 221.616 121.314C221.616 126.961 219.429 129.09 226.476 132.764C233.523 136.438 239.627 136.904 244.497 135.194C249.366 133.483 252.049 129.362 252.273 125.94C252.496 122.519 252.516 117.192 252.516 117.192C252.516 117.192 259.32 111.108 257.881 106.5C256.442 101.893 253.254 107.715 253.254 107.715C254.595 103.713 255.252 99.5135 255.198 95.2931C254.955 88.9556 250.086 88.2266 248.132 88.2266C246.178 88.2266 234.252 84.5622 228.663 88.178C223.074 91.7939 223.064 104.002 223.064 104.002Z" fill="#BDBDBD" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
97
|
+
<path d="M253.274 107.667C254.615 103.665 255.272 99.4656 255.218 95.2451C254.975 88.9077 250.105 88.1787 248.152 88.1787H248.025C246.995 89.9089 245.722 92.5721 245.722 92.5721L246.694 93.0581C246.694 93.0581 245.722 98.4236 247.666 99.1526C249.61 99.8816 248.638 101.583 248.638 104.508C248.638 107.434 250.348 109.621 251.32 109.621C252.088 109.621 253.264 107.677 253.789 106.831C253.469 107.298 253.274 107.667 253.274 107.667Z" fill="#263238" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
98
|
+
<path d="M234.029 108.369C234.029 108.369 231.978 110.255 232.921 111.684C233.864 113.113 237.343 113.89 238.296 112.15C238.623 111.565 238.739 110.886 238.624 110.225C238.509 109.565 238.17 108.964 237.664 108.525" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
99
|
+
<path d="M231.822 106.473C231.822 107.445 231.433 108.203 230.947 108.203C230.461 108.203 230.082 107.426 230.082 106.473C230.082 105.521 230.471 104.733 230.947 104.733C231.423 104.733 231.822 105.511 231.822 106.473Z" fill="#263238"/>
|
|
100
|
+
<path d="M242.319 106.919C242.319 107.891 241.93 108.659 241.454 108.659C240.978 108.659 240.579 107.881 240.579 106.919C240.579 105.956 240.968 105.188 241.454 105.188C241.94 105.188 242.319 105.947 242.319 106.919Z" fill="#263238"/>
|
|
101
|
+
<path d="M239.715 102.206C239.715 102.206 243.029 99.9896 246.188 103.469" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
102
|
+
<path d="M234.68 117.748C234.263 117.538 233.807 117.42 233.341 117.4C232.875 117.379 232.411 117.458 231.978 117.631C231.609 117.784 231.278 118.014 231.007 118.306C230.735 118.598 230.529 118.944 230.403 119.323C230.403 119.323 228.381 120.946 230.51 121.655C232.638 122.365 237.314 122.316 238.49 122.268C238.961 122.202 239.387 121.955 239.678 121.579C239.969 121.203 240.1 120.728 240.045 120.256C240.055 120.064 240.015 119.874 239.928 119.703C239.841 119.532 239.71 119.388 239.549 119.284C239.06 118.483 238.297 117.887 237.402 117.604C236.507 117.322 235.54 117.373 234.68 117.748Z" fill="#666666" stroke="#263238" stroke-width="0.896907" stroke-linecap="round" stroke-linejoin="round"/>
|
|
103
|
+
<path d="M229.945 119.934C233.218 119.416 236.564 119.615 239.753 120.517" stroke="#263238" stroke-width="1.04322" stroke-linecap="round" stroke-linejoin="round"/>
|
|
104
|
+
<path d="M218.923 90.6189L244.992 94.2834C244.992 94.2834 255.947 91.3674 256.928 89.1706C257.91 86.9739 254.246 76.0195 252.292 73.3368C250.338 70.654 231.588 75.2808 225.737 76.2528C219.885 77.2248 215.511 78.673 215.784 81.6474C216.056 84.6217 218.923 90.6189 218.923 90.6189Z" fill="#185197" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
105
|
+
<path d="M218.923 90.6177C218.923 90.6177 204.061 102.797 203.818 104.002C203.575 105.207 225.494 105.703 232.317 104.245C239.141 102.787 244.953 94.253 244.953 94.253L218.923 90.6177Z" fill="white" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
106
|
+
<path d="M202.681 252.099L243.505 228.158C244.857 229.17 246.493 229.731 248.181 229.762C249.87 229.793 251.525 229.292 252.913 228.33C254.301 227.367 255.351 225.993 255.915 224.401C256.478 222.809 256.527 221.08 256.053 219.459L247.529 224.445L245.585 221.092L254.119 216.096C252.937 214.886 251.405 214.08 249.739 213.791C248.074 213.501 246.359 213.744 244.839 214.484C243.319 215.224 242.071 216.424 241.271 217.914C240.471 219.404 240.161 221.107 240.385 222.783L199.512 246.723C198.16 245.711 196.524 245.15 194.835 245.119C193.147 245.089 191.491 245.59 190.103 246.552C188.715 247.514 187.665 248.889 187.102 250.481C186.538 252.073 186.49 253.802 186.963 255.423L195.264 250.563L197.208 253.926L188.907 258.786C190.087 259.998 191.619 260.806 193.286 261.097C194.952 261.387 196.667 261.145 198.187 260.404C199.708 259.663 200.956 258.462 201.754 256.971C202.552 255.479 202.859 253.775 202.632 252.099H202.681Z" fill="#185197" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
107
|
+
<path d="M237.451 234.3C237.451 234.3 242.476 237.896 242.476 241.24C242.476 244.584 236.488 248.19 232.425 248.423C228.363 248.656 227.634 244.117 228.353 241.726C229.072 239.335 237.451 234.3 237.451 234.3Z" fill="#BDBDBD" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
108
|
+
<path d="M184.777 204.372C184.777 204.372 212.547 219.924 216.377 219.458C220.207 218.991 225.475 215.628 228.352 216.542C231.229 217.456 239.122 229.713 239.841 231.87C240.56 234.028 234.097 241.688 232.658 242.883C231.22 244.079 226.671 248.871 225.718 249.347C224.765 249.823 218.535 255.334 215.425 255.334C212.314 255.334 207.046 252.934 206.56 251.738C206.074 250.542 207.279 248.871 207.279 248.871L192.699 242.164C192.699 242.164 164.919 227.078 160.137 219.419C155.355 211.76 167.32 198.113 167.32 198.113" fill="#BDBDBD"/>
|
|
109
|
+
<path d="M184.777 204.372C184.777 204.372 212.547 219.924 216.377 219.458C220.207 218.991 225.475 215.628 228.352 216.542C231.229 217.456 239.122 229.713 239.841 231.87C240.56 234.028 234.097 241.688 232.658 242.883C231.22 244.079 226.671 248.871 225.718 249.347C224.765 249.823 218.535 255.334 215.425 255.334C212.314 255.334 207.046 252.934 206.56 251.738C206.074 250.542 207.279 248.871 207.279 248.871L192.699 242.164C192.699 242.164 164.919 227.078 160.137 219.419C155.355 211.76 167.32 198.113 167.32 198.113" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
110
|
+
<path d="M216.862 241.96C217.711 242.073 218.499 242.463 219.104 243.069C219.708 243.675 220.096 244.464 220.206 245.313C220.692 248.424 219.487 253.935 219.487 253.935" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
111
|
+
<path d="M222.364 237.412C222.364 237.412 225.718 237.655 225.718 240.766V249.387" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
112
|
+
<path d="M225.961 228.799C225.961 228.799 232.182 233.348 232.658 235.982C232.922 238.288 232.922 240.617 232.658 242.922" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
113
|
+
<path d="M253.692 212.383C255.092 212.383 258.795 203.11 258.795 199.63C258.795 196.15 260.418 170.655 264.131 158.806C266.794 150.32 269.088 143.769 270.177 140.727C267.348 140.007 264.345 139.366 261.215 138.783C259.359 144.411 253.692 161.975 251.378 173.143C248.599 186.586 249.289 202.585 249.522 203.975C249.755 205.365 252.321 212.383 253.692 212.383Z" fill="white" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
114
|
+
<path d="M258.805 184.254L250.847 183.209C250.193 183.123 249.594 183.584 249.508 184.237L248.674 190.588C248.588 191.242 249.048 191.842 249.702 191.927L257.66 192.972C258.314 193.058 258.913 192.598 258.999 191.944L259.833 185.593C259.919 184.939 259.458 184.34 258.805 184.254Z" fill="white" stroke="#263238" stroke-width="1.21952" stroke-linecap="round" stroke-linejoin="round"/>
|
|
115
|
+
<path d="M256.71 186.27L252.595 185.724C251.941 185.637 251.34 186.098 251.253 186.752L250.84 189.864C250.753 190.519 251.213 191.12 251.868 191.207L255.982 191.753C256.637 191.84 257.238 191.38 257.325 190.725L257.738 187.613C257.824 186.958 257.364 186.357 256.71 186.27Z" fill="white" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
116
|
+
<path d="M201.777 208.902C203.177 208.902 206.88 199.629 206.88 196.15C206.88 192.67 208.504 167.174 212.217 155.326C214.569 147.822 216.173 143.03 217.077 140.532C213.451 141.348 210.01 142.097 208.863 142.242C208.008 142.349 206.803 144.517 205.491 147.9C203.955 152.662 202.079 158.854 200.631 164.89C199.497 169.863 198.67 174.901 198.152 179.976C197.825 185.066 197.803 190.172 198.084 195.265C198.084 195.44 198.103 195.576 198.142 195.673C198.288 197.083 200.388 208.902 201.777 208.902Z" fill="white" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
117
|
+
<path d="M207.061 177.595L199.068 176.742C198.411 176.672 197.822 177.147 197.752 177.804L197.071 184.183C197.001 184.84 197.477 185.429 198.133 185.499L206.127 186.351C206.783 186.422 207.372 185.946 207.442 185.29L208.123 178.911C208.193 178.254 207.717 177.665 207.061 177.595Z" fill="white" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
118
|
+
<path d="M204.945 179.013L200.818 178.573C200.161 178.503 199.572 178.978 199.502 179.635L199.169 182.756C199.099 183.413 199.574 184.002 200.231 184.072L204.358 184.512C205.015 184.582 205.604 184.107 205.674 183.45L206.007 180.329C206.077 179.672 205.601 179.083 204.945 179.013Z" fill="white" stroke="#263238" stroke-width="1.22136" stroke-linecap="round" stroke-linejoin="round"/>
|
|
119
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M5.83301 1.66675C5.16997 1.66675 4.53408 1.93014 4.06524 2.39898C3.5964 2.86782 3.33301 3.50371 3.33301 4.16675V15.8334C3.33301 16.4965 3.5964 17.1323 4.06524 17.6012C4.53408 18.07 5.16997 18.3334 5.83301 18.3334H14.1663C14.8294 18.3334 15.4653 18.07 15.9341 17.6012C16.4029 17.1323 16.6663 16.4965 16.6663 15.8334V15.0001C16.6663 14.5398 16.2932 14.1667 15.833 14.1667C15.3728 14.1667 14.9997 14.5398 14.9997 15.0001V15.8334C14.9997 16.0544 14.9119 16.2664 14.7556 16.4227C14.5993 16.579 14.3874 16.6667 14.1663 16.6667H5.83301C5.61199 16.6667 5.40003 16.579 5.24375 16.4227C5.08747 16.2664 4.99967 16.0544 4.99967 15.8334V4.16675C4.99967 3.94573 5.08747 3.73377 5.24375 3.57749C5.40003 3.42121 5.61199 3.33341 5.83301 3.33341H14.1663C14.3874 3.33341 14.5993 3.42121 14.7556 3.57749C14.9119 3.73377 14.9997 3.94573 14.9997 4.16675V5.00008C14.9997 5.46032 15.3728 5.83341 15.833 5.83341C16.2932 5.83341 16.6663 5.46032 16.6663 5.00008V4.16675C16.6663 3.50371 16.4029 2.86782 15.9341 2.39898C15.4653 1.93014 14.8294 1.66675 14.1663 1.66675H5.83301Z" fill="#D55F5A"/>
|
|
3
|
+
<path d="M13.9223 6.91083C13.5968 6.58539 13.0692 6.58539 12.7438 6.91083C12.4183 7.23626 12.4183 7.7639 12.7438 8.08934L13.8212 9.16675H9.99967C9.53944 9.16675 9.16634 9.53984 9.16634 10.0001C9.16634 10.4603 9.53944 10.8334 9.99967 10.8334H13.8212L12.7438 11.9108C12.4183 12.2363 12.4183 12.7639 12.7438 13.0893C13.0692 13.4148 13.5968 13.4148 13.9223 13.0893L16.4223 10.5893C16.7477 10.2639 16.7477 9.73626 16.4223 9.41083L13.9223 6.91083Z" fill="#D55F5A"/>
|
|
4
|
+
</svg>
|