@riverty/web-components 6.1.0 → 6.2.1
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/CHANGELOG.md +29 -0
- package/custom-elements.json +160 -1
- package/dist/cjs/{index-DJ4H_bFj.js → index-BnETQtSf.js} +9 -382
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/cjs/r-accordion-panel.cjs.entry.js +1 -1
- package/dist/cjs/r-accordion-section.cjs.entry.js +1 -1
- package/dist/cjs/r-accordion-trigger.cjs.entry.js +1 -1
- package/dist/cjs/r-accordion.cjs.entry.js +1 -1
- package/dist/cjs/r-alert.cjs.entry.js +9 -6
- package/dist/cjs/r-badge.cjs.entry.js +1 -1
- package/dist/cjs/r-button.cjs.entry.js +6 -2
- package/dist/cjs/r-checkbox-group.cjs.entry.js +1 -1
- package/dist/cjs/r-checkbox.cjs.entry.js +4 -4
- package/dist/cjs/r-design-system-devtools.cjs.entry.js +1 -1
- package/dist/cjs/r-dialog.cjs.entry.js +1 -1
- package/dist/cjs/r-hint_2.cjs.entry.js +3 -3
- package/dist/cjs/r-icon-button_2.cjs.entry.js +24 -4
- package/dist/cjs/r-icon.cjs.entry.js +2 -2
- package/dist/cjs/r-illustration.cjs.entry.js +396 -0
- package/dist/cjs/r-input-code.cjs.entry.js +34 -12
- package/dist/cjs/r-input-date.cjs.entry.js +7 -7
- package/dist/cjs/r-input-password.cjs.entry.js +3 -3
- package/dist/cjs/r-input-phone-number.cjs.entry.js +4 -4
- package/dist/cjs/r-input.cjs.entry.js +5 -4
- package/dist/cjs/r-list-item.cjs.entry.js +1 -1
- package/dist/cjs/r-pagination.cjs.entry.js +56 -50
- package/dist/cjs/r-panel.cjs.entry.js +3 -3
- package/dist/cjs/r-popover-action.cjs.entry.js +2 -2
- package/dist/cjs/r-popover-content.cjs.entry.js +2 -2
- package/dist/cjs/r-popover-headline.cjs.entry.js +2 -2
- package/dist/cjs/r-popover-trigger.cjs.entry.js +2 -2
- package/dist/cjs/r-popover.cjs.entry.js +46 -5
- package/dist/cjs/r-progress-bar.cjs.entry.js +2 -2
- package/dist/cjs/r-radio-button-description.cjs.entry.js +2 -2
- package/dist/cjs/r-radio-button-leading.cjs.entry.js +2 -2
- package/dist/cjs/r-radio-button-title.cjs.entry.js +2 -2
- package/dist/cjs/r-radio-button-trailing.cjs.entry.js +2 -2
- package/dist/cjs/r-radio-button.cjs.entry.js +8 -7
- package/dist/cjs/r-radio-group.cjs.entry.js +83 -10
- package/dist/cjs/r-select-option.cjs.entry.js +2 -2
- package/dist/cjs/r-select.cjs.entry.js +6 -4
- package/dist/cjs/r-skip-link.cjs.entry.js +2 -2
- package/dist/cjs/r-stepper-item.cjs.entry.js +19 -4
- package/dist/cjs/r-stepper.cjs.entry.js +76 -3
- package/dist/cjs/r-tab-panel.cjs.entry.js +2 -2
- package/dist/cjs/r-tab.cjs.entry.js +3 -3
- package/dist/cjs/r-tabs-list.cjs.entry.js +4 -4
- package/dist/cjs/r-tabs.cjs.entry.js +2 -2
- package/dist/cjs/r-textarea.cjs.entry.js +1 -1
- package/dist/cjs/r-toast-group.cjs.entry.js +13 -4
- package/dist/cjs/r-toast.cjs.entry.js +87 -18
- package/dist/cjs/web-components.cjs.js +2 -2
- package/dist/collection/collection-manifest.json +1 -0
- package/dist/collection/components/alert/alert.css +4 -3
- package/dist/collection/components/alert/alert.js +7 -4
- package/dist/collection/components/button/button.js +30 -1
- package/dist/collection/components/button/exports.js +1 -0
- package/dist/collection/components/checkbox/checkbox.js +3 -3
- package/dist/collection/components/icon/exports.js +1 -1
- package/dist/collection/components/icon/icon.js +1 -1
- package/dist/collection/components/icon/riverty-kit.js +1 -1
- package/dist/collection/components/illustration/data.js +112 -0
- package/dist/collection/components/illustration/exports.js +3 -0
- package/dist/collection/components/illustration/illustration.css +52 -0
- package/dist/collection/components/illustration/illustration.js +540 -0
- package/dist/collection/components/illustration/illustrations-ui-kit.js +2 -0
- package/dist/collection/components/input/exports.js +1 -0
- package/dist/collection/components/input/input.css +3 -0
- package/dist/collection/components/input/input.js +47 -2
- package/dist/collection/components/input-code/input-code.css +6 -0
- package/dist/collection/components/input-code/input-code.js +48 -10
- package/dist/collection/components/input-date/input-date.js +6 -6
- package/dist/collection/components/input-password/input-password.js +2 -2
- package/dist/collection/components/input-phone-number/input-phone-number.js +3 -3
- package/dist/collection/components/label/label.js +2 -2
- package/dist/collection/components/pagination/pagination.css +33 -72
- package/dist/collection/components/pagination/pagination.js +194 -48
- package/dist/collection/components/panel/panel.js +2 -2
- package/dist/collection/components/popover/popover.css +0 -1
- package/dist/collection/components/popover/popover.js +44 -3
- package/dist/collection/components/popover-action/popover-action.js +1 -1
- package/dist/collection/components/popover-content/popover-content.js +1 -1
- package/dist/collection/components/popover-headline/popover-headline.js +1 -1
- package/dist/collection/components/popover-trigger/popover-trigger.js +1 -1
- package/dist/collection/components/progress-bar/progress-bar.js +1 -1
- package/dist/collection/components/radio-button/radio-button.js +7 -6
- package/dist/collection/components/radio-button-description/radio-button-description.js +1 -1
- package/dist/collection/components/radio-button-leading/radio-button-leading.js +1 -1
- package/dist/collection/components/radio-button-title/radio-button-title.js +1 -1
- package/dist/collection/components/radio-button-trailing/radio-button-trailing.js +1 -1
- package/dist/collection/components/radio-group/radio-group.css +4 -1
- package/dist/collection/components/radio-group/radio-group.js +100 -8
- package/dist/collection/components/select/select.js +5 -3
- package/dist/collection/components/select-option/select-option.js +1 -1
- package/dist/collection/components/skip-link/skip-link.js +1 -1
- package/dist/collection/components/stepper/stepper.css +4 -1
- package/dist/collection/components/stepper/stepper.js +125 -1
- package/dist/collection/components/stepper-item/stepper-item.css +22 -9
- package/dist/collection/components/stepper-item/stepper-item.js +36 -2
- package/dist/collection/components/tab/tab.js +2 -2
- package/dist/collection/components/tab-panel/tab-panel.js +1 -1
- package/dist/collection/components/tabs/tabs.js +1 -1
- package/dist/collection/components/tabs-list/tabs-list.js +3 -3
- package/dist/collection/components/toast/toast.css +9 -9
- package/dist/collection/components/toast/toast.js +109 -21
- package/dist/collection/components/toast-group/toast-group.css +5 -11
- package/dist/collection/components/toast-group/toast-group.js +12 -3
- package/dist/collection/components/tooltip/tooltip.js +23 -3
- package/dist/esm/{index-Da7qOBFr.js → index-CTxpqopm.js} +9 -382
- package/dist/esm/loader.js +3 -3
- package/dist/esm/r-accordion-panel.entry.js +1 -1
- package/dist/esm/r-accordion-section.entry.js +1 -1
- package/dist/esm/r-accordion-trigger.entry.js +1 -1
- package/dist/esm/r-accordion.entry.js +1 -1
- package/dist/esm/r-alert.entry.js +9 -6
- package/dist/esm/r-badge.entry.js +1 -1
- package/dist/esm/r-button.entry.js +6 -2
- package/dist/esm/r-checkbox-group.entry.js +1 -1
- package/dist/esm/r-checkbox.entry.js +4 -4
- package/dist/esm/r-design-system-devtools.entry.js +1 -1
- package/dist/esm/r-dialog.entry.js +1 -1
- package/dist/esm/r-hint_2.entry.js +3 -3
- package/dist/esm/r-icon-button_2.entry.js +24 -4
- package/dist/esm/r-icon.entry.js +2 -2
- package/dist/esm/r-illustration.entry.js +394 -0
- package/dist/esm/r-input-code.entry.js +34 -12
- package/dist/esm/r-input-date.entry.js +7 -7
- package/dist/esm/r-input-password.entry.js +3 -3
- package/dist/esm/r-input-phone-number.entry.js +4 -4
- package/dist/esm/r-input.entry.js +5 -4
- package/dist/esm/r-list-item.entry.js +1 -1
- package/dist/esm/r-pagination.entry.js +56 -50
- package/dist/esm/r-panel.entry.js +3 -3
- package/dist/esm/r-popover-action.entry.js +2 -2
- package/dist/esm/r-popover-content.entry.js +2 -2
- package/dist/esm/r-popover-headline.entry.js +2 -2
- package/dist/esm/r-popover-trigger.entry.js +2 -2
- package/dist/esm/r-popover.entry.js +46 -5
- package/dist/esm/r-progress-bar.entry.js +2 -2
- package/dist/esm/r-radio-button-description.entry.js +2 -2
- package/dist/esm/r-radio-button-leading.entry.js +2 -2
- package/dist/esm/r-radio-button-title.entry.js +2 -2
- package/dist/esm/r-radio-button-trailing.entry.js +2 -2
- package/dist/esm/r-radio-button.entry.js +8 -7
- package/dist/esm/r-radio-group.entry.js +83 -10
- package/dist/esm/r-select-option.entry.js +2 -2
- package/dist/esm/r-select.entry.js +6 -4
- package/dist/esm/r-skip-link.entry.js +2 -2
- package/dist/esm/r-stepper-item.entry.js +19 -4
- package/dist/esm/r-stepper.entry.js +76 -3
- package/dist/esm/r-tab-panel.entry.js +2 -2
- package/dist/esm/r-tab.entry.js +3 -3
- package/dist/esm/r-tabs-list.entry.js +4 -4
- package/dist/esm/r-tabs.entry.js +2 -2
- package/dist/esm/r-textarea.entry.js +1 -1
- package/dist/esm/r-toast-group.entry.js +13 -4
- package/dist/esm/r-toast.entry.js +87 -18
- package/dist/esm/web-components.js +3 -3
- package/dist/types/components/alert/alert.d.ts +1 -0
- package/dist/types/components/button/button.d.ts +8 -1
- package/dist/types/components/button/exports.d.ts +2 -0
- package/dist/types/components/icon/exports.d.ts +1 -1
- package/dist/types/components/icon/riverty-kit.d.ts +1 -1
- package/dist/types/components/illustration/data.d.ts +52 -0
- package/dist/types/components/illustration/exports.d.ts +23 -0
- package/dist/types/components/illustration/illustration.d.ts +51 -0
- package/dist/types/components/illustration/illustrations-ui-kit.d.ts +21 -0
- package/dist/types/components/input/exports.d.ts +2 -0
- package/dist/types/components/input/input.d.ts +15 -1
- package/dist/types/components/input-code/input-code.d.ts +15 -1
- package/dist/types/components/pagination/pagination.d.ts +19 -0
- package/dist/types/components/popover/popover.d.ts +9 -0
- package/dist/types/components/radio-group/radio-group.d.ts +16 -0
- package/dist/types/components/stepper/stepper.d.ts +11 -0
- package/dist/types/components/stepper-item/stepper-item.d.ts +7 -0
- package/dist/types/components/toast/toast.d.ts +10 -4
- package/dist/types/components/tooltip/tooltip.d.ts +5 -0
- package/dist/types/components.d.ts +273 -7
- package/dist/web-components/p-02b22f8e.entry.js +1 -0
- package/dist/web-components/{p-d054eb4d.entry.js → p-075a8dc8.entry.js} +1 -1
- package/dist/web-components/{p-8a66d20c.entry.js → p-0a34d33b.entry.js} +1 -1
- package/dist/web-components/{p-8c31cbd5.entry.js → p-10cc9983.entry.js} +1 -1
- package/dist/web-components/{p-d7726e46.entry.js → p-253068b9.entry.js} +1 -1
- package/dist/web-components/{p-3884c6e7.entry.js → p-3b8c8951.entry.js} +1 -1
- package/dist/web-components/{p-550e2237.entry.js → p-3beacdab.entry.js} +1 -1
- package/dist/web-components/p-4214867d.entry.js +1 -0
- package/dist/web-components/{p-3f60c6c0.entry.js → p-42c857e9.entry.js} +1 -1
- package/dist/web-components/{p-7fed6f4d.entry.js → p-44f87e16.entry.js} +1 -1
- package/dist/web-components/p-477614c5.entry.js +1 -0
- package/dist/web-components/{p-1da75540.entry.js → p-495ba3d2.entry.js} +1 -1
- package/dist/web-components/{p-19407a14.entry.js → p-4de76291.entry.js} +1 -1
- package/dist/web-components/{p-cd5daad2.entry.js → p-55600d47.entry.js} +1 -1
- package/dist/web-components/{p-c95b6470.entry.js → p-562051aa.entry.js} +1 -1
- package/dist/web-components/p-5b850e0f.entry.js +1 -0
- package/dist/web-components/p-6013dfc8.entry.js +1 -0
- package/dist/web-components/{p-6cc2ea2c.entry.js → p-62e7ae04.entry.js} +1 -1
- package/dist/web-components/p-71519d37.entry.js +1 -0
- package/dist/web-components/p-88f7b47f.entry.js +1 -0
- package/dist/web-components/p-8975a6a3.entry.js +1 -0
- package/dist/web-components/{p-6bb44ec6.entry.js → p-8e125826.entry.js} +1 -1
- package/dist/web-components/p-91cc0bde.entry.js +1 -0
- package/dist/web-components/{p-0347feff.entry.js → p-93435fcd.entry.js} +1 -1
- package/dist/web-components/p-947969d7.entry.js +1 -0
- package/dist/web-components/{p-cdd88c5a.entry.js → p-95396b5c.entry.js} +1 -1
- package/dist/web-components/p-9de3a1a5.entry.js +1 -0
- package/dist/web-components/p-9f583ed1.entry.js +1 -0
- package/dist/web-components/p-CTxpqopm.js +2 -0
- package/dist/web-components/{p-5eeb7002.entry.js → p-a1086abe.entry.js} +1 -1
- package/dist/web-components/{p-f9d5004c.entry.js → p-bbba6d79.entry.js} +1 -1
- package/dist/web-components/{p-c478712b.entry.js → p-bde44ec4.entry.js} +1 -1
- package/dist/web-components/p-bfc7e6c0.entry.js +1 -0
- package/dist/web-components/p-c1030394.entry.js +1 -0
- package/dist/web-components/{p-26ef77d6.entry.js → p-c80a5541.entry.js} +1 -1
- package/dist/web-components/{p-9ef1bbee.entry.js → p-c96ee61a.entry.js} +1 -1
- package/dist/web-components/{p-8dac326b.entry.js → p-caf8f067.entry.js} +1 -1
- package/dist/web-components/p-cc363c3d.entry.js +1 -0
- package/dist/web-components/p-cf4ff357.entry.js +1 -0
- package/dist/web-components/p-d0310ed4.entry.js +1 -0
- package/dist/web-components/p-d1412932.entry.js +1 -0
- package/dist/web-components/{p-62b788bf.entry.js → p-d2447e30.entry.js} +1 -1
- package/dist/web-components/p-dc9cca06.entry.js +1 -0
- package/dist/web-components/p-e5b943a2.entry.js +1 -0
- package/dist/web-components/{p-4cc58c6a.entry.js → p-e67b13df.entry.js} +1 -1
- package/dist/web-components/p-efec231a.entry.js +1 -0
- package/dist/web-components/{p-4595fa8e.entry.js → p-f867e4c3.entry.js} +1 -1
- package/dist/web-components/p-ff6b1b8f.entry.js +1 -0
- package/dist/web-components/web-components.esm.js +1 -1
- package/package.json +5 -2
- package/dist/collection/components/icon/bundled-icons/all-kit.json +0 -1
- package/dist/collection/components/icon/bundled-icons/riverty-kit.json +0 -1
- package/dist/web-components/bundled-icons/all-kit.json +0 -1
- package/dist/web-components/bundled-icons/riverty-kit.json +0 -1
- package/dist/web-components/p-159822fe.entry.js +0 -1
- package/dist/web-components/p-4f261b63.entry.js +0 -1
- package/dist/web-components/p-50893211.entry.js +0 -1
- package/dist/web-components/p-589baaf9.entry.js +0 -1
- package/dist/web-components/p-60341de2.entry.js +0 -1
- package/dist/web-components/p-63fd817d.entry.js +0 -1
- package/dist/web-components/p-67fa3f84.entry.js +0 -1
- package/dist/web-components/p-70784685.entry.js +0 -1
- package/dist/web-components/p-7ce57332.entry.js +0 -1
- package/dist/web-components/p-92c7cf33.entry.js +0 -1
- package/dist/web-components/p-Da7qOBFr.js +0 -2
- package/dist/web-components/p-a7d22c76.entry.js +0 -1
- package/dist/web-components/p-b96d59ca.entry.js +0 -1
- package/dist/web-components/p-b98ab649.entry.js +0 -1
- package/dist/web-components/p-ba801820.entry.js +0 -1
- package/dist/web-components/p-bfc8c077.entry.js +0 -1
- package/dist/web-components/p-c05b05da.entry.js +0 -1
- package/dist/web-components/p-c1e748f2.entry.js +0 -1
- package/dist/web-components/p-d433a828.entry.js +0 -1
- package/dist/web-components/p-d819c8e5.entry.js +0 -1
- package/dist/web-components/p-e4dc60f0.entry.js +0 -1
- package/dist/web-components/p-f7adb875.entry.js +0 -1
- package/dist/collection/components/icon/{icon-data.js → data.js} +0 -0
- package/dist/types/components/icon/{icon-data.d.ts → data.d.ts} +1 -1
|
@@ -0,0 +1,396 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var index = require('./index-BnETQtSf.js');
|
|
4
|
+
|
|
5
|
+
const data$1 = { "app-update-refresh": "<svg width=\"342\" height=\"176\" viewBox=\"0 0 342 176\" fill=\"none\"><style> svg { --background: #CBD7C6; --outline: #282828; --decor-1: #86A27B; --decor-2: #FFFFFF; --screen: #527A42; } svg[data-theme=\"dark\"] { --background: #515E51; --outline: #141414; --decor-1: #7C9372; --decor-2: #E7E4E2; --screen: #527A42; }</style><path d=\"M173.5 56C223.482 56 264 96.5182 264 146.5C264 147.001 263.994 147.501 263.986 148H83.0137C83.0056 147.501 83 147.001 83 146.5C83 96.5182 123.518 56 173.5 56Z\" fill=\"var(--background)\"/><line x1=\"83\" y1=\"147.25\" x2=\"264\" y2=\"147.25\" stroke=\"var(--outline)\" stroke-width=\"1.5\"/><path d=\"M224.252 35C227.469 41.1933 227.967 43.6329 233.515 46.2519C227.968 49.3126 227.547 51.824 224.252 57.5037C221.259 51.4858 220.804 48.9776 214.989 46.2519C221.24 43.7708 221.649 41.2563 224.252 35Z\" fill=\"var(--decor-1)\"/><path d=\"M114.715 67.9999V75.4024\" stroke=\"var(--decor-1)\" stroke-width=\"2.10588\" stroke-miterlimit=\"10\"/><path d=\"M114.715 87.4319V94.8345\" stroke=\"var(--decor-1)\" stroke-width=\"2.10588\" stroke-miterlimit=\"10\"/><path d=\"M127.724 81.571H120.628\" stroke=\"var(--decor-1)\" stroke-width=\"2.10588\" stroke-miterlimit=\"10\"/><path d=\"M109.097 81.5709H102\" stroke=\"var(--decor-1)\" stroke-width=\"2.10588\" stroke-miterlimit=\"10\"/><path d=\"M225.452 108V114.085\" stroke=\"var(--decor-2)\" stroke-width=\"1.97076\" stroke-miterlimit=\"10\"/><path d=\"M225.452 123.975V130.06\" stroke=\"var(--decor-2)\" stroke-width=\"1.97076\" stroke-miterlimit=\"10\"/><path d=\"M236.146 119.157H230.312\" stroke=\"var(--decor-2)\" stroke-width=\"1.97076\" stroke-miterlimit=\"10\"/><path d=\"M220.834 119.157H215\" stroke=\"var(--decor-2)\" stroke-width=\"1.97076\" stroke-miterlimit=\"10\"/><path d=\"M198.354 44.9132C199.634 44.9132 200.673 45.9518 200.673 47.2325L200.673 154.769C200.673 156.049 199.634 157.088 198.354 157.088L147.187 157.088C145.906 157.088 144.867 156.05 144.867 154.769L144.867 47.6325C144.867 46.1318 146.083 44.9151 147.584 44.915L198.354 44.9132Z\" fill=\"var(--screen)\" stroke=\"var(--outline)\" stroke-width=\"1.73392\"/><path d=\"M160.353 79.4234C162.978 75.4441 167.489 72.8184 172.613 72.8184C180.72 72.8184 187.291 79.3899 187.291 87.4963C187.291 89.0304 187.056 90.5096 186.619 91.8996M160.137 73.5523L160.137 79.4234L166.008 79.4234M184.874 95.5691C182.248 99.5484 177.738 102.174 172.613 102.174C164.507 102.174 157.936 95.6026 157.936 87.4963C157.936 85.9621 158.171 84.483 158.608 83.0929M185.09 101.44L185.09 95.5691L179.219 95.5691\" stroke=\"var(--decor-2)\" stroke-width=\"1.8\"/><path d=\"M164.002 45L182.28 45.0004L182.28 49.8282C182.28 50.2681 181.923 50.6247 181.483 50.6247L164.797 50.6246C164.356 50.6246 164 50.2678 164 49.8277L164.002 45Z\" stroke=\"var(--outline)\" stroke-width=\"1.74\"/><path d=\"M200.453 61.4385H201.802C202.45 61.4385 202.976 61.9642 202.976 62.6128V73.1816C202.976 73.8301 202.45 74.3559 201.802 74.3559H200.453V61.4385Z\" fill=\"var(--outline)\"/></svg>", "empty-state-404": "<svg width=\"342\" height=\"176\" viewBox=\"0 0 342 176\" fill=\"none\"><style> svg { --background: #F9FBF8; --background-2: #E5EBE3; --outline: #282828; --plant: #86A27B; --plant-inner: #FFFFFF; --bench: #FFFFFF; --bench-2: #ECE9E8; --post: #FFFFFF; } svg[data-theme=\"dark\"] { --background: #313C34; --background-2: #515E51; --outline: #141414; --plant: #7C9372; --plant-inner: #E7E4E2; --bench: #E7E4E2; }</style><path d=\"M34 24.6261H308.655V155.043H34V24.6261Z\" fill=\"var(--background)\"/><mask id=\"mask0_28_859\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"34\" y=\"24\" width=\"275\" height=\"132\"><path d=\"M34 24.6261H308.655V155.043H34V24.6261Z\" fill=\"var(--background-2)\"/></mask><g mask=\"url(#mask0_28_859)\"><path d=\"M308.659 43.2112V155.058H33.9609V43.2626H64.2652V64.9813H85.8342V74.6349H96.451V44.0679H115.16V79.2538H119.256V39.5314H138.961V70.4026H148.366V60.4433H170.024V38.535H195.309V75.8238H209.479V50.2636H233.501V66.7507H245.123V59.9819H253.017V21.4836H255.253V18.399H261.952V5.27722H262.562V18.399H269.429V21.4836H270.887V59.9819H278.775V44.281H286.567V49.0924H291.151V54.2094H295.583V58.2566H299.557V43.2112H308.659Z\" fill=\"var(--background-2)\"/></g><line x1=\"34\" y1=\"155.808\" x2=\"309\" y2=\"155.808\" stroke=\"var(--outline)\" stroke-width=\"1.5\"/><path d=\"M69.9868 26.9305V155.012\" stroke=\"var(--plant)\" stroke-width=\"0.552829\" stroke-miterlimit=\"10\"/><path d=\"M62.9062 37.3656L69.9866 43.8897L77.4927 37.3656\" stroke=\"var(--plant)\" stroke-width=\"0.552829\" stroke-miterlimit=\"10\"/><path d=\"M62.9062 46.1403L69.9866 52.6643L77.4927 46.1403\" stroke=\"var(--plant)\" stroke-width=\"0.552829\" stroke-miterlimit=\"10\"/><path d=\"M62.9062 54.4003L69.9866 60.9222L77.4927 54.4003\" stroke=\"var(--plant)\" stroke-width=\"0.552829\" stroke-miterlimit=\"10\"/><path d=\"M33.272 79.968L69.9867 111.398\" stroke=\"var(--plant)\" stroke-width=\"0.552829\" stroke-miterlimit=\"10\"/><path d=\"M39.5938 76.7544L42.6619 88.0071\" stroke=\"var(--plant)\" stroke-width=\"0.552829\" stroke-miterlimit=\"10\"/><path d=\"M47.7573 101.319L54.7956 98.3937V91.6378\" stroke=\"var(--plant)\" stroke-width=\"0.552829\" stroke-miterlimit=\"10\"/><path d=\"M106.704 79.968L69.9868 111.398\" stroke=\"var(--plant)\" stroke-width=\"0.552829\" stroke-miterlimit=\"10\"/><path d=\"M100.382 76.7544L97.3135 88.0071\" stroke=\"var(--plant)\" stroke-width=\"0.552829\" stroke-miterlimit=\"10\"/><path d=\"M92.2179 101.319L85.1797 98.3937V91.6378\" stroke=\"var(--plant)\" stroke-width=\"0.552829\" stroke-miterlimit=\"10\"/><path d=\"M95.7667 53.1427C95.7288 53.1427 95.6888 53.1427 95.6508 53.1427C97.0838 49.7816 97.8782 46.0812 97.8782 42.1976C97.8782 26.7746 85.3759 14.2701 69.9508 14.2701C54.5257 14.2701 42.0233 26.7725 42.0233 42.1976C42.0233 46.0812 42.8178 49.7816 44.2507 53.1427C44.236 53.1427 44.2233 53.1427 44.2086 53.1427C27.4938 53.1427 13.9463 66.6923 13.9463 83.4049C13.9463 100.118 27.4959 113.667 44.2086 113.667C55.1073 113.667 64.6595 107.906 69.9866 99.262C75.3158 107.906 84.8659 113.667 95.7646 113.667C112.479 113.667 126.027 100.118 126.027 83.4049C126.027 66.6923 112.477 53.1427 95.7646 53.1427H95.7667Z\" fill=\"var(--plant)\"/><mask id=\"mask1_28_859\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"13\" y=\"14\" width=\"114\" height=\"100\"><path d=\"M95.7667 53.1423C95.7288 53.1423 95.6888 53.1423 95.6508 53.1423C97.0838 49.7812 97.8782 46.0809 97.8782 42.1972C97.8782 26.7742 85.3759 14.2698 69.9508 14.2698C54.5257 14.2698 42.0233 26.7721 42.0233 42.1972C42.0233 46.0809 42.8178 49.7812 44.2507 53.1423C44.236 53.1423 44.2233 53.1423 44.2086 53.1423C27.4938 53.1423 13.9463 66.6919 13.9463 83.4046C13.9463 100.117 27.4959 113.667 44.2086 113.667C55.1073 113.667 64.6595 107.906 69.9866 99.2617C75.3158 107.906 84.8659 113.667 95.7646 113.667C112.479 113.667 126.027 100.117 126.027 83.4046C126.027 66.6919 112.477 53.1423 95.7646 53.1423H95.7667Z\" fill=\"var(--plant-inner)\"/></mask><g mask=\"url(#mask1_28_859)\"><path d=\"M69.9866 26.9314V155.012M62.9063 37.3664L69.9867 43.8905L77.4927 37.3664M62.9063 46.1411L69.9867 52.6651L77.4927 46.1411M62.9063 54.4012L69.9867 60.9231L77.4927 54.4012M33.272 79.9689L69.9867 111.399L106.703 79.9689M39.5937 76.7553L42.6619 88.0081M47.7572 101.32L54.7955 98.3946V91.6388M100.382 76.7553L97.3135 88.0081M92.2182 101.32L85.18 98.3946V91.6388\" stroke=\"var(--plant-inner)\" stroke-width=\"0.552829\" stroke-miterlimit=\"10\"/></g><path d=\"M117.289 87.8535H121.295C121.904 87.8535 122.396 88.3475 122.396 88.9539V135.318H116.188V88.9539C116.188 88.3447 116.682 87.8535 117.289 87.8535Z\" fill=\"var(--outline)\"/><path d=\"M106.863 133.77V161.96C106.863 162.569 107.357 163.061 107.964 163.061H111.97C112.579 163.061 113.07 162.567 113.07 161.96V133.77H106.863Z\" fill=\"var(--outline)\"/><path d=\"M226.141 133.77V161.96C226.141 162.569 226.635 163.061 227.241 163.061H231.247C231.857 163.061 232.348 162.567 232.348 161.96V133.77H226.141Z\" fill=\"var(--outline)\"/><path d=\"M217.889 87.8535H221.896C222.505 87.8535 222.996 88.3475 222.996 88.9539V135.318H216.789V88.9539C216.789 88.3447 217.283 87.8535 217.889 87.8535Z\" fill=\"var(--outline)\"/><path d=\"M226.061 92.4552H113.123C110.399 92.4552 108.191 94.6629 108.191 97.3863V112.685C108.191 115.408 110.399 117.616 113.123 117.616H226.061C228.784 117.616 230.992 115.408 230.992 112.685V97.3863C230.992 94.6629 228.784 92.4552 226.061 92.4552Z\" fill=\"var(--bench)\" stroke=\"var(--outline)\" stroke-width=\"1.00514\" stroke-miterlimit=\"10\"/><path d=\"M230.992 110.61C230.992 113.332 228.786 115.541 226.061 115.541H113.123C110.4 115.541 108.191 113.335 108.191 110.61\" fill=\"var(--bench)\"/><path d=\"M230.992 110.61C230.992 113.332 228.786 115.541 226.061 115.541H113.123C110.4 115.541 108.191 113.335 108.191 110.61\" stroke=\"var(--outline)\" stroke-width=\"1.00514\" stroke-miterlimit=\"10\"/><path d=\"M119.333 105.876C120.512 105.876 121.468 104.921 121.468 103.741C121.468 102.562 120.512 101.607 119.333 101.607C118.154 101.607 117.198 102.562 117.198 103.741C117.198 104.921 118.154 105.876 119.333 105.876Z\" fill=\"var(--outline)\"/><path d=\"M220.09 105.876C221.269 105.876 222.225 104.921 222.225 103.741C222.225 102.562 221.269 101.607 220.09 101.607C218.911 101.607 217.955 102.562 217.955 103.741C217.955 104.921 218.911 105.876 220.09 105.876Z\" fill=\"var(--outline)\"/><path d=\"M238.799 139.182H100.385V146.196H238.799V139.182Z\" fill=\"var(--bench)\" stroke=\"var(--outline)\" stroke-width=\"1.00514\" stroke-miterlimit=\"10\"/><path d=\"M106.199 130.28H232.987C236.195 130.28 238.802 132.884 238.802 136.094V137.296H100.385V136.094C100.385 132.887 102.989 130.28 106.199 130.28Z\" fill=\"var(--bench)\" stroke=\"var(--outline)\" stroke-width=\"0.753857\" stroke-miterlimit=\"10\"/><path opacity=\"0.6\" d=\"M137 145.648L143.097 139.628L155.168 139.639L149.128 145.658L137 145.648Z\" fill=\"var(--bench-2)\"/><path opacity=\"0.6\" d=\"M146.001 136.901L152.256 130.64L164.422 130.64L158.152 136.901L146.001 136.901Z\" fill=\"var(--bench-2)\"/><path opacity=\"0.6\" d=\"M174.171 117.18L175.198 116.117L187.405 116.107L186.38 117.18L174.171 117.18Z\" fill=\"var(--bench-2)\"/><path opacity=\"0.6\" d=\"M176.247 115.095L198.316 92.9901L210.469 92.9629L188.412 115.064L176.247 115.095Z\" fill=\"var(--bench-2)\"/><g style=\"mix-blend-mode:soft-light\"><path opacity=\"0.8\" d=\"M270.173 22.0795H265.181L257.525 30.0565L258.785 38.0253L269.358 27.2246L270.173 22.0795Z\" fill=\"var(--post)\"/></g><path d=\"M256.263 22.0796L258.993 39.3481H267.442L270.172 22.0796H256.263Z\" stroke=\"var(--outline)\" stroke-width=\"0.753857\" stroke-miterlimit=\"10\"/><path d=\"M263.217 22.0796V39.3865\" stroke=\"var(--outline)\" stroke-width=\"0.753857\" stroke-miterlimit=\"10\"/><path d=\"M263.217 15.0713C263.84 15.0713 264.344 14.5664 264.344 13.9435C264.344 13.3206 263.84 12.8157 263.217 12.8157C262.594 12.8157 262.089 13.3206 262.089 13.9435C262.089 14.5664 262.594 15.0713 263.217 15.0713Z\" fill=\"var(--post)\" stroke=\"var(--outline)\" stroke-width=\"0.753857\" stroke-miterlimit=\"10\"/><path d=\"M264.5 40.9039H261.935V124.61H264.5V40.9039Z\" fill=\"var(--post)\" stroke=\"var(--outline)\" stroke-width=\"0.753857\" stroke-miterlimit=\"10\"/><path d=\"M258.76 39.3867C259.465 41.1594 261.194 42.4134 263.216 42.4134C265.239 42.4134 266.967 41.1594 267.673 39.3867H258.76Z\" fill=\"var(--post)\" stroke=\"var(--outline)\" stroke-width=\"0.753857\" stroke-miterlimit=\"10\"/><path d=\"M268.175 38.5801H258.261C257.871 38.5801 257.556 38.8958 257.556 39.2853C257.556 39.6748 257.871 39.9905 258.261 39.9905H268.175C268.565 39.9905 268.881 39.6748 268.881 39.2853C268.881 38.8958 268.565 38.5801 268.175 38.5801Z\" fill=\"var(--post)\" stroke=\"var(--outline)\" stroke-width=\"0.753857\" stroke-miterlimit=\"10\"/><path d=\"M271.023 22.0797C270.683 18.0651 267.319 14.9149 263.219 14.9149C259.12 14.9149 255.755 18.0679 255.415 22.0797H271.026H271.023Z\" fill=\"var(--post)\" stroke=\"var(--outline)\" stroke-width=\"0.753857\" stroke-miterlimit=\"10\"/><path d=\"M271.405 21.3717H255.033C254.644 21.3717 254.328 21.6874 254.328 22.0769C254.328 22.4664 254.644 22.7822 255.033 22.7822H271.405C271.794 22.7822 272.11 22.4664 272.11 22.0769C272.11 21.6874 271.794 21.3717 271.405 21.3717Z\" fill=\"var(--post)\" stroke=\"var(--outline)\" stroke-width=\"0.753857\" stroke-miterlimit=\"10\"/><path d=\"M268.669 154.773H257.767L258.864 123.69C258.864 122.853 259.545 122.173 260.382 122.173H266.054C266.891 122.173 267.571 122.853 267.571 123.69L268.669 154.773Z\" fill=\"var(--post)\" stroke=\"var(--outline)\" stroke-width=\"0.753857\" stroke-miterlimit=\"10\"/><path d=\"M294.933 86.8234C292.553 85.4478 287.992 87.6716 284.978 95.429C282.02 103.038 281.226 111.967 284.414 112.512C288.203 113.163 292.005 104.589 294.685 97.8191C297.085 91.7549 296.839 87.9228 294.935 86.8234H294.933Z\" fill=\"var(--plant)\"/><path d=\"M291.8 153.79C289.133 147.509 285.34 135.816 284.131 125.933C281.702 106.089 290.161 94.531 292.51 91.2494\" stroke=\"var(--plant)\" stroke-width=\"0.552829\" stroke-miterlimit=\"10\"/><mask id=\"mask2_28_859\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"282\" y=\"86\" width=\"15\" height=\"27\"><path d=\"M294.933 86.8234C292.553 85.4478 287.992 87.6716 284.978 95.429C282.02 103.038 281.226 111.967 284.414 112.512C288.203 113.163 292.005 104.589 294.685 97.8191C297.085 91.7549 296.839 87.9228 294.935 86.8234H294.933Z\" fill=\"var(--post)\"/></mask><g mask=\"url(#mask2_28_859)\"><path d=\"M292.509 91.2477C290.16 94.5293 281.742 106.082 284.13 125.932\" stroke=\"var(--plant-inner)\" stroke-width=\"0.552829\" stroke-miterlimit=\"10\"/></g><path d=\"M244.486 125.414C244.836 122.69 249.375 120.423 257.377 122.738C265.23 125.01 272.817 129.799 271.318 132.659C269.534 136.061 260.404 133.872 253.39 131.889C247.105 130.115 244.206 127.593 244.486 125.414Z\" fill=\"var(--plant)\"/><path d=\"M288.827 147.918C287.821 146.233 283.445 141.802 282.169 140.581C267.274 126.337 253.516 126.306 249.479 126.176\" stroke=\"var(--plant)\" stroke-width=\"0.552829\" stroke-miterlimit=\"10\"/><mask id=\"mask3_28_859\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"244\" y=\"121\" width=\"28\" height=\"14\"><path d=\"M244.486 125.414C244.836 122.69 249.375 120.423 257.377 122.738C265.23 125.01 272.817 129.799 271.318 132.659C269.534 136.061 260.404 133.872 253.39 131.889C247.105 130.115 244.206 127.593 244.486 125.414Z\" fill=\"var(--plant-inner)\"/></mask><g mask=\"url(#mask3_28_859)\"><path d=\"M249.479 126.176C253.516 126.304 267.822 126.637 282.169 140.581\" stroke=\"var(--plant-inner)\" stroke-width=\"0.552829\" stroke-miterlimit=\"10\"/></g><path d=\"M261.208 114.804C261.959 113.133 265.296 112.562 269.955 115.586C274.526 118.553 278.442 123.074 276.929 124.611C275.132 126.437 269.728 123.277 265.636 120.657C261.969 118.31 260.607 116.14 261.208 114.804Z\" fill=\"var(--plant)\"/><path d=\"M264.246 116.255C266.798 117.116 275.571 119.794 282.319 131.761C282.897 132.786 284.631 136.696 285.586 138.951C286.865 141.98 287.906 146.188 288.909 149.017\" stroke=\"var(--plant)\" stroke-width=\"0.552829\" stroke-miterlimit=\"10\"/><mask id=\"mask4_28_859\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"261\" y=\"113\" width=\"17\" height=\"13\"><path d=\"M261.208 114.804C261.959 113.133 265.296 112.562 269.955 115.586C274.526 118.553 278.442 123.074 276.929 124.611C275.132 126.437 269.728 123.277 265.636 120.657C261.969 118.31 260.607 116.14 261.208 114.804Z\" fill=\"var(--plant-inner)\"/></mask><g mask=\"url(#mask4_28_859)\"><path d=\"M264.246 116.255C266.798 117.116 275.863 120.09 282.319 131.761\" stroke=\"var(--plant-inner)\" stroke-width=\"0.552829\" stroke-miterlimit=\"10\"/></g><path d=\"M301.37 155.043C302.882 150.852 303.725 146.699 303.479 142.853C302.091 143.336 299.579 145.393 296.611 148.447L297.579 145.295C300.027 133.098 302.194 114.545 295.85 103.935C292.503 107.444 286.103 131.804 288.55 147.6C278.529 140.831 264.772 133.423 253.905 134.622C255.074 137.531 263.664 145.225 273.755 151.469C265.233 148.434 256.125 146.568 248.926 148.455C249.764 149.889 252.859 152.349 257.203 155.043H301.367H301.37Z\" fill=\"var(--plant)\"/><path d=\"M295.661 107.704C296.007 110.924 292.612 144.861 292.009 154.593C283.393 150.004 260.337 137.38 257.259 136.357\" stroke=\"var(--plant-inner)\" stroke-width=\"0.552829\" stroke-miterlimit=\"10\"/><path d=\"M302.82 144.415L296.459 154.257\" stroke=\"var(--plant-inner)\" stroke-width=\"0.552829\" stroke-miterlimit=\"10\"/><path d=\"M251.416 149.019L267.404 154.257\" stroke=\"var(--plant-inner)\" stroke-width=\"0.552829\" stroke-miterlimit=\"10\"/></svg>", "error-phone-01": "<svg width=\"342\" height=\"176\" viewBox=\"0 0 342 176\" fill=\"none\"><style> svg { --dialog: #F3F1F0; --dialog-header: #E2E0DF; --dialog-controls: #BFBDBB; --hand: #FFFFFF; --screen: #686868; --screen-content: #FFFFFF; --outline: #282828; } svg[data-theme=\"dark\"] { --dialog: #777574; --dialog-header: #8E8C8B; --dialog-controls: #BFBDBB; --hand: #E7E4E2; --screen: #686868; --screen-content: #E7E4E2; --outline: #141414; }</style><rect x=\"62\" y=\"36\" width=\"218\" height=\"103\" fill=\"var(--dialog)\"/><path d=\"M62 36L280 36V52H62V36Z\" fill=\"var(--dialog-header)\"/><path d=\"M71.6816 41C73.2787 41.0001 74.5732 42.2955 74.5732 43.8926C74.5731 45.4895 73.2786 46.7841 71.6816 46.7842C70.0846 46.7842 68.7902 45.4896 68.79 43.8926C68.79 42.2954 70.0845 41 71.6816 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M80.2305 41C81.8276 41 83.123 42.2954 83.123 43.8926C83.1229 45.4896 81.8275 46.7842 80.2305 46.7842C78.6336 46.784 77.339 45.4895 77.3389 43.8926C77.3389 42.2955 78.6335 41.0002 80.2305 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M88.7803 41C90.3773 41.0001 91.6719 42.2955 91.6719 43.8926C91.6717 45.4895 90.3773 46.7841 88.7803 46.7842C87.1832 46.7842 85.8888 45.4896 85.8887 43.8926C85.8887 42.2954 87.1831 41 88.7803 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M171.065 111.006C169.565 107.006 164.459 92.9985 163.565 92.0064L176.483 81.4479L188.564 48.0064C190.564 44.0063 195.064 45.5064 194.564 49.0064C194.564 49.0064 194.064 54.0063 194.064 57.0063C194.064 60.0063 196.064 69.0063 197.064 73.5063C198.064 78.0063 196.564 86.5063 196.064 90.5063C195.564 94.5063 198.564 106.506 198.564 106.506L203.064 120.506L209.064 135.006L214.564 145.506C212.013 149.12 209.194 151.217 204.064 153.506C195.564 156.506 183.064 158.006 178.565 153.506C178.565 153.506 176.483 137.006 175.565 132.006C174.646 127.006 172.565 115.006 171.065 111.006Z\" fill=\"var(--hand)\"/><path d=\"M156.864 51.8786C156.864 51.8786 153.279 49.1738 148.751 45.9214C144.222 42.669 143.202 40.1769 144.464 37.694C145.179 36.2834 146.568 35.8013 150.502 37.59C154.436 39.3787 159.227 41.6739 159.227 41.6739L156.867 51.8829L156.864 51.8786Z\" fill=\"var(--hand)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M186.385 76.0934L155.371 75.6382L155.435 80.6244L186.449 81.0796L186.385 76.0934Z\" fill=\"var(--outline)\"/><path d=\"M177.302 89.0425C177.153 75.8064 183.878 69.5656 185.143 66.2956C186.405 63.0251 187.062 58.6754 187.632 52.3933C188.202 46.1112 191.178 44.7315 193.356 45.8178C195.211 46.7459 194.904 47.9678 194.256 52.3812C193.609 56.7946 195.468 67.0696 196.455 70.7844C197.441 74.4992 197.427 81.7452 196.773 85.5588C196.119 89.3724 195.141 95.2869 199.079 108.72C204.552 127.348 211.643 140.198 213.935 144.09C214.391 144.866 214.419 145.819 213.888 146.545C213.05 147.689 211.546 149.423 209.348 150.788C205.75 153.021 200.768 155.657 190.07 156.531C181.369 156.458 179.669 154.357 178.886 153.388L178.862 153.358L175.471 130.933C172.99 115.67 170.523 107.513 163.559 91.4721\" stroke=\"var(--outline)\" stroke-width=\"1.33181\"/><path d=\"M154.064 24.7383C154.065 23.5054 155.065 22.5065 156.298 22.5065L187.038 22.5066C188.133 22.5066 189.022 23.3944 189.023 24.4902L189.086 89.672C189.087 90.7693 188.198 91.6594 187.1 91.6594L155.996 91.6593C154.898 91.6593 154.009 90.7694 154.01 89.6722L154.064 24.7383Z\" fill=\"var(--screen)\" stroke=\"var(--outline)\" stroke-width=\"1.33\"/><path d=\"M153.183 69.5544C151.532 69.7745 148.824 70.5759 147.721 74.0038C146.619 77.4317 150.329 81.0183 152.167 82.8748C154.006 84.7313 157.589 86.5663 158.583 84.1732C159.578 81.7801 157.233 75.7882 156.508 74.3356C155.784 72.8831 153.183 69.5583 153.183 69.5583L153.183 69.5544Z\" fill=\"var(--hand)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M151.225 58.9816C149.387 59.1034 147.93 60.7046 147.818 63.0054C147.702 65.3059 148.292 67.3342 151.356 70.743C154.424 74.1483 157.383 76.5352 159.012 75.9706C160.64 75.406 161.639 72.5965 160.529 70.1675C159.415 67.7381 156.703 62.7341 156.703 62.7341L151.225 58.9816Z\" fill=\"var(--hand)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M153.076 49.2129C153.077 49.2119 153.077 49.2099 153.076 49.2099C152.978 49.2084 150.848 49.2042 149.377 51.5471C147.871 53.9455 147.128 57.0571 149.969 59.9312C152.809 62.8053 155.05 64.3893 156.255 65.0152C157.46 65.641 159.374 66.0582 160.454 63.564C161.534 61.0697 160.397 58.4884 158.452 56.4084C156.507 54.3283 153.079 51.0544 153.079 51.0544L153.075 49.2142C153.075 49.2137 153.075 49.2132 153.076 49.2129Z\" fill=\"var(--hand)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M166.064 22.5063L177.457 22.5063L177.457 25.0858C177.457 25.36 177.235 25.5822 176.961 25.5822L166.561 25.5822C166.287 25.5822 166.064 25.36 166.064 25.0858L166.064 22.5063Z\" stroke=\"var(--outline)\" stroke-width=\"1.33181\"/><path d=\"M188.665 32.5063L190.165 32.5063C190.441 32.5063 190.665 32.7302 190.665 33.0063L190.665 40.0063C190.665 40.2825 190.441 40.5063 190.165 40.5063L188.665 40.5063L188.665 32.5063Z\" fill=\"var(--outline)\"/><path d=\"M168.002 50.5001L176.002 58.5001M176.002 50.5001L168.002 58.5001M182.002 54.5001C182.002 60.023 177.525 64.5001 172.002 64.5001C166.479 64.5001 162.002 60.023 162.002 54.5001C162.002 48.9773 166.479 44.5001 172.002 44.5001C177.525 44.5001 182.002 48.9773 182.002 54.5001Z\" stroke=\"var(--screen-content)\" stroke-width=\"1.5\"/></svg>", "error-phone-02": "<svg width=\"342\" height=\"176\" viewBox=\"0 0 342 176\" fill=\"none\"><defs><clipPath id=\"clip0_191_2015\"><rect width=\"41\" height=\"41\" fill=\"var(--screen-content)\" transform=\"translate(152 73)\"/></clipPath></defs><style> svg { --background: #F3F1F0; --outline: #282828; --screen: #686868; --screen-content: #FFFFFF; } svg[data-theme=\"dark\"] { --background: #777574; --outline: #141414; --screen: #686868; --screen-content: #E7E4E2; }</style><path d=\"M173.5 56C223.482 56 264 96.5182 264 146.5C264 147.001 263.994 147.501 263.986 148H83.0137C83.0056 147.501 83 147.001 83 146.5C83 96.5182 123.518 56 173.5 56Z\" fill=\"var(--background)\"/><line x1=\"82\" y1=\"147.25\" x2=\"264\" y2=\"147.25\" stroke=\"var(--outline)\" stroke-width=\"1.5\"/><path d=\"M198.354 44.9132C199.634 44.9132 200.673 45.9518 200.673 47.2325L200.673 154.769C200.673 156.049 199.634 157.088 198.354 157.088L147.187 157.088C145.906 157.088 144.867 156.05 144.867 154.769L144.867 47.6325C144.867 46.1318 146.083 44.9151 147.584 44.915L198.354 44.9132Z\" fill=\"var(--screen)\" stroke=\"var(--outline)\" stroke-width=\"1.73392\"/><path d=\"M164.002 45L182.28 45.0004L182.28 49.8282C182.28 50.2681 181.923 50.6247 181.483 50.6247L164.797 50.6246C164.356 50.6246 164 50.2678 164 49.8277L164.002 45Z\" stroke=\"var(--outline)\" stroke-width=\"2.13716\"/><path d=\"M200.453 58.4385H201.802C202.45 58.4385 202.976 58.9642 202.976 59.6128V70.1816C202.976 70.8301 202.45 71.3559 201.802 71.3559H200.453V58.4385Z\" fill=\"var(--outline)\"/><g clip-path=\"url(#clip0_191_2015)\"><path d=\"M173 85.4583V96.5625M173 99.9791V102.542M190.084 94C190.084 103.435 182.435 111.083 173 111.083C163.565 111.083 155.917 103.435 155.917 94C155.917 84.5651 163.565 76.9166 173 76.9166C182.435 76.9166 190.084 84.5651 190.084 94Z\" stroke=\"var(--screen-content)\" stroke-width=\"2.27778\"/></g></svg>", "error-scan": "<svg width=\"342\" height=\"176\" viewBox=\"0 0 342 176\" fill=\"none\"><style> svg { --dialog: #F3F1F0; --dialog-header: #E2E0DF; --sign: #FFFFFF; --sign-outline: #686868; --outline: #282828; --skin: #FFD2B2; --device: #C9C9C9; } svg[data-theme=\"dark\"] { --dialog: #777574; --dialog-header: #8E8C8B; --sign: #E7E4E2; --sign-outline: #686868; --outline: #141414; --skin: #FFD2B2; --device: #949494; }</style><rect x=\"62\" y=\"36\" width=\"218\" height=\"103\" fill=\"var(--dialog)\"/><path d=\"M62 36L280 36V52H62V36Z\" fill=\"var(--dialog-header)\"/><path d=\"M33 9V76.1053L75.5 98.4737L118 76.1053V9H33Z\" fill=\"var(--sign)\" stroke=\"var(--sign-outline)\" stroke-width=\"3\"/><path d=\"M75 39.375V54M75 58.5V61.875M75 24.75L96.375 66.375H53.625L75 24.75Z\" stroke=\"var(--sign-outline)\" stroke-width=\"3\"/><path d=\"M220.393 57.3023C221.758 57.3651 226.642 57.6785 232.146 58.6597C235.294 59.2208 238.657 60.0027 241.688 61.0865C244.71 62.1676 247.442 63.5622 249.292 65.3707C252.886 68.8838 257.438 74.6779 261.079 79.5738C262.903 82.0256 264.503 84.259 265.647 85.8795C266.22 86.6895 266.678 87.3466 266.993 87.8013C267.151 88.0286 267.273 88.2057 267.355 88.3257C267.397 88.3856 267.428 88.4316 267.449 88.4625C267.46 88.4779 267.468 88.4898 267.474 88.4976C267.476 88.5014 267.478 88.5044 267.479 88.5064C267.48 88.5073 267.481 88.5079 267.481 88.5084L267.687 88.8091L267.434 89.0709L267.427 89.0777C267.422 89.0821 267.416 89.0889 267.408 89.0972C267.392 89.1141 267.367 89.1383 267.335 89.1705C267.271 89.2352 267.176 89.3309 267.051 89.4537C266.801 89.6991 266.431 90.055 265.951 90.4996C264.992 91.3886 263.591 92.6324 261.821 94.0552C258.334 96.8587 253.407 100.361 247.598 103.215C247.657 106.224 248.608 116.154 249.846 127.049C251.123 138.289 252.696 150.502 253.884 157.098L253.906 157.259C253.982 158.065 253.552 158.86 252.787 159.198C252.706 159.234 252.624 159.266 252.543 159.299C253.557 164.283 254.734 170.007 255.995 176H183.421C183.832 161.79 185.724 150.173 188.57 142.517H183.331C182.304 142.517 181.604 141.774 181.322 140.949C181.041 140.126 181.125 139.096 181.781 138.373C183.287 136.705 184.964 134.786 185.72 133.733V112.272C177.429 111.162 171.813 109.642 168.25 108.382C166.441 107.743 165.161 107.172 164.329 106.757C163.913 106.55 163.61 106.382 163.408 106.264C163.307 106.205 163.231 106.16 163.18 106.128C163.154 106.112 163.135 106.098 163.121 106.089C163.115 106.085 163.109 106.082 163.105 106.08C163.104 106.078 163.102 106.077 163.101 106.076L163.099 106.075L162.77 105.853L162.951 105.502C162.951 105.501 162.953 105.5 162.953 105.499C162.954 105.497 162.955 105.494 162.957 105.49C162.961 105.482 162.968 105.47 162.976 105.455C162.991 105.424 163.014 105.378 163.045 105.318C163.107 105.198 163.198 105.022 163.313 104.796C163.545 104.345 163.878 103.695 164.28 102.904C165.086 101.32 166.172 99.1679 167.299 96.8922C169.561 92.3215 171.955 87.3076 172.576 85.3648C173.672 81.9378 175.701 77.9507 177.95 74.4849C180.191 71.0314 182.69 68.0332 184.749 66.6324C185.819 65.9043 187.926 64.9555 190.435 63.9498C192.959 62.9378 195.938 61.8502 198.785 60.8463L199.429 60.6226C206.087 58.3531 212.997 57.2954 220.031 57.2896L220.393 57.3023Z\" fill=\"var(--outline)\"/><path d=\"M174.216 99.047C169.12 105.489 164.149 111.86 164.149 111.86L175.24 126.09L186.211 111.872L174.222 99.047H174.216Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-linejoin=\"bevel\"/><path d=\"M199.881 142.078H212.019C212.019 142.078 221.008 142.293 236.462 140.625\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M186.171 111.886V85.1466H184.563\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M225.99 63.7659C223.067 56.6272 215.643 37.7415 215.643 37.7415L198.278 46.2555L206.571 64.8972C201.695 67.9515 198.945 71.9823 200.165 74.8283C201.672 78.347 208.678 78.7221 215.81 75.6737C222.942 72.6194 227.502 67.2906 225.996 63.7719L225.99 63.7659Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M206.571 64.8909L208.149 67.981\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M214.381 51.9459C214.333 56.2029 211.993 60.2039 207.785 62.1866C198.569 66.5389 190.253 61.4661 186.985 53.0712L181.746 39.6273C178.46 31.262 182.573 21.8132 190.937 18.5267C199.301 15.2401 211.713 11.1348 215 19.5L219.5 31L216 33.5\" fill=\"var(--skin)\"/><path d=\"M214.381 51.9459C214.333 56.2029 211.993 60.2039 207.785 62.1866C198.569 66.5389 190.253 61.4661 186.985 53.0712L181.746 39.6273C178.46 31.262 182.573 21.8132 190.937 18.5267C199.301 15.2401 211.713 11.1348 215 19.5L219.5 31L216 33.5\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M198.653 57.3778C199.795 54.3432 204.324 54.3432 205.546 57.4062L198.653 57.3778Z\" fill=\"white\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M194.588 53.4476L197.265 51.8842L196.788 51.0336L197.565 50.598L198.469 52.2113L194.216 54.6967L188.902 44.018L189.699 43.6215L194.588 53.4476Z\" fill=\"var(--outline)\"/><path d=\"M187.193 45.4809C187.68 45.481 188.074 45.8754 188.074 46.3617C188.074 46.8483 187.68 47.2434 187.193 47.2435C186.707 47.2435 186.312 46.8484 186.312 46.3617C186.313 45.8753 186.707 45.4809 187.193 45.4809Z\" fill=\"var(--outline)\"/><path d=\"M186.105 41.432L186.411 41.7553C185.78 42.354 185.337 43.1019 185.132 43.9271L184.269 43.7123C184.516 42.7158 185.049 41.8198 185.799 41.1088L186.105 41.432Z\" fill=\"var(--outline)\"/><path d=\"M198.046 41.7475C198.532 41.7475 198.927 42.1418 198.927 42.6283C198.927 43.115 198.532 43.5101 198.046 43.5101C197.559 43.5101 197.165 43.115 197.165 42.6283C197.165 42.1418 197.559 41.7475 198.046 41.7475Z\" fill=\"var(--outline)\"/><path d=\"M193.854 37.4506C195.303 37.1051 196.807 37.0203 198.288 37.1117L198.233 38.0004C196.822 37.9132 195.408 37.9957 194.061 38.3168L193.854 37.4506Z\" fill=\"var(--outline)\"/><path d=\"M207.901 5.21526C208.942 4.79855 210.127 5.32199 210.526 6.36956L216.378 21.6186L202.456 27.5043C202.231 26.9457 202.017 26.3612 201.822 25.7494C203.103 25.1389 203.929 24.8293 203.936 24.8266L203.567 23.9575L180.588 33.4662C180.588 33.4903 180.591 37.0325 181.428 38.8364C180.386 38.8364 179.153 37.8601 177.981 35.1987C175.397 29.3224 172.921 24.2082 171.516 21.0229C171.23 20.3799 171.54 19.6354 172.194 19.3735L207.901 5.21526Z\" fill=\"var(--outline)\"/><path d=\"M220.747 33.0014L212.258 37.0326L212.264 37.0268C211.023 37.0551 209.158 36.2842 207.273 34.6098L219.399 29.4877L220.747 33.0014Z\" fill=\"var(--outline)\"/><path d=\"M219.079 28.6567L206.568 33.9408C205.911 33.2763 205.262 32.4994 204.645 31.6059L218.04 25.9487L219.079 28.6567Z\" fill=\"var(--outline)\"/><path d=\"M217.721 25.1166L204.146 30.851C203.668 30.0852 203.218 29.2429 202.805 28.3237L216.697 22.4506L217.721 25.1166Z\" fill=\"var(--outline)\"/><path d=\"M215.441 39.3412C215.989 39.5674 216.566 39.6508 217.149 39.5615C219.376 39.2281 220.822 36.525 220.37 33.5242C219.924 30.5235 217.751 28.3563 215.524 28.6897C214.054 28.91 212.97 30.1662 212.458 31.8393C212.054 33.173 212.53 36.0427 213.107 37.0073\" fill=\"var(--skin)\"/><path d=\"M215.441 39.3412C215.989 39.5674 216.566 39.6508 217.149 39.5615C219.376 39.2281 220.822 36.525 220.37 33.5242C219.924 30.5235 217.751 28.3563 215.524 28.6897C214.054 28.91 212.97 30.1662 212.458 31.8393C212.054 33.173 212.53 36.0427 213.107 37.0073\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M156.171 99.1402L171.461 93.1566C171.999 92.9462 172.6 93.2094 172.811 93.7472L184.527 123.693C184.737 124.231 184.474 124.833 183.936 125.043L168.646 131.027L156.169 99.1346L156.171 99.1402Z\" fill=\"var(--outline)\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M155.352 99.4552L170.813 93.4044L183.291 125.297L167.829 131.347C167.386 131.521 166.884 131.302 166.711 130.858L154.862 100.574C154.689 100.13 154.908 99.6288 155.352 99.4552Z\" fill=\"var(--device)\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M168.923 96.4967L167.753 96.9545C167.377 97.1019 167.191 97.5267 167.338 97.9034L168.709 101.408C168.856 101.784 169.281 101.97 169.658 101.823L170.827 101.365C171.204 101.217 171.39 100.793 171.243 100.416L169.872 96.9119C169.724 96.5352 169.299 96.3494 168.923 96.4967Z\" fill=\"var(--outline)\"/><path d=\"M157.167 106.388L160.024 113.694C160.024 113.694 168.787 108.853 170.192 107.936C172.579 106.388 174.228 109.454 172.508 110.955C171.329 111.985 162.673 118.284 161.941 118.725C162.608 118.397 170.168 114.605 173.246 113.688C175.246 113.092 176.187 116.581 174.746 117.504C177.377 116.784 178.502 120.219 176.621 121.553C175.449 122.386 166.668 127.715 166.668 127.715C166.668 127.715 174.919 124.458 175.931 124.143C177.484 123.66 178.354 125.709 177.133 126.983C176.312 127.84 173.502 129.948 170.561 131.234C167.781 132.448 160.643 133.3 156.542 126.364C152.44 119.427 153.768 108.615 157.161 106.382L157.167 106.388Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-linejoin=\"bevel\"/><path d=\"M164.161 123.244L174.71 117.523\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M161.238 113.016L157.881 114.891\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M209.467 79.7621C211.24 80.9496 213.628 82.7399 214.885 84.7762L214.382 88.5483L206.723 82.7399L203.995 78.6653C205.08 78.5361 207.694 78.5747 209.467 79.7621Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M180.745 76.0297L201.916 66.1499C202.293 65.9738 202.742 66.1376 202.918 66.5152L209.204 79.9849C209.38 80.3624 209.217 80.8115 208.84 80.9877L187.67 90.8675C187.292 91.0437 186.842 90.8802 186.666 90.5026L180.38 77.033C180.204 76.6554 180.368 76.2059 180.745 76.0297Z\" fill=\"white\" stroke=\"var(--outline)\" stroke-width=\"1.00588\"/><path d=\"M265.305 106.025L262.287 93.0748L249.839 101.373L247.702 102.756H243.553L237.895 101.373L232.236 99.613L224.315 96.2181L220.795 94.0806L220.166 92.1946L217.777 88.4225L216.394 86.0336L214.382 84.2733L211.742 82.6387L208.724 81.2556L201.557 80.5012H197.408L195.773 80.8784L195.27 82.2615L195.522 84.0218L194.013 84.399L193.007 84.902L192.63 86.285L193.636 88.5483L193.007 90.56L193.636 92.3203L195.27 93.2005L194.767 95.0865L195.773 96.5953L204.323 99.4863L211.993 105.27L219.663 108.288L237.769 121.49C245.313 126.268 251.172 128.281 259.018 124.257C266.864 120.234 266.478 110.426 265.305 106.025Z\" fill=\"var(--skin)\"/><path d=\"M219.25 108.176C226.92 114.086 242.372 125.531 247.153 126.102C254.624 126.995 260.279 124.56 263.107 120.97C266.161 117.094 266.137 111.17 265.22 106.478C264.304 101.787 262.095 93.2606 262.095 93.2606H262.101C253.915 99.6551 247.153 103.114 247.153 103.114C247.153 103.114 234.841 102.392 220.633 94.3451\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M220.921 94.5833C220.208 92.5716 218.28 88.02 216.269 85.9076C214.257 83.7952 210.904 82.0936 209.479 81.5069L200.175 80.501C198.833 80.3752 196.025 80.3501 195.522 81.2554C195.019 82.1607 195.313 83.4768 195.522 84.0216C195.019 83.9797 193.862 84.0216 193.258 84.5246C192.504 85.1533 192.504 86.2849 192.63 86.7878C192.73 87.1902 193.426 88.129 193.762 88.5481C193.384 88.9672 193.03 89.443 192.882 90.1827C192.755 90.8113 193.091 91.943 193.762 92.4459C194.432 92.9488 195.522 93.0746 195.522 93.0746C195.522 93.0746 194.893 93.5775 194.893 94.4577C194.893 95.3378 194.893 96.5952 198.163 97.3496C200.778 97.9531 204.114 99.529 205.455 100.241C205.916 100.535 207.19 101.449 208.599 102.756C210.359 104.391 212.748 105.774 216.269 107.031C219.085 108.037 220.082 108.582 220.292 108.917\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M247.153 103.114C251.671 103.626 256.475 105.752 258.35 107.199M195.613 84.0344C197.038 84.1182 200.215 84.5877 201.522 84.7888C203.157 85.0403 209.695 86.2977 209.695 86.2977M193.853 88.6866C195.487 88.8543 199.058 89.2147 200.265 89.3153C201.472 89.4159 206.384 90.1955 208.689 90.5727M195.613 93.0874L201.145 93.9675L208.186 95.3506\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/></svg>", "identity-verification-scan-01": "<svg width=\"342\" height=\"176\" viewBox=\"0 0 342 176\" fill=\"none\"><style> svg { --dialog: #CBD7C6; --dialog-header: #B8C9B2; --dialog-controls: #9FB596; --outline: #282828; --sign: #F9FBF8; --sign-outline: #CBD7C6; --fabric: #C9C9C9; --device: #686868; --card: #ECE9E8; --skin: #603E2F; --bag: #ECE9E8; --mouth: #FFFFFF; } svg[data-theme=\"dark\"] { --dialog: #515E51; --dialog-header: #5F705C; --dialog-controls: #73896C; --outline: #141414; --sign: #313C34; --sign-outline: #515E51; --fabric: #949494; --device: #686868; --card: #D4D1CF; --skin: #603E2F; --bag: #D4D1CF; --mouth: #E7E4E2; }</style><rect x=\"62\" y=\"36\" width=\"218\" height=\"103\" fill=\"var(--dialog)\" /><path d=\"M62 36L280 36V52H62V36Z\" fill=\"var(--dialog-header)\"/><path d=\"M71.6816 41C73.2787 41.0001 74.5732 42.2955 74.5732 43.8926C74.5731 45.4895 73.2786 46.7841 71.6816 46.7842C70.0846 46.7842 68.7902 45.4896 68.79 43.8926C68.79 42.2954 70.0845 41 71.6816 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M80.2305 41C81.8276 41 83.123 42.2954 83.123 43.8926C83.1229 45.4896 81.8275 46.7842 80.2305 46.7842C78.6336 46.784 77.339 45.4895 77.3389 43.8926C77.3389 42.2955 78.6335 41.0002 80.2305 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M88.7803 41C90.3773 41.0001 91.6719 42.2955 91.6719 43.8926C91.6717 45.4895 90.3773 46.7841 88.7803 46.7842C87.1832 46.7842 85.8888 45.4896 85.8887 43.8926C85.8887 42.2954 87.1831 41 88.7803 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M305.115 14.3398V63.8242H282.773V90.8164H172.446V14.3398H305.115Z\" fill=\"var(--sign)\" stroke=\"var(--sign-outline)\" stroke-width=\"2\"/><path d=\"M223.95 25.3761V79.3937H184.666V25.3761H223.95ZM270.384 59.0177V66.6241H234.784V59.0177H270.384ZM292.338 43.4171V50.963H234.784V43.4171H292.338ZM292.338 27.2853V35.0997H234.784V27.2853H292.338Z\" fill=\"var(--sign-outline)\" stroke=\"var(--sign-outline)\" stroke-width=\"0.251471\"/><path d=\"M281.773 62.8242V90.7375L299.451 100.042L317.129 90.7375V62.8242H281.773Z\" fill=\"var(--sign)\" stroke=\"var(--sign-outline)\" stroke-width=\"2\"/><path d=\"M291.077 80.5028L297.59 86.0854L308.756 72.1288\" stroke=\"var(--sign-outline)\" stroke-width=\"2.26324\"/><path d=\"M115.45 6.75922C127.909 7.24832 131.742 19.7057 133.042 23.8287C134.397 28.1188 140.184 30.9393 141.74 35.0496C143.296 39.1656 142.616 44.6042 140.136 48.101C143.492 50.1095 150.449 56.0015 143.933 68.8658C137.411 81.7299 95.8596 69.1623 93.1675 67.9135C90.4753 66.6647 81.4506 58.3883 93.2543 48.3192C95.9962 45.9814 93.2923 31.5608 94.0786 24.8582C95.6572 11.3053 104.769 6.33989 115.45 6.75922Z\" fill=\"var(--outline)\"/><path d=\"M140.91 142.558L170.221 295.252C170.569 297.055 169.138 298.707 167.3 298.631L109.972 296.282L92.6247 225.556L89.9952 295.464L76.5029 294.911C75.3074 294.862 74.3457 293.902 74.3108 292.708C73.8399 277.789 71.1303 188.543 72.7801 172.876C74.5866 155.773 80.2007 140.064 80.2007 140.064L140.91 142.552L140.91 142.558Z\" fill=\"var(--fabric)\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M87.7645 65.47C96.0661 61.0419 107.119 59.786 113.041 60.0286L127.461 60.6194C130.563 60.7466 135.11 61.6752 139.084 65.4456L140.5 66.5C145.984 71.3623 152.706 87.1502 159.5 96C170.712 96.6526 167.25 97.383 164.612 100.064C165.646 101.214 164.442 101.806 164.307 102.806L143.5 117.5L142 115L141.5 117.5L141 142.5L83.8885 144.301C80.2038 144.423 77.3548 141.104 78.037 137.499L81.6395 118.492C81.5949 118.517 76.8262 121.167 70.2987 124.516C60.1038 129.747 54.2996 115.936 58.7889 108.655C61.4707 104.302 66.638 91.0355 72.4999 81.5C78.3618 71.9645 79.4627 69.8985 87.7645 65.47Z\" fill=\"var(--fabric)\"/><path d=\"M103.767 53.3103L103.366 64.2206C103.327 65.2693 110.267 70.3161 113.554 72.8689C116.639 70.9794 123.385 65.924 123.425 64.8754L123.82 54.4056L103.767 53.5865\" fill=\"var(--skin)\"/><path d=\"M103.767 53.3103L103.366 64.2206C103.327 65.2693 110.267 70.3161 113.554 72.8689C116.639 70.9794 123.385 65.924 123.425 64.8754L123.82 54.4056L103.767 53.5865\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M61.3729 132.074L79.5719 132.828C80.2155 132.855 80.7208 133.381 80.7198 134.023L80.5889 179.748C80.5812 182.717 78.0974 185.078 75.1184 184.955L56.3669 184.177C47.9538 183.828 42.4376 175.224 45.6741 167.5L60.2281 132.793C60.4219 132.335 60.8776 132.047 61.3732 132.068L61.3729 132.074Z\" fill=\"var(--bag)\"/><path d=\"M82.0153 118.507C83.0738 112.766 83.102 85.3191 83.102 85.3191L81.5354 85.2559M142.416 86.642L140.317 86.5561L140.619 92.7919M113.465 72.8838L111.09 134.976C112.804 135.529 115.057 137.456 114.509 138.731C113.962 140.005 113.096 143.371 113.096 143.371M100.88 136.889C107.365 135.254 114.058 134.411 120.755 134.396M79.0744 122.989L78.6925 132.716M72.8177 184.882C64.3597 184.533 58.814 175.92 62.0678 168.187L72.9603 132.515M62.6068 135.417L63.4024 115.151M61.1157 135.785L63.9435 135.896M61.3729 132.074L79.5719 132.828C80.2155 132.855 80.7208 133.381 80.7198 134.023L80.5889 179.748C80.5812 182.717 78.0974 185.078 75.1184 184.955L56.3669 184.177C47.9538 183.828 42.4376 175.224 45.6741 167.5L60.2281 132.793C60.4219 132.335 60.8776 132.047 61.3732 132.068L61.3729 132.074Z\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M77.6219 105.932C76.0857 103.075 70.946 100.665 68.7653 102.107C66.2631 103.763 65.0217 103.87 63.5546 106.983C62.0816 110.1 62.4699 117.916 63.0295 121.118C63.5892 124.32 66.6813 127.048 71.7928 127.453C76.9044 127.858 82.5116 122.596 82.8796 120.976C84.3436 114.572 77.6221 105.926 77.6221 105.926L77.6219 105.932Z\" fill=\"var(--fabric)\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M103.5 60.5675C101.5 60.5674 96.4035 60.9895 88.1016 65.4179C79.7998 69.8464 78.7994 70.9975 72.9375 80.5331C67.0756 90.0686 61.9999 104 59.1263 108.602C54.9999 116.5 58.5001 126.5 66 125.5M80.5 144L141.139 142.432C141.139 142.432 142.049 121.452 141.128 107L143.17 109.598L143.177 114.28C143.998 117.012 157.083 107.97 164.645 102.754C164.779 101.754 165.984 101.161 164.949 100.011C167.587 97.3303 170.688 96.665 159.475 96.0124C152.573 87.0222 145.322 70.3327 139.804 65.7671C135.742 61.6835 131.001 60.6988 127.799 60.5675H123.5M80.4999 124L79 133\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M104.922 101.237L92.2402 100.7L93.0679 77.9529C93.083 77.5366 93.4328 77.2133 93.849 77.2309L105.778 77.7362C106.14 77.7516 106.427 78.0299 106.415 78.3558L105.603 100.673C105.591 100.999 105.285 101.253 104.922 101.237Z\" fill=\"var(--device)\" stroke=\"var(--outline)\" stroke-width=\"1.2502\" stroke-miterlimit=\"10\"/><path d=\"M95.6267 83.2958L96.6089 83.3374C96.9243 83.3507 97.1892 83.1078 97.2006 82.7947L97.307 79.8698C97.3184 79.5567 97.072 79.2921 96.7566 79.2787L95.7744 79.2371C95.4591 79.2238 95.1942 79.4667 95.1828 79.7798L95.0763 82.7048C95.0649 83.0178 95.3114 83.2824 95.6267 83.2958Z\" fill=\"var(--outline)\"/><path d=\"M92.2249 86.6531L92.2441 92.7142C92.2441 92.7142 105.324 91.3408 106.265 91.1699C107.206 90.9939 107.595 93.1091 106.597 94.2768C107.136 95.1682 107.368 96.4333 105.952 97.8494C106.537 98.7127 106.907 100.079 105.391 101.466C105.909 102.773 105.564 103.72 104.186 104.782C103.474 105.329 94.8143 107.372 91.2086 106.617C86.1282 109.173 79.2444 115.805 76.2638 117.174C74.0788 118.178 72.5204 115.885 72.5204 115.885C70.5238 111.657 67.7085 108.162 73.7897 104.207C76.8277 102.233 81.3648 100.523 85.9565 97.3684C89.6051 94.8621 90.2141 86.6431 92.2249 86.6531Z\" fill=\"var(--skin)\"/><path d=\"M107.24 94.2619L99.5805 95.793M106.073 97.9664L99.3602 99.4414M105.238 101.477L99.33 103.161M92.2249 86.6531L92.2441 92.7142C92.2441 92.7142 105.324 91.3408 106.265 91.1699C107.206 90.9939 107.595 93.1091 106.597 94.2768C107.136 95.1682 107.368 96.4333 105.952 97.8494C106.537 98.7127 106.907 100.079 105.391 101.466C105.909 102.773 105.564 103.72 104.186 104.782C103.474 105.329 94.8143 107.372 91.2086 106.617C86.1282 109.173 79.2444 115.805 76.2638 117.174C74.0788 118.178 72.5204 115.885 72.5204 115.885C70.5238 111.657 67.7085 108.162 73.7897 104.207C76.8277 102.233 81.3648 100.523 85.9565 97.3684C89.6051 94.8621 90.2141 86.6431 92.2249 86.6531Z\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M70.1697 110.521C70.7103 113.766 74.4924 119.472 75.8493 120.379C77.2003 121.292 79.2344 120.537 80.2319 119.92\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M103.767 53.3103L103.366 64.2206C103.327 65.2693 110.267 70.3161 113.554 72.8689C116.639 70.9794 123.385 65.924 123.425 64.8754L123.82 54.4056L103.767 53.5865\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><rect x=\"0.503248\" y=\"0.503307\" width=\"22.6238\" height=\"13.8142\" rx=\"0.754412\" transform=\"matrix(0.999947 0.000674965 0.000663488 1.00005 108.887 64.6277)\" fill=\"var(--card)\" stroke=\"var(--outline)\" stroke-width=\"1.00588\"/><path d=\"M143.42 97.2195L157.039 108.11L163.192 104.119L167.219 113.672L167.221 117.147L166.847 120.961L163.207 125.985L159.989 127.573L155.557 127.57L149.512 124.845L145.87 120.708L141.955 116.026L137.786 108.097L133.886 100.303L131.468 98.2861L129.854 95.3296L128.643 91.7017L126.494 90.8943L124.478 88.6092L124.475 85.5195L125.012 84.8481L124.474 83.6387L125.01 81.0867L126.487 80.6847L125.679 78.4005L126.484 77.0576L122.857 75.4432L122.453 73.8309L123.124 72.6223L126.481 72.6245L133.198 74.2411L138.977 81.0962L140.594 88.6201L143.42 97.2195Z\" fill=\"var(--skin)\"/><path d=\"M159.055 109.641C153.679 104.847 144.337 99.2321 142.615 95.47C140.894 91.7078 140.999 90.5002 140.461 87.6779L139.383 81.4985C138.262 79.8859 135.538 76.338 133.602 75.0472C132.097 73.9717 131.184 73.6129 130.915 73.5679L124.736 72.6235C123.929 72.4886 122.452 72.6219 122.319 73.8307C122.225 74.6851 122.588 75.3084 123.126 75.7118C123.664 76.1151 126.619 76.923 126.619 76.923M134.818 80.4181C133.25 79.3883 129.952 77.275 129.307 77.0599C128.5 76.791 127.006 76.8254 126.364 77.0578C125.628 77.3245 125.317 78.7072 125.485 79.2094C125.631 79.6434 126.127 80.2669 126.491 80.5909M133.071 83.6445C131.458 82.7487 128.017 80.9033 127.156 80.688C126.081 80.4188 124.872 81.089 124.739 81.76C124.605 82.4309 124.203 84.0413 124.74 84.4443M130.918 87.0065C130.918 87.0065 126.99 84.496 125.946 84.3166C124.903 84.1372 124.228 84.8527 124.336 85.9274C124.444 87.0021 124.65 88.3455 124.74 88.8829C125.143 89.3757 126.111 90.442 126.756 90.7648C127.401 91.0876 128.189 91.3478 128.502 91.4376M126.35 88.6167C126.932 88.9752 128.178 89.773 128.5 90.0956C128.823 90.4181 128.795 92.1105 128.905 93.3194C129.041 94.797 129.525 96.6777 132.267 98.9629C133.557 100.038 134.328 101.382 134.553 101.919C137.377 107.07 140.522 112.69 143.48 117.528C145.233 120.394 148.304 125.746 155.29 127.362C162.276 128.979 165.835 123.655 166.72 120.459C167.347 118.198 167.347 117.921 166.715 113.172C166.084 108.423 164.072 106.134 163.065 103.62\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M98.6486 32.736L99.291 32.7616L98.9114 42.5815L98.2691 42.5559C95.5575 42.4477 93.437 40.1574 93.5417 37.4498C93.6463 34.7423 95.9371 32.6279 98.6486 32.736Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M130.463 27.0738C130.799 18.3687 124.005 11.03 115.288 10.6823C106.571 10.3347 99.2312 17.1097 98.8947 25.8148L98.2461 42.5985C97.9096 51.3036 104.704 58.6423 113.421 58.9899C122.138 59.3376 129.477 52.5625 129.814 43.8574L130.463 27.0738Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M116.307 34.9192L115.855 46.6243L110.306 46.4036L110.41 43.7015L111.329 43.7376L111.261 45.5208L114.971 45.6692L115.388 34.8831L116.307 34.9192Z\" fill=\"var(--outline)\"/><path d=\"M110.469 8.68877C119.63 7.79264 125.921 13.6011 128.587 17.5091L128.581 17.5081C131.128 21.2466 130.031 34.0121 129.972 38.6468C129.886 35.6998 128.337 31.194 124.064 30.012C119.503 28.7504 111.2 26.8674 109.676 20.8001C107.901 20.9119 100.284 25.4671 97.7335 32.7181L97.6475 32.7142C96.5114 32.6689 95.4511 33.0194 94.5967 33.6331C94.5109 31.4362 94.4522 27.058 95.1309 23.1868C96.0802 17.7637 101.301 9.59038 110.469 8.68877Z\" fill=\"var(--outline)\"/><path d=\"M122.43 36.7669C122.888 36.7852 123.245 37.1716 123.228 37.6292C123.21 38.0868 122.823 38.4424 122.365 38.4241C121.907 38.4057 121.551 38.0203 121.568 37.5628C121.586 37.1052 121.972 36.7486 122.43 36.7669Z\" fill=\"var(--outline)\"/><path d=\"M106.244 36.1312C106.702 36.1495 107.06 36.5349 107.042 36.9925C107.024 37.4501 106.638 37.8067 106.18 37.7884C105.722 37.7699 105.365 37.3836 105.383 36.9261C105.401 36.4686 105.786 36.1129 106.244 36.1312Z\" fill=\"var(--outline)\"/><path d=\"M121.415 31.4163C122.948 31.8598 124.325 32.8237 125.261 34.1185L124.516 34.6565C123.702 33.5299 122.497 32.6869 121.16 32.3001L121.415 31.4163Z\" fill=\"var(--outline)\"/><path d=\"M107.853 31.7796C106.49 32.0587 105.225 32.8042 104.326 33.8626L103.976 33.5657L103.624 33.2669C104.657 32.0504 106.105 31.1993 107.667 30.8792L107.853 31.7796Z\" fill=\"var(--outline)\"/><path d=\"M116.67 52.1108C115.412 55.092 110.885 54.9116 109.782 51.8079L116.67 52.1108Z\" fill=\"var(--mouth)\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/></svg>", "identity-verification-scan-02": "<svg width=\"342\" height=\"176\" viewBox=\"0 0 342 176\" fill=\"none\"><style> svg { --dialog: #CBD7C6; --dialog-header: #B8C9B2; --dialog-controls: #9FB596; --sign: #F9FBF8; --sign-outline: #CBD7C6; --outline: #282828; --skin: #8C5C37; --fabric: #86A27B; --device: #686868; --bag: #ECE9E8; } svg[data-theme=\"dark\"] { --dialog: #515E51; --dialog-header: #5F705C; --dialog-controls: #73896C; --sign: #313C34; --sign-outline: #515E51; --outline: #141414; --skin: #8C5C37; --fabric: #7C9372; --device: #686868; --bag: #D4D1CF; }</style><rect x=\"62\" y=\"36\" width=\"218\" height=\"103\" fill=\"var(--dialog)\"/><path d=\"M62 36L280 36V52H62V36Z\" fill=\"var(--dialog-header)\"/><path d=\"M71.6816 41C73.2787 41.0001 74.5732 42.2955 74.5732 43.8926C74.5731 45.4895 73.2786 46.7841 71.6816 46.7842C70.0846 46.7842 68.7902 45.4896 68.79 43.8926C68.79 42.2954 70.0845 41 71.6816 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M80.2305 41C81.8276 41 83.123 42.2954 83.123 43.8926C83.1229 45.4896 81.8275 46.7842 80.2305 46.7842C78.6336 46.784 77.339 45.4895 77.3389 43.8926C77.3389 42.2955 78.6335 41.0002 80.2305 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M88.7803 41C90.3773 41.0001 91.6719 42.2955 91.6719 43.8926C91.6717 45.4895 90.3773 46.7841 88.7803 46.7842C87.1832 46.7842 85.8888 45.4896 85.8887 43.8926C85.8887 42.2954 87.1831 41 88.7803 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M305.115 14.3398V63.8242H282.773V90.8164H172.446V14.3398H305.115Z\" fill=\"var(--sign)\" stroke=\"var(--sign-outline)\" stroke-width=\"2\"/><path d=\"M223.95 25.3761V79.3937H184.666V25.3761H223.95ZM270.384 59.0177V66.6241H234.784V59.0177H270.384ZM292.338 43.4171V50.963H234.784V43.4171H292.338ZM292.338 27.2853V35.0997H234.784V27.2853H292.338Z\" fill=\"var(--sign-outline)\" stroke=\"var(--sign-outline)\" stroke-width=\"0.251471\"/><path d=\"M281.773 62.8242V90.7375L299.451 100.042L317.129 90.7375V62.8242H281.773Z\" fill=\"var(--sign)\" stroke=\"var(--sign-outline)\" stroke-width=\"2\"/><path d=\"M291.077 80.5028L297.59 86.0854L308.756 72.1288\" stroke=\"var(--sign-outline)\" stroke-width=\"2.26324\"/><path d=\"M113.826 7.82799C109.402 7.82228 97.8646 8.90521 92.8846 26.0092C89.6972 36.9581 88.9857 52.3568 88.8343 59.77C88.768 63.0006 90.4565 66.0375 93.2755 67.6213C97.0341 69.7289 103.497 72.0031 113.906 72.0166C124.318 72.03 130.775 69.7724 134.526 67.6745C137.341 66.1005 139.022 63.0654 138.948 59.8347C138.778 52.421 138.028 37.0205 134.813 26.0633C129.791 8.9464 118.248 7.8337 113.826 7.82799Z\" fill=\"var(--outline)\"/><path d=\"M138.126 150.901C136.762 147.017 135.987 144.787 136.712 142.16C137.43 139.561 147.543 128.919 152.442 123.685C148.755 118.182 143.418 110.958 136.39 99.3872L154.363 92.4238C154.363 92.4238 168.654 118.027 170.072 122.328C171.87 127.774 163.453 135.172 156.649 140.355C150.937 144.709 147.716 148.106 147.716 148.106L140.707 150.305\" fill=\"var(--skin)\"/><path d=\"M138.126 150.901C136.762 147.017 135.987 144.787 136.712 142.16C137.43 139.561 147.543 128.919 152.442 123.685C148.755 118.182 143.418 110.958 136.39 99.3872L154.363 92.4238C154.363 92.4238 168.654 118.027 170.072 122.328C171.87 127.774 163.453 135.172 156.649 140.355C150.937 144.709 147.716 148.106 147.716 148.106L140.707 150.305\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M152.371 123.813C154.135 122.187 157.064 119.708 158.106 119.599M137.508 140.8C132.201 147.56 133.737 158.049 137.934 160.846C142.131 163.642 145.789 167.301 148.211 163.466C149.82 163.114 151.207 161.998 151.033 160.521C152.381 160.323 154.685 158.457 154.038 157.136C155.352 157.067 158.636 154.76 156.395 150.86C154.155 146.96 153.083 148.35 152.761 149.204C151.594 146.66 150.751 146.023 150.835 143.582M141.045 157.746C141.935 158.475 148.184 163.479 148.184 163.479M151.01 160.519L144.068 154.646M154.013 157.117L147.267 151.354\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M153.657 152.946C153.061 152.33 152.878 151.533 152.662 148.995\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M140.052 65.8029C145.571 70.3689 152.823 87.0602 159.726 96.0514C170.94 96.7037 169.233 103.445 166.594 106.126C167.629 107.276 167.72 110.007 167.585 111.007C160.022 116.224 145.856 123.381 145.035 120.649L144.811 115.715L133.878 95.7485\" fill=\"var(--fabric)\"/><path d=\"M140.052 65.8029C145.571 70.3689 152.823 87.0602 159.726 96.0514C170.94 96.7037 169.233 103.445 166.594 106.126C167.629 107.276 167.72 110.007 167.585 111.007C160.022 116.224 145.856 123.381 145.035 120.649L144.811 115.715L133.878 95.7485\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M151.825 112.658C155.079 111.051 166.534 106.141 166.534 106.141\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M141.193 142.459L147.798 177L79.5 177L73.0981 172.828L80.5306 140L141.193 142.453L141.193 142.459Z\" fill=\"var(--fabric)\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M140.133 65.8872C136.075 61.8038 131.264 60.5981 128.063 60.4686L113.651 59.8856C107.733 59.6462 96.6839 60.909 88.3838 65.3445C80.0837 69.7801 79.0832 70.9324 73.2191 80.4764C67.355 90.0204 62.0825 104.212 59.3998 108.568C54.9085 115.856 60.7025 129.671 70.8952 124.432C77.4522 121.062 82.2342 118.398 82.2342 118.398L78.6226 137.417C77.9385 141.024 80.7844 144.343 84.4674 144.219L141.353 142.368C141.353 142.368 141.811 107.039 140.898 92.5807\" fill=\"var(--fabric)\"/><path d=\"M140.133 65.8872C136.075 61.8038 131.264 60.5981 128.063 60.4686L113.651 59.8856C107.733 59.6462 96.6839 60.909 88.3838 65.3445C80.0837 69.7801 79.0832 70.9324 73.2191 80.4764C67.355 90.0204 62.0825 104.212 59.3998 108.568C54.9085 115.856 60.7025 129.671 70.8952 124.432C77.4522 121.062 82.2342 118.398 82.2342 118.398L78.6226 137.417C77.9385 141.024 80.7844 144.343 84.4674 144.219L141.353 142.368C141.353 142.368 141.811 107.039 140.898 92.5807\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M61.3729 132.074L79.5719 132.828C80.2155 132.855 80.7208 133.381 80.7198 134.023L80.5889 179.748C80.5812 182.717 78.0974 185.078 75.1184 184.955L56.3669 184.177C47.9538 183.828 42.4376 175.224 45.6741 167.5L60.2281 132.793C60.4219 132.335 60.8776 132.047 61.3732 132.068L61.3729 132.074Z\" fill=\"var(--bag)\"/><path d=\"M103.862 57.9383L103.625 64.1649C103.585 65.2141 110.521 70.2599 113.806 72.8122C116.89 70.9207 123.636 65.8605 123.676 64.8113L124.075 54.3372L104.031 53.5264\" fill=\"var(--skin)\"/><path d=\"M103.862 57.9383L103.625 64.165C103.585 65.2141 110.521 70.2599 113.806 72.8122C116.89 70.9207 123.636 65.8605 123.676 64.8113L124.075 54.3372L104.031 53.5264\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M98.0565 33.4348L98.7001 33.4612L98.331 43.2745L97.6874 43.2481C94.9708 43.1368 92.8438 40.8453 92.9456 38.1396C93.0473 35.4338 95.3399 33.3235 98.0565 33.4348Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M129.395 33.4156L128.755 33.4396L129.157 43.2734L129.797 43.2494C132.497 43.148 134.604 40.8601 134.493 38.1487C134.382 35.4373 132.095 33.3142 129.395 33.4156Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M129.888 27.7921C130.215 19.0937 123.402 11.7521 114.67 11.3942C105.939 11.0363 98.5954 17.7977 98.2683 26.4961L97.6377 43.2668C97.3106 51.9653 104.124 59.3068 112.855 59.6647C121.587 60.0226 128.93 53.2613 129.257 44.5629L129.888 27.7921Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M108.959 51.8891C110.705 53.0229 113.033 53.2181 114.945 52.4003L115.417 53.4948C113.143 54.4677 110.395 54.2394 108.312 52.8868L108.959 51.8891Z\" fill=\"var(--outline)\"/><path d=\"M115.275 47.3188L109.715 47.0909L109.817 44.3898L110.736 44.4276L110.669 46.2095L114.39 46.3617L114.796 35.5812L115.715 35.619L115.275 47.3188Z\" fill=\"var(--outline)\"/><path d=\"M105.651 36.8254C106.11 36.8442 106.468 37.23 106.451 37.6871C106.433 38.1439 106.048 38.4992 105.589 38.4805C105.131 38.4617 104.773 38.0758 104.79 37.6188C104.807 37.1617 105.193 36.8067 105.651 36.8254Z\" fill=\"var(--outline)\"/><path d=\"M121.837 37.4611C122.296 37.4799 122.653 37.8658 122.636 38.3228C122.619 38.7799 122.234 39.1349 121.775 39.1162C121.316 39.0974 120.958 38.7116 120.976 38.2545C120.993 37.7975 121.378 37.4423 121.837 37.4611Z\" fill=\"var(--outline)\"/><path d=\"M107.261 32.4778C105.898 32.755 104.632 33.4969 103.734 34.5523L103.033 33.9546C104.065 32.7415 105.513 31.8944 107.075 31.5768L107.261 32.4778Z\" fill=\"var(--outline)\"/><path d=\"M120.822 32.1092C122.355 32.5538 123.734 33.518 124.671 34.8118L123.928 35.35C123.112 34.2244 121.906 33.381 120.568 32.9931L120.822 32.1092Z\" fill=\"var(--outline)\"/><path d=\"M82.2617 118.446C83.3177 112.705 83.3606 85.2576 83.3606 85.2576L81.8024 85.1952M142.672 86.5801L140.576 86.4954L140.874 92.7322M103.634 64.1851L96.6745 68.4246L101.13 62.0674M123.657 64.8017L129.66 68.8396L126.223 61.2695M113.742 72.8233L111.349 134.918C113.052 135.469 115.29 137.395 114.745 138.67C114.2 139.945 113.338 143.311 113.338 143.311M101.136 136.838C107.621 135.194 114.314 134.345 121.01 134.327M73.0519 184.821C64.6091 184.476 59.0774 175.865 62.3292 168.131L73.2194 132.449M62.8628 135.356L63.6585 115.09M61.6428 132.005L79.8297 132.75C80.4729 132.776 80.9776 133.303 80.9763 133.944L80.8235 179.685C80.8143 182.655 78.331 185.018 75.3539 184.896L56.6149 184.129C48.2074 183.784 42.6988 175.18 45.937 167.452L60.4983 132.725C60.6922 132.267 61.1478 131.979 61.643 131.999L61.6428 132.005Z\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M61.3718 135.724L64.1996 135.835\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M77.8793 105.865C76.3454 103.008 71.2097 100.599 69.0296 102.043C66.528 103.701 65.2872 103.809 63.8194 106.924C62.3456 110.043 62.7299 117.862 63.2877 121.065C63.8455 124.268 66.9345 126.995 72.043 127.398C77.1515 127.8 82.7582 122.533 83.1268 120.913C84.5931 114.505 77.8796 105.859 77.8796 105.859L77.8793 105.865Z\" fill=\"var(--fabric)\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M108.076 102.629L96.1096 102.127C95.5578 102.104 95.127 101.638 95.1473 101.086L96.0509 76.509C96.0712 75.9571 96.535 75.5284 97.0868 75.5516L109.053 76.0532C109.424 76.0687 109.716 76.3819 109.702 76.7505L108.774 101.988C108.761 102.356 108.447 102.644 108.076 102.629Z\" fill=\"var(--device)\" stroke=\"var(--outline)\" stroke-width=\"1.2502\" stroke-miterlimit=\"10\"/><path d=\"M98.1762 81.3574L99.1577 81.3986C99.4728 81.4118 99.7376 81.1686 99.7491 80.8555L99.8567 77.9298C99.8682 77.6167 99.622 77.3521 99.3069 77.3389L98.3254 77.2978C98.0103 77.2846 97.7455 77.5277 97.734 77.8409L97.6264 80.7665C97.6149 81.0796 97.861 81.3442 98.1762 81.3574Z\" fill=\"var(--outline)\"/><path d=\"M111.516 91.7454L103.741 94.0613M110.777 95.7929L103.553 98.8319M110.136 99.889L103.818 102.729M95.3288 83.2135L95.1193 88.9187C95.1193 88.9187 110.104 88.4991 111.165 88.3056C112.227 88.1064 112.664 90.4942 111.538 91.8131C112.145 92.8193 112.406 94.2474 110.809 95.8469C111.468 96.8213 111.885 98.3636 110.174 99.93C110.758 101.406 110.351 103.021 108.797 104.22C107.993 104.838 98.505 108.334 94.4378 107.483C88.7056 110.371 80.6726 116.132 77.3096 117.68C74.8443 118.815 73.0874 116.227 73.0874 116.227C70.837 111.454 67.6626 107.51 74.5245 103.042C77.9525 100.811 83.0715 98.8778 88.2527 95.3144C92.3697 92.4828 93.0605 83.2033 95.3288 83.2135Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M70.5342 110.243C71.073 113.489 74.747 119.413 76.1029 120.32C77.4529 121.233 79.4867 120.476 80.4841 119.858\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M120.244 22.8014C121.582 23.9594 123.071 26.625 123.95 28.8108C127.287 28.4966 130.232 27.9936 132.305 27.2639C130.723 20.8535 125.798 10.9073 113.353 10.8913C100.908 10.8753 95.0156 23.9478 95.2307 27.2162C97.9367 28.6845 110.024 29.6055 120.249 29.0769L120.241 22.8014L120.244 22.8014Z\" fill=\"var(--outline)\"/></svg>", "identity-verification-scan-03": "<svg width=\"342\" height=\"176\" viewBox=\"0 0 342 176\" fill=\"none\"><style> svg { --dialog: #CBD7C6; --dialog-header: #B8C9B2; --sign: #F9FBF8; --sign-outline: #CBD7C6; --outline: #282828; --skin: #B98563; --fabric: #686868; --device: #C9C9C9; --cup: #FFFFFF; --cup-label: #C9C9C9; } svg[data-theme=\"dark\"] { --dialog: #515E51; --dialog-header: #5F705C; --sign: #313C34; --sign-outline: #515E51; --outline: #141414; --skin: #B98563; --fabric: #686868; --device: #949494; --cup: #E7E4E2; --cup-label: #949494; }</style><rect x=\"62\" y=\"36\" width=\"218\" height=\"103\" fill=\"var(--dialog)\"/><path d=\"M62 36L280 36V52H62V36Z\" fill=\"var(--dialog-header)\"/><path d=\"M305.115 14.3398V63.8242H282.773V90.8163H172.446V14.3398H305.115Z\" fill=\"var(--sign)\" stroke=\"var(--sign-outline)\" stroke-width=\"2\"/><path d=\"M223.95 25.3761V79.3937H184.666V25.3761H223.95ZM270.384 59.0177V66.6241H234.784V59.0177H270.384ZM292.338 43.4171V50.963H234.784V43.4171H292.338ZM292.338 27.2853V35.0997H234.784V27.2853H292.338Z\" fill=\"var(--sign-outline)\" stroke=\"var(--sign-outline)\" stroke-width=\"0.251471\"/><path d=\"M281.773 62.8242V90.7375L299.451 100.042L317.129 90.7375V62.8242H281.773Z\" fill=\"var(--sign)\" stroke=\"var(--sign-outline)\" stroke-width=\"2\"/><path d=\"M291.077 80.5028L297.59 86.0854L308.756 72.1288\" stroke=\"var(--sign-outline)\" stroke-width=\"2.26324\"/><path d=\"M178.126 57.8006C180.929 55.9464 183.527 53.7142 184.535 53.0302C186.221 51.8841 184.913 49.1358 182.537 50.0719C180.161 51.008 176.422 52.7601 176.422 52.7601L178.132 57.8006H178.126Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"0.889333\" stroke-miterlimit=\"10\"/><path d=\"M160.311 78.6702C159.231 80.4044 154.46 90.7013 148.868 104.599C147.794 103.332 146.725 102.06 145.645 100.8C142.189 96.7618 138.631 92.8075 135.24 88.7091C140.989 79.0722 147.403 68.8353 150.146 65.055C153.728 60.1225 161.169 52.7659 165.579 53.0359L164.835 77.8421C164.835 77.8421 163.053 78.9762 160.305 78.6702H160.311Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"0.889333\" stroke-miterlimit=\"10\"/><path d=\"M157.053 76.5342C157.509 77.6023 158.679 78.5204 160.305 78.6704\" stroke=\"var(--outline)\" stroke-width=\"0.889333\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M163.731 81.0159H176.038C176.788 81.0159 177.412 80.4399 177.466 79.6958L180.052 47.1969H159.717L162.303 79.6958C162.363 80.4399 162.987 81.0159 163.731 81.0159Z\" fill=\"var(--cup)\" stroke=\"var(--outline)\" stroke-width=\"0.889333\" stroke-miterlimit=\"10\"/><path d=\"M179.741 42.0123C180.131 42.0123 180.455 42.3311 180.455 42.7272V44.9059H181.613C181.954 44.906 182.231 45.182 182.231 45.5231V48.1393C182.231 48.4806 181.954 48.7574 181.613 48.7574H158.157C157.815 48.7574 157.539 48.4806 157.539 48.1393V45.5231C157.539 45.1819 157.816 44.9059 158.157 44.9059H168.439L173.993 42.4625C174.665 42.1686 175.391 42.0123 176.123 42.0123H179.741Z\" fill=\"var(--outline)\"/><path d=\"M161.697 72.0929L160.311 54.6313H179.459L178.073 72.0929H161.697Z\" fill=\"var(--cup-label)\"/><path d=\"M164.835 63.3627C164.835 66.153 167.098 68.4092 169.882 68.4092C172.672 68.4092 174.928 66.147 174.928 63.3627C174.928 60.5725 172.666 58.3163 169.882 58.3163C167.098 58.3163 164.835 60.5785 164.835 63.3627Z\" fill=\"var(--cup)\"/><path d=\"M163.731 81.0162H176.038C176.788 81.0162 177.412 80.4401 177.466 79.6961L180.052 47.1971H159.717L162.303 79.6961C162.363 80.4401 162.987 81.0162 163.731 81.0162Z\" stroke=\"var(--outline)\" stroke-width=\"0.889333\" stroke-miterlimit=\"10\" stroke-linecap=\"square\"/><path d=\"M182.615 68.1637C182.993 69.7778 181.367 71.1459 178.714 71.956C176.062 72.7721 174.214 71.938 174.064 70.7319C173.914 69.5258 174.982 68.2777 177.172 67.4616C179.362 66.6455 182.147 66.1775 182.615 68.1577V68.1637Z\" fill=\"var(--skin)\"/><path d=\"M182.375 62.4988C182.555 63.5249 182.429 65.1451 179.735 66.4172C177.04 67.6893 173.53 68.4934 173.092 67.0172C172.432 64.773 173.614 63.5909 177.208 61.9648C180.803 60.3386 182.207 61.5567 182.375 62.5048V62.4988Z\" fill=\"var(--skin)\"/><path d=\"M182.291 57.1109C181.727 55.1127 178.642 55.9288 176.728 56.8288C174.814 57.7289 172.234 59.2411 172.966 61.0952C173.698 62.9494 175.984 62.1033 177.562 61.4913C179.141 60.8732 182.987 59.5711 182.285 57.1109H182.291Z\" fill=\"var(--skin)\"/><path d=\"M182.615 68.1637C182.993 69.7778 181.367 71.1459 178.714 71.956C176.062 72.7721 174.214 71.938 174.064 70.7319C173.914 69.5258 174.982 68.2777 177.172 67.4616C179.362 66.6455 182.147 66.1775 182.615 68.1577V68.1637Z\" stroke=\"var(--outline)\" stroke-width=\"0.889333\" stroke-miterlimit=\"10\"/><path d=\"M182.375 62.4988C182.555 63.5249 182.429 65.1451 179.735 66.4172C177.04 67.6893 173.53 68.4934 173.092 67.0172C172.432 64.773 173.614 63.5909 177.208 61.9648C180.803 60.3386 182.207 61.5567 182.375 62.5048V62.4988Z\" stroke=\"var(--outline)\" stroke-width=\"0.889333\" stroke-miterlimit=\"10\"/><path d=\"M182.291 57.1109C181.727 55.1127 178.642 55.9288 176.728 56.8288C174.814 57.7289 172.234 59.2411 172.966 61.0952C173.698 62.9494 175.984 62.1033 177.562 61.4913C179.141 60.8732 182.987 59.5711 182.285 57.1109H182.291Z\" stroke=\"var(--outline)\" stroke-width=\"0.889333\" stroke-miterlimit=\"10\"/><path d=\"M159.717 61.7009C163.251 62.055 168.345 60.1288 170.662 59.2887C173.284 58.3346 175.282 61.881 172.624 64.1072C171.25 65.2593 163.665 69.8137 162.003 70.9478C160.341 72.0879 157.274 72.97 155.966 71.5598\" fill=\"var(--skin)\"/><path d=\"M159.717 61.7009C163.251 62.055 168.345 60.1288 170.662 59.2887C173.284 58.3346 175.282 61.881 172.624 64.1072C171.25 65.2593 163.665 69.8137 162.003 70.9478C160.341 72.0879 157.274 72.97 155.966 71.5598\" stroke=\"var(--outline)\" stroke-width=\"0.889333\" stroke-miterlimit=\"10\"/><path d=\"M139.813 79.5161C135.043 86.5368 128.148 101.052 125.106 106.513C115.373 96.3356 107.008 87.8629 102.55 84.4186C97.5512 80.5602 82.6759 68.7812 72.913 67.233C63.1501 65.6849 57.4676 68.1811 55.8775 75.1117C54.2873 82.0363 55.8775 93.2814 55.8775 93.2814C55.8775 93.2814 49.0669 113.719 48.4968 130.071C47.9268 146.422 48.4968 155.735 48.4968 155.735L117.863 154.829L106.978 123.122L125.106 132.099C130.59 134.811 137.227 132.855 140.389 127.616C147.266 116.209 156.458 98.7058 156.458 98.7058L139.807 79.5281L139.813 79.5161Z\" fill=\"var(--fabric)\" stroke=\"var(--outline)\" stroke-width=\"0.889333\" stroke-miterlimit=\"10\"/><path d=\"M106.978 123.117L102.348 108.679L108.586 107.912\" stroke=\"var(--outline)\" stroke-width=\"0.889333\" stroke-miterlimit=\"10\"/><path d=\"M85.6638 83.8677C83.7857 81.8575 72.3006 71.7286 61.8777 71.1165C61.5897 72.1246 61.2776 73.4507 61.2776 73.4507\" stroke=\"var(--outline)\" stroke-width=\"0.889333\" stroke-miterlimit=\"10\"/><path d=\"M82.1116 125.71C82.0696 128.776 81.2895 136.643 79.3753 137.531C77.4552 138.419 75.061 137.531 75.061 137.531L76.3151 113.271L77.5272 112.922C77.5272 112.922 82.1656 122.049 82.1116 125.716V125.71Z\" fill=\"var(--outline)\"/><path d=\"M90.0259 114.392L103.593 114.482L113.302 92.2258L99.7348 92.1358C99.2608 92.1358 98.5887 92.0518 98.2287 92.8139C97.8686 93.5759 89.1678 113.528 89.1678 113.528C89.1678 114.002 89.5459 114.392 90.0259 114.398V114.392Z\" fill=\"var(--outline)\" stroke=\"var(--outline)\" stroke-width=\"0.889333\" stroke-miterlimit=\"10\"/><path d=\"M90.6022 114.398L104.319 114.488C104.709 114.488 105.49 113.942 105.496 113.546L114.736 92.9463C114.736 92.5563 114.424 92.2323 114.028 92.2323L100.311 92.1423L90.6022 114.398Z\" fill=\"var(--device)\" stroke=\"var(--outline)\" stroke-width=\"0.889333\" stroke-miterlimit=\"10\"/><path d=\"M100.719 97.9148H101.757C102.093 97.9208 102.369 97.3207 102.369 97.3207L103.725 94.5785C103.725 94.2424 103.455 93.9724 103.125 93.9664H102.087C101.751 93.9604 101.475 94.5605 101.475 94.5605L100.119 97.3027C100.119 97.6388 100.389 97.9088 100.719 97.9148Z\" fill=\"var(--outline)\"/><path d=\"M97.5151 120.615V107.618H98.8352\" stroke=\"var(--outline)\" stroke-width=\"0.889333\" stroke-miterlimit=\"10\"/><path d=\"M105.952 112.203H96.057V113.337M102.532 116.913H94.8031V118.047M99.3032 121.395H93.6807V122.445M75.2712 130.252C83.462 130.252 92.0487 126.333 93.6869 125.859C94.893 125.511 99.6934 124.485 99.3094 121.395C100.624 120.933 102.91 119.001 102.538 116.912C104.098 116.45 106.84 115.466 105.952 112.196C107.884 111.812 111.052 109.286 109.12 107.186C105.64 107.402 91.7547 107.6 91.7547 107.6L94.1069 102.217C94.1069 102.217 90.2006 101.533 86.8703 106.399C83.54 111.266 77.7855 113.894 75.6493 114.116L75.2712 130.252Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"0.889333\" stroke-miterlimit=\"10\"/><path d=\"M67.4521 76.6309C66.1499 75.3288 56.2551 78.5811 50.6566 83.9216C45.0581 89.2621 36.0573 110.798 33.8491 115.766C31.6349 120.735 28.3406 129.73 29.7687 134.938C31.2028 140.147 34.3051 140.783 41.2057 140.657C48.1063 140.525 78.6251 138.724 79.4111 136.756C75.5048 136.378 77.1729 118.761 77.863 113.186C77.887 113 77.707 112.85 77.527 112.916C74.4727 113.984 52.2467 118.197 52.2467 118.197C52.2467 118.197 56.9211 109.124 57.8692 107.582L56.6091 106.682\" fill=\"var(--fabric)\"/><path d=\"M67.4521 76.6309C66.1499 75.3288 56.2551 78.5811 50.6566 83.9216C45.0581 89.2621 36.0573 110.798 33.8491 115.766C31.6349 120.735 28.3406 129.73 29.7687 134.938C31.2028 140.147 34.3051 140.783 41.2057 140.657C48.1063 140.525 78.6251 138.724 79.4111 136.756C75.5048 136.378 77.1729 118.761 77.863 113.186C77.887 113 77.707 112.85 77.527 112.916C74.4727 113.984 52.2467 118.197 52.2467 118.197C52.2467 118.197 56.9211 109.124 57.8692 107.582L56.6091 106.682\" stroke=\"var(--outline)\" stroke-width=\"0.889333\" stroke-miterlimit=\"10\"/><path d=\"M52.2468 118.197L40.4018 120.033\" stroke=\"var(--outline)\" stroke-width=\"0.889333\" stroke-miterlimit=\"10\"/><path d=\"M166.917 134.133C186.089 133.359 189.245 148.762 189.431 151.307C190.013 159.263 190.421 210.033 190.811 215.777C191.201 221.519 184.036 228.426 166.233 227.262C148.423 226.104 137.586 214.876 139.333 211.006C139.699 210.207 143.449 199.126 145.111 194.913C145.027 194.913 144.942 194.913 144.858 194.913L161.715 153.018H164.578V152.129H161.115L143.9 194.914C133.568 194.925 120.175 195.063 103.978 194.913C87.1406 194.757 66.8644 194.913 61.2358 194.913C54.0412 194.913 48.2505 173.533 48.2505 155.73L48.2446 155.724L103.587 154.865C103.587 154.865 144.703 135.027 166.917 134.133Z\" fill=\"var(--outline)\"/><path d=\"M125.112 106.513C124.109 108.505 122.405 112.201 122.405 112.201\" stroke=\"var(--outline)\" stroke-width=\"0.889333\" stroke-miterlimit=\"10\"/><path d=\"M87.749 73.7467C87.749 73.7467 86.3685 77.9888 86.1265 78.7452C87.6109 79.8041 89.0484 81.1912 89.0484 81.1912C89.0484 81.1912 88.6862 88.9468 87.0566 89.2854C85.427 89.624 78.0812 77.8283 69.2014 73.1338C71.6682 65.7687 76.655 50.0216 76.655 50.0216\" fill=\"var(--skin)\"/><path d=\"M76.094 50.8299L78.9836 41.9049C81.6118 33.8671 89.9005 29.1241 97.4961 31.3117C105.092 33.4993 109.119 41.7895 106.491 49.8274L102.309 62.7383C99.7021 70.8003 92.4555 76.3095 84.0638 73.2328C80.2283 71.8256 77.992 68.379 77.7921 64.4597\" fill=\"var(--skin)\"/><path d=\"M87.749 73.7467C87.749 73.7467 86.3685 77.9888 86.1265 78.7452C87.6109 79.8041 89.0484 81.1912 89.0484 81.1912C89.0484 81.1912 88.6862 88.9468 87.0566 89.2854C85.427 89.624 78.0812 77.8283 69.2014 73.1338C71.6682 65.7687 76.655 50.0216 76.655 50.0216M76.094 50.8299L78.9836 41.9049C81.6118 33.8671 89.9005 29.1241 97.4961 31.3117C105.092 33.4993 109.119 41.7895 106.491 49.8274L102.309 62.7383C99.7021 70.8003 92.4555 76.3095 84.0638 73.2328C80.2283 71.8256 77.992 68.379 77.7921 64.4597\" stroke=\"var(--outline)\" stroke-width=\"0.889333\" stroke-miterlimit=\"10\"/><path d=\"M85.2232 12.3905C87.4523 11.9477 89.9092 11.9853 92.0133 12.784C92.965 13.1446 93.8369 13.7024 94.4722 14.5125C95.1498 15.3711 95.5527 16.4047 95.815 17.4803C95.8735 17.7128 95.6699 18.0233 95.4136 17.995C94.3151 17.8776 93.1922 18.0519 92.1246 18.3797C91.1587 18.6781 90.221 19.1047 89.317 19.5887C88.4691 20.0415 87.6633 20.5425 86.9791 21.2411C86.8457 21.376 86.6801 21.5709 86.5201 21.7664C93.2676 19.0446 102.184 19.4737 110.336 28.1776C115.353 33.5383 112.673 44.5676 110.408 48.5116C108.34 52.1158 105.431 53.16 105.431 53.16C105.436 53.1462 105.62 52.6503 106.517 49.8065C107.428 46.921 107.223 44.8577 106.828 44.1561C104.274 43.9417 101.793 38.6681 102.282 35.4334C100.278 36.467 97.0693 36.2459 91.8326 35.8231C86.8885 35.4187 81.1013 36.9798 79.4527 43.9871C79.468 43.9914 79.484 43.9954 79.4996 43.9998C79.4909 44.0459 77.8192 52.8873 79.7935 54.9198C83.3863 58.6148 91.2989 57.4127 94.0006 57.4989C94.1058 57.5021 94.2548 57.4978 94.4097 57.495L94.4742 57.2996L95.3277 57.5467L94.6295 59.6971L97.8765 60.7547L101.515 49.533L102.37 49.7801L99.5074 58.6034C99.8367 58.7463 100.195 59.056 100.685 59.6444C101.521 60.6526 102.588 61.0952 103.208 61.2743L103.21 61.2694C103.488 61.3561 103.629 61.667 103.533 61.9637C99.9232 72.4064 92.8896 76.5763 83.6744 73.9159C76.2672 71.7769 74.1678 64.8998 73.9556 60.1161L71.7213 67.1532C71.3525 67.7126 70.0905 71.9973 69.6881 72.536C68.7916 72.5563 71.2551 66.5553 70.8951 66.8348C70.3404 66.8474 69.4759 66.6573 68.6763 66.8856C67.2896 66.9171 66.6028 66.8908 65.3424 67.2987C62.7984 68.1138 62.8617 68.5239 60.316 69.3446C54.7108 72.8526 57.1034 81.1978 54.5543 81.9579C53.4462 82.2857 50.8903 85.4264 49.2066 86.5995C48.6423 87.1795 48.6507 87.6448 48.0777 87.7791C47.3429 87.9491 48.5089 88.4276 47.7847 88.6366C47.4918 88.7234 46.9375 89.5069 45.5562 89.2547C44.1187 88.9922 44.1841 88.4345 43.6295 88.4471C43.392 88.4525 43.2391 88.4245 43.1666 88.4051C43.1732 88.442 42.6468 88.4883 42.5201 88.4725C41.4128 88.3464 41.1391 87.6888 40.5299 86.7967C39.9647 85.9656 39.5589 84.9608 39.4791 83.9276C39.4138 83.0479 39.6583 82.1704 40.0142 81.3622C40.4156 80.4478 40.9721 79.5908 41.6529 78.867C41.686 78.8352 41.7206 78.7978 41.7554 78.7606C41.6204 78.0275 41.6819 77.2035 41.7838 76.5409C42.1828 73.9888 43.3563 71.6846 45.2926 69.9539C46.3185 69.0341 47.4834 68.2749 48.7066 67.6766C49.1919 67.4386 49.6951 67.2359 50.2105 67.1024C50.1145 65.8671 50.2941 64.6176 50.7701 63.4149C51.424 61.7631 52.5578 60.3431 53.8199 59.117C56.2338 56.7755 59.1268 55.0301 61.8804 53.16C63.3323 52.1698 64.5538 51.0333 65.5924 49.5858C66.6188 48.1582 67.4067 46.5574 68.0836 44.9422C68.7864 43.2634 69.3508 41.5315 69.8922 39.7987C70.4702 37.969 70.9793 36.1004 71.733 34.3348C72.3784 32.818 73.2912 31.4584 74.3092 30.1659C74.6292 29.7592 75.0981 29.1575 75.6304 28.7362C75.3871 28.2516 75.2366 27.7105 75.151 27.1473C74.946 25.8199 74.9555 24.4187 75.1715 23.0731C75.612 20.2825 76.9964 17.4977 79.0601 15.5301C80.7704 13.8936 82.9627 12.8418 85.2232 12.3905Z\" fill=\"var(--outline)\"/><path d=\"M102.617 53.5682C102.761 53.1289 103.216 52.8687 103.631 52.9881C104.047 53.1081 104.267 53.5631 104.124 54.0028C103.98 54.4426 103.526 54.7021 103.11 54.5829C102.694 54.4628 102.473 54.0083 102.617 53.5682Z\" fill=\"var(--outline)\"/><path d=\"M104.6 48.9266C105.282 49.548 105.767 50.3636 105.986 51.287L105.548 51.3973L105.111 51.5086C104.931 50.751 104.534 50.0864 103.978 49.5799L104.6 48.9266Z\" fill=\"var(--outline)\"/><path d=\"M92.5836 50.4295C92.7279 49.9902 93.1817 49.7301 93.5972 49.8495C94.0127 49.9693 94.2336 50.4234 94.0904 50.8631C93.9464 51.3032 93.4917 51.5629 93.0758 51.4432C92.6603 51.3231 92.4399 50.8694 92.5836 50.4295Z\" fill=\"var(--outline)\"/><path d=\"M92.9654 45.6454C94.3242 45.4626 95.7157 45.4462 97.0523 45.6922L96.8736 46.5594C95.6508 46.3344 94.3578 46.3453 93.0709 46.5184L92.9654 45.6454Z\" fill=\"var(--outline)\"/><path d=\"M80.4392 62.3157C80.325 64.1503 81.8462 66.0289 83.2968 66.1236\" stroke=\"var(--skin)\" stroke-width=\"0.889333\" stroke-miterlimit=\"10\"/><path d=\"M77.0157 45.6975L77.572 43.9782C77.0122 43.1778 76.2288 42.6789 75.3207 42.6365C73.3174 42.5454 71.4746 44.7371 71.2006 47.5305C70.9266 50.324 72.3286 52.6623 74.3301 52.759C74.4593 52.7666 74.5921 52.7632 74.7232 52.7473L77.0035 45.6999\" fill=\"var(--skin)\"/><path d=\"M77.0157 45.6975L77.572 43.9782C77.0122 43.1778 76.2288 42.6789 75.3207 42.6365C73.3174 42.5454 71.4746 44.7371 71.2006 47.5305C70.9266 50.324 72.3286 52.6623 74.3301 52.759C74.4593 52.7666 74.5921 52.7632 74.7232 52.7473L77.0035 45.6999\" stroke=\"var(--outline)\" stroke-width=\"0.889333\" stroke-miterlimit=\"10\"/></svg>", "identity-verification-scan-04-1": "<svg width=\"342\" height=\"176\" viewBox=\"0 0 342 176\" fill=\"none\"><style> svg { --dialog: #CBD7C6; --dialog-header: #B8C9B2; --dialog-controls: #9FB596; --sign: #F9FBF8; --sign-outline: #CBD7C6; --outline: #282828; --skin: #FFF4EC; --fabric: #686868; --device: #C9C9C9; --bag: #282828; } svg[data-theme=\"dark\"] { --dialog: #515E51; --dialog-header: #5F705C; --dialog-controls: #73896C; --sign: #313C34; --sign-outline: #515E51; --outline: #141414; --skin: #FFF4EC; --fabric: #686868; --device: #949494; --bag: #141414; }</style><rect x=\"62\" y=\"36\" width=\"218\" height=\"103\" fill=\"var(--dialog)\"/><path d=\"M62 36L280 36V52H62V36Z\" fill=\"var(--dialog-header)\"/><path d=\"M71.6816 41C73.2787 41.0001 74.5732 42.2955 74.5732 43.8926C74.5731 45.4895 73.2786 46.7841 71.6816 46.7842C70.0846 46.7842 68.7902 45.4896 68.79 43.8926C68.79 42.2954 70.0845 41 71.6816 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M80.2305 41C81.8276 41 83.123 42.2954 83.123 43.8926C83.1229 45.4896 81.8275 46.7842 80.2305 46.7842C78.6336 46.784 77.339 45.4895 77.3389 43.8926C77.3389 42.2955 78.6335 41.0002 80.2305 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M88.7803 41C90.3773 41.0001 91.6719 42.2955 91.6719 43.8926C91.6717 45.4895 90.3773 46.7841 88.7803 46.7842C87.1832 46.7842 85.8888 45.4896 85.8887 43.8926C85.8887 42.2954 87.1831 41 88.7803 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M305.115 14.3398V63.8242H282.773V90.8164H172.446V14.3398H305.115Z\" fill=\"var(--sign)\" stroke=\"var(--sign-outline)\" stroke-width=\"2\"/><path d=\"M223.95 25.3761V79.3937H184.666V25.3761H223.95ZM270.384 59.0177V66.6241H234.784V59.0177H270.384ZM292.338 43.4171V50.963H234.784V43.4171H292.338ZM292.338 27.2853V35.0997H234.784V27.2853H292.338Z\" fill=\"var(--sign-outline)\" stroke=\"var(--sign-outline)\" stroke-width=\"0.251471\"/><path d=\"M281.773 62.8242V90.7375L299.451 100.042L317.129 90.7375V62.8242H281.773Z\" fill=\"var(--sign)\" stroke=\"var(--sign-outline)\" stroke-width=\"2\"/><path d=\"M291.077 80.5027L297.59 86.0854L308.756 72.1288\" stroke=\"var(--sign-outline)\" stroke-width=\"2.26324\"/><path d=\"M66.3311 90.353C63.6599 108.421 61.1894 126.958 60.3864 133.84C59.5889 140.722 62.9572 143.95 68.7179 144.514H82.0183L83.0054 90.353H66.3255H66.3311Z\" fill=\"var(--bag)\"/><path d=\"M26.3029 16.5837C25.4552 21.7254 26.1244 25.986 29.2641 27.6479C29.2641 33.3584 29.6545 40.965 29.6545 40.965L42.4418 36.0296C42.4418 36.0296 41.8339 27.7538 43.0552 25.9916C44.165 24.3855 45.3696 21.363 45.3696 19.3554\" fill=\"var(--skin)\"/><path d=\"M26.3029 16.5837C25.4552 21.7254 26.1244 25.986 29.2641 27.6479C29.2641 33.3584 29.6545 40.965 29.6545 40.965L42.4418 36.0296C42.4418 36.0296 41.8339 27.7538 43.0552 25.9916C44.165 24.3855 45.3696 21.363 45.3696 19.3554\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M38.8718 8.18919C38.9833 6.19832 37.9907 5.63507 36.3288 5.63507C34.8566 5.63507 33.4234 6.81733 33.3174 8.60744C33.2115 10.3976 33.5349 14.8478 33.6409 15.8125C33.7468 16.7773 35.0685 17.887 36.5798 17.8926C38.2137 17.8982 38.8383 16.7271 38.8049 15.1824C38.7714 13.6376 38.8774 8.18919 38.8774 8.18919H38.8718Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M38.5986 8.38115C38.487 6.39027 39.8199 5.82703 41.4817 5.82703C42.954 5.82703 44.047 7.00928 44.1529 8.7994C44.2589 10.5895 43.9355 15.0397 43.8295 16.0045C43.7235 16.9692 42.4019 18.079 40.8906 18.0846C39.2566 18.0902 38.632 16.9191 38.6655 15.3743C38.6989 13.8296 38.593 8.38115 38.593 8.38115H38.5986Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M33.1728 8.18352C32.9386 6.82281 32.2861 5.84689 30.9087 5.77997C29.5313 5.71305 28.1928 6.76147 28.0925 8.46236C27.9921 10.1632 28.2932 14.3792 28.3936 15.2994C28.494 16.2195 29.732 17.2679 31.1485 17.2735C32.6821 17.2791 33.2621 16.1638 33.2286 14.7027C33.1951 13.2416 33.1673 8.1891 33.1673 8.1891L33.1728 8.18352Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M28.0712 8.90416C27.8704 7.69402 27.4745 6.93001 26.3034 6.86867C25.1323 6.80733 23.7325 7.74978 23.6489 9.26107C23.5652 10.7723 23.8217 14.5199 23.9054 15.3341C23.989 16.1483 25.043 17.0796 26.242 17.0852C27.5414 17.0852 28.0377 16.1037 28.0098 14.7987C27.982 13.4938 28.0656 8.90416 28.0656 8.90416H28.0712Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M31.2772 25.987C31.188 22.6298 36.0007 21.0851 37.1495 21.0014C34.679 20.2597 34.5005 19.373 33.7533 19.1723C33.0004 18.9715 29.2808 19.228 29.2808 16.8747C29.2808 13.8967 31.6787 14.3819 35.5155 14.3373C39.3578 14.2927 43.5459 14.0752 44.9178 16.7185C46.2841 19.3674 44.8955 21.9773 44.6055 22.9198\" fill=\"var(--skin)\"/><path d=\"M31.2772 25.987C31.188 22.6298 36.0007 21.0851 37.1495 21.0014C34.679 20.2597 34.5005 19.373 33.7533 19.1723C33.0004 18.9715 29.2808 19.228 29.2808 16.8747C29.2808 13.8967 31.6787 14.3819 35.5155 14.3373C39.3578 14.2927 43.5459 14.0752 44.9178 16.7185C46.2841 19.3674 44.8955 21.9773 44.6055 22.9198\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-linejoin=\"bevel\"/><path d=\"M139.635 74.7166C130.941 66.9706 118.282 64.9128 113.419 64.2938C110.229 63.8867 80.7282 63.4183 80.7282 63.4183L48.9523 61.1541C48.9523 61.1541 43.515 37.9105 42.4666 31.4862L27.0359 40.091C27.0359 40.091 30.3652 70.668 31.4192 74.7166C32.4732 78.7653 36.8564 80.5164 41.9368 82.6188C47.0227 84.7212 75.949 94.3633 77.7056 95.2444C77.7056 99.2596 74.6162 143.031 74.0975 150.32C74.0585 150.877 74.499 151.346 75.0567 151.346H138.017C141.525 151.346 146.611 150.292 145.379 147.135C144.152 143.979 139.679 108.199 139.679 108.199\" fill=\"var(--fabric)\"/><path d=\"M139.635 74.7166C130.941 66.9706 118.282 64.9128 113.419 64.2938C110.229 63.8867 80.7282 63.4183 80.7282 63.4183L48.9523 61.1541C48.9523 61.1541 43.515 37.9105 42.4666 31.4862L27.0359 40.091C27.0359 40.091 30.3652 70.668 31.4192 74.7166C32.4732 78.7653 36.8564 80.5164 41.9368 82.6188C47.0227 84.7212 75.949 94.3633 77.7056 95.2444C77.7056 99.2596 74.6162 143.031 74.0975 150.32C74.0585 150.877 74.499 151.346 75.0567 151.346H138.017C141.525 151.346 146.611 150.292 145.379 147.135C144.152 143.979 139.679 108.199 139.679 108.199\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M118.066 50.4628C122.64 50.4628 126.347 46.0235 126.347 40.5475C126.347 35.0714 122.64 30.6321 118.066 30.6321C113.492 30.6321 109.785 35.0714 109.785 40.5475C109.785 46.0235 113.492 50.4628 118.066 50.4628Z\" fill=\"var(--fabric)\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M121.125 34.53C121.152 38.1604 123.288 50.6578 124.197 53.184C125.106 55.7102 126.723 58.5655 125.235 58.8053C123.746 59.0451 122.312 58.8053 120.483 57.8963C119.948 59.1343 118.754 60.127 116.401 59.363C114.048 58.599 93.9214 55.1191 93.9214 55.1191C93.9214 55.1191 89.8728 58.3424 87.0454 57.5896C85.6122 58.7941 84.0396 57.9799 83.348 57.149C82.0152 57.8238 79.7288 58.019 80.2307 56.1396C80.7326 54.2603 79.963 35.1657 81.3349 27.9941\" fill=\"#D4D1CF\"/><path d=\"M121.125 34.53C121.152 38.1604 123.288 50.6578 124.197 53.184C125.106 55.7102 126.723 58.5655 125.235 58.8053C123.746 59.0451 122.312 58.8053 120.483 57.8963C119.948 59.1343 118.754 60.127 116.401 59.363C114.048 58.599 93.9214 55.1191 93.9214 55.1191C93.9214 55.1191 89.8728 58.3424 87.0454 57.5896C85.6122 58.7941 84.0396 57.9799 83.348 57.149C82.0152 57.8238 79.7288 58.019 80.2307 56.1396C80.7326 54.2603 79.963 35.1657 81.3349 27.9941\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-linejoin=\"round\"/><path d=\"M109.064 60.1147L108.897 65.5743C111.707 66.2323 116.537 68.3626 116.76 71.0729C117.2 76.3986 91.2909 76.3596 89.183 67.7826C88.8316 66.3439 90.1533 65.0333 91.9992 65.0333C92.2948 56.0047 92.6294 41.6782 92.6294 41.6782\" fill=\"var(--skin)\"/><path d=\"M109.064 60.1147L108.897 65.5743C111.707 66.2323 116.537 68.3626 116.76 71.0729C117.2 76.3986 91.2909 76.3596 89.183 67.7827C88.8316 66.3439 90.1533 65.0333 91.9992 65.0333C92.2948 56.0047 92.6294 41.6782 92.6294 41.6782\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M98.3979 54.2416C99.7698 57.9222 103.049 60.6659 107.321 61.073C116.678 61.9709 122.316 54.9721 122.534 46.6629L122.885 33.3569C123.13 25.0699 116.606 18.1548 108.319 17.9095C100.032 17.6641 93.1168 24.1888 92.8714 32.4758L92.6316 41.6717\" fill=\"var(--skin)\"/><path d=\"M98.3979 54.2416C99.7698 57.9222 103.049 60.6659 107.321 61.073C116.678 61.9709 122.316 54.9721 122.534 46.6629L122.885 33.3569C123.13 25.0699 116.606 18.1548 108.319 17.9095C100.032 17.6641 93.1168 24.1888 92.8714 32.4758L92.6316 41.6717\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M120.218 41.7156C120.667 41.7156 121.032 41.3511 121.032 40.9014C121.032 40.4518 120.667 40.0872 120.218 40.0872C119.768 40.0872 119.404 40.4518 119.404 40.9014C119.404 41.3511 119.768 41.7156 120.218 41.7156Z\" fill=\"var(--outline)\"/><path d=\"M103.437 52.5048C103.88 54.2595 105.628 55.266 107.498 55.3026L107.48 56.1923C105.357 56.1506 103.145 54.9928 102.573 52.7216L103.437 52.5048Z\" fill=\"var(--outline)\"/><path d=\"M118.039 39.41L116.812 49.8944L116.756 50.3661L112.224 49.5321L112.294 49.1014L112.506 47.8124L113.385 47.9569L113.244 48.8143L115.983 49.3182L117.155 39.3065L118.039 39.41Z\" fill=\"var(--outline)\"/><path d=\"M109.635 40.2382C110.085 40.2382 110.45 40.6021 110.45 41.0516C110.45 41.5013 110.085 41.8661 109.635 41.8661C109.186 41.866 108.822 41.5012 108.822 41.0516C108.822 40.6022 109.186 40.2383 109.635 40.2382Z\" fill=\"var(--outline)\"/><path d=\"M119.814 35.8759C120.693 36.2602 121.44 36.8786 121.968 37.6708L121.228 38.1649C120.797 37.5185 120.184 37.0105 119.457 36.6923L119.814 35.8759Z\" fill=\"var(--outline)\"/><path d=\"M111.754 36.0907C110.489 36.2355 109.237 36.6006 108.043 37.1161L107.69 36.2997C108.95 35.7557 110.286 35.3623 111.653 35.2059L111.754 36.0907Z\" fill=\"var(--outline)\"/><path d=\"M108.895 65.5756L108.828 68.3639\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M80.8481 33.2132L81.3947 27.4469C81.7014 23.4931 85.3206 14.0629 92.7042 10.7392C100.082 7.4155 108.28 7.14224 115 9.4008C121.714 11.6649 126.856 16.0482 128.941 21.5357C129.968 24.2292 130.732 27.2852 130.944 29.7668C131.077 31.345 129.382 30.0457 129.611 30.5699C130.09 31.6964 129.945 32.3823 129.655 32.4994C128.73 32.8675 126.332 30.6591 123.828 29.1478C125.121 30.6424 124.575 31.6796 123.828 31.78C123.08 31.8804 113.728 27.4079 110.326 25.9524C111.76 27.1347 110.806 28.5679 109.975 28.4117C108.665 28.1663 98.8274 24.2013 97.1153 23.666C98.4203 24.6753 98.9835 25.5732 98.8776 26.6718C98.7716 27.7704 97.6061 33.8099 97.0261 36.0239C96.4461 38.2378 92.6986 36.5983 91.3323 36.18\" fill=\"#D4D1CF\"/><path d=\"M80.8481 33.2132L81.3947 27.4469C81.7014 23.4931 85.3206 14.0629 92.7042 10.7392C100.082 7.4155 108.28 7.14224 115 9.4008C121.714 11.6649 126.856 16.0482 128.941 21.5357C129.968 24.2292 130.732 27.2852 130.944 29.7668C131.077 31.345 129.382 30.0457 129.611 30.5699C130.09 31.6964 129.945 32.3823 129.655 32.4994C128.73 32.8675 126.332 30.6591 123.828 29.1478C125.121 30.6424 124.575 31.6797 123.828 31.78C123.08 31.8804 113.728 27.4079 110.327 25.9524C111.76 27.1347 110.806 28.5679 109.975 28.4117C108.665 28.1663 98.8274 24.2013 97.1153 23.666C98.4203 24.6753 98.9835 25.5732 98.8776 26.6718C98.7716 27.7704 97.6061 33.8099 97.0261 36.0239C96.4461 38.2378 92.6986 36.5983 91.3323 36.18\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-linejoin=\"round\"/><path d=\"M93.5414 43.631C93.1398 43.9991 92.6602 44.25 92.1249 44.356C90.0894 44.7631 87.9926 42.867 87.4405 40.1233C86.894 37.3795 88.0985 34.8198 90.1396 34.4127C91.4836 34.1451 93.0841 34.7362 93.7867 36.1917C94.1994 37.0449 94.1381 38.0153 94.1381 38.0153\" fill=\"white\"/><path d=\"M93.5414 43.631C93.1398 43.9991 92.6602 44.25 92.1249 44.356C90.0894 44.7631 87.9926 42.867 87.4405 40.1233C86.894 37.3795 88.0985 34.8198 90.1396 34.4127C91.4836 34.1451 93.0841 34.7362 93.7867 36.1917C94.1994 37.0449 94.1381 38.0153 94.1381 38.0153\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M86.4121 40.3241V24.3302C86.4121 16.0098 91.7155 6.36214 105.97 7.36036C97.9335 7.36036 93.0093 16.1604 93.0093 24.4808V40.4747\" fill=\"var(--fabric)\"/><path d=\"M86.4121 40.3241V24.3302C86.4121 16.0098 91.7155 6.36214 105.97 7.36036C97.9335 7.36036 93.0093 16.1604 93.0093 24.4808V40.4747\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M89.6093 50.4639C94.1829 50.4639 97.8906 46.0246 97.8906 40.5485C97.8906 35.0724 94.1829 30.6332 89.6093 30.6332C85.0356 30.6332 81.3279 35.0724 81.3279 40.5485C81.3279 46.0246 85.0356 50.4639 89.6093 50.4639Z\" fill=\"var(--fabric)\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M91.616 31.4854C91.4097 27.0241 91.2145 22.4847 92.3466 18.1683C93.4786 13.8519 96.1666 9.34041 100.265 7.5726\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M89.6076 30.6332C89.0611 30.6332 88.5257 30.7001 88.0071 30.8228C93.0038 31.4864 95.8646 35.7303 95.8646 40.5485C95.8646 45.3668 92.4238 49.8449 88.0071 50.2743C88.5257 50.3969 89.0611 50.4639 89.6076 50.4639C94.1805 50.4639 97.889 46.0248 97.889 40.5485C97.889 35.0722 94.1805 30.6332 89.6076 30.6332Z\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M135.817 71.8048C138.371 73.6451 141.511 75.4185 147.606 82.4451C153.701 89.4717 161.157 105.103 162.947 108.616C164.738 112.13 173.058 127.834 168.613 133.996C164.169 140.164 156.211 143.605 149.898 137.582C143.591 131.559 131.328 114.137 131.328 114.137L139.726 105.471\" fill=\"var(--fabric)\"/><path d=\"M135.817 71.8048C138.371 73.6451 141.511 75.4185 147.606 82.4451C153.701 89.4717 161.157 105.103 162.947 108.616C164.738 112.13 173.058 127.834 168.613 133.996C164.169 140.164 156.211 143.605 149.898 137.582C143.591 131.559 131.328 114.137 131.328 114.137L139.726 105.471\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M135.367 102.525L120.279 99.8429C119.752 99.7492 119.394 99.2438 119.489 98.7112L124.741 69.1663C124.835 68.6392 125.34 68.2815 125.873 68.3762L140.961 71.0584L135.367 102.525Z\" fill=\"var(--outline)\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M136.17 102.665L120.911 99.9529L126.505 68.4863L141.763 71.1987C142.197 71.2758 142.49 71.6961 142.413 72.1299L137.102 102.01C137.025 102.444 136.604 102.737 136.171 102.66L136.17 102.665Z\" fill=\"var(--device)\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M127.948 75.775L129.096 75.979C129.469 76.0453 129.825 75.7967 129.891 75.4237L130.505 71.9701C130.572 71.5971 130.323 71.241 129.95 71.1747L128.802 70.9707C128.429 70.9044 128.073 71.153 128.007 71.526L127.393 74.9796C127.327 75.3526 127.575 75.7087 127.948 75.775Z\" fill=\"var(--outline)\"/><path d=\"M141.064 79.6979C141.064 79.6979 140.188 84.6165 139.748 87.0926C136.268 90.0036 121.657 86.468 121.657 86.468L122.203 83.3952C122.203 83.3952 116.142 83.4454 117.647 90.0036C116.761 91.4201 116.761 93.1321 117.564 94.4928C116.973 95.7141 116.956 98.4132 118.105 99.3445C118.244 101.927 119.231 103.276 121.501 104.821C124.395 106.784 129.47 108.161 133.619 107.598C135.27 110.682 137.779 115.645 138.426 117.435C142.798 115.428 148.977 112.879 151.342 107.933C149.117 104.564 144.164 97.2644 144.025 93.8236C143.886 90.3828 144.025 79.6867 141.069 79.6979H141.064Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M117.648 90.0031C118.429 90.611 123.253 93.1874 123.95 93.5611M117.564 94.4901C118.16 95.3266 122.951 98.0982 123.274 98.3659M118.104 99.3451C118.913 99.992 122.66 102.351 122.66 102.351\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M168.613 133.997C164.169 140.165 156.211 143.606 149.898 137.583C143.591 131.56 131.328 114.139 131.328 114.139L146.613 98.3678L161.113 118.639L162.345 117.435\" fill=\"var(--fabric)\"/><path d=\"M168.613 133.997C164.169 140.165 156.211 143.606 149.898 137.583C143.591 131.56 131.328 114.139 131.328 114.139L146.613 98.3678L161.113 118.639L162.345 117.435\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M76.2996 109.976L71.1133 104.143C80.6494 95.6611 80.2925 72.8971 80.1587 64.3313C80.1475 63.6621 80.1364 63.0654 80.1364 62.5356C80.1364 62.1508 80.4431 61.8441 80.8279 61.8441H87.2578C87.637 61.8497 87.9437 62.1508 87.9437 62.53C87.9437 63.0208 87.9549 63.584 87.966 64.203C88.1277 74.6481 88.5125 99.1131 76.3052 109.976H76.2996Z\" fill=\"var(--bag)\"/><path d=\"M141.5 180H104.166L106.375 172.037L106.508 171.56L106.021 171.479L103.5 171.056L103.352 171.932L105.385 172.274L103.242 180H73.9995L78.5005 151.5H141.5V180Z\" fill=\"var(--outline)\"/></svg>", "identity-verification-scan-04": "<svg width=\"342\" height=\"176\" viewBox=\"0 0 342 176\" fill=\"none\"><style> svg { --dialog: #CBD7C6; --dialog-header: #B8C9B2; --sign: #F9FBF8; --sign-outline: #CBD7C6; --outline: #282828; --skin: #FFD2B2; --fabric: #686868; --device: #C9C9C9; --mouth: #FFFFFF; --card: #FFFFFF; } svg[data-theme=\"dark\"] { --dialog: #515E51; --dialog-header: #5F705C; --sign: #313C34; --sign-outline: #515E51; --outline: #141414; --skin: #FFD2B2; --fabric: #686868; --device: #949494; --mouth: #E7E4E2; --card: #E7E4E2; }</style><rect x=\"62\" y=\"36\" width=\"218\" height=\"103\" fill=\"var(--dialog)\"/><path d=\"M62 36L280 36V52H62V36Z\" fill=\"var(--dialog-header)\"/><rect x=\"19.2434\" y=\"15.8053\" width=\"132.669\" height=\"76.476\" fill=\"var(--sign)\" stroke=\"var(--sign-outline)\" stroke-width=\"2\"/><path d=\"M70.8721 80.9844H31.3359V26.7158H70.8721V80.9844Z\" fill=\"var(--sign-outline)\"/><path d=\"M117.307 60.3574V68.2158H81.4551V60.3574H117.307Z\" fill=\"var(--sign-outline)\"/><path d=\"M139.261 52.5547H81.4551V44.7568H139.261V52.5547Z\" fill=\"var(--sign-outline)\"/><path d=\"M139.261 36.6914H81.4551V28.625H139.261V36.6914Z\" fill=\"var(--sign-outline)\"/><path d=\"M130.01 63.9165V91.8297L147.689 101.134L165.367 91.8297V63.9165H130.01Z\" fill=\"var(--sign)\" stroke=\"var(--sign-outline)\" stroke-width=\"2\"/><path d=\"M139.315 81.5949L145.828 87.1775L156.993 73.2209\" stroke=\"var(--sign-outline)\" stroke-width=\"2.26324\"/><path d=\"M190.216 99.047C185.12 105.489 180.149 111.86 180.149 111.86L191.24 126.09L202.211 111.872L190.222 99.047H190.216Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-linejoin=\"bevel\"/><path d=\"M202.171 111.886C185.211 109.665 179.347 105.705 179.347 105.705C179.347 105.705 187.732 89.4653 189 85.5C191.161 78.7419 197.035 69.6971 201 67C203.048 65.6068 209.243 63.272 214.934 61.2656C221.739 58.8602 228.817 57.7409 236.032 57.7349C236.663 57.7349 257.85 58.7173 264.981 65.6893C272.113 72.6613 283.114 88.7607 283.114 88.7607C283.114 88.7607 274.911 97.2271 263.148 102.943C263.148 108.272 267.065 143.953 269.446 157.177C269.565 157.844 269.226 158.516 268.607 158.79C265.166 160.315 261.106 159.731 255.522 157.35C249.843 154.926 215.875 142.072 215.875 142.072H199.331C197.772 142.072 197.063 139.827 198.111 138.672C199.665 136.951 201.433 134.933 202.165 133.879V111.88L202.171 111.886Z\" fill=\"var(--outline)\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M215.881 142.078H228.019C228.019 142.078 237.008 142.293 252.462 140.625\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M202.171 111.886V85.1466H200.563\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M241.99 63.7659C239.067 56.6272 231.643 37.7415 231.643 37.7415L214.278 46.2555L222.571 64.8972C217.695 67.9515 214.945 71.9823 216.165 74.8283C217.672 78.347 224.678 78.7221 231.81 75.6737C238.942 72.6194 243.502 67.2906 241.996 63.7719L241.99 63.7659Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M222.571 64.8909L224.149 67.981\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M230.381 51.9459C230.333 56.2029 227.994 60.2039 223.785 62.1866C214.57 66.5389 206.253 61.4661 202.985 53.0712L197.746 39.6273C194.46 31.262 198.574 21.8132 206.938 18.5267C215.302 15.2401 227.714 11.1348 231 19.5L235.5 31L232 33.5\" fill=\"var(--skin)\"/><path d=\"M230.381 51.9459C230.333 56.2029 227.994 60.2039 223.785 62.1866C214.57 66.5389 206.253 61.4661 202.985 53.0712L197.746 39.6273C194.46 31.262 198.574 21.8132 206.938 18.5267C215.302 15.2401 227.714 11.1348 231 19.5L235.5 31L232 33.5\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M220.925 53.1246C222.093 56.1496 218.712 59.164 215.762 57.691L220.925 53.1246Z\" fill=\"var(--mouth)\" stroke=\"var(--outline)\" stroke-width=\"0.920189\" stroke-miterlimit=\"10\"/><path d=\"M210.588 53.4476L213.265 51.8842L212.788 51.0336L213.565 50.598L214.469 52.2113L210.216 54.6967L204.902 44.018L205.699 43.6215L210.588 53.4476Z\" fill=\"var(--outline)\"/><path d=\"M203.193 45.4809C203.68 45.481 204.074 45.8754 204.074 46.3617C204.074 46.8483 203.68 47.2434 203.193 47.2435C202.707 47.2435 202.312 46.8484 202.312 46.3617C202.313 45.8753 202.707 45.4809 203.193 45.4809Z\" fill=\"var(--outline)\"/><path d=\"M202.105 41.432L202.411 41.7553C201.78 42.354 201.337 43.1019 201.132 43.9271L200.269 43.7123C200.516 42.7158 201.049 41.8198 201.799 41.1088L202.105 41.432Z\" fill=\"var(--outline)\"/><path d=\"M214.046 41.7475C214.532 41.7475 214.927 42.1418 214.927 42.6283C214.927 43.115 214.532 43.5101 214.046 43.5101C213.559 43.5101 213.165 43.115 213.165 42.6283C213.165 42.1418 213.559 41.7475 214.046 41.7475Z\" fill=\"var(--outline)\"/><path d=\"M209.854 37.4506C211.303 37.1051 212.807 37.0203 214.288 37.1117L214.233 38.0004C212.822 37.9132 211.408 37.9957 210.061 38.3168L209.854 37.4506Z\" fill=\"var(--outline)\"/><path d=\"M223.9 5.21526C224.942 4.79855 226.126 5.32199 226.525 6.36956L232.378 21.6186L218.456 27.5043C218.23 26.9457 218.017 26.3612 217.822 25.7494C219.102 25.1389 219.928 24.8293 219.935 24.8266L219.566 23.9575L196.588 33.4662C196.588 33.4903 196.591 37.0325 197.428 38.8364C196.386 38.8364 195.153 37.8601 193.98 35.1987C191.397 29.3224 188.92 24.2082 187.516 21.0229C187.23 20.3799 187.539 19.6354 188.194 19.3735L223.9 5.21526Z\" fill=\"black\"/><path d=\"M236.747 33.0014L228.258 37.0326L228.264 37.0268C227.023 37.0551 225.157 36.2842 223.272 34.6098L235.398 29.4877L236.747 33.0014Z\" fill=\"black\"/><path d=\"M235.079 28.6567L222.567 33.9408C221.91 33.2763 221.261 32.4994 220.644 31.6059L234.04 25.9487L235.079 28.6567Z\" fill=\"black\"/><path d=\"M233.721 25.1166L220.145 30.851C219.668 30.0852 219.218 29.2429 218.805 28.3237L232.697 22.4506L233.721 25.1166Z\" fill=\"black\"/><path d=\"M231.441 39.3412C231.989 39.5674 232.566 39.6508 233.15 39.5615C235.376 39.2281 236.823 36.525 236.37 33.5242C235.924 30.5235 233.751 28.3563 231.524 28.6897C230.054 28.91 228.971 30.1662 228.459 31.8393C228.054 33.173 228.53 36.0427 229.108 37.0073\" fill=\"var(--skin)\"/><path d=\"M231.441 39.3412C231.989 39.5674 232.566 39.6508 233.15 39.5615C235.376 39.2281 236.823 36.525 236.37 33.5242C235.924 30.5235 233.751 28.3563 231.524 28.6897C230.054 28.91 228.971 30.1662 228.459 31.8393C228.054 33.173 228.53 36.0427 229.108 37.0073\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M172.171 99.1402L187.461 93.1566C187.998 92.9462 188.6 93.2094 188.81 93.7472L200.526 123.693C200.737 124.231 200.474 124.833 199.936 125.043L184.646 131.027L172.169 99.1346L172.171 99.1402Z\" fill=\"var(--outline)\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M171.351 99.4552L186.813 93.4044L199.29 125.297L183.829 131.347C183.385 131.521 182.884 131.302 182.71 130.858L170.862 100.574C170.689 100.13 170.908 99.6288 171.351 99.4552Z\" fill=\"var(--device)\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M184.923 96.4967L183.753 96.9545C183.376 97.1019 183.191 97.5267 183.338 97.9034L184.709 101.408C184.856 101.784 185.281 101.97 185.658 101.823L186.827 101.365C187.204 101.217 187.39 100.793 187.242 100.416L185.871 96.9119C185.724 96.5352 185.299 96.3494 184.923 96.4967Z\" fill=\"var(--outline)\"/><path d=\"M173.167 106.388L176.024 113.694C176.024 113.694 184.787 108.853 186.192 107.936C188.579 106.388 190.228 109.454 188.508 110.955C187.329 111.985 178.673 118.284 177.941 118.725C178.608 118.397 186.168 114.605 189.246 113.688C191.246 113.092 192.187 116.581 190.746 117.504C193.377 116.784 194.502 120.219 192.621 121.553C191.449 122.386 182.668 127.715 182.668 127.715C182.668 127.715 190.919 124.458 191.931 124.143C193.484 123.66 194.354 125.709 193.133 126.983C192.312 127.84 189.502 129.948 186.561 131.234C183.781 132.448 176.643 133.3 172.542 126.364C168.44 119.427 169.768 108.615 173.161 106.382L173.167 106.388Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-linejoin=\"bevel\"/><path d=\"M180.161 123.244L190.71 117.523\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M177.239 113.016L173.881 114.891\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M225.467 79.7621C227.24 80.9496 229.627 82.7399 230.885 84.7762L230.382 88.5483L222.723 82.7399L219.995 78.6653C221.08 78.5361 223.694 78.5747 225.467 79.7621Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M196.745 76.0297L217.915 66.1499C218.293 65.9738 218.741 66.1376 218.917 66.5152L225.203 79.9849C225.38 80.3624 225.217 80.8115 224.839 80.9877L203.669 90.8675C203.291 91.0437 202.842 90.8802 202.666 90.5026L196.38 77.033C196.204 76.6554 196.367 76.2059 196.745 76.0297Z\" fill=\"var(--card)\" stroke=\"var(--outline)\" stroke-width=\"1.00588\"/><path d=\"M281.305 106.025L278.287 93.0748L265.839 101.373L263.702 102.756H259.552L253.894 101.373L248.236 99.613L240.315 96.2181L236.794 94.0806L236.166 92.1946L233.777 88.4225L232.394 86.0336L230.382 84.2733L227.741 82.6387L224.724 81.2556L217.557 80.5012H213.408L211.773 80.8784L211.27 82.2615L211.522 84.0218L210.013 84.399L209.007 84.902L208.63 86.285L209.636 88.5483L209.007 90.56L209.636 92.3203L211.27 93.2005L210.767 95.0865L211.773 96.5953L220.323 99.4863L227.993 105.27L235.663 108.288L253.769 121.49C261.313 126.268 267.172 128.281 275.018 124.257C282.864 120.234 282.478 110.426 281.305 106.025Z\" fill=\"var(--skin)\"/><path d=\"M235.25 108.176C242.92 114.086 258.372 125.531 263.153 126.102C270.624 126.995 276.279 124.56 279.107 120.97C282.161 117.094 282.137 111.17 281.22 106.478C280.303 101.787 278.095 93.2606 278.095 93.2606H278.101C269.915 99.6551 263.153 103.114 263.153 103.114C263.153 103.114 250.841 102.392 236.633 94.3451\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M236.921 94.5833C236.208 92.5716 234.28 88.02 232.269 85.9076C230.257 83.7952 226.904 82.0936 225.479 81.5069L216.175 80.501C214.833 80.3752 212.025 80.3501 211.522 81.2554C211.019 82.1607 211.313 83.4768 211.522 84.0216C211.019 83.9797 209.862 84.0216 209.258 84.5246C208.504 85.1533 208.504 86.2849 208.63 86.7878C208.73 87.1902 209.426 88.129 209.762 88.5481C209.384 88.9672 209.03 89.443 208.882 90.1827C208.755 90.8113 209.091 91.943 209.762 92.4459C210.432 92.9488 211.522 93.0746 211.522 93.0746C211.522 93.0746 210.893 93.5775 210.893 94.4577C210.893 95.3378 210.893 96.5952 214.163 97.3496C216.778 97.9531 220.114 99.529 221.455 100.241C221.916 100.535 223.19 101.449 224.599 102.756C226.359 104.391 228.748 105.774 232.269 107.031C235.085 108.037 236.082 108.582 236.292 108.917\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M263.152 103.114C267.67 103.626 272.475 105.752 274.35 107.199M211.612 84.0344C213.037 84.1182 216.214 84.5877 217.522 84.7888C219.156 85.0403 225.695 86.2977 225.695 86.2977M209.852 88.6866C211.487 88.8543 215.057 89.2147 216.265 89.3153C217.472 89.4159 222.384 90.1955 224.689 90.5727M211.612 93.0874L217.145 93.9675L224.186 95.3506\" stroke=\"var(--outline)\" stroke-width=\"0.890206\" stroke-miterlimit=\"10\"/><path d=\"M265.097 142.076C265.102 142.103 268.17 157.82 271.995 176H199.421C199.84 161.515 201.796 149.724 204.735 142.076H265.097Z\" fill=\"var(--outline)\"/></svg>", "payment-complete": "<svg width=\"342\" height=\"176\" viewBox=\"0 0 342 176\" fill=\"none\"><style> svg { --dialog: #CBD7C6; --dialog-header: #B8C9B2; --dialog-controls: #9FB596; --screen: #527A42; --screen-content: #FFFFFF; --card: #ECE9E8; --card-content: #FFFFFF; --outline: #282828; --device: #686868; --skin: #FFFFFF; } svg[data-theme=\"dark\"] { --dialog: #515E51; --dialog-header: #5F705C; --dialog-controls: #73896C; --screen: #527A42; --screen-content: #E7E4E2; --card: #D4D1CF; --card-content: #E7E4E2; --outline: #141414; --device: #686868; --skin: #E7E4E2; }</style><rect x=\"62\" y=\"36\" width=\"218\" height=\"103\" fill=\"var(--dialog)\"/><path d=\"M62 36L280 36V52H62V36Z\" fill=\"var(--dialog-header)\"/><path d=\"M71.6816 41C73.2787 41.0001 74.5732 42.2955 74.5732 43.8926C74.5731 45.4895 73.2786 46.7841 71.6816 46.7842C70.0846 46.7842 68.7902 45.4896 68.79 43.8926C68.79 42.2954 70.0845 41 71.6816 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M80.2305 41C81.8276 41 83.123 42.2954 83.123 43.8926C83.1229 45.4896 81.8275 46.7842 80.2305 46.7842C78.6336 46.784 77.339 45.4895 77.3389 43.8926C77.3389 42.2955 78.6335 41.0002 80.2305 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M88.7803 41C90.3773 41.0001 91.6719 42.2955 91.6719 43.8926C91.6717 45.4895 90.3773 46.7841 88.7803 46.7842C87.1832 46.7842 85.8888 45.4896 85.8887 43.8926C85.8887 42.2954 87.1831 41 88.7803 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M209.5 29.5C205.161 23.342 195.527 16.2148 192.094 14.8911L182.911 16.5043L187.751 61.3014C188.769 63.1835 189.276 64.2438 191.722 66.0169C194.576 68.108 196.25 68.9814 199.5 69.5L202.518 85.003L205 113C209.146 117.868 212.419 119.524 220 120.5C230.607 120.689 235.514 120.094 237.5 114.5L227.46 67.7542L223.861 58.075C223.448 56.4619 221.368 51.7324 217 42.5C217 42.5 215.15 37.5187 209.5 29.5Z\" fill=\"var(--skin)\"/><path d=\"M193.914 29.0211L194.504 29.3302L194.631 29.0873L194.551 28.8251L193.914 29.0211ZM199.529 69.4913L200.175 69.3334L200.063 68.8745L199.593 68.8285L199.529 69.4913ZM204.785 112.401L204.123 112.472C204.124 112.483 204.126 112.493 204.127 112.504L204.785 112.401ZM214 119.319L213.78 119.948L214 119.319ZM232.792 119.319L232.566 118.693V118.693L232.792 119.319ZM237.387 114.727L238.041 114.6L238.04 114.598L237.387 114.727ZM203.51 22.8327L203.994 22.3751V22.3751L203.51 22.8327ZM212.941 34.6214L212.373 34.9687V34.9687L212.941 34.6214ZM220.511 49.8847L219.903 50.1571L219.904 50.158L220.511 49.8847ZM231.555 87.4845L232.21 87.3624L232.209 87.3594L231.555 87.4845ZM234.782 102.003L235.432 101.863V101.863L234.782 102.003ZM188.907 12.767L188.271 12.963L193.278 29.2171L193.914 29.0211L194.551 28.8251L189.544 12.5709L188.907 12.767ZM193.914 29.0211C193.324 28.712 193.324 28.7121 193.324 28.7122C193.324 28.7123 193.324 28.7126 193.324 28.7128C193.324 28.7133 193.323 28.7141 193.323 28.7151C193.322 28.7171 193.32 28.7201 193.318 28.7241C193.314 28.732 193.308 28.7438 193.3 28.7592C193.284 28.7902 193.26 28.8361 193.228 28.8961C193.166 29.0162 193.074 29.1927 192.957 29.4192C192.723 29.8723 192.388 30.5252 191.982 31.3258C191.171 32.9268 190.078 35.1196 188.949 37.4855C187.822 39.8504 186.657 42.3937 185.703 44.6944C184.756 46.9811 183.998 49.074 183.708 50.5201L184.361 50.6507L185.014 50.7812C185.275 49.4756 185.987 47.489 186.934 45.2042C187.875 42.9335 189.029 40.4133 190.152 38.0588C191.274 35.7052 192.362 33.5225 193.17 31.9278C193.574 31.1306 193.908 30.4807 194.141 30.0303C194.257 29.8052 194.348 29.6299 194.41 29.511C194.441 29.4516 194.464 29.4063 194.48 29.3759C194.488 29.3607 194.494 29.3492 194.498 29.3416C194.5 29.3377 194.502 29.3349 194.503 29.333C194.503 29.332 194.503 29.3313 194.504 29.3309C194.504 29.3307 194.504 29.3305 194.504 29.3304C194.504 29.3303 194.504 29.3302 193.914 29.0211ZM184.361 50.6507L183.708 50.5201C183.404 52.0404 183.602 53.96 184.191 55.9636C184.783 57.9786 185.786 60.1309 187.15 62.135C189.87 66.1323 194.092 69.6293 199.464 70.154L199.529 69.4913L199.593 68.8285C194.746 68.355 190.835 65.1834 188.251 61.3858C186.963 59.4924 186.021 57.4657 185.469 55.5881C184.914 53.6991 184.768 52.0126 185.014 50.7812L184.361 50.6507ZM204.785 112.401L205.447 112.33C204.457 103.071 204.525 87.1567 200.175 69.3334L199.529 69.4913L198.882 69.6492C203.204 87.3622 203.112 103.025 204.123 112.472L204.785 112.401ZM204.785 112.401L204.127 112.504C204.183 112.861 204.384 113.341 204.722 113.876C205.07 114.425 205.588 115.071 206.324 115.757C207.797 117.132 210.148 118.676 213.78 119.948L214 119.319L214.22 118.691C210.736 117.47 208.551 116.015 207.232 114.784C206.572 114.167 206.129 113.608 205.848 113.163C205.557 112.704 205.459 112.401 205.443 112.298L204.785 112.401ZM214 119.319L213.78 119.948C220.439 122.279 228.159 121.701 233.018 119.945L232.792 119.319L232.566 118.693C227.964 120.355 220.561 120.911 214.22 118.691L214 119.319ZM232.792 119.319L233.018 119.945C234.792 119.305 236.061 118.2 236.874 117.187C237.28 116.681 237.58 116.189 237.774 115.776C237.871 115.571 237.946 115.375 237.995 115.198C238.035 115.049 238.084 114.822 238.041 114.6L237.387 114.727L236.733 114.855C236.715 114.76 236.741 114.734 236.71 114.846C236.687 114.93 236.642 115.053 236.569 115.209C236.423 115.52 236.181 115.923 235.835 116.353C235.145 117.213 234.067 118.15 232.566 118.693L232.792 119.319ZM192.466 14.7668L192.16 15.3579C194.365 16.5013 199.626 19.6953 203.027 23.2903L203.51 22.8327L203.994 22.3751C200.446 18.6239 195.035 15.3486 192.773 14.1756L192.466 14.7668ZM203.51 22.8327L203.027 23.2903C207.358 27.8693 209.679 30.56 212.373 34.9687L212.941 34.6214L213.51 34.2742C210.744 29.7483 208.349 26.9789 203.994 22.3751L203.51 22.8327ZM212.941 34.6214L212.373 34.9687C214.531 38.4999 218.287 46.5506 219.903 50.1571L220.511 49.8847L221.119 49.6123C219.509 46.0215 215.72 37.8906 213.51 34.2742L212.941 34.6214ZM220.511 49.8847L219.904 50.158C221.771 54.3081 225.739 63.6162 226.814 67.9155L227.46 67.7539L228.106 67.5924C226.997 63.1557 222.973 53.7341 221.118 49.6115L220.511 49.8847ZM227.46 67.7539L226.814 67.9155C227.901 72.2617 229.99 82.8474 230.901 87.6097L231.555 87.4845L232.209 87.3594C231.3 82.608 229.204 71.9823 228.106 67.5924L227.46 67.7539ZM231.555 87.4845L230.901 87.6067C231.481 90.7172 233.222 97.9424 234.131 102.144L234.782 102.003L235.432 101.863C234.508 97.5874 232.787 90.4565 232.21 87.3624L231.555 87.4845ZM234.782 102.003L234.131 102.144C234.626 104.435 235.277 107.612 235.804 110.219C236.067 111.522 236.3 112.682 236.467 113.515C236.55 113.932 236.617 114.268 236.663 114.499C236.686 114.615 236.703 114.704 236.716 114.765C236.722 114.795 236.726 114.818 236.729 114.834C236.731 114.841 236.732 114.847 236.733 114.851C236.733 114.853 236.733 114.855 236.734 114.856C236.734 114.856 236.734 114.856 236.734 114.857C236.734 114.857 236.734 114.857 236.734 114.857C236.734 114.857 236.734 114.857 237.387 114.727C238.04 114.598 238.04 114.598 238.04 114.598C238.04 114.598 238.04 114.598 238.04 114.598C238.04 114.597 238.04 114.597 238.04 114.596C238.04 114.595 238.039 114.594 238.039 114.592C238.038 114.588 238.037 114.582 238.036 114.574C238.032 114.559 238.028 114.536 238.022 114.505C238.01 114.444 237.992 114.355 237.969 114.239C237.923 114.008 237.856 113.672 237.773 113.254C237.606 112.42 237.373 111.259 237.109 109.955C236.582 107.348 235.93 104.163 235.432 101.863L234.782 102.003Z\" fill=\"var(--outline)\"/><path d=\"M180.225 44.9167C178.172 45.5055 177.783 46.9236 179.621 51.9355C181.459 56.9474 183.112 60.0139 184.234 61.4627C185.355 62.9115 188.089 62.7989 188.314 59.6811C188.539 56.5634 187.587 53.6402 187.587 53.6402L180.225 44.9167Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M180.681 35.39C178.956 36.2808 177.056 37.7859 177.671 41.5743C178.285 45.3626 181.439 49.7397 183.077 52.5145C184.715 55.2892 187.091 57.68 189.205 56.0622C191.319 54.4445 190.71 51.0452 190.321 49.3199C189.932 47.5947 180.681 35.39 180.681 35.39Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M180.681 33.6029C179.964 34.8572 178.955 35.9425 181.408 39.8998C183.86 43.8571 189.379 49.8161 191.216 51.6028C193.054 53.3895 194.948 53.7785 195.952 51.8792C196.955 49.9799 196.73 45.8844 195.45 43.6984C194.17 41.5124 184.367 30.5364 184.367 30.5364L180.686 33.6029H180.681Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M152.416 38.5789C151.679 38.5789 147.421 39.5848 147.173 36.2344L138.158 12.7209C137.953 12.1885 136.253 9.30644 142.83 9.30644L187.846 6.00512C187.898 6.00512 187.949 6 188 6C188.737 6 189.234 6.30887 189.5 6.99999L199.267 32.5508C199.472 33.0832 199.28 33.3673 198.978 33.8485C198.676 34.3297 198.174 34.6369 197.606 34.6881L152.565 38.5737C152.514 38.5737 152.463 38.5789 152.411 38.5789H152.416Z\" fill=\"var(--card)\"/><path d=\"M209.135 33.3012C207.071 30.9923 193.06 24.7313 190.254 23.0828C187.449 21.4344 183.609 19.7501 181.782 22.489C179.954 25.2279 180.189 27.634 186.548 34.0179C192.901 40.4018 197.677 45.9922 197.677 45.9922C197.677 45.9922 197.432 58.5297 206.58 59.4409\" fill=\"var(--skin)\"/><path d=\"M209.135 33.3012C207.071 30.9923 193.06 24.7313 190.254 23.0828C187.449 21.4344 183.609 19.7501 181.782 22.489C179.954 25.2279 180.189 27.634 186.548 34.0179C192.901 40.4018 197.677 45.9922 197.677 45.9922C197.677 45.9922 197.432 58.5297 206.58 59.4409\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M187.951 5.2551C188.906 5.18066 189.795 5.74581 190.134 6.64181L197.433 25.9475L196.81 26.1828L196.187 26.4192L192.243 15.9856L192.154 15.9944L141.3 19.9055L147.875 37.0002C148.163 37.7492 148.909 38.2208 149.709 38.1594L188.197 35.1985L188.298 36.5266L149.812 39.4865C148.425 39.5932 147.132 38.7772 146.632 37.4787L137.083 12.6506C136.447 10.9956 137.583 9.19442 139.351 9.05588L187.951 5.2551ZM139.455 10.384C138.575 10.4528 138.01 11.3493 138.327 12.1731L139.857 16.1526L139.846 16.0061L190.769 12.0881L188.888 7.11252C188.759 6.77047 188.419 6.55482 188.054 6.58322L139.455 10.384Z\" fill=\"var(--outline)\"/><path d=\"M177.447 26.8662L147.946 29.1523L146 24.2861L175.5 22L177.447 26.8662Z\" fill=\"var(--card-content)\"/><path d=\"M104.361 135.765C109.811 130.261 113.5 126.5 117 121L118 92.9999L117.5 83.4999C117 79.9999 121 78.9999 123 81.9999L134.143 112.064L163.553 79.3037L167.152 77.1941L169.634 77.8146L171.371 81.0409L170.75 84.2673L166.904 89.8515L156.48 126.955L118.5 165L114.909 169C107.961 171.17 103.525 169.956 95.0001 165C87.3537 157.937 85.1245 154.508 86.6162 149.788L104.361 135.765Z\" fill=\"var(--skin)\"/><path d=\"M159.075 83.0486C161.696 80.6322 164.195 78.2978 164.727 77.5196C166.458 75.006 164.077 69.221 160.586 70.8797C157.97 72.1238 154.36 75.1698 154.36 75.1698L159.075 83.0486Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M87.3057 149.438L87.727 149.953C87.7369 149.945 87.7467 149.937 87.7561 149.928L87.3057 149.438ZM87.4549 156.957L88.0292 156.62V156.62L87.4549 156.957ZM101.831 168.624L102.056 167.998L101.831 168.624ZM114.964 168.738L115.379 169.259C115.399 169.243 115.418 169.226 115.435 169.208L114.964 168.738ZM117.019 120.998L117.598 121.327C117.65 121.235 117.68 121.132 117.684 121.026L117.019 120.998ZM165.311 78.0037L165.755 78.4996L165.756 78.4995L165.311 78.0037ZM169.954 85.5446L170.491 85.9383L170.491 85.9382L169.954 85.5446ZM161.21 99.0752L160.637 98.7371L160.499 98.97L160.563 99.2327L161.21 99.0752ZM165.188 115.416L165.825 115.609L165.878 115.435L165.835 115.259L165.188 115.416ZM160.463 123.08L160.935 123.55L160.942 123.543L160.948 123.536L160.463 123.08ZM87.3057 149.438L86.8844 148.922C85.7357 149.86 85.33 151.283 85.403 152.758C85.4759 154.231 86.0236 155.833 86.8806 157.294L87.4549 156.957L88.0292 156.62C87.2528 155.297 86.793 153.902 86.7331 152.692C86.6734 151.485 87.0098 150.539 87.727 149.953L87.3057 149.438ZM87.4549 156.957L86.8806 157.294C89.1927 161.233 94.415 166.664 101.605 169.251L101.831 168.624L102.056 167.998C95.2006 165.531 90.2076 160.331 88.0292 156.62L87.4549 156.957ZM101.831 168.624L101.605 169.251C104.191 170.181 106.93 170.718 109.355 170.767C111.751 170.815 113.964 170.389 115.379 169.259L114.964 168.738L114.548 168.218C113.499 169.056 111.672 169.482 109.382 169.435C107.12 169.39 104.524 168.886 102.056 167.998L101.831 168.624ZM87.3057 149.438L87.7561 149.928C88.6322 149.123 90.4875 147.696 92.9369 145.783C95.3691 143.884 98.3507 141.534 101.431 138.915C107.573 133.695 114.181 127.348 117.598 121.327L117.019 120.998L116.44 120.67C113.15 126.468 106.705 132.684 100.569 137.9C97.5101 140.5 94.5464 142.837 92.1172 144.734C89.7051 146.617 87.7828 148.095 86.8552 148.947L87.3057 149.438ZM145 102C145.523 102.413 145.523 102.413 145.523 102.413C145.523 102.413 145.523 102.413 145.523 102.412C145.523 102.412 145.524 102.411 145.525 102.41C145.526 102.409 145.528 102.406 145.531 102.402C145.537 102.395 145.545 102.384 145.557 102.37C145.579 102.341 145.613 102.299 145.657 102.243C145.745 102.133 145.874 101.969 146.039 101.761C146.369 101.343 146.844 100.743 147.423 100.013C148.579 98.5525 150.149 96.5713 151.8 94.4886C155.104 90.3217 158.733 85.7527 160.044 84.1303L159.526 83.7118L159.008 83.2933C157.693 84.9217 154.059 89.4968 150.757 93.6612C149.105 95.7441 147.535 97.7255 146.379 99.1861C145.8 99.9164 145.325 100.517 144.995 100.934C144.829 101.143 144.7 101.306 144.612 101.417C144.569 101.472 144.535 101.515 144.512 101.543C144.501 101.558 144.493 101.568 144.487 101.576C144.484 101.579 144.482 101.582 144.48 101.584C144.48 101.585 144.479 101.586 144.479 101.586C144.479 101.586 144.478 101.586 144.478 101.586C144.478 101.587 144.478 101.587 145 102ZM159.526 83.7118L160.044 84.1303C162.626 80.9345 163.946 80.121 165.755 78.4996L165.311 78.0037L164.867 77.5077C163.134 79.0603 161.679 79.9875 159.008 83.2933L159.526 83.7118ZM165.311 78.0037L165.756 78.4995C166.433 77.8919 167.162 77.7348 167.836 77.8641C168.53 77.997 169.221 78.4458 169.745 79.1459C170.78 80.527 171.115 82.8339 169.417 85.1509L169.954 85.5446L170.491 85.9382C172.53 83.1563 172.203 80.2055 170.811 78.3474C170.122 77.4278 169.159 76.7615 168.087 76.5561C166.996 76.347 165.847 76.6283 164.866 77.5079L165.311 78.0037ZM169.954 85.5446L169.417 85.1508C167.439 87.8486 165.243 91.2481 163.545 93.9651C162.695 95.3253 161.969 96.5176 161.454 97.37C161.197 97.7963 160.993 98.1376 160.853 98.3726C160.783 98.4901 160.729 98.581 160.692 98.6427C160.674 98.6735 160.66 98.697 160.651 98.7129C160.646 98.7208 160.643 98.7268 160.64 98.7309C160.639 98.7329 160.638 98.7344 160.638 98.7355C160.637 98.736 160.637 98.7364 160.637 98.7367C160.637 98.7368 160.637 98.7369 160.637 98.737C160.637 98.7371 160.637 98.7371 161.21 99.0752C161.784 99.4132 161.784 99.4132 161.784 99.4132C161.784 99.4131 161.784 99.413 161.784 99.4129C161.784 99.4127 161.785 99.4124 161.785 99.4119C161.785 99.411 161.786 99.4095 161.787 99.4076C161.79 99.4038 161.793 99.398 161.798 99.3903C161.807 99.3748 161.82 99.3518 161.838 99.3214C161.874 99.2607 161.928 99.1707 161.997 99.0542C162.136 98.8212 162.339 98.482 162.595 98.0581C163.106 97.2102 163.829 96.0239 164.675 94.6708C166.367 91.9612 168.543 88.5954 170.491 85.9383L169.954 85.5446ZM161.21 99.0752L160.563 99.2327L164.541 115.574L165.188 115.416L165.835 115.259L161.857 98.9177L161.21 99.0752ZM165.188 115.416C164.551 115.223 164.551 115.223 164.551 115.223C164.551 115.223 164.551 115.223 164.551 115.223C164.551 115.223 164.551 115.223 164.551 115.223C164.551 115.223 164.551 115.223 164.551 115.223C164.551 115.224 164.55 115.226 164.549 115.229C164.547 115.234 164.544 115.244 164.54 115.256C164.532 115.282 164.519 115.321 164.501 115.374C164.465 115.479 164.408 115.637 164.329 115.84C164.17 116.245 163.921 116.828 163.563 117.528C162.847 118.93 161.699 120.791 159.977 122.624L160.463 123.08L160.948 123.536C162.774 121.592 163.989 119.621 164.749 118.134C165.129 117.391 165.396 116.767 165.569 116.325C165.655 116.105 165.718 115.929 165.76 115.807C165.781 115.747 165.797 115.699 165.808 115.666C165.813 115.649 165.817 115.636 165.82 115.626C165.822 115.622 165.823 115.618 165.824 115.615C165.824 115.614 165.824 115.613 165.825 115.612C165.825 115.611 165.825 115.611 165.825 115.61C165.825 115.61 165.825 115.61 165.825 115.61C165.825 115.61 165.825 115.609 165.188 115.416ZM160.463 123.08L159.991 122.61L114.492 168.268L114.964 168.738L115.435 169.208L160.935 123.55L160.463 123.08ZM117.019 120.998C117.684 121.026 117.684 121.026 117.684 121.026C117.684 121.026 117.684 121.026 117.684 121.025C117.685 121.025 117.685 121.023 117.685 121.022C117.685 121.019 117.685 121.015 117.685 121.009C117.686 120.998 117.686 120.982 117.687 120.96C117.689 120.915 117.692 120.85 117.695 120.765C117.702 120.594 117.713 120.342 117.726 120.021C117.753 119.38 117.791 118.458 117.837 117.341C117.928 115.107 118.049 112.09 118.171 108.957C118.414 102.701 118.658 95.9558 118.658 94.0885H117.992H117.326C117.326 95.9225 117.084 102.632 116.84 108.906C116.719 112.037 116.597 115.054 116.506 117.287C116.46 118.404 116.422 119.325 116.396 119.966C116.382 120.287 116.372 120.538 116.365 120.709C116.361 120.795 116.358 120.86 116.357 120.904C116.356 120.926 116.355 120.943 116.354 120.954C116.354 120.959 116.354 120.963 116.354 120.966C116.354 120.968 116.354 120.969 116.354 120.969C116.354 120.97 116.354 120.97 116.354 120.97C116.354 120.97 116.354 120.97 117.019 120.998ZM117.992 94.0885H118.658C118.658 89.9807 118.215 86.7393 118.1 84.5555C118.04 83.4305 118.067 82.6101 118.231 82.0161C118.382 81.4639 118.639 81.1427 119.069 80.9402L118.786 80.3377L118.502 79.7352C117.66 80.1317 117.182 80.805 116.946 81.6635C116.722 82.4802 116.71 83.4868 116.77 84.6258C116.894 86.9702 117.326 90.0052 117.326 94.0885H117.992ZM118.786 80.3377L119.069 80.9402C119.624 80.6791 120.084 80.6012 120.48 80.6517C120.87 80.7016 121.263 80.8851 121.672 81.264C122.522 82.0512 123.356 83.6002 124.206 86.111L124.837 85.8974L125.468 85.6838C124.608 83.1468 123.689 81.317 122.577 80.2869C122.005 79.7571 121.364 79.4222 120.649 79.3307C119.938 79.2398 119.22 79.3974 118.502 79.7352L118.786 80.3377ZM124.837 85.8974L124.206 86.111C125.043 88.5804 125.677 91.8691 126.191 94.7617C126.446 96.1963 126.672 97.5399 126.877 98.6069C126.979 99.1417 127.078 99.6178 127.175 100.01C127.268 100.39 127.369 100.735 127.486 100.982L128.088 100.698L128.69 100.413C128.635 100.297 128.559 100.064 128.468 99.6924C128.38 99.3329 128.286 98.8828 128.185 98.3563C127.983 97.3006 127.76 95.9815 127.502 94.5287C126.99 91.6466 126.341 88.2621 125.468 85.6838L124.837 85.8974ZM128.088 100.698L127.486 100.982C128.248 102.598 134.678 111.448 133.757 121.684L134.42 121.744L135.084 121.803C136.047 111.091 129.3 101.705 128.69 100.413L128.088 100.698Z\" fill=\"var(--outline)\"/><path d=\"M140.01 129.693C139.216 129.693 138.51 129.191 138.238 128.444L117.5 65.5C117.265 64.8396 117.346 64.0973 117.725 63.5034L119 62L140 125.5C140.737 126.419 141.264 126.673 142.5 126.5L175.714 122.363L175.137 124.846C174.875 125.225 174.461 125.476 174.005 125.532L140.245 129.673C140.163 129.683 140.086 129.688 140.004 129.688L140.01 129.693Z\" fill=\"var(--device)\"/><path d=\"M175.964 121.555L175.266 124.072C175.07 124.776 174.471 125.294 173.746 125.387L140.6 129.624C139.499 129.765 138.454 129.104 138.109 128.049L117.364 64.5891C117.238 64.2047 117.34 63.7824 117.626 63.4971L119.362 61.7674L175.964 121.555Z\" stroke=\"var(--outline)\" stroke-width=\"1.33181\"/><path d=\"M141.746 126.598C140.896 126.598 140.128 126.06 139.842 125.257L119.378 62.9331C119.245 62.5542 119.291 62.1447 119.501 61.8068C119.71 61.4689 120.064 61.2488 120.463 61.2078L153.129 57.7118C153.191 57.7067 153.247 57.7015 153.309 57.7015C154.036 57.7015 154.681 58.1623 154.916 58.8534L176.21 119.882C176.405 120.46 176.328 121.085 176.001 121.597C175.673 122.109 175.135 122.442 174.531 122.508L141.961 126.583C141.889 126.593 141.961 126.583 141.746 126.593V126.598Z\" fill=\"var(--screen)\"/><path d=\"M152.71 57.87C153.778 57.7607 154.781 58.4012 155.131 59.4159L176.074 120.068C176.45 121.157 175.731 122.316 174.588 122.463L142.334 126.589C141.234 126.73 140.188 126.068 139.843 125.014L119.435 62.5858C119.223 61.9364 119.665 61.2571 120.344 61.1874L152.71 57.87Z\" stroke=\"var(--outline)\" stroke-width=\"1.33181\"/><path d=\"M143.504 91.1009L147.31 93.6429L152.334 85.5393M157.953 88.6131C158.608 94.0565 154.726 99.0001 149.283 99.6549C143.839 100.31 138.895 96.4276 138.241 90.9841C137.586 85.5406 141.468 80.597 146.911 79.9423C152.355 79.2875 157.299 83.1696 157.953 88.6131Z\" stroke=\"var(--screen-content)\" stroke-width=\"1.4891\"/><path d=\"M171.669 106.57L170.548 103.268C170.548 103.268 163.012 99.1772 163.012 94.713C163.012 90.2489 165.649 89.3888 167.809 90.3974C169.969 91.4059 174.618 95.8956 174.669 98.7574C174.72 101.619 174.423 103.892 171.669 106.57Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M175.805 119.087L174.684 115.785C174.684 115.785 167.148 111.694 167.148 107.23C167.148 102.766 169.785 101.906 171.945 102.914C174.106 103.923 178.754 108.413 178.805 111.274C178.851 114.136 178.56 116.409 175.805 119.087Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/></svg>", "payment-failed": "<svg width=\"342\" height=\"176\" viewBox=\"0 0 342 176\" fill=\"none\"><style> svg { --dialog: #F3F1F0; --dialog-header: #E2E0DF; --dialog-controls: #BFBDBB; --screen: #686868; --screen-content: #FFFFFF; --card: #ECE9E8; --card-content: #FFFFFF; --outline: #282828; --device: #686868; --skin: #FFFFFF; } svg[data-theme=\"dark\"] { --dialog: #777574; --dialog-header: #8E8C8B; --dialog-controls: #BFBDBB; --screen: #686868; --screen-content: #E7E4E2; --card: #D4D1CF; --card-content: #E7E4E2; --outline: #141414; --device: #686868; --skin: #E7E4E2; }</style><rect x=\"62\" y=\"36\" width=\"218\" height=\"103\" fill=\"var(--dialog)\"/><path d=\"M62 36L280 36V52H62V36Z\" fill=\"var(--dialog-header)\"/><path d=\"M71.6816 41C73.2787 41.0001 74.5732 42.2955 74.5732 43.8926C74.5731 45.4895 73.2786 46.7841 71.6816 46.7842C70.0846 46.7842 68.7902 45.4896 68.79 43.8926C68.79 42.2954 70.0845 41 71.6816 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M80.2305 41C81.8276 41 83.123 42.2954 83.123 43.8926C83.1229 45.4896 81.8275 46.7842 80.2305 46.7842C78.6336 46.784 77.339 45.4895 77.3389 43.8926C77.3389 42.2955 78.6335 41.0002 80.2305 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M88.7803 41C90.3773 41.0001 91.6719 42.2955 91.6719 43.8926C91.6717 45.4895 90.3773 46.7841 88.7803 46.7842C87.1832 46.7842 85.8888 45.4896 85.8887 43.8926C85.8887 42.2954 87.1831 41 88.7803 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M209.5 29.5C205.161 23.342 195.527 16.2148 192.094 14.8911L182.911 16.5043L187.751 61.3014C188.769 63.1835 189.276 64.2438 191.722 66.0169C194.576 68.108 196.25 68.9814 199.5 69.5L202.518 85.003L205 113C209.146 117.868 212.419 119.524 220 120.5C230.607 120.689 235.514 120.094 237.5 114.5L227.46 67.7542L223.861 58.075C223.448 56.4619 221.368 51.7324 217 42.5C217 42.5 215.15 37.5187 209.5 29.5Z\" fill=\"var(--skin)\"/><path d=\"M193.914 29.0211L194.504 29.3302L194.631 29.0873L194.551 28.8251L193.914 29.0211ZM199.529 69.4913L200.175 69.3334L200.063 68.8745L199.593 68.8285L199.529 69.4913ZM204.785 112.401L204.123 112.472C204.124 112.483 204.126 112.493 204.127 112.504L204.785 112.401ZM214 119.319L213.78 119.948L214 119.319ZM232.792 119.319L232.566 118.693V118.693L232.792 119.319ZM237.387 114.727L238.041 114.6L238.04 114.598L237.387 114.727ZM203.51 22.8327L203.994 22.3751V22.3751L203.51 22.8327ZM212.941 34.6214L212.373 34.9687V34.9687L212.941 34.6214ZM220.511 49.8847L219.903 50.1571L219.904 50.158L220.511 49.8847ZM231.555 87.4845L232.21 87.3624L232.209 87.3594L231.555 87.4845ZM234.782 102.003L235.432 101.863V101.863L234.782 102.003ZM188.907 12.767L188.271 12.963L193.278 29.2171L193.914 29.0211L194.551 28.8251L189.544 12.5709L188.907 12.767ZM193.914 29.0211C193.324 28.712 193.324 28.7121 193.324 28.7122C193.324 28.7123 193.324 28.7126 193.324 28.7128C193.324 28.7133 193.323 28.7141 193.323 28.7151C193.322 28.7171 193.32 28.7201 193.318 28.7241C193.314 28.732 193.308 28.7438 193.3 28.7592C193.284 28.7902 193.26 28.8361 193.228 28.8961C193.166 29.0162 193.074 29.1927 192.957 29.4192C192.723 29.8723 192.388 30.5252 191.982 31.3258C191.171 32.9268 190.078 35.1196 188.949 37.4855C187.822 39.8504 186.657 42.3937 185.703 44.6944C184.756 46.9811 183.998 49.074 183.708 50.5201L184.361 50.6507L185.014 50.7812C185.275 49.4756 185.987 47.489 186.934 45.2042C187.875 42.9335 189.029 40.4133 190.152 38.0588C191.274 35.7052 192.362 33.5225 193.17 31.9278C193.574 31.1306 193.908 30.4807 194.141 30.0303C194.257 29.8052 194.348 29.6299 194.41 29.511C194.441 29.4516 194.464 29.4063 194.48 29.3759C194.488 29.3607 194.494 29.3492 194.498 29.3416C194.5 29.3377 194.502 29.3349 194.503 29.333C194.503 29.332 194.503 29.3313 194.504 29.3309C194.504 29.3307 194.504 29.3305 194.504 29.3304C194.504 29.3303 194.504 29.3302 193.914 29.0211ZM184.361 50.6507L183.708 50.5201C183.404 52.0404 183.602 53.96 184.191 55.9636C184.783 57.9786 185.786 60.1309 187.15 62.135C189.87 66.1323 194.092 69.6293 199.464 70.154L199.529 69.4913L199.593 68.8285C194.746 68.355 190.835 65.1834 188.251 61.3858C186.963 59.4924 186.021 57.4657 185.469 55.5881C184.914 53.6991 184.768 52.0126 185.014 50.7812L184.361 50.6507ZM204.785 112.401L205.447 112.33C204.457 103.071 204.525 87.1567 200.175 69.3334L199.529 69.4913L198.882 69.6492C203.204 87.3622 203.112 103.025 204.123 112.472L204.785 112.401ZM204.785 112.401L204.127 112.504C204.183 112.861 204.384 113.341 204.722 113.876C205.07 114.425 205.588 115.071 206.324 115.757C207.797 117.132 210.148 118.676 213.78 119.948L214 119.319L214.22 118.691C210.736 117.47 208.551 116.015 207.232 114.784C206.572 114.167 206.129 113.608 205.848 113.163C205.557 112.704 205.459 112.401 205.443 112.298L204.785 112.401ZM214 119.319L213.78 119.948C220.439 122.279 228.159 121.701 233.018 119.945L232.792 119.319L232.566 118.693C227.964 120.355 220.561 120.911 214.22 118.691L214 119.319ZM232.792 119.319L233.018 119.945C234.792 119.305 236.061 118.2 236.874 117.187C237.28 116.681 237.58 116.189 237.774 115.776C237.871 115.571 237.946 115.375 237.995 115.198C238.035 115.049 238.084 114.822 238.041 114.6L237.387 114.727L236.733 114.855C236.715 114.76 236.741 114.734 236.71 114.846C236.687 114.93 236.642 115.053 236.569 115.209C236.423 115.52 236.181 115.923 235.835 116.353C235.145 117.213 234.067 118.15 232.566 118.693L232.792 119.319ZM192.466 14.7668L192.16 15.3579C194.365 16.5013 199.626 19.6953 203.027 23.2903L203.51 22.8327L203.994 22.3751C200.446 18.6239 195.035 15.3486 192.773 14.1756L192.466 14.7668ZM203.51 22.8327L203.027 23.2903C207.358 27.8693 209.679 30.56 212.373 34.9687L212.941 34.6214L213.51 34.2742C210.744 29.7483 208.349 26.9789 203.994 22.3751L203.51 22.8327ZM212.941 34.6214L212.373 34.9687C214.531 38.4999 218.287 46.5506 219.903 50.1571L220.511 49.8847L221.119 49.6123C219.509 46.0215 215.72 37.8906 213.51 34.2742L212.941 34.6214ZM220.511 49.8847L219.904 50.158C221.771 54.3081 225.739 63.6162 226.814 67.9155L227.46 67.7539L228.106 67.5924C226.997 63.1557 222.973 53.7341 221.118 49.6115L220.511 49.8847ZM227.46 67.7539L226.814 67.9155C227.901 72.2617 229.99 82.8474 230.901 87.6097L231.555 87.4845L232.209 87.3594C231.3 82.608 229.204 71.9823 228.106 67.5924L227.46 67.7539ZM231.555 87.4845L230.901 87.6067C231.481 90.7172 233.222 97.9424 234.131 102.144L234.782 102.003L235.432 101.863C234.508 97.5874 232.787 90.4565 232.21 87.3624L231.555 87.4845ZM234.782 102.003L234.131 102.144C234.626 104.435 235.277 107.612 235.804 110.219C236.067 111.522 236.3 112.682 236.467 113.515C236.55 113.932 236.617 114.268 236.663 114.499C236.686 114.615 236.703 114.704 236.716 114.765C236.722 114.795 236.726 114.818 236.729 114.834C236.731 114.841 236.732 114.847 236.733 114.851C236.733 114.853 236.733 114.855 236.734 114.856C236.734 114.856 236.734 114.856 236.734 114.857C236.734 114.857 236.734 114.857 236.734 114.857C236.734 114.857 236.734 114.857 237.387 114.727C238.04 114.598 238.04 114.598 238.04 114.598C238.04 114.598 238.04 114.598 238.04 114.598C238.04 114.597 238.04 114.597 238.04 114.596C238.04 114.595 238.039 114.594 238.039 114.592C238.038 114.588 238.037 114.582 238.036 114.574C238.032 114.559 238.028 114.536 238.022 114.505C238.01 114.444 237.992 114.355 237.969 114.239C237.923 114.008 237.856 113.672 237.773 113.254C237.606 112.42 237.373 111.259 237.109 109.955C236.582 107.348 235.93 104.163 235.432 101.863L234.782 102.003Z\" fill=\"var(--outline)\"/><path d=\"M180.225 44.9167C178.172 45.5055 177.783 46.9236 179.621 51.9355C181.459 56.9474 183.112 60.0139 184.234 61.4627C185.355 62.9115 188.089 62.7989 188.314 59.6811C188.539 56.5634 187.587 53.6402 187.587 53.6402L180.225 44.9167Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M180.681 35.39C178.956 36.2808 177.056 37.7859 177.671 41.5743C178.285 45.3626 181.439 49.7397 183.077 52.5145C184.715 55.2892 187.091 57.68 189.205 56.0622C191.319 54.4445 190.71 51.0452 190.321 49.3199C189.932 47.5947 180.681 35.39 180.681 35.39Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M180.681 33.6029C179.964 34.8572 178.955 35.9425 181.408 39.8998C183.86 43.8571 189.379 49.8161 191.216 51.6028C193.054 53.3895 194.948 53.7785 195.952 51.8792C196.955 49.9799 196.73 45.8844 195.45 43.6984C194.17 41.5124 184.367 30.5364 184.367 30.5364L180.686 33.6029H180.681Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M152.416 38.5789C151.679 38.5789 147.421 39.5848 147.173 36.2344L138.158 12.7209C137.953 12.1885 136.253 9.30644 142.83 9.30644L187.846 6.00512C187.898 6.00512 187.949 6 188 6C188.737 6 189.234 6.30887 189.5 6.99999L199.267 32.5508C199.472 33.0832 199.28 33.3673 198.978 33.8485C198.676 34.3297 198.174 34.6369 197.606 34.6881L152.565 38.5737C152.514 38.5737 152.463 38.5789 152.411 38.5789H152.416Z\" fill=\"var(--card)\"/><path d=\"M209.135 33.3012C207.071 30.9924 193.06 24.7313 190.254 23.0829C187.449 21.4344 183.609 19.7501 181.782 22.489C179.954 25.2279 180.189 27.634 186.548 34.018C192.901 40.4019 197.677 45.9923 197.677 45.9923C197.677 45.9923 197.432 58.5297 206.58 59.441\" fill=\"var(--skin)\"/><path d=\"M209.135 33.3012C207.071 30.9924 193.06 24.7313 190.254 23.0829C187.449 21.4344 183.609 19.7501 181.782 22.489C179.954 25.2279 180.189 27.634 186.548 34.018C192.901 40.4019 197.677 45.9923 197.677 45.9923C197.677 45.9923 197.432 58.5297 206.58 59.441\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M187.951 5.2551C188.906 5.18066 189.795 5.74581 190.134 6.64181L197.433 25.9475L196.81 26.1828L196.187 26.4192L192.243 15.9856L192.154 15.9944L141.3 19.9055L147.875 37.0002C148.163 37.7492 148.909 38.2208 149.709 38.1594L188.197 35.1985L188.298 36.5266L149.812 39.4865C148.425 39.5932 147.132 38.7772 146.632 37.4787L137.083 12.6506C136.447 10.9956 137.583 9.19442 139.351 9.05588L187.951 5.2551ZM139.455 10.384C138.575 10.4528 138.01 11.3493 138.327 12.1731L139.857 16.1526L139.846 16.0061L190.769 12.0881L188.888 7.11252C188.759 6.77047 188.419 6.55482 188.054 6.58322L139.455 10.384Z\" fill=\"var(--outline)\"/><path d=\"M177.447 26.8662L147.946 29.1523L146 24.2861L175.5 22L177.447 26.8662Z\" fill=\"var(--card-content)\"/><path d=\"M104.361 135.765C109.811 130.261 113.5 126.5 117 121L118 92.9999L117.5 83.4999C117 79.9999 121 78.9999 123 81.9999L134.143 112.064L163.553 79.3037L167.152 77.1942L169.634 77.8146L171.371 81.041L170.75 84.2674L166.904 89.8515L156.48 126.955L118.5 165L114.909 169C107.961 171.17 103.525 169.956 95.0001 165C87.3537 157.937 85.1245 154.508 86.6162 149.788L104.361 135.765Z\" fill=\"var(--skin)\"/><path d=\"M159.075 83.0486C161.696 80.6322 164.195 78.2978 164.727 77.5196C166.458 75.006 164.077 69.221 160.586 70.8797C157.97 72.1238 154.36 75.1698 154.36 75.1698L159.075 83.0486Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M87.3057 149.438L87.727 149.953C87.7369 149.945 87.7467 149.937 87.7561 149.928L87.3057 149.438ZM87.4549 156.957L88.0292 156.62V156.62L87.4549 156.957ZM101.831 168.624L102.056 167.998L101.831 168.624ZM114.964 168.738L115.379 169.259C115.399 169.243 115.418 169.226 115.435 169.208L114.964 168.738ZM117.019 120.998L117.598 121.327C117.65 121.235 117.68 121.132 117.684 121.026L117.019 120.998ZM165.311 78.0036L165.755 78.4996L165.756 78.4994L165.311 78.0036ZM169.954 85.5445L170.491 85.9383L170.491 85.9382L169.954 85.5445ZM161.21 99.0751L160.637 98.7371L160.499 98.97L160.563 99.2326L161.21 99.0751ZM165.188 115.416L165.825 115.609L165.878 115.435L165.835 115.259L165.188 115.416ZM160.463 123.08L160.935 123.55L160.942 123.543L160.948 123.536L160.463 123.08ZM87.3057 149.438L86.8844 148.922C85.7357 149.86 85.33 151.283 85.403 152.758C85.4759 154.231 86.0236 155.833 86.8806 157.294L87.4549 156.957L88.0292 156.62C87.2528 155.297 86.793 153.902 86.7331 152.692C86.6734 151.484 87.0098 150.539 87.727 149.953L87.3057 149.438ZM87.4549 156.957L86.8806 157.294C89.1927 161.233 94.415 166.664 101.605 169.251L101.831 168.624L102.056 167.998C95.2006 165.531 90.2076 160.331 88.0292 156.62L87.4549 156.957ZM101.831 168.624L101.605 169.251C104.191 170.181 106.93 170.718 109.355 170.767C111.751 170.815 113.964 170.389 115.379 169.259L114.964 168.738L114.548 168.218C113.499 169.056 111.672 169.481 109.382 169.435C107.12 169.39 104.524 168.886 102.056 167.998L101.831 168.624ZM87.3057 149.438L87.7561 149.928C88.6322 149.123 90.4875 147.696 92.9369 145.783C95.3691 143.884 98.3507 141.534 101.431 138.915C107.573 133.695 114.181 127.348 117.598 121.327L117.019 120.998L116.44 120.67C113.15 126.468 106.705 132.684 100.569 137.9C97.5101 140.5 94.5464 142.837 92.1172 144.733C89.7051 146.617 87.7828 148.095 86.8552 148.947L87.3057 149.438ZM145 102C145.523 102.413 145.523 102.413 145.523 102.413C145.523 102.413 145.523 102.413 145.523 102.412C145.523 102.412 145.524 102.411 145.525 102.41C145.526 102.408 145.528 102.406 145.531 102.402C145.537 102.395 145.545 102.384 145.557 102.37C145.579 102.341 145.613 102.299 145.657 102.243C145.745 102.132 145.874 101.969 146.039 101.761C146.369 101.343 146.844 100.743 147.423 100.013C148.579 98.5524 150.149 96.5713 151.8 94.4886C155.104 90.3217 158.733 85.7527 160.044 84.1302L159.526 83.7117L159.008 83.2933C157.693 84.9217 154.059 89.4967 150.757 93.6611C149.105 95.7441 147.535 97.7254 146.379 99.186C145.8 99.9164 145.325 100.516 144.995 100.934C144.829 101.143 144.7 101.306 144.612 101.417C144.569 101.472 144.535 101.515 144.512 101.543C144.501 101.558 144.493 101.568 144.487 101.576C144.484 101.579 144.482 101.582 144.48 101.584C144.48 101.585 144.479 101.585 144.479 101.586C144.479 101.586 144.478 101.586 144.478 101.586C144.478 101.587 144.478 101.587 145 102ZM159.526 83.7117L160.044 84.1302C162.626 80.9344 163.946 80.121 165.755 78.4996L165.311 78.0036L164.867 77.5076C163.134 79.0603 161.679 79.9874 159.008 83.2933L159.526 83.7117ZM165.311 78.0036L165.756 78.4994C166.433 77.8918 167.162 77.7348 167.836 77.864C168.53 77.997 169.221 78.4457 169.745 79.1458C170.78 80.527 171.115 82.8338 169.417 85.1508L169.954 85.5445L170.491 85.9382C172.53 83.1562 172.203 80.2054 170.811 78.3473C170.122 77.4277 169.159 76.7614 168.087 76.556C166.996 76.3469 165.847 76.6282 164.866 77.5078L165.311 78.0036ZM169.954 85.5445L169.417 85.1507C167.439 87.8486 165.243 91.2481 163.545 93.9651C162.695 95.3252 161.969 96.5175 161.454 97.37C161.197 97.7962 160.993 98.1376 160.853 98.3726C160.783 98.4901 160.729 98.581 160.692 98.6426C160.674 98.6735 160.66 98.697 160.651 98.7128C160.646 98.7207 160.643 98.7267 160.64 98.7308C160.639 98.7328 160.638 98.7344 160.638 98.7354C160.637 98.7359 160.637 98.7363 160.637 98.7366C160.637 98.7367 160.637 98.7369 160.637 98.7369C160.637 98.737 160.637 98.7371 161.21 99.0751C161.784 99.4132 161.784 99.4132 161.784 99.4131C161.784 99.4131 161.784 99.413 161.784 99.4129C161.784 99.4127 161.785 99.4123 161.785 99.4118C161.785 99.4109 161.786 99.4095 161.787 99.4075C161.79 99.4037 161.793 99.3979 161.798 99.3902C161.807 99.3748 161.82 99.3517 161.838 99.3214C161.874 99.2606 161.928 99.1707 161.997 99.0541C162.136 98.8211 162.339 98.4819 162.595 98.058C163.106 97.2102 163.829 96.0239 164.675 94.6707C166.367 91.9612 168.543 88.5953 170.491 85.9383L169.954 85.5445ZM161.21 99.0751L160.563 99.2326L164.541 115.574L165.188 115.416L165.835 115.259L161.857 98.9176L161.21 99.0751ZM165.188 115.416C164.551 115.223 164.551 115.223 164.551 115.223C164.551 115.223 164.551 115.223 164.551 115.223C164.551 115.223 164.551 115.222 164.551 115.222C164.551 115.222 164.551 115.223 164.551 115.223C164.551 115.224 164.55 115.226 164.549 115.229C164.547 115.234 164.544 115.243 164.54 115.256C164.532 115.282 164.519 115.321 164.501 115.374C164.465 115.479 164.408 115.637 164.329 115.84C164.17 116.245 163.921 116.828 163.563 117.528C162.847 118.93 161.699 120.791 159.977 122.624L160.463 123.08L160.948 123.536C162.774 121.591 163.989 119.62 164.749 118.134C165.129 117.391 165.396 116.767 165.569 116.325C165.655 116.105 165.718 115.929 165.76 115.807C165.781 115.746 165.797 115.699 165.808 115.666C165.813 115.649 165.817 115.636 165.82 115.626C165.822 115.622 165.823 115.618 165.824 115.615C165.824 115.614 165.824 115.612 165.825 115.612C165.825 115.611 165.825 115.611 165.825 115.61C165.825 115.61 165.825 115.61 165.825 115.61C165.825 115.61 165.825 115.609 165.188 115.416ZM160.463 123.08L159.991 122.61L114.492 168.268L114.964 168.738L115.435 169.208L160.935 123.55L160.463 123.08ZM117.019 120.998C117.684 121.026 117.684 121.026 117.684 121.026C117.684 121.026 117.684 121.026 117.684 121.025C117.685 121.024 117.685 121.023 117.685 121.022C117.685 121.019 117.685 121.015 117.685 121.009C117.686 120.998 117.686 120.981 117.687 120.959C117.689 120.915 117.692 120.85 117.695 120.765C117.702 120.594 117.713 120.342 117.726 120.021C117.753 119.379 117.791 118.458 117.837 117.341C117.928 115.107 118.049 112.09 118.171 108.957C118.414 102.701 118.658 95.9557 118.658 94.0884H117.992H117.326C117.326 95.9224 117.084 102.632 116.84 108.906C116.719 112.037 116.597 115.054 116.506 117.287C116.46 118.404 116.422 119.325 116.396 119.966C116.382 120.287 116.372 120.538 116.365 120.709C116.361 120.794 116.358 120.86 116.357 120.904C116.356 120.926 116.355 120.942 116.354 120.954C116.354 120.959 116.354 120.963 116.354 120.966C116.354 120.968 116.354 120.969 116.354 120.969C116.354 120.97 116.354 120.97 116.354 120.97C116.354 120.97 116.354 120.97 117.019 120.998ZM117.992 94.0884H118.658C118.658 89.9806 118.215 86.7392 118.1 84.5555C118.04 83.4304 118.067 82.61 118.231 82.016C118.382 81.4638 118.639 81.1427 119.069 80.9401L118.786 80.3377L118.502 79.7352C117.66 80.1316 117.182 80.8049 116.946 81.6634C116.722 82.4801 116.71 83.4868 116.77 84.6258C116.894 86.9701 117.326 90.0051 117.326 94.0884H117.992ZM118.786 80.3377L119.069 80.9401C119.624 80.6791 120.084 80.6011 120.48 80.6517C120.87 80.7016 121.263 80.885 121.672 81.2639C122.522 82.0512 123.356 83.6002 124.206 86.111L124.837 85.8973L125.468 85.6837C124.608 83.1468 123.689 81.317 122.577 80.2868C122.005 79.757 121.364 79.4221 120.649 79.3306C119.938 79.2397 119.22 79.3973 118.502 79.7352L118.786 80.3377ZM124.837 85.8973L124.206 86.111C125.043 88.5803 125.677 91.8691 126.191 94.7617C126.446 96.1962 126.672 97.5399 126.877 98.6068C126.979 99.1416 127.078 99.6178 127.175 100.01C127.268 100.39 127.369 100.735 127.486 100.982L128.088 100.698L128.69 100.413C128.635 100.297 128.559 100.064 128.468 99.6923C128.38 99.3329 128.286 98.8827 128.185 98.3562C127.983 97.3005 127.76 95.9814 127.502 94.5286C126.99 91.6465 126.341 88.2621 125.468 85.6837L124.837 85.8973ZM128.088 100.698L127.486 100.982C128.248 102.598 134.678 111.447 133.757 121.684L134.42 121.743L135.084 121.803C136.047 111.091 129.3 101.705 128.69 100.413L128.088 100.698Z\" fill=\"var(--outline)\"/><path d=\"M140.01 129.693C139.216 129.693 138.51 129.191 138.238 128.444L117.5 65.5001C117.265 64.8397 117.346 64.0973 117.725 63.5035L119 62.0001L140 125.5C140.737 126.419 141.264 126.673 142.5 126.5L175.714 122.364L175.137 124.846C174.875 125.225 174.461 125.476 174.005 125.532L140.245 129.673C140.163 129.683 140.086 129.688 140.004 129.688L140.01 129.693Z\" fill=\"var(--device)\"/><path d=\"M175.964 121.555L175.266 124.072C175.07 124.776 174.471 125.294 173.746 125.387L140.6 129.624C139.499 129.765 138.454 129.104 138.109 128.049L117.364 64.5892C117.238 64.2048 117.34 63.7825 117.626 63.4971L119.362 61.7674L175.964 121.555Z\" stroke=\"var(--outline)\" stroke-width=\"1.33181\"/><path d=\"M141.746 126.598C140.896 126.598 140.128 126.06 139.842 125.257L119.378 62.9331C119.245 62.5542 119.291 62.1447 119.501 61.8068C119.71 61.4689 120.064 61.2488 120.463 61.2078L153.129 57.7118C153.191 57.7067 153.247 57.7015 153.309 57.7015C154.036 57.7015 154.681 58.1623 154.916 58.8534L176.21 119.882C176.405 120.46 176.328 121.085 176.001 121.597C175.673 122.109 175.135 122.442 174.531 122.508L141.961 126.583C141.889 126.593 141.961 126.583 141.746 126.593V126.598Z\" fill=\"var(--screen)\"/><path d=\"M152.71 57.87C153.778 57.7607 154.781 58.4012 155.131 59.4159L176.074 120.068C176.45 121.157 175.731 122.316 174.588 122.463L142.334 126.589C141.234 126.73 140.188 126.068 139.843 125.014L119.435 62.5858C119.223 61.9364 119.665 61.2571 120.344 61.1874L152.71 57.87Z\" stroke=\"var(--outline)\" stroke-width=\"1.33181\"/><path d=\"M143.283 86.4063L152.327 93.2038M151.204 85.283L144.406 94.3271M157.706 88.4009C158.482 93.869 154.677 98.9305 149.209 99.706C143.741 100.481 138.68 96.6773 137.904 91.2092C137.129 85.7411 140.933 80.6796 146.401 79.9041C151.869 79.1286 156.931 82.9328 157.706 88.4009Z\" stroke=\"var(--screen-content)\" stroke-width=\"1.5\"/><path d=\"M171.669 106.57L170.548 103.268C170.548 103.268 163.012 99.1772 163.012 94.713C163.012 90.2489 165.649 89.3888 167.809 90.3974C169.969 91.4059 174.618 95.8956 174.669 98.7574C174.72 101.619 174.423 103.892 171.669 106.57Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M175.805 119.087L174.684 115.785C174.684 115.785 167.148 111.694 167.148 107.23C167.148 102.766 169.785 101.906 171.945 102.914C174.106 103.923 178.754 108.413 178.805 111.274C178.851 114.136 178.56 116.409 175.805 119.087Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/></svg>", "payment-start": "<svg width=\"342\" height=\"176\" viewBox=\"0 0 342 176\" fill=\"none\"><style> svg { --dialog: #CBD7C6; --dialog-header: #B8C9B2; --dialog-controls: #9FB596; --screen: #527A42; --screen-content: #FFFFFF; --card: #ECE9E8; --card-content: #FFFFFF; --outline: #282828; --device: #686868; --skin: #FFFFFF; } svg[data-theme=\"dark\"] { --dialog: #515E51; --dialog-header: #5F705C; --dialog-controls: #73896C; --screen: #527A42; --screen-content: #E7E4E2; --card: #D4D1CF; --card-content: #E7E4E2; --outline: #141414; --device: #686868; --skin: #E7E4E2; }</style><rect x=\"62\" y=\"36\" width=\"218\" height=\"103\" fill=\"var(--dialog)\"/><path d=\"M62 36L280 36V52H62V36Z\" fill=\"var(--dialog-header)\"/><path d=\"M71.6816 41C73.2787 41.0001 74.5732 42.2955 74.5732 43.8926C74.5731 45.4895 73.2786 46.7841 71.6816 46.7842C70.0846 46.7842 68.7902 45.4896 68.79 43.8926C68.79 42.2954 70.0845 41 71.6816 41Z\" fill=\"var(--dialog-controls\"/><path d=\"M80.2305 41C81.8276 41 83.123 42.2954 83.123 43.8926C83.1229 45.4896 81.8275 46.7842 80.2305 46.7842C78.6336 46.784 77.339 45.4895 77.3389 43.8926C77.3389 42.2955 78.6335 41.0002 80.2305 41Z\" fill=\"var(--dialog-controls\"/><path d=\"M88.7803 41C90.3773 41.0001 91.6719 42.2955 91.6719 43.8926C91.6717 45.4895 90.3773 46.7841 88.7803 46.7842C87.1832 46.7842 85.8888 45.4896 85.8887 43.8926C85.8887 42.2954 87.1831 41 88.7803 41Z\" fill=\"var(--dialog-controls\"/><path d=\"M197 92.5002C195.5 88.5002 190.394 74.4923 189.5 73.5002L202.418 62.9417L214.5 29.5001C216.5 25.5001 221 27.0002 220.5 30.5001C220.5 30.5001 220 35.5001 220 38.5001C220 41.5001 222 50.5001 223 55.0001C224 59.5001 222.5 68.0001 222 72.0001C221.5 76.0001 224.5 88.0001 224.5 88.0001L229 102L235 116.5L240.5 127C237.948 130.614 235.13 132.711 230 135C221.5 138 209 139.5 204.5 135C204.5 135 202.418 118.5 201.5 113.5C200.582 108.5 198.5 96.5002 197 92.5002Z\" fill=\"var(--skin)\"/><path d=\"M182.799 33.3724C182.799 33.3724 179.215 30.6676 174.686 27.4152C170.157 24.1628 169.138 21.6706 170.4 19.1878C171.115 17.7771 172.503 17.2951 176.437 19.0838C180.372 20.8725 185.163 23.1677 185.163 23.1677L182.803 33.3767L182.799 33.3724Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M212.321 57.587L181.307 57.1318L181.37 62.118L212.385 62.5732L212.321 57.587Z\" fill=\"var(--outline)\"/><path d=\"M203.237 70.5363C203.088 57.3002 209.813 51.0594 211.079 47.7893C212.341 44.5188 212.998 40.1692 213.568 33.8871C214.138 27.6049 217.113 26.2253 219.291 27.3116C221.146 28.2397 220.839 29.4615 220.192 33.875C219.545 38.2884 221.404 48.5634 222.39 52.2782C223.377 55.9929 223.362 63.239 222.708 67.0526C222.055 70.8661 221.076 76.7807 225.014 90.2137C230.488 108.842 237.579 121.692 239.87 125.584C240.327 126.36 240.355 127.313 239.823 128.039C238.986 129.183 237.482 130.917 235.284 132.282C231.685 134.515 226.703 137.15 216.006 138.024C207.305 137.951 205.605 135.85 204.821 134.882L204.797 134.852L201.407 112.427C198.925 97.1636 196.459 89.0067 189.494 72.9659\" stroke=\"var(--outline)\" stroke-width=\"1.33181\"/><path d=\"M180 6.23197C180.001 4.99908 181.001 4.00018 182.234 4.00018L212.973 4.00026C214.069 4.00026 214.958 4.88802 214.959 5.98381L215.021 71.1656C215.022 72.2629 214.133 73.153 213.036 73.153L181.931 73.1529C180.834 73.153 179.945 72.263 179.946 71.1658L180 6.23197Z\" fill=\"var(--screen)\" stroke=\"var(--outline)\" stroke-width=\"1.33\"/><path d=\"M188.253 26.531L191.758 26.55L191.682 40.5694L203.073 40.6311M191.704 36.6264L202.218 36.6834L205.759 30.1308L193.93 30.0667M191.663 44.0741L191.667 43.4166L192.324 43.4202L192.321 44.0777L191.663 44.0741ZM196.921 44.1026L196.924 43.4451L197.582 43.4487L197.578 44.1062L196.921 44.1026Z\" stroke=\"var(--screen-content)\" stroke-width=\"1.59312\"/><path d=\"M179.119 51.0479C177.467 51.268 174.76 52.0695 173.657 55.4973C172.554 58.9252 176.264 62.5119 178.103 64.3684C179.941 66.2249 183.524 68.0599 184.519 65.6668C185.513 63.2737 183.168 57.2817 182.444 55.8292C181.719 54.3766 179.118 51.0518 179.118 51.0518L179.119 51.0479Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M177.16 40.4752C175.323 40.5971 173.865 42.1982 173.753 44.4991C173.638 46.7995 174.227 48.8278 177.291 52.2366C180.359 55.6419 183.318 58.0289 184.947 57.4643C186.575 56.8996 187.574 54.0901 186.464 51.6611C185.35 49.2317 182.638 44.2277 182.638 44.2277L177.16 40.4752Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M179.011 30.7067C179.013 30.7056 179.013 30.7037 179.011 30.7036C178.914 30.7022 176.784 30.6979 175.313 33.0408C173.806 35.4392 173.063 38.5509 175.904 41.4249C178.745 44.299 180.986 45.8831 182.19 46.509C183.395 47.1348 185.31 47.552 186.39 45.0577C187.469 42.5635 186.332 39.9822 184.387 37.9021C182.442 35.8221 179.014 32.5482 179.014 32.5482L179.011 30.708C179.011 30.7075 179.011 30.707 179.011 30.7067Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M192 4L203.393 4L203.393 6.57948C203.393 6.85362 203.171 7.07585 202.896 7.07585L192.496 7.07585C192.222 7.07585 192 6.85362 192 6.57948L192 4Z\" stroke=\"var(--outline)\" stroke-width=\"1.33181\"/><path d=\"M214.6 14L216.1 14C216.376 14 216.6 14.2239 216.6 14.5L216.6 21.5C216.6 21.7761 216.376 22 216.1 22L214.6 22L214.6 14Z\" fill=\"var(--outline)\"/><path d=\"M107.463 90.2489L116.398 74.2411L121.61 74.8615L138.362 93.4753V107.001L134.143 112.089L129.676 114.323L125.829 115.44L124.712 119.038L122.975 132.192L122.106 142.74L121 159C117.826 163.57 114.211 165.166 105.478 166.814C96 167.5 90.447 165.751 88.2292 160.609L92.9447 139.265L97.6602 117.053L102.003 103.154L107.463 90.2489Z\" fill=\"var(--skin)\"/><path d=\"M120.769 158.675L121.427 158.775C121.429 158.764 121.43 158.753 121.432 158.743L120.769 158.675ZM125.87 115.536L125.805 114.873C125.522 114.901 125.288 115.105 125.222 115.381L125.87 115.536ZM112.779 165.114L112.56 164.485V164.485L112.779 165.114ZM92.7355 165.409L92.9651 164.784V164.784L92.7355 165.409ZM88.1052 160.733L87.456 160.585C87.4542 160.593 87.4526 160.601 87.4511 160.609L88.1052 160.733ZM131.593 75.1337L130.957 74.9376L130.876 75.1998L131.004 75.4428L131.593 75.1337ZM121.982 68.9052L122.466 69.3629V69.3629L121.982 68.9052ZM112.551 80.694L113.119 81.0412V81.0412L112.551 80.694ZM104.982 95.9573L105.589 96.2305L105.589 96.2296L104.982 95.9573ZM98.4048 114.199L99.0508 114.36V114.36L98.4048 114.199ZM93.9375 133.557L93.2834 133.432L93.2829 133.435L93.9375 133.557ZM90.7111 148.076L90.0602 147.935L90.0602 147.935L90.7111 148.076ZM120.769 158.675L121.432 158.743C122.4 149.298 122.285 133.394 126.518 115.691L125.87 115.536L125.222 115.381C120.963 133.194 121.056 149.347 120.107 158.607L120.769 158.675ZM120.769 158.675L120.111 158.575C120.056 158.937 119.879 159.795 118.897 160.861C117.901 161.942 116.044 163.27 112.56 164.485L112.779 165.114L112.998 165.743C116.621 164.48 118.689 163.051 119.876 161.763C121.076 160.461 121.342 159.338 121.427 158.775L120.769 158.675ZM112.779 165.114L112.56 164.485C103.84 167.526 97.5761 166.478 92.9651 164.784L92.7355 165.409L92.506 166.034C97.3685 167.82 103.952 168.897 112.998 165.743L112.779 165.114ZM92.7355 165.409L92.9651 164.784C91.4625 164.232 90.3754 163.276 89.6752 162.396C89.3251 161.957 89.0788 161.545 88.929 161.226C88.8537 161.066 88.8075 160.94 88.7834 160.853C88.7515 160.738 88.7776 160.762 88.7594 160.858L88.1052 160.733L87.4511 160.609C87.4085 160.832 87.4586 161.06 87.5001 161.209C87.5494 161.387 87.626 161.585 87.724 161.794C87.9209 162.212 88.2234 162.711 88.6332 163.226C89.4526 164.255 90.7293 165.382 92.506 166.034L92.7355 165.409ZM136.6 58.8795L135.964 58.6835L130.957 74.9376L131.593 75.1337L132.23 75.3297L137.237 59.0755L136.6 58.8795ZM131.593 75.1337C131.004 75.4428 131.004 75.4428 131.004 75.4429C131.004 75.443 131.004 75.4432 131.004 75.4434C131.004 75.4439 131.005 75.4446 131.005 75.4455C131.006 75.4474 131.007 75.4503 131.009 75.4541C131.013 75.4617 131.019 75.4732 131.027 75.4884C131.043 75.5188 131.067 75.5641 131.098 75.6236C131.16 75.7424 131.251 75.9177 131.367 76.1429C131.6 76.5933 131.933 77.2431 132.337 78.0403C133.145 79.635 134.234 81.8178 135.356 84.1713C136.479 86.5259 137.633 89.046 138.574 91.3168C139.521 93.6015 140.232 95.5881 140.493 96.8938L141.146 96.7632L141.799 96.6326C141.51 95.1866 140.752 93.0937 139.804 90.8069C138.851 88.5062 137.686 85.9629 136.558 83.598C135.43 81.2321 134.336 79.0394 133.525 77.4384C133.12 76.6378 132.784 75.9848 132.55 75.5318C132.433 75.3053 132.342 75.1287 132.279 75.0087C132.248 74.9486 132.224 74.9027 132.208 74.8718C132.2 74.8563 132.194 74.8446 132.19 74.8366C132.187 74.8327 132.186 74.8297 132.185 74.8277C132.184 74.8267 132.184 74.8259 132.184 74.8254C132.183 74.8251 132.183 74.8249 132.183 74.8248C132.183 74.8246 132.183 74.8245 131.593 75.1337ZM141.146 96.7632L140.493 96.8938C140.739 98.1233 140.588 99.8041 140.023 101.686C139.461 103.557 138.506 105.575 137.205 107.461C134.594 111.242 130.655 114.4 125.805 114.873L125.87 115.536L125.935 116.199C131.303 115.674 135.553 112.197 138.301 108.217C139.678 106.222 140.695 104.078 141.298 102.069C141.898 100.072 142.104 98.1548 141.799 96.6326L141.146 96.7632ZM133.026 60.8393L132.72 60.2481C130.458 61.4211 125.047 64.6964 121.498 68.4476L121.982 68.9052L122.466 69.3629C125.867 65.7678 131.128 62.5738 133.333 61.4304L133.026 60.8393ZM121.982 68.9052L121.498 68.4476C117.144 73.0514 114.749 75.8208 111.983 80.3467L112.551 80.694L113.119 81.0412C115.814 76.6325 118.135 73.9418 122.466 69.3629L121.982 68.9052ZM112.551 80.694L111.983 80.3467C109.773 83.9632 105.984 92.094 104.374 95.6849L104.982 95.9573L105.589 96.2296C107.206 92.6232 110.961 84.5724 113.119 81.0412L112.551 80.694ZM104.982 95.9573L104.374 95.684C102.512 99.8233 99.956 105.248 97.7588 114.037L98.4048 114.199L99.0508 114.36C101.217 105.696 103.729 100.364 105.589 96.2305L104.982 95.9573ZM98.4048 114.199L97.7588 114.037C96.6672 118.403 94.1975 128.654 93.2834 133.432L93.9375 133.557L94.5915 133.682C95.4975 128.946 97.9583 118.73 99.0508 114.36L98.4048 114.199ZM93.9375 133.557L93.2829 133.435C92.7053 136.529 90.9846 143.66 90.0602 147.935L90.7111 148.076L91.362 148.217C92.2704 144.015 94.0115 136.79 94.5921 133.679L93.9375 133.557ZM90.7111 148.076L90.0602 147.935C89.057 152.575 87.9966 158.215 87.456 160.585L88.1052 160.733L88.7545 160.881C89.2893 158.536 90.3798 152.759 91.362 148.217L90.7111 148.076Z\" fill=\"var(--outline)\"/><path d=\"M145.283 91.0295C147.336 91.6183 147.725 93.0364 145.887 98.0483C144.049 103.06 142.395 106.127 141.274 107.575C140.153 109.024 137.419 108.912 137.194 105.794C136.969 102.676 137.921 99.753 137.921 99.753L145.283 91.0295Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M144.827 81.5026C146.552 82.3933 148.451 83.8985 147.837 87.6868C147.223 91.4752 144.069 95.8523 142.431 98.627C140.793 101.402 138.417 103.792 136.303 102.175C134.189 100.557 134.798 97.1577 135.187 95.4325C135.576 93.7073 144.827 81.5026 144.827 81.5026Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M144.827 79.7159C145.544 80.9702 146.552 82.0555 144.1 86.0128C141.648 89.9701 136.129 95.9291 134.291 97.7158C132.453 99.5025 130.559 99.8916 129.556 97.9923C128.553 96.093 128.778 91.9974 130.058 89.8114C131.337 87.6254 141.141 76.6494 141.141 76.6494L144.822 79.7159H144.827Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M110.686 61.367L123.021 88.6616C123.236 89.1378 123.798 89.3474 124.272 89.1285L166.49 69.6527C167.119 69.3627 167.394 68.6179 167.105 67.9889L154.95 41.5876C154.734 41.1171 154.178 40.9102 153.706 41.1245L110.998 60.5376C110.683 60.6807 110.544 61.0518 110.686 61.367Z\" fill=\"var(--card)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\"/><path d=\"M121.099 73.7318L144.782 63\" stroke=\"var(--card-content)\" stroke-width=\"5\"/><path d=\"M116.373 79.4143C118.436 77.1055 132.448 70.8444 135.254 69.196C138.059 67.5475 141.899 65.8632 143.726 68.6021C145.554 71.341 145.318 73.7471 138.96 80.1311C132.607 86.515 127.83 92.1054 127.83 92.1054C127.83 92.1054 128.076 104.643 118.928 105.554\" fill=\"var(--skin)\"/><path d=\"M116.373 79.4143C118.436 77.1055 132.448 70.8444 135.254 69.196C138.059 67.5475 141.899 65.8632 143.726 68.6021C145.554 71.341 145.318 73.7471 138.96 80.1311C132.607 86.515 127.83 92.1054 127.83 92.1054C127.83 92.1054 128.076 104.643 118.928 105.554\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M114.198 67.6706L157.506 48\" stroke=\"var(--outline)\" stroke-width=\"4\"/></svg>", "returns-complete": "<svg width=\"342\" height=\"176\" viewBox=\"0 0 342 176\" fill=\"none\"><style> svg { --dialog: #CBD7C6; --dialog-header: #B8C9B2; --dialog-controls: #9FB596; --screen: #527A42; --screen-content: #FFFFFF; --sign: #E5EBE3; --sign-outline: #86A27B; --outline: #282828; --device: #686868; --skin: #FFFFFF; } svg[data-theme=\"dark\"] { --dialog: #515E51; --dialog-header: #5F705C; --dialog-controls: #73896C; --screen: #527A42; --screen-content: #E7E4E2; --sign: #515E51; --sign-outline: #86A27B; --outline: #141414; --device: #686868; --skin: #E7E4E2; }</style><rect x=\"62\" y=\"36\" width=\"218\" height=\"103\" fill=\"var(--dialog)\"/><path d=\"M62 36L280 36V52H62V36Z\" fill=\"var(--dialog-header)\"/><path d=\"M71.6816 41C73.2787 41.0001 74.5732 42.2955 74.5732 43.8926C74.5731 45.4895 73.2786 46.7841 71.6816 46.7842C70.0846 46.7842 68.7902 45.4896 68.79 43.8926C68.79 42.2954 70.0845 41 71.6816 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M80.2305 41C81.8276 41 83.123 42.2954 83.123 43.8926C83.1229 45.4896 81.8275 46.7842 80.2305 46.7842C78.6336 46.784 77.339 45.4895 77.3389 43.8926C77.3389 42.2955 78.6335 41.0002 80.2305 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M88.7803 41C90.3773 41.0001 91.6719 42.2955 91.6719 43.8926C91.6717 45.4895 90.3773 46.7841 88.7803 46.7842C87.1832 46.7842 85.8888 45.4896 85.8887 43.8926C85.8887 42.2954 87.1831 41 88.7803 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M219.383 86.9888L253.361 70.9141V28.9917L217.016 16.2402L183.419 27.9991M219.383 86.9888L183.419 69.7688V27.9991M219.383 86.9888V42.8886M183.419 27.9991L219.383 42.8886M253.285 29.0682L219.383 42.8886\" fill=\"var(--sign)\" stroke=\"var(--sign-outline)\" stroke-width=\"1.44847\"/><path d=\"M242.092 33.4202L206.555 19.8289L196.934 23.0358L233.126 37.238V49.0807L242.092 45.75V33.4202Z\" fill=\"var(--sign-outline)\" stroke=\"var(--sign-outline)\" stroke-width=\"0.18906\"/><path d=\"M105.361 127.718C110.811 122.214 114.5 118.453 118 112.953L119 84.9528L118.5 75.4528C118 71.9528 122 70.9528 124 73.9528L135.143 104.017L164.553 71.2565L168.151 69.147L170.633 69.7674L172.371 72.9938L171.75 76.2202L167.903 81.8043L157.48 118.908L119.5 156.953L115.909 160.953C108.961 163.123 104.525 161.909 95.9998 156.953C88.3534 149.89 86.1243 146.461 87.6159 141.741L105.361 127.718Z\" fill=\"var(--skin)\"/><path d=\"M160.075 75.0015C162.696 72.5851 165.195 70.2507 165.727 69.4725C167.458 66.9589 165.077 61.1739 161.586 62.8326C158.97 64.0766 155.36 67.1227 155.36 67.1227L160.075 75.0015Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M88.3057 141.391L88.727 141.906C88.7369 141.898 88.7467 141.89 88.7561 141.881L88.3057 141.391ZM88.4549 148.91L89.0292 148.572V148.572L88.4549 148.91ZM102.831 160.577L103.056 159.951L102.831 160.577ZM115.964 160.691L116.379 161.212C116.399 161.196 116.418 161.179 116.435 161.161L115.964 160.691ZM118.019 112.951L118.598 113.28C118.65 113.188 118.68 113.085 118.684 112.979L118.019 112.951ZM166.311 69.9565L166.755 70.4525L166.756 70.4523L166.311 69.9565ZM170.954 77.4974L171.491 77.8912L171.491 77.8911L170.954 77.4974ZM162.21 91.0281L161.637 90.69L161.499 90.9229L161.563 91.1856L162.21 91.0281ZM166.188 107.369L166.825 107.562L166.878 107.388L166.835 107.212L166.188 107.369ZM161.463 115.033L161.935 115.503L161.942 115.496L161.948 115.489L161.463 115.033ZM88.3057 141.391L87.8844 140.875C86.7357 141.813 86.33 143.236 86.403 144.711C86.4759 146.184 87.0236 147.786 87.8806 149.247L88.4549 148.91L89.0292 148.572C88.2528 147.25 87.793 145.854 87.7331 144.645C87.6734 143.437 88.0098 142.492 88.727 141.906L88.3057 141.391ZM88.4549 148.91L87.8806 149.247C90.1927 153.186 95.415 158.617 102.605 161.204L102.831 160.577L103.056 159.951C96.2006 157.484 91.2076 152.284 89.0292 148.572L88.4549 148.91ZM102.831 160.577L102.605 161.204C105.191 162.134 107.93 162.671 110.355 162.72C112.751 162.768 114.964 162.342 116.379 161.212L115.964 160.691L115.548 160.171C114.499 161.009 112.672 161.434 110.382 161.388C108.12 161.343 105.524 160.839 103.056 159.951L102.831 160.577ZM88.3057 141.391L88.7561 141.881C89.6322 141.076 91.4875 139.649 93.9369 137.736C96.3691 135.837 99.3507 133.487 102.431 130.868C108.573 125.648 115.181 119.301 118.598 113.28L118.019 112.951L117.44 112.623C114.15 118.421 107.705 124.637 101.569 129.853C98.5101 132.453 95.5464 134.79 93.1172 136.686C90.7051 138.57 88.7828 140.048 87.8552 140.9L88.3057 141.391ZM146 93.9528C146.523 94.366 146.523 94.3659 146.523 94.3658C146.523 94.3657 146.523 94.3655 146.523 94.3653C146.523 94.3648 146.524 94.3642 146.525 94.3632C146.526 94.3614 146.528 94.3587 146.531 94.3551C146.537 94.3478 146.545 94.337 146.557 94.3228C146.579 94.2942 146.613 94.2518 146.657 94.1964C146.745 94.0854 146.874 93.9223 147.039 93.7136C147.369 93.2961 147.844 92.696 148.423 91.9658C149.579 90.5053 151.149 88.5242 152.8 86.4415C156.104 82.2746 159.733 77.7056 161.044 76.0832L160.526 75.6647L160.008 75.2462C158.693 76.8746 155.059 81.4496 151.757 85.614C150.105 87.697 148.535 89.6784 147.379 91.139C146.8 91.8693 146.325 92.4694 145.995 92.887C145.829 93.0958 145.7 93.2589 145.612 93.3698C145.569 93.4253 145.535 93.4677 145.512 93.4963C145.501 93.5106 145.493 93.5214 145.487 93.5286C145.484 93.5322 145.482 93.535 145.48 93.5368C145.48 93.5377 145.479 93.5384 145.479 93.5388C145.479 93.5391 145.478 93.5392 145.478 93.5394C145.478 93.5395 145.478 93.5395 146 93.9528ZM160.526 75.6647L161.044 76.0832C163.626 72.8874 164.946 72.0739 166.755 70.4525L166.311 69.9565L165.867 69.4606C164.134 71.0132 162.679 71.9404 160.008 75.2462L160.526 75.6647ZM166.311 69.9565L166.756 70.4523C167.433 69.8448 168.162 69.6877 168.836 69.817C169.53 69.9499 170.221 70.3987 170.745 71.0987C171.78 72.4799 172.115 74.7868 170.417 77.1038L170.954 77.4974L171.491 77.8911C173.53 75.1092 173.203 72.1584 171.811 70.3003C171.122 69.3807 170.159 68.7143 169.087 68.5089C167.996 68.2998 166.847 68.5811 165.866 69.4607L166.311 69.9565ZM170.954 77.4974L170.417 77.1037C168.439 79.8015 166.243 83.201 164.545 85.918C163.695 87.2782 162.969 88.4705 162.454 89.3229C162.197 89.7491 161.993 90.0905 161.853 90.3255C161.783 90.443 161.729 90.5339 161.692 90.5956C161.674 90.6264 161.66 90.6499 161.651 90.6657C161.646 90.6737 161.643 90.6797 161.64 90.6837C161.639 90.6858 161.638 90.6873 161.638 90.6884C161.637 90.6889 161.637 90.6893 161.637 90.6896C161.637 90.6897 161.637 90.6898 161.637 90.6899C161.637 90.69 161.637 90.69 162.21 91.0281C162.784 91.3661 162.784 91.3661 162.784 91.3661C162.784 91.366 162.784 91.3659 162.784 91.3658C162.784 91.3656 162.785 91.3652 162.785 91.3648C162.785 91.3638 162.786 91.3624 162.787 91.3605C162.79 91.3566 162.793 91.3508 162.798 91.3431C162.807 91.3277 162.82 91.3047 162.838 91.2743C162.874 91.2136 162.928 91.1236 162.997 91.0071C163.136 90.774 163.339 90.4349 163.595 90.011C164.106 89.1631 164.829 87.9768 165.675 86.6237C167.367 83.9141 169.543 80.5483 171.491 77.8912L170.954 77.4974ZM162.21 91.0281L161.563 91.1856L165.541 107.527L166.188 107.369L166.835 107.212L162.857 90.8706L162.21 91.0281ZM166.188 107.369C165.551 107.176 165.551 107.176 165.551 107.176C165.551 107.176 165.551 107.176 165.551 107.176C165.551 107.175 165.551 107.175 165.551 107.175C165.551 107.175 165.551 107.176 165.551 107.176C165.551 107.177 165.55 107.179 165.549 107.182C165.547 107.187 165.544 107.196 165.54 107.209C165.532 107.235 165.519 107.274 165.501 107.327C165.465 107.432 165.408 107.59 165.329 107.793C165.17 108.198 164.921 108.781 164.563 109.481C163.847 110.883 162.699 112.743 160.977 114.577L161.463 115.033L161.948 115.489C163.774 113.544 164.989 111.573 165.749 110.087C166.129 109.344 166.396 108.72 166.569 108.278C166.655 108.058 166.718 107.882 166.76 107.76C166.781 107.699 166.797 107.652 166.808 107.618C166.813 107.602 166.817 107.589 166.82 107.579C166.822 107.575 166.823 107.571 166.824 107.568C166.824 107.567 166.824 107.565 166.825 107.564C166.825 107.564 166.825 107.564 166.825 107.563C166.825 107.563 166.825 107.563 166.825 107.563C166.825 107.563 166.825 107.562 166.188 107.369ZM161.463 115.033L160.991 114.563L115.492 160.221L115.964 160.691L116.435 161.161L161.935 115.503L161.463 115.033ZM118.019 112.951C118.684 112.979 118.684 112.979 118.684 112.979C118.684 112.979 118.684 112.978 118.684 112.978C118.685 112.977 118.685 112.976 118.685 112.975C118.685 112.972 118.685 112.968 118.685 112.962C118.686 112.951 118.686 112.934 118.687 112.912C118.689 112.868 118.692 112.803 118.695 112.717C118.702 112.547 118.713 112.295 118.726 111.974C118.753 111.332 118.791 110.411 118.837 109.294C118.928 107.06 119.049 104.043 119.171 100.91C119.414 94.6543 119.658 87.9087 119.658 86.0413H118.992H118.326C118.326 87.8754 118.084 94.5847 117.84 100.858C117.719 103.99 117.597 107.007 117.506 109.24C117.46 110.357 117.422 111.277 117.396 111.919C117.382 112.24 117.372 112.491 117.365 112.662C117.361 112.747 117.358 112.813 117.357 112.857C117.356 112.879 117.355 112.895 117.354 112.907C117.354 112.912 117.354 112.916 117.354 112.919C117.354 112.921 117.354 112.922 117.354 112.922C117.354 112.923 117.354 112.923 117.354 112.923C117.354 112.923 117.354 112.923 118.019 112.951ZM118.992 86.0413H119.658C119.658 81.9336 119.215 78.6922 119.1 76.5084C119.04 75.3834 119.067 74.563 119.231 73.969C119.382 73.4168 119.639 73.0956 120.069 72.8931L119.786 72.2906L119.502 71.6881C118.66 72.0846 118.182 72.7578 117.946 73.6164C117.722 74.4331 117.71 75.4397 117.77 76.5787C117.894 78.923 118.326 81.9581 118.326 86.0413H118.992ZM119.786 72.2906L120.069 72.8931C120.624 72.632 121.084 72.5541 121.48 72.6046C121.87 72.6545 122.263 72.8379 122.672 73.2168C123.522 74.0041 124.356 75.5531 125.206 78.0639L125.837 77.8503L126.468 77.6366C125.608 75.0997 124.689 73.2699 123.577 72.2398C123.005 71.71 122.364 71.3751 121.649 71.2835C120.938 71.1927 120.22 71.3502 119.502 71.6881L119.786 72.2906ZM125.837 77.8503L125.206 78.0639C126.043 80.5333 126.677 83.822 127.191 86.7146C127.446 88.1492 127.672 89.4928 127.877 90.5597C127.979 91.0945 128.078 91.5707 128.175 91.9631C128.268 92.3431 128.369 92.688 128.486 92.9347L129.088 92.6505L129.69 92.3664C129.635 92.2496 129.559 92.017 129.468 91.6453C129.38 91.2858 129.286 90.8357 129.185 90.3091C128.983 89.2535 128.76 87.9344 128.502 86.4815C127.99 83.5995 127.341 80.215 126.468 77.6366L125.837 77.8503ZM129.088 92.6505L128.486 92.9347C129.248 94.5505 135.678 103.4 134.757 113.637L135.42 113.696L136.084 113.756C137.047 103.044 130.3 93.6583 129.69 92.3664L129.088 92.6505Z\" fill=\"var(--outline)\"/><path d=\"M141.01 121.646C140.216 121.646 139.51 121.144 139.238 120.397L118.5 57.4529C118.265 56.7925 118.347 56.0502 118.726 55.4563L120 53.9529L141 117.453C141.737 118.371 142.264 118.626 143.5 118.453L176.714 114.316L176.137 116.799C175.876 117.178 175.461 117.429 175.005 117.485L141.245 121.626C141.163 121.636 141.087 121.641 141.005 121.641L141.01 121.646Z\" fill=\"var(--device)\"/><path d=\"M176.964 113.508L176.265 116.025C176.07 116.729 175.471 117.247 174.746 117.34L141.6 121.577C140.499 121.717 139.454 121.057 139.109 120.002L118.363 56.542C118.238 56.1576 118.339 55.7353 118.626 55.4499L120.362 53.7203L176.964 113.508Z\" stroke=\"var(--outline)\" stroke-width=\"1.33181\"/><path d=\"M142.746 118.551C141.896 118.551 141.128 118.013 140.842 117.21L120.378 54.8859C120.245 54.5071 120.291 54.0975 120.501 53.7597C120.71 53.4218 121.064 53.2016 121.463 53.1607L154.129 49.6647C154.191 49.6595 154.247 49.6544 154.309 49.6544C155.036 49.6544 155.681 50.1152 155.916 50.8063L177.21 111.835C177.405 112.413 177.328 113.038 177.001 113.55C176.673 114.062 176.135 114.394 175.531 114.461L142.961 118.536C142.889 118.546 142.961 118.536 142.746 118.546V118.551Z\" fill=\"var(--screen)\"/><path d=\"M153.71 49.8229C154.778 49.7136 155.781 50.354 156.131 51.3688L177.074 112.021C177.45 113.11 176.731 114.269 175.588 114.416L143.334 118.542C142.234 118.682 141.188 118.021 140.843 116.966L120.435 54.5387C120.223 53.8893 120.665 53.21 121.344 53.1403L153.71 49.8229Z\" stroke=\"var(--outline)\" stroke-width=\"1.33181\"/><path d=\"M144.504 83.0538L148.31 85.5958L153.334 77.4922M158.953 80.5659C159.608 86.0094 155.726 90.953 150.283 91.6078C144.839 92.2625 139.895 88.3805 139.241 82.937C138.586 77.4935 142.468 72.5499 147.911 71.8952C153.355 71.2404 158.299 75.1225 158.953 80.5659Z\" stroke=\"var(--screen-content)\" stroke-width=\"1.4891\"/><path d=\"M172.669 98.5225L171.548 95.2205C171.548 95.2205 164.012 91.13 164.012 86.6659C164.012 82.2018 166.649 81.3417 168.809 82.3502C170.969 83.3588 175.618 87.8485 175.669 90.7102C175.72 93.572 175.423 95.845 172.669 98.5225Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M176.805 111.039L175.684 107.737C175.684 107.737 168.148 103.647 168.148 99.1829C168.148 94.7188 170.785 93.8587 172.945 94.8672C175.106 95.8757 179.754 100.365 179.805 103.227C179.851 106.089 179.56 108.362 176.805 111.039Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/></svg>", "returns-start": "<svg width=\"342\" height=\"176\" viewBox=\"0 0 342 176\" fill=\"none\"><style> svg { --dialog: #CBD7C6; --dialog-header: #B8C9B2; --dialog-controls: #9FB596; --screen: #527A42; --screen-content: #FFFFFF; --sign: #E5EBE3; --sign-outline: #86A27B; --outline: #282828; --device: #686868; --skin: #FFFFFF; } svg[data-theme=\"dark\"] { --dialog: #515E51; --dialog-header: #5F705C; --dialog-controls: #73896C; --screen: #527A42; --screen-content: #E7E4E2; --sign: #515E51; --sign-outline: #86A27B; --outline: #141414; --device: #686868; --skin: #E7E4E2; }</style><rect x=\"62\" y=\"36\" width=\"218\" height=\"103\" fill=\"var(--dialog)\"/><path d=\"M62 36L280 36V52H62V36Z\" fill=\"var(--dialog-header)\"/><path d=\"M71.6816 41C73.2787 41.0001 74.5732 42.2955 74.5732 43.8926C74.5731 45.4895 73.2786 46.7841 71.6816 46.7842C70.0846 46.7842 68.7902 45.4896 68.79 43.8926C68.79 42.2954 70.0845 41 71.6816 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M80.2305 41C81.8276 41 83.123 42.2954 83.123 43.8926C83.1229 45.4896 81.8275 46.7842 80.2305 46.7842C78.6336 46.784 77.339 45.4895 77.3389 43.8926C77.3389 42.2955 78.6335 41.0002 80.2305 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M88.7803 41C90.3773 41.0001 91.6719 42.2955 91.6719 43.8926C91.6717 45.4895 90.3773 46.7841 88.7803 46.7842C87.1832 46.7842 85.8888 45.4896 85.8887 43.8926C85.8887 42.2954 87.1831 41 88.7803 41Z\" fill=\"var(--dialog-controls)\"/><circle cx=\"220.676\" cy=\"41.0782\" r=\"34.3911\" fill=\"var(--sign)\" stroke=\"var(--sign-outline)\" stroke-width=\"1.98357\"/><path d=\"M212.43 54.797L204.992 47.3586L212.43 39.9202M204.992 47.3586H234.745V29.5065H213.918\" stroke=\"var(--sign-outline)\" stroke-width=\"1.98357\"/><path d=\"M104.361 128.718C109.811 123.214 113.5 119.453 117 113.953L118 85.9528L117.5 76.4528C117 72.9528 121 71.9528 123 74.9528L134.143 105.017L163.553 72.2565L167.151 70.147L169.633 70.7674L171.371 73.9938L170.75 77.2202L166.903 82.8043L156.48 119.908L118.5 157.953L114.909 161.953C107.961 164.123 103.525 162.909 94.9998 157.953C87.3534 150.89 85.1243 147.461 86.6159 142.741L104.361 128.718Z\" fill=\"var(--skin)\"/><path d=\"M159.075 76.0015C161.696 73.5851 164.195 71.2507 164.727 70.4725C166.458 67.9589 164.077 62.1739 160.586 63.8326C157.97 65.0766 154.36 68.1227 154.36 68.1227L159.075 76.0015Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M87.3057 142.391L87.727 142.906C87.7369 142.898 87.7467 142.89 87.7561 142.881L87.3057 142.391ZM87.4549 149.91L88.0292 149.572V149.572L87.4549 149.91ZM101.831 161.577L102.056 160.951L101.831 161.577ZM114.964 161.691L115.379 162.212C115.399 162.196 115.418 162.179 115.435 162.161L114.964 161.691ZM117.019 113.951L117.598 114.28C117.65 114.188 117.68 114.085 117.684 113.979L117.019 113.951ZM165.311 70.9565L165.755 71.4525L165.756 71.4523L165.311 70.9565ZM169.954 78.4974L170.491 78.8912L170.491 78.8911L169.954 78.4974ZM161.21 92.0281L160.637 91.69L160.499 91.9229L160.563 92.1856L161.21 92.0281ZM165.188 108.369L165.825 108.562L165.878 108.388L165.835 108.212L165.188 108.369ZM160.463 116.033L160.935 116.503L160.942 116.496L160.948 116.489L160.463 116.033ZM87.3057 142.391L86.8844 141.875C85.7357 142.813 85.33 144.236 85.403 145.711C85.4759 147.184 86.0236 148.786 86.8806 150.247L87.4549 149.91L88.0292 149.572C87.2528 148.25 86.793 146.854 86.7331 145.645C86.6734 144.437 87.0098 143.492 87.727 142.906L87.3057 142.391ZM87.4549 149.91L86.8806 150.247C89.1927 154.186 94.415 159.617 101.605 162.204L101.831 161.577L102.056 160.951C95.2006 158.484 90.2076 153.284 88.0292 149.572L87.4549 149.91ZM101.831 161.577L101.605 162.204C104.191 163.134 106.93 163.671 109.355 163.72C111.751 163.768 113.964 163.342 115.379 162.212L114.964 161.691L114.548 161.171C113.499 162.009 111.672 162.434 109.382 162.388C107.12 162.343 104.524 161.839 102.056 160.951L101.831 161.577ZM87.3057 142.391L87.7561 142.881C88.6322 142.076 90.4875 140.649 92.9369 138.736C95.3691 136.837 98.3507 134.487 101.431 131.868C107.573 126.648 114.181 120.301 117.598 114.28L117.019 113.951L116.44 113.623C113.15 119.421 106.705 125.637 100.569 130.853C97.5101 133.453 94.5464 135.79 92.1172 137.686C89.7051 139.57 87.7828 141.048 86.8552 141.9L87.3057 142.391ZM145 94.9528C145.523 95.366 145.523 95.3659 145.523 95.3658C145.523 95.3657 145.523 95.3655 145.523 95.3653C145.523 95.3648 145.524 95.3642 145.525 95.3632C145.526 95.3614 145.528 95.3587 145.531 95.3551C145.537 95.3478 145.545 95.337 145.557 95.3228C145.579 95.2942 145.613 95.2518 145.657 95.1964C145.745 95.0854 145.874 94.9223 146.039 94.7136C146.369 94.2961 146.844 93.696 147.423 92.9658C148.579 91.5053 150.149 89.5242 151.8 87.4415C155.104 83.2746 158.733 78.7056 160.044 77.0832L159.526 76.6647L159.008 76.2462C157.693 77.8746 154.059 82.4496 150.757 86.614C149.105 88.697 147.535 90.6784 146.379 92.139C145.8 92.8693 145.325 93.4694 144.995 93.887C144.829 94.0958 144.7 94.2589 144.612 94.3698C144.569 94.4253 144.535 94.4677 144.512 94.4963C144.501 94.5106 144.493 94.5214 144.487 94.5286C144.484 94.5322 144.482 94.535 144.48 94.5368C144.48 94.5377 144.479 94.5384 144.479 94.5388C144.479 94.5391 144.478 94.5392 144.478 94.5394C144.478 94.5395 144.478 94.5395 145 94.9528ZM159.526 76.6647L160.044 77.0832C162.626 73.8874 163.946 73.0739 165.755 71.4525L165.311 70.9565L164.867 70.4606C163.134 72.0132 161.679 72.9404 159.008 76.2462L159.526 76.6647ZM165.311 70.9565L165.756 71.4523C166.433 70.8448 167.162 70.6877 167.836 70.817C168.53 70.9499 169.221 71.3987 169.745 72.0987C170.78 73.4799 171.115 75.7868 169.417 78.1038L169.954 78.4974L170.491 78.8911C172.53 76.1092 172.203 73.1584 170.811 71.3003C170.122 70.3807 169.159 69.7143 168.087 69.5089C166.996 69.2998 165.847 69.5811 164.866 70.4607L165.311 70.9565ZM169.954 78.4974L169.417 78.1037C167.439 80.8015 165.243 84.201 163.545 86.918C162.695 88.2782 161.969 89.4705 161.454 90.3229C161.197 90.7491 160.993 91.0905 160.853 91.3255C160.783 91.443 160.729 91.5339 160.692 91.5956C160.674 91.6264 160.66 91.6499 160.651 91.6657C160.646 91.6737 160.643 91.6797 160.64 91.6837C160.639 91.6858 160.638 91.6873 160.638 91.6884C160.637 91.6889 160.637 91.6893 160.637 91.6896C160.637 91.6897 160.637 91.6898 160.637 91.6899C160.637 91.69 160.637 91.69 161.21 92.0281C161.784 92.3661 161.784 92.3661 161.784 92.3661C161.784 92.366 161.784 92.3659 161.784 92.3658C161.784 92.3656 161.785 92.3652 161.785 92.3648C161.785 92.3638 161.786 92.3624 161.787 92.3605C161.79 92.3566 161.793 92.3508 161.798 92.3431C161.807 92.3277 161.82 92.3047 161.838 92.2743C161.874 92.2136 161.928 92.1236 161.997 92.0071C162.136 91.774 162.339 91.4349 162.595 91.011C163.106 90.1631 163.829 88.9768 164.675 87.6237C166.367 84.9141 168.543 81.5483 170.491 78.8912L169.954 78.4974ZM161.21 92.0281L160.563 92.1856L164.541 108.527L165.188 108.369L165.835 108.212L161.857 91.8706L161.21 92.0281ZM165.188 108.369C164.551 108.176 164.551 108.176 164.551 108.176C164.551 108.176 164.551 108.176 164.551 108.176C164.551 108.175 164.551 108.175 164.551 108.175C164.551 108.175 164.551 108.176 164.551 108.176C164.551 108.177 164.55 108.179 164.549 108.182C164.547 108.187 164.544 108.196 164.54 108.209C164.532 108.235 164.519 108.274 164.501 108.327C164.465 108.432 164.408 108.59 164.329 108.793C164.17 109.198 163.921 109.781 163.563 110.481C162.847 111.883 161.699 113.743 159.977 115.577L160.463 116.033L160.948 116.489C162.774 114.544 163.989 112.573 164.749 111.087C165.129 110.344 165.396 109.72 165.569 109.278C165.655 109.058 165.718 108.882 165.76 108.76C165.781 108.699 165.797 108.652 165.808 108.618C165.813 108.602 165.817 108.589 165.82 108.579C165.822 108.575 165.823 108.571 165.824 108.568C165.824 108.567 165.824 108.565 165.825 108.564C165.825 108.564 165.825 108.564 165.825 108.563C165.825 108.563 165.825 108.563 165.825 108.563C165.825 108.563 165.825 108.562 165.188 108.369ZM160.463 116.033L159.991 115.563L114.492 161.221L114.964 161.691L115.435 162.161L160.935 116.503L160.463 116.033ZM117.019 113.951C117.684 113.979 117.684 113.979 117.684 113.979C117.684 113.979 117.684 113.978 117.684 113.978C117.685 113.977 117.685 113.976 117.685 113.975C117.685 113.972 117.685 113.968 117.685 113.962C117.686 113.951 117.686 113.934 117.687 113.912C117.689 113.868 117.692 113.803 117.695 113.717C117.702 113.547 117.713 113.295 117.726 112.974C117.753 112.332 117.791 111.411 117.837 110.294C117.928 108.06 118.049 105.043 118.171 101.91C118.414 95.6543 118.658 88.9087 118.658 87.0413H117.992H117.326C117.326 88.8754 117.084 95.5847 116.84 101.858C116.719 104.99 116.597 108.007 116.506 110.24C116.46 111.357 116.422 112.277 116.396 112.919C116.382 113.24 116.372 113.491 116.365 113.662C116.361 113.747 116.358 113.813 116.357 113.857C116.356 113.879 116.355 113.895 116.354 113.907C116.354 113.912 116.354 113.916 116.354 113.919C116.354 113.921 116.354 113.922 116.354 113.922C116.354 113.923 116.354 113.923 116.354 113.923C116.354 113.923 116.354 113.923 117.019 113.951ZM117.992 87.0413H118.658C118.658 82.9336 118.215 79.6922 118.1 77.5084C118.04 76.3834 118.067 75.563 118.231 74.969C118.382 74.4168 118.639 74.0956 119.069 73.8931L118.786 73.2906L118.502 72.6881C117.66 73.0846 117.182 73.7578 116.946 74.6164C116.722 75.4331 116.71 76.4397 116.77 77.5787C116.894 79.923 117.326 82.9581 117.326 87.0413H117.992ZM118.786 73.2906L119.069 73.8931C119.624 73.632 120.084 73.5541 120.48 73.6046C120.87 73.6545 121.263 73.8379 121.672 74.2168C122.522 75.0041 123.356 76.5531 124.206 79.0639L124.837 78.8503L125.468 78.6366C124.608 76.0997 123.689 74.2699 122.577 73.2398C122.005 72.71 121.364 72.3751 120.649 72.2835C119.938 72.1927 119.22 72.3502 118.502 72.6881L118.786 73.2906ZM124.837 78.8503L124.206 79.0639C125.043 81.5333 125.677 84.822 126.191 87.7146C126.446 89.1492 126.672 90.4928 126.877 91.5597C126.979 92.0945 127.078 92.5707 127.175 92.9631C127.268 93.3431 127.369 93.688 127.486 93.9347L128.088 93.6505L128.69 93.3664C128.635 93.2496 128.559 93.017 128.468 92.6453C128.38 92.2858 128.286 91.8357 128.185 91.3091C127.983 90.2535 127.76 88.9344 127.502 87.4815C126.99 84.5995 126.341 81.215 125.468 78.6366L124.837 78.8503ZM128.088 93.6505L127.486 93.9347C128.248 95.5505 134.678 104.4 133.757 114.637L134.42 114.696L135.084 114.756C136.047 104.044 129.3 94.6583 128.69 93.3664L128.088 93.6505Z\" fill=\"var(--outline)\"/><path d=\"M140.01 122.646C139.216 122.646 138.51 122.144 138.238 121.397L117.5 58.4529C117.265 57.7925 117.347 57.0502 117.726 56.4563L119 54.9529L140 118.453C140.737 119.371 141.264 119.626 142.5 119.453L175.714 115.316L175.137 117.799C174.876 118.178 174.461 118.429 174.005 118.485L140.245 122.626C140.163 122.636 140.087 122.641 140.005 122.641L140.01 122.646Z\" fill=\"var(--device)\"/><path d=\"M175.964 114.508L175.265 117.025C175.07 117.729 174.471 118.247 173.746 118.34L140.6 122.577C139.499 122.717 138.454 122.057 138.109 121.002L117.363 57.542C117.238 57.1576 117.339 56.7353 117.626 56.4499L119.362 54.7203L175.964 114.508Z\" stroke=\"var(--outline)\" stroke-width=\"1.33181\"/><path d=\"M141.746 119.551C140.896 119.551 140.128 119.013 139.842 118.21L119.378 55.8859C119.245 55.5071 119.291 55.0975 119.501 54.7597C119.71 54.4218 120.064 54.2016 120.463 54.1607L153.129 50.6647C153.191 50.6595 153.247 50.6544 153.309 50.6544C154.036 50.6544 154.681 51.1152 154.916 51.8063L176.21 112.835C176.405 113.413 176.328 114.038 176.001 114.55C175.673 115.062 175.135 115.394 174.531 115.461L141.961 119.536C141.889 119.546 141.961 119.536 141.746 119.546V119.551Z\" fill=\"var(--screen)\"/><path d=\"M152.71 50.8229C153.778 50.7136 154.781 51.354 155.131 52.3688L176.074 113.021C176.45 114.11 175.731 115.269 174.588 115.416L142.334 119.542C141.234 119.682 140.188 119.021 139.843 117.966L119.435 55.5387C119.223 54.8893 119.665 54.21 120.344 54.1403L152.71 50.8229Z\" stroke=\"var(--outline)\" stroke-width=\"1.33181\"/><path d=\"M171.669 99.5225L170.548 96.2205C170.548 96.2205 163.012 92.13 163.012 87.6659C163.012 83.2018 165.649 82.3417 167.809 83.3502C169.969 84.3588 174.618 88.8485 174.669 91.7102C174.72 94.572 174.423 96.845 171.669 99.5225Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M175.805 112.039L174.684 108.737C174.684 108.737 167.148 104.647 167.148 100.183C167.148 95.7188 169.785 94.8587 171.945 95.8672C174.106 96.8757 178.754 101.365 178.805 104.227C178.851 107.089 178.56 109.362 175.805 112.039Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M150.31 77.5614L139.06 75.0084L141.12 73.47L152.593 76.0137L153.866 79.761L151.704 81.5272L150.31 77.5614Z\" fill=\"var(--screen-content)\"/><path d=\"M134.496 78.4159L138.97 91.73L150.614 94.4252M134.496 78.4159L146.111 81.0924M134.496 78.4159L144.361 70.6538L155.896 73.349M155.896 73.349L160.424 86.6631L150.614 94.4252M155.896 73.349L146.111 81.0924M150.614 94.4252L146.111 81.0924\" stroke=\"white\" stroke-width=\"1.32445\"/></svg>", "rewards-gift": "<svg width=\"342\" height=\"176\" viewBox=\"0 0 342 176\" fill=\"none\"><style> svg { --dialog: #CBD7C6; --dialog-header: #B8C9B2; --dialog-controls: #9FB596; --object: #FFFFFF; --object-outline: #86A27B; --decor-1: #527A42; --decor-2: #86A27B; } svg[data-theme=\"dark\"] { --dialog: #515E51; --dialog-header: #5F705C; --dialog-controls: #73896C; --object: #E7E4E2; --object-outline: #7C9372; --decor-1: #527A42; --decor-2: #7C9372; }</style><rect x=\"62\" y=\"36.0471\" width=\"218\" height=\"103\" fill=\"var(--dialog)\"/><path d=\"M62 36.0471L280 36.0471V52.0471H62V36.0471Z\" fill=\"var(--dialog-header)\"/><path d=\"M71.6816 41.0471C73.2787 41.0472 74.5732 42.3426 74.5732 43.9397C74.5731 45.5367 73.2786 46.8312 71.6816 46.8313C70.0846 46.8313 68.7902 45.5367 68.79 43.9397C68.79 42.3425 70.0845 41.0471 71.6816 41.0471Z\" fill=\"var(--dialog-controls)\"/><path d=\"M80.2305 41.0471C81.8276 41.0471 83.123 42.3425 83.123 43.9397C83.1229 45.5367 81.8275 46.8313 80.2305 46.8313C78.6336 46.8311 77.339 45.5366 77.3389 43.9397C77.3389 42.3426 78.6335 41.0473 80.2305 41.0471Z\" fill=\"var(--dialog-controls)\"/><path d=\"M88.7803 41.0471C90.3773 41.0472 91.6719 42.3426 91.6719 43.9397C91.6717 45.5367 90.3773 46.8312 88.7803 46.8313C87.1832 46.8313 85.8888 45.5367 85.8887 43.9397C85.8887 42.3425 87.1831 41.0471 88.7803 41.0471Z\" fill=\"var(--dialog-controls)\"/><path d=\"M235.524 24.4146V34.3648M235.524 50.5336V60.4838M253.457 42.6563H243.676M227.781 42.6563H218\" stroke=\"var(--decor-1)\" stroke-width=\"2.03778\" stroke-miterlimit=\"10\"/><path d=\"M101.678 103.762V110.96M101.678 122.657V129.855M114.649 116.958H107.573M96.0759 116.958H89\" stroke=\"var(--decor-2)\" stroke-width=\"2.01176\" stroke-miterlimit=\"10\"/><path d=\"M173 43L218 59.5V71.5L213 74L213.023 107.336L173.75 126L134 108.009V74L129 71.5V59.6219L173 43Z\" fill=\"var(--object)\" stroke=\"var(--object-outline)\" stroke-width=\"1.28698\"/><path d=\"M218 59.5L174 78.2081L129 60M134 74L174 91L213 74M174 77.7812L174 126\" stroke=\"var(--object-outline)\" stroke-width=\"1.28698\"/><path d=\"M187.968 48.4219L173.114 54.4932L158.831 49.0791L158.804 49.0684L158.775 49.0771L147.63 52.793L147.409 52.8662L162.632 58.7783L145.397 65.8242L145.346 65.8457V113.555L145.396 113.577L155.782 118.077L155.9 118.128V70.3789L173.39 62.958L192.499 70.3818V116.907L192.464 116.925L192.5 117.084H192.667V117.013L203.006 112.076L203.054 112.053V65.8438L202.999 65.8232L183.795 58.542L199.033 52.0771L199.241 51.9883L199.025 51.9199L188.025 48.4199L187.996 48.4111L187.968 48.4219Z\" fill=\"var(--object-outline)\"/></svg>", "success-hands": "<svg width=\"342\" height=\"176\" viewBox=\"0 0 342 176\" fill=\"none\"><style> svg { --dialog: #CBD7C6; --dialog-header: #B8C9B2; --dialog-controls: #9FB596; --screen: #527A42; --screen-content: #FFFFFF; --outline: #282828; --skin: #FFFFFF; --decor-0: #527A42; --decor-1: #8EA985; --decor-2: #86A27B; --decor-3: #FFFFFF; } svg[data-theme=\"dark\"] { --dialog: #515E51; --dialog-header: #5F705C; --dialog-controls: #73896C; --screen: #527A42; --screen-content: #E7E4E2; --outline: #141414; --skin: #E7E4E2; --decor-0: #527A42; --decor-1: #7C9372; --decor-2: #7C9372; --decor-3: #E7E4E2; }</style><rect x=\"62\" y=\"36\" width=\"218\" height=\"103\" fill=\"var(--dialog)\"/><path d=\"M62 36L280 36V52H62V36Z\" fill=\"var(--dialog-header)\"/><path d=\"M71.6816 41C73.2787 41.0001 74.5732 42.2955 74.5732 43.8926C74.5731 45.4895 73.2786 46.7841 71.6816 46.7842C70.0846 46.7842 68.7902 45.4896 68.79 43.8926C68.79 42.2954 70.0845 41 71.6816 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M80.2305 41C81.8276 41 83.123 42.2954 83.123 43.8926C83.1229 45.4896 81.8275 46.7842 80.2305 46.7842C78.6336 46.784 77.339 45.4895 77.3389 43.8926C77.3389 42.2955 78.6335 41.0002 80.2305 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M88.7803 41C90.3773 41.0001 91.6719 42.2955 91.6719 43.8926C91.6717 45.4895 90.3773 46.7841 88.7803 46.7842C87.1832 46.7842 85.8888 45.4896 85.8887 43.8926C85.8887 42.2954 87.1831 41 88.7803 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M170.542 58.8298C169 70.4999 168.174 77.2913 163.025 89.1868L173.811 85.0873C176.5 84.4999 181 88.4999 173.395 93.9097L156.5 104C147.456 109.967 141.865 115.705 131.5 127.5L117.976 142.755C112.225 144.754 104 139.5 99.9996 134.5C94.9996 128.25 92.9447 120.323 95.9558 117.338C114.038 108.148 122.038 102.209 129.844 89.2632L134.295 66.7589L135.825 50.3769C137.865 46.797 139.077 45.3539 141.969 49.1978L143.5 63.9998L145.5 47.4998C146 41.4998 151.5 40.9998 152.5 46.4998L153 64.4998C154.145 57.2828 154.771 53.2238 156.5 46.4998C157.585 42.2798 162.5 41.9998 162.5 47.4998L162 64.9998L164.218 57.274C166 51.4999 170.542 51.9999 170.542 58.8298Z\" fill=\"var(--skin)\"/><path d=\"M143.176 75.569C145.81 78.5121 150.593 86.1157 148.644 92.9852\" stroke=\"var(--outline)\" stroke-width=\"1.33279\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M152.449 70.2076L152.565 60.3582C152.565 60.3582 152.624 54.4555 152.565 52.7272C152.506 50.9988 152.496 47.4543 152.278 45.9937C152.059 44.5332 151.073 42.6619 148.845 42.5447C146.729 42.4334 145.756 45.3625 145.32 48.1261L143.749 65.9694C143.075 73.8912 143.247 62.6018 142.778 55.9839C142.367 50.1758 142.142 48.5219 140.753 47.4013C139.937 46.7422 139.219 46.7293 138.258 47.1246C136.913 47.6778 136.057 49.8051 135.865 51.1423L134.382 65.6174C134.268 67.1622 133.374 71.455 132.842 73.8912C131.367 80.6323 131.627 83.447 130.11 88.228C128.388 93.657 122.502 99.1776 118.843 102.683C113.109 108.176 102.41 114.304 96.6871 116.942C95.0541 117.695 93.0512 119.597 95.6056 126.681C97.3224 131.442 100.712 136.119 104.649 138.921C108.646 141.766 115.496 145.042 118.085 142.139C122.044 137.724 132.095 127.141 138.202 120.134C144.308 113.128 149.201 109.108 150.884 107.974C150.884 107.974 153.601 105.238 161.802 100.809C170.002 96.3794 171.371 95.5016 175.44 92.1198C179.51 88.738 177.282 84.3154 173.707 85.2827C170.132 86.2499 164.952 89.0189 162.566 89.7754C162.566 89.7754 167.08 81.451 168.881 69.7288C170.226 60.9758 171.06 56.9805 169.969 55.0008C168.208 51.8052 166.029 53.4565 165.171 55.1778C164.401 56.523 162.01 65.3731 161.117 69.9203M160.447 74.2433C161.716 66.6951 161.749 61.1104 162.041 57.777C162.333 54.4436 163.5 45.3204 161.368 43.9738C161.368 43.9738 160.167 43.0183 158.726 43.6112C157.284 44.2041 156.514 47.0653 155.914 48.885C155.314 50.7047 154.692 54.1407 154.394 55.6565C154.096 57.1722 152.683 66.7479 152.683 66.7479\" stroke=\"var(--outline)\" stroke-width=\"1.33279\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M193.999 124C200.747 137.801 205.26 147.088 213.748 164.569C216.193 167.357 224.522 167.773 231.928 163.335C243.026 156.684 240.499 150 240.499 150L225.698 130.918L218.759 120.914C214.854 108.644 213.471 101.814 212.264 89.7325C213.017 77.6931 213.558 75.4244 214.499 70.5C214.637 68.1784 214.261 67.3379 212.499 67C210.397 67.6626 209.715 68.7413 208.9 71.2178L208.485 64.1367C208.409 61.9753 207.953 61.1106 205.999 60.5C203.683 61.1993 203.088 62.8938 201.879 65.6372L200.756 59.6414C200.15 57.7711 199.582 57.0316 197.65 56.9135C195.449 57.075 194.365 57.5459 193.499 61L192.488 71.7504L192.586 83.0799L190.552 69.3054C189.489 65.954 188.703 64.5096 185.999 65C183.593 65.5891 182.661 66.9591 181.999 72C181.576 83.055 182.11 89.9772 184.499 103.5L177.17 101.742C174.933 101.36 173.865 101.623 172.499 103C171.851 105.068 172.304 106.063 173.745 107.709L182.965 115.381L193.999 124Z\" fill=\"var(--skin)\"/><path d=\"M213.527 164.436C209.27 155.996 200.977 138.036 199.455 134.583C197.718 130.638 195.027 125.223 194.146 124.233L185.694 117.498C181.787 114.749 174.524 108.786 173.909 108.105C172.904 106.993 171.946 105.874 171.995 104.396C172.111 100.913 176.832 101.581 178.008 101.723L183.615 103.416L189.648 105.151M184.452 103.397C183.783 98.415 182.378 87.4723 182.117 83.5583C181.855 79.6443 181.782 73.4073 182.329 70.5194C182.718 68.4645 183.39 65.6141 185.594 64.8905C188.387 63.9735 189.362 66.2248 190.071 67.9823C190.779 69.7398 191.394 74.9353 191.987 78.9476C192.579 82.9599 192.756 84.945 193.082 86.3674C193.408 87.7898 194.218 90.7072 194.218 90.7072C194.406 91.6214 195.056 92.0925 195.816 92.1531M204.016 88.6394C203.636 88.4794 203.242 88.1863 203.083 87.3065C203.083 87.3065 202.263 81.337 202.078 79.2802C201.653 74.5599 201.517 69.7413 201.517 69.7413C201.214 64.8493 201.439 62.9528 200.92 60.0045C200.4 57.0561 198.222 56.5137 197.399 56.6351C196.577 56.7566 195.241 56.9539 194.25 58.7807C193.259 60.6076 192.923 64.0184 192.697 66.0474C192.471 68.0764 192.558 70.7946 192.454 73.6459C192.349 76.4973 192.977 85.0175 192.977 85.0175M201.629 72.4346C201.966 63.008 203.975 61.3365 205.148 60.7431C207.023 59.7945 208.136 61.7722 208.36 62.5795C208.585 63.3867 208.715 65.4693 208.68 67.365C208.645 69.2607 208.476 72.3176 208.363 76.5358C208.251 80.7539 208.828 84.6601 208.828 84.6601C208.925 85.3198 209.051 85.8111 209.523 86.1311M208.801 71.9674C210.425 67.3162 210.867 67.4611 211.864 67.1037C212.862 66.7463 214.217 67.3865 214.384 68.5173C214.551 69.6482 213.764 74.2806 213.764 74.2806C213.764 74.2806 212.732 82.9408 212.507 84.9698C212.281 86.9988 212.245 91.7309 213.531 99.7337C214.818 107.736 216.657 114.502 216.657 114.502C216.657 114.502 217.718 118.127 219.425 121.866C221.133 125.605 239.807 149.137 239.807 149.137C241.508 150.762 241.061 153.286 239.03 156.893C237 160.5 230.133 165.803 223.063 166.589C215.993 167.374 214.292 165.869 213.412 164.12\" stroke=\"var(--outline)\" stroke-width=\"1.33279\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M182.489 2.01184V11.7932M182.489 27.6878V37.4692M200.422 19.9443H190.64M174.746 19.9443H164.964\" stroke=\"var(--decor-0)\" stroke-width=\"2.03778\" stroke-miterlimit=\"10\"/><path d=\"M243.091 94.05V97.9348M243.091 104.248V108.133M250.213 101.172H246.328M240.016 101.172H236.131\" stroke=\"var(--decor-1)\" stroke-width=\"1.25735\" stroke-miterlimit=\"10\"/><path d=\"M96.6688 57.084V64.1598M96.6688 75.6583V82.7342M109.641 70.0561H102.565M91.0671 70.0561H83.9912\" stroke=\"var(--decor-2)\" stroke-width=\"2.01176\" stroke-miterlimit=\"10\"/><path d=\"M241.789 44.2588C245.204 50.8335 245.733 53.4233 251.622 56.2037C245.734 59.4529 245.287 62.119 241.789 68.1485C238.611 61.76 238.129 59.0973 231.956 56.2037C238.592 53.5698 239.026 50.9004 241.789 44.2588Z\" fill=\"var(--decor-3)\"/></svg>", "success-phone": "<svg width=\"342\" height=\"176\" viewBox=\"0 0 342 176\" fill=\"none\"><style> svg { --dialog: #CBD7C6; --dialog-header: #B8C9B2; --dialog-controls: #9FB596; --screen: #527A42; --screen-content: #FFFFFF; --outline: #282828; --skin: #FFFFFF; --decor-1: #8EA985; --decor-2: #86A27B; --decor-3: #FFFFFF; } svg[data-theme=\"dark\"] { --dialog: #515E51; --dialog-header: #5F705C; --dialog-controls: #73896C; --screen: #527A42; --screen-content: #E7E4E2; --outline: #141414; --skin: #E7E4E2; --decor-1: #7C9372; --decor-2: #7C9372; --decor-3: #E7E4E2; }</style><rect x=\"62\" y=\"36\" width=\"218\" height=\"103\" fill=\"var(--dialog)\"/><path d=\"M62 36L280 36V52H62V36Z\" fill=\"var(--dialog-header)\"/><path d=\"M71.6816 41C73.2787 41.0001 74.5732 42.2955 74.5732 43.8926C74.5731 45.4895 73.2786 46.7841 71.6816 46.7842C70.0846 46.7842 68.7902 45.4896 68.79 43.8926C68.79 42.2954 70.0845 41 71.6816 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M80.2305 41C81.8276 41 83.123 42.2954 83.123 43.8926C83.1229 45.4896 81.8275 46.7842 80.2305 46.7842C78.6336 46.784 77.339 45.4895 77.3389 43.8926C77.3389 42.2955 78.6335 41.0002 80.2305 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M88.7803 41C90.3773 41.0001 91.6719 42.2955 91.6719 43.8926C91.6717 45.4895 90.3773 46.7841 88.7803 46.7842C87.1832 46.7842 85.8888 45.4896 85.8887 43.8926C85.8887 42.2954 87.1831 41 88.7803 41Z\" fill=\"var(--dialog-controls)\"/><path d=\"M221.302 97.4988V101.381M221.302 107.689V111.571M228.419 104.616H224.537M218.229 104.616H214.347\" stroke=\"var(--decor-2)\" stroke-width=\"1.25643\" stroke-miterlimit=\"10\"/><path d=\"M121.978 66.5908V73.6615M121.978 85.1515V92.2222M134.941 79.5535H127.87M116.38 79.5535H109.31\" stroke=\"var(--decor-1)\" stroke-width=\"2.01029\" stroke-miterlimit=\"10\"/><path d=\"M221.257 43.7238C224.67 50.2937 225.198 52.8816 231.083 55.6599C225.199 58.9067 224.753 61.5709 221.257 67.5959C218.082 61.2121 217.6 58.5514 211.431 55.6599C218.063 53.0279 218.496 50.3605 221.257 43.7238Z\" fill=\"var(--decor-3)\"/><path d=\"M171.065 111.006C169.565 107.006 164.459 92.9985 163.565 92.0064L176.483 81.4479L188.564 48.0064C190.564 44.0063 195.064 45.5064 194.564 49.0064C194.564 49.0064 194.064 54.0063 194.064 57.0063C194.064 60.0063 196.064 69.0063 197.064 73.5063C198.064 78.0063 196.564 86.5063 196.064 90.5063C195.564 94.5063 198.564 106.506 198.564 106.506L203.064 120.506L209.064 135.006L214.564 145.506C212.013 149.12 209.194 151.217 204.064 153.506C195.564 156.506 183.064 158.006 178.565 153.506C178.565 153.506 176.483 137.006 175.565 132.006C174.646 127.006 172.565 115.006 171.065 111.006Z\" fill=\"var(--skin)\"/><path d=\"M156.864 51.8786C156.864 51.8786 153.279 49.1738 148.751 45.9214C144.222 42.669 143.202 40.1769 144.464 37.694C145.179 36.2834 146.568 35.8013 150.502 37.59C154.436 39.3787 159.227 41.6739 159.227 41.6739L156.867 51.8829L156.864 51.8786Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M186.385 76.0933L155.371 75.6381L155.435 80.6242L186.449 81.0794L186.385 76.0933Z\" fill=\"var(--outline)\"/><path d=\"M177.302 89.0425C177.153 75.8064 183.878 69.5656 185.143 66.2956C186.405 63.0251 187.062 58.6754 187.632 52.3933C188.202 46.1112 191.178 44.7315 193.356 45.8178C195.211 46.7459 194.904 47.9678 194.256 52.3812C193.609 56.7946 195.468 67.0696 196.455 70.7844C197.441 74.4992 197.427 81.7452 196.773 85.5588C196.119 89.3724 195.141 95.2869 199.079 108.72C204.552 127.348 211.643 140.198 213.935 144.09C214.391 144.866 214.419 145.819 213.888 146.545C213.05 147.689 211.546 149.423 209.348 150.788C205.75 153.021 200.768 155.657 190.07 156.531C181.369 156.458 179.669 154.357 178.886 153.388L178.862 153.358L175.471 130.933C172.99 115.67 170.523 107.513 163.559 91.4721\" stroke=\"var(--outline)\" stroke-width=\"1.33181\"/><path d=\"M154.064 24.7382C154.065 23.5053 155.065 22.5064 156.298 22.5064L187.038 22.5065C188.133 22.5065 189.022 23.3942 189.023 24.49L189.086 89.6719C189.087 90.7692 188.198 91.6592 187.1 91.6592L155.996 91.6592C154.898 91.6592 154.009 90.7692 154.01 89.672L154.064 24.7382Z\" fill=\"var(--screen)\" stroke=\"var(--outline)\" stroke-width=\"1.33\"/><path d=\"M153.183 69.5541C151.532 69.7742 148.824 70.5757 147.721 74.0035C146.619 77.4314 150.329 81.0181 152.167 82.8746C154.006 84.7311 157.589 86.5661 158.583 84.173C159.578 81.7799 157.233 75.7879 156.508 74.3354C155.784 72.8828 153.183 69.558 153.183 69.558L153.183 69.5541Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M151.225 58.9814C149.387 59.1033 147.929 60.7044 147.817 63.0053C147.702 65.3057 148.292 67.3341 151.356 70.7428C154.424 74.1481 157.383 76.5351 159.011 75.9705C160.64 75.4059 161.638 72.5963 160.529 70.1673C159.415 67.7379 156.703 62.7339 156.703 62.7339L151.225 58.9814Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M153.076 49.2129C153.077 49.2119 153.077 49.2099 153.076 49.2099C152.978 49.2084 150.848 49.2042 149.377 51.5471C147.871 53.9455 147.128 57.0571 149.969 59.9312C152.809 62.8053 155.05 64.3893 156.255 65.0152C157.46 65.641 159.374 66.0582 160.454 63.564C161.534 61.0697 160.397 58.4884 158.452 56.4084C156.507 54.3283 153.079 51.0544 153.079 51.0544L153.075 49.2142C153.075 49.2137 153.075 49.2132 153.076 49.2129Z\" fill=\"var(--skin)\" stroke=\"var(--outline)\" stroke-width=\"1.33181\" stroke-miterlimit=\"10\"/><path d=\"M166.064 22.5062L177.457 22.5062L177.457 25.0857C177.457 25.3598 177.235 25.5821 176.961 25.5821L166.561 25.5821C166.287 25.5821 166.064 25.3598 166.064 25.0857L166.064 22.5062Z\" stroke=\"var(--outline)\" stroke-width=\"1.33181\"/><path d=\"M188.665 32.5062L190.165 32.5062C190.441 32.5062 190.665 32.7301 190.665 33.0062L190.665 40.0062C190.665 40.2824 190.441 40.5062 190.165 40.5062L188.665 40.5062L188.665 32.5062Z\" fill=\"var(--outline)\"/><path d=\"M167.218 54.8945L170.555 58.0253L176.839 50.8539M181.879 54.8063C181.634 60.2835 176.995 64.5247 171.517 64.2792C166.04 64.0338 161.799 59.3946 162.044 53.9174C162.29 48.4402 166.929 44.199 172.406 44.4444C177.883 44.6899 182.125 49.329 181.879 54.8063Z\" stroke=\"var(--screen-content)\" stroke-width=\"1.4891\"/></svg>" };
|
|
6
|
+
|
|
7
|
+
const PATH_ILLUSTRATIONS = 'https://cdn.riverty.design/illustrations/';
|
|
8
|
+
let parser;
|
|
9
|
+
const data = data$1;
|
|
10
|
+
const minifySvgContent = (content) => {
|
|
11
|
+
// Remove spaces at the beginning and at the end
|
|
12
|
+
let string = content.trim();
|
|
13
|
+
// Remove line breaks
|
|
14
|
+
string = string.replace(/\n|\r/g, "");
|
|
15
|
+
// Remove spaces between tags
|
|
16
|
+
string = string.replace(/>\s+</g, '><');
|
|
17
|
+
// Strip attributes from <svg> tag
|
|
18
|
+
string = string.replace(/<svg[^>]*?>/gi, '<svg>');
|
|
19
|
+
return string;
|
|
20
|
+
};
|
|
21
|
+
const checkEventListeners = element => {
|
|
22
|
+
// Get all inner nodes
|
|
23
|
+
const nodesArray = Array.from(element.querySelectorAll('*'));
|
|
24
|
+
// Take each node
|
|
25
|
+
const nodesFilter = nodesArray.filter((el) => {
|
|
26
|
+
// Get an array of attributes
|
|
27
|
+
const attributes = Array.from(el.attributes);
|
|
28
|
+
// Check if there is an attribute, that starts with "on"
|
|
29
|
+
if (attributes.filter(attr => attr.name.startsWith("on")).length > 0) {
|
|
30
|
+
return el;
|
|
31
|
+
}
|
|
32
|
+
});
|
|
33
|
+
// If nodes found -> hasEventListeners = true
|
|
34
|
+
return nodesFilter.length > 0;
|
|
35
|
+
};
|
|
36
|
+
const isSvgContentValid = (element) => {
|
|
37
|
+
const hasEventListeners = checkEventListeners(element);
|
|
38
|
+
const hasScriptTags = element.querySelectorAll('script').length > 0;
|
|
39
|
+
const hasLinksJSTriggers = element.querySelectorAll('[href^="javascript:"]').length > 0;
|
|
40
|
+
return !hasEventListeners && !hasScriptTags && !hasLinksJSTriggers;
|
|
41
|
+
};
|
|
42
|
+
// Get SVG Element based on SVG text content
|
|
43
|
+
const parseElementFromSvgContent = (content) => {
|
|
44
|
+
if (!parser) {
|
|
45
|
+
parser = new DOMParser();
|
|
46
|
+
}
|
|
47
|
+
const htmlContent = parser.parseFromString(content, 'text/html');
|
|
48
|
+
const element = htmlContent.querySelector('svg');
|
|
49
|
+
if (!element)
|
|
50
|
+
return null;
|
|
51
|
+
if (isSvgContentValid(element)) {
|
|
52
|
+
return element;
|
|
53
|
+
}
|
|
54
|
+
return null;
|
|
55
|
+
};
|
|
56
|
+
const getSvgContentByName = (name) => {
|
|
57
|
+
return data[name] || null;
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* Adds a newly fetched illustration to the in-memory cache.
|
|
61
|
+
* Stores the SVG content by illustration name to prevent redundant CDN fetches.
|
|
62
|
+
* @param name - The illustration name/identifier
|
|
63
|
+
* @param content - The SVG content as string
|
|
64
|
+
*/
|
|
65
|
+
const addToIllustrationsData = (name, content) => {
|
|
66
|
+
const minifiedContent = minifySvgContent(content);
|
|
67
|
+
if (data[name] === undefined) {
|
|
68
|
+
data[name] = minifiedContent;
|
|
69
|
+
}
|
|
70
|
+
};
|
|
71
|
+
/**
|
|
72
|
+
* Retrieves a cached SVG illustration from memory by name.
|
|
73
|
+
* Returns null if not found in cache.
|
|
74
|
+
* Used to avoid re-fetching already loaded illustrations.
|
|
75
|
+
* @param name - The illustration name to retrieve from cache
|
|
76
|
+
* @returns SVG DOM element if found, null otherwise
|
|
77
|
+
*/
|
|
78
|
+
const getSvgElementByName = (name) => {
|
|
79
|
+
const content = getSvgContentByName(name);
|
|
80
|
+
if (!content)
|
|
81
|
+
return null;
|
|
82
|
+
return parseElementFromSvgContent(content);
|
|
83
|
+
};
|
|
84
|
+
/**
|
|
85
|
+
* Fetches an SVG illustration from the CDN using the illustration name.
|
|
86
|
+
* Constructs URL as https://cdn.riverty.design/illustrations/{name}.svg
|
|
87
|
+
* Throws error if fetch fails or response is not OK.
|
|
88
|
+
* @param name - The illustration name to fetch from CDN
|
|
89
|
+
* @returns Promise resolving to SVG DOM element
|
|
90
|
+
* @throws Error if fetch fails or response status is not OK
|
|
91
|
+
*/
|
|
92
|
+
const getSvgElementByNameFromCdn = async (name) => {
|
|
93
|
+
const source = `${PATH_ILLUSTRATIONS}${name}.svg`;
|
|
94
|
+
try {
|
|
95
|
+
const response = await fetch(source);
|
|
96
|
+
if (!response.ok) {
|
|
97
|
+
throw new Error(`Failed to fetch illustration: ${response.status}`);
|
|
98
|
+
}
|
|
99
|
+
const content = await response.text();
|
|
100
|
+
const svgElement = parseElementFromSvgContent(content);
|
|
101
|
+
if (!svgElement) {
|
|
102
|
+
throw new Error(`No valid SVG element found in ${source}`);
|
|
103
|
+
}
|
|
104
|
+
addToIllustrationsData(name, content);
|
|
105
|
+
return svgElement;
|
|
106
|
+
}
|
|
107
|
+
catch (error) {
|
|
108
|
+
console.info(`Error fetching illustration "${name}" from CDN:`, error);
|
|
109
|
+
throw error;
|
|
110
|
+
}
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
const illustrationCss = ":host{display:inline-flex}:host svg{width:100%;height:auto;vertical-align:top}:host([theme=auto]){color-scheme:light dark}:host([theme=light]){color-scheme:light}:host([theme=dark]){color-scheme:dark}:host([data-error=true]) .status{background:var(--r-illustration--status--background, var(--r-haze-500));height:var(--r-illustration--status--height, 100%);display:var(--r-illustration--status--display, flex);justify-content:var(--r-illustration--status--justify-content, center);align-items:var(--r-illustration--status--align-items, center);aspect-ratio:var(--r-illustration--status--aspect-ratio, 342/176)}:host([data-error=true]) .status-icon{width:var(--r-illustration--status-info--width, clamp(42px, 18%, 72px));position:var(--r-illustration--status-info--position, relative)}:host([data-error=true]) .status-marker{width:var(--r-illustration--status-marker--width, clamp(16px, 40%, 22px));position:var(--r-illustration--status-marker--position, absolute);top:var(--r-illustration--status-marker--top, 100%);left:var(--r-illustration--status-marker--left, 100%);transform:var(--r-illustration--status-marker--transform, translate(-65%, -65%))}.r-illustration{display:var(--r-illustration--display, flex);justify-content:var(--r-illustration--justify-content, center);align-items:var(--r-illustration--align-items, center);background:var(--r-illustration--background, transparent);aspect-ratio:var(--r-illustration--aspect-ratio, 342/176);width:var(--r-illustration--width, 100%);min-width:var(--r-illustration--min-width, auto);max-width:var(--r-illustration--max-width, 100%);height:var(--r-illustration--height, auto)}";
|
|
114
|
+
|
|
115
|
+
const RIllustration = class {
|
|
116
|
+
constructor(hostRef) {
|
|
117
|
+
index.registerInstance(this, hostRef);
|
|
118
|
+
this.rFailed = index.createEvent(this, "rFailed");
|
|
119
|
+
this.rComplete = index.createEvent(this, "rComplete");
|
|
120
|
+
/** Defines initial width of an illustration. */
|
|
121
|
+
this.width = '342px';
|
|
122
|
+
/** Theme mode for illustration rendering */
|
|
123
|
+
this.theme = 'auto';
|
|
124
|
+
/** Error message text to display when illustration fails to load */
|
|
125
|
+
this.errorMessage = 'Failed to load illustration';
|
|
126
|
+
/** Accessibility: title for the image representing "failed-to-load" state */
|
|
127
|
+
this.emptyImageTitle = 'Failed to load illustration';
|
|
128
|
+
/** Accessibility: title for the marker representing "failed-to-load" state */
|
|
129
|
+
this.emptyMarkerTitle = 'Failed to load illustration marker';
|
|
130
|
+
this.detectedTheme = null;
|
|
131
|
+
this.error = false;
|
|
132
|
+
// SVG attributes extracted from the element
|
|
133
|
+
this.svgAttributes = {};
|
|
134
|
+
// SVG inner content (without the <svg> wrapper)
|
|
135
|
+
this.svgInnerHTML = '';
|
|
136
|
+
// Unique ID for aria references
|
|
137
|
+
this.uniqueId = `r-illustration-${Date.now().toString(32)}${Math.random().toString(32)}`.replace(/\./g, '');
|
|
138
|
+
this._setElementAttrs = (el, attrs = {}) => {
|
|
139
|
+
if (!el)
|
|
140
|
+
return;
|
|
141
|
+
const keys = Object.keys(attrs);
|
|
142
|
+
keys.forEach(key => {
|
|
143
|
+
const elHasNoAttr = el.getAttribute(key) === null;
|
|
144
|
+
const attrHasValue = attrs[key] !== undefined;
|
|
145
|
+
if (elHasNoAttr && attrHasValue) {
|
|
146
|
+
el.setAttribute(key, attrs[key]);
|
|
147
|
+
}
|
|
148
|
+
});
|
|
149
|
+
};
|
|
150
|
+
// Combine attributes for <SVG>
|
|
151
|
+
this._defineSvgAttrs = () => {
|
|
152
|
+
const attrs = {
|
|
153
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
154
|
+
role: this.ariaRole,
|
|
155
|
+
'aria-labelledby': this.ariaLabelledBy,
|
|
156
|
+
'aria-hidden': this.ariaRole === 'presentation'
|
|
157
|
+
};
|
|
158
|
+
return attrs;
|
|
159
|
+
};
|
|
160
|
+
// Pass attributes from <r-illustration> to <SVG>
|
|
161
|
+
this._passAttributesToSvg = () => {
|
|
162
|
+
// Search for an <svg> within <r-illustration> component
|
|
163
|
+
const svgElement = this.host.querySelector('svg');
|
|
164
|
+
// If an SVG was not found inside <r-illustration>
|
|
165
|
+
// Exit function
|
|
166
|
+
if (svgElement === null)
|
|
167
|
+
return;
|
|
168
|
+
// Set values of attributes of an <SVG>
|
|
169
|
+
this._setElementAttrs(svgElement, {
|
|
170
|
+
role: this.ariaRole,
|
|
171
|
+
'aria-labelledby': this.ariaLabelledBy,
|
|
172
|
+
'aria-hidden': this.ariaRole === 'presentation'
|
|
173
|
+
});
|
|
174
|
+
};
|
|
175
|
+
this._defineIllustrationElement = async () => {
|
|
176
|
+
let svgElement = null;
|
|
177
|
+
// Check name attribute
|
|
178
|
+
if (!this.name) {
|
|
179
|
+
return null;
|
|
180
|
+
}
|
|
181
|
+
this.error = false;
|
|
182
|
+
if (this.name) {
|
|
183
|
+
// Getting an <SVG> element by name
|
|
184
|
+
svgElement = getSvgElementByName(this.name);
|
|
185
|
+
if (svgElement !== null) {
|
|
186
|
+
this._setElementAttrs(svgElement, this._defineSvgAttrs());
|
|
187
|
+
return svgElement;
|
|
188
|
+
}
|
|
189
|
+
// If element was NOT found by name, fetch from CDN
|
|
190
|
+
try {
|
|
191
|
+
svgElement = await getSvgElementByNameFromCdn(this.name);
|
|
192
|
+
}
|
|
193
|
+
catch (error) {
|
|
194
|
+
console.info(`Error while fetching illustration "${this.name}":`, error);
|
|
195
|
+
this.error = true;
|
|
196
|
+
this.rFailed.emit();
|
|
197
|
+
return null;
|
|
198
|
+
}
|
|
199
|
+
if (!svgElement) {
|
|
200
|
+
console.info(`
|
|
201
|
+
No SVG Element received after fetching "${this.name}".
|
|
202
|
+
`);
|
|
203
|
+
this.error = true;
|
|
204
|
+
this.rFailed.emit();
|
|
205
|
+
return null;
|
|
206
|
+
}
|
|
207
|
+
// Add set of attributes to SVG
|
|
208
|
+
this._setElementAttrs(svgElement, this._defineSvgAttrs());
|
|
209
|
+
// Save illustration content to data object
|
|
210
|
+
addToIllustrationsData(this.name, `${svgElement.outerHTML}`);
|
|
211
|
+
return svgElement;
|
|
212
|
+
}
|
|
213
|
+
return null;
|
|
214
|
+
};
|
|
215
|
+
}
|
|
216
|
+
get cssVars() {
|
|
217
|
+
const styles = {};
|
|
218
|
+
if (this.minWidth) {
|
|
219
|
+
styles['--r-illustration--min-width'] = this.minWidth;
|
|
220
|
+
}
|
|
221
|
+
if (this.maxWidth) {
|
|
222
|
+
styles['--r-illustration--max-width'] = this.maxWidth;
|
|
223
|
+
}
|
|
224
|
+
if (this.width) {
|
|
225
|
+
styles['--r-illustration--width'] = this.width;
|
|
226
|
+
}
|
|
227
|
+
return Object.keys(styles).length > 0 ? styles : undefined;
|
|
228
|
+
}
|
|
229
|
+
get ariaRole() {
|
|
230
|
+
// Use 'img' role when text is provided
|
|
231
|
+
// Use 'presentation' for decorative illustrations
|
|
232
|
+
return (this.svgTitle || this.svgDescription) ? 'img' : 'presentation';
|
|
233
|
+
}
|
|
234
|
+
get ariaLabelledBy() {
|
|
235
|
+
return [
|
|
236
|
+
this.svgTitle ? `${this.uniqueId}-title` : '',
|
|
237
|
+
this.svgDescription ? `${this.uniqueId}-desc` : ''
|
|
238
|
+
].filter(Boolean).join(' ') || undefined;
|
|
239
|
+
}
|
|
240
|
+
componentWillLoad() {
|
|
241
|
+
// If an <SVG> within <r-illustration> slot exists
|
|
242
|
+
// Collect attributes and pass them to an <SVG>
|
|
243
|
+
// According to defined priority (host -> svg -> default)
|
|
244
|
+
this._passAttributesToSvg();
|
|
245
|
+
// Set up theme detection for auto mode
|
|
246
|
+
this._setupAutoThemeDetection();
|
|
247
|
+
}
|
|
248
|
+
async componentWillRender() {
|
|
249
|
+
// Define the <SVG> element from name
|
|
250
|
+
this.svgElement = await this._defineIllustrationElement();
|
|
251
|
+
// Extract SVG attributes and inner content
|
|
252
|
+
if (this.svgElement) {
|
|
253
|
+
this._extractSvgData();
|
|
254
|
+
// Emit rComplete event after successful load
|
|
255
|
+
this.rComplete.emit();
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
_extractSvgData() {
|
|
259
|
+
if (!this.svgElement)
|
|
260
|
+
return;
|
|
261
|
+
// Extract attributes from SVG element
|
|
262
|
+
const attrs = this.svgElement.attributes;
|
|
263
|
+
this.svgAttributes = {};
|
|
264
|
+
let width = null;
|
|
265
|
+
let height = null;
|
|
266
|
+
for (let i = 0; i < attrs.length; i++) {
|
|
267
|
+
const attr = attrs[i];
|
|
268
|
+
// Capture width and height for viewBox conversion
|
|
269
|
+
if (attr.name === 'width') {
|
|
270
|
+
width = attr.value;
|
|
271
|
+
}
|
|
272
|
+
else if (attr.name === 'height') {
|
|
273
|
+
height = attr.value;
|
|
274
|
+
}
|
|
275
|
+
else {
|
|
276
|
+
// Copy all other attributes
|
|
277
|
+
this.svgAttributes[attr.name] = attr.value;
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
// Convert width/height to viewBox if not already present
|
|
281
|
+
if (width && height && !this.svgAttributes['viewBox']) {
|
|
282
|
+
// Remove 'px' or other units and get numeric values
|
|
283
|
+
const numericWidth = parseFloat(width);
|
|
284
|
+
const numericHeight = parseFloat(height);
|
|
285
|
+
if (!isNaN(numericWidth) && !isNaN(numericHeight)) {
|
|
286
|
+
this.svgAttributes['viewBox'] = `0 0 ${numericWidth} ${numericHeight}`;
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
// Extract inner HTML (everything inside <svg>...</svg>)
|
|
290
|
+
this.svgInnerHTML = this.svgElement.innerHTML;
|
|
291
|
+
}
|
|
292
|
+
_buildSvgContent() {
|
|
293
|
+
let content = '';
|
|
294
|
+
// Start with the original SVG inner content
|
|
295
|
+
let svgContent = this.svgInnerHTML;
|
|
296
|
+
// Add title element if provided
|
|
297
|
+
if (this.svgTitle) {
|
|
298
|
+
// Remove existing <title> elements
|
|
299
|
+
svgContent = svgContent.replace(/<title[^>]*>[\s\S]*?<\/title>/gi, '');
|
|
300
|
+
content += `<title id="${this.uniqueId}-title">${this.svgTitle}</title>`;
|
|
301
|
+
}
|
|
302
|
+
// Add description element if provided
|
|
303
|
+
if (this.svgDescription) {
|
|
304
|
+
// Remove existing <desc> elements
|
|
305
|
+
svgContent = svgContent.replace(/<desc[^>]*>[\s\S]*?<\/desc>/gi, '');
|
|
306
|
+
content += `<desc id="${this.uniqueId}-desc">${this.svgDescription}</desc>`;
|
|
307
|
+
}
|
|
308
|
+
// Add the cleaned SVG content
|
|
309
|
+
content += svgContent;
|
|
310
|
+
return content;
|
|
311
|
+
}
|
|
312
|
+
disconnectedCallback() {
|
|
313
|
+
// Clean up observer when component is removed
|
|
314
|
+
if (this.themeObserver) {
|
|
315
|
+
this.themeObserver.disconnect();
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
_setupAutoThemeDetection() {
|
|
319
|
+
if (this.theme !== 'auto')
|
|
320
|
+
return;
|
|
321
|
+
// Detect parent theme changes (e.g., Storybook theme switcher)
|
|
322
|
+
const detectParentTheme = () => {
|
|
323
|
+
// Find closest parent with data-theme attribute
|
|
324
|
+
let element = this.host;
|
|
325
|
+
// Traverse up the DOM tree looking for data-theme
|
|
326
|
+
while (element && element !== document.documentElement) {
|
|
327
|
+
element = element.parentElement;
|
|
328
|
+
if (element && element.hasAttribute('data-theme')) {
|
|
329
|
+
this.detectedTheme = element.getAttribute('data-theme');
|
|
330
|
+
break;
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
// If no parent data-theme found, check document root
|
|
334
|
+
if (!this.detectedTheme) {
|
|
335
|
+
const documentTheme = document.documentElement.getAttribute('data-theme');
|
|
336
|
+
const bodyTheme = document.body.getAttribute('data-theme');
|
|
337
|
+
this.detectedTheme = documentTheme || bodyTheme;
|
|
338
|
+
}
|
|
339
|
+
const isDark = this.detectedTheme === 'dark';
|
|
340
|
+
const isLight = this.detectedTheme === 'light';
|
|
341
|
+
// Apply detected theme as data attribute for CSS to use
|
|
342
|
+
// If no explicit theme found, remove attribute to use media query fallback
|
|
343
|
+
if (isDark || isLight) {
|
|
344
|
+
this.host.setAttribute('data-detected-theme', this.detectedTheme);
|
|
345
|
+
return;
|
|
346
|
+
}
|
|
347
|
+
this.host.removeAttribute('data-detected-theme');
|
|
348
|
+
};
|
|
349
|
+
// Initial detection
|
|
350
|
+
detectParentTheme();
|
|
351
|
+
// Observe changes to document elements and all parents
|
|
352
|
+
this.themeObserver = new MutationObserver(detectParentTheme);
|
|
353
|
+
// Observe document root
|
|
354
|
+
this.themeObserver.observe(document.documentElement, {
|
|
355
|
+
attributes: true,
|
|
356
|
+
attributeFilter: ['data-theme']
|
|
357
|
+
});
|
|
358
|
+
// Observe body
|
|
359
|
+
this.themeObserver.observe(document.body, {
|
|
360
|
+
attributes: true,
|
|
361
|
+
attributeFilter: ['data-theme']
|
|
362
|
+
});
|
|
363
|
+
// Observe all parent elements up the tree
|
|
364
|
+
let parent = this.host.parentElement;
|
|
365
|
+
while (parent && parent !== document.documentElement) {
|
|
366
|
+
this.themeObserver.observe(parent, {
|
|
367
|
+
attributes: true,
|
|
368
|
+
attributeFilter: ['data-theme']
|
|
369
|
+
});
|
|
370
|
+
parent = parent.parentElement;
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
render() {
|
|
374
|
+
const styleAttrs = this.cssVars ? { style: this.cssVars } : {};
|
|
375
|
+
const errorStateImageTitleId = `${this.uniqueId}-error-state-image-title`;
|
|
376
|
+
const errorStateMarkerTitleId = `${this.uniqueId}--error-state-marker-title`;
|
|
377
|
+
// If error state, render fallback content
|
|
378
|
+
if (this.error) {
|
|
379
|
+
return (index.h(index.Host, { "data-error": "true" }, index.h("div", Object.assign({ class: "r-illustration" }, styleAttrs), index.h("slot", { name: "error" }, index.h("div", { class: "status" }, index.h("div", { class: "status-icon" }, index.h("svg", { role: "img", "aria-labelledby": errorStateImageTitleId, viewBox: "0 0 49 35", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, index.h("title", { id: errorStateImageTitleId }, this.emptyImageTitle), index.h("rect", { x: "3.88477", y: "3.88477", width: "40.8361", height: "26.9672", stroke: "#686868", "stroke-width": "1.60519" }), index.h("rect", { x: "0.802734", y: "0.802734", width: "47", height: "33.1311", stroke: "#686868", "stroke-width": "1.60519" }), index.h("path", { d: "M3.88477 29.3104L17.887 20.835L26.9995 25.6117", stroke: "#686868", "stroke-width": "1.60519", "stroke-linecap": "round" }), index.h("path", { d: "M22.377 23.1472L40.5297 10.0488L44.7212 12.7455", stroke: "#686868", "stroke-width": "1.60519", "stroke-linecap": "round" }), index.h("circle", { cx: "10.434", cy: "10.434", r: "2.69672", stroke: "#686868", "stroke-width": "1.60519" })), index.h("div", { class: "status-marker" }, index.h("svg", { role: "img", "aria-labelledby": errorStateMarkerTitleId, viewBox: "0 0 21 21", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, index.h("title", { id: errorStateMarkerTitleId }, this.emptyMarkerTitle), index.h("circle", { cx: "10.4776", cy: "10.4776", r: "7.37313", fill: "#E4E2E0", stroke: "#B00C15", "stroke-width": "1.61692" }), index.h("circle", { cx: "10.4774", cy: "10.4774", r: "9.31343", stroke: "#E4E2E0", "stroke-width": "2.32836" }), index.h("path", { d: "M7.81841 13.2929L13.3154 7.7959", stroke: "#B00C15", "stroke-width": "1.61692", "stroke-linecap": "round" }), index.h("path", { d: "M13.4062 13.2929L7.90918 7.7959", stroke: "#B00C15", "stroke-width": "1.61692", "stroke-linecap": "round" })))))))));
|
|
380
|
+
}
|
|
381
|
+
// If no <SVG> Element defined at this point
|
|
382
|
+
if (!this.svgElement) {
|
|
383
|
+
// Render slot content
|
|
384
|
+
return (index.h(index.Host, null, index.h("div", Object.assign({ class: "r-illustration" }, styleAttrs), index.h("slot", null))));
|
|
385
|
+
}
|
|
386
|
+
// Determine the current effective theme
|
|
387
|
+
const effectiveTheme = this.theme === 'auto'
|
|
388
|
+
? this.detectedTheme : this.theme;
|
|
389
|
+
// Render SVG with wrapper element to ensure CSS variables cascade
|
|
390
|
+
return (index.h(index.Host, null, index.h("div", Object.assign({ class: "r-illustration" }, styleAttrs), index.h("svg", Object.assign({}, this.svgAttributes, { "data-theme": effectiveTheme, ref: (el) => el && (el.innerHTML = this._buildSvgContent()) })))));
|
|
391
|
+
}
|
|
392
|
+
get host() { return index.getElement(this); }
|
|
393
|
+
};
|
|
394
|
+
RIllustration.style = illustrationCss;
|
|
395
|
+
|
|
396
|
+
exports.r_illustration = RIllustration;
|