mediacube-ui-v2 0.0.1 → 0.0.2
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/dist/App.vue.d.ts +2 -0
- package/dist/McBottomLoader-DP6VeK0N.js +4 -0
- package/dist/McOverlay-BZft7En3.js +4 -0
- package/dist/assets/tokens/json/animations.json.d.ts +8 -0
- package/dist/assets/tokens/json/border-radius.json.d.ts +26 -0
- package/dist/assets/tokens/json/box-shadows.json.d.ts +26 -0
- package/dist/assets/tokens/json/colors.json.d.ts +73 -0
- package/dist/assets/tokens/json/durations.json.d.ts +12 -0
- package/dist/assets/tokens/json/easings.json.d.ts +5 -0
- package/dist/assets/tokens/json/font-families.json.d.ts +6 -0
- package/dist/assets/tokens/json/font-sizes.json.d.ts +20 -0
- package/dist/assets/tokens/json/font-weights.json.d.ts +14 -0
- package/dist/assets/tokens/json/gradients.json.d.ts +15 -0
- package/dist/assets/tokens/json/index.d.ts +18 -0
- package/dist/assets/tokens/json/letter-spacings.json.d.ts +6 -0
- package/dist/assets/tokens/json/line-heights.json.d.ts +20 -0
- package/dist/assets/tokens/json/media-queries.json.d.ts +28 -0
- package/dist/assets/tokens/json/opacities.json.d.ts +7 -0
- package/dist/assets/tokens/json/sizes.json.d.ts +44 -0
- package/dist/assets/tokens/json/spacings.json.d.ts +36 -0
- package/dist/assets/tokens/json/z-indexes.json.d.ts +14 -0
- package/dist/components/elements/McAvatar/McAvatar.vue.d.ts +156 -0
- package/dist/components/elements/McBadge/McBadge.vue.d.ts +53 -0
- package/dist/components/elements/McBottomLoader/McBottomLoader.vue.d.ts +14 -0
- package/dist/components/elements/McButton/McButton.vue.d.ts +438 -0
- package/dist/components/elements/McChip/McChip.vue.d.ts +122 -0
- package/dist/components/elements/McCropper/McCropper.vue.d.ts +28 -0
- package/dist/components/elements/McDatepicker/McDatepicker.vue.d.ts +12 -0
- package/dist/components/elements/McDraggable/McDraggable.vue.d.ts +78 -0
- package/dist/components/elements/McFieldCheckbox/McFieldCheckbox.vue.d.ts +11 -0
- package/dist/components/elements/McFieldRadio/McFieldRadio.vue.d.ts +189 -0
- package/dist/components/elements/McFieldRadioGroup/McFieldRadioGroup.vue.d.ts +10 -0
- package/dist/components/elements/McFieldRange/McFieldRange.vue.d.ts +216 -0
- package/dist/components/elements/McFieldSelect/McFieldSelect.vue.d.ts +529 -0
- package/dist/components/elements/McFieldText/McFieldText.vue.d.ts +461 -0
- package/dist/components/elements/McFieldToggle/McFieldToggle.vue.d.ts +158 -0
- package/dist/components/elements/McInfinityLoadingTrigger/McInfinityLoadingTrigger.vue.d.ts +58 -0
- package/dist/components/elements/McNodata/McNoData.vue.d.ts +110 -0
- package/dist/components/elements/McNotification/McNotification.vue.d.ts +124 -0
- package/dist/components/elements/McProgress/McProgress.vue.d.ts +135 -0
- package/dist/components/elements/McSeparator/McSeparator.vue.d.ts +133 -0
- package/dist/components/elements/McSlideUpDown/McSlideUpDown.vue.d.ts +68 -0
- package/dist/components/elements/McStack/McStack.vue.d.ts +24 -0
- package/dist/components/elements/McSvgIcon/McSvgIcon.vue.d.ts +119 -0
- package/dist/components/elements/McTitle/McTitle.vue.d.ts +201 -0
- package/dist/components/elements/McTooltip/McTooltip.vue.d.ts +104 -0
- package/dist/components/index.d.ts +62 -0
- package/dist/components/patterns/McAccordion/McAccordion.vue.d.ts +28 -0
- package/dist/components/patterns/McCell/McCell.vue.d.ts +76 -0
- package/dist/components/patterns/McCollapse/McCollapse.vue.d.ts +67 -0
- package/dist/components/patterns/McDropdown/McDropdown.vue.d.ts +122 -0
- package/dist/components/patterns/McDropdown/McDropdownPanel.vue.d.ts +22 -0
- package/dist/components/patterns/McFilter/McFilter.vue.d.ts +152 -0
- package/dist/components/patterns/McFilter/McFilterChip/McFilterChip.vue.d.ts +55 -0
- package/dist/components/patterns/McFilter/McFilterTags/McFilterTags.vue.d.ts +85 -0
- package/dist/components/patterns/McFilter/McFilterTypeDate/McFilterTypeDate.vue.d.ts +66 -0
- package/dist/components/patterns/McFilter/McFilterTypeRange/McFilterTypeRange.vue.d.ts +57 -0
- package/dist/components/patterns/McFilter/McFilterTypeRelation/McFilterTypeRelation.vue.d.ts +74 -0
- package/dist/components/patterns/McFilter/McFilterTypeText/McFilterTypeText.vue.d.ts +57 -0
- package/dist/components/patterns/McGridCol/McGridCol.vue.d.ts +107 -0
- package/dist/components/patterns/McGridRow/McGridRow.vue.d.ts +104 -0
- package/dist/components/patterns/McOverlay/McOverlay.vue.d.ts +24 -0
- package/dist/components/patterns/McPreview/McPreview.vue.d.ts +33 -0
- package/dist/components/patterns/McSideBar/McSideBar.vue.d.ts +292 -0
- package/dist/components/patterns/McSideBar/McSideBarBottom/McSideBarBottom.vue.d.ts +67 -0
- package/dist/components/patterns/McSideBar/McSideBarButton/McSideBarButton.vue.d.ts +203 -0
- package/dist/components/patterns/McSideBar/McSideBarCenter/McSideBarCenter.vue.d.ts +94 -0
- package/dist/components/patterns/McSideBar/McSideBarTop/McSideBarTop.vue.d.ts +123 -0
- package/dist/components/patterns/McTab/McTab.vue.d.ts +224 -0
- package/dist/components/patterns/McTabs/McTabs.vue.d.ts +148 -0
- package/dist/components/patterns/McWrapScroll/McWrapScroll.vue.d.ts +127 -0
- package/dist/components/templates/McDrawer/McDrawer.vue.d.ts +104 -0
- package/dist/components/templates/McDrawer/McDrawerContainer.vue.d.ts +31 -0
- package/dist/components/templates/McDrawer/McDrawerContentTemplate/McDrawerContentTemplate.vue.d.ts +39 -0
- package/dist/components/templates/McModal/McModal.vue.d.ts +232 -0
- package/dist/components/templates/McModal/McModalContainer.vue.d.ts +31 -0
- package/dist/components/templates/McTable/McTable/McTable.vue.d.ts +295 -0
- package/dist/components/templates/McTable/McTableCard/McTableCard.vue.d.ts +128 -0
- package/dist/components/templates/McTable/McTableCard/McTableCardHeader/McTableCardHeader.vue.d.ts +32 -0
- package/dist/components/templates/McTable/McTableSkeletonLoading/McTableSkeletonLoading.vue.d.ts +18 -0
- package/dist/components/templates/McTable/McTableSort/McTableSort.vue.d.ts +29 -0
- package/dist/components/templates/McTopBar/McTopBar.vue.d.ts +85 -0
- package/dist/components/templates/McVirtualScroll/McVirtualScroll.vue.d.ts +79 -0
- package/dist/composables/index.d.ts +8 -0
- package/dist/composables/useDrawer.d.ts +6 -0
- package/dist/composables/useEncodeDecode.d.ts +5 -0
- package/dist/composables/useFieldErrors.d.ts +5 -0
- package/dist/composables/useHelper.d.ts +17 -0
- package/dist/composables/useModal.d.ts +5 -0
- package/dist/composables/useRandomNumber.d.ts +4 -0
- package/dist/composables/useTooltip.d.ts +8 -0
- package/dist/consts/table.d.ts +6 -0
- package/dist/enums/Cell.d.ts +5 -0
- package/dist/enums/Chip.d.ts +9 -0
- package/dist/enums/Datepicker.d.ts +37 -0
- package/dist/enums/Drawer.d.ts +4 -0
- package/dist/enums/Dropdown.d.ts +10 -0
- package/dist/enums/Filter.d.ts +12 -0
- package/dist/enums/Grid.d.ts +21 -0
- package/dist/enums/Input.d.ts +18 -0
- package/dist/enums/Modal.d.ts +4 -0
- package/dist/enums/Preview.d.ts +5 -0
- package/dist/enums/Radio.d.ts +4 -0
- package/dist/enums/RadioGroup.d.ts +4 -0
- package/dist/enums/Select.d.ts +9 -0
- package/dist/enums/Sidebar.d.ts +4 -0
- package/dist/enums/Tab.d.ts +5 -0
- package/dist/enums/Title.d.ts +19 -0
- package/dist/enums/Tooltip.d.ts +13 -0
- package/dist/enums/index.d.ts +21 -0
- package/dist/enums/ui/Alignment.d.ts +5 -0
- package/dist/enums/ui/Button.d.ts +21 -0
- package/dist/enums/ui/Directions.d.ts +4 -0
- package/dist/enums/ui/Weights.d.ts +6 -0
- package/dist/{es-ZT7NtsIJ.js → es-CKatgsl2.js} +1 -1
- package/dist/{index-BNI8_4VG.js → index-DUxSE0Pp.js} +11991 -9401
- package/dist/index.d.ts +9 -0
- package/dist/{mediacube-ui-v2.es.js → index.es.js} +1 -1
- package/dist/index.umd.js +38 -0
- package/dist/main.d.ts +0 -0
- package/dist/mocks/authUser.d.ts +132 -0
- package/dist/mocks/categories.d.ts +8 -0
- package/dist/mocks/filterMocks.d.ts +17 -0
- package/dist/mocks/icons.json.d.ts +3 -0
- package/dist/mocks/menuLangs.d.ts +5 -0
- package/dist/mocks/sidebar.d.ts +9 -0
- package/dist/mocks/tableData.d.ts +5 -0
- package/dist/no_table_data.png +0 -0
- package/dist/no_user.png +0 -0
- package/dist/{pt-DABURhaw.js → pt-CEavNnlV.js} +1 -1
- package/dist/{ru-DrTReLfa.js → ru-DX_6fNBy.js} +1 -1
- package/dist/style.css +1 -1
- package/dist/{th-CxdSf7Vb.js → th-DGTC0w1I.js} +1 -1
- package/dist/types/IButton.d.ts +40 -0
- package/dist/types/ICell.d.ts +4 -0
- package/dist/types/IChip.d.ts +8 -0
- package/dist/types/ICollapse.d.ts +14 -0
- package/dist/types/IDatepicker.d.ts +30 -0
- package/dist/types/IDirections.d.ts +4 -0
- package/dist/types/IDrawer.d.ts +25 -0
- package/dist/types/IDropdown.d.ts +5 -0
- package/dist/types/IFilter.d.ts +152 -0
- package/dist/types/IGrid.d.ts +4 -0
- package/dist/types/IInput.d.ts +5 -0
- package/dist/types/IModal.d.ts +27 -0
- package/dist/types/IPreview.d.ts +4 -0
- package/dist/types/IRadio.d.ts +4 -0
- package/dist/types/IRadioGroup.d.ts +9 -0
- package/dist/types/IRoute.d.ts +16 -0
- package/dist/types/ISelect.d.ts +15 -0
- package/dist/types/ISideBar.d.ts +73 -0
- package/dist/types/ITable.d.ts +69 -0
- package/dist/types/ITabs.d.ts +31 -0
- package/dist/types/ITitle.d.ts +5 -0
- package/dist/types/ITooltip.d.ts +26 -0
- package/dist/types/index.d.ts +36 -0
- package/dist/types/styles/Alignment.d.ts +2 -0
- package/dist/types/styles/AvatarSizes.d.ts +22 -0
- package/dist/types/styles/Colors.d.ts +73 -0
- package/dist/types/styles/Durations.d.ts +13 -0
- package/dist/types/styles/FontSizes.d.ts +20 -0
- package/dist/types/styles/FontWeights.d.ts +15 -0
- package/dist/types/styles/Grid.d.ts +4 -0
- package/dist/types/styles/Icons.d.ts +447 -0
- package/dist/types/styles/LineHeights.d.ts +20 -0
- package/dist/types/styles/MediaQueries.d.ts +26 -0
- package/dist/types/styles/Radiuses.d.ts +26 -0
- package/dist/types/styles/Sizes.d.ts +35 -0
- package/dist/types/styles/Spaces.d.ts +35 -0
- package/dist/types/styles/Weights.d.ts +2 -0
- package/dist/utils/dayjs.d.ts +175 -0
- package/dist/utils/mcGridColAdaptiveProps.d.ts +10 -0
- package/dist/utils/mcTitleAdaptiveProps.d.ts +10 -0
- package/dist/{vi-DiQKH9bm.js → vi-Pc8KAwzf.js} +1 -1
- package/package.json +3 -1
- package/dist/McBottomLoader-DXamMgue.js +0 -4
- package/dist/McOverlay-xiwfcXWp.js +0 -4
- package/dist/mediacube-ui-v2.umd.js +0 -38
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
(function(s2,e){typeof exports=="object"&&typeof module<"u"?e(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],e):(s2=typeof globalThis<"u"?globalThis:s2||self,e(s2["mediacube-ui-v2"]={},s2.Vue))})(this,function(s2,e){"use strict";var dh=Object.defineProperty;var uh=(s2,e,G1)=>e in s2?dh(s2,e,{enumerable:!0,configurable:!0,writable:!0,value:G1}):s2[e]=G1;var x2=(s2,e,G1)=>uh(s2,typeof e!="symbol"?e+"":e,G1);function G1(t,o){for(var n=0;n<o.length;n++){const r=o[n];if(typeof r!="string"&&!Array.isArray(r)){for(const a in r)if(a!=="default"&&!(a in t)){const l=Object.getOwnPropertyDescriptor(r,a);l&&Object.defineProperty(t,a,l.get?l:{enumerable:!0,get:()=>r[a]})}}}return Object.freeze(Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}))}const a9={"$size-50":"4px","$size-100":"8px","$size-150":"12px","$size-200":"16px","$size-250":"20px","$size-300":"24px","$size-400":"32px","$size-500":"40px","$size-550":"44px","$size-600":"48px","$size-700":"56px","$size-800":"64px","$size-900":"72px","$size-1000":"80px","$token-avatar-sizes":{300:"24px",400:"32px",500:"40px",600:"48px",700:"56px",800:"64px",900:"72px",1e3:"80px"},"$token-icon-sizes":{50:"4px",100:"8px",150:"12px",200:"16px",250:"20px",300:"24px",400:"32px",500:"40px",550:"44px",600:"48px",700:"56px",800:"64px",900:"72px",1e3:"80px"}},d6=a9["$token-avatar-sizes"];({...a9["$token-avatar-sizes"]});const xt={"$color-black":"#202427","$color-dark-gray":"#5C6670","$color-gray":"#8F99A3","$color-outline-gray":"#C7CCD1","$color-outline-light":"#DEE0E2","$color-hover-gray":"#EDF0F3","$color-bg-gray":"#F5F6Fa","$color-white":"#FFFFFF","$color-hover-purple":"#7238FF","$color-purple":"#8756FF","$color-light-purple":"#CBB7FF","$color-lighter-purple":"#EEE8FF","$color-bg-purple":"#9673ED","$color-primary-bg":"#F5F6Fa","$color-hover-blue":"#0A54C2","$color-blue":"#2578F4","$color-light-blue":"#92BBFA","$color-lighter-blue":"#E1EDFF","$color-dark-orange":"#BD8400","$color-orange":"#FCB100","$color-yellow":"#FFC60A","$color-dark-red":"#D5260B","$color-bright-pink":"#e8178a","$color-red":"#F5563D","$color-pale-pink":"#FC9283","$color-dark-green":"#218321","$color-green":"#4DCB4D","$color-toxic":"#E8F443","$color-ultraviolet":"#C41CFD","$color-pinkish":"#F073B1","$color-azure":"#0A85C2","$color-turquoise":"#4EA9A2","$color-darken-turquoise":"#2F8C99","$color-transparent":"transparent","$token-colors":{purple:"#8756FF","hover-purple":"#7238FF","light-purple":"#CBB7FF","bg-purple":"#9673ED","lighter-purple":"#EEE8FF",black:"#202427","outline-light":"#DEE0E2","dark-gray":"#5C6670",gray:"#8F99A3","outline-gray":"#C7CCD1","hover-gray":"#EDF0F3","bg-gray":"#F5F6Fa",white:"#FFFFFF","hover-blue":"#0A54C2",blue:"#2578F4","light-blue":"#92BBFA","lighter-blue":"#E1EDFF","dark-orange":"#BD8400",orange:"#FCB100",yellow:"#FFC60A","dark-red":"#D5260B",red:"#F5563D","bright-pink":"#e8178a","pale-pink":"#FC9283","dark-green":"#218321",green:"#4DCB4D",toxic:"#E8F443",ultraviolet:"#C41CFD",pinkish:"#F073B1",azure:"#0A85C2",turquoise:"#4EA9A2","darken-turquoise":"#2F8C99",transparent:"transparent"}},X2=xt["$token-colors"];({...xt["$token-colors"]});const Ht={"$duration-s":"150ms","$duration-m":"300ms","$duration-l":"500ms","$token-durations":{s:"150ms",m:"300ms",l:"500ms"}},_7=Ht["$token-durations"];({...Ht["$token-durations"]});const Bt={"$font-size-100":"10px","$font-size-200":"13px","$font-size-300":"16px","$font-size-400":"20px","$font-size-500":"28px","$font-size-600":"32px","$font-size-700":"48px","$token-font-sizes":{100:"10px",200:"13px",300:"16px",400:"20px",500:"28px",600:"32px",700:"48px"}},x7=Bt["$token-font-sizes"];({...Bt["$token-font-sizes"]});const St={"$font-weight-normal":"400","$font-weight-medium":"500","$font-weight-semi-bold":"600","$font-weight-bold":"700","$token-font-weights":{normal:"400",medium:"500","semi-bold":"600",bold:"700"}},Et=St["$token-font-weights"];({...St["$token-font-weights"]});const Dt={"$line-height-150":"12px","$line-height-200":"16px","$line-height-250":"20px","$line-height-300":"24px","$line-height-400":"32px","$line-height-500":"40px","$line-height-600":"48px","$token-line-heights":{150:"12px",200:"16px",250:"20px",300:"24px",400:"32px",500:"40px",600:"48px"}},P9=Dt["$token-line-heights"];({...Dt["$token-line-heights"]});const Tt={"$media-query-xs":'"(min-width: 375px)"',"$media-query-s":'"(min-width: 480px)"',"$media-query-m":'"(min-width: 768px)"',"$media-query-l":'"(min-width: 1024px)"',"$media-query-xl":'"(min-width: 1440px)"',"$media-query-xs-down":'"(max-width: 374px)"',"$media-query-s-down":'"(max-width: 479px)"',"$media-query-m-down":'"(max-width: 767px)"',"$media-query-l-down":'"(max-width: 1023px)"',"$media-query-xl-down":'"(max-width: 1439px)"',"$media-desktop":'"(hover: hover) and (pointer: fine)"',"$media-mobile":'"(hover: none) and (pointer: coarse)"',"$token-media-queries":{xs:'"(min-width: 375px)"',s:'"(min-width: 480px)"',m:'"(min-width: 768px)"',l:'"(min-width: 1024px)"',xl:'"(min-width: 1440px)"',"xs-down":'"(max-width: 374px)"',"s-down":'"(max-width: 479px)"',"m-down":'"(max-width: 767px)"',"l-down":'"(max-width: 1023px)"',"xl-down":'"(max-width: 1439px)"'}},H7=Tt["$token-media-queries"];({...Tt["$token-media-queries"]});const Zt={"$radius-square":"0px","$radius-50":"4px","$radius-100":"8px","$radius-150":"12px","$radius-200":"16px","$radius-300":"24px","$radius-400":"32px","$radius-1250":"100px","$radius-rounded":"300px","$radius-circle":"50%","$token-radius":{50:"4px",100:"8px",150:"12px",200:"16px",300:"24px",400:"32px",1250:"100px",square:"0px",rounded:"300px",circle:"50%"}},u6=Zt["$token-radius"];({...Zt["$token-radius"]});const se=a9["$token-icon-sizes"];({...a9["$token-icon-sizes"]});const At={"$space-zero":"0","$space-50":"4px","$space-100":"8px","$space-150":"12px","$space-200":"16px","$space-250":"20px","$space-300":"24px","$space-350":"28px","$space-400":"32px","$space-450":"36px","$space-500":"40px","$space-600":"48px","$space-700":"56px","$space-800":"64px","$space-900":"72px","$space-1000":"80px","$token-spaces":{50:"4px",100:"8px",150:"12px",200:"16px",250:"20px",300:"24px",400:"32px",450:"36px",500:"40px",600:"48px",700:"56px",800:"64px",900:"72px",1e3:"80px"}},r1=At["$token-spaces"];({...At["$token-spaces"]});var $t=(t=>(t.S="s",t.M="m",t.L="l",t))($t||{}),l9=(t=>(t.Xs="xs",t.S="s",t.M="m",t))(l9||{}),j9=(t=>(t.Invert="invert",t.Outline="outline",t))(j9||{}),y0=(t=>(t.TimePicker="time-picker",t.DatePicker="date-picker",t.DateTimePicker="date-time-picker",t.WeekPicker="week-picker",t.MonthPicker="month-picker",t.YearPicker="year-picker",t))(y0||{}),H0=(t=>(t.Picker="picker",t.Dayjs="dayjs",t.Output="output",t))(H0||{}),Ve=(t=>(t.TimePicker="HH:mm",t.DateTimePicker="dd.MM.yyyy HH:mm",t.DatePicker="dd.MM.yyyy",t.WeekPicker="ww.yyyy",t.MonthPicker="MM.yyyy",t.YearPicker="yyyy",t))(Ve||{}),_e=(t=>(t.TimePicker="HH:mm",t.DateTimePicker="DD.MM.YYYY HH:mm",t.DatePicker="DD.MM.YYYY",t.WeekPicker="WW.YYYY",t.MonthPicker="MM.YYYY",t.YearPicker="YYYY",t))(_e||{}),xe=(t=>(t.TimePicker="HH:mm",t.DateTimePicker="YYYY-MM-DD HH:mm",t.DatePicker="YYYY-MM-DD",t.WeekPicker="YYYY-WW",t.MonthPicker="YYYY-MM-DD",t.YearPicker="YYYY",t))(xe||{}),V3=(t=>(t.Left="left",t.Right="right",t))(V3||{}),_3=(t=>(t.Top="top",t.Bottom="bottom",t.Auto="auto",t))(_3||{}),He=(t=>(t.Left="left",t.Right="right",t.Auto="auto",t))(He||{}),G2=(t=>(t.Exists="exists",t.Is="is",t.IsNot="is_not",t))(G2||{}),K2=(t=>(t.Relation="relation",t.Date="date",t.Text="text",t.Range="range",t.Fast="fast",t))(K2||{}),Nt=(t=>(t.Xs="xs",t.S="s",t.M="m",t.L="l",t.Xl="xl",t.Xxl="xxl",t))(Nt||{}),R9=(t=>(t.Left="left",t.Right="right",t.Center="center",t.Around="around",t.Between="between",t))(R9||{}),I9=(t=>(t.Top="top",t.Middle="middle",t.Bottom="bottom",t.Stretch="stretch",t))(I9||{}),w0=(t=>(t.Text="text",t.Password="password",t.Email="email",t.Date="date",t.Textarea="textarea",t.TextareaAutosize="textarea-autosize",t.Num="num",t.Int="int",t.AmountFormat="amount_format",t.Uppercase="uppercase",t.Lowercase="lowercase",t.PhoneNumber="phone_number",t))(w0||{}),Ft=(t=>(t.On="on",t.Off="off",t))(Ft||{}),C6=(t=>(t.Default="default",t.Info="info",t))(C6||{}),Y9=(t=>(t.S="s",t.M="m",t.L="l",t))(Y9||{}),h6=(t=>(t.Circle="circle",t.Checkmark="checkmark",t))(h6||{}),Ot=(t=>(t.Column="column",t.Row="row",t))(Ot||{}),Be=(t=>(t.Label="label",t.Values="values",t))(Be||{}),p6=(t=>(t.Top="above",t.Bottom="below",t.Auto="auto",t))(p6||{}),V1=(t=>(t.Black="black",t.White="white",t))(V1||{}),zt=(t=>(t.Body="body",t.Captions="caption",t.Overline="overline",t))(zt||{}),Pt=(t=>(t.Xs="xs",t.S="s",t.M="m",t.L="l",t.Xl="xl",t.Xxl="xxl",t))(Pt||{}),h0=(t=>(t.H1="h1",t.H2="h2",t.H3="h3",t.H4="h4",t.Subtitle="subtitle",t.Body="body",t.Overline="overline",t.Article="article",t.Info="info",t))(h0||{}),a1=(t=>(t.Top="top",t.Left="left",t.Right="right",t.Bottom="bottom",t))(a1||{}),ce=(t=>(t.Xs="xs",t.S="s",t.M="m",t.L="l",t.XL="xl",t))(ce||{}),Se=(t=>(t.Left="left",t.Center="center",t.Right="right",t))(Se||{}),jt=(t=>(t.Button="button",t.Submit="submit",t.Reset="reset",t))(jt||{}),X0=(t=>(t.Xs="xs",t.XsCompact="xs-compact",t.S="s",t.SCompact="s-compact",t.M="m",t.MCompact="m-compact",t.L="l",t.LCompact="l-compact",t))(X0||{}),T1=(t=>(t.Invert="invert",t.Outline="outline",t.Link="link",t.Flat="flat",t))(T1||{}),_1=(t=>(t.Rtl="rtl",t.Ltr="ltr",t))(_1||{}),Y0=(t=>(t.Normal="normal",t.Medium="medium",t.SemiBold="semi-bold",t.Bold="bold",t))(Y0||{});const B7=["src","alt","draggable","lazy"],Rt="/no_user.png",It=e.defineComponent({__name:"McAvatar",props:{src:{type:String,default:Rt},lazy:{type:Boolean,default:!1},alt:{type:String,default:""},size:{type:String,default:"300"},rounded:{type:Boolean,default:!1},borderColor:{type:String,default:""},dotColor:{type:String,default:""},shadow:{type:Boolean,default:!1},draggable:{type:Boolean,default:!0}},setup(t){const o=t,n=e.ref({}),r=e.ref({}),a=e.computed(()=>!!o.borderColor||!!o.dotColor),l=e.computed(()=>({"mc-avatar":!0,"mc-avatar--rounded":o.rounded,"mc-avatar--bordered":!!o.borderColor,"mc-avatar--shadow":o.shadow&&!a.value,[`mc-avatar--size-${o.size}`]:!!o.size})),i=e.computed(()=>({"mc-avatar__wrapper":!0,"mc-avatar__wrapper-status--shadow":!!o.shadow,[`mc-avatar__wrapper-status--size-${o.size}`]:!!o.size,"mc-avatar__wrapper--has-dot":!!o.dotColor}));e.watch(()=>o.dotColor,()=>{a.value&&o.dotColor&&(r.value["--mc-avatar-dot-color"]=X2[o.dotColor])},{immediate:!0}),e.watch(()=>o.borderColor,()=>{a.value&&o.borderColor&&(n.value["--mc-avatar-border-color"]=X2[o.borderColor])},{immediate:!0}),e.watch(()=>o.size,()=>{if(o.size)switch(n.value["--mc-avatar-avatar-size"]=d6[o.size],+o.size<500&&(r.value["--mc-avatar-dot-size"]=se[100],n.value["--mc-avatar-avatar-radius"]=u6[50]),+o.size){case 500:case 600:{r.value["--mc-avatar-dot-size"]=se[150];break}case 700:case 800:case 900:case 1e3:{r.value["--mc-avatar-dot-size"]=se[200],r.value["--mc-avatar-dot-border-width"]="2px";break}}},{immediate:!0});const d=c=>{c.target&&(c.target.src=Rt)};return(c,p)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(i.value),style:e.normalizeStyle(r.value)},[e.createElementVNode("div",{class:e.normalizeClass(l.value),style:e.normalizeStyle(n.value)},[e.createElementVNode("img",{src:o.src||Rt,alt:o.alt,draggable:o.draggable,lazy:o.lazy,class:"mc-avatar__img",onOnerror:d},null,40,B7)],6)],6))}}),S7={class:"mc-badge__text"},E7=e.defineComponent({__name:"McBadge",props:{variation:{type:String,default:"purple"},verticalLine:{type:Boolean,default:!1},modern:{type:Boolean,default:!1}},setup(t){const o=t,n=e.computed(()=>({"mc-badge":!0,"mc-badge--vertical-line":o.verticalLine,"mc-badge--modern":o.modern})),r=e.computed(()=>{const a=`${o.variation}${o.modern?"-modern":""}`;let l={};const i=a.split("-"),d=i[i.length-1],c=o.variation?a.replace(`-${d}`,""):a,p=({property:C="--mc-badge-color",value:k,newColor:m=c}={})=>{l[C]=k||m&&X2[m]};switch(d){case"outline":{p(),p({property:"--mc-badge-border-color"}),p({property:"--mc-badge-background-color",newColor:"white"}),p({property:"--mc-badge-background-opacity",value:"0.4"});break}case"invert":case"modern":{p(),p({property:"--mc-badge-background-color"}),p({property:"--mc-badge-background-opacity",value:"0.1"});break}default:{["hover-gray","white","lighter-blue","lighter-purple","toxic","transparent"].includes(a)&&p({newColor:"black"}),p({property:"--mc-badge-background-color",newColor:a});break}}return l});return(a,l)=>(e.openBlock(),e.createElementBlock("div",e.mergeProps({class:n.value,style:r.value},a.$attrs),[e.createElementVNode("div",S7,[e.renderSlot(a.$slots,"default")]),l[0]||(l[0]=e.createElementVNode("div",{class:"mc-badge__background"},null,-1))],16))}}),m6=e.defineComponent({__name:"McBottomLoader",props:{center:{type:Boolean,default:!1}},setup(t){const o=t,n=e.computed(()=>({"mc-bottom-loader":!0,"mc-bottom-loader--center":o.center}));return(r,a)=>(e.openBlock(),e.createElementBlock("section",{class:e.normalizeClass(n.value)},a[0]||(a[0]=[e.createElementVNode("section",{class:"mc-bottom-loader__spinner"},null,-1)]),2))}}),D7=Object.freeze(Object.defineProperty({__proto__:null,default:m6},Symbol.toStringTag,{value:"Module"}));function Yt(t){return e.getCurrentScope()?(e.onScopeDispose(t),!0):!1}function U2(t){return typeof t=="function"?t():e.unref(t)}const f6=typeof window<"u"&&typeof document<"u";typeof WorkerGlobalScope<"u"&&globalThis instanceof WorkerGlobalScope;const T7=Object.prototype.toString,Z7=t=>T7.call(t)==="[object Object]",i9=()=>{};function Ut(t,o){function n(...r){return new Promise((a,l)=>{Promise.resolve(t(()=>o.apply(this,r),{fn:o,thisArg:this,args:r})).then(a).catch(l)})}return n}const k6=t=>t();function A7(t,o={}){let n,r,a=i9;const l=d=>{clearTimeout(d),a(),a=i9};return d=>{const c=U2(t),p=U2(o.maxWait);return n&&l(n),c<=0||p!==void 0&&p<=0?(r&&(l(r),r=null),Promise.resolve(d())):new Promise((C,k)=>{a=o.rejectOnCancel?k:C,p&&!r&&(r=setTimeout(()=>{n&&l(n),r=null,C(d())},p)),n=setTimeout(()=>{r&&l(r),r=null,C(d())},c)})}}function $7(...t){let o=0,n,r=!0,a=i9,l,i,d,c,p;!e.isRef(t[0])&&typeof t[0]=="object"?{delay:i,trailing:d=!0,leading:c=!0,rejectOnCancel:p=!1}=t[0]:[i,d=!0,c=!0,p=!1]=t;const C=()=>{n&&(clearTimeout(n),n=void 0,a(),a=i9)};return m=>{const y=U2(i),b=Date.now()-o,f=()=>l=m();return C(),y<=0?(o=Date.now(),f()):(b>y&&(c||!r)?(o=Date.now(),f()):d&&(l=new Promise((M,V)=>{a=p?V:M,n=setTimeout(()=>{o=Date.now(),r=!0,M(f()),C()},Math.max(0,y-b))})),!c&&!n&&(n=setTimeout(()=>r=!0,y)),r=!1,l)}}function N7(t=k6){const o=e.ref(!0);function n(){o.value=!1}function r(){o.value=!0}const a=(...l)=>{o.value&&t(...l)};return{isActive:e.readonly(o),pause:n,resume:r,eventFilter:a}}function F7(t,o=!1,n="Timeout"){return new Promise((r,a)=>{setTimeout(o?()=>a(n):r,t)})}function y6(t){return t}function O7(t){return e.getCurrentInstance()}function U9(t,o=200,n={}){return Ut(A7(o,n),t)}function g6(t,o=200,n=!1,r=!0,a=!1){return Ut($7(o,n,r,a),t)}function z7(t,o,n={}){const{eventFilter:r=k6,...a}=n;return e.watch(t,Ut(r,o),a)}function P7(t,o,n={}){const{eventFilter:r,...a}=n,{eventFilter:l,pause:i,resume:d,isActive:c}=N7(r);return{stop:z7(t,o,{...a,eventFilter:l}),pause:i,resume:d,isActive:c}}function j7(t,o={}){if(!e.isRef(t))return e.toRefs(t);const n=Array.isArray(t.value)?Array.from({length:t.value.length}):{};for(const r in t.value)n[r]=e.customRef(()=>({get(){return t.value[r]},set(a){var l;if((l=U2(o.replaceRef))!=null?l:!0)if(Array.isArray(t.value)){const d=[...t.value];d[r]=a,t.value=d}else{const d={...t.value,[r]:a};Object.setPrototypeOf(d,Object.getPrototypeOf(t.value)),t.value=d}else t.value[r]=a}}));return n}function R7(t,o=!0,n){O7()?e.onMounted(t,n):o?t():e.nextTick(t)}const l3=f6?window:void 0;function Wt(t){var o;const n=U2(t);return(o=n==null?void 0:n.$el)!=null?o:n}function s9(...t){let o,n,r,a;if(typeof t[0]=="string"||Array.isArray(t[0])?([n,r,a]=t,o=l3):[o,n,r,a]=t,!o)return i9;Array.isArray(n)||(n=[n]),Array.isArray(r)||(r=[r]);const l=[],i=()=>{l.forEach(C=>C()),l.length=0},d=(C,k,m,y)=>(C.addEventListener(k,m,y),()=>C.removeEventListener(k,m,y)),c=e.watch(()=>[Wt(o),U2(a)],([C,k])=>{if(i(),!C)return;const m=Z7(k)?{...k}:k;l.push(...n.flatMap(y=>r.map(b=>d(C,y,b,m))))},{immediate:!0,flush:"post"}),p=()=>{c(),i()};return Yt(p),p}function I7(){const t=e.ref(!1),o=e.getCurrentInstance();return o&&e.onMounted(()=>{t.value=!0},o),t}function Y7(t){const o=I7();return e.computed(()=>(o.value,!!t()))}const W9=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},q9="__vueuse_ssr_handlers__",U7=W7();function W7(){return q9 in W9||(W9[q9]=W9[q9]||{}),W9[q9]}function q7(t,o){return U7[t]||o}function G7(t){return t==null?"any":t instanceof Set?"set":t instanceof Map?"map":t instanceof Date?"date":typeof t=="boolean"?"boolean":typeof t=="string"?"string":typeof t=="object"?"object":Number.isNaN(t)?"any":"number"}const X7={boolean:{read:t=>t==="true",write:t=>String(t)},object:{read:t=>JSON.parse(t),write:t=>JSON.stringify(t)},number:{read:t=>Number.parseFloat(t),write:t=>String(t)},any:{read:t=>t,write:t=>String(t)},string:{read:t=>t,write:t=>String(t)},map:{read:t=>new Map(JSON.parse(t)),write:t=>JSON.stringify(Array.from(t.entries()))},set:{read:t=>new Set(JSON.parse(t)),write:t=>JSON.stringify(Array.from(t))},date:{read:t=>new Date(t),write:t=>t.toISOString()}},b6="vueuse-storage";function M6(t,o,n,r={}){var a;const{flush:l="pre",deep:i=!0,listenToStorageChanges:d=!0,writeDefaults:c=!0,mergeDefaults:p=!1,shallow:C,window:k=l3,eventFilter:m,onError:y=D=>{console.error(D)},initOnMounted:b}=r,f=(C?e.shallowRef:e.ref)(typeof o=="function"?o():o);if(!n)try{n=q7("getDefaultStorage",()=>{var D;return(D=l3)==null?void 0:D.localStorage})()}catch(D){y(D)}if(!n)return f;const M=U2(o),V=G7(M),S=(a=r.serializer)!=null?a:X7[V],{pause:x,resume:B}=P7(f,()=>_(f.value),{flush:l,deep:i,eventFilter:m});k&&d&&R7(()=>{n instanceof Storage?s9(k,"storage",Z):s9(k,b6,Y),b&&Z()}),b||Z();function O(D,z){if(k){const W={key:t,oldValue:D,newValue:z,storageArea:n};k.dispatchEvent(n instanceof Storage?new StorageEvent("storage",W):new CustomEvent(b6,{detail:W}))}}function _(D){try{const z=n.getItem(t);if(D==null)O(z,null),n.removeItem(t);else{const W=S.write(D);z!==W&&(n.setItem(t,W),O(z,W))}}catch(z){y(z)}}function N(D){const z=D?D.newValue:n.getItem(t);if(z==null)return c&&M!=null&&n.setItem(t,S.write(M)),M;if(!D&&p){const W=S.read(z);return typeof p=="function"?p(W,M):V==="object"&&!Array.isArray(W)?{...M,...W}:W}else return typeof z!="string"?z:S.read(z)}function Z(D){if(!(D&&D.storageArea!==n)){if(D&&D.key==null){f.value=M;return}if(!(D&&D.key!==t)){x();try{(D==null?void 0:D.newValue)!==S.write(f.value)&&(f.value=N(D))}catch(z){y(z)}finally{D?e.nextTick(B):B()}}}}function Y(D){Z(D.detail)}return f}function K7(t,o={}){var n,r;const{pointerTypes:a,preventDefault:l,stopPropagation:i,exact:d,onMove:c,onEnd:p,onStart:C,initialValue:k,axis:m="both",draggingElement:y=l3,containerElement:b,handle:f=t,buttons:M=[0]}=o,V=e.ref((n=U2(k))!=null?n:{x:0,y:0}),S=e.ref(),x=Z=>a?a.includes(Z.pointerType):!0,B=Z=>{U2(l)&&Z.preventDefault(),U2(i)&&Z.stopPropagation()},O=Z=>{var Y;if(!U2(M).includes(Z.button)||U2(o.disabled)||!x(Z)||U2(d)&&Z.target!==U2(t))return;const D=U2(b),z=(Y=D==null?void 0:D.getBoundingClientRect)==null?void 0:Y.call(D),W=U2(t).getBoundingClientRect(),u2={x:Z.clientX-(D?W.left-z.left+D.scrollLeft:W.left),y:Z.clientY-(D?W.top-z.top+D.scrollTop:W.top)};(C==null?void 0:C(u2,Z))!==!1&&(S.value=u2,B(Z))},_=Z=>{if(U2(o.disabled)||!x(Z)||!S.value)return;const Y=U2(b),D=U2(t).getBoundingClientRect();let{x:z,y:W}=V.value;(m==="x"||m==="both")&&(z=Z.clientX-S.value.x,Y&&(z=Math.min(Math.max(0,z),Y.scrollWidth-D.width))),(m==="y"||m==="both")&&(W=Z.clientY-S.value.y,Y&&(W=Math.min(Math.max(0,W),Y.scrollHeight-D.height))),V.value={x:z,y:W},c==null||c(V.value,Z),B(Z)},N=Z=>{U2(o.disabled)||!x(Z)||S.value&&(S.value=void 0,p==null||p(V.value,Z),B(Z))};if(f6){const Z={capture:(r=o.capture)!=null?r:!0};s9(f,"pointerdown",O,Z),s9(y,"pointermove",_,Z),s9(y,"pointerup",N,Z)}return{...j7(V),position:V,isDragging:e.computed(()=>!!S.value),style:e.computed(()=>`left:${V.value.x}px;top:${V.value.y}px;`)}}function Q7(t,o,n={}){const{window:r=l3,...a}=n;let l;const i=Y7(()=>r&&"ResizeObserver"in r),d=()=>{l&&(l.disconnect(),l=void 0)},c=e.computed(()=>{const k=U2(t);return Array.isArray(k)?k.map(m=>Wt(m)):[Wt(k)]}),p=e.watch(c,k=>{if(d(),i.value&&r){l=new ResizeObserver(o);for(const m of k)m&&l.observe(m,a)}},{immediate:!0,flush:"post"}),C=()=>{d(),p()};return Yt(C),{isSupported:i,stop:C}}function L6(t,o,n={}){const{window:r=l3}=n;return M6(t,o,r==null?void 0:r.localStorage,n)}function J7(t,o,n={}){const{window:r=l3}=n;return M6(t,o,r==null?void 0:r.sessionStorage,n)}function eo(t){var o;const n=e.ref(void 0),r=e.ref(void 0),a=(o=void 0)!=null?o:"height",l=e.ref(1),i=e.ref(0);function d(){var c;if(!n.value)return;let p="";n.value.style[a]="1px",l.value=(c=n.value)==null?void 0:c.scrollHeight;const C=U2(void 0);C?C.style[a]=`${l.value}px`:p=`${l.value}px`,n.value.style[a]=p}return e.watch([r,n],()=>e.nextTick(d),{immediate:!0}),e.watch(l,()=>{var c;return(c=void 0)==null?void 0:c.call(t)}),Q7(n,([{contentRect:c}])=>{i.value!==c.width&&(i.value=c.width,d())}),{textarea:n,input:r,triggerResize:d}}const qt=Object.assign({},{linear:y6},{easeInSine:[.12,0,.39,0],easeOutSine:[.61,1,.88,1],easeInOutSine:[.37,0,.63,1],easeInQuad:[.11,0,.5,0],easeOutQuad:[.5,1,.89,1],easeInOutQuad:[.45,0,.55,1],easeInCubic:[.32,0,.67,0],easeOutCubic:[.33,1,.68,1],easeInOutCubic:[.65,0,.35,1],easeInQuart:[.5,0,.75,0],easeOutQuart:[.25,1,.5,1],easeInOutQuart:[.76,0,.24,1],easeInQuint:[.64,0,.78,0],easeOutQuint:[.22,1,.36,1],easeInOutQuint:[.83,0,.17,1],easeInExpo:[.7,0,.84,0],easeOutExpo:[.16,1,.3,1],easeInOutExpo:[.87,0,.13,1],easeInCirc:[.55,0,1,.45],easeOutCirc:[0,.55,.45,1],easeInOutCirc:[.85,0,.15,1],easeInBack:[.36,0,.66,-.56],easeOutBack:[.34,1.56,.64,1],easeInOutBack:[.68,-.6,.32,1.6]});function to([t,o,n,r]){const a=(C,k)=>1-3*k+3*C,l=(C,k)=>3*k-6*C,i=C=>3*C,d=(C,k,m)=>((a(k,m)*C+l(k,m))*C+i(k))*C,c=(C,k,m)=>3*a(k,m)*C*C+2*l(k,m)*C+i(k),p=C=>{let k=C;for(let m=0;m<4;++m){const y=c(k,t,n);if(y===0)return k;const b=d(k,t,n)-C;k-=b/y}return k};return C=>t===o&&n===r?C:d(p(C),o,r)}function w6(t,o,n){return t+n*(o-t)}function Gt(t){return(typeof t=="number"?[t]:t)||[]}function oo(t,o,n,r={}){var a,l;const i=U2(o),d=U2(n),c=Gt(i),p=Gt(d),C=(a=U2(r.duration))!=null?a:1e3,k=Date.now(),m=Date.now()+C,y=typeof r.transition=="function"?r.transition:(l=U2(r.transition))!=null?l:y6,b=typeof y=="function"?y:to(y);return new Promise(f=>{t.value=i;const M=()=>{var V;if((V=r.abort)!=null&&V.call(r)){f();return}const S=Date.now(),x=b((S-k)/C),B=Gt(t.value).map((O,_)=>w6(c[_],p[_],x));Array.isArray(t.value)?t.value=B.map((O,_)=>{var N,Z;return w6((N=c[_])!=null?N:0,(Z=p[_])!=null?Z:0,x)}):typeof t.value=="number"&&(t.value=B[0]),S<m?requestAnimationFrame(M):(t.value=d,f())};M()})}function Xt(t,o={}){let n=0;const r=()=>{const l=U2(t);return typeof l=="number"?l:l.map(U2)},a=e.ref(r());return e.watch(r,async l=>{var i,d;if(U2(o.disabled))return;const c=++n;if(o.delay&&await F7(U2(o.delay)),c!==n)return;const p=Array.isArray(l)?l.map(U2):U2(l);(i=o.onStarted)==null||i.call(o),await oo(a,a.value,p,{...o,abort:()=>{var C;return c!==n||((C=o.abort)==null?void 0:C.call(o))}}),(d=o.onFinished)==null||d.call(o)},{deep:!0}),e.watch(()=>U2(o.disabled),l=>{l&&(n++,a.value=r())}),Yt(()=>{n++}),e.computed(()=>U2(o.disabled)?r():a.value)}function no(t=0){if(!t)return Date.now();const o=Math.pow(10,t-1),n=Math.pow(10,t)-1;return+(String(Date.now())+String(Math.floor(Math.random()*(n-o+1))+o))}function c9(){return{timestamp:no}}function ro(t){return t==null?!0:Array.isArray(t)||typeof t=="string"?t.length===0:typeof t=="object"?Object.keys(t).length===0:!1}function v6(t,o){if(t===o)return!0;if(typeof t!="object"||typeof o!="object"||t===null||o===null||Array.isArray(t)!==Array.isArray(o))return!1;const n=Object.keys(t),r=Object.keys(o);if(n.length!==r.length)return!1;for(const a of n)if(!v6(t[a],o[a]))return!1;return!0}function Kt(t){if(t===null||typeof t!="object")return t;if(Array.isArray(t))return t.map(Kt);const o={};for(const n in t)_6(t,n)&&(o[n]=Kt(t[n]));return o}function ao(t,o){return t.reduce((n,r)=>(n.some(a=>o(a,r))||n.push(r),n),[])}function V6(t,o){for(const n in o)o[n]instanceof Object&&n in t&&Object.assign(o[n],V6(t[n],o[n]));return Object.assign(t||{},o),t}function _6(t,o){return Object.prototype.hasOwnProperty.call(t,o)}function lo(t){return typeof t=="number"}function Ee(){return{isEmpty:ro,isEqual:v6,cloneDeep:Kt,uniqWith:ao,deepMerge:V6,hasProperty:_6,isNumber:lo}}const io=U9(t=>{t()},150),G9=e.ref([]),x6=Ee();class so{constructor(o,n){x2(this,"id");x2(this,"target");x2(this,"content");x2(this,"visible",e.ref(!1));x2(this,"position",e.ref({top:null,left:null,translate:"translate(0, 0)"}));x2(this,"placement");x2(this,"size");x2(this,"arrow");x2(this,"color");x2(this,"textColor");x2(this,"showTooltip",()=>{var n;this.updateTooltipPosition(),this.visible.value=!0;let o=document.getElementById(String(this.id));if(!o){const r=document.createElement("div");r.classList.add("mc-tooltip"),r.id=String(this.id),r.innerText=this.content||"",r.style.setProperty("--tooltip-color",this.color),r.style.setProperty("--tooltip-text-color",this.textColor),r.setAttribute("tooltip-placement",this.placement),r.setAttribute("tooltip-size",this.size),r.setAttribute("tooltip-arrow",String(this.arrow)),(n=document.getElementById("tooltip-container"))==null||n.appendChild(r)}if(o=document.getElementById(String(this.id)),o){o.style.visibility="visible";for(const r in this.position.value)r&&x6.hasProperty(this.position.value,r)&&(o.style[r]=`${this.position.value[r]}px`);o.style.transform=this.position.value.translate}});x2(this,"hideTooltip",()=>{this.visible.value=!1;const o=document.getElementById(String(this.id));o&&(o.style.visibility="hidden")});x2(this,"updateTooltipPosition",()=>{const{top:o,left:n,width:r,height:a}=this.target.getBoundingClientRect(),l=o+window.scrollY,i=n+window.scrollX,d=4,c=this.arrow?4:0;switch(this.placement){case a1.Right:this.position.value={top:l,left:i+r+(d+c),translate:`translate(0, calc(-50% + ${a/2}px))`};break;case a1.Left:this.position.value={top:l,left:i-(d+c),translate:`translate(-100%, calc(-50% + ${a/2}px))`};break;case a1.Top:this.position.value={top:l-(d+c),left:i+r/2,translate:"translate(-50%, -100%)"};break;case a1.Bottom:this.position.value={top:l+a+(d+c),left:i+r/2,translate:"translate(-50%, 0%)"};break}});x2(this,"destroy",()=>{this.target.removeEventListener("mouseenter",this.showTooltip),this.target.removeEventListener("mouseleave",this.hideTooltip),G9.value=G9.value.filter(n=>n.id!==this.id);const o=document.getElementById(String(this.id));o&&o.remove()});this.target=o,this.content=n.content,this.placement=n.placement||a1.Top,this.size=n.size||ce.M,this.id=c9().timestamp(5),this.arrow=x6.hasProperty(n,"arrow")?!!n.arrow:!0,this.color=n.color||X2.black,this.textColor=n.textColor||X2.white,this.target.addEventListener("mouseenter",this.showTooltip),this.target.addEventListener("mouseleave",this.hideTooltip),G9.value.push(this)}}const X9=io(()=>{G9.value.forEach(t=>t.updateTooltipPosition())}),co=()=>{const t=document.createElement("div");t.id="tooltip-container",document.body.appendChild(t)},uo=()=>{document.getElementById("tooltip-container")||co()};e.onMounted(()=>{window.addEventListener("scroll",()=>X9),window.addEventListener("resize",()=>X9)}),e.onBeforeUnmount(()=>{window.removeEventListener("scroll",()=>X9),window.removeEventListener("resize",()=>X9)});function Qt(){const t=e.ref(null);return{mounted(o,n){uo(),n.value.content&&(t.value=new so(o,n.value))},updated(){},beforeUnmount(){var o;(o=t.value)==null||o.destroy()}}}const Co="data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3c!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3cclipPath%20id='api_a'%3e%3cpath%20class='a'%20d='M0,0H24V24H0Z'%20transform='translate(20%20280)'/%3e%3c/clipPath%3e%3clinearGradient%20id='clickup_paint0_linear_8030_38779'%20x1='3'%20y1='19.766'%20x2='21'%20y2='19.766'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%238930FD'/%3e%3cstop%20offset='1'%20stop-color='%2349CCF9'/%3e%3c/linearGradient%3e%3clinearGradient%20id='clickup_paint1_linear_8030_38779'%20x1='3.5'%20y1='8.68692'%20x2='20.5'%20y2='8.68692'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23FF02F0'/%3e%3cstop%20offset='1'%20stop-color='%23FFC800'/%3e%3c/linearGradient%3e%3cclipPath%20id='enrollment_a'%3e%3crect%20width='28'%20height='28'%20rx='4'%20transform='translate(166%20310)'/%3e%3c/clipPath%3e%3cclipPath%20id='hand_money_clip0_10494_49603'%3e%3crect%20width='24'%20height='24'%20fill='white'/%3e%3c/clipPath%3e%3clinearGradient%20id='help_ukraine_colored_paint0_linear_8335_38758'%20x1='12'%20y1='0'%20x2='12'%20y2='24'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%232860B2'/%3e%3cstop%20offset='1'%20stop-color='%23F2D24C'/%3e%3c/linearGradient%3e%3cradialGradient%20id='instagram_colored_paint0_radial'%20cx='0'%20cy='0'%20r='1'%20gradientUnits='userSpaceOnUse'%20gradientTransform='translate(6.37503%2025.8485)%20rotate(-90)%20scale(23.7858%2022.1226)'%3e%3cstop%20stop-color='%23FFDD55'/%3e%3cstop%20offset='0.1'%20stop-color='%23FFDD55'/%3e%3cstop%20offset='0.5'%20stop-color='%23FF543E'/%3e%3cstop%20offset='1'%20stop-color='%23C837AB'/%3e%3c/radialGradient%3e%3cradialGradient%20id='instagram_colored_paint1_radial'%20cx='0'%20cy='0'%20r='1'%20gradientUnits='userSpaceOnUse'%20gradientTransform='translate(-4.02013%201.72892)%20rotate(78.6806)%20scale(10.6323%2043.827)'%3e%3cstop%20stop-color='%233771C8'/%3e%3cstop%20offset='0.128'%20stop-color='%233771C8'/%3e%3cstop%20offset='1'%20stop-color='%236600FF'%20stop-opacity='0'/%3e%3c/radialGradient%3e%3cclipPath%20id='kraken_clip0_10709_44626'%3e%3crect%20width='24'%20height='24'%20fill='white'/%3e%3c/clipPath%3e%3clinearGradient%20id='mc_pay_mobile_app_linear0'%20gradientUnits='userSpaceOnUse'%20x1='29.3597'%20y1='3.08534'%20x2='3.09748'%20y2='28.4464'%20gradientTransform='matrix(0.75,0,0,0.75,0,0)'%3e%3cstop%20offset='0'%20style='stop-color:rgb(43.921569%25,28.235294%25,96.470588%25);stop-opacity:1;'/%3e%3cstop%20offset='0.28'%20style='stop-color:rgb(41.960784%25,26.666667%25,92.54902%25);stop-opacity:1;'/%3e%3cstop%20offset='0.32'%20style='stop-color:rgb(41.568627%25,26.27451%25,91.764706%25);stop-opacity:1;'/%3e%3cstop%20offset='0.73'%20style='stop-color:rgb(36.862745%25,22.352941%25,83.137255%25);stop-opacity:1;'/%3e%3cstop%20offset='1'%20style='stop-color:rgb(35.294118%25,21.176471%25,80%25);stop-opacity:1;'/%3e%3c/linearGradient%3e%3clinearGradient%20id='mc_pay_mobile_app_linear1'%20gradientUnits='userSpaceOnUse'%20x1='7.4502'%20y1='16.0008'%20x2='24.547'%20y2='16.0008'%20gradientTransform='matrix(0.75,0,0,0.75,0,0)'%3e%3cstop%20offset='0'%20style='stop-color:rgb(43.921569%25,28.235294%25,96.470588%25);stop-opacity:1;'/%3e%3cstop%20offset='0.22'%20style='stop-color:rgb(41.960784%25,26.666667%25,92.54902%25);stop-opacity:1;'/%3e%3cstop%20offset='1'%20style='stop-color:rgb(35.294118%25,21.176471%25,80%25);stop-opacity:1;'/%3e%3c/linearGradient%3e%3clinearGradient%20id='mc_vidwide_paint0_linear'%20x1='12'%20y1='2'%20x2='12'%20y2='22'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%2326DFD5'/%3e%3cstop%20offset='1'%20stop-color='%233580F8'/%3e%3c/linearGradient%3e%3cpath%20id='mediacube_kndia'%20d='M863.5%20345.58l337.44-194.88v243.79L863.51%20589.36z'/%3e%3cpath%20id='mediacube_kndib'%20d='M1538.76%20345.58l-211.18%20121.7-337.82-194.5%20211.18-122.08z'/%3e%3cpath%20id='mediacube_kndic'%20d='M1538.76%20735.33l-337.82%20194.88-211.18-122.08%20549-316.2z'/%3e%3cpath%20id='mediacube_kndid'%20d='M863.5%20735.33l337.44%20194.88v-243.4L863.51%20491.92z'/%3e%3cpath%20id='mediacube_kndie'%20d='M1139.9%20429.75L989.76%20272.78l211.18%20121.7z'/%3e%3clinearGradient%20id='messenger_colored_paint0_linear'%20x1='12'%20y1='1.6224'%20x2='12'%20y2='22.944'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%2300C6FF'/%3e%3cstop%20offset='1'%20stop-color='%230068FF'/%3e%3c/linearGradient%3e%3cpath%20id='new_a'%20d='M0%200h24v24H0V0z'/%3e%3cstyle%20id='payment_undefined'%3e.a{}.b{}.c{fill:none;}%3c/style%3e%3cclipPath%20id='payment_a'%3e%3crect%20width='24'%20height='24'%20transform='translate(8%208)'/%3e%3c/clipPath%3e%3clinearGradient%20id='payoneer_colored_paint0_linear_9155_43603'%20x1='2.5'%20y1='13.5'%20x2='19.5'%20y2='15'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23FE4700'/%3e%3cstop%20offset='0.571856'%20stop-color='%23DFCB04'/%3e%3cstop%20offset='0.715722'%20stop-color='%23DFCB04'/%3e%3cstop%20offset='1'%20stop-color='%2335D96F'/%3e%3c/linearGradient%3e%3clinearGradient%20id='payoneer_colored_paint1_linear_9155_43603'%20x1='4.81452'%20y1='13.0161'%20x2='19.1855'%20y2='12.7984'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23FB5401'/%3e%3cstop%20offset='0.485039'%20stop-color='%23CD56C5'/%3e%3cstop%20offset='0.743886'%20stop-color='%231596E2'/%3e%3cstop%20offset='1'%20stop-color='%233ED96A'/%3e%3c/linearGradient%3e%3clinearGradient%20id='personal_email_colored_paint0_linear_17277_40980'%20x1='16'%20y1='0'%20x2='16'%20y2='32'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23F26567'/%3e%3cstop%20offset='1'%20stop-color='%23F79440'/%3e%3c/linearGradient%3e%3cclipPath%20id='sort_list_a'%3e%3cpath%20class='a'%20d='M0,0H18V18H0Z'/%3e%3c/clipPath%3e%3clinearGradient%20id='steam_colored_paint0_linear'%20x1='12'%20y1='0'%20x2='12'%20y2='24'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23111D2E'/%3e%3cstop%20offset='0.21248'%20stop-color='%23051839'/%3e%3cstop%20offset='0.40695'%20stop-color='%230A1B48'/%3e%3cstop%20offset='0.5811'%20stop-color='%23132E62'/%3e%3cstop%20offset='0.7376'%20stop-color='%23144B7E'/%3e%3cstop%20offset='0.87279'%20stop-color='%23136497'/%3e%3cstop%20offset='1'%20stop-color='%231387B8'/%3e%3c/linearGradient%3e%3clinearGradient%20id='telegram_colored_paint0_linear'%20x1='12'%20y1='0'%20x2='12'%20y2='23.822'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%232AABEE'/%3e%3cstop%20offset='1'%20stop-color='%23229ED9'/%3e%3c/linearGradient%3e%3cpath%20id='timeline_a'%20d='M0%200h24v24H0V0z'/%3e%3cstyle%20id='transaction_undefined'%3e.a,.a{}.c{fill:none;}%3c/style%3e%3cclipPath%20id='transaction_a'%3e%3crect%20class='a'%20width='24'%20height='24'%20transform='translate(708%201508)'/%3e%3c/clipPath%3e%3cpath%20id='unarchive_a'%20d='M0%200h24v24H0V0z'/%3e%3cclipPath%20id='vkontakte_a'%3e%3crect%20width='28'%20height='28'%20transform='translate(4.116%204.116)'/%3e%3c/clipPath%3e%3cclipPath%20id='worldfirst_clip0_10709_44614'%3e%3crect%20width='24'%20height='24'%20fill='white'/%3e%3c/clipPath%3e%3cclipPath%20id='yandexmoney_a'%3e%3crect%20width='28'%20height='28'%20rx='4'%20transform='translate(166%20310)'/%3e%3c/clipPath%3e%3c/defs%3e%3csymbol%20id='a_circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15.315%2015.25L12%208.25L8.684%2015.249M9.347%2013.849H14.65M21%2012C21%2016.9706%2016.9706%2021%2012%2021C7.02944%2021%203%2016.9706%203%2012C3%207.02944%207.02944%203%2012%203C16.9706%203%2021%207.02944%2021%2012Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='access_time'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M11.99%202C6.47%202%202%206.48%202%2012s4.47%2010%209.99%2010C17.52%2022%2022%2017.52%2022%2012S17.52%202%2011.99%202zM12%2020c-4.42%200-8-3.58-8-8s3.58-8%208-8%208%203.58%208%208-3.58%208-8%208z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M12.5%207H11v6l5.25%203.15.75-1.23-4.5-2.67z'/%3e%3c/symbol%3e%3csymbol%20id='account_circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm0%203c1.66%200%203%201.34%203%203s-1.34%203-3%203-3-1.34-3-3%201.34-3%203-3zm0%2014.2c-2.5%200-4.71-1.28-6-3.22.03-1.99%204-3.08%206-3.08%201.99%200%205.97%201.09%206%203.08-1.29%201.94-3.5%203.22-6%203.22z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='account_edit'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4%2019C4%2016.5%206%2014.5%208.5%2014.5H11.1M14%2020H16.3L19.7%2016.6C20.1%2016.2%2020.1%2015.6%2019.7%2015.2L18.8%2014.3C18.4%2013.9%2017.8%2013.9%2017.4%2014.3L14%2017.7V20ZM16%207C16%209.20914%2014.2091%2011%2012%2011C9.79086%2011%208%209.20914%208%207C8%204.79086%209.79086%203%2012%203C14.2091%203%2016%204.79086%2016%207Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='add'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M5%2012H19M12%205V19'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='add_circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M8%2012H16M12%208V16M18.3639%205.63604C21.8787%209.15076%2021.8787%2014.8492%2018.3639%2018.3639C14.8492%2021.8787%209.15074%2021.8787%205.63604%2018.3639C2.12132%2014.8492%202.12132%209.15074%205.63604%205.63604C9.15076%202.12132%2014.8492%202.12132%2018.3639%205.63604Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='address'%20viewBox='0%200%2021%2020'%3e%3cpath%20d='M9.66667%202.5H7.16667C6.0616%202.5%205.00179%202.93899%204.22039%203.72039C3.43899%204.50179%203%205.5616%203%206.66667V13.3333C3%2014.4384%203.43899%2015.4982%204.22039%2016.2796C5.00179%2017.061%206.0616%2017.5%207.16667%2017.5H13.8333C14.9384%2017.5%2015.9982%2017.061%2016.7796%2016.2796C17.561%2015.4982%2018%2014.4384%2018%2013.3333V10'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17.1451%202.52224C17.6921%203.06922%2017.9993%203.81109%2017.9993%204.58464C17.9993%205.95006%2016.5093%207.40864%2015.6585%208.12993C15.4957%208.26235%2015.2922%208.33464%2015.0823%208.33464C14.8724%208.33464%2014.6689%208.26235%2014.506%208.12993C13.656%207.40865%2012.166%205.95006%2012.166%204.58464C12.166%203.81109%2012.4733%203.06922%2013.0203%202.52224C13.5673%201.97526%2014.3091%201.66797%2015.0827%201.66797C15.8562%201.66797%2016.5981%201.97526%2017.1451%202.52224Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M3.83398%204.16797L16.334%2016.668'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M3.83398%2015.8333L9.66732%2010'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='ads_banner'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M6%2018H13M16%2018H18M19%2021H5C3.895%2021%203%2020.105%203%2019V5C3%203.895%203.895%203%205%203H19C20.105%203%2021%203.895%2021%205V19C21%2020.105%2020.105%2021%2019%2021ZM6%206H18V15H6V6Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='album'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm0%2014.5c-2.49%200-4.5-2.01-4.5-4.5S9.51%207.5%2012%207.5s4.5%202.01%204.5%204.5-2.01%204.5-4.5%204.5zm0-5.5c-.55%200-1%20.45-1%201s.45%201%201%201%201-.45%201-1-.45-1-1-1z'/%3e%3c/symbol%3e%3csymbol%20id='alert_solid'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M19.0711%2019.0711C22.9763%2015.1658%2022.9763%208.83419%2019.0711%204.92894C15.1658%201.02369%208.83418%201.02369%204.92894%204.92894C1.02369%208.83416%201.02369%2015.1658%204.92894%2019.0711C8.83416%2022.9763%2015.1658%2022.9763%2019.0711%2019.0711ZM13%2017.25C13%2016.8358%2012.4142%2016.5%2012%2016.5C11.5858%2016.5%2011%2016.8358%2011%2017.25V17.75C11%2018.1642%2011.5858%2018.5%2012%2018.5C12.4142%2018.5%2013%2018.1642%2013%2017.75V17.25ZM13%207C13%206.58579%2012.4142%206%2012%206C11.5858%206%2011%206.58579%2011%207V13C11%2013.4142%2011.5858%2014%2012%2014C12.4142%2014%2013%2013.4142%2013%2013V7Z'/%3e%3c/symbol%3e%3csymbol%20id='alternate_email'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-opacity='.9'%20d='M12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010h5v-2h-5c-4.34%200-8-3.66-8-8s3.66-8%208-8%208%203.66%208%208v1.43c0%20.79-.71%201.57-1.5%201.57s-1.5-.78-1.5-1.57V12c0-2.76-2.24-5-5-5s-5%202.24-5%205%202.24%205%205%205c1.38%200%202.64-.56%203.54-1.47.65.89%201.77%201.47%202.96%201.47%201.97%200%203.5-1.6%203.5-3.57V12c0-5.52-4.48-10-10-10zm0%2013c-1.66%200-3-1.34-3-3s1.34-3%203-3%203%201.34%203%203-1.34%203-3%203z'/%3e%3cpath%20fill='none'%20d='M0%200h24v24H0z'/%3e%3c/symbol%3e%3csymbol%20id='amocrm'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23329DC7'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M14.3098%2011.271C14.3098%2011.012%2014.1629%2010.8826%2013.8689%2010.8826C13.6672%2010.8826%2013.4426%2011.0768%2013.1954%2011.4649C12.9493%2011.8526%2012.7686%2012.2799%2012.661%2012.7289V12.7524C12.6629%2013.0281%2012.7039%2013.3025%2012.7832%2013.5675C12.8465%2013.7557%2012.8875%2013.9513%2012.9049%2014.1499C12.9049%2014.4082%2012.5757%2014.6675%2011.918%2014.9261C11.8327%2014.9617%2011.7422%2014.9814%2011.6505%2014.9845C11.5598%2014.9868%2011.4709%2014.9581%2011.398%2014.903C11.3256%2014.8485%2011.2735%2014.7704%2011.2504%2014.6816C11.1674%2014.4164%2011.1299%2014.1386%2011.1396%2013.8604C11.1396%2013.5149%2011.1495%2013.1915%2011.1691%2012.8899C11.1881%2012.5883%2011.2075%2012.3049%2011.2272%2012.0399C11.2436%2011.8104%2011.2632%2011.5813%2011.2852%2011.3522C11.3049%2011.1529%2011.3141%2010.9923%2011.3141%2010.8691C11.3141%2010.6105%2011.194%2010.481%2010.954%2010.481C10.7137%2010.481%2010.4354%2010.7638%2010.118%2011.329C9.80057%2011.8926%209.64156%2012.3384%209.64156%2012.6685C9.63896%2012.9777%209.68014%2013.2856%209.76385%2013.5826C9.82747%2013.7715%209.86811%2013.9667%209.88583%2014.165C9.88583%2014.4243%209.55663%2014.6829%208.8986%2014.9419C8.81359%2014.9773%208.72311%2014.9969%208.63138%2014.9999C8.54069%2015.002%208.45189%2014.9732%208.37891%2014.9181C8.30659%2014.8636%208.25446%2014.7857%208.23104%2014.697C8.19828%2014.5829%208.17259%2014.467%208.154%2014.35C7.99582%2014.4562%207.82948%2014.5496%207.65646%2014.6292C7.36611%2014.7705%207.0494%2014.846%206.72793%2014.8506C6.31708%2014.8506%206.04234%2014.489%205.90298%2013.7671C5.70404%2014.0984%205.43406%2014.3791%205.11347%2014.588C4.71681%2014.8203%204.26338%2014.9315%203.80689%2014.9083C3.56407%2014.9191%203.32164%2014.8791%203.09441%2014.7909C2.86807%2014.7033%202.66181%2014.5689%202.48849%2014.3961C2.32625%2014.2334%202.19896%2014.038%202.11473%2013.8221C2.03094%2013.6075%201.99227%2013.3772%202.00128%2013.1462C2.00128%2011.8262%202.43834%2010.7856%203.31344%2010.0248C3.61554%209.74463%203.96875%209.52827%204.3528%209.38812C4.68229%209.28599%205.02492%209.23499%205.3692%209.23683C5.67086%209.22676%205.9702%209.29318%206.23972%209.43072C6.34792%209.20597%206.47186%209.09292%206.6112%209.09292C6.90501%209.10261%207.18326%209.23037%207.38564%209.4485C7.48696%209.52955%207.57139%209.63056%207.63391%209.74556C7.6964%209.86057%207.73575%209.98723%207.74958%2010.1181C7.60999%2010.4347%207.45088%2010.7419%207.27317%2011.0379C7.20175%2011.5352%207.17071%2012.0378%207.18038%2012.5404C7.18038%2013.1875%207.26171%2013.5112%207.42432%2013.5112C7.54792%2013.5112%207.77983%2013.3583%208.12016%2013.053C8.13266%2012.4926%208.17541%2011.9334%208.24841%2011.3777C8.36812%2010.6447%208.63712%209.94575%209.03794%209.32605C9.08069%209.23727%209.14456%209.16089%209.22367%209.10392C9.30278%209.04695%209.39461%209.01121%209.49073%209C9.74876%209%209.98516%209.20932%2010.199%209.62864C10.255%209.72492%2010.3019%209.82655%2010.3386%209.93155C10.4881%209.71914%2010.6843%209.54563%2010.9114%209.42502C11.1401%209.30343%2011.3931%209.23764%2011.6508%209.2328C11.978%209.23077%2012.2951%209.34857%2012.5449%209.5649C12.668%209.6636%2012.767%209.79016%2012.8342%209.93463C12.9014%2010.0791%2012.9349%2010.2375%2012.9321%2010.3975V10.5256C13.1328%2010.2499%2013.3942%2010.0265%2013.6951%209.87352C13.9979%209.71954%2014.3316%209.63973%2014.6698%209.64038C14.8424%209.62857%2015.0156%209.65171%2015.1794%209.70848C15.343%209.76517%2015.4935%209.85406%2015.622%209.97013C15.7278%2010.0737%2015.8114%2010.1987%2015.8674%2010.3371C15.9234%2010.4756%2015.9506%2010.6244%2015.9472%2010.7742C15.9499%2011.0627%2015.9266%2011.3512%2015.8777%2011.6356C15.8348%2011.8785%2015.7825%2012.1196%2015.721%2012.3582L15.5643%2012.958C15.5247%2013.0904%2015.5013%2013.2273%2015.4945%2013.3656C15.4945%2013.4625%2015.5256%2013.5112%2015.5872%2013.5112C15.7509%2013.4887%2015.902%2013.4105%2016.0171%2013.2898C16.1286%2013.193%2016.2375%2013.093%2016.3437%2012.9903C16.3347%2012.8926%2016.3321%2012.7942%2016.3361%2012.6957C16.3127%2011.8144%2016.625%2010.9584%2017.2069%2010.3083C17.496%209.97994%2017.8524%209.72094%2018.2506%209.54981C18.6511%209.3774%2019.0836%209.29647%2019.5178%209.31264C19.8734%209.30073%2020.2279%209.35729%2020.5631%209.47936C21.0198%209.66587%2021.2483%209.84064%2021.2483%2010.0037C21.2483%2010.1332%2020.929%2010.1976%2020.2903%2010.1976C19.9923%2010.1921%2019.6964%2010.2482%2019.4201%2010.3626C19.1453%2010.4763%2018.896%2010.6461%2018.6876%2010.8618C18.475%2011.0795%2018.3078%2011.3393%2018.1965%2011.6252C18.0857%2011.9099%2018.0335%2012.2147%2018.043%2012.5209C18.0332%2012.8423%2018.143%2013.1559%2018.3506%2013.4005C18.4614%2013.5209%2018.5978%2013.6148%2018.7496%2013.6752C18.9017%2013.7356%2019.0649%2013.7612%2019.2276%2013.75C19.5544%2013.7622%2019.8781%2013.6815%2020.1627%2013.5169C19.8978%2013.3436%2019.6816%2013.1025%2019.5358%2012.8175C19.3914%2012.5344%2019.3231%2012.2172%2019.3378%2011.8983C19.3353%2011.7097%2019.3694%2011.5224%2019.4381%2011.3474C19.5069%2011.1724%2019.6088%2011.013%2019.7381%2010.8785C19.8708%2010.7282%2020.0337%2010.609%2020.2155%2010.529C20.3983%2010.4484%2020.5959%2010.4087%2020.7949%2010.4126C21.2244%2010.4126%2021.5323%2010.5313%2021.7179%2010.7682C21.9217%2011.0593%2022.0202%2011.4139%2021.9965%2011.7712C21.9425%2012.5679%2021.6969%2013.3595%2021.1611%2013.9493L21.1614%2013.9496C20.4703%2014.7265%2019.7306%2014.9962%2018.885%2014.9962C18.0391%2014.9962%2017.3889%2014.7768%2016.9627%2014.3324C16.8664%2014.2337%2016.7796%2014.1262%2016.7035%2014.0114C16.681%2014.0335%2016.658%2014.0556%2016.6345%2014.0777C16.1733%2014.5564%2015.5494%2014.8346%2014.8928%2014.8543C14.3354%2014.8543%2014.0564%2014.3458%2014.0564%2013.3283C14.0679%2012.9721%2014.1105%2012.6172%2014.1843%2012.2683C14.2538%2011.9402%2014.2957%2011.6065%2014.3098%2011.271ZM3.70819%2012.7618C3.70819%2013.3595%203.92884%2013.6584%204.37051%2013.6584C4.84265%2013.6507%205.23346%2013.3985%205.54298%2012.9017C5.66193%2012.7065%205.75197%2012.4945%205.8102%2012.2723C5.79739%2011.52%205.87536%2010.769%206.04234%2010.0362C5.41843%2010.1579%204.84653%2010.4739%204.40493%2010.9409C4.17421%2011.1813%203.99332%2011.4669%203.87311%2011.7806C3.75344%2012.0927%203.69733%2012.4266%203.70819%2012.7618ZM21.1746%2011.739C21.1713%2012.0221%2021.1051%2012.3009%2020.9811%2012.5541V12.5622C20.8811%2012.4626%2020.8023%2012.3429%2020.7497%2012.2106C20.697%2012.0784%2020.6717%2011.9364%2020.6752%2011.7936C20.6771%2011.6923%2020.701%2011.5926%2020.745%2011.5018C20.7913%2011.4012%2020.8493%2011.3508%2020.9188%2011.3508C21.0893%2011.3508%2021.1746%2011.48%2021.1746%2011.739Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='amper_music'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23221F1F'/%3e%3cpath%20d='M17.1327%205.63879C13.7503%204.20766%209.73428%205.31719%206.98558%207.61666C3.58674%2010.4709%202.50043%2015.9542%206.88683%2018.0608C11.0922%2020.0949%2016.2357%2018.6638%2019.2724%2015.3191C22.2269%2012.0628%2021.3134%207.39154%2017.1327%205.63879ZM15.1247%2015.1261C14.3593%2015.2708%2013.6351%2015.0618%2013.0426%2014.6357C11.6024%2015.4718%209.81658%2015.2146%208.92778%2014.0085C7.9896%2012.7141%208.42577%2010.8407%209.89888%209.80357C10.7054%209.24076%2011.6518%209.0478%2012.4994%209.19252C13.2648%209.32116%2013.6845%2010.1332%2013.3224%2010.8086L13.0344%2011.3633C12.7052%2010.9774%2012.1538%2010.7523%2011.5448%2010.8005C10.6231%2010.8809%209.94002%2011.5644%2010.0059%2012.3282C10.0717%2013.092%2010.8782%2013.6548%2011.7917%2013.5744C12.4501%2013.5181%2013.0014%2013.1483%2013.2236%2012.6578L13.2319%2012.6658L14.0302%2011.098C14.3676%2011.4035%2014.8037%2011.6046%2015.2728%2011.6608L14.919%2012.3121L14.8284%2012.4809C14.1207%2013.8719%2015.1247%2015.1261%2015.1247%2015.1261ZM15.6185%2011.0176C14.9354%2010.897%2014.4416%2010.5915%2014.1289%209.81965C13.808%208.73423%2013.2648%208.59755%2012.483%208.58147C13.199%208.10711%2014.1701%208.09103%2014.9107%208.62167C15.7008%209.17644%2015.9723%2010.1734%2015.6185%2011.0176Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='analytics'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.688%209.75H16.5M16.5%209.75V12.562M16.5%209.75L12.562%2013.688L10.312%2011.438L7.5%2014.25M18%2021H6C4.343%2021%203%2019.657%203%2018V6C3%204.343%204.343%203%206%203H18C19.657%203%2021%204.343%2021%206V18C21%2019.657%2019.657%2021%2018%2021Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='animation_motion'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M5.72177%2010C5.5327%2010.1239%205.35097%2010.2582%205.17742%2010.402C3.84946%2011.5026%203%2013.163%203%2015.0121C3%2016.3556%203.45399%2017.5956%204.20847%2018.5961C5.30262%2020.0517%207.03802%2021%208.98789%2021C10.837%2021%2012.4974%2020.1505%2013.598%2018.8226C13.7418%2018.649%2013.8761%2018.4673%2014%2018.2782'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-dasharray='3%203'/%3e%3cpath%20d='M14.5%2016C18.075%2016%2021%2013.075%2021%209.5C21%205.925%2018.075%203%2014.5%203C10.925%203%208%205.925%208%209.5C8%2010.9584%208.49282%2012.3045%209.31182%2013.3905C10.4995%2014.9706%2012.3834%2016%2014.5%2016Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='api'%20viewBox='0%200%2024%2024'%3e%3cg%20class='b'%20transform='translate(-20%20-280)'%3e%3cg%20transform='translate(20%20280)'%3e%3cpath%20class='a'%20d='M7,7H5A2.006,2.006,0,0,0,3,9v8H5V13H7v4H9V9A2.006,2.006,0,0,0,7,7m0,4H5V9H7m7-2H10V17h2V13h2a2.006,2.006,0,0,0,2-2V9a2.006,2.006,0,0,0-2-2m0,4H12V9h2m6,0v6h1v2H17V15h1V9H17V7h4V9Z'/%3e%3cpath%20fill='none'%20d='M0,0H24V24H0Z'/%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='apple_icon'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M11.1402%207.03379C10.2674%207.03379%208.91626%206.09065%207.49342%206.12474C5.61624%206.14747%203.8945%207.15878%202.92601%208.76097C0.977093%2011.9767%202.42384%2016.7265%204.32493%2019.34C5.25755%2020.6126%206.35755%2022.0444%207.81625%2021.9989C9.21517%2021.9421%209.74126%2021.1354%2011.4391%2021.1354C13.125%2021.1354%2013.6032%2021.9989%2015.0858%2021.9649C16.5924%2021.9421%2017.5489%2020.6695%2018.4696%2019.3854C19.5337%2017.9082%2019.9761%2016.4765%2020%2016.397C19.9641%2016.3856%2017.0706%2015.3288%2017.0348%2012.1472C17.0109%209.48821%2019.3185%208.21555%2019.4261%208.15873C18.1109%206.32928%2016.0902%206.12474%2015.3848%206.07929C13.5435%205.94293%2012.0011%207.03379%2011.1402%207.03379ZM14.2489%204.3521C15.0261%203.46579%2015.5402%202.22721%2015.3967%201C14.2848%201.04545%2012.9456%201.70451%2012.1445%202.59083C11.4271%203.37488%2010.8054%204.63618%2010.9728%205.84067C12.2043%205.93157%2013.4717%205.23842%2014.2489%204.3521Z'%20fill='black'/%3e%3c/symbol%3e%3csymbol%20id='applications'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M5%206C3.895%206%203%206.895%203%208V19C3%2020.1%203.9%2021%205%2021H19C20.105%2021%2021%2020.105%2021%2019V8C21%206.9%2020.1%206%2019%206M5%206H19M5%206L4.99977%205C4.99977%203.895%205.89477%203%206.99977%203H16.9998C18.1048%203%2018.9998%203.895%2018.9998%205L19%206M11.0523%2011.0865L14.6581%2012.9704C15.114%2013.2085%2015.114%2013.7915%2014.6581%2014.0296L11.0523%2015.9135C10.5876%2016.1559%2010%2015.8601%2010%2015.3838V11.6162C10.001%2011.1399%2010.5886%2010.8441%2011.0523%2011.0865Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='applications_new'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M21%2010V16.5C21%2017.6935%2020.5259%2018.8381%2019.682%2019.682C18.8381%2020.5259%2017.6935%2021%2016.5%2021H7.5C6.30653%2021%205.16193%2020.5259%204.31802%2019.682C3.47411%2018.8381%203%2017.6935%203%2016.5V7.5C3%206.30653%203.47411%205.16193%204.31802%204.31802C5.16193%203.47411%206.30653%203%207.5%203H14M14%208H7M7%2012H17M7%2016H17M22%204.5C22%205.88071%2020.8807%207%2019.5%207C18.1193%207%2017%205.88071%2017%204.5C17%203.11929%2018.1193%202%2019.5%202C20.8807%202%2022%203.11929%2022%204.5Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='apps'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4%206C4%207.10457%204.89543%208%206%208C7.10457%208%208%207.10457%208%206C8%204.89543%207.10457%204%206%204C4.89543%204%204%204.89543%204%206ZM10%2018C10%2019.1046%2010.8954%2020%2012%2020C13.1046%2020%2014%2019.1046%2014%2018C14%2016.8954%2013.1046%2016%2012%2016C10.8954%2016%2010%2016.8954%2010%2018ZM4%2018C4%2019.1046%204.89543%2020%206%2020C7.10457%2020%208%2019.1046%208%2018C8%2016.8954%207.10457%2016%206%2016C4.89543%2016%204%2016.8954%204%2018ZM4%2012C4%2013.1046%204.89543%2014%206%2014C7.10457%2014%208%2013.1046%208%2012C8%2010.8954%207.10457%2010%206%2010C4.89543%2010%204%2010.8954%204%2012ZM10%2012C10%2013.1046%2010.8954%2014%2012%2014C13.1046%2014%2014%2013.1046%2014%2012C14%2010.8954%2013.1046%2010%2012%2010C10.8954%2010%2010%2010.8954%2010%2012ZM18%204C16.8954%204%2016%204.89543%2016%206C16%207.10457%2016.8954%208%2018%208C19.1046%208%2020%207.10457%2020%206C20%204.89543%2019.1046%204%2018%204ZM10%206C10%207.10457%2010.8954%208%2012%208C13.1046%208%2014%207.10457%2014%206C14%204.89543%2013.1046%204%2012%204C10.8954%204%2010%204.89543%2010%206ZM16%2012C16%2013.1046%2016.8954%2014%2018%2014C19.1046%2014%2020%2013.1046%2020%2012C20%2010.8954%2019.1046%2010%2018%2010C16.8954%2010%2016%2010.8954%2016%2012ZM16%2018C16%2019.1046%2016.8954%2020%2018%2020C19.1046%2020%2020%2019.1046%2020%2018C20%2016.8954%2019.1046%2016%2018%2016C16.8954%2016%2016%2016.8954%2016%2018Z'/%3e%3c/symbol%3e%3csymbol%20id='archive'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M20.54%205.23l-1.39-1.68C18.88%203.21%2018.47%203%2018%203H6c-.47%200-.88.21-1.16.55L3.46%205.23C3.17%205.57%203%206.02%203%206.5V19c0%201.1.9%202%202%202h14c1.1%200%202-.9%202-2V6.5c0-.48-.17-.93-.46-1.27zM12%2017.5L6.5%2012H10v-2h4v2h3.5L12%2017.5zM5.12%205l.81-1h12l.94%201H5.12z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='archive_in'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M21%207H3M21%207C21.552%207%2022%206.552%2022%206V4C22%203.448%2021.552%203%2021%203H3C2.448%203%202%203.448%202%204V6C2%206.552%202.448%207%203%207M21%207V19C21%2020.105%2020.0706%2021%2018.9232%2021H5.07684C3.92939%2021%203%2020.105%203%2019V7M9%2011H15'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='archive_out'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M21%207H3M21%207C21.552%207%2022%206.552%2022%206V4C22%203.448%2021.552%203%2021%203H3C2.448%203%202%203.448%202%204V6C2%206.552%202.448%207%203%207M21%207V19C21%2020.105%2020.0706%2021%2018.9232%2021H5.07684C3.92939%2021%203%2020.105%203%2019V7M16%2015L12%2011L8%2015'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='arrow-stats-down'%20viewBox='0%200%2012%2012'%3e%3cpath%20d='M6.00004%2010L12%202H0L6.00004%2010Z'%20fill='%23FA533A'/%3e%3c/symbol%3e%3csymbol%20id='arrow-stats-up'%20viewBox='0%200%2012%2012'%3e%3cpath%20d='M6.00004%202L12%2010H0L6.00004%202Z'%20fill='%2340BF40'/%3e%3c/symbol%3e%3csymbol%20id='arrow_backward'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M14%2016L10%2012L14%208'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='arrow_downward'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12.01%204V20M6%2013.6096L12%2019.9925L18%2013.6096'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='arrow_drop_down'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M8%2010L12%2014L16%2010'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='arrow_drop_up'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16%2014L12%2010L8%2014'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='arrow_forward'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M10%2016L14%2012L10%208'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='arrow_leftward'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M20%2012.01L4%2012.01M10.3904%206L4.00748%2012L10.3904%2018'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='arrow_rightward'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M20%2012.01L4%2012.01M10.3904%206L4.00748%2012L10.3904%2018'%20stroke='currentColor'%20fill='none'%20transform='rotate(180%2012%2012)'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='arrow_to_grow_circle'%20viewBox='0%200%2032%2032'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M16.0003%2029.3327C23.3641%2029.3327%2029.3337%2023.3631%2029.3337%2015.9993C29.3337%208.63555%2023.3641%202.66602%2016.0003%202.66602C8.63653%202.66602%202.66699%208.63555%202.66699%2015.9993C2.66699%2023.3631%208.63653%2029.3327%2016.0003%2029.3327ZM16.749%2012.5827C16.3348%2012.5827%2015.999%2012.9185%2015.999%2013.3327C15.999%2013.7469%2016.3348%2014.0827%2016.749%2014.0827H17.7746C17.7594%2014.1012%2017.7414%2014.1226%2017.7208%2014.1465C17.6314%2014.2506%2017.4921%2014.4036%2017.3022%2014.5855C16.9218%2014.9498%2016.3423%2015.4269%2015.5584%2015.8619C14.0822%2016.6809%2011.8526%2017.3678%208.79721%2016.8285C8.76624%2016.5564%208.75033%2016.2797%208.75033%2015.9993C8.75033%2011.9949%2011.9959%208.74935%2016.0003%208.74935C16.4145%208.74935%2016.7503%208.41356%2016.7503%207.99935C16.7503%207.58514%2016.4145%207.24935%2016.0003%207.24935C11.1674%207.24935%207.25033%2011.1665%207.25033%2015.9993C7.25033%2020.8322%2011.1674%2024.7493%2016.0003%2024.7493C20.8332%2024.7493%2024.7503%2020.8322%2024.7503%2015.9993C24.7503%2015.5851%2024.4145%2015.2493%2024.0003%2015.2493C23.5861%2015.2493%2023.2503%2015.5851%2023.2503%2015.9993C23.2503%2020.0038%2020.0048%2023.2493%2016.0003%2023.2493C12.8379%2023.2493%2010.1489%2021.2253%209.15776%2018.4018C12.2722%2018.815%2014.643%2018.0852%2016.2862%2017.1735C17.2018%2016.6654%2017.8836%2016.1056%2018.3397%2015.6687C18.5357%2015.481%2018.6906%2015.3154%2018.8052%2015.1854V16.1389C18.8052%2016.5531%2019.141%2016.8889%2019.5552%2016.8889C19.9695%2016.8889%2020.3052%2016.5531%2020.3052%2016.1389V13.3327C20.3052%2012.9185%2019.9695%2012.5827%2019.5552%2012.5827H16.749ZM18.4449%2014.4438L18.8052%2014.706V14.7061L18.4449%2014.4438Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='arrow_up_down'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%203.00002L12.01%2021M12%203.00002L7%208M12%203.00002L17%208M12.01%2021L7%2016M12.01%2021L17%2016'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='arrow_upward'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12.01%204.0128V20M6%2010.4162L12%204L18%2010.4162'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='arrows'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M8.6%203.4L6.8%205.2L5%207L8.6%2010.6'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19%207H5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15.4004%2020.6L19.0004%2017L15.4004%2013.4'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5%2017H19'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='artist'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cpath%20d='M11,14c1,0,2.1,0.2,3.2,0.4c-0.8,0.9-1.2,1.9-1.2,3.1c0,0.9,0.3,1.7,0.8,2.5H3v-2c0-1.2,0.9-2.1,2.7-2.9%20C7.6,14.4,9.3,14,11,14%20M11,12c-1.1,0-2-0.4-2.8-1.2C7.4,10.1,7,9.1,7,8c0-1.1,0.4-2,1.2-2.8C9,4.4,9.9,4,11,4%20c1.1,0,2.1,0.4,2.8,1.2C14.6,6,15,6.9,15,8c0,1.1-0.4,2.1-1.2,2.8S12.1,12,11,12%20M18.5,10H20h2v2h-2v5.5c0,1.4-1.1,2.5-2.5,2.5%20S15,18.9,15,17.5s1.1-2.5,2.5-2.5c0.4,0,0.7,0.1,1,0.2V10z'/%3e%3c/symbol%3e%3csymbol%20id='assessment'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19%203H5c-1.1%200-2%20.9-2%202v14c0%201.1.9%202%202%202h14c1.1%200%202-.9%202-2V5c0-1.1-.9-2-2-2zM9%2017H7v-7h2v7zm4%200h-2V7h2v10zm4%200h-2v-4h2v4z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='assets_unassigned'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M21%2013V16.5C21%2017.6935%2020.5259%2018.8381%2019.682%2019.682C18.8381%2020.5259%2017.6935%2021%2016.5%2021H7.5C6.30653%2021%205.16193%2020.5259%204.31802%2019.682C3.47411%2018.8381%203%2017.6935%203%2016.5V7.5C3%206.30653%203.47411%205.16193%204.31802%204.31802C5.16193%203.47411%206.30653%203%207.5%203H11M10%208H7M7%2012H13M7%2016H17M16.125%204.95833C16.125%204.6287%2016.2227%204.30646%2016.4059%204.03238C16.589%203.7583%2016.8493%203.54468%2017.1539%203.41853C17.4584%203.29239%2017.7935%203.25938%2018.1168%203.32369C18.4401%203.388%2018.7371%203.54673%2018.9702%203.77982C19.2033%204.01291%2019.362%204.30988%2019.4263%204.63318C19.4906%204.95648%2019.4576%205.2916%2019.3315%205.59614C19.2053%205.90068%2018.9917%206.16098%2018.7176%206.34412C18.4435%206.52725%2018.1213%206.625%2017.7917%206.625M17.7917%208.63V8.29167M23%206C23%208.76142%2020.7614%2011%2018%2011C15.2386%2011%2013%208.76142%2013%206C13%203.23858%2015.2386%201%2018%201C20.7614%201%2023%203.23858%2023%206Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='assignment'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cpath%20d='M18.4,15c-1.9,0-3.5,1.6-3.5,3.5s1.6,3.5,3.5,3.5s3.5-1.6,3.5-3.5S20.4,15,18.4,15z%20M19.1,20.7h-1.4v-2.2h1.4V20.7z%20M19.1,17.7h-1.4v-1.4h1.4V17.7z'/%3e%3cpath%20d='M13.6,18.5c0-2.7,2.2-4.8,4.8-4.8c1,0,1.8,0.3,2.6,0.8V5c0-1.1-0.9-2-2-2h-4.2c-0.4-1.2-1.5-2-2.8-2S9.6,1.8,9.2,3H5%20C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h9.3C13.9,20.3,13.6,19.4,13.6,18.5z%20M12,3c0.5,0,1,0.5,1,1s-0.5,1-1,1s-1-0.5-1-1S11.5,3,12,3z%20M7,7h10v2H7V7z%20M7,11h10v2H7V11z%20M13,17H7v-2h6V17z'/%3e%3c/symbol%3e%3csymbol%20id='assignment_ind'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M19%203h-4.18C14.4%201.84%2013.3%201%2012%201c-1.3%200-2.4.84-2.82%202H5c-1.1%200-2%20.9-2%202v14c0%201.1.9%202%202%202h14c1.1%200%202-.9%202-2V5c0-1.1-.9-2-2-2zm-7%200c.55%200%201%20.45%201%201s-.45%201-1%201-1-.45-1-1%20.45-1%201-1zm0%204c1.66%200%203%201.34%203%203s-1.34%203-3%203-3-1.34-3-3%201.34-3%203-3zm6%2012H6v-1.4c0-2%204-3.1%206-3.1s6%201.1%206%203.1V19z'/%3e%3c/symbol%3e%3csymbol%20id='assist_icon'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.6,2h-3.2C5.8,2,2,5.8,2,10.4v10.3C2,21.4,2.6,22,3.3,22h10.3c4.6,0,8.4-3.8,8.4-8.4c0,0,0,0,0,0v-3.2%20C22,5.8,18.2,2,13.6,2z%20M16.9,13.7C16.9,13.7,16.9,13.7,16.9,13.7c0,1.1-0.9,1.9-1.9,1.9h-3.7l-2.5,2.5c-0.1,0.1-0.1,0.1-0.2,0.1%20c-0.2,0-0.3-0.1-0.3-0.3v-2.3c-1-0.1-1.8-0.9-1.8-1.9V9.5c0,0,0,0,0,0c0-1.1,0.9-1.9,1.9-1.9h6.8c0,0,0,0,0,0c0.9,0,1.7,0.8,1.7,1.7%20V13.7z'/%3e%3cpath%20d='M15,8.5H8.4c-0.6,0-1,0.5-1,1l0,4.1c0,0.6,0.5,1,1,1h0.7v1.4c0,0,0,0.1,0,0.1c0.1,0.1,0.2,0.1,0.2,0l1.5-1.5h4%20c0.6,0,1-0.5,1-1V9.5C16,9,15.5,8.5,15,8.5z%20M11.7,13.7c-0.2,0-0.4-0.2-0.4-0.4c0-0.2,0.2-0.4,0.4-0.4s0.4,0.2,0.4,0.4%20C12.1,13.5,11.9,13.7,11.7,13.7z%20M12.1,11.8C12.1,11.8,12.1,11.9,12.1,11.8l0,0.3l0,0c0,0,0,0.1,0,0.1c0,0.2-0.2,0.4-0.4,0.3%20s-0.4-0.2-0.3-0.4v-0.3c0-0.3,0.2-0.6,0.5-0.8c0.2-0.1,0.4-0.3,0.4-0.5c0-0.3-0.2-0.5-0.5-0.5c-0.1,0-0.3,0-0.4,0.2%20c-0.1,0.1-0.2,0.2-0.2,0.4c0,0,0,0.1,0,0.1c0,0.2-0.2,0.4-0.4,0.3s-0.4-0.2-0.3-0.4c0,0,0,0,0,0c0-0.7,0.6-1.3,1.3-1.2%20c0.5,0,1,0.4,1.1,0.9C13.1,10.9,12.8,11.6,12.1,11.8z'/%3e%3c/symbol%3e%3csymbol%20id='attach_money'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M11.8%2010.9c-2.27-.59-3-1.2-3-2.15%200-1.09%201.01-1.85%202.7-1.85%201.78%200%202.44.85%202.5%202.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5%201.68-3.5%203.61%200%202.31%201.91%203.46%204.7%204.13%202.5.6%203%201.48%203%202.41%200%20.69-.49%201.79-2.7%201.79-2.06%200-2.87-.92-2.98-2.1h-2.2c.12%202.19%201.76%203.42%203.68%203.83V21h3v-2.15c1.95-.37%203.5-1.5%203.5-3.55%200-2.84-2.43-3.81-4.7-4.4z'/%3e%3c/symbol%3e%3csymbol%20id='audiotrack'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M12%203v9.28c-.47-.17-.97-.28-1.5-.28C8.01%2012%206%2014.01%206%2016.5S8.01%2021%2010.5%2021c2.31%200%204.2-1.75%204.45-4H15V6h4V3h-7z'/%3e%3c/symbol%3e%3csymbol%20id='backspace'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M22%203H7c-.69%200-1.23.35-1.59.88L0%2012l5.41%208.11c.36.53.9.89%201.59.89h15c1.1%200%202-.9%202-2V5c0-1.1-.9-2-2-2zm-3%2012.59L17.59%2017%2014%2013.41%2010.41%2017%209%2015.59%2012.59%2012%209%208.41%2010.41%207%2014%2010.59%2017.59%207%2019%208.41%2015.41%2012%2019%2015.59z'/%3e%3c/symbol%3e%3csymbol%20id='bank'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9.35742%2017V8.934'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5%208.934V17'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%2017H4L3%2019V20H11'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21%205.928L12%202L3%205.928V8.934H21V5.928Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M20.999%2019.5L21%2013.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14%2013.5V19.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21%2013.5C21%2012.6707%2019.432%2012%2017.5%2012C15.568%2012%2014.001%2012.6718%2014%2013.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14%2019.5C14%2020.3293%2015.568%2021%2017.5%2021C19.432%2021%2020.999%2020.3282%2021%2019.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14%2013.5C14%2014.3293%2015.568%2015%2017.5%2015C19.432%2015%2020.999%2014.3282%2021%2013.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14%2016.5C14%2017.3293%2015.568%2018%2017.5%2018C19.432%2018%2020.999%2017.3282%2021%2016.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='bank_building'%20viewBox='0%200%2032%2032'%3e%3cpath%20d='M19.524%2013.3333V24M25.3333%2024V13.3333M6.66667%2013.3333V24M12.476%2024V13.3333M28%2013.3333H4V9.32533L16.2027%204L28%209.148V13.3333ZM4%2028H28V26.6667L26.6667%2024H5.33333L4%2026.6667V28Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='bank_building_blue'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%238756FF'/%3e%3cpath%20d='M14.0557%209.44444V15.6667M17.4444%2015.6667V9.44444M6.55556%209.44444V15.6667M9.94433%2015.6667V9.44444M19%209.44444H5V7.10644L12.1182%204L19%207.003V9.44444ZM5%2018H19V17.2222L18.2222%2015.6667H5.77778L5%2017.2222V18Z'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='bank_card'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M3%209H21M12%2015.1818H6.85714M18%2019H6C4.343%2019%203%2017.657%203%2016V8C3%206.343%204.343%205%206%205H18C19.657%205%2021%206.343%2021%208V16C21%2017.657%2019.657%2019%2018%2019Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='bank_card_arrow'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%2016.001C12%2018.762%2014.239%2021%2017%2021C19.762%2021%2022%2018.761%2022%2016C22%2013.24%2019.764%2011.002%2017.005%2011C14.3%2010.998%2012%2013.296%2012%2016.001ZM12%2016.001L4%2016C2.895%2016%202%2015.105%202%2014V5C2%203.895%202.895%203%204%203H19C20.105%203%2021%203.895%2021%205V13M2%206.85H21M16.5%2014.232L18.268%2016L16.5%2017.768'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='bank_card_clock'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%2016.001C12%2018.762%2014.239%2021%2017%2021C19.762%2021%2022%2018.761%2022%2016C22%2013.24%2019.764%2011.002%2017.005%2011C14.3%2010.998%2012%2013.296%2012%2016.001ZM12%2016.001L4%2016C2.895%2016%202%2015.105%202%2014V5C2%203.895%202.895%203%204%203H19C20.105%203%2021%203.895%2021%205V13M2%206.85H21M18.5%2016H16.5V14'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='bank_card_double'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M7%2012H20M7%2016H6C4.895%2016%204%2015.105%204%2014V7C4%205.895%204.895%205%206%205H15C16.105%205%2017%205.895%2017%207V8M12%2016H10M18%2019H9C7.895%2019%207%2018.105%207%2017V10C7%208.895%207.895%208%209%208H18C19.105%208%2020%208.895%2020%2010V17C20%2018.105%2019.105%2019%2018%2019Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='bank_card_virtual_blue'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%238756FF'/%3e%3cpath%20d='M6.60059%209.79999H18.3006'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10.8707%2012.4H9.2002'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.4506%2016.3H8.55059C7.47354%2016.3%206.60059%2015.427%206.60059%2014.35V9.14998C6.60059%208.07293%207.47354%207.19998%208.55059%207.19998H16.3506C17.4276%207.19998%2018.3006%208.07293%2018.3006%209.14998V11.75'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.3572%2013.6324V11.9676C16.3572%2011.9315%2016.3459%2011.8964%2016.3251%2011.8674C16.3043%2011.8385%2016.275%2011.8173%2016.2416%2011.807C16.2082%2011.7967%2016.1725%2011.7978%2016.1398%2011.8103C16.1071%2011.8227%2016.0791%2011.8458%2016.0601%2011.876L13.8257%2015.463C13.8105%2015.4874%2013.8019%2015.5157%2013.8009%2015.5448C13.7999%2015.5739%2013.8064%2015.6028%2013.8199%2015.6283C13.8334%2015.6539%2013.8533%2015.6752%2013.8775%2015.69C13.9017%2015.7048%2013.9293%2015.7126%2013.9574%2015.7125H15.6839C15.7033%2015.7122%2015.7226%2015.716%2015.7406%2015.7235C15.7586%2015.731%2015.775%2015.7422%2015.7889%2015.7563C15.8027%2015.7705%2015.8137%2015.7873%2015.8211%2015.8059C15.8286%2015.8245%2015.8325%2015.8444%2015.8325%2015.8645V17.4904C15.8317%2017.5246%2015.8418%2017.5581%2015.8612%2017.5858C15.8807%2017.6135%2015.9084%2017.6338%2015.94%2017.6436C15.9717%2017.6533%2016.0056%2017.652%2016.0364%2017.6398C16.0673%2017.6276%2016.0935%2017.6053%2016.1108%2017.5761L18.3245%2014.0399C18.3404%2014.0146%2018.3495%2013.9853%2018.3506%2013.9551C18.3518%2013.9249%2018.3451%2013.895%2018.3313%2013.8684C18.3174%2013.8419%2018.2969%2013.8197%2018.2718%2013.8042C18.2468%2013.7888%2018.2182%2013.7806%2018.1891%2013.7806H16.4964C16.4594%2013.7786%2016.4246%2013.7623%2016.3988%2013.7348C16.373%2013.7073%2016.3581%2013.6708%2016.3572%2013.6324Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='bank_money_colored'%20viewBox='0%200%2041%2040'%3e%3crect%20x='0.333984'%20width='40'%20height='40'%20rx='20'%20fill='%23B265FF'/%3e%3cpath%20d='M17.0302%2027.084V17.0015M11.584%2017.0015V27.084M19.084%2027.084H10.334L9.08398%2029.584V30.834H19.084M31.584%2022.709L31.5827%2030.209C31.5815%2031.2442%2029.624%2032.084%2027.209%2032.084C24.794%2032.084%2022.834%2031.2456%2022.834%2030.209V22.709M31.584%2022.709C31.584%2021.6724%2029.624%2020.834%2027.209%2020.834C24.794%2020.834%2022.8352%2021.6737%2022.834%2022.709M31.584%2022.709C31.5827%2023.7442%2029.624%2024.584%2027.209%2024.584C24.794%2024.584%2022.834%2023.7456%2022.834%2022.709M22.834%2026.459C22.834%2027.4956%2024.794%2028.334%2027.209%2028.334C29.624%2028.334%2031.5827%2027.4942%2031.584%2026.459M31.584%2013.244L20.334%208.33398L9.08398%2013.244V17.0015H31.584V13.244Z'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='bankwire'%20viewBox='0%200%20512%20512'%3e%3cg%3e%3cg%3e%3cpath%20d='M467,422H45c-24.814,0-45,20.186-45,45v30c0,8.291,6.709,15,15,15h482c8.291,0,15-6.709,15-15v-30%20C512,442.186,491.814,422,467,422z'/%3e%3c/g%3e%3c/g%3e%3cg%3e%3cg%3e%3cpath%20d='M340.373,271h-48.746c-6.103,39.814-6.176,81.202-0.225,121h49.197C346.549,352.202,346.476,310.814,340.373,271z'/%3e%3c/g%3e%3c/g%3e%3cg%3e%3cg%3e%3cpath%20d='M461.368,271h-48.741c-6.103,39.814-6.176,81.202-0.225,121H461.6C467.549,352.204,467.469,310.814,461.368,271z'/%3e%3c/g%3e%3c/g%3e%3cg%3e%3cg%3e%3cpath%20d='M220.373,271h-48.746c-6.103,39.814-6.176,81.202-0.225,121h49.197C226.549,352.202,226.476,310.814,220.373,271z'/%3e%3c/g%3e%3c/g%3e%3cg%3e%3cg%3e%3cpath%20d='M99.373,271H50.632c-6.101,39.814-6.182,81.204-0.233,121h49.199C105.549,352.202,105.476,310.814,99.373,271z'/%3e%3c/g%3e%3c/g%3e%3cg%3e%3cg%3e%3cpath%20d='M263.954,2.285c-4.863-3.047-11.045-3.047-15.908,0L11.703,151h488.595L263.954,2.285z%20M256,121c-8.284,0-15-6.716-15-15%20s6.716-15,15-15c8.284,0,15,6.716,15,15S264.284,121,256,121z'/%3e%3c/g%3e%3c/g%3e%3cg%3e%3cg%3e%3cpath%20d='M0,181v15c0,24.814,20.186,45,45,45h422c24.814,0,45-20.186,45-45v-15H0z'/%3e%3c/g%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='bell'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9.51%2018V18.512C9.51%2018.8389%209.57442%2019.1626%209.69958%2019.4646C9.82474%2019.7666%2010.0082%2020.0409%2010.2394%2020.272C10.4707%2020.503%2010.7452%2020.6863%2011.0473%2020.8112C11.3494%2020.9361%2011.6731%2021.0003%2012%2021C12.3269%2021.0001%2012.6507%2020.9358%2012.9528%2020.8108C13.2549%2020.6858%2013.5294%2020.5025%2013.7606%2020.2713C13.9919%2020.0402%2014.1753%2019.7658%2014.3004%2019.4637C14.4256%2019.1617%2014.49%2018.8379%2014.49%2018.511V18M17.947%2018C18.4915%2018%2019.0137%2017.7837%2019.3987%2017.3987C19.7837%2017.0137%2020%2016.4915%2020%2015.947C19.9995%2015.371%2019.7708%2014.8187%2019.364%2014.411L18%2013.048V9C18%207.4087%2017.3679%205.88258%2016.2426%204.75736C15.1174%203.63214%2013.5913%203%2012%203C10.4087%203%208.88258%203.63214%207.75736%204.75736C6.63214%205.88258%206%207.4087%206%209V13.048L4.636%2014.411C4.22916%2014.8187%204.00046%2015.371%204%2015.947C4%2016.4915%204.2163%2017.0137%204.60131%2017.3987C4.98632%2017.7837%205.50851%2018%206.053%2018H17.947Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='binance_coin_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23F4C139'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8.25543%209.68906L11.9783%206L15.5924%209.68906L14.2201%2010.9816L11.9783%208.71967L9.62772%2011.0489L8.25543%209.68906ZM7.33152%2010.645L6%2011.9644L7.33152%2013.2839L8.66304%2011.9644L7.33152%2010.645ZM10.606%2011.951L11.9375%2010.6315L13.269%2011.951L11.9375%2013.2704L10.606%2011.951ZM16.5435%2010.6181L15.212%2011.9375L16.5435%2013.2569L17.875%2011.9375L16.5435%2010.6181ZM9.62772%2012.8934L8.26902%2014.2398L11.9375%2017.875L15.606%2014.2398L14.2473%2012.8934L11.9375%2015.1823L9.62772%2012.8934Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='biometrics'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M10.3164%2011V9.684C10.3164%208.754%2011.0704%208%2012.0004%208C12.9304%208%2013.6844%208.754%2013.6844%209.684V11'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M14%2016H10C9.448%2016%209%2015.552%209%2015V12C9%2011.448%209.448%2011%2010%2011H14C14.552%2011%2015%2011.448%2015%2012V15C15%2015.552%2014.552%2016%2014%2016Z'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.5%203H5.25C4.007%203%203%204.007%203%205.25V7.5'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M3%2016.5V18.75C3%2019.993%204.007%2021%205.25%2021H7.5'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.5%2021H18.75C19.993%2021%2021%2019.993%2021%2018.75V16.5'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21%207.5V5.25C21%204.007%2019.993%203%2018.75%203H16.5'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='bitcoin'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4.5,4h2.3V2.1h2.4v2h2.3v-2h2.3v2c2.6,0.3,4.6,2.1,4.6,4.5c0,1.3-0.6,2.5-1.7,3.2C18,12.6,19,14,19,15.5%20c0,2.5-2.3,4.5-5.2,4.5v2h-2.3v-2H9.2v2H6.9v-2H4.6l0.6-2H7V6H4.7V4%20M9.2,13v5h4.6c1.6,0,2.9-1.1,2.9-2.5S15.4,13,13.8,13H9.2%20M9.2,6v5h4c1.6,0,2.9-1.1,2.9-2.5S14.9,6,13.2,6l0,0H9.2z'/%3e%3c/symbol%3e%3csymbol%20id='bitcoin_cash_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%2350AF95'/%3e%3cpath%20d='M14.5593%208.79965C14.0515%207.86483%2013.0355%207.93271%2011.8872%208.33928L11.3184%206.98143L10.4592%207.36889L11.013%208.69094C10.7871%208.7928%2010.558%208.90119%2010.3304%209.00902L9.77316%207.67813L8.91434%208.06527L9.48259%209.42289C9.29808%209.51041%209.11678%209.5961%208.93869%209.67653L8.93681%209.67237L7.7515%2010.2063L8.12146%2011.0889C8.12146%2011.0889%208.75112%2010.7912%208.74528%2010.8072C9.09338%2010.6504%209.28805%2010.7937%209.39125%2010.9466L10.0392%2012.4934C10.0633%2012.4827%2010.095%2012.4695%2010.1325%2012.4582C10.1039%2012.4712%2010.0731%2012.4848%2010.0417%2012.4993L10.9492%2014.6664C10.978%2014.7787%2010.984%2014.9757%2010.741%2015.0857C10.7559%2015.0901%2010.1163%2015.3671%2010.1163%2015.3671L10.359%2016.4312L11.4772%2015.927C11.6854%2015.8334%2011.8916%2015.7445%2012.0931%2015.6551L12.6687%2017.0283L13.5271%2016.6415L12.9579%2015.2827C13.1956%2015.1811%2013.4244%2015.0801%2013.647%2014.9795L14.2131%2016.3322L15.0723%2015.9448L14.4984%2014.5738C15.9096%2013.8428%2016.7741%2013.0369%2016.3531%2011.6754C16.0144%2010.579%2015.3042%2010.3418%2014.4048%2010.5221C14.8008%2010.0535%2014.9322%209.48312%2014.5593%208.79965ZM14.5871%2012.2781C15.0174%2013.3042%2013.1416%2014.011%2012.5595%2014.2741L11.7976%2012.4544C12.3802%2012.192%2014.1388%2011.2076%2014.5871%2012.2781ZM13.1122%209.89109C13.503%2010.8249%2011.9338%2011.4029%2011.4487%2011.6216L10.7576%209.97128C11.2426%209.75257%2012.7042%208.91726%2013.1122%209.89109Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='bitcoin_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23F7931A'/%3e%3cpath%20d='M15.9791%2011.0202C16.1456%209.96943%2015.2984%209.40456%2014.1399%209.02774L14.5157%207.60435L13.5982%207.38842L13.2324%208.7743C12.9912%208.71754%2012.7434%208.664%2012.4973%208.61094L12.8657%207.21593L11.9488%207L11.5727%208.42289C11.3731%208.37995%2011.1771%208.33752%2010.9869%208.29285L10.9879%208.28841L9.72261%207.99005L9.47854%208.91545C9.47854%208.91545%2010.1593%209.06278%2010.1449%209.07191C10.5165%209.15951%2010.5837%209.39172%2010.5724%209.57582L10.1444%2011.1974C10.17%2011.2035%2010.2032%2011.2124%2010.2398%2011.2262C10.2092%2011.2191%2010.1765%2011.2112%2010.1428%2011.2035L9.54282%2013.4751C9.49735%2013.5817%209.38212%2013.7416%209.12237%2013.6809C9.13151%2013.6935%208.45548%2013.5237%208.45548%2013.5237L8%2014.5155L9.19396%2014.7966C9.41608%2014.8491%209.63376%2014.9041%209.84804%2014.956L9.46835%2016.3957L10.3848%2016.6116L10.7608%2015.1872C11.0112%2015.2514%2011.2542%2015.3106%2011.492%2015.3664L11.1173%2016.7841L12.0348%2017L12.4145%2015.563C13.979%2015.8426%2015.1554%2015.7299%2015.6506%2014.3936C16.0497%2013.3176%2015.6308%2012.697%2014.8076%2012.2923C15.4071%2012.1618%2015.8586%2011.7894%2015.9791%2011.0202ZM13.8828%2013.7961C13.5993%2014.8721%2011.6809%2014.2904%2011.059%2014.1446L11.5628%2012.2373C12.1848%2012.3839%2014.1791%2012.6741%2013.8828%2013.7961ZM14.1666%2011.0046C13.9079%2011.9833%2012.3112%2011.4861%2011.7933%2011.3642L12.2501%209.63431C12.768%209.75622%2014.436%209.98374%2014.1666%2011.0046Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='bloggerhood'%20viewBox='0%200%20513.000000%20512.000000'%3e%3cg%20transform='translate(0.000000,512.000000)%20scale(0.100000,-0.100000)'%3e%3cpath%20d='M2055%204416%20c-244%20-37%20-306%20-56%20-478%20-143%20-312%20-159%20-498%20-389%20-570-708%20-19%20-84%20-21%20-130%20-25%20-690%20-5%20-759%2014%20-1139%2078%20-1599%2040%20-285%20134%20-464285%20-544%2045%20-24%2060%20-27%20160%20-27%2061%200%20142%202%20180%205%2047%203%20103%20-1%20170%20-15%2082%20-16144%20-19%20340%20-19%20248%20-1%20344%207%20625%2050%20180%2028%20257%2050%20459%20131%20279%20111%20490%20242652%20402%20152%20151%20229%20279%20275%20461%2028%20111%2026%20325%20-5%20439%20-47%20178%20-124%20306%20-270451%20-72%2072%20-226%20191%20-279%20216%20-2%201%2011%2053%2027%20115%2045%20167%2064%20300%2058%20394%20-8%20109-49%20289%20-86%20370%20-82%20180%20-260%20393%20-417%20497%20-224%20149%20-506%20232%20-824%20243%20-118%204-163%201%20-355%20-29z%20m513%20-925%20c188%20-47%20269%20-127%20243%20-241%20-39%20-172%20-274%20-276-735%20-325%20-80%20-8%20-153%20-15%20-162%20-15%20-15%200%20-16%2017%20-10%20193%204%20105%2012%20209%2018%2023023%2079%2099%20141%20211%20172%2076%2022%20324%2014%20435%20-14z%20m483%20-1435%20c93%20-20%20161%20-51%20200-93%20l34%20-35%20-62%20-57%20c-108%20-98%20-245%20-168%20-423%20-216%20-153%20-41%20-296%20-55%20-554-55%20l-234%200%20-29%2033%20c-40%2046%20-58%20115%20-58%20222%20l0%2089%2060%2012%20c142%2030%20469%2085%2058098%20161%2019%20402%2020%20486%202z'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='board'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='currentColor'%20d='M18.3,2.5c1.7,0,3.1,1.4,3.2,3.1l0,0.2l0,12c0,1.8-1.5,3.2-3.3,3.2h-12c-1.7,0-3.1-1.4-3.2-3.1l0-0.2l0-12%20C3,4,4.5,2.5,6.3,2.5H18.3z%20M11.5,9.5l-7,0l0,8.3l0,0.2c0.1,0.9,0.8,1.6,1.7,1.6l5.2,0V9.5z%20M20,15.5l-7,0v4l5.3,0%20c1,0,1.8-0.8,1.8-1.8L20,15.5z%20M18.3,4L13,4v10l7,0l0-8.2l0-0.2C19.9,4.7,19.2,4,18.3,4z%20M11.5,4L6.3,4L6.1,4%20C5.2,4.1,4.5,4.8,4.5,5.7l0,2.3l7,0V4z'/%3e%3c/symbol%3e%3csymbol%20id='book'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M3.5%2019V5C3.5%203.895%204.395%203%205.5%203H18.5C19.605%203%2020.5%203.895%2020.5%205V15M3.5%2019C3.5%2017.895%204.395%2017%205.5%2017H18.5C19.605%2017%2020.5%2016.105%2020.5%2015M3.5%2019C3.5%2020.105%204.395%2021%205.5%2021H18.5C19.605%2021%2020.5%2020.105%2020.5%2019V15M16.5%207.657H7.5M16.5%2012H7.5'%20stroke='currentColor'%20fill='none'%20stroke-miterlimit='10'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='broken_link'%20viewBox='0%200%2040%2040'%3e%3cpath%20d='M28.9262%2020.0191L31.4892%2017.4561C32.6934%2016.2878%2033.3841%2014.6891%2033.4095%2013.0115C33.4349%2011.334%2032.7929%209.71505%2031.6246%208.51089C30.4564%207.30672%2028.8576%206.61596%2027.1801%206.59057C25.5025%206.56517%2023.8836%207.20722%2022.6794%208.37547C22.6336%208.41991%2022.5885%208.46505%2022.544%208.51089L17.0625%2013.9924C16.4752%2014.5794%2016.0092%2015.2762%2015.6911%2016.0432C15.3731%2016.8103%2015.2093%2017.6324%2015.209%2018.4628C15.2087%2019.2931%2015.3719%2020.1154%2015.6894%2020.8826C16.0069%2021.6499%2016.4724%2022.3471%2017.0594%2022.9344L17.0625%2022.9376L17.0462%2022.9539C17.5568%2023.4548%2018.1496%2023.8642%2018.7988%2024.1643'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21.2022%2015.834C21.8515%2016.1346%2022.4443%2016.5445%2022.9548%2017.0458C24.141%2018.2312%2024.8078%2019.8392%2024.8084%2021.5162C24.809%2023.1931%2024.1434%2024.8016%2022.958%2025.9879L22.9548%2025.991L17.4734%2031.4725C16.2811%2032.6294%2014.6817%2033.2708%2013.0205%2033.2583C11.3593%2033.2458%209.76968%2032.5803%208.59501%2031.4057C7.42033%2030.231%206.75487%2028.6414%206.74237%2026.9802C6.72986%2025.319%207.37131%2023.7195%208.52817%2022.5273L11.0911%2019.9643'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M26.666%2034.9993V31.666'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M31.666%2026.666H34.9993'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5%2013.334H8.33333'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13.334%205V8.33333'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='bug'%20viewBox='0%200%2040%2040'%3e%3cg%20transform='translate(8%208)'%3e%3cpath%20d='M20,0A20,20,0,1,1,0,20,20,20,0,0,1,20,0Z'%20transform='translate(-8%20-8)'%20fill='none'/%3e%3cg%20transform='translate(15478%2019354)'%3e%3crect%20width='24'%20height='24'%20transform='translate(-15478%20-19354)'%20fill='none'/%3e%3cpath%20d='M10.5,2.751a.75.75,0,0,0-1.5,0V3.5a2.986,2.986,0,0,0,.53,1.7A3.753,3.753,0,0,0,7.009,8.49H6.753A2.25,2.25,0,0,1,4.512,6.231l.006-1.486a.75.75,0,0,0-1.5-.006L3.012,6.224A3.75,3.75,0,0,0,6.747,9.99H7V11.5H2.75a.75.75,0,0,0,0,1.5H7v1.992H6.747a3.75,3.75,0,0,0-3.734,3.765l.006,1.486a.75.75,0,1,0,1.5-.006l-.006-1.486a2.25,2.25,0,0,1,2.241-2.259h.473a5,5,0,0,0,9.547,0h.473a2.25,2.25,0,0,1,2.241,2.259l-.006,1.486a.75.75,0,1,0,1.5.006l.006-1.486a3.75,3.75,0,0,0-3.734-3.765H17V13h4.251a.75.75,0,0,0,0-1.5H17V9.99h.253a3.75,3.75,0,0,0,3.734-3.765l-.006-1.486a.75.75,0,0,0-1.5.006l.006,1.486A2.25,2.25,0,0,1,17.247,8.49h-.256A3.753,3.753,0,0,0,14.47,5.206,2.986,2.986,0,0,0,15,3.5V2.751a.75.75,0,0,0-1.5,0V3.5a1.5,1.5,0,0,1-3,0Zm-2,6A2.25,2.25,0,0,1,10.75,6.5h2.5a2.25,2.25,0,0,1,2.25,2.25V15a3.5,3.5,0,0,1-7,0Z'%20transform='translate(-15478%20-19353.496)'%20fill='currentColor'/%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='bug_big'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M10.5%202.75098C10.5%202.33676%2010.1642%202.00098%209.75%202.00098C9.33579%202.00098%209%202.33676%209%202.75098V3.50309C9%204.13555%209.19571%204.7223%209.52988%205.20608C8.13703%205.68509%207.11506%206.96142%207.00909%208.48994H6.76245L6.75315%208.48992C5.51052%208.48479%204.50733%207.47327%204.51247%206.23064L4.51861%204.74504C4.52032%204.33083%204.18593%203.99366%203.77172%203.99195C3.35751%203.99024%203.02034%204.32463%203.01863%204.73884L3.01248%206.22444C3.00392%208.29549%204.6759%209.98135%206.74695%209.98991L6.76245%209.98994H7V11.4996H2.75C2.33579%2011.4996%202%2011.8354%202%2012.2496C2%2012.6638%202.33579%2012.9996%202.75%2012.9996H7V14.9919H6.76245L6.74695%2014.992C4.6759%2015.0005%203.00392%2016.6864%203.01248%2018.7574L3.01863%2020.243C3.02034%2020.6572%203.35751%2020.9916%203.77172%2020.9899C4.18593%2020.9882%204.52032%2020.651%204.51861%2020.2368L4.51247%2018.7512C4.50733%2017.5086%205.51052%2016.4971%206.75315%2016.492L6.76245%2016.4919H7.22633C7.86093%2018.5247%209.75816%2020.0001%2012%2020.0001C14.2418%2020.0001%2016.1391%2018.5247%2016.7737%2016.4919H17.2375L17.2468%2016.492C18.4895%2016.4971%2019.4927%2017.5086%2019.4875%2018.7512L19.4814%2020.2368C19.4797%2020.651%2019.8141%2020.9882%2020.2283%2020.9899C20.6425%2020.9916%2020.9797%2020.6572%2020.9814%2020.243L20.9875%2018.7574C20.9961%2016.6864%2019.3241%2015.0005%2017.253%2014.992L17.2375%2014.9919H17V12.9996H21.2514C21.6656%2012.9996%2022.0014%2012.6638%2022.0014%2012.2496C22.0014%2011.8354%2021.6656%2011.4996%2021.2514%2011.4996H17V9.98994H17.2375L17.253%209.98991C19.3241%209.98135%2020.9961%208.29549%2020.9875%206.22444L20.9814%204.73884C20.9797%204.32463%2020.6425%203.99024%2020.2283%203.99195C19.8141%203.99366%2019.4797%204.33083%2019.4814%204.74504L19.4875%206.23064C19.4927%207.47327%2018.4895%208.48479%2017.2468%208.48992L17.2375%208.48994H16.9909C16.8849%206.96142%2015.863%205.6851%2014.4701%205.20608C14.8043%204.7223%2015%204.13555%2015%203.50309V2.75098C15%202.33676%2014.6642%202.00098%2014.25%202.00098C13.8358%202.00098%2013.5%202.33676%2013.5%202.75098V3.50309C13.5%204.33151%2012.8284%205.00309%2012%205.00309C11.1716%205.00309%2010.5%204.33151%2010.5%203.50309V2.75098ZM8.5%208.75311C8.5%207.51047%209.50736%206.50311%2010.75%206.50311H13.25C14.4926%206.50311%2015.5%207.51047%2015.5%208.75311V15.0001C15.5%2016.9331%2013.933%2018.5001%2012%2018.5001C10.067%2018.5001%208.5%2016.9331%208.5%2015.0001V8.75311Z'/%3e%3c/symbol%3e%3csymbol%20id='bug_report'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M18%207L17%209L15.667%209.917M5%2012H8.111M15.889%2012H19M6%203H5C3.895%203%203%203.895%203%205V6M18%2021H19C20.105%2021%2021%2020.105%2021%2019V18M3%2018V19C3%2020.105%203.895%2021%205%2021H6M21%206V5C21%203.895%2020.105%203%2019%203H18M6%207L7%209L8.333%209.917M6%2017L7%2015L8.333%2014.083M18%2017L17%2015L15.667%2014.083M12.444%2017H11.555C9.898%2017%208.555%2015.657%208.555%2014V11C8.555%209.895%209.45%209%2010.555%209H13.444C14.549%209%2015.444%209.895%2015.444%2011V14C15.444%2015.657%2014.101%2017%2012.444%2017ZM14%209H10V7C10%206.448%2010.448%206%2011%206H13C13.552%206%2014%206.448%2014%207V9Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='building'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9%2019V5.77778V5.77778C9%205.34822%209.33579%205%209.75%205H14.25V5C14.6642%205%2015%205.34822%2015%205.77778V19'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19%2019V8.71736V8.71736C19%208.32117%2018.673%208%2018.2696%208H15'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9%208H5.7304H5.7304C5.32701%208%205%208.32117%205%208.71736V8.71736V19'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15%2010H17'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15%2012.5H17'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15%2015H17'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7%2010H9'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7%2012.5H9'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7%2015H9'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%2013H13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%2015.5H13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%2010.5H13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%208H13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12%2018V19'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M20%2019H4'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='building_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200V0C18.6274%200%2024%205.37258%2024%2012V12C24%2018.6274%2018.6274%2024%2012%2024V24C5.37258%2024%200%2018.6274%200%2012V12Z'%20fill='white'/%3e%3cpath%20d='M9%2019V5.77778V5.77778C9%205.34822%209.33579%205%209.75%205H14.25V5C14.6642%205%2015%205.34822%2015%205.77778V19'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19%2019V8.71736V8.71736C19%208.32117%2018.673%208%2018.2696%208H15'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9%208H5.7304H5.7304C5.32701%208%205%208.32117%205%208.71736V8.71736V19'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15%2010H17'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15%2012.5H17'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15%2015H17'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7%2010H9'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7%2012.5H9'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7%2015H9'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%2013H13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%2015.5H13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%2010.5H13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%208H13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12%2018V19'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M20%2019H4'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='business_center'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0%200h24v24H0zm10%205h4v2h-4zm0%200h4v2h-4z'/%3e%3cpath%20d='M10%2016v-1H3.01L3%2019c0%201.11.89%202%202%202h14c1.11%200%202-.89%202-2v-4h-7v1h-4zm10-9h-4.01V5l-2-2h-4l-2%202v2H4c-1.1%200-2%20.9-2%202v3c0%201.11.89%202%202%202h6v-2h4v2h6c1.1%200%202-.9%202-2V9c0-1.1-.9-2-2-2zm-6%200h-4V5h4v2z'/%3e%3c/symbol%3e%3csymbol%20id='calendar'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16%202V6M17%2012V12.5M12%2012V12.5M12%2016V16.5M7%2016V16.5M8%202V6M3%209H21M19%204H5C3.895%204%203%204.895%203%206V19C3%2020.105%203.895%2021%205%2021H19C20.105%2021%2021%2020.105%2021%2019V6C21%204.895%2020.105%204%2019%204Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='calendar_colored'%20viewBox='0%200%2040%2040'%3e%3crect%20width='40'%20height='40'%20rx='20'%20fill='%234EA9A2'/%3e%3cpath%20d='M14.166%208.3335V12.2224'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M25.833%208.3335V12.2224'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19.119%2017.9389H19.106C19.3393%2017.4463%2019.9227%2017.2519%2020.4023%2017.4982C20.5838%2017.5889%2020.7393%2017.7445%2020.8301%2017.9259L21.5301%2019.3519L21.5171%2019.3389C21.6467%2019.6241%2021.919%2019.8185%2022.243%2019.8574L23.8245%2020.0908C24.343%2020.1556%2024.719%2020.6482%2024.6412%2021.1797C24.6023%2021.3871%2024.4986%2021.5815%2024.356%2021.7241L23.2023%2022.8389H23.1893C22.956%2023.0593%2022.8523%2023.3704%2022.9041%2023.6945L23.1634%2025.263L23.1504%2025.25C23.2412%2025.7685%2022.8782%2026.2741%2022.3597%2026.3648C22.1393%2026.3908%2021.9319%2026.3648%2021.7375%2026.2611L20.3115%2025.5093C20.0264%2025.3537%2019.6764%2025.3537%2019.4041%2025.4963L17.9782%2026.2352V26.2222C17.4986%2026.4685%2016.9153%2026.2871%2016.669%2025.8074C16.5653%2025.613%2016.5264%2025.3926%2016.5653%2025.1852L16.8245%2023.6037V23.5908C16.8764%2023.2667%2016.7727%2022.9556%2016.5393%2022.7222L15.3986%2021.5945C15.0097%2021.2185%2014.9967%2020.5963%2015.3727%2020.2204C15.5153%2020.0648%2015.7097%2019.9611%2015.9171%2019.9352L17.4986%2019.6889V19.6759C17.8097%2019.6241%2018.0819%2019.4297%2018.2245%2019.1445L19.119%2017.9389Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M27.7775%2010.2778H12.2219C10.0741%2010.2778%208.33301%2012.0189%208.33301%2014.1667V27.7778C8.33301%2029.9256%2010.0741%2031.6667%2012.2219%2031.6667H27.7775C29.9252%2031.6667%2031.6663%2029.9256%2031.6663%2027.7778V14.1667C31.6663%2012.0189%2029.9252%2010.2778%2027.7775%2010.2778Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='calendar_load'%20viewBox='0%200%2020%2020'%3e%3cpath%20d='M13.3333%201.6665V4.99984M5.83333%209.99984V10.4165M10%209.99984V10.4165M5.83333%2013.3332V13.7498M6.66667%201.6665V4.99984M2.5%207.49984H17.5M9.16667%2017.4998H4.16667C3.24583%2017.4998%202.5%2016.754%202.5%2015.8332V4.99984C2.5%204.079%203.24583%203.33317%204.16667%203.33317H15.8333C16.7542%203.33317%2017.5%204.079%2017.5%204.99984V9.99984M11.6667%2015.3123L12.6042%2016.2498M12.6042%2016.2498L13.5417%2015.3123M12.6042%2016.2498V13.7498C12.6042%2013.4183%2012.7359%2013.1004%2012.9703%2012.866C13.2047%2012.6315%2013.5226%2012.4998%2013.8542%2012.4998H15.8333M18.3333%2014.6873L17.3958%2013.7498M17.3958%2013.7498L16.4583%2014.6873M17.3958%2013.7498V16.2498C17.3958%2016.5814%2017.2641%2016.8993%2017.0297%2017.1337C16.7953%2017.3681%2016.4774%2017.4998%2016.1458%2017.4998H14.1667'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='calendar_sixteen'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8%201.5C8.27614%201.5%208.5%201.72386%208.5%202V3.5H15.5V2C15.5%201.72386%2015.7239%201.5%2016%201.5C16.2761%201.5%2016.5%201.72386%2016.5%202V3.5H19C20.3811%203.5%2021.5%204.61886%2021.5%206V19C21.5%2020.3811%2020.3811%2021.5%2019%2021.5H5C3.61886%2021.5%202.5%2020.3811%202.5%2019V6C2.5%204.61886%203.61886%203.5%205%203.5H7.5V2C7.5%201.72386%207.72386%201.5%208%201.5ZM7.5%204.5H5C4.17114%204.5%203.5%205.17114%203.5%206V19C3.5%2019.8289%204.17114%2020.5%205%2020.5H19C19.8289%2020.5%2020.5%2019.8289%2020.5%2019V6C20.5%205.17114%2019.8289%204.5%2019%204.5H16.5V6C16.5%206.27614%2016.2761%206.5%2016%206.5C15.7239%206.5%2015.5%206.27614%2015.5%206V4.5H8.5V6C8.5%206.27614%208.27614%206.5%208%206.5C7.72386%206.5%207.5%206.27614%207.5%206V4.5Z'%20fill='currentColor'/%3e%3cpath%20d='M9.09089%208.9C9.26423%208.90867%209.40289%208.97367%209.5069%209.095C9.61956%209.20767%209.67589%209.35067%209.67589%209.524V17.376C9.67589%2017.5493%209.6109%2017.6967%209.4809%2017.818C9.35089%2017.9393%209.19056%2018%208.99989%2018C8.80923%2018%208.65323%2017.9393%208.53189%2017.818C8.41056%2017.6967%208.34989%2017.5493%208.34989%2017.376V10.616L7.20589%2011.305C7.11056%2011.3657%207.00223%2011.396%206.88089%2011.396C6.70756%2011.396%206.56023%2011.331%206.43889%2011.201C6.31756%2011.0623%206.25689%2010.915%206.25689%2010.759C6.25689%2010.655%206.28723%2010.5553%206.34789%2010.46C6.40856%2010.3647%206.48656%2010.2867%206.58189%2010.226L8.63589%208.991C8.75723%208.93033%208.90889%208.9%209.09089%208.9Z'%20fill='currentColor'/%3e%3cpath%20d='M14.5715%2012.163C15.0482%2012.163%2015.4988%2012.3017%2015.9235%2012.579C16.3482%2012.8477%2016.6862%2013.2117%2016.9375%2013.671C17.1975%2014.1303%2017.3275%2014.6243%2017.3275%2015.153C17.3275%2015.6903%2017.1975%2016.1887%2016.9375%2016.648C16.6775%2017.0987%2016.3222%2017.4583%2015.8715%2017.727C15.4208%2017.9957%2014.9225%2018.13%2014.3765%2018.13C13.7525%2018.13%2013.2108%2017.9697%2012.7515%2017.649C12.3008%2017.3283%2011.9542%2016.908%2011.7115%2016.388C11.4688%2015.868%2011.3475%2015.309%2011.3475%2014.711C11.3475%2014.0437%2011.4775%2013.3113%2011.7375%2012.514C11.9975%2011.708%2012.4222%2010.9627%2013.0115%2010.278C13.6095%209.58467%2014.3722%209.09067%2015.2995%208.796C15.3775%208.77%2015.4555%208.757%2015.5335%208.757C15.7155%208.757%2015.8628%208.80467%2015.9755%208.9C16.0968%208.99533%2016.1575%209.147%2016.1575%209.355C16.1575%209.50233%2016.1098%209.63233%2016.0145%209.745C15.9192%209.85767%2015.7892%209.93567%2015.6245%209.979C15.0178%2010.1957%2014.4545%2010.5683%2013.9345%2011.097C13.4145%2011.6257%2013.0418%2012.2193%2012.8165%2012.878C13.3278%2012.4013%2013.9128%2012.163%2014.5715%2012.163ZM14.3635%2016.986C14.8575%2016.986%2015.2692%2016.8127%2015.5985%2016.466C15.9278%2016.1193%2016.0925%2015.6817%2016.0925%2015.153C16.0925%2014.6417%2015.9322%2014.2083%2015.6115%2013.853C15.2995%2013.489%2014.8922%2013.307%2014.3895%2013.307C13.8695%2013.307%2013.4405%2013.489%2013.1025%2013.853C12.7732%2014.2083%2012.6085%2014.6503%2012.6085%2015.179C12.6085%2015.6817%2012.7688%2016.1107%2013.0895%2016.466C13.4188%2016.8127%2013.8435%2016.986%2014.3635%2016.986Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='calendar_two_weeks'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16%202V6M8%202V6M7%2011L9%2010V17M16%2015H11.5L15.5%2010H16V15ZM16%2015H17.5M16%2015V17M19%204H5C3.895%204%203%204.895%203%206V19C3%2020.105%203.895%2021%205%2021H19C20.105%2021%2021%2020.105%2021%2019V6C21%204.895%2020.105%204%2019%204Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='calendar_user'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M7.5%203V6'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.5%203V6'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%2021H6C5.20435%2021%204.44129%2020.6839%203.87868%2020.1213C3.31607%2019.5587%203%2018.7956%203%2018V7.5C3%206.70435%203.31607%205.94129%203.87868%205.37868C4.44129%204.81607%205.20435%204.5%206%204.5H18C18.7956%204.5%2019.5587%204.81607%2020.1213%205.37868C20.6839%205.94129%2021%206.70435%2021%207.5V9'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11.5%2016H10.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13%2012H10.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.43573%2011.2188C7.28739%2011.2188%207.14239%2011.2627%207.01905%2011.3452C6.89572%2011.4276%206.79959%2011.5447%206.74282%2011.6817C6.68606%2011.8188%206.6712%2011.9696%206.70014%2012.1151C6.72908%2012.2606%206.80051%2012.3942%206.9054%2012.4991C7.01029%2012.604%207.14393%2012.6754%207.28941%2012.7043C7.4349%2012.7333%207.5857%2012.7184%207.72274%2012.6617C7.85979%2012.6049%207.97692%2012.5088%208.05933%2012.3854C8.14174%2012.2621%208.18573%2012.1171%208.18573%2011.9688C8.18573%2011.7698%208.10671%2011.5791%207.96606%2011.4384C7.82541%2011.2978%207.63464%2011.2188%207.43573%2011.2188Z'%20fill='currentColor'/%3e%3cpath%20d='M7.43573%2015.2188C7.28739%2015.2188%207.14239%2015.2627%207.01905%2015.3452C6.89572%2015.4276%206.79959%2015.5447%206.74282%2015.6817C6.68606%2015.8188%206.6712%2015.9696%206.70014%2016.1151C6.72908%2016.2606%206.80051%2016.3942%206.9054%2016.4991C7.01029%2016.604%207.14393%2016.6754%207.28941%2016.7043C7.4349%2016.7333%207.5857%2016.7184%207.72274%2016.6617C7.85979%2016.6049%207.97692%2016.5088%208.05933%2016.3854C8.14174%2016.2621%208.18573%2016.1171%208.18573%2015.9688C8.18573%2015.7698%208.10671%2015.5791%207.96606%2015.4384C7.82541%2015.2978%207.63464%2015.2188%207.43573%2015.2188Z'%20fill='currentColor'/%3e%3cpath%20d='M15%2020.5V20.094C15.0016%2019.5391%2015.2227%2019.0074%2015.6151%2018.6151C16.0074%2018.2227%2016.5391%2018.0016%2017.094%2018H19.906C20.4609%2018.0016%2020.9926%2018.2227%2021.3849%2018.6151C21.7773%2019.0074%2021.9984%2019.5391%2022%2020.094V20.5C22%2020.6326%2021.9473%2020.7598%2021.8536%2020.8536C21.7598%2020.9473%2021.6326%2021%2021.5%2021H15.5C15.3674%2021%2015.2402%2020.9473%2015.1464%2020.8536C15.0527%2020.7598%2015%2020.6326%2015%2020.5Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M18.5%2015.75C19.6046%2015.75%2020.5%2014.8546%2020.5%2013.75C20.5%2012.6454%2019.6046%2011.75%2018.5%2011.75C17.3954%2011.75%2016.5%2012.6454%2016.5%2013.75C16.5%2014.8546%2017.3954%2015.75%2018.5%2015.75Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='camera_alt'%20viewBox='0%200%2024%2024'%3e%3ccircle%20cx='12'%20cy='12'%20r='3.2'/%3e%3cpath%20d='M9%202L7.17%204H4c-1.1%200-2%20.9-2%202v12c0%201.1.9%202%202%202h16c1.1%200%202-.9%202-2V6c0-1.1-.9-2-2-2h-3.17L15%202H9zm3%2015c-2.76%200-5-2.24-5-5s2.24-5%205-5%205%202.24%205%205-2.24%205-5%205z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='camera_plus'%20viewBox='0%200%2024%2024'%3e%3crect%20fill='none'%20height='24'%20width='24'/%3e%3cpath%20d='M3,4V1h2v3h3v2H5v3H3V6H0V4H3z%20M6,10V7h3V4h7l1.83,2H21c1.1,0,2,0.9,2,2v12c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V10H6z%20M13,19c2.76,0,5-2.24,5-5s-2.24-5-5-5s-5,2.24-5,5S10.24,19,13,19z%20M9.8,14c0,1.77,1.43,3.2,3.2,3.2s3.2-1.43,3.2-3.2%20s-1.43-3.2-3.2-3.2S9.8,12.23,9.8,14z'/%3e%3c/symbol%3e%3csymbol%20id='camera_video'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15%2012.9968L19.048%2015.7719C19.8331%2016.3107%2021%2015.8346%2021%2014.9759V9.02413C21%208.16545%2019.8331%207.68931%2019.048%208.22814L15%2011.0032M12.8182%2018H5.18182C3.97648%2018%203%2016.9492%203%2015.6522V8.34783C3%207.05078%203.97648%206%205.18182%206H12.8182C14.0235%206%2015%207.05078%2015%208.34783V15.6522C15%2016.9492%2014.0235%2018%2012.8182%2018Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='cancel'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%202C6.47%202%202%206.47%202%2012s4.47%2010%2010%2010%2010-4.47%2010-10S17.53%202%2012%202zm5%2013.59L15.59%2017%2012%2013.41%208.41%2017%207%2015.59%2010.59%2012%207%208.41%208.41%207%2012%2010.59%2015.59%207%2017%208.41%2013.41%2012%2017%2015.59z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='cancel_alt'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm0%2018c-4.42%200-8-3.58-8-8%200-1.85.63-3.55%201.69-4.9L16.9%2018.31C15.55%2019.37%2013.85%2020%2012%2020zm6.31-3.1L7.1%205.69C8.45%204.63%2010.15%204%2012%204c4.42%200%208%203.58%208%208%200%201.85-.63%203.55-1.69%204.9z'/%3e%3c/symbol%3e%3csymbol%20id='capitalist'%20viewBox='0%200%2024%2024'%3e%3cg%3e%3cpath%20d='M12,2.5c1.2,0,2.3,0,3.5,0c0.1,0,0.2,0,0.2,0c0.6,0,0.9,0.3,0.8,0.9c-0.2,1.1-0.4,2.3-0.5,3.4c0,0,0,0,0,0%20c-0.2,0.9,0,0.8-1,0.8c-2.1,0-4.2,0-6.3,0c-0.5,0-0.5,0-0.6-0.5C7.9,6,7.7,4.6,7.5,3.3C7.4,2.9,7.7,2.5,8.2,2.5c0.4,0,0.9,0,1.3,0%20C10.4,2.5,11.2,2.5,12,2.5z'/%3e%3cpath%20d='M12,8.5c1.1,0,2.2,0,3.2,0c0.4,0,0.5,0.1,0.4,0.5c-0.1,0.5-0.2,1-0.2,1.5c0,0.4-0.3,0.6-0.6,0.8c-0.5,0.2-1.1,0.3-1.6,0.4%20c-1.2,0.2-2.3,0.1-3.5-0.2c-0.2,0-0.4-0.1-0.6-0.2c-0.3-0.1-0.5-0.4-0.6-0.8c-0.1-0.5-0.1-1-0.2-1.5c-0.1-0.4,0-0.5,0.4-0.5%20C9.8,8.5,10.9,8.5,12,8.5z'/%3e%3cpath%20d='M6.9,19.9c0.2,0.1,0.5,0.3,0.7,0.4c0.4,0.2,0.9,0.2,1.3,0.1c0.7-0.2,1.2-0.5,1.7-1.1c0.4-0.5,0.8-0.5,1.2,0%20c0.2,0.2,0.3,0.2,0.4,0c0.5-0.5,0.8-0.5,1.2,0c0.5,0.6,1.2,1,2.1,1.1c0.3,0,0.5,0,0.8-0.1c0.3-0.1,0.6-0.3,0.8-0.5%20c0,0.7-0.5,1.4-1.2,1.7c-1.3,0.6-2.5,0.3-3.6-0.5c-0.2-0.2-0.3-0.2-0.6,0c-1,0.9-2.8,1.2-4.1,0.3C7.2,21,6.9,20.5,6.9,19.9%20L6.9,19.9z'/%3e%3cpath%20d='M12.3,13.6C10.1,13.7,8,13,6,11.8c-0.3-0.2-0.4-0.6-0.2-0.9c0.2-0.3,0.5-0.3,0.8-0.1c1,0.6,2,1.1,3.2,1.4%20c2.5,0.6,4.9,0.2,7.2-1.2c0.2-0.1,0.3-0.2,0.5-0.3c0.4-0.2,0.6-0.1,0.7,0.2c0.2,0.3,0.1,0.6-0.2,0.8c-0.4,0.3-0.8,0.5-1.2,0.7%20C15.4,13.1,14,13.5,12.3,13.6z'/%3e%3cpath%20d='M16.4,16.2c0,1-0.8,1.9-1.9,1.9c-1,0-1.9-0.7-1.9-1.7c0-0.2-0.1-0.3-0.3-0.3c-0.1,0-0.3,0-0.5,0c-0.3,0-0.5,0.1-0.5,0.4%20c-0.1,0.9-0.9,1.6-1.9,1.7c-0.9,0-1.7-0.7-1.9-1.6c-0.1-0.9,0.4-1.8,1.3-2.1c0.9-0.3,1.9,0.1,2.3,1c0.1,0.2,0.2,0.3,0.4,0.2%20c0.3-0.1,0.5-0.1,0.8,0c0.2,0.1,0.3,0,0.4-0.2c0.4-0.8,1.3-1.2,2.2-1C15.8,14.5,16.4,15.3,16.4,16.2z%20M9.5,17.7%20c0.8,0,1.5-0.6,1.5-1.4c0-0.8-0.7-1.5-1.5-1.5c-0.8,0-1.4,0.7-1.5,1.5C8,17,8.6,17.6,9.5,17.7z%20M14.5,17.7c0.8,0,1.4-0.6,1.4-1.4%20c0-0.8-0.7-1.5-1.5-1.5c-0.8,0-1.4,0.7-1.4,1.5C13.1,17,13.7,17.7,14.5,17.7z'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='capitalist_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%238EB748'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10.3795%209.62832C10.3795%2010.6804%209.42163%2011.5752%208.18345%2011.5752C6.94527%2011.5752%205.98737%2010.6804%205.98737%209.62832C5.98737%208.57622%206.94527%207.68142%208.18345%207.68142C9.42163%207.68142%2010.3795%208.57622%2010.3795%209.62832ZM11.1116%209.62832C11.1116%2011.0799%209.8006%2012.2566%208.18345%2012.2566C6.5663%2012.2566%205.25535%2011.0799%205.25535%209.62832C5.25535%208.17674%206.5663%207%208.18345%207C9.46641%207%2010.5567%207.74064%2010.9525%208.77158C11.3271%208.66988%2011.6572%208.609%2011.9972%208.60629C12.366%208.60335%2012.7239%208.66893%2013.1436%208.79649C13.5313%207.7526%2014.6287%207%2015.922%207C17.5392%207%2018.8501%208.17674%2018.8501%209.62832C18.8501%2011.0799%2017.5392%2012.2566%2015.922%2012.2566C14.3049%2012.2566%2012.9939%2011.0799%2012.9939%209.62832C12.9939%209.575%2012.9957%209.52206%2012.9992%209.46953C12.9931%209.46793%2012.9871%209.46619%2012.9811%209.4643C12.5755%209.33643%2012.2833%209.28545%2012.0034%209.28768C11.7426%209.28975%2011.4709%209.33812%2011.1042%209.44041C11.1091%209.50248%2011.1116%209.56514%2011.1116%209.62832ZM14.87%2014.4883C16.0789%2015.3933%2017.5805%2016.5175%2019.9482%2014.9823C19.5299%2018.146%2015.19%2018.8274%2012.0527%2016.3938C8.8109%2018.9735%204.47103%2018.146%204.05273%2014.9823C6.72194%2016.5482%208.19382%2015.4124%209.35043%2014.52C10.3009%2013.7865%2011.0385%2013.2174%2012.0527%2014.4469C13.0168%2013.1008%2013.8364%2013.7144%2014.87%2014.4883ZM15.922%2011.5752C17.1602%2011.5752%2018.1181%2010.6804%2018.1181%209.62832C18.1181%208.57622%2017.1602%207.68142%2015.922%207.68142C14.6838%207.68142%2013.7259%208.57622%2013.7259%209.62832C13.7259%2010.6804%2014.6838%2011.5752%2015.922%2011.5752Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='card'%20viewBox='0%20-91%20512%20512'%3e%3cpath%20d='m347.339844%200c-33.765625%200-65.1875%2010.222656-91.339844%2027.722656-26.15625-17.5-57.574219-27.722656-91.339844-27.722656-90.792968%200-164.660156%2073.859375-164.660156%20164.644531%200%2090.785157%2073.867188%20164.644531%20164.660156%20164.644531%2033.765625%200%2065.1875-10.222656%2091.339844-27.722656%2026.15625%2017.5%2057.574219%2027.722656%2091.339844%2027.722656%2090.792968%200%20164.660156-73.859374%20164.660156-164.644531%200-90.785156-73.867188-164.644531-164.660156-164.644531zm0%20299.289062c-49.03125%200-92.023438-26.34375-115.570313-65.613281h17.304688c8.285156%200%2015-6.714843%2015-15%200-8.28125-6.714844-15-15-15h-30.617188c-1.851562-6.101562-3.285156-12.378906-4.261719-18.8125h58.882813c8.28125%200%2015-6.714843%2015-15%200-8.28125-6.71875-15-15-15h-60.042969c.460938-6.402343%201.378906-12.683593%202.710938-18.808593h33.328125c8.285156%200%2015-6.71875%2015-15%200-8.285157-6.714844-15-15-15h-22.960938c21.828125-44.972657%2067.964844-76.054688%20121.226563-76.054688%2074.25%200%20134.660156%2060.402344%20134.660156%20134.644531%200%2074.242188-60.410156%20134.644531-134.660156%20134.644531zm0%200'/%3e%3c/symbol%3e%3csymbol%20id='card_off'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M3%208H21'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9%2012H7'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13%2018H6C5.20435%2018%204.44129%2017.6839%203.87868%2017.1213C3.31607%2016.5587%203%2015.7956%203%2015V7C3%206.20435%203.31607%205.44129%203.87868%204.87868C4.44129%204.31607%205.20435%204%206%204H18C18.7956%204%2019.5587%204.31607%2020.1213%204.87868C20.6839%205.44129%2021%206.20435%2021%207V12'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17%2017L20%2020'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M20%2017L17%2020'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='card_off_circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M2%206.85H21M17%2021C14.239%2021%2012%2018.761%2012%2016C12%2013.239%2014.239%2011%2017%2011C19.762%2011%2022%2013.239%2022%2016C22%2018.761%2019.762%2021%2017%2021Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21%2013V5C21%203.895%2020.105%203%2019%203H4C2.895%203%202%203.895%202%205V14C2%2015.105%202.895%2016%204%2016H12M18.41%2014.59L15.59%2017.41M18.41%2017.41L15.59%2014.59'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='card_to_card_blue'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%238756FF'/%3e%3cpath%20d='M15.667%2017.6667L14.667%2016.6667L15.667%2015.6667'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.667%2016.6667H16.667C17.0206%2016.6667%2017.3598%2016.5262%2017.6098%2016.2761C17.8598%2016.0261%2018.0003%2015.6869%2018.0003%2015.3333V14.6667'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M8.33301%206.33334L9.33301%207.33334L8.33301%208.33334'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.33333%207.33334H7.33333C6.97971%207.33334%206.64057%207.47382%206.39052%207.72387C6.14048%207.97392%206%208.31305%206%208.66668V9.33334'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.6663%2014.3333H5.33301'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11.1663%2012H6.83301C6.00458%2012%205.33301%2012.6716%205.33301%2013.5V16.5C5.33301%2017.3284%206.00458%2018%206.83301%2018H11.1663C11.9948%2018%2012.6663%2017.3284%2012.6663%2016.5V13.5C12.6663%2012.6716%2011.9948%2012%2011.1663%2012Z'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.6663%2012H17.1663C17.5642%2012%2017.9457%2011.842%2018.227%2011.5607C18.5083%2011.2794%2018.6663%2010.8978%2018.6663%2010.5V7.5C18.6663%207.10218%2018.5083%206.72064%2018.227%206.43934C17.9457%206.15804%2017.5642%206%2017.1663%206H12.833C12.4352%206%2012.0537%206.15804%2011.7723%206.43934C11.491%206.72064%2011.333%207.10218%2011.333%207.5V10'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M18.6663%208.33334H11.333'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='card_to_card_colored'%20viewBox='0%200%2032%2032'%3e%3crect%20width='32'%20height='32'%20rx='16'%20fill='%234EA9A2'/%3e%3cpath%20d='M20.888%2023.5553L19.5547%2022.222L20.888%2020.8887'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19.5547%2022.2223H22.2214C22.6929%2022.2223%2023.145%2022.035%2023.4784%2021.7016C23.8118%2021.3682%2023.9991%2020.916%2023.9991%2020.4446V19.5557'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11.1113%208.44434L12.4447%209.77767L11.1113%2011.111'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.4444%209.77783H9.77778C9.30628%209.77783%208.8541%209.96513%208.5207%2010.2985C8.1873%2010.6319%208%2011.0841%208%2011.5556V12.4445'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.8891%2019.1113H7.11133'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.8891%2016H9.11133C8.00676%2016%207.11133%2016.8954%207.11133%2018V22C7.11133%2023.1046%208.00676%2024%209.11133%2024H14.8891C15.9937%2024%2016.8891%2023.1046%2016.8891%2022V18C16.8891%2016.8954%2015.9937%2016%2014.8891%2016Z'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19.5557%2016H22.8891C23.4195%2016%2023.9282%2015.7893%2024.3033%2015.4142C24.6784%2015.0391%2024.8891%2014.5304%2024.8891%2014V10C24.8891%209.46957%2024.6784%208.96086%2024.3033%208.58579C23.9282%208.21071%2023.4195%208%2022.8891%208H17.1113C16.5809%208%2016.0722%208.21071%2015.6971%208.58579C15.322%208.96086%2015.1113%209.46957%2015.1113%2010V13.3333'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M24.8891%2011.1113H15.1113'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='cash-ad'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16%2022L14%2020L16%2018'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M20%2020H14'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.0589%207.40433L7.40399%2012.0592C6.95489%2012.5083%206.95489%2013.2364%207.40399%2013.6856L10.3141%2016.5956C10.7632%2017.0447%2011.4913%2017.0447%2011.9404%2016.5956L16.5953%2011.9408C17.0444%2011.4917%2017.0444%2010.7635%2016.5953%2010.3144L13.6852%207.40433C13.2361%206.95523%2012.508%206.95523%2012.0589%207.40433Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.2077%2012.1391C12.2352%2012.098%2012.2499%2012.0497%2012.25%2012.0003C12.25%2011.9674%2012.2436%2011.9349%2012.231%2011.9045C12.2185%2011.8741%2012.2%2011.8465%2012.1768%2011.8232C12.1535%2011.8%2012.1259%2011.7815%2012.0955%2011.769C12.0651%2011.7564%2012.0326%2011.75%2011.9997%2011.75C11.9503%2011.7501%2011.902%2011.7648%2011.8609%2011.7923C11.8198%2011.8198%2011.7879%2011.8588%2011.769%2011.9045C11.7501%2011.9501%2011.7452%2012.0004%2011.7548%2012.0489C11.7645%2012.0973%2011.7883%2012.1418%2011.8232%2012.1768C11.8582%2012.2117%2011.9027%2012.2355%2011.9511%2012.2452C11.9996%2012.2548%2012.0499%2012.2499%2012.0955%2012.231C12.1412%2012.2121%2012.1802%2012.1802%2012.2077%2012.1391Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M20.0534%2016C20.8856%2014.325%2021.175%2012.4322%2020.8815%2010.5851C20.5879%208.73788%2019.7259%207.02813%2018.4154%205.69364C17.105%204.35915%2015.4111%203.46628%2013.5696%203.13924C11.728%202.81219%209.83035%203.06724%208.1405%203.8689C6.45066%204.67055%205.05268%205.97896%204.14103%207.6121C3.22939%209.24524%202.84942%2011.1219%203.05397%2012.981C3.25853%2014.8402%204.03744%2016.5893%205.28235%2017.9852C6.52727%2019.3811%208.17628%2020.3542%2010%2020.7693'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='cash'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cpath%20d='M6.3,7.5H21v9.8H6.3V7.5%20M13.6,9.9c1.4,0,2.5,1.1,2.5,2.5s-1.1,2.5-2.5,2.5s-2.5-1.1-2.5-2.5S12.3,9.9,13.6,9.9%20M9.5,9.1%20c0,0.9-0.7,1.6-1.6,1.6V14c0.9,0,1.6,0.7,1.6,1.6h8.2c0-0.9,0.7-1.6,1.6-1.6v-3.3c-0.9,0-1.6-0.7-1.6-1.6H9.5%20M3,10.7h1.6v8.2h13.1%20v1.6H3V10.7z'/%3e%3c/symbol%3e%3csymbol%20id='category'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M7.5%2011C5.567%2011%204%209.433%204%207.5C4%205.567%205.567%204%207.5%204C9.433%204%2011%205.567%2011%207.5C11%209.433%209.433%2011%207.5%2011Z'/%3e%3cpath%20d='M16.5%2011C14.567%2011%2013%209.433%2013%207.5C13%205.567%2014.567%204%2016.5%204C18.433%204%2020%205.567%2020%207.5C20%209.433%2018.433%2011%2016.5%2011Z'/%3e%3cpath%20d='M7.5%2020C5.567%2020%204%2018.433%204%2016.5C4%2014.567%205.567%2013%207.5%2013C9.433%2013%2011%2014.567%2011%2016.5C11%2018.433%209.433%2020%207.5%2020Z'/%3e%3cpath%20d='M20%2016.5C20%2014.567%2018.433%2013%2016.5%2013C14.567%2013%2013%2014.567%2013%2016.5C13%2018.433%2014.567%2020%2016.5%2020C18.433%2020%2020%2018.433%2020%2016.5Z'/%3e%3c/symbol%3e%3csymbol%20id='cellphone'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M17,19H7V5H17M17,1H7C5.89,1%205,1.89%205,3V21A2,2%200%200,0%207,23H17A2,2%200%200,0%2019,21V3C19,1.89%2018.1,1%2017,1Z'/%3e%3c/symbol%3e%3csymbol%20id='change_sheet'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M5%2013H7M5%2016H9M16%2019.316V19.5C16%2019.8978%2015.842%2020.2794%2015.5607%2020.5607C15.2794%2020.842%2014.8978%2021%2014.5%2021H3.5C3.10218%2021%202.72064%2020.842%202.43934%2020.5607C2.15804%2020.2794%202%2019.8978%202%2019.5V4.5C2%204.10218%202.15804%203.72064%202.43934%203.43934C2.72064%203.15804%203.10218%203%203.5%203H14.5C14.8978%203%2015.2794%203.15804%2015.5607%203.43934C15.842%203.72064%2016%204.10218%2016%204.5V14M16%2014L16.0019%2013.997L13.6229%2011.4763C13.4835%2011.3286%2013.3159%2011.2103%2013.13%2011.1285C12.9441%2011.0468%2012.7436%2011.0031%2012.5405%2011.0002C12.3374%2010.9972%2012.1358%2011.0351%2011.9476%2011.1114C11.7594%2011.1878%2011.5884%2011.3012%2011.4448%2011.4448C11.1968%2011.6928%2011.0423%2012.019%2011.0075%2012.3679C10.9727%2012.7169%2011.0598%2013.0672%2011.254%2013.3592L14.2411%2017.8527C14.7341%2018.5943%2015.4606%2019.1502%2016.3053%2019.4322L21%2021M16%2014H17.5M16%209H17.2918C17.7575%209%2018.2169%209.10843%2018.6334%209.31671L19.2874%209.64371C19.7544%209.87719%2020.1523%2010.2285%2020.4419%2010.6629L22%2013M8%207.5C8%208.32843%207.32843%209%206.5%209C5.67157%209%205%208.32843%205%207.5C5%206.67157%205.67157%206%206.5%206C7.32843%206%208%206.67157%208%207.5Z'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='channels_icon'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.6,2C13.6,2,13.6,2,13.6,2h-3.2C5.8,2,2,5.8,2,10.4v10.3C2,21.4,2.6,22,3.3,22c0,0,0,0,0,0h10.3c4.6,0,8.4-3.8,8.4-8.4%20v-3.2C22,5.8,18.2,2,13.6,2z%20M16.6,15c0,0.7-0.6,1.3-1.3,1.3H7.8c-0.5,0-1-0.4-1-1V9.4c0-0.5,0.4-1,1-1h7.5c0,0,0,0,0,0%20c0.7,0,1.3,0.6,1.3,1.2V15z'/%3e%3cpath%20d='M12.9,13.3H8c-0.1,0-0.3,0.1-0.3,0.3v1.4c0,0.1,0.1,0.3,0.3,0.3h4.8c0.1,0,0.3-0.1,0.3-0.3v-1.4%20C13.1,13.4,13,13.3,12.9,13.3z'/%3e%3cpath%20d='M12.9,10.8H8c0,0,0,0,0,0c-0.2,0-0.3,0.1-0.3,0.3v1.4c0,0.1,0.1,0.3,0.3,0.3h4.8c0,0,0,0,0,0c0.2,0,0.3-0.1,0.3-0.3v-1.4%20C13.1,10.9,13,10.8,12.9,10.8z'/%3e%3cpath%20d='M15.3,10.8h-1.4c0,0,0,0,0,0c-0.2,0-0.3,0.1-0.3,0.3v3.9c0,0.2,0.1,0.3,0.3,0.3h1.4c0,0,0,0,0,0c0.2,0,0.3-0.1,0.3-0.3v-3.9%20C15.6,10.9,15.5,10.8,15.3,10.8z'/%3e%3c/symbol%3e%3csymbol%20id='chart_bar'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4%2020H20M5%2012V20H8V12H5ZM10.5%204V20H13.5V4H10.5ZM16%209V20H19V9H16Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='chart_line'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4%204V20H20M14.7205%209.30658L18.2909%205.70516M9.90395%208.4282L12.9995%2010M12.9995%2010C12.9995%2010.5523%2013.4477%2011%2014%2011C14.5523%2011%2015%2010.5523%2015%2010C15%209.44772%2014.5523%209%2014%209C13.4477%209%2012.9995%209.44772%2012.9995%2010ZM4%2011L8.15234%208.53079M14.8486%2015.4706L18.1577%2013.5392M9%2016H13M9%2016C9%2016.5523%208.55228%2017%208%2017C7.44772%2017%207%2016.5523%207%2016C7%2015.4477%207.44772%2015%208%2015C8.55228%2015%209%2015.4477%209%2016ZM13%2016C13%2016.5523%2013.4477%2017%2014%2017C14.5523%2017%2015%2016.5523%2015%2016C15%2015.4477%2014.5523%2015%2014%2015C13.4477%2015%2013%2015.4477%2013%2016ZM4%2018L7.13378%2016.5M10%208C10%208.55228%209.55228%209%209%209C8.44772%209%208%208.55228%208%208C8%207.44772%208.44772%207%209%207C9.55228%207%2010%207.44772%2010%208ZM20%205C20%205.55228%2019.5523%206%2019%206C18.4477%206%2018%205.55228%2018%205C18%204.44772%2018.4477%204%2019%204C19.5523%204%2020%204.44772%2020%205ZM20%2013C20%2013.5523%2019.5523%2014%2019%2014C18.4477%2014%2018%2013.5523%2018%2013C18%2012.4477%2018.4477%2012%2019%2012C19.5523%2012%2020%2012.4477%2020%2013Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='chat'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4.541%2016.938C3.577%2015.5126%203%2013.8066%203%2011.9582C3%207.01029%207.029%203%2012%203C16.971%203%2021%207.01029%2021%2011.9582C21%2016.9061%2016.971%2020.9164%2012%2020.9164C10.474%2020.9164%209.04%2020.5312%207.78%2019.8643C6.434%2020.579%204.907%2021%203.276%2021C2.842%2021%202.419%2020.9612%202%2020.9064C3.173%2019.8444%204.055%2018.4808%204.541%2016.938Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='chat_add'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16%206.49997H19'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3e%3cpath%20d='M17.5%207.99997V4.99997'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3e%3cpath%20d='M17.5%2011C19.9853%2011%2022%208.98528%2022%206.5C22%204.01472%2019.9853%202%2017.5%202C15.0147%202%2013%204.01472%2013%206.5C13%208.98528%2015.0147%2011%2017.5%2011Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10%203H6C5.20435%203%204.44129%203.31607%203.87868%203.87868C3.31607%204.44129%203%205.20435%203%206V15C3%2015.7956%203.31607%2016.5587%203.87868%2017.1213C4.44129%2017.6839%205.20435%2018%206%2018H8.007V20.4429C8.007%2020.5476%208.03659%2020.6503%208.09235%2020.7389C8.14812%2020.8276%208.22779%2020.8987%208.3222%2020.9441C8.41662%2020.9895%208.52192%2021.0073%208.626%2020.9954C8.73008%2020.9836%208.82869%2020.9426%208.91049%2020.8771L12.507%2018H18C18.7956%2018%2019.5587%2017.6839%2020.1213%2017.1213C20.6839%2016.5587%2021%2015.7956%2021%2015V14'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='chat_forum'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M6.557%2011.9612C6.199%2011.1347%206%2010.2338%206%209.28847C6%205.24458%209.598%202%2014%202C18.402%202%2022%205.24458%2022%209.28847C22%2011.6784%2020.738%2013.7824%2018.801%2015.1092C18.802%2015.8702%2018.8%2016.8961%2018.8%2017.9732L15.661%2016.4169C15.124%2016.5206%2014.569%2016.5769%2014%2016.5769C13.293%2016.5769%2012.607%2016.4924%2011.953%2016.3343M7.18359%2021.8117C9.89159%2021.8117%2011.982%2019.596%2011.982%2016.8699C11.982%2014.1438%209.787%2011.9331%207.078%2011.9331C4.369%2011.9331%202.174%2014.1438%202.174%2016.8699C2.174%2017.6148%202.338%2018.3215%202.631%2018.9558L2%2022L5.018%2021.3547C5.70092%2021.6733%206.43388%2021.8117%207.18359%2021.8117Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='chat_messages'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%2013V13.5M15%2013V13.5M18%2013V13.5M9%2015L6%2017V14H5C3.895%2014%203%2013.105%203%2012V6C3%204.895%203.895%204%205%204H14C15.105%204%2016%204.895%2016%206V8M14%2018L18%2021V18H19C20.105%2018%2021%2017.105%2021%2016V10C21%208.895%2020.105%208%2019%208H11C9.895%208%209%208.895%209%2010V16C9%2017.105%209.895%2018%2011%2018H14Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='check-rhombus'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M14.5122%2010.707L11.3732%2013.846L9.48621%2011.965M4.51427%208.46446L8.46467%204.51406C10.4173%202.56144%2013.5831%202.56144%2015.5357%204.51407L19.4861%208.46447C21.4388%2010.4171%2021.4388%2013.5829%2019.4861%2015.5355L15.5357%2019.4859C13.5831%2021.4386%2010.4173%2021.4386%208.46467%2019.4859L4.51427%2015.5355C2.56165%2013.5829%202.56165%2010.4171%204.51427%208.46446Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='check'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M9%2016.17L4.83%2012l-1.42%201.41L9%2019%2021%207l-1.41-1.41z'/%3e%3c/symbol%3e%3csymbol%20id='check_all'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.623%2016.3119H18.123'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.37402%2015.8818L6.6186%2017L9.12402%2014.75'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13.623%209.56194H18.123'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.37402%209.13175L6.6186%2010.25L9.12402%208'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='check_circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%2022C6.47667%2022%202%2017.5233%202%2012C2%206.47667%206.47667%202%2012%202C17.5233%202%2022%206.47667%2022%2012C22%2017.5233%2017.5233%2022%2012%2022Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16%209L11%2015L8%2012'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='check_circle_second'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19.4639%206.688L11.9999%2014.125L8.96289%2011.088'%20stroke='currentColor'%20stroke-linecap='round'%20fill='none'%20stroke-linejoin='round'/%3e%3cpath%20d='M20.5%2011C20.6841%2012.9752%2020.4739%2014.0787%2019.5763%2015.8477C18.6788%2017.6168%2017.1907%2019.0163%2015.3699%2019.8036C13.5491%2020.591%2011.5103%2020.7168%209.60655%2020.1591C7.7028%2019.6014%206.05407%2018.3954%204.94593%2016.75C3.8378%2015.1047%203.34006%2013.1235%203.53893%2011.1498C3.7378%209.17601%204.62075%207.33397%206.03485%205.94272C7.44895%204.55147%209.30513%203.69864%2011.2819%203.53195C13.2586%203.36526%2014.2486%203.56839%2016%204.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='check_circle_solid'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='currentColor'%20stroke='none'%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M2%2012C2%2017.5233%206.47667%2022%2012%2022C17.5233%2022%2022%2017.5233%2022%2012C22%206.47667%2017.5233%202%2012%202C6.47667%202%202%206.47667%202%2012ZM16.5762%209.48014C16.8413%209.16193%2016.7983%208.68901%2016.4801%208.42383C16.1619%208.15866%2015.689%208.20165%2015.4238%208.51986L10.9496%2013.8889L8.53033%2011.4697C8.23744%2011.1768%207.76256%2011.1768%207.46967%2011.4697C7.17678%2011.7626%207.17678%2012.2374%207.46967%2012.5303L10.4697%2015.5303C10.6187%2015.6793%2010.8235%2015.7588%2011.034%2015.7492C11.2445%2015.7397%2011.4413%2015.642%2011.5762%2015.4801L16.5762%209.48014Z'/%3e%3c/symbol%3e%3csymbol%20id='check_polygonal'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15%2010.5L11.25%2014.25L9%2012M8.827%2018.657H6.346C5.792%2018.657%205.343%2018.208%205.343%2017.654V15.172C5.343%2014.906%205.237%2014.651%205.049%2014.463L3.294%2012.708C2.902%2012.316%202.902%2011.681%203.294%2011.29L5.067%209.517C5.244%209.34%205.343%209.101%205.343%208.851V6.346C5.343%205.792%205.792%205.343%206.346%205.343H8.828C9.094%205.343%209.349%205.237%209.537%205.049L11.292%203.294C11.684%202.902%2012.319%202.902%2012.71%203.294L14.465%205.049C14.653%205.237%2014.908%205.343%2015.174%205.343H17.656C18.21%205.343%2018.659%205.792%2018.659%206.346V8.828C18.659%209.094%2018.765%209.349%2018.953%209.537L20.708%2011.292C21.1%2011.684%2021.1%2012.319%2020.708%2012.71L18.953%2014.465C18.765%2014.653%2018.659%2014.908%2018.659%2015.174V17.656C18.659%2018.21%2018.21%2018.659%2017.656%2018.659H15.174C14.908%2018.659%2014.653%2018.765%2014.465%2018.953L12.71%2020.708C12.318%2021.1%2011.683%2021.1%2011.292%2020.708L9.537%2018.953C9.348%2018.762%209.093%2018.657%208.827%2018.657Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='checkbox--checked'%20viewBox='0%200%2020%2020'%3e%3cpath%20d='M8.20801%2014.4596L16.208%206.45956L14.9582%205.16711L8.20801%2011.9182L5.04001%208.75022L3.79379%2010L8.20801%2014.4596ZM16.208%202C16.7081%202%2017.1319%202.18074%2017.4791%202.54222C17.8264%202.9037%2018%203.3197%2018%203.79022V16.208C18%2016.6803%2017.8264%2017.0969%2017.4791%2017.4578C17.1319%2017.8193%2016.7081%2018%2016.208%2018H3.79023C3.29068%2018%202.86698%2017.8193%202.51912%2017.4578C2.17127%2017.0963%201.99824%2016.6797%202.00001%2016.208V3.79022C2.00001%203.31852%202.17335%202.90252%202.52001%202.54222C2.86668%202.18074%203.29038%202%203.79112%202H16.2089H16.208Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='checkbox'%20viewBox='0%200%2020%2020'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17%204C17%203.44772%2016.5523%203%2016%203H4C3.44772%203%203%203.44772%203%204V16C3%2016.5523%203.44772%2017%204%2017H16C16.5523%2017%2017%2016.5523%2017%2016V4ZM2.54222%202.54222C2.18074%202.90252%202%203.31852%202%203.79022V16.208C2%2016.6797%202.18044%2017.0963%202.54133%2017.4578C2.90222%2017.8193%203.31852%2018%203.79022%2018H16.208C16.6797%2018%2017.0963%2017.8193%2017.4578%2017.4578C17.8193%2017.0969%2018%2016.6803%2018%2016.208V3.79022C18%203.3197%2017.8193%202.9037%2017.4578%202.54222C17.0969%202.18074%2016.6803%202%2016.208%202H3.79022C3.3197%202%202.9037%202.18074%202.54222%202.54222Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='checkboxes'%20viewBox='0%200%2020%2020'%3e%3cpath%20d='M16.5232%203.05896C17.8252%204.36051%2017.8255%206.47106%2016.524%207.77301C15.2224%209.07495%2013.1119%209.07527%2011.8099%207.77372C10.508%206.47217%2010.5077%204.36162%2011.8092%203.05968C11.8094%203.05944%2011.8097%203.0592%2011.8099%203.05896C13.1116%201.75769%2015.2216%201.75769%2016.5232%203.05896Z'%20stroke='currentColor'%20fill='none'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15.3006%204.70703L13.8839%206.1237L13.0322%205.27453'%20stroke='currentColor'%20fill='none'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.5232%2012.226C17.8252%2013.5275%2017.8255%2015.6381%2016.524%2016.94C15.2224%2018.2419%2013.1119%2018.2423%2011.8099%2016.9407C10.508%2015.6392%2010.5077%2013.5286%2011.8092%2012.2267C11.8094%2012.2264%2011.8097%2012.2262%2011.8099%2012.226C13.1116%2010.9247%2015.2216%2010.9247%2016.5232%2012.226Z'%20stroke='currentColor'%20fill='none'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.16667%207.79682H3.4525C2.92645%207.79682%202.5%207.37037%202.5%206.84432V3.98766C2.5%203.46161%202.92645%203.03516%203.4525%203.03516H9.16667'%20stroke='currentColor'%20fill='none'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.16667%2016.9638H3.4525C2.92645%2016.9638%202.5%2016.5374%202.5%2016.0113V13.1546C2.5%2012.6286%202.92645%2012.2021%203.4525%2012.2021H9.16667'%20stroke='currentColor'%20fill='none'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.8761%2013.874L13.4595%2015.2907'%20stroke='currentColor'%20fill='none'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12%203.11111C7.0908%203.11111%203.11111%207.0908%203.11111%2012C3.11111%2016.9092%207.0908%2020.8889%2012%2020.8889C16.9092%2020.8889%2020.8889%2016.9092%2020.8889%2012C20.8889%207.0908%2016.9092%203.11111%2012%203.11111ZM12%202C6.47715%202%202%206.47715%202%2012C2%2017.5228%206.47715%2022%2012%2022C17.5228%2022%2022%2017.5228%2022%2012C22%206.47715%2017.5228%202%2012%202Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='circle_arrows'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M10.3069%203.22916C9.37227%203.27218%208.43086%203.47653%207.52041%203.87546C4.11758%205.36754%202.28217%208.97941%202.85301%2012.518M17.7241%2014.9085C18.1537%2014.0686%2018.4497%2013.1426%2018.5629%2012.1472C18.9867%208.42292%2016.8078%205.01148%2013.4901%203.74136M7.81572%201.8335L10.5645%202.779L9.22735%205.12173M20.1667%2013.4275L17.982%2015.3606L16.6429%2013.0188M4.05437%2018.4393L3.4903%2015.5607L6.1665%2015.5598M4.00323%2015.5615C4.50828%2016.3584%205.15363%2017.08%205.94991%2017.6764C8.92992%2019.9086%2012.9433%2019.7092%2015.6901%2017.4398'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='click'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M5.20996%208H6.20996M17.21%208H16.21M15.45%203.76L14.74%204.46M6.95996%203.76L7.66996%204.46M11.21%202V3M12.706%2013V8.5C12.706%207.672%2012.034%207%2011.206%207C10.378%207%209.70596%207.672%209.70596%208.5V16L7.67396%2015.323C7.08096%2015.125%206.42696%2015.28%205.98396%2015.722C5.29696%2016.409%205.34896%2017.536%206.09396%2018.158L10.149%2021.537C10.51%2021.836%2010.963%2022%2011.43%2022H15.94C16.949%2022%2017.799%2021.249%2017.925%2020.248L18.468%2015.905C18.601%2014.84%2017.87%2013.861%2016.812%2013.684L12.706%2013Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='clickup'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M3%2017.3703L6.32155%2015.0167C8.08626%2017.147%209.96117%2018.129%2012.0481%2018.129C14.1239%2018.129%2015.9458%2017.1587%2017.631%2015.0451L21%2017.3419C18.5685%2020.3896%2015.5468%2022%2012.0481%2022C8.56057%2022%205.50965%2020.4%203%2017.3703Z'%20fill='url(%23clickup_paint0_linear_8030_38779)'/%3e%3cpath%20d='M12.0213%207.12L6.19376%2011.8323L3.5%208.90064L12.0337%202L20.5%208.9058L17.7939%2011.8271L12.0213%207.12Z'%20fill='url(%23clickup_paint1_linear_8030_38779)'/%3e%3c/symbol%3e%3csymbol%20id='clip'%20viewBox='0%200%2020%2020'%3e%3cpath%20d='M11.5656%206.98021L6.99392%2011.5519C6.30559%2012.2402%206.30559%2013.3569%206.99392%2014.0452C7.68225%2014.7335%208.79892%2014.7335%209.48725%2014.0452L15.5139%208.01854C16.7764%206.75604%2016.7764%204.70938%2015.5139%203.44688C14.2514%202.18438%2012.2048%202.18438%2010.9423%203.44688L4.91559%209.47354C3.07892%2011.3102%203.07892%2014.2869%204.91559%2016.1235C6.75225%2017.9602%209.72892%2017.9602%2011.5656%2016.1235L15.2231%2012.466'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='clock_check'%20viewBox='0%200%2020%2020'%3e%3cpath%20d='M10.3257%205.83334V10.3258H6.6665'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17.4512%209.16672C17.2945%207.76326%2016.7447%206.43258%2015.8651%205.32783C14.9854%204.22307%2013.8117%203.38916%2012.479%202.92207C11.1463%202.45498%209.70884%202.3737%208.33199%202.68758C6.95514%203.00147%205.69491%203.69776%204.69635%204.69632C3.69779%205.69487%203.00149%206.9551%202.68759%208.33194C2.3737%209.70879%202.45497%2011.1463%202.92205%2012.479C3.38914%2013.8117%204.22304%2014.9854%205.32779%2015.865C6.43254%2016.7447%207.76322%2017.2945%209.16667%2017.4512'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.9998%2018.3333C16.8408%2018.3333%2018.3332%2016.8409%2018.3332%2015C18.3332%2013.159%2016.8408%2011.6667%2014.9998%2011.6667C13.1589%2011.6667%2011.6665%2013.159%2011.6665%2015C11.6665%2016.8409%2013.1589%2018.3333%2014.9998%2018.3333Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13.9585%2014.8763L14.7918%2015.7096L16.0418%2014.4596'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='clock_solid'%20viewBox='0%200%2024%2024'%3e%3crect%20x='1'%20y='1'%20width='22'%20height='22'%20rx='11'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8.28769%208.28769C10.3379%206.23744%2013.6621%206.23744%2015.7123%208.28769C17.7626%2010.3379%2017.7626%2013.6621%2015.7123%2015.7123C13.6621%2017.7626%2010.3379%2017.7626%208.28769%2015.7123C6.23744%2013.6621%206.23744%2010.3379%208.28769%208.28769ZM12.5626%208.5C12.5626%208.08579%2012.2268%207.75%2011.8126%207.75C11.3984%207.75%2011.0626%208.08579%2011.0626%208.5V12.7093C11.0626%2012.9748%2011.2029%2013.2204%2011.4315%2013.3553L13.6189%2014.6459C13.9756%2014.8564%2014.4354%2014.7379%2014.6459%2014.3811C14.8564%2014.0244%2014.7379%2013.5646%2014.3811%2013.3541L12.5626%2012.2811V8.5Z'%20fill='currentColor'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12%2022C6.47667%2022%202%2017.5233%202%2012C2%206.47667%206.47667%202%2012%202C17.5233%202%2022%206.47667%2022%2012C22%2017.5233%2017.5233%2022%2012%2022ZM16.773%207.22703C14.1369%204.59099%209.86307%204.59099%207.22703%207.22703C4.59099%209.86306%204.59099%2014.1369%207.22703%2016.773C9.86306%2019.409%2014.1369%2019.409%2016.773%2016.773C19.409%2014.1369%2019.409%209.86307%2016.773%207.22703Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='close'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M7%207L17%2017M17%207L7%2017'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='close_circle_outline'%20viewBox='0%200%2032%2032'%3e%3cpath%20d='M21.3337%2010.668L10.667%2021.3346'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21.3337%2021.3346L10.667%2010.668'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.0003%2029.3346C8.63588%2029.3346%202.66699%2023.3657%202.66699%2016.0013C2.66699%208.63686%208.63588%202.66797%2016.0003%202.66797C23.3648%202.66797%2029.3337%208.63686%2029.3337%2016.0013C29.3337%2023.3657%2023.3648%2029.3346%2016.0003%2029.3346Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='close_circle_solid'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12%2022C6.47667%2022%202%2017.5233%202%2012C2%206.47667%206.47667%202%2012%202C17.5233%202%2022%206.47667%2022%2012C22%2017.5233%2017.5233%2022%2012%2022ZM8.53033%207.46967C8.23744%207.17678%207.76256%207.17678%207.46967%207.46967C7.17678%207.76256%207.17678%208.23744%207.46967%208.53033L10.9393%2012L7.46967%2015.4697C7.17678%2015.7626%207.17678%2016.2374%207.46967%2016.5303C7.76256%2016.8232%208.23744%2016.8232%208.53033%2016.5303L12%2013.0607L15.4697%2016.5303C15.7626%2016.8232%2016.2374%2016.8232%2016.5303%2016.5303C16.8232%2016.2374%2016.8232%2015.7626%2016.5303%2015.4697L13.0607%2012L16.5303%208.53033C16.8232%208.23744%2016.8232%207.76256%2016.5303%207.46967C16.2374%207.17678%2015.7626%207.17678%2015.4697%207.46967L12%2010.9393L8.53033%207.46967Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='cloud_upload'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M19.35%2010.04C18.67%206.59%2015.64%204%2012%204%209.11%204%206.6%205.64%205.35%208.04%202.34%208.36%200%2010.91%200%2014c0%203.31%202.69%206%206%206h13c2.76%200%205-2.24%205-5%200-2.64-2.05-4.78-4.65-4.96zM14%2013v4h-4v-4H7l5-5%205%205h-3z'/%3e%3c/symbol%3e%3csymbol%20id='coin_speed'%20viewBox='0%200%2032%2032'%3e%3cpath%20d='M8.00065%2012H5.33398'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M8.00065%2020H5.33398'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.33268%2016H2.66602'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.55273%207.51473C9.23096%205.8365%2011.3692%204.69361%2013.6969%204.23058C16.0247%203.76756%2018.4375%204.0052%2020.6302%204.91345C22.8229%205.8217%2024.6971%207.35977%2026.0157%209.33316C27.3342%2011.3066%2028.038%2013.6266%2028.038%2016C28.038%2018.3734%2027.3342%2020.6935%2026.0157%2022.6668C24.6971%2024.6402%2022.8229%2026.1783%2020.6302%2027.0866C18.4375%2027.9948%2016.0247%2028.2324%2013.6969%2027.7694C11.3692%2027.3064%209.23096%2026.1635%207.55273%2024.4853'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M20.7467%2014.5845L17.4129%2011.2516C17.2272%2011.0659%2017.0067%2010.9186%2016.764%2010.8182C16.5213%2010.7177%2016.2613%2010.666%2015.9986%2010.666C15.736%2010.6661%2015.4759%2010.7178%2015.2332%2010.8184C14.9906%2010.9189%2014.7701%2011.0663%2014.5845%2011.252L11.2516%2014.5858C11.0659%2014.7715%2010.9186%2014.992%2010.8182%2015.2347C10.7177%2015.4774%2010.666%2015.7375%2010.666%2016.0001C10.6661%2016.2628%2010.7178%2016.5228%2010.8184%2016.7655C10.9189%2017.0081%2011.0663%2017.2286%2011.252%2017.4143L14.5858%2020.7471C14.7715%2020.9328%2014.992%2021.0801%2015.2347%2021.1806C15.4774%2021.281%2015.7375%2021.3327%2016.0001%2021.3327C16.2628%2021.3327%2016.5228%2021.2809%2016.7655%2021.1804C17.0081%2021.0798%2017.2286%2020.9324%2017.4143%2020.7467L20.7471%2017.4129C20.9328%2017.2272%2021.0801%2017.0067%2021.1806%2016.764C21.281%2016.5213%2021.3327%2016.2613%2021.3327%2015.9986C21.3327%2015.736%2021.2809%2015.4759%2021.1804%2015.2332C21.0798%2014.9906%2020.9324%2014.7701%2020.7467%2014.5845Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='comment'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M21.99%204c0-1.1-.89-2-1.99-2H4c-1.1%200-2%20.9-2%202v12c0%201.1.9%202%202%202h14l4%204-.01-18zM18%2014H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='company'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M12%207V3H2v18h20V7H12zM6%2019H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4%2012H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10%2012h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0%204h-2v2h2v-2z'/%3e%3c/symbol%3e%3csymbol%20id='confetti'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M13.8718%2016.5757L6.29224%2020.3655C5.52946%2020.7469%204.6082%2020.5974%204.00517%2019.9944V19.9944C3.40214%2019.3913%203.25264%2018.4701%203.63403%2017.7073L7.42382%2010.1277C7.56757%209.84019%207.84078%209.63929%208.15809%209.5878C8.4754%209.53631%208.79812%209.6405%209.02542%209.86782L14.1317%2014.9741C14.3591%2015.2014%2014.4632%2015.5242%2014.4117%2015.8415C14.3603%2016.1588%2014.1594%2016.432%2013.8718%2016.5757Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5%203V3.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5%207V6.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7%205H6.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M3%205H3.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.3354%202.32919C11.9649%202.14394%2011.5144%202.29409%2011.3292%202.66457C11.1439%203.03505%2011.2941%203.48556%2011.6646%203.67081L12.3354%202.32919ZM12.7596%205.86052L13.3837%206.27654L13.3837%206.27653L12.7596%205.86052ZM11.376%206.58398C11.1462%206.92862%2011.2393%207.39427%2011.584%207.62404C11.9286%207.8538%2012.3943%207.76067%2012.624%207.41602L11.376%206.58398ZM11.6646%203.67081C11.9786%203.82782%2012.21%204.11211%2012.3002%204.45142L13.7499%204.06642C13.5494%203.31129%2013.0342%202.67861%2012.3354%202.32919L11.6646%203.67081ZM12.3002%204.45142C12.3903%204.79073%2012.3303%205.1524%2012.1356%205.44451L13.3837%206.27653C13.8171%205.62644%2013.9504%204.82155%2013.7499%204.06642L12.3002%204.45142ZM12.1356%205.4445L11.376%206.58398L12.624%207.41602L13.3837%206.27654L12.1356%205.4445Z'%20fill='currentColor'/%3e%3cpath%20d='M16.584%2011.376C16.2393%2011.6057%2016.1462%2012.0714%2016.376%2012.416C16.6057%2012.7607%2017.0714%2012.8538%2017.416%2012.624L16.584%2011.376ZM18.1395%2011.2403L17.7235%2010.6163L17.7235%2010.6163L18.1395%2011.2403ZM20.3292%2012.3354C20.5144%2012.7059%2020.9649%2012.8561%2021.3354%2012.6708C21.7059%2012.4856%2021.8561%2012.0351%2021.6708%2011.6646L20.3292%2012.3354ZM17.416%2012.624L18.5555%2011.8644L17.7235%2010.6163L16.584%2011.376L17.416%2012.624ZM18.5555%2011.8644C18.8476%2011.6697%2019.2093%2011.6097%2019.5486%2011.6998L19.9336%2010.2501C19.1785%2010.0496%2018.3736%2010.1829%2017.7235%2010.6163L18.5555%2011.8644ZM19.5486%2011.6998C19.8879%2011.79%2020.1722%2012.0214%2020.3292%2012.3354L21.6708%2011.6646C21.3214%2010.9658%2020.6887%2010.4506%2019.9336%2010.2501L19.5486%2011.6998Z'%20fill='currentColor'/%3e%3cpath%20d='M19%2017V17.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19%2021V20.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21%2019H20.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17%2019H17.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19%203V3.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19%207V6.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21%205H20.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17%205H17.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14%2010L15%209'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='connection'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M20.053%2016C18.58%2018.961%2015.532%2021%2012%2021C8.468%2021%205.42%2018.961%203.947%2016M20.053%208C18.58%205.039%2015.532%203%2012%203C8.468%203%205.42%205.039%203.947%208M10%2012H3M8%2010L10%2012L8%2014M14%2012H21M16%2014L14%2012L16%2010'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='contacts'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0zm0%200h24v24H0zm0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M20%200H4v2h16V0zM4%2024h16v-2H4v2zM20%204H4c-1.1%200-2%20.9-2%202v12c0%201.1.9%202%202%202h16c1.1%200%202-.9%202-2V6c0-1.1-.9-2-2-2zm-8%202.75c1.24%200%202.25%201.01%202.25%202.25s-1.01%202.25-2.25%202.25S9.75%2010.24%209.75%209%2010.76%206.75%2012%206.75zM17%2017H7v-1.5c0-1.67%203.33-2.5%205-2.5s5%20.83%205%202.5V17z'/%3e%3c/symbol%3e%3csymbol%20id='contracts'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M14%2019L19%2014M6%207H18M6%2011H9M6%2015H7M9%2021H7C4.791%2021%203%2019.209%203%2017V7C3%204.791%204.791%203%207%203H17C19.209%203%2021%204.791%2021%207V10M14.5607%2012.4393C15.1464%2013.0251%2015.1464%2013.9749%2014.5607%2014.5607C13.9749%2015.1464%2013.0251%2015.1464%2012.4393%2014.5607C11.8536%2013.9749%2011.8536%2013.0251%2012.4393%2012.4393C13.0251%2011.8536%2013.9749%2011.8536%2014.5607%2012.4393ZM20.5607%2018.4393C21.1464%2019.0251%2021.1464%2019.9749%2020.5607%2020.5607C19.9749%2021.1464%2019.0251%2021.1464%2018.4393%2020.5607C17.8536%2019.9749%2017.8536%2019.0251%2018.4393%2018.4393C19.0251%2017.8536%2019.9749%2017.8536%2020.5607%2018.4393Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='convert'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15%206H9C5.686%206%203%208.686%203%2012C3%2013.912%203.897%2015.611%205.29%2016.71'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9%2018H15C18.314%2018%2021%2015.314%2021%2012C21%2010.088%2020.103%208.38899%2018.71%207.28999'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11.5%2015.5L9%2018L11.5%2020.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.5%208.5L15%206L12.5%203.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='copy'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M7%2017H5C4.46957%2017%203.96086%2016.7893%203.58579%2016.4142C3.21071%2016.0391%203%2015.5304%203%2015V5C3%204.46957%203.21071%203.96086%203.58579%203.58579C3.96086%203.21071%204.46957%203%205%203H15C15.5304%203%2016.0391%203.21071%2016.4142%203.58579C16.7893%203.96086%2017%204.46957%2017%205V7M9%207H19C20.1046%207%2021%207.89543%2021%209V19C21%2020.1046%2020.1046%2021%2019%2021H9C7.89543%2021%207%2020.1046%207%2019V9C7%207.89543%207.89543%207%209%207Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='copyright'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M14.639%209C13.935%208.379%2013.013%208%2012%208C9.791%208%208%209.791%208%2012C8%2014.209%209.791%2016%2012%2016C13.012%2016%2013.934%2015.62%2014.639%2015M12%2021C7.029%2021%203%2016.971%203%2012C3%207.029%207.029%203%2012%203C16.971%203%2021%207.029%2021%2012C21%2016.971%2016.971%2021%2012%2021Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='credit-card'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9.996%206.6H5.795C4.804%206.6%204%207.404%204%208.395V19.206C4%2020.196%204.804%2021%205.795%2021H12.942C13.933%2021%2014.737%2020.196%2014.737%2019.205V18.442'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15.8041%2018.73L9.29505%2016.976C8.23105%2016.689%207.60005%2015.595%207.88305%2014.53L10.5591%204.486C10.8441%203.417%2011.9431%202.782%2013.0121%203.07L19.5211%204.824C20.5801%205.11%2021.2151%206.21%2020.9331%207.27L18.2571%2017.314C17.9721%2018.383%2016.8731%2019.018%2015.8041%2018.73Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11.4004%2017.54L15.1204%203.64'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='credit_card_blink'%20viewBox='0%200%2033%2032'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.7026%201.14203C15.5142%200.552459%2013.2644%201.85241%2012.681%204.04076L12.681%204.04091L12.0075%206.56851H6.27713C4.19162%206.56851%202.5%208.26014%202.5%2010.3456V27.0719C2.5%2029.1562%204.19199%2030.8475%206.27713%2030.8475H17.3346C17.3955%2030.8475%2017.4561%2030.846%2017.5164%2030.8432C16.9396%2030.2387%2016.4302%2029.5695%2016%2028.8475H6.27713C5.29583%2028.8475%204.5%2028.0509%204.5%2027.0719V10.3456C4.5%209.36471%205.29619%208.56851%206.27713%208.56851H11.4747L8.5408%2019.5805L8.54063%2019.5811C7.96389%2021.7515%209.24196%2023.9816%2011.4044%2024.5804L14.7211%2025.6634C14.5356%2024.8571%2014.4375%2024.0174%2014.4375%2023.1547C14.4375%2022.9176%2014.4449%2022.6821%2014.4595%2022.4486L14.2071%2023.3917L12.0021%2022.6717C11.9855%2022.6663%2011.9689%2022.6613%2011.9521%2022.6568C10.8385%2022.3564%2010.177%2021.2109%2010.4735%2020.0949L10.4735%2020.0947L13.7311%207.8679C13.7396%207.84071%2013.747%207.81302%2013.7532%207.78489L14.6135%204.55597L14.6136%204.55581C14.9121%203.43646%2016.0629%202.77161%2017.1822%203.07315L17.1823%203.07317L19.4792%203.69214L15.5956%2018.2035C16.3335%2016.7189%2017.3929%2015.4222%2018.6827%2014.4047L21.4104%204.21252L27.2521%205.78671L27.2522%205.78675C28.356%206.08493%2029.0222%207.23503%2028.7333%208.33998L27.624%2012.2034C28.2884%2012.3268%2028.932%2012.5092%2029.5493%2012.7449L30.6586%208.88159L30.6638%208.86272C31.2417%206.69038%2029.9437%204.44197%2027.7735%203.85589L27.773%203.85574L17.7026%201.14204L17.7026%201.14203Z'%20fill='currentColor'/%3e%3cpath%20d='M26%2028.5C26%2027.1739%2025.4732%2025.9021%2024.5355%2024.9645C23.5979%2024.0268%2022.3261%2023.5%2021%2023.5C22.3261%2023.5%2023.5979%2022.9732%2024.5355%2022.0355C25.4732%2021.0979%2026%2019.8261%2026%2018.5C26%2019.8261%2026.5268%2021.0979%2027.4645%2022.0355C28.4021%2022.9732%2029.6739%2023.5%2031%2023.5C29.6739%2023.5%2028.4021%2024.0268%2027.4645%2024.9645C26.5268%2025.9021%2026%2027.1739%2026%2028.5Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='crypto'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9.67969%204.94212C12.2687%202.35213%2016.4677%202.35312%2019.0577%204.94212C21.6477%207.53112%2021.6477%2011.7301%2019.0577%2014.3201'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.632%2021.0003C13.295%2021.0003%2016.264%2018.0313%2016.264%2014.3683C16.264%2010.7053%2013.295%207.73633%209.632%207.73633C5.969%207.73633%203%2010.7053%203%2014.3683C3%2018.0313%205.969%2021.0003%209.632%2021.0003Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.70508%2017.0675H10.8711C11.6201%2017.0675%2012.2271%2016.4595%2012.2271%2015.7105C12.2271%2014.9615%2011.6191%2014.3535%2010.8701%2014.3535H7.70508V17.0675Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.70508%2014.3537V11.5547H10.5271C11.3001%2011.5547%2011.9261%2012.1807%2011.9261%2012.9537C11.9261%2013.7267%2011.3001%2014.3527%2010.5271%2014.3527'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.47266%2010.752V11.554'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.47266%2017.9841V17.0801'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='crypto_blue'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%238756FF'/%3e%3cpath%20d='M10.1953%206.51056C12.209%204.49613%2015.4748%204.49691%2017.4893%206.51056C19.5037%208.52421%2019.5037%2011.7901%2017.4893%2013.8045'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10.1582%2019C13.0072%2019%2015.3164%2016.6908%2015.3164%2013.8418C15.3164%2010.9929%2013.0072%208.68365%2010.1582%208.68365C7.30921%208.68365%205%2010.9929%205%2013.8418C5%2016.6908%207.30921%2019%2010.1582%2019Z'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M8.66016%2015.941H11.1226C11.7051%2015.941%2012.1772%2015.4682%2012.1772%2014.8856C12.1772%2014.3031%2011.7044%2013.8302%2011.1218%2013.8302H8.66016V15.941Z'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M8.66016%2013.8302V11.6532H10.855C11.4562%2011.6532%2011.9431%2012.1401%2011.9431%2012.7413C11.9431%2013.3425%2011.4562%2013.8294%2010.855%2013.8294'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10.0332%2011.0286V11.6524'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10.0332%2016.655V15.9519'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='crypto_colored'%20viewBox='0%200%2040%2040'%3e%3crect%20width='40'%20height='40'%20rx='20'%20fill='%233C88FA'/%3e%3cpath%20d='M16.9922%2010.8509C20.3483%207.49354%2025.7914%207.49484%2029.1488%2010.8509C32.5062%2014.207%2032.5062%2019.6501%2029.1488%2023.0075'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.9303%2031.6667C21.6786%2031.6667%2025.5273%2027.8181%2025.5273%2023.0698C25.5273%2018.3215%2021.6786%2014.4728%2016.9303%2014.4728C12.182%2014.4728%208.33333%2018.3215%208.33333%2023.0698C8.33333%2027.8181%2012.182%2031.6667%2016.9303%2031.6667Z'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.433%2026.5684H18.537C19.5079%2026.5684%2020.2948%2025.7803%2020.2948%2024.8094C20.2948%2023.8384%2019.5067%2023.0503%2018.5357%2023.0503H14.433V26.5684Z'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.433%2023.0503V19.422H18.0911C19.0931%2019.422%2019.9046%2020.2335%2019.9046%2021.2355C19.9046%2022.2375%2019.0931%2023.049%2018.0911%2023.049'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.7216%2018.3811V19.4207'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.7216%2027.7584V26.5865'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='cryptowallet'%20viewBox='0%200%2032%2032'%3e%3cpath%20d='M16%207.57667C17.2133%206.99935%2018.5666%206.66602%2020%206.66602C25.1546%206.66602%2029.3332%2010.8446%2029.3332%2015.9993C29.3332%2021.1539%2025.1546%2025.3325%2020%2025.3325C18.5666%2025.3325%2017.2133%2024.9992%2016%2024.4219'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M18.5989%2022.5989C22.2437%2018.954%2022.2437%2013.0445%2018.5989%209.39966C14.954%205.7548%209.04452%205.7548%205.39966%209.39966C1.7548%2013.0445%201.7548%2018.954%205.39966%2022.5989C9.04452%2026.2437%2014.954%2026.2437%2018.5989%2022.5989Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11.434%2010.3012C11.4958%2010.2019%2011.5817%2010.128%2011.6799%2010.0898C11.7781%2010.0515%2011.8837%2010.0508%2011.9823%2010.0876C12.0808%2010.1245%2012.1675%2010.1971%2012.2303%2010.2955C12.2931%2010.394%2012.329%2010.5134%2012.333%2010.6373V14.5395H15.2416C15.3311%2014.5411%2015.4186%2014.5717%2015.495%2014.6278C15.5713%2014.684%2015.6337%2014.7639%2015.6755%2014.859C15.7174%2014.9541%2015.7372%2015.0609%2015.7329%2015.1684C15.7286%2015.2758%2015.7004%2015.3799%2015.6511%2015.4698L12.0553%2021.7834C11.9935%2021.8827%2011.9076%2021.9566%2011.8094%2021.9948C11.7112%2022.0331%2011.6056%2022.0338%2011.507%2021.997C11.4085%2021.9601%2011.3218%2021.8875%2011.259%2021.7891C11.1962%2021.6906%2011.1604%2021.5713%2011.1563%2021.4473V17.5451H8.2497C8.16019%2017.5435%208.07268%2017.513%207.99635%2017.4568C7.92001%2017.4006%207.85764%2017.3208%207.81578%2017.2257C7.77392%2017.1306%207.7541%2017.0237%207.75839%2016.9162C7.76268%2016.8088%207.79092%2016.7047%207.84017%2016.6149L11.434%2010.3012Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='cryptowallet_blue'%20viewBox='0%200%2041%2040'%3e%3crect%20x='0.666016'%20width='40'%20height='40'%20rx='20'%20fill='%238756FF'/%3e%3cpath%20d='M20.4277%2012.5604C21.6194%2011.9934%2022.9486%2011.666%2024.3563%2011.666C29.4189%2011.666%2033.523%2015.7701%2033.523%2020.8327C33.523%2025.8953%2029.4189%2029.9993%2024.3563%2029.9993C22.9486%2029.9993%2021.6194%2029.672%2020.4277%2029.1049'%20stroke='white'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M22.9805%2027.3145C26.5603%2023.7347%2026.5603%2017.9307%2022.9805%2014.3509C19.4007%2010.7711%2013.5967%2010.7711%2010.0169%2014.3509C6.43708%2017.9307%206.43708%2023.7347%2010.0169%2027.3145C13.5967%2030.8943%2019.4007%2030.8943%2022.9805%2027.3145Z'%20stroke='white'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15.9426%2015.2364C16.0033%2015.1388%2016.0877%2015.0663%2016.1841%2015.0287C16.2806%2014.9912%2016.3843%2014.9904%2016.4811%2015.0266C16.5779%2015.0628%2016.663%2015.1341%2016.7247%2015.2308C16.7863%2015.3275%2016.8216%2015.4447%2016.8255%2015.5665V19.399H19.6823C19.7702%2019.4006%2019.8561%2019.4306%2019.9311%2019.4858C20.0061%2019.541%2020.0673%2019.6194%2020.1084%2019.7128C20.1495%2019.8062%2020.169%2019.9111%2020.1648%2020.0167C20.1606%2020.1222%2020.1328%2020.2244%2020.0845%2020.3127L16.5528%2026.5136C16.4921%2026.6112%2016.4077%2026.6837%2016.3113%2026.7213C16.2149%2026.7588%2016.1111%2026.7596%2016.0143%2026.7234C15.9175%2026.6872%2015.8324%2026.6159%2015.7708%2026.5192C15.7091%2026.4225%2015.6738%2026.3053%2015.6699%2026.1835V22.351H12.8151C12.7272%2022.3494%2012.6413%2022.3194%2012.5663%2022.2642C12.4913%2022.209%2012.4301%2022.1306%2012.389%2022.0372C12.3478%2021.9438%2012.3284%2021.8389%2012.3326%2021.7333C12.3368%2021.6278%2012.3646%2021.5256%2012.4129%2021.4373L15.9426%2015.2364Z'%20stroke='white'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='cryptowallet_colored'%20viewBox='0%200%2041%2040'%3e%3crect%20x='0.666687'%20width='40'%20height='40'%20rx='20'%20fill='%239673ED'/%3e%3cpath%20d='M20.429%2012.561C21.6207%2011.994%2022.9499%2011.6666%2024.3576%2011.6666C29.4202%2011.6666%2033.5243%2015.7707%2033.5243%2020.8333C33.5243%2025.8959%2029.4202%2030%2024.3576%2030C22.9499%2030%2021.6207%2029.6726%2020.429%2029.1056'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3e%3cpath%20d='M22.9818%2027.3151C26.5616%2023.7353%2026.5616%2017.9313%2022.9818%2014.3515C19.402%2010.7717%2013.598%2010.7717%2010.0182%2014.3515C6.43839%2017.9313%206.43839%2023.7353%2010.0182%2027.3151C13.598%2030.8949%2019.402%2030.8949%2022.9818%2027.3151Z'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3e%3cpath%20d='M15.9439%2015.2364C16.0047%2015.1388%2016.089%2015.0663%2016.1855%2015.0287C16.2819%2014.9912%2016.3856%2014.9904%2016.4824%2015.0266C16.5792%2015.0628%2016.6643%2015.1341%2016.726%2015.2308C16.7877%2015.3275%2016.8229%2015.4447%2016.8268%2015.5665V19.399H19.6836C19.7715%2019.4006%2019.8574%2019.4306%2019.9324%2019.4858C20.0074%2019.541%2020.0686%2019.6194%2020.1097%2019.7128C20.1509%2019.8062%2020.1703%2019.9111%2020.1661%2020.0167C20.1619%2020.1222%2020.1342%2020.2244%2020.0858%2020.3127L16.5541%2026.5136C16.4934%2026.6112%2016.409%2026.6837%2016.3126%2026.7213C16.2162%2026.7588%2016.1124%2026.7596%2016.0156%2026.7234C15.9188%2026.6872%2015.8338%2026.6159%2015.7721%2026.5192C15.7104%2026.4225%2015.6752%2026.3053%2015.6712%2026.1835V22.351H12.8165C12.7285%2022.3494%2012.6426%2022.3194%2012.5676%2022.2642C12.4926%2022.209%2012.4314%2022.1306%2012.3903%2022.0372C12.3492%2021.9438%2012.3297%2021.8389%2012.3339%2021.7333C12.3381%2021.6278%2012.3659%2021.5256%2012.4142%2021.4373L15.9439%2015.2364Z'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='cup'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16.3621%206.2851H18.5438C19.3471%206.2851%2019.9983%206.96731%2019.9983%207.80887V9.33263C19.9983%2011.0157%2018.6959%2012.3802%2017.0894%2012.3802H16.2705'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11.9977%2014.6664V19.2377'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.9077%2019.2381H9.08984'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.09021%204H14.9081C15.7114%204%2016.3626%204.68221%2016.3626%205.52376V11.6188C16.3626%2013.3019%2015.0602%2014.6663%2013.4536%2014.6663H10.5447C8.93812%2014.6663%207.63574%2013.3019%207.63574%2011.6188V5.52376C7.63574%204.68221%208.28693%204%209.09021%204Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.63618%206.2851H5.45447C4.65119%206.2851%204%206.96731%204%207.80887V9.33263C4%2011.0157%205.30238%2012.3802%206.90895%2012.3802H7.72781'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='dashboard'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M3%2013h8V3H3v10zm0%208h8v-6H3v6zm10%200h8V11h-8v10zm0-18v6h8V3h-8z'/%3e%3c/symbol%3e%3csymbol%20id='date_range'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9%2011H7v2h2v-2zm4%200h-2v2h2v-2zm4%200h-2v2h2v-2zm2-7h-1V2h-2v2H8V2H6v2H5c-1.11%200-1.99.9-1.99%202L3%2020c0%201.1.89%202%202%202h14c1.1%200%202-.9%202-2V6c0-1.1-.9-2-2-2zm0%2016H5V9h14v11z'/%3e%3cpath%20fill='none'%20d='M0%200h24v24H0z'/%3e%3c/symbol%3e%3csymbol%20id='deeplinks'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M11%2015H13C14.657%2015%2016%2013.657%2016%2012V8C16%206.343%2014.657%205%2013%205H5C3.343%205%202%206.343%202%208V12C2%2013.657%203.343%2015%205%2015M13%209H11C9.343%209%208%2010.343%208%2012V16C8%2017.657%209.343%2019%2011%2019H19C20.657%2019%2022%2017.657%2022%2016V12C22%2010.343%2020.657%209%2019%209'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='delete-account'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M7.5%2016C7.69423%2015.5544%208.01424%2015.1751%208.42081%2014.9087C8.82738%2014.6423%209.30285%2014.5002%209.78894%2014.5H14.2111C14.6972%2014.5002%2015.1726%2014.6423%2015.5792%2014.9087C15.9858%2015.1751%2016.3058%2015.5544%2016.5%2016M20.5%206.5L17.5%203.5L20.5%206.5Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12%2012C13.3807%2012%2014.5%2010.8807%2014.5%209.5C14.5%208.11929%2013.3807%207%2012%207C10.6193%207%209.5%208.11929%209.5%209.5C9.5%2010.8807%2010.6193%2012%2012%2012Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21%2011V15C21%2016.5913%2020.3679%2018.1174%2019.2426%2019.2426C18.1174%2020.3679%2016.5913%2021%2015%2021H9C7.4087%2021%205.88258%2020.3679%204.75736%2019.2426C3.63214%2018.1174%203%2016.5913%203%2015V9C3%207.4087%203.63214%205.88258%204.75736%204.75736C5.88258%203.63214%207.4087%203%209%203H13M20.5%203.5L17.5%206.5L20.5%203.5Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='delete'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4.5%206H19.5M8%206L8.544%204.368C8.6767%203.96959%208.93143%203.62305%209.2721%203.37752C9.61276%203.13198%2010.0221%202.9999%2010.442%203H13.558C13.9783%202.99948%2014.388%203.13136%2014.7291%203.37693C15.0702%203.6225%2015.3252%203.96927%2015.458%204.368L16%206M6%209V19C6%2019.5304%206.21071%2020.0391%206.58579%2020.4142C6.96086%2020.7893%207.46957%2021%208%2021H16C16.5304%2021%2017.0391%2020.7893%2017.4142%2020.4142C17.7893%2020.0391%2018%2019.5304%2018%2019V9H6Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='delete_alt'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0%200h24v24H0V0z'/%3e%3cpath%20d='M6%2019c0%201.1.9%202%202%202h8c1.1%200%202-.9%202-2V7H6v12zm2.46-7.12l1.41-1.41L12%2012.59l2.12-2.12%201.41%201.41L13.41%2014l2.12%202.12-1.41%201.41L12%2015.41l-2.12%202.12-1.41-1.41L10.59%2014l-2.13-2.12zM15.5%204l-1-1h-5l-1%201H5v2h14V4z'/%3e%3cpath%20fill='none'%20d='M0%200h24v24H0z'/%3e%3c/symbol%3e%3csymbol%20id='deprecated'%20viewBox='0%200%20512%20512'%3e%3cpath%20d='M497.9%20150.5c9%209%2014.1%2021.2%2014.1%2033.9v143.1c0%2012.7-5.1%2024.9-14.1%2033.9L361.5%20497.9c-9%209-21.2%2014.1-33.9%2014.1H184.5c-12.7%200-24.9-5.1-33.9-14.1L14.1%20361.5c-9-9-14.1-21.2-14.1-33.9V184.5c0-12.7%205.1-24.9%2014.1-33.9L150.5%2014.1c9-9%2021.2-14.1%2033.9-14.1h143.1c12.7%200%2024.9%205.1%2033.9%2014.1l136.5%20136.4zM377.6%20338c4.7-4.7%204.7-12.3%200-17l-65-65%2065.1-65.1c4.7-4.7%204.7-12.3%200-17L338%20134.4c-4.7-4.7-12.3-4.7-17%200l-65%2065-65.1-65.1c-4.7-4.7-12.3-4.7-17%200L134.4%20174c-4.7%204.7-4.7%2012.3%200%2017l65.1%2065.1-65.1%2065.1c-4.7%204.7-4.7%2012.3%200%2017l39.6%2039.6c4.7%204.7%2012.3%204.7%2017%200l65.1-65.1%2065.1%2065.1c4.7%204.7%2012.3%204.7%2017%200l39.4-39.8z'/%3e%3c/symbol%3e%3csymbol%20id='desktop_device'%20viewBox='0%200%2032%2033'%3e%3cpath%20d='M21.3332%2029.5C21.8855%2029.5%2022.3332%2029.0523%2022.3332%2028.5C22.3332%2027.9477%2021.8855%2027.5%2021.3332%2027.5V29.5ZM10.6665%2027.5C10.1142%2027.5%209.6665%2027.9477%209.6665%2028.5C9.6665%2029.0523%2010.1142%2029.5%2010.6665%2029.5V27.5ZM29.3332%2020.1667C29.8855%2020.1667%2030.3332%2019.719%2030.3332%2019.1667C30.3332%2018.6144%2029.8855%2018.1667%2029.3332%2018.1667V20.1667ZM2.6665%2018.1667C2.11422%2018.1667%201.6665%2018.6144%201.6665%2019.1667C1.6665%2019.719%202.11422%2020.1667%202.6665%2020.1667V18.1667ZM19.6665%2023.1667C19.6665%2022.6144%2019.2188%2022.1667%2018.6665%2022.1667C18.1142%2022.1667%2017.6665%2022.6144%2017.6665%2023.1667H19.6665ZM20.6665%2029.5C21.2188%2029.5%2021.6665%2029.0523%2021.6665%2028.5C21.6665%2027.9477%2021.2188%2027.5%2020.6665%2027.5V29.5ZM14.3332%2023.1667C14.3332%2022.6144%2013.8855%2022.1667%2013.3332%2022.1667C12.7809%2022.1667%2012.3332%2022.6144%2012.3332%2023.1667H14.3332ZM11.3332%2027.5C10.7809%2027.5%2010.3332%2027.9477%2010.3332%2028.5C10.3332%2029.0523%2010.7809%2029.5%2011.3332%2029.5V27.5ZM21.3332%2027.5H10.6665V29.5H21.3332V27.5ZM5.33317%205.5H26.6665V3.5H5.33317V5.5ZM26.6665%205.5C27.587%205.5%2028.3332%206.24619%2028.3332%207.16667H30.3332C30.3332%205.14162%2028.6915%203.5%2026.6665%203.5V5.5ZM28.3332%207.16667V20.5H30.3332V7.16667H28.3332ZM28.3332%2020.5C28.3332%2021.4205%2027.587%2022.1667%2026.6665%2022.1667V24.1667C28.6915%2024.1667%2030.3332%2022.525%2030.3332%2020.5H28.3332ZM26.6665%2022.1667H5.33317V24.1667H26.6665V22.1667ZM5.33317%2022.1667C4.4127%2022.1667%203.6665%2021.4205%203.6665%2020.5H1.6665C1.6665%2022.525%203.30813%2024.1667%205.33317%2024.1667V22.1667ZM3.6665%2020.5V7.16667H1.6665V20.5H3.6665ZM3.6665%207.16667C3.6665%206.24619%204.4127%205.5%205.33317%205.5V3.5C3.30813%203.5%201.6665%205.14162%201.6665%207.16667H3.6665ZM29.3332%2018.1667H2.6665V20.1667H29.3332V18.1667ZM17.6665%2023.1667V24.5H19.6665V23.1667H17.6665ZM17.6665%2024.5C17.6665%2025.7262%2017.9129%2026.8857%2018.3579%2027.7756C18.7729%2028.6058%2019.5314%2029.5%2020.6665%2029.5V27.5C20.6654%2027.5%2020.6639%2027.4999%2020.6611%2027.4994C20.6581%2027.4988%2020.6519%2027.4972%2020.6422%2027.4932C20.6225%2027.4852%2020.5854%2027.4658%2020.5339%2027.4222C20.426%2027.331%2020.286%2027.1598%2020.1467%2026.8812C19.8678%2026.3235%2019.6665%2025.483%2019.6665%2024.5H17.6665ZM12.3332%2023.1667V24.5H14.3332V23.1667H12.3332ZM12.3332%2024.5C12.3332%2025.483%2012.1318%2026.3235%2011.853%2026.8812C11.7137%2027.1598%2011.5736%2027.331%2011.4658%2027.4222C11.4142%2027.4658%2011.3772%2027.4852%2011.3575%2027.4932C11.3477%2027.4972%2011.3416%2027.4988%2011.3386%2027.4994C11.3358%2027.4999%2011.3342%2027.5%2011.3332%2027.5V29.5C12.4683%2029.5%2013.2267%2028.6058%2013.6418%2027.7756C14.0868%2026.8857%2014.3332%2025.7262%2014.3332%2024.5H12.3332Z'/%3e%3c/symbol%3e%3csymbol%20id='dialog'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9%2010H15M9%2013H12M12%204C7.03%204%203%207.35868%203%2011.4971C3.03694%2012.7249%203.39056%2013.9223%204.02657%2014.9731C4.66258%2016.024%205.55939%2016.8926%206.63%2017.4948C6.41369%2018.0826%206.11292%2018.6358%205.73714%2019.1369C5.63591%2019.2847%205.58282%2019.4601%205.58511%2019.6392C5.58741%2019.8184%205.64498%2019.9924%205.74996%2020.1376C5.85494%2020.2827%206.00219%2020.3919%206.17159%2020.4501C6.34098%2020.5084%206.52424%2020.5129%206.6963%2020.4631C7.89863%2020.113%209.03031%2019.555%2010.04%2018.8143C10.6863%2018.9354%2011.3425%2018.9956%2012%2018.9942C16.97%2018.9942%2021%2015.6355%2021%2011.4971C21%207.35869%2016.97%204%2012%204Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='discord'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cpath%20d='M19.3,6.6c0,0-1.4-1.5-4.6-1.7v0.5c0,0,1.8-0.1,3.9,2c-1.6-1.2-4-1.9-6.6-1.9S7,6.2,5.4,7.4c2.2-2.1,3.9-2,3.9-2V4.9%20C6.1,5.1,4.7,6.6,4.7,6.6c-2.4,3.1-2.6,10-2.6,10c2.3,2.8,5.2,2.4,5.2,2.4l1.1-1.5c-1.4-0.4-2.3-1.2-2.9-1.9c1.6,1.2,4,1.9,6.5,1.9%20s4.9-0.7,6.5-1.9c-0.6,0.7-1.6,1.5-2.9,1.9l1.1,1.5c0,0,2.9,0.4,5.2-2.4C21.9,16.7,21.7,9.8,19.3,6.6z%20M8.9,14.7%20c-0.9,0-1.7-0.8-1.7-1.8s0.7-1.8,1.7-1.8c0.9,0,1.7,0.8,1.7,1.8S9.9,14.7,8.9,14.7z%20M15.1,14.7c-0.9,0-1.7-0.8-1.7-1.8%20s0.7-1.8,1.7-1.8s1.7,0.8,1.7,1.8S16,14.7,15.1,14.7z'/%3e%3c/symbol%3e%3csymbol%20id='discord_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%237289DA'/%3e%3cpath%20d='M18.0183%207.88874C16.9174%207.00874%2015.5963%206.56874%2014.2018%206.49541L13.9817%206.71541C15.2294%207.00874%2016.3303%207.59541%2017.3578%208.40207C16.1101%207.74207%2014.7156%207.30207%2013.2477%207.15541C12.8073%207.08207%2012.4404%207.08207%2012%207.08207C11.5596%207.08207%2011.1927%207.08207%2010.7523%207.15541C9.2844%207.30207%207.88991%207.74207%206.6422%208.40207C7.66972%207.59541%208.77064%207.00874%2010.0183%206.71541L9.79817%206.49541C8.40367%206.56874%207.08257%207.00874%205.98165%207.88874C4.73394%2010.2354%204.07339%2012.8754%204%2015.5887C5.10092%2016.7621%206.6422%2017.4954%208.25688%2017.4954C8.25688%2017.4954%208.77064%2016.9087%209.13761%2016.3954C8.18349%2016.1754%207.30275%2015.6621%206.7156%2014.8554C7.22936%2015.1487%207.74312%2015.4421%208.25688%2015.6621C8.91743%2015.9554%209.57798%2016.1021%2010.2385%2016.2487C10.8257%2016.3221%2011.4128%2016.3954%2012%2016.3954C12.5872%2016.3954%2013.1743%2016.3221%2013.7615%2016.2487C14.422%2016.1021%2015.0826%2015.9554%2015.7431%2015.6621C16.2569%2015.4421%2016.7706%2015.1487%2017.2844%2014.8554C16.6972%2015.6621%2015.8165%2016.1754%2014.8624%2016.3954C15.2294%2016.9087%2015.7431%2017.4954%2015.7431%2017.4954C17.3578%2017.4954%2018.8991%2016.7621%2020%2015.5887C19.9266%2012.8754%2019.2661%2010.2354%2018.0183%207.88874ZM9.57798%2014.2687C8.84404%2014.2687%208.18349%2013.6087%208.18349%2012.8021C8.18349%2011.9954%208.84404%2011.3354%209.57798%2011.3354C10.3119%2011.3354%2010.9725%2011.9954%2010.9725%2012.8021C10.9725%2013.6087%2010.3119%2014.2687%209.57798%2014.2687ZM14.422%2014.2687C13.6881%2014.2687%2013.0275%2013.6087%2013.0275%2012.8021C13.0275%2011.9954%2013.6881%2011.3354%2014.422%2011.3354C15.156%2011.3354%2015.8165%2011.9954%2015.8165%2012.8021C15.8165%2013.6087%2015.156%2014.2687%2014.422%2014.2687Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='dislike'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15.9971%2013.571L12.3481%2018.322C11.6691%2019.207%2010.3431%2019.229%209.63407%2018.368C9.36907%2018.047%209.22507%2017.643%209.22507%2017.227L9.22507%2013.956L6.12907%2013.956C5.52807%2013.956%204.96707%2013.656%204.63307%2013.157L4.30407%2012.666C4.00907%2012.225%203.92307%2011.676%204.07007%2011.167L5.42907%206.445C5.65107%205.674%206.35607%205.143%207.15807%205.143L13.4471%205.143C13.9471%205.143%2014.4251%205.351%2014.7651%205.717L15.9971%207.043M17.0531%205.143L18.9411%205.143C19.5241%205.143%2019.9971%205.616%2019.9971%206.199L19.9971%2013.587C19.9971%2014.17%2019.5241%2014.643%2018.9411%2014.643L17.0531%2014.643C16.4701%2014.643%2015.9971%2014.17%2015.9971%2013.587L15.9971%206.199C15.9971%205.616%2016.4701%205.143%2017.0531%205.143Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='doc-export'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M21%2017V19C21%2020.1046%2020.1046%2021%2019%2021H17'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M3%207V5C3%203.89543%203.89543%203%205%203H7'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10%209V5C10%203.89543%2010.8954%203%2012%203H19C20.1046%203%2021%203.89543%2021%205V12C21%2013.1046%2020.1046%2014%2019%2014H17'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13%207.00001H18'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16%2010H18'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11.75%2012H5.25C4.00736%2012%203%2013.0074%203%2014.25V18.75C3%2019.9926%204.00736%2021%205.25%2021H11.75C12.9926%2021%2014%2019.9926%2014%2018.75V14.25C14%2013.0074%2012.9926%2012%2011.75%2012Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9%2018.25C9.9665%2018.25%2010.75%2017.4665%2010.75%2016.5C10.75%2015.5335%209.9665%2014.75%209%2014.75C8.0335%2014.75%207.25%2015.5335%207.25%2016.5C7.25%2017.4665%208.0335%2018.25%209%2018.25Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.55%2014.5001C5.54996%2014.5277%205.52757%2014.55%205.49997%2014.55C5.47238%2014.55%205.45001%2014.5276%205.45%2014.5C5.44999%2014.4724%205.47234%2014.45%205.49994%2014.45C5.51322%2014.45%205.52596%2014.4553%205.53536%2014.4646C5.54475%2014.474%205.55002%2014.4868%205.55%2014.5001'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='document'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M14%202H6c-1.1%200-1.99.9-1.99%202L4%2020c0%201.1.89%202%201.99%202H18c1.1%200%202-.9%202-2V8l-6-6zm2%2016H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5%209H13z'/%3e%3c/symbol%3e%3csymbol%20id='dollar'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%206V7.5M12%2018V16.5M9%2014.255C9%2015.498%2010.007%2016.505%2011.25%2016.505H12.893C14.056%2016.505%2015%2015.562%2015%2014.398C15%2013.432%2014.343%2012.59%2013.406%2012.355L10.594%2011.65C9.657%2011.415%209%2010.573%209%209.607C9%208.443%209.943%207.5%2011.107%207.5H12.75C13.993%207.5%2015%208.507%2015%209.75M18.3639%205.63604C21.8787%209.15076%2021.8787%2014.8492%2018.3639%2018.3639C14.8492%2021.8787%209.15074%2021.8787%205.63604%2018.3639C2.12132%2014.8492%202.12132%209.15074%205.63604%205.63604C9.15076%202.12132%2014.8492%202.12132%2018.3639%205.63604Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='donate_blue'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%238756FF'/%3e%3cpath%20d='M8%2018H6.66667C6.29867%2018%206%2017.7013%206%2017.3333V13.3333C6%2012.9653%206.29867%2012.6667%206.66667%2012.6667H8C8.368%2012.6667%208.66667%2012.9653%208.66667%2013.3333V17.3333C8.66667%2017.7013%208.368%2018%208%2018Z'%20stroke='white'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.667%2015.3334H14.2223C14.511%2015.3334%2014.7917%2015.24%2015.0223%2015.0667L16.633%2013.8587C17.035%2013.5574%2017.5977%2013.5974%2017.953%2013.9527C18.3477%2014.3474%2018.3477%2014.9867%2017.953%2015.3807L16.571%2016.7627C16.199%2017.1347%2015.7243%2017.3887%2015.2083%2017.492L13.255%2017.8827C12.8677%2017.96%2012.4683%2017.9507%2012.085%2017.8547L10.3183%2017.4134C10.107%2017.36%209.89033%2017.3334%209.67233%2017.3334H8.66699'%20stroke='white'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.667%2015.3333H13.657C14.215%2015.3333%2014.667%2014.8813%2014.667%2014.3233V14.1213C14.667%2013.658%2014.3517%2013.254%2013.9023%2013.142L12.3743%2012.76C12.1257%2012.698%2011.871%2012.6667%2011.615%2012.6667C10.997%2012.6667%2010.3923%2012.8493%209.87833%2013.1927L8.66699%2014'%20stroke='white'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.5%205.64162C14.7679%205.33937%2015.2315%205%2015.9373%205C17.1721%205%2018%206.1175%2018%207.15812C18%209.3335%2015.1914%2011%2014.5%2011C13.8086%2011%2011%209.3335%2011%207.15812C11%206.1175%2011.8279%205%2013.0627%205C13.7685%205%2014.2321%205.33937%2014.5%205.64162Z'%20stroke='white'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='donate_colored'%20viewBox='0%200%2041%2040'%3e%3crect%20x='0.333313'%20width='40'%20height='40'%20rx='20'%20fill='%23FF6681'/%3e%3cpath%20d='M13.6666%2030H11.4444C10.8311%2030%2010.3333%2029.5022%2010.3333%2028.8889V22.2222C10.3333%2021.6089%2010.8311%2021.1111%2011.4444%2021.1111H13.6666C14.28%2021.1111%2014.7778%2021.6089%2014.7778%2022.2222V28.8889C14.7778%2029.5022%2014.28%2030%2013.6666%2030Z'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3e%3cpath%20d='M21.445%2025.5556H24.0372C24.5183%2025.5556%2024.9861%2025.4%2025.3705%2025.1112L28.055%2023.0978C28.725%2022.5956%2029.6628%2022.6623%2030.255%2023.2545C30.9128%2023.9123%2030.9128%2024.9778%2030.255%2025.6345L27.9517%2027.9378C27.3317%2028.5578%2026.5405%2028.9812%2025.6805%2029.1534L22.425%2029.8045C21.7794%2029.9334%2021.1139%2029.9178%2020.475%2029.7578L17.5305%2029.0223C17.1783%2028.9334%2016.8172%2028.8889%2016.4539%2028.8889H14.7783'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21.445%2025.5555H23.095C24.025%2025.5555%2024.7783%2024.8022%2024.7783%2023.8722V23.5355C24.7783%2022.7633%2024.2528%2022.09%2023.5039%2021.9033L20.9572%2021.2666C20.5428%2021.1633%2020.1183%2021.1111%2019.6917%2021.1111C18.6617%2021.1111%2017.6539%2021.4155%2016.7972%2021.9878L14.7783%2023.3333'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3e%3cpath%20d='M24.5%209.40275C24.9465%208.899%2025.7191%208.33337%2026.8955%208.33337C28.9534%208.33337%2030.3333%2010.1959%2030.3333%2011.9302C30.3333%2015.5559%2025.6524%2018.3334%2024.5%2018.3334C23.3476%2018.3334%2018.6666%2015.5559%2018.6666%2011.9302C18.6666%2010.1959%2020.0465%208.33337%2022.1044%208.33337C23.2808%208.33337%2024.0534%208.899%2024.5%209.40275Z'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20fill='none'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='dot-status'%20viewBox='0%200%2012%2012'%3e%3crect%20x='0.5'%20y='0.5'%20width='11'%20height='11'%20rx='5.5'%20fill='currentColor'%20stroke='white'/%3e%3c/symbol%3e%3csymbol%20id='download'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15.5001%2011L12.0001%2014.5L8.50009%2011M12.0001%204V14M19.9443%2016.5C19.9443%2017.4431%2019.6254%2018.2916%2018.9586%2018.9585C18.2917%2019.6254%2017.3872%2020%2016.4441%2020H7.55609C6.61298%2020%205.7085%2019.6254%205.04162%2018.9585C4.37474%2018.2916%203.94434%2017.4431%203.94434%2016.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='drag'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0%200h24v24H0V0z'/%3e%3cpath%20d='M11%2018c0%201.1-.9%202-2%202s-2-.9-2-2%20.9-2%202-2%202%20.9%202%202zm-2-8c-1.1%200-2%20.9-2%202s.9%202%202%202%202-.9%202-2-.9-2-2-2zm0-6c-1.1%200-2%20.9-2%202s.9%202%202%202%202-.9%202-2-.9-2-2-2zm6%204c1.1%200%202-.9%202-2s-.9-2-2-2-2%20.9-2%202%20.9%202%202%202zm0%202c-1.1%200-2%20.9-2%202s.9%202%202%202%202-.9%202-2-.9-2-2-2zm0%206c-1.1%200-2%20.9-2%202s.9%202%202%202%202-.9%202-2-.9-2-2-2z'/%3e%3c/symbol%3e%3csymbol%20id='eWallet'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cg%3e%3cpath%20d='M9.2,4.1C9.1,4.2,9,4.2,9,4.2C6.7,5.5,5.2,7.5,4.7,10c-0.4,1.9-0.2,3.7,0.6,5.5c0.5,1.2,1.1,2.3,2.1,3.3%20c1.5,1.5,3.3,2.4,5.3,2.8c1.1,0.2,2.2,0.3,3.4,0.2c0.6-0.1,1.1-0.2,1.7-0.3c-0.1,0.1-0.2,0.1-0.3,0.1c-1,0.4-2,0.6-3.1,0.7%20c-2,0.1-3.9-0.1-5.8-0.9c-3.2-1.5-5.1-4-5.8-7.4c-0.3-1.4-0.3-2.7,0.1-4.1C3.5,8,4.6,6.6,6.1,5.5C7,4.9,8,4.5,9,4.1%20C9,4.1,9.1,4.1,9.2,4.1C9.1,4.1,9.2,4.1,9.2,4.1z'/%3e%3cpath%20d='M3.7,7.3C3.8,7.1,3.9,6.9,4,6.7c1.6-2.7,3.9-4.3,7-4.8c2.2-0.4,4.4-0.2,6.4,0.9C19.4,4,20.9,5.7,21.5,8%20c0.8,3.1-0.5,6.3-3.1,8.1c-0.7,0.4-1.4,0.8-2.1,1.1c-0.1,0-0.1,0-0.2,0c0.1,0,0.1-0.1,0.2-0.1c2.2-1.4,3.5-3.4,4-5.9%20c0.1-0.4,0.2-0.9,0.2-1.3c0.1-1.6-0.5-3-1.5-4.1c-1.2-1.4-2.8-2.2-4.6-2.4c-2.6-0.4-5.1,0-7.4,1.3c-1.2,0.7-2.2,1.5-3,2.6%20C3.8,7.2,3.8,7.3,3.7,7.3C3.7,7.3,3.7,7.3,3.7,7.3z'/%3e%3cpath%20d='M11.9,14.5c-0.3-0.1-0.7-0.2-1-0.4c-1.2-0.5-2.2-1.3-2.8-2.5C7.8,10.8,7.6,10,7.8,9.1c0-0.2,0.1-0.5,0.3-0.6%20c1-1.3,2.3-2.1,3.9-2.3c1.3-0.2,2.6,0,3.8,0.5c0.6,0.3,1.1,0.6,1.5,1.1c0.1,0.1,0.1,0.1,0.2,0.2c-0.3-0.1-0.6-0.3-0.8-0.3%20c-1.7-0.4-3.3,0-4.6,1.2c-0.5,0.5-0.8,1.2-0.9,1.9c-0.1,0.9-0.1,1.9,0.2,2.7C11.5,13.7,11.7,14.1,11.9,14.5z'/%3e%3cpath%20d='M7.3,9.9c0.1,0.4,0.1,0.7,0.2,1.1c0.4,1.5,1.4,2.5,2.8,3.2c1,0.5,2.1,0.8,3.2,0.9c0.7,0.1,1.5,0.1,2.2,0%20c1.3-0.2,2.4-0.8,3.3-1.8c0-0.1,0.1-0.1,0.1-0.2c0,0,0,0,0.1,0c0,0.1,0,0.1-0.1,0.2c-1.2,2.4-3.1,3.8-5.8,4.2%20c-1.5,0.2-2.8-0.2-4-1.1C7.8,15.3,7,13.8,7,11.9C7,11.2,7.1,10.3,7.3,9.9z'/%3e%3cpath%20d='M11.5,11.3c0.2,0,0.4,0,0.6,0c0.5,0,0.9,0,1.3-0.2c0.7-0.3,1.2-1.1,1-1.8c-0.1-0.5-0.4-0.7-0.7-0.9c0,0-0.1,0-0.1,0%20c0,0-0.1,0-0.1,0c0,0,0-0.1,0-0.1c1.1-0.4,2.2-0.6,3.3-0.1c0.2,0.1,0.4,0.2,0.6,0.4c0.8,0.6,1,1.4,0.7,2.3%20c-0.2,0.7-0.7,1.2-1.3,1.6c-1.3,0.8-2.6,0.9-4,0.2c-0.5-0.2-0.9-0.6-1.1-1.1C11.5,11.4,11.5,11.4,11.5,11.3z'/%3e%3cpath%20d='M7.7,18.5c2,1.5,4.3,2,6.8,1.8c2.5-0.3,4.6-1.3,6.4-3c0,0.2,0.1,0.4,0,0.5c-0.2,1.1-0.7,1.9-1.6,2.5%20c-0.9,0.6-1.9,0.8-2.9,1c-1.8,0.2-3.5,0.1-5.3-0.5c-1.3-0.4-2.4-1.1-3.4-2C7.8,18.6,7.7,18.6,7.7,18.5z'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='e_wallet_blue'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%238756FF'/%3e%3cpath%20d='M15.3337%2013.0606V14C15.3337%2014.3536%2015.1932%2014.6927%2014.9431%2014.9428C14.6931%2015.1928%2014.3539%2015.3333%2014.0003%2015.3333H10.0003C9.6467%2015.3333%209.30756%2015.1928%209.05752%2014.9428C8.80747%2014.6927%208.66699%2014.3536%208.66699%2014V9.99999C8.66699%209.64637%208.80747%209.30723%209.05752%209.05718C9.30756%208.80713%209.6467%208.66666%2010.0003%208.66666H14.0003C14.3539%208.66666%2014.6931%208.80713%2014.9431%209.05718C15.1932%209.30723%2015.3337%209.64637%2015.3337%209.99999V10.9394'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.7276%2010.9394H15.5761C15.6886%2010.9394%2015.7965%2010.9841%2015.8761%2011.0636C15.9556%2011.1432%2016.0003%2011.2511%2016.0003%2011.3636V12.6364C16.0003%2012.7489%2015.9556%2012.8568%2015.8761%2012.9363C15.7965%2013.0159%2015.6886%2013.0606%2015.5761%2013.0606H14.7276C14.4463%2013.0606%2014.1765%2012.9489%2013.9776%2012.75C13.7787%2012.5511%2013.667%2012.2813%2013.667%2012V12C13.667%2011.8607%2013.6944%2011.7228%2013.7477%2011.5941C13.801%2011.4654%2013.8792%2011.3485%2013.9776%2011.25C14.0761%2011.1516%2014.193%2011.0734%2014.3217%2011.0201C14.4504%2010.9668%2014.5883%2010.9394%2014.7276%2010.9394V10.9394Z'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.667%2018H16.0003C16.5308%2018%2017.0395%2017.7893%2017.4145%2017.4142C17.7896%2017.0391%2018.0003%2016.5304%2018.0003%2016V14.6667'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.667%206H16.0003C16.5308%206%2017.0395%206.21071%2017.4145%206.58579C17.7896%206.96086%2018.0003%207.46957%2018.0003%208V9.33333'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M6%2014.6667V16C6%2016.5304%206.21071%2017.0391%206.58579%2017.4142C6.96086%2017.7893%207.46957%2018%208%2018H9.33333'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M6%209.33333V8C6%207.46957%206.21071%206.96086%206.58579%206.58579C6.96086%206.21071%207.46957%206%208%206H9.33333'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='e_wallet_colored'%20viewBox='0%200%2041%2040'%3e%3crect%20x='0.333313'%20width='40'%20height='40'%20rx='20'%20fill='%23C55FE8'/%3e%3cpath%20d='M25.8889%2021.7676V23.3332C25.8889%2023.9226%2025.6548%2024.4878%2025.238%2024.9046C24.8213%2025.3213%2024.256%2025.5554%2023.6667%2025.5554H17C16.4106%2025.5554%2015.8454%2025.3213%2015.4286%2024.9046C15.0119%2024.4878%2014.7778%2023.9226%2014.7778%2023.3332V16.6666C14.7778%2016.0772%2015.0119%2015.512%2015.4286%2015.0952C15.8454%2014.6785%2016.4106%2014.4443%2017%2014.4443H23.6667C24.256%2014.4443%2024.8213%2014.6785%2025.238%2015.0952C25.6548%2015.512%2025.8889%2016.0772%2025.8889%2016.6666V18.2322'%20stroke='white'%20stroke-width='1.5'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M24.8788%2018.2324H26.2929C26.4804%2018.2324%2026.6603%2018.3069%2026.7929%2018.4395C26.9255%2018.5721%2027%2018.752%2027%2018.9395V21.0607C27%2021.2482%2026.9255%2021.4281%2026.7929%2021.5607C26.6603%2021.6933%2026.4804%2021.7678%2026.2929%2021.7678H24.8788C24.4099%2021.7678%2023.9603%2021.5815%2023.6288%2021.25C23.2973%2020.9185%2023.1111%2020.4689%2023.1111%2020.0001V20.0001C23.1111%2019.768%2023.1568%2019.5381%2023.2456%2019.3236C23.3345%2019.1092%2023.4647%2018.9143%2023.6288%2018.7502C23.793%2018.586%2023.9878%2018.4558%2024.2023%2018.367C24.4168%2018.2781%2024.6466%2018.2324%2024.8788%2018.2324V18.2324Z'%20stroke='white'%20fill='none'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M24.7778%2029.9999H27C27.884%2029.9999%2028.7319%2029.6487%2029.357%2029.0236C29.9821%2028.3985%2030.3333%2027.5506%2030.3333%2026.6666V24.4443'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3e%3cpath%20d='M24.7778%2010H27C27.884%2010%2028.7319%2010.3512%2029.357%2010.9763C29.9821%2011.6014%2030.3333%2012.4493%2030.3333%2013.3333V15.5556'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3e%3cpath%20d='M10.3333%2024.4443V26.6666C10.3333%2027.5506%2010.6845%2028.3985%2011.3096%2029.0236C11.9347%2029.6487%2012.7826%2029.9999%2013.6666%2029.9999H15.8889'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3e%3cpath%20d='M10.3333%2015.5556V13.3333C10.3333%2012.4493%2010.6845%2011.6014%2011.3096%2010.9763C11.9347%2010.3512%2012.7826%2010%2013.6666%2010H15.8889'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='edit'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M17.54%2010.12L13.88%206.46001M6.251%2021H3V17.749C3%2017.484%203.105%2017.229%203.293%2017.042L16.627%203.70701C17.018%203.31601%2017.651%203.31601%2018.041%203.70701L20.292%205.95801C20.683%206.34901%2020.683%206.98201%2020.292%207.37201L6.958%2020.707C6.771%2020.895%206.516%2021%206.251%2021Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='edit_solid'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M14.4072%205.51307L14.4101%205.51592L18.0701%209.17592L18.0722%209.17807L20.2919%206.95825C20.6829%206.56825%2020.6829%205.93525%2020.2919%205.54425L18.0409%203.29325C17.6509%202.90225%2017.0179%202.90225%2016.6269%203.29325L14.4072%205.51307Z'%20fill='currentColor'/%3e%3cpath%20d='M3.7%2020.5863H6.251C6.516%2020.5863%206.771%2020.4813%206.958%2020.2933L17.0117%2010.2388L17.0096%2010.2366L13.3496%206.57659L13.3467%206.57376L3.293%2016.6283C3.105%2016.8153%203%2017.0703%203%2017.3353V19.8863C3%2020.2729%203.3134%2020.5863%203.7%2020.5863Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='email'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20class='st0'%20d='M0,0h24v24H0V0z'/%3e%3cg%3e%3cg%3e%3cpath%20d='M12,14.7l-2.3-2l-6.7,5.6c0.3,0.3,0.5,0.4,0.9,0.4h16c0.4,0,0.7-0.1,0.9-0.4l-6.7-5.6L12,14.7z'/%3e%3cpath%20d='M20.9,5.7c-0.3-0.3-0.5-0.4-0.9-0.4H4c-0.4,0-0.7,0.1-0.9,0.4l8.9,7.6L20.9,5.7z'/%3e%3cpolygon%20points='2.7,6.5%202.7,17.6%209.1,12.1%20'/%3e%3cpolygon%20points='14.9,12.1%2021.3,17.6%2021.3,6.5%20'/%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='email_circle'%20viewBox='0%200%2064%2064'%3e%3cpath%20d='M0%2032C0%2014.3269%2014.3269%200%2032%200V0C49.6731%200%2064%2014.3269%2064%2032V32C64%2049.6731%2049.6731%2064%2032%2064V64C14.3269%2064%200%2049.6731%200%2032V32Z'/%3e%3cpath%20d='M13.3422%2023.6801C13.3359%2023.7859%2013.3328%2023.8926%2013.3328%2024V40C13.3328%2042.9455%2015.7206%2045.3333%2018.6661%2045.3333H45.3328C48.2783%2045.3333%2050.6661%2042.9455%2050.6661%2040V24C50.6661%2023.8915%2050.6629%2023.7838%2050.6565%2023.6769L35.4676%2032.8675C33.3519%2034.3803%2030.5393%2034.3768%2028.4272%2032.8608L13.3422%2023.6801Z'%20fill='white'/%3e%3cpath%20d='M15.078%2020.054L30.5779%2029.4871C30.6303%2029.5191%2030.6813%2029.5534%2030.7306%2029.59C31.4654%2030.1358%2032.4351%2030.1366%2033.1704%2029.5924C33.2203%2029.5555%2033.2718%2029.5209%2033.3249%2029.4888L48.9194%2020.0527C47.9722%2019.1915%2046.7138%2018.6666%2045.3328%2018.6666H18.6661C17.2844%2018.6666%2016.0254%2019.1921%2015.078%2020.054Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='email_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%238B55F6'/%3e%3cpath%20d='M5.00354%208.88006C5.00119%208.91974%205%208.95973%205%209V15C5%2016.1046%205.89543%2017%207%2017H17C18.1046%2017%2019%2016.1046%2019%2015V9C19%208.95933%2018.9988%208.91893%2018.9964%208.87886L13.3006%2012.3253C12.5072%2012.8926%2011.4525%2012.8913%2010.6604%2012.3228L5.00354%208.88006Z'%20fill='white'/%3e%3cpath%20d='M5.65447%207.52027L11.4669%2011.0577C11.4866%2011.0697%2011.5057%2011.0825%2011.5242%2011.0963C11.7997%2011.3009%2012.1634%2011.3013%2012.4391%2011.0972C12.4578%2011.0833%2012.4772%2011.0704%2012.4971%2011.0583L18.345%207.51979C17.9898%207.19684%2017.5179%207%2017%207H7C6.48186%207%206.00974%207.19704%205.65447%207.52027Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='enrollment'%20viewBox='0%200%2028%2028'%3e%3cg%20transform='translate(-166%20-310)'%3e%3cpath%20d='M9.831,21.541V25.5h4.947v3.957h3.957V25.5h1.979a4.947,4.947,0,0,0,0-9.894H12.8a.989.989,0,1,1,0-1.979H23.683V9.669H18.736V5.711H14.778V9.669H12.8a4.947,4.947,0,1,0,0,9.894h7.915a.989.989,0,1,1,0,1.979Z'%20transform='translate(163.243%20306.417)'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='epayments_colored'%20viewBox='0%200%2024%2024'%3e%3crect%20width='24'%20height='24'%20fill='%23EDF0F3'/%3e%3cpath%20d='M13.3342%2018.2815C14.906%2018.3995%2016.4184%2018.0901%2017.3793%2017.4532C17.4583%2017.3961%2017.5341%2017.3314%2017.6068%2017.2624C17.6662%2017.1997%2017.7249%2017.1369%2017.7799%2017.0704C18.025%2016.7748%2018.2031%2016.468%2018.3074%2016.1755C18.3426%2016.074%2018.3701%2015.9699%2018.3895%2015.8643L18.3952%2015.8266C18.404%2015.7676%2018.4091%2015.7105%2018.4116%2015.6541C18.4129%2015.6164%2018.4142%2015.5788%2018.4123%2015.5424C18.4094%2015.4696%2018.3994%2015.3973%2018.3826%2015.3265C18.1716%2015.5424%2017.9454%2015.7438%2017.7091%2015.9308C15.6856%2017.5605%2013.47%2017.6816%2012.2564%2017.5906C11.8489%2017.5627%2011.4447%2017.499%2011.0485%2017.4005C10.1135%2017.1313%209.30291%2016.7271%208.62945%2016.2094C9.03363%2016.6221%209.49024%2016.9807%209.98774%2017.2762C10.931%2017.8397%2012.0883%2018.1874%2013.3342%2018.2815ZM6.93191%207.26648C5.88698%208.21531%205.22174%209.40448%205.05306%2010.5861C5.04093%2010.6737%205.03124%2010.7616%205.024%2010.8497V10.856L5.02337%2010.8603C5.01389%2010.9859%205.00694%2011.1164%205.00441%2011.2494C4.93785%2013.1799%205.6266%2015.061%206.92617%2016.498C8.22574%2017.935%2010.0351%2018.8162%2011.9746%2018.9568L12.0277%2018.9593L12.0795%2018.9618L12.1193%2018.9655C12.1433%2018.9687%2012.1679%2018.9718%2012.1945%2018.9731C13.6507%2019.0829%2015.0014%2018.8538%2016.0905%2018.3411C15.2566%2018.5702%2014.2932%2018.6599%2013.3108%2018.5859C12.017%2018.4886%2010.8128%2018.1259%209.82853%2017.5379C7.90293%2016.3864%207.23705%2014.8351%206.95213%2014.1731L6.92244%2014.1041C6.4701%2013.1414%206.27362%2012.0269%206.36775%2010.802L6.37912%2010.6501H6.38986C6.60656%208.48514%207.97242%206.6402%209.83169%205.70142C8.7577%206.02773%207.74752%206.55988%206.93191%207.26648ZM13.6785%209.69816C13.645%2010.1299%2013.3841%2011.1201%2011.6777%2010.9915C11.6191%2010.9872%2011.5605%2010.9817%2011.5021%2010.9752C11.6695%2011.3862%2012.1528%2012.1085%2013.4921%2012.2095C15.129%2012.3325%2016.3199%2011.2243%2016.4045%2010.113C16.4166%209.95844%2016.407%209.80301%2016.3761%209.6511C16.366%209.62537%2016.354%209.60152%2016.3432%209.57705C16.3287%209.54567%2016.3154%209.51241%2016.3003%209.48292C16.2877%209.45782%2016.2731%209.4346%2016.2592%209.41012C16.2434%209.38314%2016.2289%209.3549%2016.2125%209.32855C16.1973%209.30533%2016.1809%209.28462%2016.1657%209.26203C16.1487%209.23818%2016.1329%209.21308%2016.1152%209.19049C16.0981%209.16915%2016.0804%209.1497%2016.0627%209.12899C16.0451%209.10828%2016.028%209.08695%2016.0097%209.06749C15.9907%209.04804%2015.9718%209.03047%2015.9528%209.01227C15.9345%208.99407%2015.9162%208.97525%2015.8972%208.9583C15.8783%208.94073%2015.8574%208.92567%2015.8372%208.90936C15.8183%208.89367%2015.7993%208.87735%2015.7797%208.86292C15.7589%208.84723%2015.7374%208.83405%2015.7165%208.81962C15.6976%208.80644%2015.6774%208.79201%2015.6578%208.77946L15.5915%208.7418C15.5725%208.73051%2015.5529%208.71859%2015.5327%208.70792C15.5112%208.69662%2015.4891%208.68658%2015.4676%208.67654C15.4468%208.6665%2015.4272%208.65583%2015.407%208.64705L15.3419%208.62132C15.3217%208.61316%2015.3008%208.60375%2015.2806%208.59622L15.2124%208.57363L15.1555%208.5548C15.1344%208.54844%2015.1131%208.54258%2015.0917%208.53723L15.033%208.52091L14.9786%208.50899L14.9142%208.49456L14.8599%208.48514L14.8011%208.4751C14.7689%208.47008%2014.7379%208.46632%2014.7076%208.46255L14.6944%208.4613C14.5673%208.44649%2014.4393%208.44124%2014.3115%208.44561L14.2433%208.44749C14.1485%208.45126%2014.0537%208.45816%2013.959%208.46946L13.9318%208.47385C13.843%208.48589%2013.7548%208.50117%2013.6671%208.51966L13.6008%208.53409C13.5072%208.55519%2013.4145%208.57989%2013.3228%208.60814L13.2811%208.62257C13.199%208.64893%2013.1187%208.67905%2013.0398%208.71043L12.9816%208.73427L12.9437%208.75247C13.3816%208.86919%2013.7107%209.27395%2013.6785%209.69816ZM13.2369%2013.8436C13.1422%2013.8332%2013.0476%2013.8215%2012.9532%2013.8085V13.8116C10.3504%2013.4633%209.2549%2012.2848%208.79434%2011.358C8.66375%2011.0939%208.56779%2010.8142%208.50879%2010.5259L8.49552%2010.4631C8.49173%2010.4455%208.4892%2010.428%208.48668%2010.411C8.4601%2010.2602%208.44406%2010.1078%208.43866%209.95482C8.30945%2010.3154%208.22935%2010.6915%208.20049%2011.0731C8.02296%2013.3981%209.77799%2015.4325%2012.1142%2015.6082L12.1439%2015.6089C12.1587%2015.6087%2012.1734%2015.6091%2012.1882%2015.6101H12.1945L12.2128%2015.6133C12.343%2015.6257%2012.4737%2015.6311%2012.6045%2015.6296C14.3096%2015.4131%2015.4506%2014.6494%2016.2144%2013.7533C16.4345%2013.4913%2016.6331%2013.2122%2016.8082%2012.9186C16.9163%2012.7354%2017.011%2012.5522%2017.0957%2012.3727C16.6255%2012.9162%2016.0267%2013.3351%2015.3532%2013.5919C14.6796%2013.8486%2013.9524%2013.9351%2013.2369%2013.8436ZM11.1281%2010.7775C11.1805%2010.0948%2011.4837%209.42958%2011.9197%209.04051C11.9194%209.04069%2011.9192%209.0409%2011.919%209.04114C11.919%209.04114%2011.979%208.9878%2011.9948%208.97525C12.638%208.4318%2013.5635%208.11741%2014.4435%208.13812C14.5623%208.14084%2014.6808%208.14985%2014.7986%208.1651C14.8182%208.16761%2014.8371%208.17138%2014.8567%208.17452C14.8953%208.18079%2014.9344%208.18581%2014.9723%208.19334L15.0399%208.20778C15.0734%208.21531%2015.1069%208.22221%2015.1397%208.23037L15.2092%208.24982L15.3002%208.2768C15.3236%208.28433%2015.3463%208.29312%2015.3697%208.30128C15.3975%208.31132%2015.4266%208.32136%2015.4537%208.33265C15.4771%208.34144%2015.4986%208.35148%2015.5213%208.36089C15.5479%208.37282%2015.575%208.38411%2015.6009%208.39666C15.623%208.4067%2015.6439%208.418%2015.6654%208.42929L15.7412%208.46946L15.8025%208.50711L15.853%208.5366C15.3255%207.87644%2014.3987%207.31292%2012.9678%207.20624C11.2734%207.07822%209.79884%207.73964%208.92006%209.01917C8.84299%209.15409%208.78234%209.36055%208.7577%209.61282L8.75517%209.63164L8.75201%209.68498C8.73933%209.89146%208.74907%2010.0987%208.78108%2010.3031C8.82656%2010.5999%208.92006%2010.9181%209.08053%2011.235C9.44063%2011.9472%2010.2126%2012.8044%2011.8495%2013.2688C11.4022%2012.8446%2011.027%2012.096%2011.1281%2010.7775ZM12.8856%205.04376C12.7188%205.03121%2012.5521%205.02494%2012.3865%205.02117H12.341C12.2273%205.01929%2012.1136%205.01866%2012.0012%205.02117L11.8868%205.02494C11.7996%205.02808%2011.7131%205.03121%2011.6265%205.03749C11.5633%205.04125%2011.5002%205.0469%2011.4364%205.05192C11.377%205.05694%2011.3176%205.06134%2011.2595%205.06761C11.171%205.07702%2011.0838%205.08832%2010.9967%205.10024C10.9632%205.10464%2010.9291%205.1084%2010.8956%205.11342C10.7857%205.12974%2010.6776%205.14856%2010.5702%205.16864L10.5342%205.17492C8.43045%205.57842%206.76071%206.72743%205.75621%208.13247C7.05321%205.47362%209.87718%203.7818%2013.089%204.02277L13.1143%204.02654L13.156%204.03156L13.3114%204.04223C14.5762%204.16836%2015.8448%204.68356%2016.8126%205.46735L16.8468%205.49559C18.344%206.72555%2019.1236%208.4751%2018.984%2010.2962C18.7989%2012.7166%2017.1102%2014.6368%2014.7765%2015.3447C15.3577%2015.0216%2015.8788%2014.602%2016.3173%2014.1041C16.6017%2013.791%2016.8527%2013.4497%2017.0666%2013.0856C17.8645%2011.7715%2017.9808%2010.6482%2017.9902%2010.5353C18.0332%2010.2855%2018.0471%2010.123%2018.0496%2010.0885C18.2284%207.75972%2016.3755%205.63427%2013.736%205.1448C13.614%205.12534%2013.3828%205.09459%2013.2299%205.07389V5.0651L13.0764%205.05381C13.0423%205.0513%2013.0082%205.05004%2012.9747%205.04878C12.9452%205.04793%2012.9157%205.04647%2012.8863%205.04439'%20fill='%23E5353E'/%3e%3c/symbol%3e%3csymbol%20id='epidemic-sound'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cg%3e%3cpath%20d='M1.4,14.5c0-0.2,0.1-0.4,0.1-0.6C1.8,13.1,2.3,12.4,3,12c0.3-0.2,0.6-0.3,0.9-0.5c0,0-0.1,0-0.1-0.1%20c-0.6-0.4-0.9-0.9-1-1.6C2.8,9.2,3,8.6,3.4,8.1c0.4-0.6,1-0.9,1.7-1c0.6-0.1,1.2,0,1.8,0.4c0.5,0.4,0.7,1,0.6,1.5%20C7.4,9.3,7.1,9.6,6.8,9.7c0-0.2,0-0.3,0-0.5c0-0.8-0.5-1.3-1.3-1.3c-0.9,0-1.5,0.5-1.6,1.4c-0.2,0.9,0.5,1.8,1.4,1.9%20c0.1,0,0.2,0,0.3,0c0.1,0.2,0,0.4-0.1,0.5c-0.1,0.1-0.3,0.2-0.4,0.3c-0.5,0.3-1,0.5-1.4,0.8c-0.4,0.2-0.7,0.5-0.9,0.9%20c-0.2,0.5-0.3,1.1,0,1.6c0.2,0.6,0.8,0.9,1.4,0.8c0.7-0.1,1.2-0.5,1.7-1c0.1-0.1,0.1-0.2,0.3-0.3c0,0.1,0,0.2,0,0.3%20c0,1-0.7,1.8-1.7,2.1c-0.1,0-0.2,0-0.4,0.1c-0.2,0-0.3,0-0.5,0c-0.1,0-0.1,0-0.2,0c-1-0.2-1.6-0.8-1.8-1.8c0-0.1,0-0.2-0.1-0.3%20C1.4,14.9,1.4,14.7,1.4,14.5z'/%3e%3cpath%20d='M16.9,10.3c0.1-0.1,0.1-0.2,0.2-0.3c0.2-0.2,0.4-0.4,0.7-0.4c0.3,0,0.4,0.1,0.5,0.4c0.1,0.3,0,0.6-0.1,0.9%20c-0.1,0.2-0.1,0.4-0.2,0.6c0,0.1,0,0.1,0,0.2c0,0.2,0.1,0.2,0.2,0.2c0.2-0.1,0.4-0.2,0.5-0.5c0.1-0.5,0.3-1.1,0.4-1.6%20c0-0.1,0.1-0.1,0.2-0.1c0.2,0,0.3,0,0.5-0.1c0,0.1,0,0.1,0,0.2c-0.2,0.6-0.3,1.2-0.5,1.9c0,0.1,0,0.1,0.1,0.2%20c0.2,0,0.5-0.2,0.6-0.4c0,0,0-0.1,0-0.1c-0.1-0.7,0.2-1.3,0.7-1.7C21,9.1,21.3,9,21.6,9C22,9.1,22.1,9.5,22,9.8%20c0,0.1-0.1,0.2-0.3,0.1c-0.1,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.2-0.2-0.3-0.2c-0.1,0-0.1,0-0.2,0.1c-0.3,0.2-0.5,0.7-0.4,1.1%20c0.1,0.4,0.5,0.6,0.8,0.4c0.2-0.1,0.4-0.2,0.5-0.4c0-0.1,0.1-0.1,0.1-0.2c0.2,0.3,0,0.8-0.4,1.1c-0.4,0.3-1.1,0.4-1.5-0.2%20c-0.1,0.1-0.2,0.3-0.3,0.4c-0.2,0.2-0.5,0.3-0.9,0.3c-0.2,0-0.3-0.1-0.5-0.3c0,0,0,0.1-0.1,0.1c-0.2,0.2-0.4,0.3-0.7,0.4%20c-0.4,0.1-0.6-0.2-0.6-0.5c0.1-0.3,0.2-0.6,0.2-0.9c0-0.1,0-0.2,0.1-0.4c0-0.2-0.1-0.3-0.3-0.2c-0.1,0.1-0.2,0.2-0.3,0.3%20c-0.1,0.3-0.2,0.7-0.3,1c-0.1,0.2-0.1,0.5-0.2,0.7c0,0,0,0.1-0.1,0.1c-0.2,0-0.4,0-0.6,0.1c0,0,0-0.1,0-0.1c0.1-0.5,0.2-1,0.4-1.5%20c0-0.1,0-0.1,0-0.2c0-0.2-0.1-0.3-0.3-0.2c-0.1,0-0.1,0.1-0.2,0.2c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.2,0.7-0.3,1%20c0,0.1,0,0.1-0.1,0.1c-0.2,0-0.3,0-0.5,0.1c0-0.1,0.1-0.3,0.1-0.4c-0.1,0.1-0.2,0.1-0.3,0.2C14,12.8,13.6,13,13.1,13%20c-0.4,0-0.7-0.1-0.9-0.4c0,0.1-0.1,0.1-0.1,0.1c-0.2,0.2-0.4,0.5-0.7,0.5c-0.3,0.1-0.5,0-0.6-0.3c0,0-0.1,0.1-0.1,0.1%20c-0.2,0.2-0.4,0.3-0.6,0.3c-0.3,0-0.5-0.1-0.6-0.4c0,0,0,0.1-0.1,0.1c-0.2,0.3-0.6,0.5-1,0.4c-0.1,0-0.3-0.1-0.3-0.2c0,0,0,0,0,0%20c-0.2,0.2-0.5,0.3-0.7,0.3c-0.3,0-0.7,0.1-1,0.2c0,0-0.1,0-0.1,0c0-0.1,0-0.3,0.1-0.4c0.1-0.2,0.2-0.3,0.3-0.4%20c0.2-0.3,0.4-0.5,0.5-0.8c0-0.1,0-0.2,0-0.3c0-0.2-0.2-0.2-0.4-0.1c-0.2,0.1-0.3,0.3-0.3,0.4c-0.2,0.5-0.4,1.1-0.6,1.6%20c-0.1,0.3-0.2,0.6-0.3,1c-0.1,0.3-0.3,0.4-0.6,0.5c-0.1,0-0.1,0-0.2,0c0-0.1,0-0.1,0-0.2c0.4-1.3,0.9-2.6,1.3-3.9%20C6,11.1,6,11,6.1,11c0.2,0,0.4,0,0.6-0.1c0,0.1,0,0.1-0.1,0.2c0,0,0.1,0,0.1-0.1C6.9,11,7,10.9,7.1,10.9c0.4-0.2,0.8,0.1,0.8,0.5%20c0,0.6-0.2,1-0.5,1.4c-0.1,0.1-0.2,0.2-0.3,0.3c0.4,0.1,0.9-0.1,1-0.5c0.1-0.3,0.2-0.6,0.3-1c0.1-0.3,0.2-0.6,0.2-0.9%20c0-0.1,0-0.1,0.1-0.1c0.2,0,0.4,0,0.5-0.1c-0.1,0.5-0.3,1-0.4,1.5c0,0.2-0.1,0.4-0.1,0.5c0,0.1,0,0.1,0.1,0.1c0.1,0,0.1,0,0.2,0%20c0.2-0.1,0.4-0.2,0.5-0.5c0.1-0.5,0.2-1,0.5-1.4c0.2-0.3,0.4-0.5,0.8-0.6c0.2,0,0.4,0,0.6,0.1c0.1-0.3,0.1-0.6,0.2-1%20c-0.2,0-0.3,0-0.5,0c-0.3,0-0.6-0.1-0.9-0.2C9.9,9,9.7,8.7,9.7,8.2c0.1-0.5,0.4-0.9,0.9-0.9c0.4-0.1,0.9,0,1.2,0.3%20c0.3,0.3,0.4,0.6,0.4,1c0,0.1,0,0.2,0,0.3c2.4-0.3,4.6-1,6.7-2.1c0,0.4-0.1,0.8-0.4,1.1c-0.3,0.3-0.7,0.4-1.1,0.6%20C16.7,8.8,16,9,15.3,9.1c-1,0.2-2,0.3-3,0.3c-0.1,0-0.1,0-0.1,0.1c-0.2,0.9-0.5,1.9-0.7,2.8c0,0.1,0,0.2,0.1,0.2c0.1,0,0.1,0,0.2,0%20c0.2-0.1,0.4-0.3,0.4-0.6c0.1-0.5,0.2-1,0.6-1.4c0.3-0.3,0.6-0.5,1.1-0.5c0.4,0,0.7,0.3,0.7,0.7c0,0.6-0.2,0.9-0.8,1.1%20c-0.2,0.1-0.5,0.1-0.7,0.2c-0.1,0-0.1,0-0.1,0.1c0,0.2,0.2,0.4,0.4,0.4c0.6,0,1.4-0.4,1.5-1c0.1-0.4,0.2-0.9,0.4-1.4%20c0-0.1,0.1-0.2,0.2-0.2c0.2,0,0.3,0,0.5-0.1c0,0.1,0,0.2-0.1,0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.1,0.3-0.2%20c0.2-0.1,0.5,0.1,0.5,0.3C16.8,10.1,16.8,10.2,16.9,10.3z%20M11.7,8.9c0-0.1,0-0.2,0-0.3c-0.1-0.4-0.4-0.7-0.7-0.7%20c-0.4,0-0.6,0.2-0.6,0.5c0,0.2,0.2,0.3,0.3,0.4C10.9,8.9,11.3,8.9,11.7,8.9z%20M11.2,11.1c-0.2-0.1-0.4,0-0.6,0.1%20c-0.2,0.2-0.4,0.4-0.5,0.7c0,0.2-0.1,0.3,0,0.5c0.1,0.2,0.3,0.3,0.4,0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.2,0.2-0.5,0.2-0.7%20C11.1,11.4,11.1,11.3,11.2,11.1z%20M12.9,11.6c0.3-0.1,0.5-0.1,0.7-0.3c0.1-0.1,0.2-0.2,0.2-0.3c0-0.1-0.1-0.2-0.2-0.2%20c-0.1,0-0.1,0-0.2,0C13.1,10.9,13,11.2,12.9,11.6z'/%3e%3cpath%20d='M6.1,16.9c0-0.3,0.1-0.6,0.2-0.8c0.3-0.7,0.8-1.2,1.6-1.5c0.7-0.3,1.4-0.4,2.1-0.5c0.7-0.1,1.4-0.2,2.1-0.3%20c0.6-0.1,1.2-0.1,1.8-0.2c0.8,0,1.6-0.1,2.4-0.1c0,0,0,0,0.1,0c0-0.2,0-0.4,0.2-0.6c0.2-0.2,0.5-0.2,0.8-0.1%20c0.2,0.1,0.3,0.3,0.2,0.5c0,0.2-0.1,0.3-0.3,0.4c0,0-0.1,0-0.1,0c0.1,0.2,0.2,0.4,0.1,0.6c-0.1,0.5-0.6,0.8-1.1,0.5%20c-0.2-0.1-0.3-0.4-0.1-0.6c0.1,0.1,0.1,0.2,0.3,0.3c0.1,0,0.3,0,0.4-0.1c0.1-0.1,0.2-0.3,0-0.4c-0.1-0.1-0.2-0.2-0.4-0.2%20c-1.3,0.2-2.6,0.4-3.9,0.6c-1.7,0.4-3.3,0.8-4.8,1.5c-0.5,0.2-0.9,0.4-1.3,0.7C6.3,16.8,6.2,16.8,6.1,16.9z%20M17.1,13.1%20c-0.1,0-0.3,0.1-0.3,0.2c0,0.1,0.1,0.3,0.2,0.3c0.1,0,0.3-0.2,0.3-0.3C17.3,13.2,17.2,13.1,17.1,13.1z'/%3e%3cpath%20d='M20.6,12.9c0.1,0,0.2-0.1,0.3-0.1c0.1,0,0.2,0,0.2,0.2c0,0.2-0.1,0.3-0.1,0.4c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0.1,0.1%20c0.1,0,0.2-0.1,0.2-0.2c0-0.3,0.2-0.5,0.4-0.7c0.1-0.1,0.3-0.2,0.4-0.2c0.1,0,0.1,0,0.1-0.1c0-0.2,0.1-0.3,0.1-0.5%20c0.1-0.2,0.1-0.2,0.4-0.2c-0.1,0.2-0.1,0.5-0.2,0.7c-0.1,0.4-0.2,0.8-0.3,1.2c0,0.1,0,0.1-0.1,0.1c-0.1,0-0.1,0-0.2,0%20c-0.3,0.2-0.4,0.2-0.6-0.1c0,0-0.1,0.1-0.1,0.1c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0-0.2-0.1-0.2-0.2c0-0.2,0-0.3,0.1-0.5%20c0-0.1,0-0.2,0-0.2c0,0-0.1,0.1-0.2,0.1c-0.1,0.1-0.1,0.3-0.2,0.5c0,0,0,0.1,0,0.1c-0.1,0.3-0.1,0.3-0.4,0.3c0,0,0-0.1,0-0.1%20c-0.1,0-0.2,0.1-0.2,0.1c-0.1,0-0.2,0-0.2-0.1c0,0-0.1,0.1-0.1,0.1c-0.1,0-0.1,0.1-0.2,0.1c-0.3,0.1-0.4-0.1-0.4-0.3%20c0,0,0-0.1,0-0.1c-0.1,0.1-0.2,0.1-0.2,0.2c-0.1,0.1-0.1,0.2-0.2,0.2c-0.1,0.1-0.3,0.2-0.5,0.2c-0.2,0-0.3-0.1-0.3-0.3%20c-0.1-0.4,0.3-0.9,0.6-1c0.3-0.1,0.5,0.1,0.5,0.4c0,0.1,0,0.1,0,0.2c0.1,0,0.2-0.1,0.2-0.2c0-0.1,0.1-0.2,0.1-0.3%20c0-0.1,0-0.1,0.1-0.1c0.1,0,0.2,0,0.2,0c-0.1,0.2-0.1,0.4-0.1,0.6c0,0.1,0,0.2,0,0.2c0,0,0,0.1,0,0.1c0,0,0.1,0,0.1,0%20c0-0.1,0.1-0.1,0.1-0.2c0.1-0.2,0.1-0.4,0.2-0.6c0-0.1,0-0.1,0.1-0.1c0.1,0,0.1,0,0.2,0c0,0.1-0.1,0.2-0.1,0.3%20c0,0.2-0.1,0.4-0.1,0.5c0,0,0,0.1,0,0.1c0,0,0.1,0,0.1,0c0.1-0.1,0.2-0.2,0.2-0.3c0-0.2,0.1-0.4,0.1-0.6c0-0.1,0.1-0.1,0.1-0.1%20C20.4,12.9,20.4,12.9,20.6,12.9C20.5,12.9,20.5,12.9,20.6,12.9z%20M18.1,13.5C18.1,13.5,18.1,13.5,18.1,13.5c-0.2,0-0.4,0.3-0.3,0.5%20c0,0.1,0.1,0.2,0.2,0.1c0.2-0.1,0.2-0.2,0.3-0.4C18.3,13.6,18.2,13.5,18.1,13.5z%20M22,13c-0.1,0-0.1,0-0.2,0%20c-0.2,0.1-0.3,0.3-0.3,0.5c0,0,0,0.1,0.1,0.1c0.1,0,0.2-0.1,0.2-0.2C21.9,13.3,21.9,13.2,22,13z'/%3e%3cpath%20d='M20.2,8.4c0,0.3-0.3,0.7-0.7,0.7c-0.2,0-0.3-0.1-0.3-0.3c0-0.3,0.3-0.8,0.6-0.8C20.1,8.1,20.2,8.2,20.2,8.4z'/%3e%3cpath%20d='M9.7,9.7c0,0.3-0.3,0.7-0.6,0.7c-0.2,0-0.3-0.1-0.3-0.3c0-0.3,0.3-0.7,0.6-0.7C9.5,9.3,9.7,9.5,9.7,9.7z'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='epidemic_sound_circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23213139'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.71302%206.5761C4.10105%2010.0061%204.09644%2015.5656%207.69457%2019H13.3086L10.5177%2016.3511C8.4511%2014.3874%208.4511%2011.2062%2010.5177%209.24242C12.5843%207.27868%2015.9334%207.27868%2018%209.24242V4.74765C14.6048%203.32503%2010.4947%203.9316%207.71302%206.5761ZM17.9993%209.24238V15.3867H11.5319L17.9993%209.24238Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='error'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%2014V7M12%2017.5V17M19.0711%204.92894C22.9763%208.83419%2022.9763%2015.1658%2019.0711%2019.0711C15.1658%2022.9763%208.83416%2022.9763%204.92894%2019.0711C1.02369%2015.1658%201.02369%208.83416%204.92894%204.92894C8.83418%201.02369%2015.1658%201.02369%2019.0711%204.92894Z'%20stroke='currentColor'%20fill='none'%20stroke-miterlimit='10'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='ethereum_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23E1EDFF'/%3e%3cpath%20d='M11.9983%2010.4625V5L7.5%2012.523L11.9983%2010.4625Z'%20fill='%238A92B2'/%3e%3cpath%20d='M11.9983%2015.2034V10.4625L7.5%2012.523L11.9983%2015.2034ZM11.9983%2010.4625L16.4974%2012.523L11.9983%205V10.4625Z'%20fill='%2362688F'/%3e%3cpath%20d='M11.998%2010.4625V15.2034L16.4972%2012.523L11.998%2010.4625Z'%20fill='%23454A75'/%3e%3cpath%20d='M11.9983%2016.0619L7.5%2013.3831L11.9983%2019.7721V16.0619Z'%20fill='%238A92B2'/%3e%3cpath%20d='M16.4997%2013.3831L11.998%2016.0619V19.7721L16.4997%2013.3831Z'%20fill='%2362688F'/%3e%3c/symbol%3e%3csymbol%20id='event'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M17%2012h-5v5h5v-5zM16%201v2H8V1H6v2H5c-1.11%200-1.99.9-1.99%202L3%2019c0%201.1.89%202%202%202h14c1.1%200%202-.9%202-2V5c0-1.1-.9-2-2-2h-1V1h-2zm3%2018H5V8h14v11z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='event_alt'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9%2011H7v2h2v-2zm4%200h-2v2h2v-2zm4%200h-2v2h2v-2zm2-7h-1V2h-2v2H8V2H6v2H5c-1.11%200-1.99.9-1.99%202L3%2020c0%201.1.89%202%202%202h14c1.1%200%202-.9%202-2V6c0-1.1-.9-2-2-2zm0%2016H5V9h14v11z'/%3e%3cpath%20fill='none'%20d='M0%200h24v24H0z'/%3e%3c/symbol%3e%3csymbol%20id='exit_to_app'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M10.09%2015.59L11.5%2017l5-5-5-5-1.41%201.41L12.67%2011H3v2h9.67l-2.58%202.59zM19%203H5c-1.11%200-2%20.9-2%202v4h2V5h14v14H5v-4H3v4c0%201.1.89%202%202%202h14c1.1%200%202-.9%202-2V5c0-1.1-.9-2-2-2z'/%3e%3c/symbol%3e%3csymbol%20id='explicit'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M19%203H5c-1.1%200-2%20.9-2%202v14c0%201.1.9%202%202%202h14c1.1%200%202-.9%202-2V5c0-1.1-.9-2-2-2zm-4%206h-4v2h4v2h-4v2h4v2H9V7h6v2z'/%3e%3c/symbol%3e%3csymbol%20id='export'%20viewBox='0%200%2020%2020'%3e%3cpath%20d='M6.66665%207.5H4.99998C4.07915%207.5%203.33331%208.24583%203.33331%209.16667V15C3.33331%2015.9208%204.07915%2016.6667%204.99998%2016.6667H15C15.9208%2016.6667%2016.6666%2015.9208%2016.6666%2015V9.16667C16.6666%208.24583%2015.9208%207.5%2015%207.5H13.3333'%20stroke='currentColor'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10%201.66797V10.8346'%20stroke='currentColor'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.50085%204.16797L10%201.66797L12.5%204.16797'%20stroke='currentColor'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='export_all'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16%2010H18C18.5304%2010%2019.0391%2010.2107%2019.4142%2010.5858C19.7893%2010.9609%2020%2011.4696%2020%2012V19C20%2019.5304%2019.7893%2020.0391%2019.4142%2020.4142C19.0391%2020.7893%2018.5304%2021%2018%2021H10C9.46957%2021%208.96086%2020.7893%208.58579%2020.4142C8.21071%2020.0391%208%2019.5304%208%2019V17'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.5%204.5L10%202L7.5%204.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10%2011V2'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13%207H14C14.5304%207%2015.0391%207.21071%2015.4142%207.58579C15.7893%207.96086%2016%208.46957%2016%209V15C16%2015.5304%2015.7893%2016.0391%2015.4142%2016.4142C15.0391%2016.7893%2014.5304%2017%2014%2017H6C5.46957%2017%204.96086%2016.7893%204.58579%2016.4142C4.21071%2016.0391%204%2015.5304%204%2015V9C4%208.46957%204.21071%207.96086%204.58579%207.58579C4.96086%207.21071%205.46957%207%206%207H7'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='express_payment'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16.8736%2011.9165C16.9531%2011.7856%2016.9966%2011.6356%2016.9998%2011.482C17.003%2011.3284%2016.9657%2011.1767%2016.8917%2011.0425C16.8178%2010.9084%2016.7098%2010.7967%2016.5791%2010.7189C16.4483%2010.6411%2016.2994%2010.6001%2016.1477%2010.6H13.2501V3L7.12653%2013.0844C7.04701%2013.2152%207.0034%2013.3651%207.00019%2013.5187C6.99698%2013.6723%207.0343%2013.824%207.10829%2013.9581C7.18227%2014.0922%207.29025%2014.2039%207.42106%2014.2816C7.55187%2014.3592%207.70078%2014.4001%207.8524%2014.4H10.75V22L16.8736%2011.9165Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='face'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9%2011.75c-.69%200-1.25.56-1.25%201.25s.56%201.25%201.25%201.25%201.25-.56%201.25-1.25-.56-1.25-1.25-1.25zm6%200c-.69%200-1.25.56-1.25%201.25s.56%201.25%201.25%201.25%201.25-.56%201.25-1.25-.56-1.25-1.25-1.25zM12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm0%2018c-4.41%200-8-3.59-8-8%200-.29.02-.58.05-.86%202.36-1.05%204.23-2.98%205.21-5.37C11.07%208.33%2014.05%2010%2017.42%2010c.78%200%201.53-.09%202.25-.26.21.71.33%201.47.33%202.26%200%204.41-3.59%208-8%208z'/%3e%3cpath%20fill='none'%20d='M0%200h24v24H0z'/%3e%3c/symbol%3e%3csymbol%20id='face_alt'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M11.99%202C6.47%202%202%206.48%202%2012s4.47%2010%209.99%2010C17.52%2022%2022%2017.52%2022%2012S17.52%202%2011.99%202zM12%2020c-4.42%200-8-3.58-8-8s3.58-8%208-8%208%203.58%208%208-3.58%208-8%208zm3.5-9c.83%200%201.5-.67%201.5-1.5S16.33%208%2015.5%208%2014%208.67%2014%209.5s.67%201.5%201.5%201.5zm-7%200c.83%200%201.5-.67%201.5-1.5S9.33%208%208.5%208%207%208.67%207%209.5%207.67%2011%208.5%2011zm3.5%206.5c2.33%200%204.31-1.46%205.11-3.5H6.89c.8%202.04%202.78%203.5%205.11%203.5z'/%3e%3c/symbol%3e%3csymbol%20id='facebook'%20viewBox='0%200%2032%2033'%3e%3cpath%20d='M18.1%2028.5V17.6H21.8L22.4%2013.3H18.2V10.6C18.1%209.3%2018.4%208.5%2020.2%208.5H22.5V4.7C22%204.6%2020.7%204.5%2019.1%204.5C15.8%204.5%2013.6%206.5%2013.6%2010.1V13.2H10V17.5H13.7V28.5H18.1Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='facebook_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%234267B2'/%3e%3cpath%20d='M12.8015%2019.9999V12.7016H15.2513L15.618%209.85726H12.8015V8.04126C12.8015%207.21779%2013.0302%206.65655%2014.2111%206.65655L15.7173%206.65585V4.11195C15.4567%204.07742%2014.5627%204%2013.5226%204C11.351%204%209.86432%205.32545%209.86432%207.75971V9.85733H7.4082V12.7016H9.86424V20L12.8015%2019.9999Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='fast'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M10%202H14'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9%2010L12%2013'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M20.0002%205L17.6602%207.34'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19%204L21%206'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M3%2015H8'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M8%2018H5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M8%2021H7'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M4.26758%2011C5.15558%207.552%208.27358%205%2011.9996%205C16.4176%205%2019.9996%208.582%2019.9996%2013C19.9996%2017.418%2016.4176%2021%2011.9996%2021'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='favorite'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M12%2021.35l-1.45-1.32C5.4%2015.36%202%2012.28%202%208.5%202%205.42%204.42%203%207.5%203c1.74%200%203.41.81%204.5%202.09C13.09%203.81%2014.76%203%2016.5%203%2019.58%203%2022%205.42%2022%208.5c0%203.78-3.4%206.86-8.55%2011.54L12%2021.35z'/%3e%3c/symbol%3e%3csymbol%20id='file'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M6%202c-1.1%200-1.99.9-1.99%202L4%2020c0%201.1.89%202%201.99%202H18c1.1%200%202-.9%202-2V8l-6-6H6zm7%207V3.5L18.5%209H13z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='file_add'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M18%2010V7.828C18%207.298%2017.789%206.789%2017.414%206.414L14.586%203.586C14.211%203.211%2013.702%203%2013.172%203H6C4.895%203%204%203.895%204%205V19C4%2020.105%204.895%2021%206%2021H10M18%208H14C13.448%208%2013%207.552%2013%207V3M16.5%2015.705V19.294M18.295%2017.5H14.706M16.5%2022C14.015%2022%2012%2019.985%2012%2017.5C12%2015.015%2014.015%2013%2016.5%2013C18.986%2013%2021%2015.015%2021%2017.5C21%2019.985%2018.986%2022%2016.5%2022Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='file_copy'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0%200h24v24H0z'/%3e%3cpath%20d='M16%201H4c-1.1%200-2%20.9-2%202v14h2V3h12V1zm-1%204l6%206v10c0%201.1-.9%202-2%202H7.99C6.89%2023%206%2022.1%206%2021l.01-14c0-1.1.89-2%201.99-2h7zm-1%207h5.5L14%206.5V12z'/%3e%3c/symbol%3e%3csymbol%20id='file_download'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M14,2H6C4.89,2%204,2.89%204,4V20C4,21.11%204.89,22%206,22H18C19.11,22%2020,21.11%2020,20V8L14,2M12,19L8,15H10.5V12H13.5V15H16L12,19M13,9V3.5L18.5,9H13Z'/%3e%3c/symbol%3e%3csymbol%20id='file_export'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19%208H15C14.448%208%2014%207.552%2014%207V3M19%208C19%207.469%2018.789%206.789%2018.414%206.414L15.586%203.586C15.211%203.211%2014.531%203%2014%203M19%208V13M14%203H7C5.895%203%205%203.895%205%205V19C5%2020.105%205.895%2021%207%2021H11M15%2017L19%2021M19%2021H15M19%2021V17'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='file_eye'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19%2011V5C19%203.895%2018.105%203%2017%203H5C3.895%203%203%203.895%203%205V18C3%2019.105%203.895%2020%205%2020H11M7%2011H13M7%207H15M7%2015H9M13.767%2017.691C13.493%2017.275%2013.493%2016.727%2013.767%2016.311C14.615%2015.028%2015.947%2014%2017.28%2014C18.613%2014%2019.944%2015.028%2020.793%2016.31C21.068%2016.726%2021.068%2017.275%2020.793%2017.69C19.943%2018.972%2018.612%2020%2017.28%2020C15.947%2020.001%2014.615%2018.973%2013.767%2017.691ZM17.8%2017C17.8%2017.2761%2017.5762%2017.5%2017.3%2017.5C17.0239%2017.5%2016.8%2017.2761%2016.8%2017C16.8%2016.7239%2017.0239%2016.5%2017.3%2016.5C17.5762%2016.5%2017.8%2016.7239%2017.8%2017Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='bevel'/%3e%3c/symbol%3e%3csymbol%20id='file_import'%20viewBox='0%200%2016%2016'%3e%3cpath%20d='M8.66602%2014H11.3327C11.8631%2014%2012.3718%2013.7893%2012.7469%2013.4142C13.122%2013.0391%2013.3327%2012.5304%2013.3327%2012V5.67287C13.3327%205.14244%2013.122%204.63374%2012.7469%204.25867L11.074%202.58579C10.6989%202.21072%2010.1902%202%209.65981%202H4.66602C4.13558%202%203.62687%202.21071%203.2518%202.58579C2.87673%202.96086%202.66602%203.46957%202.66602%204V8'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13.3327%205.66667H10.9993C10.6457%205.66667%2010.3066%205.52619%2010.0565%205.27614C9.80649%205.02609%209.66602%204.68696%209.66602%204.33333V2'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M3.33398%2013.3334L6.00065%2010.6667'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M4%2010.6667H6'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M6%2012.6667V10.6667'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='file_new'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M8%2011H14M8%2014H14M8%2017H12.33M14%203C14.53%203%2015.211%203.211%2015.586%203.586L18.414%206.414C18.789%206.789%2019%207.47%2019%208M14%203H7C5.895%203%205%203.895%205%205V19C5%2020.105%205.895%2021%207%2021H17C18.105%2021%2019%2020.105%2019%2019V8M14%203V7C14%207.552%2014.448%208%2015%208H19'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='filter_list'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M21%207H3M18%2012H6M14%2017H10'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='find_in_page'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M20%2019.59V8l-6-6H6c-1.1%200-1.99.9-1.99%202L4%2020c0%201.1.89%202%201.99%202H18c.45%200%20.85-.15%201.19-.4l-4.43-4.43c-.8.52-1.74.83-2.76.83-2.76%200-5-2.24-5-5s2.24-5%205-5%205%202.24%205%205c0%201.02-.31%201.96-.83%202.75L20%2019.59zM9%2013c0%201.66%201.34%203%203%203s3-1.34%203-3-1.34-3-3-3-3%201.34-3%203z'/%3e%3c/symbol%3e%3csymbol%20id='fire'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M11.562%203.11095C11.3782%203.01628%2011.1678%202.98085%2010.9616%203.00985C10.7555%203.03884%2010.5643%203.13073%2010.416%203.27211C10.2677%203.41349%2010.1701%203.59695%2010.1374%203.79571C10.1047%203.99447%2010.1387%204.19813%2010.2343%204.37694C10.8017%205.45078%2011.1001%206.63839%2011.1052%207.84405C11.1104%209.0497%2010.8222%2010.2397%2010.2639%2011.318C10.2469%2011.3474%2010.2219%2011.3718%2010.1917%2011.3887C10.1614%2011.4056%2010.127%2011.4143%2010.0921%2011.4139C10.0572%2011.4135%2010.0231%2011.404%209.99324%2011.3865C9.96341%2011.369%209.93903%2011.344%209.92264%2011.3142C9.71647%2010.9432%209.56903%2010.5444%209.48526%2010.1312C9.46498%2010.0362%209.41989%209.94782%209.35427%209.8744C9.28866%209.80098%209.2047%209.74498%209.11037%209.71174C9.0161%209.67837%208.9145%209.6691%208.81542%209.68483C8.71635%209.70056%208.62316%209.74076%208.54491%209.80152C7.45179%2010.6435%206.6559%2011.7922%206.26689%2013.0894C5.87788%2014.3866%205.91491%2015.7683%206.37287%2017.0443C6.80521%2018.2454%207.62834%2019.2791%208.71922%2019.9909C9.81011%2020.7027%2011.1102%2021.0543%2012.4251%2020.9932C15.728%2020.9932%2018.0375%2019.3749%2018.7639%2016.5555C19.8409%2012.3931%2017.1979%205.99601%2011.562%203.11095ZM15.2617%2016.5992C15.1678%2017.2231%2014.8333%2017.7897%2014.3252%2018.1855C13.8171%2018.5813%2013.173%2018.7771%2012.5219%2018.7336C11.8968%2018.7338%2011.2915%2018.5214%2010.8124%2018.1336C10.3332%2017.7458%2010.0108%2017.2074%209.90155%2016.6128C9.8901%2016.5512%209.89469%2016.4878%209.91491%2016.4284C9.93512%2016.3689%209.97033%2016.3153%2010.0174%2016.2723C10.0644%2016.2292%2010.1218%2016.1982%2010.1843%2016.1819C10.2468%2016.1656%2010.3126%2016.1646%2010.3756%2016.179C10.7671%2016.173%2011.1508%2016.0725%2011.4918%2015.8867C11.8329%2015.7009%2012.1204%2015.4357%2012.3282%2015.1152C12.5663%2014.8718%2012.7264%2014.567%2012.7891%2014.2377C12.8519%2013.9084%2012.8147%2013.5686%2012.682%2013.2592C12.6429%2013.1918%2012.6261%2013.1144%2012.634%2013.0375C12.6419%2012.9606%2012.674%2012.8879%2012.7261%2012.8292C12.7781%2012.7705%2012.8476%2012.7287%2012.9251%2012.7094C13.0025%2012.6901%2013.0843%2012.6942%2013.1592%2012.7213C13.9063%2013.0497%2014.5186%2013.6093%2014.8994%2014.3117C15.2803%2015.014%2015.4077%2015.819%2015.2617%2016.5992V16.5992Z'%20stroke='currentColor'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='fire_colored'%20viewBox='0%200%2024%2024'%3e%3cmask%20id='path-1-outside-1'%20maskUnits='userSpaceOnUse'%20x='5'%20y='2'%20width='16'%20height='20'%20fill='black'%3e%3crect%20fill='white'%20x='5'%20y='2'%20width='16'%20height='20'/%3e%3cpath%20d='M11.562%203.11095C11.3782%203.01628%2011.1678%202.98085%2010.9616%203.00985C10.7555%203.03884%2010.5643%203.13073%2010.416%203.27211C10.2677%203.41349%2010.1701%203.59695%2010.1374%203.79571C10.1047%203.99447%2010.1387%204.19813%2010.2343%204.37694C10.8017%205.45078%2011.1001%206.63839%2011.1052%207.84405C11.1104%209.0497%2010.8222%2010.2397%2010.2639%2011.318C10.2469%2011.3474%2010.2219%2011.3718%2010.1917%2011.3887C10.1614%2011.4056%2010.127%2011.4143%2010.0921%2011.4139C10.0572%2011.4135%2010.0231%2011.404%209.99324%2011.3865C9.96341%2011.369%209.93903%2011.344%209.92264%2011.3142C9.71646%2010.9432%209.56903%2010.5444%209.48526%2010.1312C9.46498%2010.0362%209.41989%209.94782%209.35427%209.8744C9.28866%209.80098%209.2047%209.74498%209.11037%209.71174C9.0161%209.67837%208.9145%209.6691%208.81542%209.68483C8.71635%209.70056%208.62316%209.74076%208.54491%209.80152C7.45179%2010.6435%206.6559%2011.7922%206.26689%2013.0894C5.87788%2014.3865%205.91491%2015.7683%206.37287%2017.0443C6.80521%2018.2454%207.62834%2019.2791%208.71922%2019.9909C9.81011%2020.7027%2011.1102%2021.0543%2012.4251%2020.9932C15.728%2020.9932%2018.0375%2019.3749%2018.7639%2016.5555C19.8409%2012.3931%2017.1979%205.99601%2011.562%203.11095ZM15.2617%2016.5992C15.1678%2017.2231%2014.8333%2017.7897%2014.3252%2018.1855C13.8171%2018.5813%2013.173%2018.7771%2012.5219%2018.7336C11.8968%2018.7338%2011.2915%2018.5214%2010.8124%2018.1336C10.3332%2017.7458%2010.0108%2017.2074%209.90155%2016.6128C9.8901%2016.5512%209.89469%2016.4878%209.91491%2016.4284C9.93512%2016.3689%209.97033%2016.3153%2010.0174%2016.2723C10.0644%2016.2292%2010.1218%2016.1982%2010.1843%2016.1819C10.2468%2016.1656%2010.3126%2016.1646%2010.3756%2016.179C10.7671%2016.173%2011.1508%2016.0725%2011.4918%2015.8867C11.8329%2015.7009%2012.1204%2015.4357%2012.3282%2015.1152C12.5663%2014.8718%2012.7264%2014.567%2012.7891%2014.2377C12.8519%2013.9084%2012.8147%2013.5686%2012.682%2013.2592C12.6429%2013.1918%2012.6261%2013.1144%2012.634%2013.0375C12.6419%2012.9606%2012.674%2012.8879%2012.7261%2012.8292C12.7781%2012.7705%2012.8476%2012.7287%2012.9251%2012.7094C13.0025%2012.6901%2013.0843%2012.6942%2013.1592%2012.7213C13.9063%2013.0497%2014.5186%2013.6093%2014.8994%2014.3117C15.2803%2015.014%2015.4077%2015.819%2015.2617%2016.5992Z'/%3e%3c/mask%3e%3cpath%20d='M11.562%203.11095C11.3782%203.01628%2011.1678%202.98085%2010.9616%203.00985C10.7555%203.03884%2010.5643%203.13073%2010.416%203.27211C10.2677%203.41349%2010.1701%203.59695%2010.1374%203.79571C10.1047%203.99447%2010.1387%204.19813%2010.2343%204.37694C10.8017%205.45078%2011.1001%206.63839%2011.1052%207.84405C11.1104%209.0497%2010.8222%2010.2397%2010.2639%2011.318C10.2469%2011.3474%2010.2219%2011.3718%2010.1917%2011.3887C10.1614%2011.4056%2010.127%2011.4143%2010.0921%2011.4139C10.0572%2011.4135%2010.0231%2011.404%209.99324%2011.3865C9.96341%2011.369%209.93903%2011.344%209.92264%2011.3142C9.71646%2010.9432%209.56903%2010.5444%209.48526%2010.1312C9.46498%2010.0362%209.41989%209.94782%209.35427%209.8744C9.28866%209.80098%209.2047%209.74498%209.11037%209.71174C9.0161%209.67837%208.9145%209.6691%208.81542%209.68483C8.71635%209.70056%208.62316%209.74076%208.54491%209.80152C7.45179%2010.6435%206.6559%2011.7922%206.26689%2013.0894C5.87788%2014.3865%205.91491%2015.7683%206.37287%2017.0443C6.80521%2018.2454%207.62834%2019.2791%208.71922%2019.9909C9.81011%2020.7027%2011.1102%2021.0543%2012.4251%2020.9932C15.728%2020.9932%2018.0375%2019.3749%2018.7639%2016.5555C19.8409%2012.3931%2017.1979%205.99601%2011.562%203.11095ZM15.2617%2016.5992C15.1678%2017.2231%2014.8333%2017.7897%2014.3252%2018.1855C13.8171%2018.5813%2013.173%2018.7771%2012.5219%2018.7336C11.8968%2018.7338%2011.2915%2018.5214%2010.8124%2018.1336C10.3332%2017.7458%2010.0108%2017.2074%209.90155%2016.6128C9.8901%2016.5512%209.89469%2016.4878%209.91491%2016.4284C9.93512%2016.3689%209.97033%2016.3153%2010.0174%2016.2723C10.0644%2016.2292%2010.1218%2016.1982%2010.1843%2016.1819C10.2468%2016.1656%2010.3126%2016.1646%2010.3756%2016.179C10.7671%2016.173%2011.1508%2016.0725%2011.4918%2015.8867C11.8329%2015.7009%2012.1204%2015.4357%2012.3282%2015.1152C12.5663%2014.8718%2012.7264%2014.567%2012.7891%2014.2377C12.8519%2013.9084%2012.8147%2013.5686%2012.682%2013.2592C12.6429%2013.1918%2012.6261%2013.1144%2012.634%2013.0375C12.6419%2012.9606%2012.674%2012.8879%2012.7261%2012.8292C12.7781%2012.7705%2012.8476%2012.7287%2012.9251%2012.7094C13.0025%2012.6901%2013.0843%2012.6942%2013.1592%2012.7213C13.9063%2013.0497%2014.5186%2013.6093%2014.8994%2014.3117C15.2803%2015.014%2015.4077%2015.819%2015.2617%2016.5992Z'%20fill='%23F5563D'/%3e%3cpath%20d='M11.562%203.11095L11.1042%204L11.1063%204.0011L11.562%203.11095ZM10.2343%204.37694L11.1184%203.90971L11.1161%203.90544L10.2343%204.37694ZM10.2639%2011.318L11.1286%2011.8204L11.1408%2011.7994L11.152%2011.7777L10.2639%2011.318ZM9.99324%2011.3865L9.48634%2012.2485L9.99324%2011.3865ZM9.92264%2011.3142L10.7988%2010.8321L10.7967%2010.8285L9.92264%2011.3142ZM9.48526%2010.1312L10.4654%209.93253L10.4632%209.92239L9.48526%2010.1312ZM9.11037%209.71174L8.77672%2010.6544L8.77794%2010.6549L9.11037%209.71174ZM8.54491%209.80152L9.15512%2010.5938L9.15817%2010.5914L8.54491%209.80152ZM6.37287%2017.0443L5.43165%2017.3822L5.43197%2017.383L6.37287%2017.0443ZM12.4251%2020.9932V19.9932H12.4018L12.3786%2019.9943L12.4251%2020.9932ZM18.7639%2016.5555L17.7958%2016.3049L17.7955%2016.306L18.7639%2016.5555ZM12.5219%2018.7336L12.5885%2017.7358L12.5551%2017.7336L12.5215%2017.7336L12.5219%2018.7336ZM9.90155%2016.6128L10.8851%2016.4321L10.8847%2016.43L9.90155%2016.6128ZM10.3756%2016.179L10.1533%2017.154L10.2706%2017.1807L10.3909%2017.1789L10.3756%2016.179ZM12.3282%2015.1152L11.6133%2014.416L11.5435%2014.4874L11.4891%2014.5711L12.3282%2015.1152ZM12.682%2013.2592L13.601%2012.865L13.5772%2012.8094L13.5468%2012.7571L12.682%2013.2592ZM13.1592%2012.7213L13.5616%2011.8058L13.5305%2011.7921L13.4985%2011.7806L13.1592%2012.7213ZM12.0198%202.22191C11.6509%202.03191%2011.2318%201.96202%2010.8224%202.01959L11.1009%204.0001C11.102%203.99995%2011.1031%203.99997%2011.1041%204.00014C11.1051%204.00031%2011.1051%204.00047%2011.1042%204L12.0198%202.22191ZM10.8224%202.01959C10.4129%202.07718%2010.0281%202.26029%209.72594%202.54837L11.1061%203.99585C11.1005%204.00117%2011.0981%204.0005%2011.1009%204.0001L10.8224%202.01959ZM9.72594%202.54837C9.42331%202.83693%209.2193%203.21631%209.15069%203.63339L11.1242%203.95803C11.121%203.97759%2011.1122%203.99005%2011.1061%203.99585L9.72594%202.54837ZM9.15069%203.63339C9.08203%204.05076%209.15383%204.47703%209.3524%204.84844L11.1161%203.90544C11.1235%203.91922%2011.1274%203.93818%2011.1242%203.95803L9.15069%203.63339ZM9.35013%204.84417C9.84278%205.7764%2010.1008%206.80531%2010.1053%207.84832L12.1052%207.83977C12.0994%206.47147%2011.7607%205.12516%2011.1184%203.90971L9.35013%204.84417ZM10.1053%207.84832C10.1097%208.89133%209.86051%209.9222%209.3759%2010.8582L11.152%2011.7777C11.7839%2010.5571%2012.1111%209.20807%2012.1052%207.83977L10.1053%207.84832ZM9.39931%2010.8156C9.47409%2010.6869%209.58069%2010.5845%209.70428%2010.5155L10.679%2012.2619C10.8631%2012.1592%2011.0196%2012.0079%2011.1286%2011.8204L9.39931%2010.8156ZM9.70428%2010.5155C9.82765%2010.4466%209.9653%2010.4124%2010.1032%2010.4139L10.0811%2012.4138C10.2888%2012.4161%2010.4952%2012.3645%2010.679%2012.2619L9.70428%2010.5155ZM10.1032%2010.4139C10.2411%2010.4155%2010.3781%2010.4527%2010.5001%2010.5245L9.48634%2012.2485C9.66802%2012.3553%209.87337%2012.4115%2010.0811%2012.4138L10.1032%2010.4139ZM10.5001%2010.5245C10.6224%2010.5964%2010.7268%2010.7014%2010.7987%2010.8321L9.04653%2011.7963C9.15121%2011.9866%209.30444%2012.1415%209.48634%2012.2485L10.5001%2010.5245ZM10.7967%2010.8285C10.6401%2010.5465%2010.5286%2010.2445%2010.4653%209.93254L8.5052%2010.3299C8.60949%2010.8444%208.79287%2011.3399%209.04854%2011.8L10.7967%2010.8285ZM10.4632%209.92239C10.4061%209.65484%2010.2798%209.40929%2010.0999%209.20803L8.60865%2010.5408C8.56001%2010.4863%208.52387%2010.4176%208.50731%2010.34L10.4632%209.92239ZM10.0999%209.20803C9.92022%209.00699%209.69336%208.85692%209.4428%208.76861L8.77794%2010.6549C8.71604%2010.633%208.65709%2010.595%208.60865%2010.5408L10.0999%209.20803ZM9.44402%208.76904C9.19205%208.67986%208.92183%208.65541%208.65861%208.6972L8.97223%2010.6725C8.90717%2010.6828%208.84014%2010.6769%208.77672%2010.6544L9.44402%208.76904ZM8.65861%208.6972C8.39533%208.73901%208.14469%208.84622%207.93164%209.01164L9.15817%2010.5914C9.10164%2010.6353%209.03736%2010.6621%208.97223%2010.6725L8.65861%208.6972ZM7.93469%209.00928C6.67904%209.97644%205.75939%2011.3003%205.30903%2012.8021L7.22474%2013.3766C7.5524%2012.284%208.22455%2011.3105%209.15512%2010.5938L7.93469%209.00928ZM5.30903%2012.8021C4.85854%2014.3043%204.90156%2015.9052%205.43165%2017.3822L7.31408%2016.7065C6.92826%2015.6315%206.89721%2014.4688%207.22474%2013.3766L5.30903%2012.8021ZM5.43197%2017.383C5.93961%2018.7933%206.90364%2020.0003%208.17278%2020.8284L9.26566%2019.1534C8.35303%2018.5579%207.6708%2017.6975%207.31377%2016.7057L5.43197%2017.383ZM8.17278%2020.8284C9.44143%2021.6562%2010.9493%2022.0628%2012.4715%2021.9921L12.3786%2019.9943C11.271%2020.0457%2010.1788%2019.7492%209.26566%2019.1534L8.17278%2020.8284ZM12.4251%2021.9932C14.238%2021.9932%2015.8526%2021.5483%2017.1343%2020.6507C18.4243%2019.7474%2019.3139%2018.4288%2019.7323%2016.8049L17.7955%2016.306C17.4875%2017.5016%2016.8591%2018.4018%2015.9871%2019.0125C15.1068%2019.6289%2013.915%2019.9932%2012.4251%2019.9932V21.9932ZM19.732%2016.806C20.3458%2014.4336%2019.8834%2011.5444%2018.5761%208.90975C17.2606%206.25851%2015.046%203.77101%2012.0177%202.22081L11.1063%204.0011C13.7139%205.33595%2015.6388%207.48953%2016.7845%209.79868C17.9385%2012.1244%2018.2589%2014.5149%2017.7958%2016.3049L19.732%2016.806ZM14.2729%2016.4503C14.218%2016.815%2014.0212%2017.1547%2013.7107%2017.3966L14.9397%2018.9744C15.6453%2018.4248%2016.1176%2017.6312%2016.2506%2016.7481L14.2729%2016.4503ZM13.7107%2017.3966C13.3991%2017.6393%2012.9982%2017.7632%2012.5885%2017.7358L12.4553%2019.7314C13.3478%2019.791%2014.2352%2019.5233%2014.9397%2018.9744L13.7107%2017.3966ZM12.5215%2017.7336C12.122%2017.7337%2011.7398%2017.5977%2011.4415%2017.3563L10.1833%2018.9109C10.8433%2019.4451%2011.6715%2019.7339%2012.5223%2019.7336L12.5215%2017.7336ZM11.4415%2017.3563C11.1439%2017.1154%2010.9502%2016.7869%2010.8851%2016.4321L8.918%2016.7934C9.07126%2017.6279%209.52254%2018.3761%2010.1833%2018.9109L11.4415%2017.3563ZM10.8847%2016.43C10.9047%2016.5374%2010.8965%2016.6479%2010.8617%2016.7503L8.96815%2016.1064C8.89287%2016.3278%208.87553%2016.565%208.9184%2016.7956L10.8847%2016.43ZM10.8617%2016.7503C10.8269%2016.8526%2010.7675%2016.9413%2010.6924%2017.01L9.34228%2015.5345C9.17314%2015.6893%209.04337%2015.8852%208.96815%2016.1064L10.8617%2016.7503ZM10.6924%2017.01C10.6175%2017.0785%2010.5291%2017.1255%2010.4362%2017.1496L9.93235%2015.2141C9.71441%2015.2709%209.51123%2015.3799%209.34228%2015.5345L10.6924%2017.01ZM10.4362%2017.1496C10.3435%2017.1738%2010.2466%2017.1752%2010.1533%2017.154L10.598%2015.204C10.3786%2015.154%2010.1502%2015.1574%209.93235%2015.2141L10.4362%2017.1496ZM10.3909%2017.1789C10.943%2017.1704%2011.4858%2017.0288%2011.9703%2016.7649L11.0134%2015.0086C10.8158%2015.1163%2010.5912%2015.1756%2010.3604%2015.1791L10.3909%2017.1789ZM11.9703%2016.7649C12.4549%2016.5008%2012.8673%2016.1218%2013.1673%2015.6592L11.4891%2014.5711C11.3734%2014.7496%2011.2108%2014.9011%2011.0134%2015.0086L11.9703%2016.7649ZM13.0431%2015.8144C13.4164%2015.4327%2013.6712%2014.9507%2013.7714%2014.425L11.8068%2014.0505C11.7815%2014.1834%2011.7161%2014.3109%2011.6133%2014.416L13.0431%2015.8144ZM13.7714%2014.425C13.8717%2013.899%2013.812%2013.3567%2013.601%2012.865L11.763%2013.6534C11.8175%2013.7804%2011.8321%2013.9178%2011.8068%2014.0505L13.7714%2014.425ZM13.5468%2012.7571C13.6128%2012.8707%2013.6426%2013.0045%2013.6288%2013.1395L11.6392%2012.9356C11.6096%2013.2243%2011.673%2013.513%2011.8172%2013.7613L13.5468%2012.7571ZM13.6288%2013.1395C13.615%2013.2743%2013.559%2013.3972%2013.4741%2013.4928L11.978%2012.1656C11.7891%2012.3785%2011.6688%2012.6469%2011.6392%2012.9356L13.6288%2013.1395ZM13.4741%2013.4928C13.3898%2013.588%2013.2815%2013.6512%2013.1669%2013.6797L12.6833%2011.7391C12.4137%2011.8063%2012.1665%2011.9531%2011.978%2012.1656L13.4741%2013.4928ZM13.1669%2013.6797C13.0524%2013.7083%2012.9318%2013.7023%2012.8199%2013.662L13.4985%2011.7806C13.2367%2011.6862%2012.9527%2011.6719%2012.6833%2011.7391L13.1669%2013.6797ZM12.7568%2013.6367C13.3054%2013.8779%2013.7478%2014.2856%2014.0203%2014.7883L15.7786%2013.8351C15.2895%2012.9331%2014.5072%2012.2215%2013.5616%2011.8058L12.7568%2013.6367ZM14.0203%2014.7883C14.2925%2015.2904%2014.3823%2015.8623%2014.2788%2016.4153L16.2447%2016.7831C16.4332%2015.7757%2016.268%2014.7377%2015.7786%2013.8351L14.0203%2014.7883Z'%20fill='white'%20mask='url(%23path-1-outside-1)'/%3e%3c/symbol%3e%3csymbol%20id='fire_solid'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M11.562%203.11095C11.3782%203.01628%2011.1678%202.98085%2010.9616%203.00985C10.7555%203.03884%2010.5643%203.13073%2010.416%203.27211C10.2677%203.41349%2010.1701%203.59695%2010.1374%203.79571C10.1047%203.99447%2010.1387%204.19813%2010.2343%204.37694C10.8017%205.45078%2011.1001%206.63839%2011.1052%207.84405C11.1104%209.0497%2010.8222%2010.2397%2010.2639%2011.318C10.2469%2011.3474%2010.2219%2011.3718%2010.1917%2011.3887C10.1614%2011.4056%2010.127%2011.4143%2010.0921%2011.4139C10.0572%2011.4135%2010.0231%2011.404%209.99324%2011.3865C9.96341%2011.369%209.93903%2011.344%209.92264%2011.3142C9.71646%2010.9432%209.56903%2010.5444%209.48526%2010.1312C9.46498%2010.0362%209.41989%209.94782%209.35427%209.8744C9.28866%209.80098%209.2047%209.74498%209.11037%209.71174C9.0161%209.67837%208.9145%209.6691%208.81542%209.68483C8.71635%209.70056%208.62316%209.74076%208.54491%209.80152C7.45179%2010.6435%206.6559%2011.7922%206.26689%2013.0894C5.87788%2014.3865%205.91491%2015.7683%206.37287%2017.0443C6.80521%2018.2454%207.62834%2019.2791%208.71922%2019.9909C9.81011%2020.7027%2011.1102%2021.0543%2012.4251%2020.9932C15.728%2020.9932%2018.0375%2019.3749%2018.7639%2016.5555C19.8409%2012.3931%2017.1979%205.99601%2011.562%203.11095ZM15.2617%2016.5992C15.1678%2017.2231%2014.8333%2017.7897%2014.3252%2018.1855C13.8171%2018.5813%2013.173%2018.7771%2012.5219%2018.7336C11.8968%2018.7338%2011.2915%2018.5214%2010.8124%2018.1336C10.3332%2017.7458%2010.0108%2017.2074%209.90155%2016.6128C9.8901%2016.5512%209.89469%2016.4878%209.91491%2016.4284C9.93512%2016.3689%209.97033%2016.3153%2010.0174%2016.2723C10.0644%2016.2292%2010.1218%2016.1982%2010.1843%2016.1819C10.2468%2016.1656%2010.3126%2016.1646%2010.3756%2016.179C10.7671%2016.173%2011.1508%2016.0725%2011.4918%2015.8867C11.8329%2015.7009%2012.1204%2015.4357%2012.3282%2015.1152C12.5663%2014.8718%2012.7264%2014.567%2012.7891%2014.2377C12.8519%2013.9084%2012.8147%2013.5686%2012.682%2013.2592C12.6429%2013.1918%2012.6261%2013.1144%2012.634%2013.0375C12.6419%2012.9606%2012.674%2012.8879%2012.7261%2012.8292C12.7781%2012.7705%2012.8476%2012.7287%2012.9251%2012.7094C13.0025%2012.6901%2013.0843%2012.6942%2013.1592%2012.7213C13.9063%2013.0497%2014.5186%2013.6093%2014.8994%2014.3117C15.2803%2015.014%2015.4077%2015.819%2015.2617%2016.5992Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='flag_ar'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%204H23V19H1V4Z'%20fill='%23199D00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.54316%208.251C6.52025%208.60256%206.48587%209.2178%206.78092%209.28225C7.13326%209.3174%206.93848%208.67287%207.06738%208.55569C7.0903%208.49709%207.13326%208.49709%207.13613%208.57033V9.11819C7.13613%209.29397%207.25071%209.3467%207.33665%209.38186C7.42832%209.376%207.49134%209.38186%207.52571%209.46975L7.57155%2010.416C7.57155%2010.416%207.78352%2010.4805%207.79498%209.88576C7.80358%209.5342%207.72624%209.24416%207.77207%209.17678C7.77207%209.1094%207.85801%209.10647%207.9153%209.13869C8.00697%209.20315%208.04706%209.28518%208.1903%209.25588C8.40801%209.19143%208.53978%209.08303%208.54264%208.91311C8.53834%208.74612%208.50437%208.58133%208.44238%208.42678C8.45384%208.39748%208.40228%208.31838%208.41373%208.28908C8.45097%208.35354%208.51113%208.34768%208.52259%208.28908C8.48535%208.16604%208.42806%208.04592%208.33639%207.99612C8.25905%207.9258%208.14446%207.93752%208.10723%208.08401C8.08431%208.251%208.16452%208.44729%208.28197%208.61135C8.30775%208.67287%208.34212%208.77834%208.32779%208.87209C8.26478%208.91018%208.20176%208.8926%208.14733%208.83694C8.14733%208.83694%207.97545%208.7051%207.97545%208.67287C8.02129%208.37405%207.98405%208.33889%207.95826%208.25393C7.94108%208.13967%207.88665%208.10158%207.84369%208.02541C7.80071%207.97854%207.74343%207.97854%207.71478%208.02541C7.63743%208.16018%207.67468%208.45022%207.7291%208.58205C7.7692%208.70217%207.82936%208.77834%207.80071%208.77834C7.77779%208.84573%207.7291%208.82815%207.69186%208.74905C7.64994%208.58258%207.62971%208.41117%207.63171%208.23928C7.61738%208.10451%207.60019%207.8174%207.51139%207.74123C7.45983%207.67092%207.38249%207.70608%207.35384%207.77053C7.34627%207.90141%207.34915%208.0327%207.36243%208.16311C7.41972%208.37991%207.43978%208.57326%207.46843%208.79299C7.47702%209.08889%207.30228%208.9219%207.31087%208.77248C7.34845%208.58464%207.34552%208.39068%207.30228%208.20412C7.27363%208.12795%207.24212%208.11037%207.17051%208.12209C7.11608%208.12209%206.97571%208.27737%206.93562%208.54104C6.93562%208.54104%206.90124%208.6758%206.88691%208.79592C6.86686%208.93069%206.78092%209.0303%206.7179%208.77834C6.66634%208.59377%206.63197%208.14553%206.54603%208.251H6.54316Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.5026%209.68945L6.58594%2010.1406C6.59453%209.92676%207.01849%209.54297%207.31068%209.54004C7.49687%209.54297%207.45105%209.61328%207.49974%209.68945H7.5026Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.33913%209.98245C6.85788%2011.2568%208.47063%2011.4355%208.6511%2010.0352C8.66829%209.97659%208.73704%209.92093%208.7485%2010.0146C8.71126%2011.2832%207.49954%2011.3682%207.29329%2010.9697C7.24477%2010.8326%207.22052%2010.6878%207.22168%2010.542C7.19303%2010.293%207.06413%2010.3896%207.04407%2010.6357C7.02402%2010.7734%207.02975%2010.8115%207.02975%2010.9434C7.09277%2011.9453%208.65397%2011.5146%208.90892%2010.6885C9.04355%2010.2314%208.886%209.89456%208.95761%209.89456C9.1123%2010.0645%209.33001%209.918%209.3787%209.85941C9.39876%209.83011%209.45033%209.8096%209.4847%209.84769C9.60501%209.93558%209.81699%209.89456%209.86282%209.73929C9.88861%209.58402%209.90866%209.42581%209.91439%209.26468C9.81413%209.29398%209.74251%209.31448%209.73392%209.35843L9.71387%209.4932C9.70527%209.53714%209.6222%209.53714%209.61647%209.48148C9.57923%209.3057%209.42454%209.28519%209.33001%209.55472C9.26986%209.60745%209.15527%209.61917%209.14381%209.54007C9.15814%209.35843%209.08652%209.33499%208.94329%209.41995L8.80579%208.35941C8.86308%208.35941%208.92037%208.40335%208.9748%208.33304C8.91751%208.14261%208.78861%207.75589%208.71699%207.72659C8.68548%207.68558%208.65683%207.71195%208.611%207.72366C8.53652%207.7471%208.46777%207.81155%208.49069%207.94046C8.57662%208.49124%208.63392%208.91019%208.72272%209.4639C8.73704%209.52542%208.68548%209.61038%208.61673%209.60159C8.50215%209.52249%208.4735%209.36136%208.27297%209.36722C8.12975%209.36722%207.96934%209.52835%207.94928%209.68069C7.9235%209.80374%207.9149%209.93558%207.94928%2010.041C8.04954%2010.1641%208.16986%2010.1523%208.27584%2010.126C8.36179%2010.0879%208.4334%2010%208.4649%2010.0205C8.48496%2010.0469%208.46777%2010.3398%208.05527%2010.5625C7.80606%2010.6797%207.60553%2010.7031%207.49954%2010.4951C7.43366%2010.3633%207.50527%209.86819%207.33913%209.98245Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.39306%208.68752C9.48759%208.65237%209.94593%208.1133%209.94593%208.1133L9.87717%208.05471C9.8514%208.0342%209.85425%208.01076%209.87717%207.99026C9.99176%207.91994%209.95451%207.77346%209.89722%207.70315C9.85833%207.68376%209.81554%207.67392%209.77227%207.67443C9.72901%207.67494%209.68645%207.68578%209.64801%207.70608C9.5678%207.78518%209.55061%207.91115%209.61363%207.98733C9.67378%208.01662%209.73395%208.08108%209.69384%208.11623C9.50477%208.32131%208.99202%208.6758%209.05217%208.68752C9.06363%208.7051%209.3816%208.7051%209.3902%208.68752H9.39306ZM6.61441%2010.5918C6.44254%2010.873%206.42822%2011.292%206.52275%2011.418C6.57431%2011.4766%206.65738%2011.5029%206.71754%2011.4824C6.8264%2011.4355%206.87509%2011.21%206.84931%2011.1309C6.81207%2011.0723%206.78342%2011.0635%206.74618%2011.1104C6.6717%2011.2686%206.6402%2011.1602%206.6316%2011.0723C6.62339%2010.9234%206.63108%2010.7741%206.65451%2010.627C6.67457%2010.5039%206.65451%2010.5391%206.61441%2010.5918ZM13.9792%2010.1436C13.8131%209.77444%2013.5811%209.41115%2013.5095%209.27346C13.2863%208.91253%2013.0493%208.5607%2012.799%208.21877C12.6215%208.00197%2013.0912%208.30959%2012.7417%207.876L12.4868%207.65627C12.4295%207.61526%2012.292%207.53908%2012.2691%207.66213C12.2576%207.77346%2012.2634%207.83205%2012.2805%207.92287C12.2949%207.98147%2012.3808%208.08401%2012.4238%208.1426C13.011%208.93814%2013.5269%209.78632%2013.9649%2010.6768C14.0395%2010.6387%2014.0222%2010.2051%2013.9792%2010.1436Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M13.2494%2011.3682C13.215%2011.4063%2013.3296%2011.5674%2013.4785%2011.5674C13.7249%2011.5381%2013.9426%2011.3975%2014.1431%2011.0225C14.2246%2010.8977%2014.2766%2010.7553%2014.2949%2010.6064C14.3192%209.89527%2014.2635%209.18357%2014.1288%208.48538C14.1202%208.42679%2014.1288%208.35648%2014.1345%208.3389C14.1517%208.31839%2014.2062%208.3389%2014.2348%208.2891C14.2777%208.24515%2014.1202%207.87894%2014.0343%207.74124C14.0056%207.67679%2013.9913%207.63578%2013.9397%207.7471C13.8775%207.86994%2013.8479%208.00733%2013.8538%208.14554C13.9712%208.9805%2014.0085%209.70999%2014.083%2010.5449C14.0916%2010.627%2014.0801%2010.7441%2014.0257%2010.791C13.8095%2011.0372%2013.545%2011.2338%2013.2494%2011.3682ZM16.5866%2011.3652C16.409%2011.4707%2016.409%2011.5908%2016.5522%2011.5938C16.7985%2011.5645%2017.0908%2011.5439%2017.2913%2011.2334C17.3621%2011.0871%2017.4031%2010.9276%2017.4116%2010.7647C17.4477%2010.0644%2017.4025%209.36226%2017.277%208.67288C17.2712%208.61429%2017.2455%208.4766%2017.2541%208.45902C17.2712%208.418%2017.3515%208.46195%2017.3801%208.41507C17.4202%208.37113%2017.171%208.043%2017.0822%207.90238C17.0536%207.83792%2017.0421%207.79691%2016.9876%207.90824C16.93%208.03221%2016.9119%208.17162%2016.9361%208.30667C17.0678%209.21488%2017.1652%209.89456%2017.1854%2010.6973C17.1738%2010.7734%2017.171%2010.8145%2017.1366%2010.9111C17.0592%2011.0107%2016.9734%2011.1397%2016.8931%2011.2012C16.8129%2011.2598%2016.641%2011.3184%2016.5866%2011.3652Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M16.7183%2010.5537C16.7183%2010.3398%2016.7211%2010.1582%2016.7153%209.99707C16.7135%209.86061%2016.6842%209.72599%2016.6294%209.60157C16.5779%209.48145%2016.6093%209.38477%2016.5836%209.25586C16.5606%209.12696%2016.5664%208.9336%2016.532%208.78418C16.5206%208.72559%2016.4919%208.53516%2016.5005%208.51465C16.5149%208.47364%2016.5693%208.51465%2016.5979%208.46778C16.638%208.42383%2016.4547%207.94043%2016.363%207.80274C16.3316%207.74122%2016.2685%207.76172%2016.1969%207.86133C16.1252%207.92872%2016.1511%208.07813%2016.1797%208.22168C16.3544%209.16797%2016.4891%2010.0264%2016.4604%2010.9258C16.449%2011.002%2016.7183%2010.6973%2016.7183%2010.5537ZM15.4091%209.38184C15.2974%209.37598%2015.0653%209.15625%2014.9966%209.03028C14.9854%208.99949%2014.9806%208.96662%2014.9825%208.93382C14.9846%208.90101%2014.9932%208.86899%2015.008%208.83985C15.0511%208.81055%2015.114%208.78125%2015.1627%208.81055C15.1627%208.81055%2015.2115%208.88086%2015.2029%208.88965C15.2602%208.91895%2015.2889%208.9043%2015.2945%208.87793C15.2974%208.83399%2015.2773%208.80762%2015.2773%208.76075C15.3031%208.62598%2015.4492%208.60547%2015.5065%208.69043C15.5466%208.74317%2015.5638%208.85157%2015.5666%208.92481C15.5666%208.9629%2015.5093%208.91895%2015.4722%208.92481C15.4406%208.93653%2015.432%208.97754%2015.4292%209.0127C15.4235%209.10938%2015.412%209.26465%2015.4091%209.37891V9.38184ZM13.3524%2010.7881C13.381%2010.501%2013.3409%209.98829%2013.338%209.81836C13.3227%209.38136%2013.2873%208.94533%2013.232%208.51172C13.1977%208.26563%2013.3294%208.53809%2013.3123%208.39454C13.2693%208.15137%2013.1375%207.98438%2012.9799%207.76465C12.9312%207.69141%2012.9312%207.67676%2012.8539%207.78223C12.7679%207.97852%2012.8425%208.11622%2012.8653%208.27149C12.9771%208.7754%2013.043%209.23829%2013.0745%209.69825C13.1074%2010.1761%2013.1113%2010.6555%2013.0859%2011.1338C13.1719%2011.1367%2013.3037%2010.9961%2013.3524%2010.7881Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.099%2010.3281C16.9014%209.98827%2016.6063%209.62499%2016.5261%209.48729C16.2605%209.10792%2015.9815%208.73854%2015.6896%208.37987C15.4462%208.1162%2015.8042%208.33592%2015.6438%208.13085C15.5091%207.98143%2015.472%207.93163%2015.3545%207.84081C15.2972%207.80272%2015.2628%207.72948%2015.2399%207.85546C15.2308%207.96457%2015.2288%208.0742%2015.2342%208.18358C15.2342%208.23339%2015.2857%208.33007%2015.3316%208.38866C15.9245%209.13573%2016.5748%209.89745%2017.0962%2010.8555C17.1707%2010.8174%2017.1449%2010.3867%2017.0962%2010.3281H17.099Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8.17823%209.70408C8.16391%209.73045%208.1324%209.76268%208.14386%209.7949C8.16391%209.8242%208.18396%209.83299%208.21834%209.83299C8.24984%209.83299%208.29568%209.84178%208.30428%209.8242C8.32147%209.80369%208.33293%209.76561%208.32147%209.72752C8.28709%209.63963%208.19542%209.67479%208.17823%209.70408Z'%20fill='%231BA400'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M14.8131%2014.6201C15.0766%2014.6318%2015.2485%2014.6348%2015.4805%2014.6611L15.7554%2014.6318C16.0591%2014.6025%2016.0706%2015.0742%2016.0706%2015.0742C16.0706%2015.3525%2015.9646%2015.3672%2015.83%2015.3965C15.7526%2015.4082%2015.7154%2015.3496%2015.6724%2015.291C15.6076%2015.3123%2015.5386%2015.3163%2015.4719%2015.3027C15.3601%2015.2969%2015.2513%2015.2969%2015.1425%2015.2881C15.0279%2015.2793%2014.9648%2015.3027%2014.8474%2015.291C14.8245%2015.3291%2014.7901%2015.3818%2014.7214%2015.3672C14.6641%2015.3584%2014.5925%2015.1914%2014.6125%2015.0596C14.6554%2014.9658%2014.6412%2014.998%2014.6412%2014.957C13.5641%2014.9277%2012.4784%2014.8779%2011.4242%2014.8926C10.5992%2014.8955%209.78568%2014.9307%208.96927%2014.9658C8.53386%2014.96%208.20156%2014.8896%207.9724%2014.5469C7.99532%2014.5469%209.08386%2014.6084%209.40182%2014.5879C9.98906%2014.582%2010.5276%2014.5322%2011.1263%2014.5146C12.3065%2014.5352%2013.4781%2014.5352%2014.6583%2014.6201C14.5438%2014.541%2014.5438%2014.3564%2014.7156%2014.3096C14.73%2014.2978%2014.7386%2014.4004%2014.7643%2014.3975C14.9047%2014.3887%2014.8416%2014.582%2014.8131%2014.6201ZM10.0693%207.96384C9.89167%208.48533%2010.1724%209.05955%2010.3672%209.00388C10.5105%209.06248%2010.5964%208.78709%2010.6536%208.48826C10.6966%208.4033%2010.7253%208.39451%2010.7453%208.43845C10.7395%208.83689%2010.774%208.92771%2010.8742%209.04783C11.0976%209.22361%2011.2839%209.07127%2011.2982%209.05662L11.47%208.87791C11.5101%208.83396%2011.5618%208.83396%2011.6161%208.86912C11.6706%208.91892%2011.662%209.00388%2011.7766%209.06248C11.874%209.10349%2012.0773%209.0742%2012.126%208.98923C12.1891%208.87498%2012.2062%208.83689%2012.2349%208.79588C12.2807%208.73435%2012.3581%208.76072%2012.3581%208.78123C12.3495%208.81638%2012.3036%208.84861%2012.3352%208.91306C12.3925%208.95408%2012.4039%208.92771%2012.4354%208.91892C12.55%208.86033%2012.6359%208.60838%2012.6359%208.60838C12.6388%208.51463%2012.5873%208.52048%2012.5528%208.54392L12.4641%208.60545C12.4068%208.61423%2012.3008%208.65232%2012.2464%208.56736C12.1919%208.46775%2012.1919%208.3242%2012.1518%208.22166C12.1518%208.2158%2012.0773%208.06052%2012.1461%208.05173C12.1805%208.05759%2012.2521%208.0781%2012.2635%208.01658C12.2979%207.95506%2012.1891%207.7822%2012.1118%207.69431C12.0459%207.62107%2011.9541%207.61228%2011.8654%207.68845C11.8024%207.74705%2011.8109%207.8115%2011.7995%207.87302C11.7886%207.91711%2011.7881%207.96321%2011.7981%208.00752C11.8081%208.05184%2011.8282%208.0931%2011.8568%208.12791C11.9198%208.25095%2012.0315%208.41209%2011.9942%208.6406C11.9942%208.6406%2011.9284%208.74607%2011.8138%208.73142C11.7651%208.72263%2011.6878%208.70213%2011.6476%208.38572C11.6161%208.15134%2011.6534%207.81736%2011.556%207.66209C11.5187%207.56541%2011.4929%207.47459%2011.4071%207.63572C11.3841%207.70017%2011.2839%207.79685%2011.3554%207.99314C11.4232%208.17002%2011.4431%208.36234%2011.4127%208.54978C11.3698%208.61423%2011.3612%208.63474%2011.3068%208.69627C11.2322%208.78416%2011.1492%208.76072%2011.0862%208.72849C11.0289%208.69041%2010.9831%208.6699%2010.9545%208.53806C10.9601%208.33298%2010.9716%207.99607%2010.9344%207.92576C10.88%207.81443%2010.7912%207.85545%2010.7539%207.8906C10.5835%208.08421%2010.4694%208.32267%2010.4245%208.57908C10.3729%208.749%2010.3185%208.6992%2010.2813%208.63181C10.1895%208.54392%2010.1809%207.84959%2010.0693%207.96384Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10.6074%209.1006C10.6905%209.042%2010.6532%209.00099%2010.7735%209.12403C10.9288%209.40505%2011.019%209.71877%2011.0371%2010.041C11.0313%2010.1172%2011.0828%2010.1641%2011.1087%2010.1465C11.1201%209.97071%2011.5412%209.72462%2011.9279%209.68946C11.9852%209.67482%2011.9566%209.56056%2011.9652%209.50196C11.9423%209.28224%2012.0855%209.08302%2012.286%209.06837C12.561%209.10939%2012.6527%209.2588%2012.6584%209.48439C12.6269%209.92384%2012.18%209.99708%2011.9308%2010.0322C11.8935%2010.0469%2011.8764%2010.0645%2011.9308%2010.085L12.9792%2010.0908L13.0337%2010.1201C13.0394%2010.1494%2013.0165%2010.126%2012.9764%2010.1963C12.9187%2010.2999%2012.8826%2010.4146%2012.8704%2010.5332C12.5581%2010.6387%2012.2345%2010.6797%2011.9079%2010.7236C11.7933%2010.7822%2011.736%2010.8613%2011.759%2010.9492C11.7991%2011.0459%2012.0511%2011.1455%2012.0511%2011.1484C12.0998%2011.1777%2012.1542%2011.251%2012.0368%2011.4004C11.5269%2011.377%2011.1287%2011.1543%2010.9912%2010.8408C10.9511%2010.8086%2010.9053%2010.8408%2010.8766%2010.8818C10.6761%2011.1455%2010.4813%2011.3799%2010.1405%2011.5088C9.93992%2011.5615%209.7308%2011.4766%209.63341%2011.3418C9.56752%2011.2627%209.57039%2011.1777%209.54747%2011.1602C9.43576%2011.21%208.49044%2011.6201%208.61076%2011.4268C8.83992%2011.1777%209.24096%2010.9902%209.59044%2010.7441C9.61623%2010.6592%209.66205%2010.3779%209.79956%2010.2871C9.80814%2010.2871%209.77951%2010.4512%209.78237%2010.5215C9.78237%2010.5801%209.77664%2010.6006%209.7881%2010.5859C9.81387%2010.5713%2010.2378%2010.2285%2010.2751%2010.123C10.3152%2010.0645%2010.2837%209.91212%2010.2837%209.90626C10.2034%209.69532%2010.0918%209.67775%2010.0517%209.57228C10.0144%209.43458%2010.0316%209.27638%2010.109%209.2295C10.1777%209.16798%2010.2579%209.17384%2010.3352%209.24415C10.4212%209.32325%2010.4957%209.47853%2010.5186%209.59278C10.5042%209.63673%2010.404%209.56349%2010.3753%209.584C10.4305%209.6488%2010.4671%209.72785%2010.4813%209.81251C10.5386%2010.0527%2010.5214%2010.1465%2010.4641%2010.3018C10.2751%2010.709%2010.0345%2010.8291%209.82247%2010.9814C9.81674%2010.9814%209.81387%2011.084%209.89123%2011.1396C9.91987%2011.1689%2010.0316%2011.1836%2010.1605%2011.1396C10.4358%2010.9832%2010.6586%2010.7453%2010.7993%2010.457C10.8236%2010.2377%2010.8002%2010.0156%2010.7306%209.80665C10.6474%209.61036%2010.5501%209.33204%2010.5501%209.32618C10.5472%209.20314%2010.5558%209.16212%2010.6074%209.1006ZM7.8631%207.96974C7.98341%208.02833%208.21258%208.00196%208.20112%207.80275L8.19539%207.71192C8.17247%207.65333%208.10372%207.66798%208.0894%207.72657C8.08367%207.74708%208.09799%207.77931%208.0808%207.7881C8.06934%207.79982%208.03211%207.79396%208.03211%207.73829C8.03211%207.72071%208.02065%207.70314%208.01205%207.69142C8.00633%207.68556%208.0006%207.68556%207.98627%207.68556C7.96909%207.68556%207.96909%207.68849%207.9605%207.70314C7.95763%207.71778%207.9519%207.73243%207.9519%207.75001C7.9519%207.77052%207.94044%207.77638%207.92898%207.77931C7.91179%207.77931%207.91466%207.77931%207.90033%207.77345C7.8946%207.76466%207.88601%207.76173%207.88601%207.74415L7.87742%207.69728C7.87169%207.68849%207.86024%207.68263%207.84878%207.6797C7.78289%207.6797%207.77716%207.7588%207.78289%207.7881C7.77716%207.79396%207.7743%207.93165%207.8631%207.96974Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M11.4013%209.499C11.5217%209.55759%2011.811%209.52537%2011.7393%209.33494L11.7337%209.24119C11.7078%209.18259%2011.6419%209.19724%2011.6277%209.25877C11.6219%209.27634%2011.6363%209.30857%2011.6162%209.31736C11.6076%209.32908%2011.5675%209.32322%2011.5704%209.27049C11.5704%209.25291%2011.5589%209.2324%2011.5503%209.22068C11.5417%209.21775%2011.5389%209.21482%2011.5217%209.21482C11.5073%209.21482%2011.5073%209.22068%2011.4987%209.23533C11.493%209.24998%2011.4902%209.26463%2011.4902%209.2822C11.4873%209.29978%2011.4787%209.30564%2011.4644%209.3115C11.45%209.3115%2011.4529%209.3115%2011.4415%209.30271C11.4329%209.29392%2011.4243%209.29099%2011.4243%209.27635L11.4157%209.22947C11.4099%209.22068%2011.3985%209.21482%2011.387%209.21189C11.3211%209.21189%2011.3154%209.28806%2011.3183%209.31736C11.3154%209.32322%2011.3125%209.46384%2011.4042%209.499H11.4013ZM13.4638%208.86619C13.5842%208.92478%2013.8105%208.89842%2013.8019%208.70213L13.7962%208.60838C13.7704%208.54978%2013.7045%208.56443%2013.6902%208.62302C13.6844%208.64353%2013.6987%208.67576%2013.6787%208.68748C13.6701%208.69627%2013.63%208.69041%2013.6329%208.63474C13.6329%208.61717%2013.6214%208.59959%2013.6129%208.58787C13.6042%208.58201%2013.6013%208.58201%2013.5842%208.58201C13.5698%208.58201%2013.5698%208.58787%2013.5612%208.60252L13.5526%208.64646C13.5498%208.66697%2013.5412%208.67576%2013.5269%208.67576C13.5125%208.67576%2013.5154%208.67576%2013.5039%208.6699C13.4953%208.66111%2013.4868%208.65818%2013.4868%208.64353C13.4868%208.62888%2013.4839%208.60545%2013.4782%208.59373C13.4724%208.58494%2013.461%208.58201%2013.4496%208.57908C13.3837%208.57908%2013.3779%208.65525%2013.3808%208.68455C13.3779%208.69041%2013.3751%208.8281%2013.4667%208.86619H13.4638ZM14.5324%2010.457C14.3232%2010.7002%2014.4149%2011.1016%2014.4636%2011.1895C14.5324%2011.3301%2014.5868%2011.4209%2014.7214%2011.4912C14.8446%2011.582%2014.9419%2011.5264%2014.9936%2011.4619C15.1167%2011.3301%2015.1196%2010.9932%2015.1769%2010.9287C15.217%2010.8057%2015.3201%2010.8262%2015.3688%2010.8818C15.4144%2010.948%2015.4754%2011.0014%2015.5464%2011.0371C15.661%2011.1396%2015.7985%2011.1602%2015.936%2011.0664C16.0277%2011.0107%2016.0878%2010.9434%2016.1423%2010.8057C16.1996%2010.6416%2016.1709%209.87986%2016.1565%209.42869L16.0363%208.79881C16.0363%208.79295%2016.0219%208.49998%2016.0076%208.4326C16.0076%208.4033%2015.999%208.39451%2016.0277%208.39744C16.0592%208.42674%2016.062%208.42674%2016.085%208.43552C16.1136%208.44138%2016.1423%208.38572%2016.1222%208.33885L15.8357%207.79392C15.8129%207.77049%2015.7813%207.74705%2015.744%207.79978C15.7221%207.82012%2015.7046%207.84501%2015.6928%207.87279C15.6809%207.90057%2015.675%207.93061%2015.6753%207.96092C15.6839%208.08982%2015.7039%208.22166%2015.7125%208.35056L15.8271%209.01267C15.8644%209.48142%2015.873%209.86814%2015.9102%2010.3398C15.9045%2010.5391%2015.8443%2010.7119%2015.787%2010.7383C15.787%2010.7383%2015.7011%2010.7881%2015.6438%2010.7324C15.6009%2010.7148%2015.4318%2010.4424%2015.4318%2010.4424C15.3459%2010.3633%2015.2886%2010.3838%2015.2284%2010.4424C15.0565%2010.6123%2014.982%2010.9228%2014.8646%2011.1396C14.836%2011.1895%2014.75%2011.2275%2014.6584%2011.1367C14.4235%2010.8057%2014.561%2010.3369%2014.5324%2010.457ZM13.5183%207.71189C13.6271%207.75584%2013.7016%207.98142%2013.6787%208.09275C13.6558%208.22459%2013.5985%208.37107%2013.5584%208.35349C13.5125%208.33592%2013.587%208.21873%2013.544%208.09568C13.5211%208.01365%2013.3722%207.86717%2013.3893%207.82615C13.3607%207.73533%2013.4524%207.69431%2013.5183%207.70896V7.71189Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M14.882%2010.5918C14.902%2010.3223%2014.8648%2010.1582%2014.859%209.99999C14.8534%209.84179%2014.6843%208.63476%2014.65%208.51757C14.607%208.28906%2014.8133%208.48827%2014.7903%208.35351C14.7187%208.18945%2014.544%207.94628%2014.4895%207.80273C14.4551%207.74413%2014.4695%207.68554%2014.395%207.78808C14.3308%207.96786%2014.3083%208.16039%2014.3291%208.35058C14.5067%209.29687%2014.6871%2010.082%2014.6585%2010.9814C14.7444%2010.9814%2014.839%2010.7852%2014.882%2010.5918ZM16.7268%208.09277C16.827%208.14257%2016.8843%208.42382%2016.8729%208.50292C16.8528%208.64941%2016.8013%208.80761%2016.764%208.7871C16.721%208.76952%2016.7726%208.57031%2016.7525%208.50878C16.7296%208.42089%2016.595%208.26269%2016.6093%208.21581C16.5807%208.1162%2016.6666%208.07519%2016.7268%208.09277ZM9.40202%2010.082C9.49655%2010.1201%209.55384%2010.3252%209.54525%2010.3838C9.52233%2010.4922%209.47363%2010.6094%209.4364%2010.5918C9.39915%2010.5801%209.44499%2010.4336%209.4278%2010.3867C9.41921%2010.2783%209.28743%2010.2197%209.2903%2010.1729C9.26739%2010.085%209.34759%2010.0703%209.40488%2010.082H9.40202Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M11.6821%2010.3926C11.8025%2010.3984%2011.8626%2010.498%2011.7509%2010.5391C11.6364%2010.5771%2011.5304%2010.6094%2011.5274%2010.7734C11.5705%2011.0078%2011.4701%2010.9258%2011.4129%2010.8965C11.3441%2010.8438%2011.1493%2010.7207%2011.1207%2010.457C11.1179%2010.3955%2011.1665%2010.3398%2011.2439%2010.3398C11.3585%2010.3721%2011.5304%2010.375%2011.6821%2010.3926Z'%20fill='%231B9D00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.88391%207.64455C7.02142%207.68557%207.03001%207.8965%207.02142%207.95803C7.00137%208.06935%206.95267%208.18947%206.91829%208.17482C6.87819%208.16017%206.91829%208.00783%206.89824%207.96096C6.87819%207.8965%206.76074%207.77346%206.7722%207.7383C6.74642%207.66506%206.82949%207.6299%206.88391%207.64455ZM9.63105%208.62892C9.5222%208.68752%209.4821%208.8633%209.54798%208.96877C9.61101%209.05666%209.7084%209.02443%209.71985%209.02443C9.82584%209.03615%209.88887%208.82228%209.88887%208.82228C9.88887%208.82228%209.89174%208.76369%209.76855%208.87795C9.71412%208.88674%209.71127%208.86623%209.69694%208.83693C9.68382%208.78116%209.68886%208.72253%209.71127%208.66994C9.73131%208.61721%209.69121%208.59377%209.63105%208.62892ZM10.4331%207.56252C10.3758%207.6006%2010.2698%207.71486%2010.267%207.84377C10.2642%207.91701%2010.2498%207.91701%2010.2956%207.96096C10.3329%208.01369%2010.3644%208.01076%2010.4331%207.97267C10.4502%207.96165%2010.465%207.9471%2010.4763%207.92995C10.4877%207.9128%2010.4954%207.89343%2010.499%207.87307C10.5162%207.79103%2010.4131%207.91408%2010.4016%207.82033C10.3787%207.73244%2010.4446%207.69728%2010.5076%207.61525C10.5076%207.55666%2010.5076%207.51857%2010.4303%207.56252H10.4331ZM11.0748%207.67971C11.0495%207.78639%2011.0342%207.89527%2011.029%208.0049C11.0118%208.08693%2011.1149%208.12209%2011.1578%208.01662C11.2267%207.82619%2011.2266%207.74416%2011.2323%207.66506C11.2123%207.53908%2011.1292%207.54201%2011.0748%207.67971ZM15.1425%209.79787C15.154%209.78322%2015.7155%209.376%2015.7155%209.376C15.7728%209.35549%2015.7584%209.58693%2015.7326%209.584C15.5585%209.75563%2015.3582%209.89713%2015.1396%2010.0029C15.111%2010.0234%2015.0852%209.84767%2015.1396%209.79787H15.1425ZM15.6496%209.79201C15.7498%209.84182%2015.7899%2010.1377%2015.7784%2010.2168C15.7784%2010.375%2015.6839%2010.498%2015.6438%2010.4805C15.6037%2010.46%2015.6496%2010.2842%2015.6295%2010.2227C15.6065%2010.1348%2015.5235%209.97365%2015.5378%209.92678C15.5091%209.82717%2015.5894%209.77443%2015.6524%209.79201H15.6496ZM12.3266%2011.0635C12.3731%2011.008%2012.4271%2010.9597%2012.487%2010.9199C12.5443%2010.8906%2012.5959%2010.9434%2012.593%2010.9404C12.6016%2010.999%2012.5587%2011.0488%2012.573%2011.125C12.5844%2011.1543%2012.593%2011.1895%2012.6475%2011.1777C12.7363%2011.1045%2012.8194%2011.0986%2012.9052%2011.0957C12.9769%2011.0986%2012.9797%2011.2187%2012.9339%2011.2187C12.7707%2011.2539%2012.699%2011.3008%2012.5816%2011.3447C12.5243%2011.3799%2012.4784%2011.3359%2012.4784%2011.333C12.4784%2011.3301%2012.4469%2011.3008%2012.467%2011.2246C12.4728%2011.166%2012.4498%2011.1309%2012.3982%2011.1367C12.3638%2011.1602%2012.3295%2011.1719%2012.3123%2011.1279C12.3037%2011.0986%2012.3009%2011.0811%2012.3266%2011.0635ZM16.2396%2011.2217C16.2625%2011.251%2016.2797%2011.2803%2016.2368%2011.333L16.1308%2011.4268C16.1136%2011.4561%2016.1022%2011.5088%2016.1595%2011.5234C16.2625%2011.5527%2016.5032%2011.3916%2016.5032%2011.3887C16.5432%2011.3594%2016.5318%2011.3008%2016.5261%2011.3008C16.5032%2011.2744%2016.4516%2011.292%2016.4172%2011.2861C16.4001%2011.2861%2016.3456%2011.2803%2016.3714%2011.2275C16.3906%2011.2016%2016.4061%2011.173%2016.4172%2011.1426C16.4316%2011.1074%2016.4172%2011.084%2016.3599%2011.0635C16.2998%2011.0518%2016.2741%2011.0576%2016.2082%2011.0635C16.1737%2011.0693%2016.1623%2011.0869%2016.1537%2011.1309C16.1565%2011.1982%2016.1967%2011.1953%2016.2396%2011.2187V11.2217Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.3468%209.55759C12.3325%209.58689%2012.2809%209.58689%2012.2322%209.55759C12.1835%209.5283%2012.1549%209.48142%2012.1721%209.45506C12.1893%209.42869%2012.238%209.42869%2012.2867%209.45506C12.3354%209.48142%2012.3612%209.53123%2012.3468%209.55759ZM9.79736%207.98728C9.76871%207.99607%209.72862%207.9697%209.71143%207.92869C9.69424%207.88767%209.70283%207.85252%209.73148%207.84373C9.76012%207.83494%209.79736%207.86424%209.81742%207.90232C9.83747%207.94041%209.82601%207.98142%209.7945%207.99021L9.79736%207.98728Z'%20fill='%23259F00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M14.8413%2014.9863C15.1106%2014.998%2015.3627%2014.9863%2015.6291%2015.001C15.6778%2015.0449%2015.6434%2015.1475%2015.6119%2015.1416L15.3885%2015.1328C15.3856%2015.0449%2015.1679%2015.0596%2015.1736%2015.1357C15.0561%2015.1504%2014.9502%2015.1328%2014.8299%2015.127C14.7955%2015.083%2014.8012%2015.0039%2014.8413%2014.9863Z'%20fill='%23209000'/%3e%3c/symbol%3e%3csymbol%20id='flag_en'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%204H23V5.1543H1V4ZM1%206.30859H23V7.46289H1V6.30859ZM1%208.61426H23V9.77148H1V8.61426ZM1%2010.9229H23V12.0771H1V10.9229ZM1%2013.2314H23V14.3857H1V13.2314ZM1%2015.5371H23V16.6914H1V15.5371ZM1%2017.8457H23V19H1V17.8457Z'%20fill='%23BD3D44'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%205.1543H23V6.30859H1V5.1543ZM1%207.46289H23V8.61426H1V7.46289ZM1%209.76855H23V10.9229H1V9.76855ZM1%2012.0771H23V13.2314H1V12.0771ZM1%2014.3857H23V15.54H1V14.3857ZM1%2016.6914H23V17.8457H1V16.6914Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%204H13.5393V12.0771H1V4Z'%20fill='%23192F5D'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M2.04414%204.3457L2.16016%204.66504H2.52754L2.23105%204.86133L2.34385%205.18359L2.04414%204.98437L1.74766%205.18066L1.86045%204.86133L1.56075%204.66504H1.93457L2.04414%204.3457ZM4.13565%204.3457L4.24843%204.66504H4.61904L4.31934%204.86133L4.43213%205.18359L4.13565%204.98437L3.83593%205.18066L3.94872%204.86133L3.65224%204.66504H4.01963L4.13565%204.3457ZM6.22392%204.3457L6.33994%204.66504H6.7041L6.40762%204.86133L6.5204%205.18359L6.2207%204.98437L5.92421%205.18066L6.03701%204.86133L5.7373%204.66504H6.1079L6.22392%204.3457ZM8.31543%204.3457L8.42822%204.66504H8.79882L8.49912%204.86133L8.61513%205.18359L8.31543%204.98437L8.01572%205.18066L8.13174%204.86133L7.83203%204.66504H8.19941L8.31543%204.3457ZM10.4037%204.3457L10.5197%204.66504H10.8871L10.5907%204.86133L10.7034%205.18359L10.4037%204.98437L10.1072%205.18066L10.22%204.86133L9.92353%204.66504H10.2909L10.4037%204.3457ZM12.4952%204.3457L12.608%204.66504H12.9786L12.6789%204.86133L12.795%205.18359L12.4952%204.98437L12.1955%205.18066L12.3115%204.86133L12.0118%204.66504H12.3825L12.4952%204.3457ZM3.09151%205.1543L3.2043%205.47363H3.5749L3.27519%205.66992L3.38477%205.98926L3.09473%205.79297L2.79502%205.98926L2.90137%205.66992L2.61132%205.47363H2.97871L3.09151%205.1543ZM5.17978%205.1543L5.2958%205.47363H5.66318L5.36348%205.66992L5.4795%205.98926L5.17978%205.79297L4.88007%205.98926L4.99609%205.66992L4.69638%205.47363H5.067L5.17978%205.1543ZM7.27129%205.1543L7.38408%205.47363H7.75468L7.45497%205.66992L7.56777%205.98926L7.27129%205.79297L6.97158%205.98926L7.08437%205.66992L6.78789%205.47363H7.15527L7.27129%205.1543ZM9.35957%205.1543L9.47559%205.47363H9.84301L9.54326%205.66992L9.65928%205.98926L9.35957%205.79297L9.06309%205.98926L9.17588%205.66992L8.87617%205.47363H9.25L9.35957%205.1543ZM11.4511%205.1543L11.5638%205.47363H11.9344L11.6348%205.66992L11.7475%205.98926L11.4511%205.79297L11.1513%205.98926L11.2642%205.66992L10.9676%205.47363H11.335L11.4511%205.1543ZM2.04414%205.95996L2.16016%206.28516H2.52754L2.23105%206.48144L2.34385%206.80078L2.04414%206.60156L1.74766%206.80078L1.86045%206.47851L1.56075%206.28223H1.93457L2.04414%205.95996ZM4.13565%205.95996L4.24843%206.28223H4.61904L4.31934%206.47851L4.43213%206.79785L4.13565%206.59863L3.83593%206.79785L3.94872%206.47558L3.65224%206.2793H4.01963L4.13565%205.95996ZM6.22392%205.95996L6.33994%206.28223H6.7041L6.40762%206.47851L6.5204%206.79785L6.2207%206.59863L5.92421%206.79785L6.03701%206.47558L5.7373%206.2793H6.1079L6.22392%205.95996ZM8.31543%205.95996L8.42822%206.28223H8.79882L8.49912%206.47851L8.61513%206.79785L8.31543%206.59863L8.01572%206.79785L8.13174%206.47558L7.83203%206.2793H8.19941L8.31543%205.95996ZM10.4037%205.95996L10.5197%206.28223H10.8871L10.5907%206.47851L10.7034%206.79785L10.4037%206.59863L10.1072%206.79785L10.22%206.47558L9.92353%206.2793H10.2909L10.4037%205.95996ZM12.4952%205.95996L12.608%206.28223H12.9786L12.6789%206.47851L12.795%206.79785L12.4952%206.59863L12.1955%206.79785L12.3115%206.47558L12.0118%206.2793H12.3825L12.4952%205.95996ZM3.09151%206.76855L3.2043%207.08789H3.5749L3.27519%207.28418L3.38799%207.60644L3.09151%207.40723L2.7918%207.60351L2.90459%207.28418L2.6081%207.08789H2.97549L3.09151%206.76855ZM5.17978%206.76855L5.2958%207.08789H5.66318L5.36348%207.28418L5.4795%207.60644L5.17978%207.40723L4.88007%207.60351L4.99609%207.28418L4.69638%207.08789H5.067L5.17978%206.76855ZM7.27129%206.76855L7.38408%207.08789H7.75468L7.45497%207.28418L7.56777%207.60644L7.27129%207.40723L6.97158%207.60351L7.08437%207.28418L6.78789%207.08789H7.15527L7.27129%206.76855ZM9.35957%206.76855L9.47559%207.08789H9.84301L9.54648%207.28418L9.65928%207.60644L9.35957%207.40723L9.06309%207.60351L9.17588%207.28418L8.87617%207.08789H9.25L9.35957%206.76855ZM11.4511%206.76855L11.5638%207.08789H11.9344L11.6348%207.28418L11.7475%207.60644L11.4511%207.40723L11.1513%207.60351L11.2642%207.28418L10.9676%207.08789H11.335L11.4511%206.76855ZM2.04414%207.57715L2.16016%207.89648H2.52754L2.23105%208.09277L2.34385%208.41504L2.04414%208.21582L1.74766%208.41211L1.86045%208.09277L1.56075%207.89648H1.93457L2.04414%207.57715ZM4.13565%207.57715L4.24843%207.89648H4.61904L4.31934%208.09277L4.43213%208.41211L4.13565%208.21582L3.83593%208.41211L3.94872%208.09277L3.65224%207.89648H4.01963L4.13565%207.57715ZM6.22392%207.57715L6.33994%207.89648H6.7041L6.40762%208.09277L6.5204%208.41504L6.2207%208.21582L5.92421%208.41211L6.03701%208.09277L5.7373%207.89648H6.1079L6.22392%207.57715ZM8.31543%207.57715L8.42822%207.89648H8.79882L8.49912%208.09277L8.61513%208.41504L8.31543%208.21582L8.01572%208.41211L8.13174%208.09277L7.83203%207.89648H8.19941L8.31543%207.57715ZM10.4037%207.57715L10.5197%207.89648H10.8871L10.5907%208.09277L10.7034%208.41504L10.4037%208.21582L10.1072%208.41211L10.22%208.09277L9.92353%207.89648H10.2909L10.4037%207.57715ZM12.4952%207.57715L12.608%207.89648H12.9786L12.6789%208.09277L12.795%208.41504L12.4952%208.21582L12.1955%208.41211L12.3115%208.09277L12.0118%207.89648H12.3825L12.4952%207.57715ZM3.09151%208.38574L3.2043%208.70508H3.5749L3.27519%208.90137L3.38799%209.2207L3.09151%209.02148L2.7918%209.2207L2.90459%208.89844L2.6081%208.70215H2.97549L3.09151%208.38574ZM5.17978%208.38574L5.2958%208.70508H5.66318L5.36348%208.90137L5.4795%209.2207L5.17978%209.02148L4.88007%209.2207L4.99609%208.89844L4.69638%208.70215H5.067L5.17978%208.38574ZM7.27129%208.38574L7.38408%208.70508H7.75468L7.45497%208.90137L7.56777%209.2207L7.27129%209.02148L6.97158%209.2207L7.08437%208.89844L6.78789%208.70215H7.15527L7.27129%208.38574ZM9.35957%208.38574L9.47559%208.70508H9.84301L9.54648%208.90137L9.65928%209.2207L9.35957%209.02148L9.06309%209.2207L9.17588%208.89844L8.87617%208.70215H9.25L9.35957%208.38574ZM11.4511%208.38574L11.5638%208.70508H11.9344L11.6348%208.90137L11.7475%209.2207L11.4511%209.02148L11.1513%209.2207L11.2642%208.89844L10.9676%208.70215H11.335L11.4511%208.38574ZM2.04414%209.1914L2.16016%209.51367H2.52754L2.23105%209.70996L2.34385%2010.0264L2.04414%209.83008L1.74766%2010.0264L1.86045%209.70703L1.56075%209.51074H1.93457L2.04414%209.1914ZM4.13565%209.1914L4.24843%209.51367H4.61904L4.31934%209.70996L4.43535%2010.0264L4.13565%209.83008L3.83593%2010.0264L3.95195%209.70703L3.65224%209.51074H4.01963L4.13565%209.1914ZM6.22392%209.1914L6.33994%209.51367H6.7041L6.40762%209.70996L6.5204%2010.0264L6.2207%209.83008L5.92421%2010.0264L6.03701%209.70703L5.7373%209.51074H6.1079L6.22392%209.1914ZM8.31543%209.1914L8.42822%209.51367H8.79882L8.49912%209.70996L8.61513%2010.0264L8.31543%209.83008L8.01572%2010.0264L8.13174%209.70703L7.83203%209.51074H8.19941L8.31543%209.1914ZM10.4037%209.1914L10.5197%209.51367H10.8871L10.5907%209.70996L10.7034%2010.0264L10.4037%209.83008L10.1072%2010.0264L10.22%209.70703L9.92353%209.51074H10.2909L10.4037%209.1914ZM12.4952%209.1914L12.608%209.51367H12.9786L12.6789%209.70996L12.795%2010.0264L12.4952%209.83008L12.1955%2010.0264L12.3115%209.70703L12.0118%209.51074H12.3825L12.4952%209.1914ZM3.09151%2010L3.2043%2010.3193H3.5749L3.27519%2010.5156L3.38799%2010.8379L3.09151%2010.6387L2.7918%2010.835L2.90459%2010.5156L2.6081%2010.3193H2.97549L3.09151%2010ZM5.17978%2010L5.2958%2010.3193H5.66318L5.36348%2010.5156L5.4795%2010.8379L5.17978%2010.6387L4.88007%2010.835L4.99609%2010.5156L4.69638%2010.3193H5.067L5.17978%2010ZM7.27129%2010L7.38408%2010.3193H7.75468L7.45497%2010.5156L7.56777%2010.8379L7.27129%2010.6387L6.97158%2010.835L7.08437%2010.5156L6.78789%2010.3193H7.15527L7.27129%2010ZM9.35957%2010L9.47559%2010.3193H9.84301L9.54648%2010.5156L9.65928%2010.8379L9.35957%2010.6387L9.06309%2010.835L9.17588%2010.5156L8.87617%2010.3193H9.25L9.35957%2010ZM11.4511%2010L11.5638%2010.3193H11.9344L11.6348%2010.5156L11.7475%2010.8379L11.4511%2010.6387L11.1513%2010.835L11.2642%2010.5156L10.9676%2010.3193H11.335L11.4511%2010ZM2.04414%2010.8086L2.16016%2011.1279H2.52754L2.23105%2011.3242L2.34385%2011.6436L2.04414%2011.4473L1.74766%2011.6436L1.86045%2011.3213L1.56075%2011.125H1.93457L2.04414%2010.8086ZM4.13565%2010.8086L4.24843%2011.1279H4.61904L4.31934%2011.3242L4.43535%2011.6436L4.13565%2011.4473L3.83593%2011.6436L3.95195%2011.3213L3.65224%2011.125H4.01963L4.13565%2010.8086ZM6.22392%2010.8086L6.33994%2011.1279H6.7041L6.41407%2011.3242L6.52685%2011.6436L6.22714%2011.4473L5.93066%2011.6436L6.04345%2011.3213L5.74375%2011.125H6.11435L6.22392%2010.8086ZM8.31543%2010.8086L8.42822%2011.1279H8.79882L8.49912%2011.3242L8.61513%2011.6436L8.31543%2011.4473L8.01572%2011.6436L8.13174%2011.3213L7.83203%2011.125H8.19941L8.31543%2010.8086ZM10.4037%2010.8086L10.5197%2011.1279H10.8871L10.5907%2011.3242L10.7034%2011.6436L10.4037%2011.4473L10.1072%2011.6436L10.22%2011.3213L9.92353%2011.125H10.2909L10.4037%2010.8086ZM12.4952%2010.8086L12.608%2011.1279H12.9786L12.6789%2011.3242L12.795%2011.6436L12.4952%2011.4473L12.1955%2011.6436L12.3115%2011.3213L12.0118%2011.125H12.3825L12.4952%2010.8086Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='flag_es'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M1%204H23V19H1V4Z'%20fill='%23C60B1E'/%3e%3cpath%20d='M1%208H23V15H1V8Z'%20fill='%23FFC400'/%3e%3cpath%20d='M4.9789%2010.6656L4.9539%2010.6625L4.92265%2010.6312L4.90077%2010.6187L4.88202%2010.5937C4.88202%2010.5937%204.86015%2010.5594%204.86952%2010.5312C4.8789%2010.5031%204.89765%2010.4937%204.91327%2010.4844C4.92854%2010.4781%204.9442%2010.4729%204.96015%2010.4687L4.9914%2010.4562L5.03202%2010.4469L5.04765%2010.4375C5.0539%2010.4375%205.06952%2010.4375%205.0789%2010.4312L5.11015%2010.425L5.16015%2010.4281H5.31015C5.32265%2010.4281%205.34765%2010.4375%205.3539%2010.4406C5.37451%2010.4485%205.39535%2010.4558%205.4164%2010.4625C5.43202%2010.4656%205.4664%2010.4719%205.48515%2010.4812C5.50077%2010.4906%205.51327%2010.5031%205.51952%2010.5125L5.53515%2010.5437V10.5781L5.51952%2010.6031L5.50077%2010.6344L5.47577%2010.6531C5.47577%2010.6531%205.46015%2010.6687%205.44452%2010.6656C5.43202%2010.6656%205.29452%2010.6406%205.20702%2010.6406C5.11952%2010.6406%204.9789%2010.6687%204.9789%2010.6687'%20fill='%23AD1519'/%3e%3cpath%20d='M4.9789%2010.6656L4.9539%2010.6625L4.92265%2010.6312L4.90077%2010.6187L4.88202%2010.5937C4.88202%2010.5937%204.86015%2010.5594%204.86952%2010.5312C4.8789%2010.5031%204.89765%2010.4937%204.91327%2010.4844C4.92854%2010.4781%204.9442%2010.4729%204.96015%2010.4687L4.9914%2010.4562L5.03202%2010.4469L5.04765%2010.4375C5.0539%2010.4375%205.06952%2010.4375%205.0789%2010.4312L5.11015%2010.425L5.16015%2010.4281H5.31015C5.32265%2010.4281%205.34765%2010.4375%205.3539%2010.4406C5.37451%2010.4485%205.39535%2010.4558%205.4164%2010.4625C5.43202%2010.4656%205.4664%2010.4719%205.48515%2010.4812C5.50077%2010.4906%205.51327%2010.5031%205.51952%2010.5125L5.53515%2010.5437V10.5781L5.51952%2010.6031L5.50077%2010.6344L5.47577%2010.6531C5.47577%2010.6531%205.46015%2010.6687%205.44452%2010.6656C5.43202%2010.6656%205.29452%2010.6406%205.20702%2010.6406C5.11952%2010.6406%204.9789%2010.6687%204.9789%2010.6687V10.6656Z'%20stroke='black'%20stroke-width='0.075'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.16602%2010.4687C5.16602%2010.4281%205.18477%2010.3969%205.20664%2010.3969C5.23164%2010.3969%205.25039%2010.4281%205.25039%2010.4719C5.25039%2010.5125%205.23164%2010.5469%205.20664%2010.5469C5.18164%2010.5469%205.16602%2010.5125%205.16602%2010.4687Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.16602%2010.4687C5.16602%2010.4281%205.18477%2010.3969%205.20664%2010.3969C5.23164%2010.3969%205.25039%2010.4281%205.25039%2010.4719C5.25039%2010.5125%205.23164%2010.5469%205.20664%2010.5469C5.18164%2010.5469%205.16602%2010.5125%205.16602%2010.4687Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.18848%2010.4687C5.18848%2010.4312%205.19785%2010.4031%205.21035%2010.4031C5.21973%2010.4031%205.2291%2010.4344%205.2291%2010.4687C5.2291%2010.5094%205.21973%2010.5375%205.21035%2010.5375C5.19785%2010.5375%205.1916%2010.5062%205.1916%2010.4687'%20fill='%23C8B100'/%3e%3cpath%20d='M5.18848%2010.4687C5.18848%2010.4312%205.19785%2010.4031%205.21035%2010.4031C5.21973%2010.4031%205.2291%2010.4344%205.2291%2010.4687C5.2291%2010.5094%205.21973%2010.5375%205.21035%2010.5375C5.19785%2010.5375%205.1916%2010.5062%205.1916%2010.4687H5.18848Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.18262%2010.3906C5.18262%2010.3781%205.19512%2010.3656%205.20762%2010.3656C5.22012%2010.3656%205.23887%2010.3781%205.23887%2010.3906C5.23887%2010.4062%205.22324%2010.4187%205.20762%2010.4187C5.19199%2010.4187%205.18262%2010.4062%205.18262%2010.3906Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.22676%2010.3813V10.4H5.18301V10.3813H5.19863V10.3438H5.17676V10.325H5.19863V10.3094H5.21426V10.325H5.23301V10.3438H5.21426V10.3813H5.22676Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.22676%2010.3813V10.4H5.18301V10.3813H5.19863V10.3438H5.17676V10.325H5.19863V10.3094H5.21426V10.325H5.23301V10.3438H5.21426V10.3813H5.22676Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.24707%2010.3813V10.4H5.16895V10.3813H5.2002V10.3438H5.17832V10.325H5.2002V10.3094H5.21582V10.325H5.23457V10.3438H5.21582V10.3813H5.24707Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.24707%2010.3813V10.4H5.16895V10.3813H5.2002V10.3438H5.17832V10.325H5.2002V10.3094H5.21582V10.325H5.23457V10.3438H5.21582V10.3813H5.24707Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.21426%2010.3656C5.22676%2010.3687%205.23301%2010.3781%205.23301%2010.3906C5.23301%2010.4062%205.22051%2010.4187%205.20801%2010.4187C5.19551%2010.4187%205.17676%2010.4062%205.17676%2010.3906C5.17676%2010.3781%205.18613%2010.3687%205.19863%2010.3656'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.20918%2010.6625H5.0623V10.6281L5.05293%2010.5906L5.04668%2010.5437C5.00605%2010.4906%204.96855%2010.4562%204.95605%2010.4656C4.95918%2010.4562%204.9623%2010.4469%204.97168%2010.4437C5.00605%2010.4219%205.08105%2010.475%205.13418%2010.5562L5.1498%2010.5781H5.26855L5.28105%2010.5562C5.3373%2010.4719%205.40918%2010.4219%205.44355%2010.4437C5.45293%2010.4469%205.45605%2010.4562%205.45918%2010.4656C5.44668%2010.4562%205.40918%2010.4906%205.36855%2010.5437L5.3623%2010.5906L5.35605%2010.6281L5.35293%2010.6625H5.20605'%20fill='%23C8B100'/%3e%3cpath%20d='M5.20918%2010.6625H5.0623V10.6281L5.05293%2010.5906L5.04668%2010.5437C5.00605%2010.4906%204.96855%2010.4562%204.95605%2010.4656C4.95918%2010.4562%204.9623%2010.4469%204.97168%2010.4437C5.00605%2010.4219%205.08105%2010.475%205.13418%2010.5562L5.1498%2010.5781H5.26855L5.28105%2010.5562C5.3373%2010.4719%205.40918%2010.4219%205.44355%2010.4437C5.45293%2010.4469%205.45605%2010.4562%205.45918%2010.4656C5.44668%2010.4562%205.40918%2010.4906%205.36855%2010.5437L5.3623%2010.5906L5.35605%2010.6281L5.35293%2010.6625H5.20605H5.20918Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.45137%2010.4625C5.42637%2010.4469%205.36387%2010.4969%205.31074%2010.575M4.96387%2010.4625C4.99512%2010.4469%205.05762%2010.4969%205.10762%2010.575L4.96387%2010.4625Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M4.99414%2010.7281L4.97852%2010.6969C5.12876%2010.6549%205.28765%2010.6549%205.43789%2010.6969L5.42227%2010.7219C5.41852%2010.73%205.41539%2010.7383%205.41289%2010.7469C5.34572%2010.7286%205.27624%2010.7201%205.20664%2010.7219C5.12539%2010.7219%205.04414%2010.7313%205.00352%2010.7469L4.99414%2010.7281Z'%20fill='%23C8B100'/%3e%3cpath%20d='M4.99414%2010.7281L4.97852%2010.6969C5.12876%2010.6549%205.28765%2010.6549%205.43789%2010.6969L5.42227%2010.7219C5.41852%2010.73%205.41539%2010.7383%205.41289%2010.7469C5.34572%2010.7286%205.27624%2010.7201%205.20664%2010.7219C5.12539%2010.7219%205.04414%2010.7313%205.00352%2010.7469L4.99414%2010.7281Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.20664%2010.8031C5.28164%2010.8031%205.36289%2010.7906%205.39102%2010.7844C5.40977%2010.7781%205.42227%2010.7688%205.42227%2010.7594C5.42227%2010.7531%205.41602%2010.75%205.40977%2010.7469C5.36602%2010.7313%205.28477%2010.7219%205.20664%2010.7219C5.12852%2010.7219%205.05039%2010.7313%205.00664%2010.7469C5.00039%2010.7469%204.99727%2010.7531%204.99414%2010.7563C4.99414%2010.7688%205.00352%2010.7781%205.02539%2010.7844C5.05664%2010.7906%205.13477%2010.8031%205.20664%2010.8031Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.20664%2010.8031C5.28164%2010.8031%205.36289%2010.7906%205.39102%2010.7844C5.40977%2010.7781%205.42227%2010.7688%205.42227%2010.7594C5.42227%2010.7531%205.41602%2010.75%205.40977%2010.7469C5.36602%2010.7313%205.28477%2010.7219%205.20664%2010.7219C5.12852%2010.7219%205.05039%2010.7313%205.00664%2010.7469C5.00039%2010.7469%204.99727%2010.7531%204.99414%2010.7563C4.99414%2010.7688%205.00352%2010.7781%205.02539%2010.7844C5.05664%2010.7906%205.13477%2010.8031%205.20664%2010.8031Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.44121%2010.6625L5.42559%2010.6469C5.42559%2010.6469%205.40684%2010.6563%205.38496%2010.6531C5.36621%2010.6531%205.35684%2010.6219%205.35684%2010.6219C5.35684%2010.6219%205.33496%2010.6438%205.31621%2010.6438C5.29434%2010.6438%205.28496%2010.625%205.28496%2010.625C5.28496%2010.625%205.26309%2010.6406%205.24434%2010.6375C5.22559%2010.6375%205.20684%2010.6125%205.20684%2010.6125C5.20684%2010.6125%205.18809%2010.6375%205.16934%2010.6375C5.15059%2010.6406%205.13809%2010.6219%205.13809%2010.6219C5.13809%2010.6219%205.12559%2010.6406%205.10371%2010.6438C5.08184%2010.6469%205.05996%2010.625%205.05996%2010.625C5.05996%2010.625%205.04434%2010.6469%205.02871%2010.6563C5.01309%2010.6563%204.99121%2010.6438%204.99121%2010.6438L4.98496%2010.6594L4.97559%2010.6625L4.98184%2010.6781C5.05523%2010.6587%205.13091%2010.6492%205.20684%2010.65C5.30059%2010.65%205.37871%2010.6625%205.43809%2010.6813L5.44434%2010.6625'%20fill='%23C8B100'/%3e%3cpath%20d='M5.44121%2010.6625L5.42559%2010.6469C5.42559%2010.6469%205.40684%2010.6563%205.38496%2010.6531C5.36621%2010.6531%205.35684%2010.6219%205.35684%2010.6219C5.35684%2010.6219%205.33496%2010.6438%205.31621%2010.6438C5.29434%2010.6438%205.28496%2010.625%205.28496%2010.625C5.28496%2010.625%205.26309%2010.6406%205.24434%2010.6375C5.22559%2010.6375%205.20684%2010.6125%205.20684%2010.6125C5.20684%2010.6125%205.18809%2010.6375%205.16934%2010.6375C5.15059%2010.6406%205.13809%2010.6219%205.13809%2010.6219C5.13809%2010.6219%205.12559%2010.6406%205.10371%2010.6438C5.08184%2010.6469%205.05996%2010.625%205.05996%2010.625C5.05996%2010.625%205.04434%2010.6469%205.02871%2010.6563C5.01309%2010.6563%204.99121%2010.6438%204.99121%2010.6438L4.98496%2010.6594L4.97559%2010.6625L4.98184%2010.6781C5.05523%2010.6587%205.13091%2010.6492%205.20684%2010.65C5.30059%2010.65%205.37871%2010.6625%205.43809%2010.6813L5.44434%2010.6625H5.44121Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.21074%2010.5844H5.21699C5.21615%2010.5885%205.21615%2010.5927%205.21699%2010.5969C5.21699%2010.6156%205.22949%2010.6281%205.24824%2010.6281C5.25514%2010.6284%205.26194%2010.6265%205.26759%2010.6225C5.27324%2010.6186%205.27743%2010.6128%205.27949%2010.6062L5.28574%2010.5969V10.6094C5.28887%2010.625%205.30449%2010.6344%205.32012%2010.6344C5.33887%2010.6344%205.35137%2010.6219%205.35137%2010.6031V10.6L5.36387%2010.5875L5.37012%2010.6031C5.36812%2010.607%205.36705%2010.6113%205.36699%2010.6156C5.36699%2010.6239%205.37028%2010.6319%205.37614%2010.6377C5.38201%2010.6436%205.38995%2010.6469%205.39824%2010.6469C5.41074%2010.6469%205.42012%2010.6406%205.42637%2010.6312L5.43262%2010.625V10.6344C5.43262%2010.6437%205.43574%2010.6531%205.44512%2010.6562C5.44512%2010.6562%205.45762%2010.6562%205.47637%2010.6437L5.49824%2010.6219V10.6344C5.49824%2010.6344%205.48262%2010.6594%205.46699%2010.6656C5.46074%2010.6719%205.45137%2010.6781%205.44199%2010.675C5.43262%2010.675%205.42324%2010.6656%205.42012%2010.6562C5.41387%2010.6625%205.40762%2010.6625%205.39824%2010.6625C5.37949%2010.6625%205.36074%2010.6531%205.35449%2010.6375C5.34512%2010.6469%205.33262%2010.6531%205.32012%2010.6531C5.31288%2010.6529%205.30578%2010.6511%205.29931%2010.6479C5.29283%2010.6446%205.28714%2010.64%205.28262%2010.6344C5.27396%2010.642%205.26292%2010.6464%205.25137%2010.6469C5.2436%2010.6471%205.23589%2010.6456%205.22884%2010.6423C5.22179%2010.639%205.21559%2010.6342%205.21074%2010.6281C5.20651%2010.6339%205.2011%2010.6386%205.19488%2010.6421C5.18866%2010.6456%205.18176%2010.6477%205.17466%2010.6483C5.16756%2010.6489%205.16041%2010.6479%205.1537%2010.6455C5.14699%2010.6431%205.14086%2010.6393%205.13574%2010.6344C5.13122%2010.64%205.12553%2010.6446%205.11905%2010.6479C5.11258%2010.6511%205.10548%2010.6529%205.09824%2010.6531C5.09174%2010.653%205.08533%2010.6516%205.07941%2010.6489C5.07349%2010.6462%205.0682%2010.6423%205.06387%2010.6375C5.05762%2010.6531%205.03887%2010.6625%205.02012%2010.6625C5.01387%2010.6625%205.00449%2010.6625%204.99824%2010.6562C4.99512%2010.6656%204.98574%2010.675%204.97637%2010.675C4.96699%2010.675%204.95762%2010.675%204.94824%2010.6687L4.91699%2010.6375L4.92012%2010.6219L4.94512%2010.6437C4.96074%2010.6562%204.97324%2010.6562%204.97324%2010.6562C4.98262%2010.6562%204.98574%2010.6437%204.98574%2010.6344V10.625L4.99199%2010.6312C4.99824%2010.6406%205.00762%2010.6469%205.02012%2010.6469C5.02841%2010.6469%205.03635%2010.6436%205.04221%2010.6377C5.04807%2010.6319%205.05137%2010.6239%205.05137%2010.6156C5.0523%2010.6115%205.0523%2010.6072%205.05137%2010.6031V10.5875L5.06387%2010.6V10.6031C5.06387%2010.6219%205.07949%2010.6344%205.09512%2010.6344C5.11387%2010.6344%205.12637%2010.625%205.12949%2010.6062V10.5969L5.13574%2010.6062C5.14199%2010.6187%205.15449%2010.6281%205.16699%2010.6281C5.18887%2010.6281%205.20137%2010.6156%205.20137%2010.5969C5.20184%2010.5938%205.20184%2010.5906%205.20137%2010.5875H5.21074'%20fill='%23C8B100'/%3e%3cpath%20d='M5.21074%2010.5844H5.21699C5.21615%2010.5885%205.21615%2010.5927%205.21699%2010.5969C5.21699%2010.6156%205.22949%2010.6281%205.24824%2010.6281C5.25514%2010.6284%205.26194%2010.6265%205.26759%2010.6225C5.27324%2010.6186%205.27743%2010.6128%205.27949%2010.6062L5.28574%2010.5969V10.6094C5.28887%2010.625%205.30449%2010.6344%205.32012%2010.6344C5.33887%2010.6344%205.35137%2010.6219%205.35137%2010.6031V10.6L5.36387%2010.5875L5.37012%2010.6031C5.36812%2010.607%205.36705%2010.6113%205.36699%2010.6156C5.36699%2010.6239%205.37028%2010.6319%205.37614%2010.6377C5.38201%2010.6436%205.38995%2010.6469%205.39824%2010.6469C5.41074%2010.6469%205.42012%2010.6406%205.42637%2010.6312L5.43262%2010.625V10.6344C5.43262%2010.6437%205.43574%2010.6531%205.44512%2010.6562C5.44512%2010.6562%205.45762%2010.6562%205.47637%2010.6437L5.49824%2010.6219V10.6344C5.49824%2010.6344%205.48262%2010.6594%205.46699%2010.6656C5.46074%2010.6719%205.45137%2010.6781%205.44199%2010.675C5.43262%2010.675%205.42324%2010.6656%205.42012%2010.6562C5.41387%2010.6625%205.40762%2010.6625%205.39824%2010.6625C5.37949%2010.6625%205.36074%2010.6531%205.35449%2010.6375C5.34512%2010.6469%205.33262%2010.6531%205.32012%2010.6531C5.31288%2010.6529%205.30578%2010.6511%205.29931%2010.6479C5.29283%2010.6446%205.28714%2010.64%205.28262%2010.6344C5.27396%2010.642%205.26292%2010.6464%205.25137%2010.6469C5.2436%2010.6471%205.23589%2010.6456%205.22884%2010.6423C5.22179%2010.639%205.21559%2010.6342%205.21074%2010.6281C5.20651%2010.6339%205.2011%2010.6386%205.19488%2010.6421C5.18866%2010.6456%205.18176%2010.6477%205.17466%2010.6483C5.16756%2010.6489%205.16041%2010.6479%205.1537%2010.6455C5.14699%2010.6431%205.14086%2010.6393%205.13574%2010.6344C5.13122%2010.64%205.12553%2010.6446%205.11905%2010.6479C5.11258%2010.6511%205.10548%2010.6529%205.09824%2010.6531C5.09174%2010.653%205.08533%2010.6516%205.07941%2010.6489C5.07349%2010.6462%205.0682%2010.6423%205.06387%2010.6375C5.05762%2010.6531%205.03887%2010.6625%205.02012%2010.6625C5.01387%2010.6625%205.00449%2010.6625%204.99824%2010.6562C4.99512%2010.6656%204.98574%2010.675%204.97637%2010.675C4.96699%2010.675%204.95762%2010.675%204.94824%2010.6687L4.91699%2010.6375L4.92012%2010.6219L4.94512%2010.6437C4.96074%2010.6562%204.97324%2010.6562%204.97324%2010.6562C4.98262%2010.6562%204.98574%2010.6437%204.98574%2010.6344V10.625L4.99199%2010.6312C4.99824%2010.6406%205.00762%2010.6469%205.02012%2010.6469C5.02841%2010.6469%205.03635%2010.6436%205.04221%2010.6377C5.04807%2010.6319%205.05137%2010.6239%205.05137%2010.6156C5.0523%2010.6115%205.0523%2010.6072%205.05137%2010.6031V10.5875L5.06387%2010.6V10.6031C5.06387%2010.6219%205.07949%2010.6344%205.09512%2010.6344C5.11387%2010.6344%205.12637%2010.625%205.12949%2010.6062V10.5969L5.13574%2010.6062C5.14199%2010.6187%205.15449%2010.6281%205.16699%2010.6281C5.18887%2010.6281%205.20137%2010.6156%205.20137%2010.5969C5.20184%2010.5938%205.20184%2010.5906%205.20137%2010.5875H5.21074V10.5844Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.20723%2010.6656C5.1166%2010.6656%205.03535%2010.6781%204.9791%2010.6969L4.96973%2010.6906L4.97285%2010.6812C5.04912%2010.6599%205.12802%2010.6494%205.20723%2010.65C5.30098%2010.65%205.38535%2010.6625%205.44473%2010.6812C5.44473%2010.6812%205.45098%2010.6875%205.44785%2010.6906L5.43848%2010.6969C5.36319%2010.6759%205.28538%2010.6654%205.20723%2010.6656Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.20723%2010.6656C5.1166%2010.6656%205.03535%2010.6781%204.9791%2010.6969L4.96973%2010.6906L4.97285%2010.6812C5.04912%2010.6599%205.12802%2010.6494%205.20723%2010.65C5.30098%2010.65%205.38535%2010.6625%205.44473%2010.6812C5.44473%2010.6812%205.45098%2010.6875%205.44785%2010.6906L5.43848%2010.6969C5.36319%2010.6759%205.28538%2010.6654%205.20723%2010.6656Z'%20stroke='black'%20stroke-width='0.075'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.11817%2010.7004C5.11817%2010.6907%205.12463%2010.6875%205.13432%2010.6875C5.13774%2010.6875%205.14103%2010.6889%205.14345%2010.6913C5.14587%2010.6937%205.14723%2010.697%205.14723%2010.7004C5.14723%2010.7069%205.14077%2010.7133%205.13432%2010.7133C5.13237%2010.7138%205.13034%2010.7139%205.12838%2010.7135C5.12642%2010.713%205.12458%2010.7122%205.12301%2010.7109C5.12301%2010.7109%205.12019%2010.7081%205.11935%2010.7062C5.11935%2010.7062%205.11811%2010.7024%205.11817%2010.7004Z'%20fill='white'/%3e%3cpath%20d='M5.11817%2010.7004C5.11817%2010.6907%205.12463%2010.6875%205.13432%2010.6875C5.13774%2010.6875%205.14103%2010.6889%205.14345%2010.6913C5.14587%2010.6937%205.14723%2010.697%205.14723%2010.7004C5.14723%2010.7069%205.14077%2010.7133%205.13432%2010.7133C5.13237%2010.7138%205.13034%2010.7139%205.12838%2010.7135C5.12642%2010.713%205.12458%2010.7122%205.12301%2010.7109C5.12301%2010.7109%205.12019%2010.7081%205.11935%2010.7062C5.11935%2010.7062%205.11811%2010.7024%205.11817%2010.7004Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.20957%2010.7031H5.17832C5.1752%2010.7031%205.16895%2010.7031%205.16895%2010.6938L5.17832%2010.6844H5.24082C5.24274%2010.685%205.24438%2010.6863%205.24551%2010.688C5.24664%2010.6897%205.24718%2010.6917%205.24707%2010.6938C5.24707%2010.6962%205.24608%2010.6986%205.24432%2010.7004C5.24256%2010.7021%205.24018%2010.7031%205.23769%2010.7031H5.20644'%20fill='%23AD1519'/%3e%3cpath%20d='M5.20957%2010.7031H5.17832C5.1752%2010.7031%205.16895%2010.7031%205.16895%2010.6938L5.17832%2010.6844H5.24082C5.24274%2010.685%205.24438%2010.6863%205.24551%2010.688C5.24664%2010.6897%205.24718%2010.6917%205.24707%2010.6938C5.24707%2010.6962%205.24608%2010.6986%205.24432%2010.7004C5.24256%2010.7021%205.24018%2010.7031%205.23769%2010.7031H5.20644'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.06154%2010.7156H5.03966C5.03654%2010.7156%205.03029%2010.7156%205.03029%2010.7094C5.03017%2010.7073%205.03072%2010.7053%205.03185%2010.7036C5.03185%2010.7036%205.03462%2010.7007%205.03654%2010.7L5.05841%2010.6969L5.08029%2010.6937C5.08654%2010.6937%205.08966%2010.6937%205.09279%2010.7L5.09322%2010.7045L5.09146%2010.7088L5.0879%2010.7116L5.08341%2010.7125H5.06154'%20fill='%23058E6E'/%3e%3cpath%20d='M5.06154%2010.7156H5.03966C5.03654%2010.7156%205.03029%2010.7156%205.03029%2010.7094C5.03017%2010.7073%205.03072%2010.7053%205.03185%2010.7036C5.03185%2010.7036%205.03462%2010.7007%205.03654%2010.7L5.05841%2010.6969L5.08029%2010.6937C5.08654%2010.6937%205.08966%2010.6937%205.09279%2010.7L5.09322%2010.7045L5.09146%2010.7088L5.0879%2010.7116L5.08341%2010.7125H5.06154'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M4.97852%2010.7281L4.98789%2010.7156H5.00977L4.99727%2010.7344L4.97852%2010.7281Z'%20fill='%23AD1519'/%3e%3cpath%20d='M4.97852%2010.7281L4.98789%2010.7156H5.00977L4.99727%2010.7344L4.97852%2010.7281Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.26855%2010.7004C5.26855%2010.6907%205.27501%2010.6875%205.28147%2010.6875C5.28341%2010.687%205.28545%2010.687%205.28741%2010.6874C5.28937%2010.6878%205.29278%2010.6899%205.29278%2010.6899C5.29434%2010.6912%205.29644%2010.6946%205.29644%2010.6946C5.29644%2010.6946%205.29768%2010.6984%205.29762%2010.7004C5.29768%2010.7024%205.29728%2010.7044%205.29644%2010.7063L5.29278%2010.7109C5.29121%2010.7122%205.28937%2010.7131%205.28741%2010.7135C5.28545%2010.7139%205.28341%2010.7139%205.28147%2010.7133C5.27805%2010.7133%205.27476%2010.712%205.27234%2010.7096C5.26992%2010.7071%205.26855%2010.7039%205.26855%2010.7004Z'%20fill='white'/%3e%3cpath%20d='M5.26855%2010.7004C5.26855%2010.6907%205.27501%2010.6875%205.28147%2010.6875C5.28341%2010.687%205.28545%2010.687%205.28741%2010.6874C5.28937%2010.6878%205.29278%2010.6899%205.29278%2010.6899C5.29434%2010.6912%205.29644%2010.6946%205.29644%2010.6946C5.29644%2010.6946%205.29768%2010.6984%205.29762%2010.7004C5.29768%2010.7024%205.29728%2010.7044%205.29644%2010.7063L5.29278%2010.7109C5.29121%2010.7122%205.28937%2010.7131%205.28741%2010.7135C5.28545%2010.7139%205.28341%2010.7139%205.28147%2010.7133C5.27805%2010.7133%205.27476%2010.712%205.27234%2010.7096C5.26992%2010.7071%205.26855%2010.7039%205.26855%2010.7004Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.35352%2010.7156H5.37227L5.37612%2010.7163L5.37991%2010.7153L5.38297%2010.7129L5.38477%2010.7094L5.38405%2010.7058L5.38202%2010.7027L5.37898%2010.7007L5.37539%2010.7L5.35664%2010.6969L5.33477%2010.6937C5.32852%2010.6937%205.32539%2010.6937%205.32227%2010.7C5.32227%2010.7062%205.32539%2010.7094%205.33164%2010.7125H5.35352'%20fill='%23058E6E'/%3e%3cpath%20d='M5.35352%2010.7156H5.37227L5.37612%2010.7163L5.37991%2010.7153L5.38297%2010.7129L5.38477%2010.7094L5.38405%2010.7058L5.38202%2010.7027L5.37898%2010.7007L5.37539%2010.7L5.35664%2010.6969L5.33477%2010.6937C5.32852%2010.6937%205.32539%2010.6937%205.32227%2010.7C5.32227%2010.7062%205.32539%2010.7094%205.33164%2010.7125H5.35352'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.43848%2010.7313L5.4291%2010.7156H5.40723L5.4166%2010.7344L5.43535%2010.7313'%20fill='%23AD1519'/%3e%3cpath%20d='M5.43848%2010.7313L5.4291%2010.7156H5.40723L5.4166%2010.7344L5.43535%2010.7313'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.20703%2010.7844C5.144%2010.7857%205.08105%2010.7794%205.01953%2010.7656C5.14375%2010.7353%205.27344%2010.7353%205.39766%2010.7656C5.34766%2010.7781%205.28203%2010.7844%205.21016%2010.7844'%20fill='%23AD1519'/%3e%3cpath%20d='M5.20703%2010.7844C5.144%2010.7857%205.08105%2010.7794%205.01953%2010.7656C5.14375%2010.7353%205.27344%2010.7353%205.39766%2010.7656C5.34766%2010.7781%205.28203%2010.7844%205.21016%2010.7844H5.20703Z'%20stroke='black'%20stroke-width='0.075'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.43848%2010.625L5.43535%2010.6156C5.4291%2010.6156%205.42598%2010.6156%205.42285%2010.6219C5.42285%2010.6281%205.42285%2010.6344%205.4291%2010.6344C5.4291%2010.6344%205.43535%2010.6344%205.43848%2010.625Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.43848%2010.625L5.43535%2010.6156C5.4291%2010.6156%205.42598%2010.6156%205.42285%2010.6219C5.42285%2010.6281%205.42285%2010.6344%205.4291%2010.6344C5.4291%2010.6344%205.43535%2010.6344%205.43848%2010.625Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.29124%2010.6004C5.29124%2010.594%205.29124%2010.5875%205.28478%2010.5875C5.28478%2010.5875%205.27832%2010.5907%205.27832%2010.5972C5.27832%2010.6036%205.27832%2010.6101%205.28478%2010.6101L5.29447%2010.6004'%20fill='%23C8B100'/%3e%3cpath%20d='M5.29124%2010.6004C5.29124%2010.594%205.29124%2010.5875%205.28478%2010.5875C5.28478%2010.5875%205.27832%2010.5907%205.27832%2010.5972C5.27832%2010.6036%205.27832%2010.6101%205.28478%2010.6101L5.29447%2010.6004H5.29124Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.125%2010.6004L5.12823%2010.5875C5.13469%2010.5875%205.13792%2010.5907%205.13792%2010.5972C5.13792%2010.6036%205.13792%2010.6101%205.13146%2010.6101L5.125%2010.6004Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.125%2010.6004L5.12823%2010.5875C5.13469%2010.5875%205.13792%2010.5907%205.13792%2010.5972C5.13792%2010.6036%205.13792%2010.6101%205.13146%2010.6101L5.125%2010.6004Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M4.97852%2010.625L4.98164%2010.6156C4.98789%2010.6156%204.99102%2010.6156%204.99414%2010.6219C4.99414%2010.6281%204.99414%2010.6344%204.98789%2010.6344C4.98789%2010.6344%204.98164%2010.6344%204.97852%2010.625Z'%20fill='%23C8B100'/%3e%3cpath%20d='M4.97852%2010.625L4.98164%2010.6156C4.98789%2010.6156%204.99102%2010.6156%204.99414%2010.6219C4.99414%2010.6281%204.99414%2010.6344%204.98789%2010.6344C4.98789%2010.6344%204.98164%2010.6344%204.97852%2010.625Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.20762%2010.5156L5.18262%2010.5313L5.20137%2010.5719L5.20762%2010.575L5.21387%2010.5719L5.23574%2010.5313L5.20762%2010.5156Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.20762%2010.5156L5.18262%2010.5313L5.20137%2010.5719L5.20762%2010.575L5.21387%2010.5719L5.23574%2010.5313L5.20762%2010.5156Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.15137%2010.5781L5.16387%2010.5938L5.20449%2010.5813L5.20762%2010.575L5.20449%2010.5688L5.16387%2010.5594L5.15137%2010.5781Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.15137%2010.5781L5.16387%2010.5938L5.20449%2010.5813L5.20762%2010.575L5.20449%2010.5688L5.16387%2010.5594L5.15137%2010.5781Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.2623%2010.5781L5.25293%2010.5938L5.2123%2010.5813L5.20605%2010.575L5.2123%2010.5688L5.25293%2010.5594L5.2623%2010.5781Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.2623%2010.5781L5.25293%2010.5938L5.2123%2010.5813L5.20605%2010.575L5.2123%2010.5688L5.25293%2010.5594L5.2623%2010.5781Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.04141%2010.5312L5.01953%2010.5531L5.04766%2010.5844L5.05391%2010.5875L5.05703%2010.5844L5.06641%2010.5437L5.04141%2010.5344'%20fill='%23C8B100'/%3e%3cpath%20d='M5.04141%2010.5312L5.01953%2010.5531L5.04766%2010.5844L5.05391%2010.5875L5.05703%2010.5844L5.06641%2010.5437L5.04141%2010.5344'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.00117%2010.6L5.01367%2010.6156L5.05117%2010.5969V10.5906L5.04805%2010.5844L5.00742%2010.5812L4.99805%2010.6'%20fill='%23C8B100'/%3e%3cpath%20d='M5.00117%2010.6L5.01367%2010.6156L5.05117%2010.5969V10.5906L5.04805%2010.5844L5.00742%2010.5812L4.99805%2010.6'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.11074%2010.5781L5.10137%2010.5969H5.06387L5.05762%2010.5906L5.06074%2010.5813L5.09824%2010.5625L5.11387%2010.5781'%20fill='%23C8B100'/%3e%3cpath%20d='M5.11074%2010.5781L5.10137%2010.5969H5.06387L5.05762%2010.5906L5.06074%2010.5813L5.09824%2010.5625L5.11387%2010.5781'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M4.95625%2010.6062V10.625L4.9125%2010.6312L4.90625%2010.6281V10.6219L4.9375%2010.5938L4.95625%2010.6062Z'%20fill='%23C8B100'/%3e%3cpath%20d='M4.95625%2010.6062V10.625L4.9125%2010.6312L4.90625%2010.6281V10.6219L4.9375%2010.5938L4.95625%2010.6062Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.03711%2010.5906C5.03711%2010.5812%205.04336%2010.575%205.05273%2010.575C5.06211%2010.575%205.06836%2010.5812%205.06836%2010.5906C5.06763%2010.5942%205.06567%2010.5974%205.06281%2010.5997C5.05996%2010.602%205.05639%2010.6032%205.05273%2010.6031C5.04908%2010.6032%205.04551%2010.602%205.04266%2010.5997C5.0398%2010.5974%205.03784%2010.5942%205.03711%2010.5906Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.03711%2010.5906C5.03711%2010.5812%205.04336%2010.575%205.05273%2010.575C5.06211%2010.575%205.06836%2010.5812%205.06836%2010.5906C5.06763%2010.5942%205.06567%2010.5974%205.06281%2010.5997C5.05996%2010.602%205.05639%2010.6032%205.05273%2010.6031C5.04908%2010.6032%205.04551%2010.602%205.04266%2010.5997C5.0398%2010.5974%205.03784%2010.5942%205.03711%2010.5906Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.37559%2010.5312L5.39746%2010.5531L5.36934%2010.5844L5.36309%2010.5875L5.35996%2010.5844L5.35059%2010.5437L5.37559%2010.5344'%20fill='%23C8B100'/%3e%3cpath%20d='M5.37559%2010.5312L5.39746%2010.5531L5.36934%2010.5844L5.36309%2010.5875L5.35996%2010.5844L5.35059%2010.5437L5.37559%2010.5344'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.41836%2010.6L5.40273%2010.6156L5.36523%2010.5969V10.5906L5.36836%2010.5844L5.40898%2010.5812L5.41836%2010.6Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.41836%2010.6L5.40273%2010.6156L5.36523%2010.5969V10.5906L5.36836%2010.5844L5.40898%2010.5812L5.41836%2010.6Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.30664%2010.5781L5.31602%2010.5969H5.35664L5.36289%2010.5906L5.35977%2010.5813L5.32227%2010.5625L5.30664%2010.5781Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.30664%2010.5781L5.31602%2010.5969H5.35664L5.36289%2010.5906L5.35977%2010.5813L5.32227%2010.5625L5.30664%2010.5781Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.45312%2010.6062L5.45625%2010.625L5.49687%2010.6312L5.50313%2010.6281V10.6219L5.47188%2010.5938L5.45312%2010.6062Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.45312%2010.6062L5.45625%2010.625L5.49687%2010.6312L5.50313%2010.6281V10.6219L5.47188%2010.5938L5.45312%2010.6062Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.19434%2010.5754C5.19494%2010.5722%205.19649%2010.5693%205.1988%2010.567C5.2011%2010.5647%205.20405%2010.5631%205.20726%2010.5625C5.21694%2010.5625%205.2234%2010.569%205.2234%2010.5754C5.2234%2010.5797%205.2217%2010.5838%205.21867%2010.5868C5.21564%2010.5899%205.21154%2010.5916%205.20726%2010.5916C5.20355%2010.5908%205.20023%2010.5888%205.19787%2010.5858C5.19551%2010.5829%205.19426%2010.5792%205.19434%2010.5754Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.19434%2010.5754C5.19494%2010.5722%205.19649%2010.5693%205.1988%2010.567C5.2011%2010.5647%205.20405%2010.5631%205.20726%2010.5625C5.21694%2010.5625%205.2234%2010.569%205.2234%2010.5754C5.2234%2010.5797%205.2217%2010.5838%205.21867%2010.5868C5.21564%2010.5899%205.21154%2010.5916%205.20726%2010.5916C5.20355%2010.5908%205.20023%2010.5888%205.19787%2010.5858C5.19551%2010.5829%205.19426%2010.5792%205.19434%2010.5754Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.34668%2010.5906C5.34668%2010.5812%205.35605%2010.575%205.3623%2010.575C5.36645%2010.575%205.37042%2010.5766%205.37335%2010.5796C5.37628%2010.5825%205.37793%2010.5865%205.37793%2010.5906C5.3772%2010.5942%205.37524%2010.5974%205.37238%2010.5997C5.36953%2010.602%205.36596%2010.6032%205.3623%2010.6031C5.35865%2010.6032%205.35508%2010.602%205.35223%2010.5997C5.34937%2010.5974%205.34741%2010.5942%205.34668%2010.5906Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.34668%2010.5906C5.34668%2010.5812%205.35605%2010.575%205.3623%2010.575C5.36645%2010.575%205.37042%2010.5766%205.37335%2010.5796C5.37628%2010.5825%205.37793%2010.5865%205.37793%2010.5906C5.3772%2010.5942%205.37524%2010.5974%205.37238%2010.5997C5.36953%2010.602%205.36596%2010.6032%205.3623%2010.6031C5.35865%2010.6032%205.35508%2010.602%205.35223%2010.5997C5.34937%2010.5974%205.34741%2010.5942%205.34668%2010.5906Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M4.90098%2010.6312L4.88223%2010.6094C4.87598%2010.6031%204.86035%2010.6%204.86035%2010.6C4.86035%2010.5969%204.86973%2010.5906%204.8791%2010.5906C4.88153%2010.5906%204.88392%2010.5912%204.88609%2010.5923C4.88826%2010.5934%204.89015%2010.5949%204.8916%2010.5969V10.5906C4.8916%2010.5906%204.90098%2010.5906%204.9041%2010.6V10.6312'%20fill='%23C8B100'/%3e%3cpath%20d='M4.90098%2010.6312L4.88223%2010.6094C4.87598%2010.6031%204.86035%2010.6%204.86035%2010.6C4.86035%2010.5969%204.86973%2010.5906%204.8791%2010.5906C4.88153%2010.5906%204.88392%2010.5912%204.88609%2010.5923C4.88826%2010.5934%204.89015%2010.5949%204.8916%2010.5969V10.5906C4.8916%2010.5906%204.90098%2010.5906%204.9041%2010.6V10.6312H4.90098Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M4.90068%2010.6252C4.90391%2010.6187%204.9136%2010.6187%204.91683%2010.6252C4.92328%2010.6284%204.92651%2010.6348%204.92328%2010.6413L4.90714%2010.6381C4.90068%2010.6348%204.89745%2010.6252%204.90068%2010.6219'%20fill='%23C8B100'/%3e%3cpath%20d='M4.90068%2010.6252C4.90391%2010.6187%204.9136%2010.6187%204.91683%2010.6252C4.92328%2010.6284%204.92651%2010.6348%204.92328%2010.6413L4.90714%2010.6381C4.90068%2010.6348%204.89745%2010.6252%204.90068%2010.6219V10.6252Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.50898%2010.6312L5.52773%2010.6094C5.53398%2010.6031%205.54961%2010.6%205.54961%2010.6C5.54961%2010.5969%205.54023%2010.5906%205.53086%2010.5906C5.52604%2010.591%205.52157%2010.5933%205.51836%2010.5969V10.5906C5.51836%2010.5906%205.50898%2010.5906%205.50586%2010.6V10.6219L5.50898%2010.6312Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.50898%2010.6312L5.52773%2010.6094C5.53398%2010.6031%205.54961%2010.6%205.54961%2010.6C5.54961%2010.5969%205.54023%2010.5906%205.53086%2010.5906C5.52604%2010.591%205.52157%2010.5933%205.51836%2010.5969V10.5906C5.51836%2010.5906%205.50898%2010.5906%205.50586%2010.6V10.6219L5.50898%2010.6312Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.50978%2010.6252C5.50978%2010.6187%205.50009%2010.6187%205.49363%2010.6252C5.48717%2010.6284%205.48717%2010.6348%205.4904%2010.6413L5.50655%2010.6381C5.51301%2010.6348%205.51301%2010.6252%205.50978%2010.6219'%20fill='%23C8B100'/%3e%3cpath%20d='M5.50978%2010.6252C5.50978%2010.6187%205.50009%2010.6187%205.49363%2010.6252C5.48717%2010.6284%205.48717%2010.6348%205.4904%2010.6413L5.50655%2010.6381C5.51301%2010.6348%205.51301%2010.6252%205.50978%2010.6219V10.6252Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M4.87598%2010.9688H5.54473V10.7969H4.87598V10.9719V10.9688Z'%20fill='%23C8B100'/%3e%3cpath%20d='M4.87598%2010.9688H5.54473V10.7969H4.87598V10.9719V10.9688Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M4.94238%2011.0875C4.94651%2011.0867%204.95076%2011.0867%204.95488%2011.0875H5.47051C5.46216%2011.0851%205.45473%2011.0802%205.44917%2011.0735C5.4436%2011.0668%205.44015%2011.0586%205.43926%2011.05C5.43926%2011.0313%205.45488%2011.0156%205.47051%2011.0094C5.46636%2011.0099%205.46216%2011.0099%205.45801%2011.0094H4.95801C4.95284%2011.0103%204.94755%2011.0103%204.94238%2011.0094C4.96113%2011.0156%204.97363%2011.0313%204.97363%2011.05C4.97319%2011.0588%204.9699%2011.0672%204.96427%2011.074C4.95863%2011.0807%204.95095%2011.0855%204.94238%2011.0875Z'%20fill='%23C8B100'/%3e%3cpath%20d='M4.94238%2011.0875C4.94651%2011.0867%204.95076%2011.0867%204.95488%2011.0875H5.47051C5.46216%2011.0851%205.45473%2011.0802%205.44917%2011.0735C5.4436%2011.0668%205.44015%2011.0586%205.43926%2011.05C5.43926%2011.0313%205.45488%2011.0156%205.47051%2011.0094C5.46636%2011.0099%205.46216%2011.0099%205.45801%2011.0094H4.95801C4.95284%2011.0103%204.94755%2011.0103%204.94238%2011.0094C4.96113%2011.0156%204.97363%2011.0313%204.97363%2011.05C4.97319%2011.0588%204.9699%2011.0672%204.96427%2011.074C4.95863%2011.0807%204.95095%2011.0855%204.94238%2011.0875Z'%20stroke='black'%20stroke-width='0.1'%20stroke-linejoin='round'/%3e%3cpath%20d='M4.95703%2011.0875H5.45703C5.47578%2011.0875%205.48828%2011.0969%205.48828%2011.1094C5.48828%2011.1219%205.47578%2011.1344%205.45703%2011.1344H4.95703C4.94141%2011.1344%204.92578%2011.1219%204.92578%2011.1094C4.92578%2011.0969%204.94141%2011.0844%204.95703%2011.0844'%20fill='%23C8B100'/%3e%3cpath%20d='M4.95703%2011.0875H5.45703C5.47578%2011.0875%205.48828%2011.0969%205.48828%2011.1094C5.48828%2011.1219%205.47578%2011.1344%205.45703%2011.1344H4.95703C4.94141%2011.1344%204.92578%2011.1219%204.92578%2011.1094C4.92578%2011.0969%204.94141%2011.0844%204.95703%2011.0844V11.0875Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M4.95703%2010.9688H5.45703C5.47578%2010.9688%205.48828%2010.9812%205.48828%2010.9906C5.48828%2011.0031%205.47578%2011.0094%205.45703%2011.0094H4.95703C4.94141%2011.0094%204.92578%2011.0031%204.92578%2010.9906C4.92578%2010.9812%204.94141%2010.9719%204.95703%2010.9719'%20fill='%23C8B100'/%3e%3cpath%20d='M4.95703%2010.9688H5.45703C5.47578%2010.9688%205.48828%2010.9812%205.48828%2010.9906C5.48828%2011.0031%205.47578%2011.0094%205.45703%2011.0094H4.95703C4.94141%2011.0094%204.92578%2011.0031%204.92578%2010.9906C4.92578%2010.9812%204.94141%2010.9719%204.95703%2010.9719V10.9688Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.67559%2013.9188C5.63184%2013.9188%205.58809%2013.9094%205.55996%2013.8938C5.52287%2013.8763%205.4822%2013.8677%205.44121%2013.8688C5.39746%2013.8688%205.35684%2013.8781%205.32559%2013.8938C5.28854%2013.9114%205.24784%2013.9199%205.20684%2013.9188C5.15996%2013.9188%205.11934%2013.9094%205.09121%2013.8938C5.05507%2013.8767%205.01553%2013.8682%204.97559%2013.8688C4.9356%2013.8677%204.89595%2013.8763%204.85996%2013.8938C4.82291%2013.9114%204.78221%2013.9199%204.74121%2013.9188V13.9938C4.78809%2013.9938%204.82871%2013.9813%204.85996%2013.9656C4.89603%2013.9484%204.93562%2013.9398%204.97559%2013.9406C5.01934%2013.9406%205.05996%2013.95%205.09121%2013.9656C5.12246%2013.9813%205.15996%2013.9938%205.20684%2013.9938C5.24808%2013.9938%205.28876%2013.9842%205.32559%2013.9656C5.35684%2013.95%205.39746%2013.9406%205.44121%2013.9406C5.48809%2013.9406%205.52871%2013.95%205.55996%2013.9656C5.59121%2013.9813%205.62871%2013.9938%205.67559%2013.9938V13.9188Z'%20fill='%23005BBF'/%3e%3cpath%20d='M5.67559%2013.9188C5.63184%2013.9188%205.58809%2013.9094%205.55996%2013.8938C5.52287%2013.8763%205.4822%2013.8677%205.44121%2013.8688C5.39746%2013.8688%205.35684%2013.8781%205.32559%2013.8938C5.28854%2013.9114%205.24784%2013.9199%205.20684%2013.9188C5.15996%2013.9188%205.11934%2013.9094%205.09121%2013.8938C5.05507%2013.8767%205.01553%2013.8682%204.97559%2013.8688C4.9356%2013.8677%204.89595%2013.8763%204.85996%2013.8938C4.82291%2013.9114%204.78221%2013.9199%204.74121%2013.9188V13.9938C4.78809%2013.9938%204.82871%2013.9813%204.85996%2013.9656C4.89603%2013.9484%204.93562%2013.9398%204.97559%2013.9406C5.01934%2013.9406%205.05996%2013.95%205.09121%2013.9656C5.12246%2013.9813%205.15996%2013.9938%205.20684%2013.9938C5.24808%2013.9938%205.28876%2013.9842%205.32559%2013.9656C5.35684%2013.95%205.39746%2013.9406%205.44121%2013.9406C5.48809%2013.9406%205.52871%2013.95%205.55996%2013.9656C5.59121%2013.9813%205.62871%2013.9938%205.67559%2013.9938V13.9188Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.67559%2013.9938C5.63534%2013.9938%205.59568%2013.9842%205.55996%2013.9656C5.52291%2013.948%205.48221%2013.9395%205.44121%2013.9406C5.39746%2013.9406%205.35684%2013.95%205.32559%2013.9656C5.29434%2013.9813%205.25371%2013.9938%205.20684%2013.9938C5.15996%2013.9938%205.11934%2013.9813%205.09121%2013.9656C5.05507%2013.9486%205.01553%2013.9401%204.97559%2013.9406C4.93562%2013.9398%204.89603%2013.9484%204.85996%2013.9656C4.82871%2013.9813%204.78809%2013.9938%204.74121%2013.9938V14.0656C4.78809%2014.0656%204.82871%2014.0531%204.85996%2014.0375C4.89625%2014.0212%204.93586%2014.0137%204.97559%2014.0156C5.01934%2014.0156%205.05996%2014.0219%205.09121%2014.0375C5.12754%2014.0559%205.16768%2014.0655%205.2084%2014.0655C5.24912%2014.0655%205.28926%2014.0559%205.32559%2014.0375C5.36229%2014.0201%205.4025%2014.0113%205.44314%2014.0118C5.48377%2014.0124%205.52374%2014.0222%205.55996%2014.0406C5.59599%2014.058%205.63561%2014.0665%205.67559%2014.0656V13.9938Z'%20fill='%23CCCCCC'/%3e%3cpath%20d='M5.67559%2013.9938C5.63534%2013.9938%205.59568%2013.9842%205.55996%2013.9656C5.52291%2013.948%205.48221%2013.9395%205.44121%2013.9406C5.39746%2013.9406%205.35684%2013.95%205.32559%2013.9656C5.29434%2013.9813%205.25371%2013.9938%205.20684%2013.9938C5.15996%2013.9938%205.11934%2013.9813%205.09121%2013.9656C5.05507%2013.9486%205.01553%2013.9401%204.97559%2013.9406C4.93562%2013.9398%204.89603%2013.9484%204.85996%2013.9656C4.82871%2013.9813%204.78809%2013.9938%204.74121%2013.9938V14.0656C4.78809%2014.0656%204.82871%2014.0531%204.85996%2014.0375C4.89625%2014.0212%204.93586%2014.0137%204.97559%2014.0156C5.01934%2014.0156%205.05996%2014.0219%205.09121%2014.0375C5.12754%2014.0559%205.16768%2014.0655%205.2084%2014.0655C5.24912%2014.0655%205.28926%2014.0559%205.32559%2014.0375C5.36229%2014.0201%205.4025%2014.0113%205.44314%2014.0118C5.48377%2014.0124%205.52374%2014.0222%205.55996%2014.0406C5.59599%2014.058%205.63561%2014.0665%205.67559%2014.0656V13.9938Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.67559%2014.0625C5.63548%2014.0649%205.59548%2014.0563%205.55996%2014.0375C5.52265%2014.021%205.48196%2014.0135%205.44121%2014.0156C5.39746%2014.0156%205.35684%2014.0219%205.32559%2014.0375C5.29434%2014.0563%205.25371%2014.0656%205.20684%2014.0656C5.15996%2014.0656%205.11934%2014.0531%205.09121%2014.0375C5.05507%2014.0205%205.01553%2014.0119%204.97559%2014.0125C4.9356%2014.0115%204.89595%2014.02%204.85996%2014.0375C4.82871%2014.0531%204.78809%2014.0656%204.74121%2014.0656V14.1375C4.78809%2014.1375%204.82871%2014.1281%204.85996%2014.1094C4.93433%2014.0804%205.01685%2014.0804%205.09121%2014.1094C5.12641%2014.1293%205.16644%2014.139%205.20684%2014.1375C5.24783%2014.1386%205.2885%2014.13%205.32559%2014.1125C5.35684%2014.0969%205.39746%2014.0875%205.44121%2014.0875C5.48809%2014.0875%205.52871%2014.0969%205.55996%2014.1125C5.59121%2014.1281%205.62871%2014.1375%205.67559%2014.1375V14.0625Z'%20fill='%23005BBF'/%3e%3cpath%20d='M5.67559%2014.0625C5.63548%2014.0649%205.59548%2014.0563%205.55996%2014.0375C5.52265%2014.021%205.48196%2014.0135%205.44121%2014.0156C5.39746%2014.0156%205.35684%2014.0219%205.32559%2014.0375C5.29434%2014.0563%205.25371%2014.0656%205.20684%2014.0656C5.15996%2014.0656%205.11934%2014.0531%205.09121%2014.0375C5.05507%2014.0205%205.01553%2014.0119%204.97559%2014.0125C4.9356%2014.0115%204.89595%2014.02%204.85996%2014.0375C4.82871%2014.0531%204.78809%2014.0656%204.74121%2014.0656V14.1375C4.78809%2014.1375%204.82871%2014.1281%204.85996%2014.1094C4.93433%2014.0804%205.01685%2014.0804%205.09121%2014.1094C5.12641%2014.1293%205.16644%2014.139%205.20684%2014.1375C5.24783%2014.1386%205.2885%2014.13%205.32559%2014.1125C5.35684%2014.0969%205.39746%2014.0875%205.44121%2014.0875C5.48809%2014.0875%205.52871%2014.0969%205.55996%2014.1125C5.59121%2014.1281%205.62871%2014.1375%205.67559%2014.1375V14.0625Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.67559%2014.2094C5.6356%2014.2104%205.59595%2014.2018%205.55996%2014.1844C5.52871%2014.1688%205.48809%2014.1594%205.44434%2014.1594C5.40334%2014.1583%205.36267%2014.1669%205.32559%2014.1844C5.29434%2014.2%205.25371%2014.2094%205.20684%2014.2094C5.16644%2014.2109%205.12641%2014.2011%205.09121%2014.1813C5.05482%2014.1653%205.01529%2014.1578%204.97559%2014.1594C4.93184%2014.1594%204.89121%2014.1688%204.85996%2014.1844C4.82871%2014.2%204.78809%2014.2094%204.74121%2014.2094V14.1375C4.78247%2014.1377%204.82318%2014.1281%204.85996%2014.1094C4.93433%2014.0804%205.01685%2014.0804%205.09121%2014.1094C5.12693%2014.1279%205.16659%2014.1376%205.20684%2014.1375C5.24783%2014.1386%205.2885%2014.13%205.32559%2014.1125C5.35684%2014.0969%205.39746%2014.0875%205.44434%2014.0875C5.48809%2014.0875%205.52871%2014.0969%205.55996%2014.1125C5.59121%2014.1281%205.63184%2014.1375%205.67559%2014.1375V14.2094Z'%20fill='%23CCCCCC'/%3e%3cpath%20d='M5.67559%2014.2094C5.6356%2014.2104%205.59595%2014.2018%205.55996%2014.1844C5.52871%2014.1688%205.48809%2014.1594%205.44434%2014.1594C5.40334%2014.1583%205.36267%2014.1669%205.32559%2014.1844C5.29434%2014.2%205.25371%2014.2094%205.20684%2014.2094C5.16644%2014.2109%205.12641%2014.2011%205.09121%2014.1813C5.05482%2014.1653%205.01529%2014.1578%204.97559%2014.1594C4.93184%2014.1594%204.89121%2014.1688%204.85996%2014.1844C4.82871%2014.2%204.78809%2014.2094%204.74121%2014.2094V14.1375C4.78247%2014.1377%204.82318%2014.1281%204.85996%2014.1094C4.93433%2014.0804%205.01685%2014.0804%205.09121%2014.1094C5.12693%2014.1279%205.16659%2014.1376%205.20684%2014.1375C5.24783%2014.1386%205.2885%2014.13%205.32559%2014.1125C5.35684%2014.0969%205.39746%2014.0875%205.44434%2014.0875C5.48809%2014.0875%205.52871%2014.0969%205.55996%2014.1125C5.59121%2014.1281%205.63184%2014.1375%205.67559%2014.1375V14.2094Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.67559%2014.2813C5.63561%2014.2822%205.59599%2014.2736%205.55996%2014.2563C5.52871%2014.2406%205.48809%2014.2313%205.44434%2014.2313C5.40334%2014.2302%205.36267%2014.2388%205.32559%2014.2563C5.29434%2014.2719%205.25371%2014.2813%205.20684%2014.2813C5.16644%2014.2827%205.12641%2014.273%205.09121%2014.2531C5.05482%2014.2372%205.01529%2014.2297%204.97559%2014.2313C4.93184%2014.2313%204.89121%2014.2406%204.85996%2014.2563C4.82871%2014.2719%204.78809%2014.2813%204.74121%2014.2813V14.2094C4.78221%2014.2106%204.82291%2014.202%204.85996%2014.1844C4.89121%2014.1688%204.93184%2014.1594%204.97559%2014.1594C5.01934%2014.1594%205.05996%2014.1688%205.09121%2014.1813C5.12761%2014.1994%205.16772%2014.2089%205.2084%2014.2089C5.24907%2014.2089%205.28919%2014.1994%205.32559%2014.1813C5.35684%2014.1688%205.39746%2014.1594%205.44434%2014.1594C5.48809%2014.1594%205.52871%2014.1688%205.55996%2014.1844C5.59121%2014.2%205.62871%2014.2094%205.67559%2014.2094V14.2813Z'%20fill='%23005BBF'/%3e%3cpath%20d='M5.67559%2014.2813C5.63561%2014.2822%205.59599%2014.2736%205.55996%2014.2563C5.52871%2014.2406%205.48809%2014.2313%205.44434%2014.2313C5.40334%2014.2302%205.36267%2014.2388%205.32559%2014.2563C5.29434%2014.2719%205.25371%2014.2813%205.20684%2014.2813C5.16644%2014.2827%205.12641%2014.273%205.09121%2014.2531C5.05482%2014.2372%205.01529%2014.2297%204.97559%2014.2313C4.93184%2014.2313%204.89121%2014.2406%204.85996%2014.2563C4.82871%2014.2719%204.78809%2014.2813%204.74121%2014.2813V14.2094C4.78221%2014.2106%204.82291%2014.202%204.85996%2014.1844C4.89121%2014.1688%204.93184%2014.1594%204.97559%2014.1594C5.01934%2014.1594%205.05996%2014.1688%205.09121%2014.1813C5.12761%2014.1994%205.16772%2014.2089%205.2084%2014.2089C5.24907%2014.2089%205.28919%2014.1994%205.32559%2014.1813C5.35684%2014.1688%205.39746%2014.1594%205.44434%2014.1594C5.48809%2014.1594%205.52871%2014.1688%205.55996%2014.1844C5.59121%2014.2%205.62871%2014.2094%205.67559%2014.2094V14.2813Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M4.94434%2013.625L4.95059%2013.6406C4.95059%2013.6875%204.90996%2013.7219%204.86621%2013.7219H5.55371C5.53186%2013.7219%205.51086%2013.7134%205.49513%2013.6983C5.47939%2013.6831%205.47015%2013.6625%205.46934%2013.6406V13.625C5.46622%2013.6254%205.46308%2013.6254%205.45996%2013.625H4.95996C4.95479%2013.6259%204.9495%2013.6259%204.94434%2013.625Z'%20fill='%23C8B100'/%3e%3cpath%20d='M4.94434%2013.625L4.95059%2013.6406C4.95059%2013.6875%204.90996%2013.7219%204.86621%2013.7219H5.55371C5.53186%2013.7219%205.51086%2013.7134%205.49513%2013.6983C5.47939%2013.6831%205.47015%2013.6625%205.46934%2013.6406V13.625C5.46622%2013.6254%205.46308%2013.6254%205.45996%2013.625H4.95996C4.95479%2013.6259%204.9495%2013.6259%204.94434%2013.625Z'%20stroke='black'%20stroke-width='0.1'%20stroke-linejoin='round'/%3e%3cpath%20d='M4.95703%2013.5781H5.45703C5.47578%2013.5781%205.48828%2013.5875%205.48828%2013.6031C5.48828%2013.6156%205.47578%2013.625%205.45703%2013.625H4.95703C4.94141%2013.625%204.92578%2013.6156%204.92578%2013.6C4.92578%2013.5875%204.94141%2013.5781%204.95703%2013.5781Z'%20fill='%23C8B100'/%3e%3cpath%20d='M4.95703%2013.5781H5.45703C5.47578%2013.5781%205.48828%2013.5875%205.48828%2013.6031C5.48828%2013.6156%205.47578%2013.625%205.45703%2013.625H4.95703C4.94141%2013.625%204.92578%2013.6156%204.92578%2013.6C4.92578%2013.5875%204.94141%2013.5781%204.95703%2013.5781Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M4.86621%2013.8969H5.55371V13.7188H4.86621V13.8938V13.8969Z'%20fill='%23C8B100'/%3e%3cpath%20d='M4.86621%2013.8969H5.55371V13.7188H4.86621V13.8938V13.8969Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M4.8135%2012.9594C4.74475%2012.9969%204.69787%2013.0375%204.70725%2013.0594C4.70725%2013.0781%204.73225%2013.0906%204.7635%2013.1094C4.81037%2013.1437%204.84162%2013.2031%204.81662%2013.2344C4.83779%2013.2181%204.85488%2013.1972%204.86654%2013.1732C4.87821%2013.1492%204.88412%2013.1228%204.88382%2013.0961C4.88351%2013.0694%204.877%2013.0432%204.8648%2013.0194C4.85259%2012.9957%204.83503%2012.9751%204.8135%2012.9594Z'%20fill='%23AD1519'/%3e%3cpath%20d='M4.8135%2012.9594C4.74475%2012.9969%204.69787%2013.0375%204.70725%2013.0594C4.70725%2013.0781%204.73225%2013.0906%204.7635%2013.1094C4.81037%2013.1437%204.84162%2013.2031%204.81662%2013.2344C4.83779%2013.2181%204.85488%2013.1972%204.86654%2013.1732C4.87821%2013.1492%204.88412%2013.1228%204.88382%2013.0961C4.88351%2013.0694%204.877%2013.0432%204.8648%2013.0194C4.85259%2012.9957%204.83503%2012.9751%204.8135%2012.9594Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M4.96387%2013.55H5.45137V11.1562H4.96387V13.5469V13.55Z'%20fill='%23CCCCCC'/%3e%3cpath%20d='M5.31387%2011.1625V13.5469M5.36699%2011.1625V13.5469M4.96387%2013.5469H5.45137V11.1594H4.96387V13.55V13.5469Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.94965%2012.0531C5.71539%2011.9746%205.46574%2011.9531%205.22152%2011.9906C4.92777%2012.0406%204.7059%2012.1562%204.72465%2012.2531V12.2594L4.61527%2012.0031C4.59652%2011.9%204.84027%2011.7688%205.16527%2011.7156C5.26004%2011.698%205.35643%2011.6907%205.45277%2011.6938C5.65902%2011.6938%205.84027%2011.7188%205.94652%2011.7594V12.0531'%20fill='%23AD1519'/%3e%3cpath%20d='M5.94965%2012.0531C5.71539%2011.9746%205.46574%2011.9531%205.22152%2011.9906C4.92777%2012.0406%204.7059%2012.1562%204.72465%2012.2531V12.2594L4.61527%2012.0031C4.59652%2011.9%204.84027%2011.7688%205.16527%2011.7156C5.26004%2011.698%205.35643%2011.6907%205.45277%2011.6938C5.65902%2011.6938%205.84027%2011.7188%205.94652%2011.7594V12.0531'%20stroke='black'%20stroke-width='0.1'%20stroke-linejoin='round'/%3e%3cpath%20d='M4.96232%2012.3531C4.82794%2012.3437%204.73419%2012.3094%204.72482%2012.2531C4.71544%2012.2062%204.76232%2012.1594%204.84357%2012.1125C4.88107%2012.1156%204.92169%2012.1219%204.96232%2012.1219V12.3531Z'%20fill='%23AD1519'/%3e%3cpath%20d='M4.96232%2012.3531C4.82794%2012.3437%204.73419%2012.3094%204.72482%2012.2531C4.71544%2012.2062%204.76232%2012.1594%204.84357%2012.1125C4.88107%2012.1156%204.92169%2012.1219%204.96232%2012.1219V12.3531Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.45332%2012.1719C5.5377%2012.1844%205.6002%2012.2031%205.63145%2012.2312L5.63457%2012.2375C5.6502%2012.2688%205.5752%2012.3312%205.4502%2012.4062V12.1719'%20fill='%23AD1519'/%3e%3cpath%20d='M5.45332%2012.1719C5.5377%2012.1844%205.6002%2012.2031%205.63145%2012.2312L5.63457%2012.2375C5.6502%2012.2688%205.5752%2012.3312%205.4502%2012.4062V12.1719'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M4.65903%2012.8125C4.64653%2012.775%204.77778%2012.7%204.96528%2012.6313L5.20903%2012.5313C5.4684%2012.4156%205.65903%2012.2844%205.63403%2012.2375V12.2313C5.64653%2012.2438%205.66528%2012.4813%205.66528%2012.4813C5.69028%2012.5219%205.51528%2012.6531%205.27778%2012.7656C5.19965%2012.8031%205.04028%2012.8594%204.96528%2012.8906C4.82778%2012.9344%204.6934%2013.025%204.7059%2013.0563L4.65903%2012.8156'%20fill='%23AD1519'/%3e%3cpath%20d='M4.65903%2012.8125C4.64653%2012.775%204.77778%2012.7%204.96528%2012.6313L5.20903%2012.5313C5.4684%2012.4156%205.65903%2012.2844%205.63403%2012.2375V12.2313C5.64653%2012.2438%205.66528%2012.4813%205.66528%2012.4813C5.69028%2012.5219%205.51528%2012.6531%205.27778%2012.7656C5.19965%2012.8031%205.04028%2012.8594%204.96528%2012.8906C4.82778%2012.9344%204.6934%2013.025%204.7059%2013.0563L4.65903%2012.8156V12.8125Z'%20stroke='black'%20stroke-width='0.1'%20stroke-linejoin='round'/%3e%3cpath%20d='M4.93145%2011.9375C4.99082%2011.9188%205.02832%2011.8906%205.00957%2011.8438C4.99707%2011.8125%204.96582%2011.8125%204.92207%2011.825L4.84082%2011.8563L4.9127%2012.0375L4.9377%2012.0281L4.9627%2012.0187L4.93145%2011.9406V11.9375ZM4.89395%2011.8531L4.91582%2011.8438C4.93145%2011.8375%204.95332%2011.8469%204.95957%2011.8688C4.96582%2011.8844%204.96582%2011.9%204.94395%2011.9156C4.93794%2011.9192%204.93167%2011.9224%204.9252%2011.925L4.89395%2011.8531ZM5.12207%2011.775L5.09395%2011.7844H5.06895L5.10957%2011.975L5.24395%2011.95L5.2377%2011.9375V11.925L5.15957%2011.9437L5.12207%2011.7781V11.775ZM5.38457%2011.9406C5.40957%2011.8719%205.4377%2011.8063%205.46895%2011.7406C5.45855%2011.7416%205.44809%2011.7416%205.4377%2011.7406C5.42112%2011.7894%205.40235%2011.8373%205.38145%2011.8844L5.30645%2011.75L5.2752%2011.7531H5.24395C5.28205%2011.8147%205.31852%2011.8772%205.35332%2011.9406H5.38457ZM5.65957%2011.7938L5.67207%2011.7656C5.65637%2011.7547%205.63802%2011.7482%205.61895%2011.7469C5.56582%2011.7438%205.53457%2011.7656%205.53145%2011.8C5.5252%2011.8656%205.63145%2011.8625%205.6252%2011.9063C5.6252%2011.925%205.60332%2011.9344%205.58145%2011.9313C5.55645%2011.9313%205.5377%2011.9156%205.5377%2011.8938H5.52832C5.52508%2011.9055%205.5209%2011.917%205.51582%2011.9281C5.5328%2011.9388%205.55209%2011.9452%205.57207%2011.9469C5.6252%2011.9531%205.66582%2011.9313%205.67207%2011.8938C5.67832%2011.8313%205.56895%2011.8281%205.5752%2011.7875C5.5752%2011.7719%205.5877%2011.7625%205.61582%2011.7656C5.6377%2011.7656%205.64707%2011.7781%205.65332%2011.7938H5.65957Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.6842%2010.6125C9.6842%2010.6125%209.6623%2010.6375%209.6436%2010.6406C9.628%2010.6406%209.6092%2010.625%209.6092%2010.625C9.6092%2010.625%209.5936%2010.6406%209.578%2010.6437C9.5592%2010.6469%209.5342%2010.625%209.5342%2010.625L9.503%2010.6562C9.4842%2010.6562%209.4686%2010.6469%209.4686%2010.6469C9.4686%2010.6469%209.4592%2010.6594%209.4467%2010.6656H9.4342L9.4155%2010.6531L9.3936%2010.6312L9.378%2010.6219L9.3655%2010.5906V10.575C9.3623%2010.5562%209.3905%2010.5312%209.4342%2010.5219C9.4547%2010.5164%209.4762%2010.5164%209.4967%2010.5219C9.5123%2010.5062%209.5498%2010.4969%209.5905%2010.4969C9.6311%2010.4969%209.6655%2010.5062%209.6842%2010.5187C9.7118%2010.5032%209.7432%2010.4957%209.7748%2010.4969C9.8155%2010.4969%209.853%2010.5062%209.8686%2010.5219C9.8842%2010.5156%209.9061%2010.5156%209.9311%2010.5219C9.9748%2010.5312%2010.003%2010.5531%209.9998%2010.575V10.5906L9.9873%2010.6219L9.9686%2010.6312L9.9498%2010.6531L9.9311%2010.6625C9.9311%2010.6625%209.9217%2010.6687%209.9186%2010.6625C9.9061%2010.6594%209.8967%2010.6469%209.8967%2010.6469C9.8967%2010.6469%209.878%2010.6594%209.8655%2010.6531C9.8498%2010.6469%209.8342%2010.6219%209.8342%2010.6219C9.8342%2010.6219%209.8061%2010.6469%209.7905%2010.6437C9.7717%2010.6406%209.7592%2010.625%209.7592%2010.625C9.7592%2010.625%209.7373%2010.6437%209.7217%2010.6406C9.7061%2010.6375%209.6842%2010.6125%209.6842%2010.6125Z'%20fill='%23AD1519'/%3e%3cpath%20d='M9.6842%2010.6125C9.6842%2010.6125%209.6623%2010.6375%209.6436%2010.6406C9.628%2010.6406%209.6092%2010.625%209.6092%2010.625C9.6092%2010.625%209.5936%2010.6406%209.578%2010.6437C9.5592%2010.6469%209.5342%2010.625%209.5342%2010.625L9.503%2010.6562C9.4842%2010.6562%209.4686%2010.6469%209.4686%2010.6469C9.4686%2010.6469%209.4592%2010.6594%209.4467%2010.6656H9.4342L9.4155%2010.6531L9.3936%2010.6312L9.378%2010.6219L9.3655%2010.5906V10.575C9.3623%2010.5562%209.3905%2010.5312%209.4342%2010.5219C9.4547%2010.5164%209.4762%2010.5164%209.4967%2010.5219C9.5123%2010.5062%209.5498%2010.4969%209.5905%2010.4969C9.6311%2010.4969%209.6655%2010.5062%209.6842%2010.5187C9.7118%2010.5032%209.7432%2010.4957%209.7748%2010.4969C9.8155%2010.4969%209.853%2010.5062%209.8686%2010.5219C9.8842%2010.5156%209.9061%2010.5156%209.9311%2010.5219C9.9748%2010.5312%2010.003%2010.5531%209.9998%2010.575V10.5906L9.9873%2010.6219L9.9686%2010.6312L9.9498%2010.6531L9.9311%2010.6625C9.9311%2010.6625%209.9217%2010.6687%209.9186%2010.6625C9.9061%2010.6594%209.8967%2010.6469%209.8967%2010.6469C9.8967%2010.6469%209.878%2010.6594%209.8655%2010.6531C9.8498%2010.6469%209.8342%2010.6219%209.8342%2010.6219C9.8342%2010.6219%209.8061%2010.6469%209.7905%2010.6437C9.7717%2010.6406%209.7592%2010.625%209.7592%2010.625C9.7592%2010.625%209.7373%2010.6437%209.7217%2010.6406C9.7061%2010.6375%209.6842%2010.6125%209.6842%2010.6125Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.6416%2010.4875C9.6416%2010.4562%209.6604%2010.425%209.6822%2010.425C9.7072%2010.425%209.7229%2010.4562%209.7229%2010.4875C9.7229%2010.5187%209.7072%2010.5437%209.6822%2010.5437C9.6604%2010.5437%209.6416%2010.5187%209.6416%2010.4844'%20fill='%23C8B100'/%3e%3cpath%20d='M9.6416%2010.4875C9.6416%2010.4562%209.6604%2010.425%209.6822%2010.425C9.7072%2010.425%209.7229%2010.4562%209.7229%2010.4875C9.7229%2010.5187%209.7072%2010.5437%209.6822%2010.5437C9.6604%2010.5437%209.6416%2010.5187%209.6416%2010.4844V10.4875Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.666%2010.4875C9.666%2010.4563%209.6723%2010.4313%209.6816%2010.4313C9.6941%2010.4313%209.7035%2010.4563%209.7035%2010.4875C9.7035%2010.5188%209.6941%2010.5406%209.6848%2010.5406C9.6723%2010.5406%209.666%2010.5156%209.666%2010.4844'%20fill='%23C8B100'/%3e%3cpath%20d='M9.666%2010.4875C9.666%2010.4563%209.6723%2010.4313%209.6816%2010.4313C9.6941%2010.4313%209.7035%2010.4563%209.7035%2010.4875C9.7035%2010.5188%209.6941%2010.5406%209.6848%2010.5406C9.6723%2010.5406%209.666%2010.5156%209.666%2010.4844V10.4875Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.46869%2010.7281C9.46489%2010.7171%209.45959%2010.7066%209.45309%2010.6969C9.60439%2010.6544%209.76439%2010.6544%209.91559%2010.6969L9.89689%2010.7219C9.89309%2010.7299%209.88989%2010.7383%209.88749%2010.7469C9.82029%2010.7286%209.75079%2010.7201%209.68119%2010.7219C9.59999%2010.7219%209.51879%2010.7312%209.47499%2010.7469L9.46869%2010.7281Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.46869%2010.7281C9.46489%2010.7171%209.45959%2010.7066%209.45309%2010.6969C9.60439%2010.6544%209.76439%2010.6544%209.91559%2010.6969L9.89689%2010.7219C9.89309%2010.7299%209.88989%2010.7383%209.88749%2010.7469C9.82029%2010.7286%209.75079%2010.7201%209.68119%2010.7219C9.59999%2010.7219%209.51879%2010.7312%209.47499%2010.7469L9.46869%2010.7281Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.6822%2010.8031C9.7572%2010.8031%209.8385%2010.7906%209.8666%2010.7844C9.8854%2010.7781%209.8979%2010.7687%209.8979%2010.7594C9.8979%2010.7531%209.8916%2010.75%209.8854%2010.7469C9.8191%2010.7293%209.7508%2010.7209%209.6822%2010.7219C9.6041%2010.7219%209.526%2010.7312%209.4822%2010.7469C9.476%2010.7469%209.4729%2010.7531%209.4697%2010.7562C9.4697%2010.7687%209.4791%2010.7781%209.501%2010.7844C9.5322%2010.7906%209.6104%2010.8031%209.6822%2010.8031Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.6822%2010.8031C9.7572%2010.8031%209.8385%2010.7906%209.8666%2010.7844C9.8854%2010.7781%209.8979%2010.7687%209.8979%2010.7594C9.8979%2010.7531%209.8916%2010.75%209.8854%2010.7469C9.8191%2010.7293%209.7508%2010.7209%209.6822%2010.7219C9.6041%2010.7219%209.526%2010.7312%209.4822%2010.7469C9.476%2010.7469%209.4729%2010.7531%209.4697%2010.7562C9.4697%2010.7687%209.4791%2010.7781%209.501%2010.7844C9.5322%2010.7906%209.6104%2010.8031%209.6822%2010.8031Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.8604%2010.5129C9.8604%2010.5065%209.8668%2010.5%209.8733%2010.5C9.8797%2010.5%209.8894%2010.5065%209.8894%2010.5129C9.8894%2010.5194%209.883%2010.5258%209.8733%2010.5258C9.8698%2010.5258%209.8666%2010.5245%209.8641%2010.5221C9.8617%2010.5196%209.8604%2010.5163%209.8604%2010.5129Z'%20fill='white'/%3e%3cpath%20d='M9.85961%2010.5125C9.85961%2010.5062%209.86581%2010.5%209.87211%2010.5C9.87831%2010.5%209.88771%2010.5062%209.88771%2010.5125C9.88771%2010.5187%209.88141%2010.525%209.87211%2010.525C9.86881%2010.525%209.86561%2010.5237%209.86321%2010.5213C9.86091%2010.519%209.85961%2010.5158%209.85961%2010.5125ZM9.85331%2010.4687C9.85331%2010.4654%209.85461%2010.4623%209.85701%2010.4599C9.85931%2010.4576%209.86251%2010.4562%209.86581%2010.4562C9.87211%2010.4562%209.87831%2010.4594%209.87831%2010.4687C9.87831%2010.4781%209.87211%2010.4812%209.86581%2010.4812C9.86251%2010.4812%209.85931%2010.4799%209.85701%2010.4776C9.85461%2010.4752%209.85331%2010.4721%209.85331%2010.4687ZM9.81901%2010.4375C9.81901%2010.4312%209.82521%2010.4281%209.83151%2010.4281C9.83771%2010.4281%209.84401%2010.4312%209.84401%2010.4406C9.84401%2010.4469%209.83771%2010.4531%209.83151%2010.4531C9.82951%2010.4532%209.82581%2010.452%209.82581%2010.452C9.82581%2010.452%209.82251%2010.45%209.82131%2010.4484L9.81881%2010.4432L9.81901%2010.4375ZM9.77521%2010.425C9.77521%2010.4187%209.78151%2010.4125%209.78771%2010.4125C9.79711%2010.4125%209.80331%2010.4187%209.80331%2010.425C9.80331%2010.4312%209.79711%2010.4375%209.79081%2010.4375C9.78461%2010.4375%209.77521%2010.4312%209.77521%2010.425ZM9.73151%2010.425C9.73151%2010.4187%209.73771%2010.4156%209.74711%2010.4156C9.75651%2010.4156%209.75961%2010.4187%209.75961%2010.4281C9.75961%2010.4344%209.75331%2010.4406%209.74711%2010.4406L9.74131%2010.4407C9.74131%2010.4407%209.73771%2010.4395%209.73611%2010.4383L9.73261%2010.4338C9.73261%2010.4338%209.73141%2010.4301%209.73151%2010.4281V10.425Z'%20stroke='black'%20stroke-width='0.05'/%3e%3cpath%20d='M9.99471%2010.6L10.001%2010.5688C10.0014%2010.5574%209.99951%2010.5461%209.99551%2010.5355C9.99141%2010.5249%209.98531%2010.5152%209.97741%2010.5071C9.96951%2010.4989%209.96011%2010.4924%209.94961%2010.488C9.93921%2010.4835%209.92791%2010.4812%209.91661%2010.4813C9.90101%2010.4813%209.88541%2010.4844%209.87601%2010.4906'%20stroke='black'%20stroke-width='0.075'%20stroke-linecap='round'/%3e%3cpath%20d='M9.8436%2010.5375L9.8498%2010.5125C9.8498%2010.4781%209.8154%2010.45%209.7717%2010.45C9.7529%2010.45%209.73419%2010.4563%209.72169%2010.4625'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M10.0076%2010.5625C10.0076%2010.5531%2010.0139%2010.5469%2010.0201%2010.5469C10.0264%2010.5469%2010.0326%2010.5531%2010.0326%2010.5594C10.0326%2010.5687%2010.0264%2010.5719%2010.0201%2010.5719C10.0139%2010.5719%2010.0076%2010.5687%2010.0076%2010.5594V10.5625ZM10.0014%2010.5125C10.0014%2010.5062%2010.0076%2010.5%2010.0139%2010.5L10.0196%2010.4999L10.0248%2010.5023L10.0283%2010.5069L10.0295%2010.5125C10.0295%2010.5187%2010.0232%2010.525%2010.017%2010.525C10.0076%2010.525%2010.0014%2010.5187%2010.0014%2010.5125ZM9.9701%2010.4781C9.9701%2010.4781%209.9704%2010.4743%209.9713%2010.4725L9.9748%2010.468L9.98%2010.4655L9.9857%2010.4656C9.992%2010.4656%209.9982%2010.4687%209.9982%2010.4781C9.9982%2010.4814%209.9969%2010.4846%209.9946%2010.487C9.9922%2010.4893%209.9891%2010.4906%209.9857%2010.4906L9.98%2010.4907L9.9748%2010.4883L9.9713%2010.4838C9.9704%2010.482%209.9701%2010.4801%209.9701%2010.4781ZM9.9295%2010.4562C9.9295%2010.45%209.9357%2010.4437%209.9451%2010.4437C9.9545%2010.4437%209.9576%2010.45%209.9576%2010.4562C9.9576%2010.4656%209.9514%2010.4719%209.9451%2010.4719C9.9429%2010.4725%209.9406%2010.4726%209.9384%2010.4721C9.9362%2010.4715%209.9342%2010.4704%209.9326%2010.4688C9.931%2010.4672%209.9299%2010.4651%209.9293%2010.4629C9.9288%2010.4607%209.9288%2010.4584%209.9295%2010.4562ZM9.8857%2010.4594C9.8857%2010.4531%209.892%2010.4469%209.9014%2010.4469C9.9107%2010.4469%209.9139%2010.4531%209.9139%2010.4594C9.9139%2010.4656%209.9076%2010.4719%209.9014%2010.4719C9.8951%2010.4719%209.8857%2010.4656%209.8857%2010.4594Z'%20stroke='black'%20stroke-width='0.05'/%3e%3cpath%20d='M9.91559%2010.6625L9.89999%2010.6469C9.89999%2010.6469%209.88119%2010.6563%209.85939%2010.6531C9.84059%2010.6531%209.83129%2010.6219%209.83129%2010.6219C9.83129%2010.6219%209.80939%2010.6438%209.79059%2010.6438C9.76869%2010.6438%209.75939%2010.625%209.75939%2010.625C9.75939%2010.625%209.73749%2010.6406%209.71879%2010.6375C9.69999%2010.6375%209.68119%2010.6125%209.68119%2010.6125C9.68119%2010.6125%209.66249%2010.6375%209.64379%2010.6375C9.62499%2010.6406%209.61249%2010.6219%209.61249%2010.6219C9.61249%2010.6219%209.60309%2010.6406%209.57809%2010.6438C9.55309%2010.6469%209.53439%2010.625%209.53439%2010.625C9.53439%2010.625%209.52189%2010.6469%209.50309%2010.6563C9.48749%2010.6563%209.46559%2010.6438%209.46559%2010.6438L9.46249%2010.6594L9.45309%2010.6625L9.45629%2010.6781C9.53069%2010.6584%209.60739%2010.6489%209.68439%2010.65C9.77189%2010.65%209.85309%2010.6625%209.91249%2010.6813L9.91869%2010.6625'%20fill='%23C8B100'/%3e%3cpath%20d='M9.91559%2010.6625L9.89999%2010.6469C9.89999%2010.6469%209.88119%2010.6563%209.85939%2010.6531C9.84059%2010.6531%209.83129%2010.6219%209.83129%2010.6219C9.83129%2010.6219%209.80939%2010.6438%209.79059%2010.6438C9.76869%2010.6438%209.75939%2010.625%209.75939%2010.625C9.75939%2010.625%209.73749%2010.6406%209.71879%2010.6375C9.69999%2010.6375%209.68119%2010.6125%209.68119%2010.6125C9.68119%2010.6125%209.66249%2010.6375%209.64379%2010.6375C9.62499%2010.6406%209.61249%2010.6219%209.61249%2010.6219C9.61249%2010.6219%209.60309%2010.6406%209.57809%2010.6438C9.55309%2010.6469%209.53439%2010.625%209.53439%2010.625C9.53439%2010.625%209.52189%2010.6469%209.50309%2010.6563C9.48749%2010.6563%209.46559%2010.6438%209.46559%2010.6438L9.46249%2010.6594L9.45309%2010.6625L9.45629%2010.6781C9.53069%2010.6584%209.60739%2010.6489%209.68439%2010.65C9.77189%2010.65%209.85309%2010.6625%209.91249%2010.6813L9.91869%2010.6625H9.91559Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.47949%2010.5129C9.47949%2010.5065%209.48599%2010.5%209.49239%2010.5C9.49889%2010.5%209.50529%2010.5065%209.50529%2010.5129C9.50529%2010.5163%209.50399%2010.5196%209.50149%2010.5221C9.49909%2010.5245%209.49579%2010.5258%209.49239%2010.5258C9.48899%2010.5258%209.48569%2010.5245%209.48329%2010.5221C9.48089%2010.5196%209.47949%2010.5163%209.47949%2010.5129Z'%20fill='white'/%3e%3cpath%20d='M9.47949%2010.5125C9.47949%2010.5062%209.48569%2010.5%209.49199%2010.5C9.49819%2010.5%209.50449%2010.5062%209.50449%2010.5125C9.50449%2010.5158%209.50319%2010.519%209.50079%2010.5213C9.49849%2010.5237%209.49529%2010.525%209.49199%2010.525C9.48869%2010.525%209.48549%2010.5237%209.48319%2010.5213C9.48079%2010.519%209.47949%2010.5158%209.47949%2010.5125ZM9.48569%2010.4687C9.48569%2010.4594%209.49199%2010.4562%209.49819%2010.4562C9.50449%2010.4562%209.51389%2010.4594%209.51389%2010.4687C9.51389%2010.4781%209.50759%2010.4812%209.49819%2010.4812C9.49489%2010.4812%209.49169%2010.4799%209.48939%2010.4776C9.48709%2010.4752%209.48569%2010.4721%209.48569%2010.4687ZM9.51699%2010.4375C9.51699%2010.4312%209.52639%2010.4281%209.53259%2010.4281C9.53889%2010.4281%209.54819%2010.4312%209.54819%2010.4406C9.54819%2010.4469%209.54199%2010.4531%209.53259%2010.4531L9.52699%2010.452C9.52699%2010.452%209.52369%2010.45%209.52249%2010.4484L9.51999%2010.4432L9.52009%2010.4375H9.51699ZM9.56069%2010.425C9.56069%2010.4187%209.56699%2010.4125%209.57639%2010.4125C9.58569%2010.4125%209.58889%2010.4187%209.58889%2010.425C9.58889%2010.4312%209.58259%2010.4375%209.57639%2010.4375C9.57009%2010.4375%209.56069%2010.4312%209.56069%2010.425ZM9.60449%2010.425C9.60449%2010.4187%209.61069%2010.4156%209.62009%2010.4156C9.62639%2010.4156%209.63259%2010.4187%209.63259%2010.4281C9.63259%2010.4344%209.62639%2010.4406%209.62009%2010.4406L9.61439%2010.4407L9.60919%2010.4383L9.60559%2010.4338C9.60559%2010.4338%209.60439%2010.4301%209.60449%2010.4281V10.425Z'%20stroke='black'%20stroke-width='0.05'/%3e%3cpath%20d='M9.3696%2010.6C9.3656%2010.5901%209.3635%2010.5795%209.3633%2010.5688C9.3629%2010.5574%209.3648%2010.5461%209.3688%2010.5355C9.3729%2010.5249%209.379%2010.5152%209.3869%2010.5071C9.3948%2010.4989%209.4042%2010.4924%209.4147%2010.488C9.4251%2010.4835%209.4364%2010.4812%209.4477%2010.4813C9.4633%2010.4813%209.479%2010.4844%209.4915%2010.4906'%20stroke='black'%20stroke-width='0.075'%20stroke-linecap='round'/%3e%3cpath%20d='M9.5221%2010.5375C9.5169%2010.5301%209.5136%2010.5215%209.5127%2010.5125C9.5127%2010.4813%209.55019%2010.45%209.59389%2010.45C9.61039%2010.45%209.6266%2010.4543%209.6408%2010.4625'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.3311%2010.5625C9.3311%2010.5531%209.3373%2010.5469%209.3436%2010.5469C9.3529%2010.5469%209.3561%2010.5531%209.3561%2010.5594C9.3561%2010.5627%209.3547%2010.5659%209.3524%2010.5682C9.35%2010.5706%209.3469%2010.5719%209.3436%2010.5719C9.3373%2010.5719%209.3311%2010.5687%209.3311%2010.5594V10.5625ZM9.3342%2010.5125C9.3342%2010.5062%209.3436%2010.5%209.3498%2010.5C9.3561%2010.5%209.3623%2010.5062%209.3623%2010.5125C9.3623%2010.5187%209.3561%2010.525%209.3498%2010.525C9.3436%2010.525%209.3373%2010.5187%209.3373%2010.5125H9.3342ZM9.3654%2010.4781C9.3654%2010.4687%209.3717%2010.4656%209.3811%2010.4656C9.3844%2010.4656%209.3875%2010.4669%209.3899%2010.4693C9.3922%2010.4716%209.3936%2010.4748%209.3936%2010.4781C9.3936%2010.4814%209.3922%2010.4846%209.3899%2010.487C9.3875%2010.4893%209.3844%2010.4906%209.3811%2010.4906L9.3753%2010.4907L9.3701%2010.4883L9.3666%2010.4838C9.3666%2010.4838%209.3654%2010.4801%209.3654%2010.4781ZM9.4061%2010.4562C9.4061%2010.45%209.4123%2010.4437%209.4217%2010.4437C9.4279%2010.4437%209.4342%2010.45%209.4342%2010.4562C9.4342%2010.4656%209.4279%2010.4719%209.4217%2010.4719C9.4195%2010.4725%209.4172%2010.4726%209.415%2010.4721C9.4128%2010.4715%209.4108%2010.4704%209.4092%2010.4688C9.4076%2010.4672%209.4064%2010.4651%209.4059%2010.4629C9.4053%2010.4607%209.4054%2010.4584%209.4061%2010.4562ZM9.4498%2010.4594C9.4498%2010.4531%209.4561%2010.4469%209.4654%2010.4469C9.4687%2010.4469%209.4719%2010.4482%209.4743%2010.4505C9.4766%2010.4529%209.4779%2010.4561%209.4779%2010.4594C9.4779%2010.4627%209.4766%2010.4659%209.4743%2010.4682C9.4719%2010.4706%209.4687%2010.4719%209.4654%2010.4719C9.4561%2010.4719%209.4498%2010.4656%209.4498%2010.4594Z'%20stroke='black'%20stroke-width='0.05'/%3e%3cpath%20d='M9.6854%2010.5844H9.6916C9.6908%2010.5885%209.6908%2010.5927%209.6916%2010.5969C9.6916%2010.6156%209.7072%2010.6281%209.7229%2010.6281C9.7297%2010.6284%209.7365%2010.6265%209.7422%2010.6225C9.7479%2010.6186%209.752%2010.6128%209.7541%2010.6062L9.7604%2010.5969V10.6094C9.7635%2010.625%209.7791%2010.6344%209.7947%2010.6344C9.8135%2010.6344%209.826%2010.6219%209.826%2010.6031V10.6L9.8385%2010.5875L9.8447%2010.6031C9.8428%2010.607%209.8418%2010.6113%209.8416%2010.6156C9.8416%2010.6239%209.8449%2010.6319%209.8508%2010.6377C9.8566%2010.6436%209.8646%2010.6469%209.8729%2010.6469C9.8854%2010.6469%209.8947%2010.6406%209.901%2010.6312L9.9072%2010.625V10.6344C9.9072%2010.6437%209.9104%2010.6531%209.9197%2010.6562C9.9197%2010.6562%209.9322%2010.6562%209.951%2010.6437C9.9697%2010.6312%209.9729%2010.6219%209.9729%2010.6219V10.6344C9.9729%2010.6344%209.9572%2010.6594%209.9416%2010.6656C9.9354%2010.6719%209.926%2010.6781%209.9166%2010.675C9.9072%2010.675%209.8979%2010.6656%209.8947%2010.6562C9.8881%2010.6601%209.8805%2010.6622%209.8729%2010.6625C9.8541%2010.6625%209.8354%2010.6531%209.8291%2010.6375C9.8248%2010.6423%209.8195%2010.6462%209.8136%2010.6489C9.8076%2010.6516%209.8012%2010.653%209.7947%2010.6531C9.7791%2010.6531%209.7635%2010.6469%209.7572%2010.6344C9.7487%2010.6423%209.7376%2010.6467%209.726%2010.6469C9.7072%2010.6469%209.6947%2010.6406%209.6822%2010.6281C9.676%2010.6406%209.6604%2010.6469%209.6447%2010.6469C9.6322%2010.6469%209.6197%2010.6437%209.6135%2010.6344C9.6086%2010.6404%209.6024%2010.6453%209.5954%2010.6485C9.5883%2010.6518%209.5806%2010.6534%209.5729%2010.6531C9.5604%2010.6531%209.5479%2010.6469%209.5385%2010.6375C9.5322%2010.6531%209.5135%2010.6625%209.4947%2010.6625C9.4885%2010.6625%209.4791%2010.6625%209.4729%2010.6562C9.4697%2010.6656%209.4604%2010.675%209.451%2010.675C9.4416%2010.675%209.4322%2010.675%209.4229%2010.6687C9.4107%2010.6602%209.4002%2010.6496%209.3916%2010.6375L9.3947%2010.6219L9.4197%2010.6437C9.4354%2010.6562%209.4479%2010.6562%209.4479%2010.6562C9.4572%2010.6562%209.4604%2010.6437%209.4604%2010.6344V10.625L9.4666%2010.6312C9.4729%2010.6406%209.4822%2010.6469%209.4947%2010.6469C9.503%2010.6469%209.511%2010.6436%209.5168%2010.6377C9.5227%2010.6319%209.526%2010.6239%209.526%2010.6156C9.5268%2010.6115%209.5268%2010.6072%209.526%2010.6031V10.5875L9.5385%2010.6V10.6031C9.5385%2010.6219%209.5541%2010.6344%209.5697%2010.6344C9.5885%2010.6344%209.601%2010.625%209.6041%2010.6062V10.5969L9.6104%2010.6062C9.6166%2010.6187%209.6291%2010.6281%209.6416%2010.6281C9.6604%2010.6281%209.676%2010.6156%209.676%2010.5969C9.6764%2010.5938%209.6764%2010.5906%209.676%2010.5875H9.6822'%20fill='%23C8B100'/%3e%3cpath%20d='M9.6854%2010.5844H9.6916C9.6908%2010.5885%209.6908%2010.5927%209.6916%2010.5969C9.6916%2010.6156%209.7072%2010.6281%209.7229%2010.6281C9.7297%2010.6284%209.7365%2010.6265%209.7422%2010.6225C9.7479%2010.6186%209.752%2010.6128%209.7541%2010.6062L9.7604%2010.5969V10.6094C9.7635%2010.625%209.7791%2010.6344%209.7947%2010.6344C9.8135%2010.6344%209.826%2010.6219%209.826%2010.6031V10.6L9.8385%2010.5875L9.8447%2010.6031C9.8428%2010.607%209.8418%2010.6113%209.8416%2010.6156C9.8416%2010.6239%209.8449%2010.6319%209.8508%2010.6377C9.8566%2010.6436%209.8646%2010.6469%209.8729%2010.6469C9.8854%2010.6469%209.8947%2010.6406%209.901%2010.6312L9.9072%2010.625V10.6344C9.9072%2010.6437%209.9104%2010.6531%209.9197%2010.6562C9.9197%2010.6562%209.9322%2010.6562%209.951%2010.6437C9.9697%2010.6312%209.9729%2010.6219%209.9729%2010.6219V10.6344C9.9729%2010.6344%209.9572%2010.6594%209.9416%2010.6656C9.9354%2010.6719%209.926%2010.6781%209.9166%2010.675C9.9072%2010.675%209.8979%2010.6656%209.8947%2010.6562C9.8881%2010.6601%209.8805%2010.6622%209.8729%2010.6625C9.8541%2010.6625%209.8354%2010.6531%209.8291%2010.6375C9.8248%2010.6423%209.8195%2010.6462%209.8136%2010.6489C9.8076%2010.6516%209.8012%2010.653%209.7947%2010.6531C9.7791%2010.6531%209.7635%2010.6469%209.7572%2010.6344C9.7487%2010.6423%209.7376%2010.6467%209.726%2010.6469C9.7072%2010.6469%209.6947%2010.6406%209.6822%2010.6281C9.676%2010.6406%209.6604%2010.6469%209.6447%2010.6469C9.6322%2010.6469%209.6197%2010.6437%209.6135%2010.6344C9.6086%2010.6404%209.6024%2010.6453%209.5954%2010.6485C9.5883%2010.6518%209.5806%2010.6534%209.5729%2010.6531C9.5604%2010.6531%209.5479%2010.6469%209.5385%2010.6375C9.5322%2010.6531%209.5135%2010.6625%209.4947%2010.6625C9.4885%2010.6625%209.4791%2010.6625%209.4729%2010.6562C9.4697%2010.6656%209.4604%2010.675%209.451%2010.675C9.4416%2010.675%209.4322%2010.675%209.4229%2010.6687C9.4107%2010.6602%209.4002%2010.6496%209.3916%2010.6375L9.3947%2010.6219L9.4197%2010.6437C9.4354%2010.6562%209.4479%2010.6562%209.4479%2010.6562C9.4572%2010.6562%209.4604%2010.6437%209.4604%2010.6344V10.625L9.4666%2010.6312C9.4729%2010.6406%209.4822%2010.6469%209.4947%2010.6469C9.503%2010.6469%209.511%2010.6436%209.5168%2010.6377C9.5227%2010.6319%209.526%2010.6239%209.526%2010.6156C9.5268%2010.6115%209.5268%2010.6072%209.526%2010.6031V10.5875L9.5385%2010.6V10.6031C9.5385%2010.6219%209.5541%2010.6344%209.5697%2010.6344C9.5885%2010.6344%209.601%2010.625%209.6041%2010.6062V10.5969L9.6104%2010.6062C9.6166%2010.6187%209.6291%2010.6281%209.6416%2010.6281C9.6604%2010.6281%209.676%2010.6156%209.676%2010.5969C9.6764%2010.5938%209.6764%2010.5906%209.676%2010.5875H9.6822L9.6854%2010.5844Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.6809%2010.6656C9.5902%2010.6656%209.509%2010.6781%209.4527%2010.6969L9.44341%2010.6906L9.4465%2010.6813C9.509%2010.6625%209.5902%2010.65%209.6809%2010.65C9.7746%2010.65%209.859%2010.6625%209.9184%2010.6813C9.9184%2010.6813%209.9246%2010.6875%209.9215%2010.6906L9.9121%2010.6969C9.8368%2010.6758%209.759%2010.6653%209.6809%2010.6656Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.6809%2010.6656C9.5902%2010.6656%209.509%2010.6781%209.4527%2010.6969L9.44341%2010.6906L9.4465%2010.6813C9.509%2010.6625%209.5902%2010.65%209.6809%2010.65C9.7746%2010.65%209.859%2010.6625%209.9184%2010.6813C9.9184%2010.6813%209.9246%2010.6875%209.9215%2010.6906L9.9121%2010.6969C9.8368%2010.6758%209.759%2010.6653%209.6809%2010.6656Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.5938%2010.7004C9.5938%2010.6907%209.6002%2010.6875%209.6099%2010.6875C9.6133%2010.6875%209.6166%2010.6889%209.619%2010.6913C9.6215%2010.6937%209.6228%2010.697%209.6228%2010.7004C9.6228%2010.7038%209.6215%2010.7071%209.619%2010.7096C9.6166%2010.712%209.6133%2010.7133%209.6099%2010.7133C9.6002%2010.7133%209.5938%2010.7069%209.5938%2010.7004Z'%20fill='white'/%3e%3cpath%20d='M9.5938%2010.7004C9.5938%2010.6907%209.6002%2010.6875%209.6099%2010.6875C9.6133%2010.6875%209.6166%2010.6889%209.619%2010.6913C9.6215%2010.6937%209.6228%2010.697%209.6228%2010.7004C9.6228%2010.7038%209.6215%2010.7071%209.619%2010.7096C9.6166%2010.712%209.6133%2010.7133%209.6099%2010.7133C9.6002%2010.7133%209.5938%2010.7069%209.5938%2010.7004Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.6842%2010.7031H9.6529C9.6498%2010.7031%209.6436%2010.7031%209.6436%2010.6938L9.6529%2010.6844H9.7154C9.7154%2010.6844%209.719%2010.6863%209.7201%2010.688C9.7212%2010.6897%209.7218%2010.6917%209.7217%2010.6938C9.7217%2010.6962%209.7207%2010.6986%209.7189%2010.7004C9.7172%2010.7021%209.7148%2010.7031%209.7123%2010.7031H9.6811'%20fill='%23AD1519'/%3e%3cpath%20d='M9.6842%2010.7031H9.6529C9.6498%2010.7031%209.6436%2010.7031%209.6436%2010.6938L9.6529%2010.6844H9.7154C9.7154%2010.6844%209.719%2010.6863%209.7201%2010.688C9.7212%2010.6897%209.7218%2010.6917%209.7217%2010.6938C9.7217%2010.6962%209.7207%2010.6986%209.7189%2010.7004C9.7172%2010.7021%209.7148%2010.7031%209.7123%2010.7031H9.6811'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.5371%2010.7156H9.5184L9.5145%2010.7163L9.5107%2010.7153L9.5077%2010.7129L9.50591%2010.7094C9.50591%2010.7069%209.50681%2010.7045%209.50861%2010.7027C9.51041%2010.701%209.5127%2010.7%209.5152%2010.7L9.53401%2010.6969L9.5559%2010.6937C9.5621%2010.6937%209.56521%2010.6937%209.56841%2010.7L9.5688%2010.7045L9.56701%2010.7088L9.56351%2010.7116L9.559%2010.7125H9.5371'%20fill='%23058E6E'/%3e%3cpath%20d='M9.5371%2010.7156H9.5184L9.5145%2010.7163L9.5107%2010.7153L9.5077%2010.7129L9.50591%2010.7094C9.50591%2010.7069%209.50681%2010.7045%209.50861%2010.7027C9.51041%2010.701%209.5127%2010.7%209.5152%2010.7L9.53401%2010.6969L9.5559%2010.6937C9.5621%2010.6937%209.56521%2010.6937%209.56841%2010.7L9.5688%2010.7045L9.56701%2010.7088L9.56351%2010.7116L9.559%2010.7125H9.5371'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.45309%2010.7281L9.46249%2010.7156H9.48439L9.47189%2010.7344L9.45309%2010.7281Z'%20fill='%23AD1519'/%3e%3cpath%20d='M9.45309%2010.7281L9.46249%2010.7156H9.48439L9.47189%2010.7344L9.45309%2010.7281Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.7451%2010.7004C9.7451%2010.6907%209.7516%2010.6875%209.758%2010.6875C9.7677%2010.6875%209.7742%2010.6907%209.7742%2010.7004C9.7742%2010.7069%209.7677%2010.7133%209.758%2010.7133C9.7546%2010.7133%209.7513%2010.712%209.7489%2010.7096C9.7465%2010.7071%209.7451%2010.7038%209.7451%2010.7004Z'%20fill='white'/%3e%3cpath%20d='M9.7451%2010.7004C9.7451%2010.6907%209.7516%2010.6875%209.758%2010.6875C9.7677%2010.6875%209.7742%2010.6907%209.7742%2010.7004C9.7742%2010.7069%209.7677%2010.7133%209.758%2010.7133C9.7546%2010.7133%209.7513%2010.712%209.7489%2010.7096C9.7465%2010.7071%209.7451%2010.7038%209.7451%2010.7004Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.8291%2010.7156H9.851C9.853%2010.7157%209.855%2010.7152%209.8567%2010.7141C9.8584%2010.7129%209.8603%2010.7094%209.8603%2010.7094C9.8605%2010.7073%209.8599%2010.7053%209.8588%2010.7036C9.8588%2010.7036%209.856%2010.7007%209.8541%2010.7L9.8322%2010.6969L9.8104%2010.6937C9.8041%2010.6937%209.801%2010.6937%209.7979%2010.7C9.7979%2010.7062%209.801%2010.7094%209.8072%2010.7125H9.8291'%20fill='%23058E6E'/%3e%3cpath%20d='M9.8291%2010.7156H9.851C9.853%2010.7157%209.855%2010.7152%209.8567%2010.7141C9.8584%2010.7129%209.8603%2010.7094%209.8603%2010.7094C9.8605%2010.7073%209.8599%2010.7053%209.8588%2010.7036C9.8588%2010.7036%209.856%2010.7007%209.8541%2010.7L9.8322%2010.6969L9.8104%2010.6937C9.8041%2010.6937%209.801%2010.6937%209.7979%2010.7C9.7979%2010.7062%209.801%2010.7094%209.8072%2010.7125H9.8291'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.91091%2010.7318L9.90441%2010.7156H9.88181L9.89151%2010.735L9.91091%2010.7318Z'%20fill='%23AD1519'/%3e%3cpath%20d='M9.91091%2010.7318L9.90441%2010.7156H9.88181L9.89151%2010.735L9.91091%2010.7318Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.6826%2010.7844C9.6196%2010.7857%209.5566%2010.7794%209.4951%2010.7656C9.5565%2010.7509%209.6195%2010.7436%209.6826%2010.7437C9.7576%2010.7437%209.8232%2010.7531%209.8732%2010.7656C9.8232%2010.7781%209.7576%2010.7844%209.6857%2010.7844'%20fill='%23AD1519'/%3e%3cpath%20d='M9.6826%2010.7844C9.6196%2010.7857%209.5566%2010.7794%209.4951%2010.7656C9.5565%2010.7509%209.6195%2010.7436%209.6826%2010.7437C9.7576%2010.7437%209.8232%2010.7531%209.8732%2010.7656C9.8232%2010.7781%209.7576%2010.7844%209.6857%2010.7844H9.6826Z'%20stroke='black'%20stroke-width='0.075'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.91311%2010.625L9.91001%2010.6156C9.90371%2010.6156%209.90061%2010.6156%209.89751%2010.6219L9.90061%2010.6344C9.90681%2010.6344%209.91001%2010.6344%209.91311%2010.625Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.91311%2010.625L9.91001%2010.6156C9.90371%2010.6156%209.90061%2010.6156%209.89751%2010.6219L9.90061%2010.6344C9.90681%2010.6344%209.91001%2010.6344%209.91311%2010.625Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.77011%2010.6004C9.77011%2010.594%209.76681%2010.5875%209.76041%2010.5875C9.76041%2010.5875%209.75391%2010.5907%209.75391%2010.5972C9.75391%2010.6036%209.75391%2010.6101%209.76041%2010.6101L9.77011%2010.6004Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.77011%2010.6004C9.77011%2010.594%209.76681%2010.5875%209.76041%2010.5875C9.76041%2010.5875%209.75391%2010.5907%209.75391%2010.5972C9.75391%2010.6036%209.75391%2010.6101%209.76041%2010.6101L9.77011%2010.6004Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.59959%2010.6004C9.59959%2010.594%209.59959%2010.5875%209.60609%2010.5875L9.61579%2010.5972L9.60929%2010.6101C9.60279%2010.6101%209.59959%2010.6036%209.59959%2010.6004Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.59959%2010.6004C9.59959%2010.594%209.59959%2010.5875%209.60609%2010.5875L9.61579%2010.5972L9.60929%2010.6101C9.60279%2010.6101%209.59959%2010.6036%209.59959%2010.6004Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.45309%2010.625L9.45629%2010.6156C9.46249%2010.6156%209.46559%2010.6156%209.46879%2010.6219L9.46559%2010.6344C9.45939%2010.6344%209.45629%2010.6344%209.45309%2010.625Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.45309%2010.625L9.45629%2010.6156C9.46249%2010.6156%209.46559%2010.6156%209.46879%2010.6219L9.46559%2010.6344C9.45939%2010.6344%209.45629%2010.6344%209.45309%2010.625Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.6822%2010.5156L9.6572%2010.5313L9.676%2010.5719L9.6822%2010.575L9.6916%2010.5719L9.7104%2010.5313L9.6822%2010.5156Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.6822%2010.5156L9.6572%2010.5313L9.676%2010.5719L9.6822%2010.575L9.6916%2010.5719L9.7104%2010.5313L9.6822%2010.5156Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.62601%2010.5781L9.63851%2010.5938L9.67911%2010.5813L9.68221%2010.575L9.67911%2010.5688L9.63851%2010.5594L9.62601%2010.5781Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.62601%2010.5781L9.63851%2010.5938L9.67911%2010.5813L9.68221%2010.575L9.67911%2010.5688L9.63851%2010.5594L9.62601%2010.5781Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.7387%2010.5781L9.7293%2010.5938L9.6887%2010.5813L9.6855%2010.575V10.5688L9.7293%2010.5594L9.7418%2010.5781'%20fill='%23C8B100'/%3e%3cpath%20d='M9.7387%2010.5781L9.7293%2010.5938L9.6887%2010.5813L9.6855%2010.575V10.5688L9.7293%2010.5594L9.7418%2010.5781'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.517%2010.5312L9.4951%2010.5531L9.5232%2010.5844L9.5295%2010.5875L9.5357%2010.5844L9.542%2010.5437L9.517%2010.5344'%20fill='%23C8B100'/%3e%3cpath%20d='M9.517%2010.5312L9.4951%2010.5531L9.5232%2010.5844L9.5295%2010.5875L9.5357%2010.5844L9.542%2010.5437L9.517%2010.5344'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.4727%2010.6L9.4883%2010.6156L9.5258%2010.5969V10.5906L9.5227%2010.5844L9.482%2010.5812L9.4727%2010.6Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.4727%2010.6L9.4883%2010.6156L9.5258%2010.5969V10.5906L9.5227%2010.5844L9.482%2010.5812L9.4727%2010.6Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.58461%2010.5781L9.5752%2010.5969H9.53461L9.52831%2010.5906L9.5314%2010.5813L9.5689%2010.5625L9.58461%2010.5781Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.58461%2010.5781L9.5752%2010.5969H9.53461L9.52831%2010.5906L9.5314%2010.5813L9.5689%2010.5625L9.58461%2010.5781Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.43181%2010.6062V10.625L9.38811%2010.6312L9.38181%2010.6281V10.6219L9.41311%2010.5938L9.43181%2010.6062Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.43181%2010.6062V10.625L9.38811%2010.6312L9.38181%2010.6281V10.6219L9.41311%2010.5938L9.43181%2010.6062Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.5127%2010.5906C9.5127%2010.5812%209.5189%2010.575%209.5283%2010.575C9.5325%2010.575%209.5364%2010.5766%209.5394%2010.5796C9.5423%2010.5825%209.54389%2010.5865%209.54389%2010.5906C9.54319%2010.5942%209.54129%2010.5974%209.53839%2010.5997C9.53549%2010.602%209.532%2010.6032%209.5283%2010.6031C9.5247%2010.6032%209.5211%2010.602%209.5182%2010.5997C9.5154%2010.5974%209.5134%2010.5942%209.5127%2010.5906Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.5127%2010.5906C9.5127%2010.5812%209.5189%2010.575%209.5283%2010.575C9.5325%2010.575%209.5364%2010.5766%209.5394%2010.5796C9.5423%2010.5825%209.54389%2010.5865%209.54389%2010.5906C9.54319%2010.5942%209.54129%2010.5974%209.53839%2010.5997C9.53549%2010.602%209.532%2010.6032%209.5283%2010.6031C9.5247%2010.6032%209.5211%2010.602%209.5182%2010.5997C9.5154%2010.5974%209.5134%2010.5942%209.5127%2010.5906Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.85019%2010.5312L9.8721%2010.5531L9.84389%2010.5844L9.8377%2010.5875L9.8346%2010.5844L9.8252%2010.5437L9.85019%2010.5344'%20fill='%23C8B100'/%3e%3cpath%20d='M9.85019%2010.5312L9.8721%2010.5531L9.84389%2010.5844L9.8377%2010.5875L9.8346%2010.5844L9.8252%2010.5437L9.85019%2010.5344'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.8949%2010.6L9.8793%2010.6156L9.8418%2010.5969V10.5906L9.8449%2010.5844L9.8855%2010.5812L9.8949%2010.6Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.8949%2010.6L9.8793%2010.6156L9.8418%2010.5969V10.5906L9.8449%2010.5844L9.8855%2010.5812L9.8949%2010.6Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.7822%2010.5781L9.7916%2010.5969H9.8322L9.8385%2010.5906L9.8354%2010.5813L9.7979%2010.5625L9.7822%2010.5781Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.7822%2010.5781L9.7916%2010.5969H9.8322L9.8385%2010.5906L9.8354%2010.5813L9.7979%2010.5625L9.7822%2010.5781Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.9287%2010.6062V10.625L9.9725%2010.6312L9.97869%2010.6281V10.6219L9.9475%2010.5938L9.9287%2010.6062Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.9287%2010.6062V10.625L9.9725%2010.6312L9.97869%2010.6281V10.6219L9.9475%2010.5938L9.9287%2010.6062Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.6689%2010.5754C9.6689%2010.569%209.6754%2010.5625%209.6851%2010.5625C9.6915%2010.5625%209.698%2010.569%209.698%2010.5754C9.698%2010.5851%209.6915%2010.5916%209.6851%2010.5916C9.6808%2010.5916%209.6767%2010.5899%209.6737%2010.5868C9.6706%2010.5838%209.6689%2010.5797%209.6689%2010.5754Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.6689%2010.5754C9.6689%2010.569%209.6754%2010.5625%209.6851%2010.5625C9.6915%2010.5625%209.698%2010.569%209.698%2010.5754C9.698%2010.5851%209.6915%2010.5916%209.6851%2010.5916C9.6808%2010.5916%209.6767%2010.5899%209.6737%2010.5868C9.6706%2010.5838%209.6689%2010.5797%209.6689%2010.5754Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.8232%2010.5906C9.8232%2010.5812%209.8326%2010.575%209.8389%2010.575C9.8482%2010.575%209.8545%2010.5812%209.8545%2010.5906C9.8545%2010.6%209.8482%2010.6031%209.8389%2010.6031C9.8352%2010.6032%209.8316%2010.602%209.8288%2010.5997C9.8259%2010.5974%209.824%2010.5942%209.8232%2010.5906Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.8232%2010.5906C9.8232%2010.5812%209.8326%2010.575%209.8389%2010.575C9.8482%2010.575%209.8545%2010.5812%209.8545%2010.5906C9.8545%2010.6%209.8482%2010.6031%209.8389%2010.6031C9.8352%2010.6032%209.8316%2010.602%209.8288%2010.5997C9.8259%2010.5974%209.824%2010.5942%209.8232%2010.5906Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.6572%2010.4187C9.6572%2010.4031%209.6697%2010.3937%209.6822%2010.3937C9.6947%2010.3937%209.7135%2010.4031%209.7135%2010.4187C9.7135%2010.4344%209.6979%2010.4437%209.6822%2010.4437C9.6758%2010.4431%209.6699%2010.4402%209.6653%2010.4357C9.6608%2010.4311%209.6579%2010.4251%209.6572%2010.4187Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.70331%2010.4094V10.4281H9.6564V10.4094H9.6689V10.3687H9.65331V10.3531H9.6689V10.3344H9.68771V10.3531H9.7064V10.3719H9.68771V10.4094H9.7002'%20fill='%23C8B100'/%3e%3cpath%20d='M9.70331%2010.4094V10.4281H9.6564V10.4094H9.6689V10.3687H9.65331V10.3531H9.6689V10.3344H9.68771V10.3531H9.7064V10.3719H9.68771V10.4094H9.7002H9.70331Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.7186%2010.4094V10.4281H9.6436V10.4094H9.6748V10.3687H9.6529V10.3531H9.6717V10.3344H9.6904V10.3531H9.7092V10.3719H9.6904V10.4094H9.7217'%20fill='%23C8B100'/%3e%3cpath%20d='M9.6916%2010.3937C9.7041%2010.3937%209.7104%2010.4062%209.7104%2010.4187C9.7104%2010.4344%209.6979%2010.4437%209.6822%2010.4437C9.6758%2010.4431%209.6699%2010.4402%209.6653%2010.4357C9.6608%2010.4311%209.6579%2010.4251%209.6572%2010.4187C9.6572%2010.4062%209.6635%2010.3969%209.676%2010.3937'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.37561%2010.6312L9.35681%2010.6094C9.35011%2010.6051%209.34271%2010.6019%209.33501%2010.6C9.33501%2010.5969%209.34431%2010.5906%209.35371%2010.5906C9.36001%2010.5906%209.36311%2010.5906%209.36621%2010.5969V10.5906C9.36621%2010.5906%209.37561%2010.5906%209.37871%2010.6V10.6312'%20fill='%23C8B100'/%3e%3cpath%20d='M9.37561%2010.6312L9.35681%2010.6094C9.35011%2010.6051%209.34271%2010.6019%209.33501%2010.6C9.33501%2010.5969%209.34431%2010.5906%209.35371%2010.5906C9.36001%2010.5906%209.36311%2010.5906%209.36621%2010.5969V10.5906C9.36621%2010.5906%209.37561%2010.5906%209.37871%2010.6V10.6312H9.37561Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.37549%2010.6252C9.37869%2010.6187%209.38839%2010.6187%209.39159%2010.6252C9.39809%2010.6284%209.4013%2010.6348%209.3949%2010.6413L9.3787%2010.6381C9.3755%2010.6348%209.3723%2010.6252%209.3787%2010.6219'%20fill='%23C8B100'/%3e%3cpath%20d='M9.37549%2010.6252C9.37869%2010.6187%209.38839%2010.6187%209.39159%2010.6252C9.39809%2010.6284%209.4013%2010.6348%209.3949%2010.6413L9.3787%2010.6381C9.3755%2010.6348%209.3723%2010.6252%209.3787%2010.6219L9.37549%2010.6252Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.9846%2010.6312L10.0033%2010.6094C10.0096%2010.6031%2010.0252%2010.6%2010.0252%2010.6C10.0252%2010.5969%2010.0158%2010.5906%2010.0064%2010.5906C10.0016%2010.591%209.9972%2010.5933%209.9939%2010.5969V10.5906C9.9939%2010.5906%209.9846%2010.5906%209.9814%2010.6V10.6219L9.9846%2010.6312Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.9846%2010.6312L10.0033%2010.6094C10.0096%2010.6031%2010.0252%2010.6%2010.0252%2010.6C10.0252%2010.5969%2010.0158%2010.5906%2010.0064%2010.5906C10.0016%2010.591%209.9972%2010.5933%209.9939%2010.5969V10.5906C9.9939%2010.5906%209.9846%2010.5906%209.9814%2010.6V10.6219L9.9846%2010.6312Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.9863%2010.6252C9.9831%2010.6187%209.9767%2010.6187%209.9702%2010.6252C9.9637%2010.6284%209.9637%2010.6348%209.967%2010.6413L9.9831%2010.6381C9.9896%2010.6348%209.9896%2010.6252%209.9863%2010.6219'%20fill='%23C8B100'/%3e%3cpath%20d='M9.9863%2010.6252C9.9831%2010.6187%209.9767%2010.6187%209.9702%2010.6252C9.9637%2010.6284%209.9637%2010.6348%209.967%2010.6413L9.9831%2010.6381C9.9896%2010.6348%209.9896%2010.6252%209.9863%2010.6219V10.6252Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.34959%2010.9688H10.0184V10.7969H9.34959V10.9719V10.9688Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.34959%2010.9688H10.0184V10.7969H9.34959V10.9719V10.9688Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.9471%2011.0875C9.9429%2011.0867%209.9387%2011.0867%209.9346%2011.0875H9.4189C9.4377%2011.0813%209.4502%2011.0656%209.4502%2011.05C9.4502%2011.0313%209.4377%2011.0156%209.4189%2011.0094H9.9502H9.9471C9.9283%2011.0156%209.9158%2011.0313%209.9158%2011.05C9.9158%2011.0656%209.9283%2011.0813%209.9471%2011.0875Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.9471%2011.0875C9.9429%2011.0867%209.9387%2011.0867%209.9346%2011.0875H9.4189C9.4377%2011.0813%209.4502%2011.0656%209.4502%2011.05C9.4502%2011.0313%209.4377%2011.0156%209.4189%2011.0094H9.9502H9.9471C9.9283%2011.0156%209.9158%2011.0313%209.9158%2011.05C9.9158%2011.0656%209.9283%2011.0813%209.9471%2011.0875Z'%20stroke='black'%20stroke-width='0.1'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.4346%2011.0875H9.9346C9.9533%2011.0875%209.96581%2011.0969%209.96581%2011.1094C9.96581%2011.1219%209.9533%2011.1344%209.9346%2011.1344H9.4346C9.4158%2011.1344%209.40331%2011.1219%209.40331%2011.1094C9.40331%2011.0969%209.4189%2011.0844%209.4346%2011.0844'%20fill='%23C8B100'/%3e%3cpath%20d='M9.4346%2011.0875H9.9346C9.9533%2011.0875%209.96581%2011.0969%209.96581%2011.1094C9.96581%2011.1219%209.9533%2011.1344%209.9346%2011.1344H9.4346C9.4158%2011.1344%209.40331%2011.1219%209.40331%2011.1094C9.40331%2011.0969%209.4189%2011.0844%209.4346%2011.0844V11.0875Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.4346%2010.9688H9.9346C9.9533%2010.9688%209.96581%2010.9812%209.96581%2010.9906C9.96581%2011.0031%209.9533%2011.0094%209.9346%2011.0094H9.4346C9.4158%2011.0094%209.40331%2011.0031%209.40331%2010.9906C9.40331%2010.9812%209.4158%2010.9719%209.4346%2010.9719'%20fill='%23C8B100'/%3e%3cpath%20d='M9.4346%2010.9688H9.9346C9.9533%2010.9688%209.96581%2010.9812%209.96581%2010.9906C9.96581%2011.0031%209.9533%2011.0094%209.9346%2011.0094H9.4346C9.4158%2011.0094%209.40331%2011.0031%209.40331%2010.9906C9.40331%2010.9812%209.4158%2010.9719%209.4346%2010.9719V10.9688Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.2199%2013.9188C9.2637%2013.9188%209.3043%2013.9094%209.3355%2013.8938C9.3717%2013.8767%209.4112%2013.8682%209.4512%2013.8688C9.4949%2013.8688%209.5387%2013.8781%209.5699%2013.8938C9.6012%2013.9094%209.6418%2013.9188%209.6855%2013.9188C9.7324%2013.9188%209.773%2013.9094%209.8043%2013.8938C9.8395%2013.8772%209.8779%2013.8686%209.9168%2013.8688C9.9568%2013.8677%209.9964%2013.8763%2010.0324%2013.8938C10.0637%2013.9094%2010.1074%2013.9188%2010.1512%2013.9188V13.9938C10.1099%2013.994%2010.0692%2013.9843%2010.0324%2013.9656C9.9964%2013.9484%209.9568%2013.9398%209.9168%2013.9406C9.873%2013.9406%209.8324%2013.95%209.8043%2013.9656C9.773%2013.9813%209.7324%2013.9938%209.6855%2013.9938C9.6453%2013.9938%209.6056%2013.9842%209.5699%2013.9656C9.5328%2013.9481%209.4922%2013.9396%209.4512%2013.9406C9.4112%2013.9399%209.3716%2013.9485%209.3355%2013.9656C9.3043%2013.9813%209.2637%2013.9938%209.2168%2013.9938V13.9188'%20fill='%23005BBF'/%3e%3cpath%20d='M9.2199%2013.9188C9.2637%2013.9188%209.3043%2013.9094%209.3355%2013.8938C9.3717%2013.8767%209.4112%2013.8682%209.4512%2013.8688C9.4949%2013.8688%209.5387%2013.8781%209.5699%2013.8938C9.6012%2013.9094%209.6418%2013.9188%209.6855%2013.9188C9.7324%2013.9188%209.773%2013.9094%209.8043%2013.8938C9.8395%2013.8772%209.8779%2013.8686%209.9168%2013.8688C9.9568%2013.8677%209.9964%2013.8763%2010.0324%2013.8938C10.0637%2013.9094%2010.1074%2013.9188%2010.1512%2013.9188V13.9938C10.1099%2013.994%2010.0692%2013.9843%2010.0324%2013.9656C9.9964%2013.9484%209.9568%2013.9398%209.9168%2013.9406C9.873%2013.9406%209.8324%2013.95%209.8043%2013.9656C9.773%2013.9813%209.7324%2013.9938%209.6855%2013.9938C9.6453%2013.9938%209.6056%2013.9842%209.5699%2013.9656C9.5328%2013.9481%209.4922%2013.9396%209.4512%2013.9406C9.4112%2013.9399%209.3716%2013.9485%209.3355%2013.9656C9.3043%2013.9813%209.2637%2013.9938%209.2168%2013.9938V13.9188H9.2199Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.2199%2013.9938C9.2637%2013.9938%209.3043%2013.9813%209.3355%2013.9656C9.3668%2013.95%209.4074%2013.9406%209.4512%2013.9406C9.4949%2013.9406%209.5387%2013.95%209.5699%2013.9656C9.6012%2013.9813%209.6418%2013.9938%209.6855%2013.9938C9.7268%2013.9941%209.7676%2013.9844%209.8043%2013.9656C9.8395%2013.9491%209.8779%2013.9405%209.9168%2013.9406C9.9637%2013.9406%2010.0043%2013.95%2010.0324%2013.9656C10.0637%2013.9813%2010.1074%2013.9938%2010.1512%2013.9938V14.0656C10.1099%2014.0658%2010.0692%2014.0562%2010.0324%2014.0375C9.9961%2014.0212%209.9565%2014.0137%209.9168%2014.0156C9.873%2014.0156%209.8324%2014.0219%209.8043%2014.0375C9.773%2014.0531%209.7324%2014.0656%209.6855%2014.0656C9.6451%2014.0671%209.6051%2014.0574%209.5699%2014.0375C9.5387%2014.025%209.498%2014.0156%209.4512%2014.0156C9.4115%2014.014%209.3719%2014.0214%209.3355%2014.0375C9.2989%2014.0564%209.2581%2014.0661%209.2168%2014.0656V13.9938'%20fill='%23CCCCCC'/%3e%3cpath%20d='M9.2199%2013.9938C9.2637%2013.9938%209.3043%2013.9813%209.3355%2013.9656C9.3668%2013.95%209.4074%2013.9406%209.4512%2013.9406C9.4949%2013.9406%209.5387%2013.95%209.5699%2013.9656C9.6012%2013.9813%209.6418%2013.9938%209.6855%2013.9938C9.7268%2013.9941%209.7676%2013.9844%209.8043%2013.9656C9.8395%2013.9491%209.8779%2013.9405%209.9168%2013.9406C9.9637%2013.9406%2010.0043%2013.95%2010.0324%2013.9656C10.0637%2013.9813%2010.1074%2013.9938%2010.1512%2013.9938V14.0656C10.1099%2014.0658%2010.0692%2014.0562%2010.0324%2014.0375C9.9961%2014.0212%209.9565%2014.0137%209.9168%2014.0156C9.873%2014.0156%209.8324%2014.0219%209.8043%2014.0375C9.773%2014.0531%209.7324%2014.0656%209.6855%2014.0656C9.6451%2014.0671%209.6051%2014.0574%209.5699%2014.0375C9.5387%2014.025%209.498%2014.0156%209.4512%2014.0156C9.4115%2014.014%209.3719%2014.0214%209.3355%2014.0375C9.2989%2014.0564%209.2581%2014.0661%209.2168%2014.0656V13.9938'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.2199%2014.0625C9.2637%2014.0625%209.3043%2014.0563%209.3355%2014.0375C9.3668%2014.025%209.4074%2014.0156%209.4512%2014.0156C9.4949%2014.0156%209.5387%2014.0219%209.5699%2014.0375C9.6012%2014.0531%209.6418%2014.0656%209.6855%2014.0656C9.7268%2014.066%209.7676%2014.0563%209.8043%2014.0375C9.8395%2014.0209%209.8779%2014.0124%209.9168%2014.0125C9.9568%2014.0115%209.9964%2014.02%2010.0324%2014.0375C10.0637%2014.0531%2010.1074%2014.0656%2010.1512%2014.0656V14.1375C10.1099%2014.1377%2010.0692%2014.1281%2010.0324%2014.1094C9.9961%2014.0932%209.9565%2014.0857%209.9168%2014.0875C9.873%2014.0875%209.8324%2014.0969%209.8043%2014.1094C9.773%2014.1281%209.7324%2014.1375%209.6855%2014.1375C9.6418%2014.1375%209.598%2014.1281%209.5699%2014.1125C9.5328%2014.095%209.4922%2014.0864%209.4512%2014.0875C9.4112%2014.0868%209.3716%2014.0954%209.3355%2014.1125C9.3043%2014.1281%209.2637%2014.1375%209.2168%2014.1375V14.0625'%20fill='%23005BBF'/%3e%3cpath%20d='M9.2199%2014.0625C9.2637%2014.0625%209.3043%2014.0563%209.3355%2014.0375C9.3668%2014.025%209.4074%2014.0156%209.4512%2014.0156C9.4949%2014.0156%209.5387%2014.0219%209.5699%2014.0375C9.6012%2014.0531%209.6418%2014.0656%209.6855%2014.0656C9.7268%2014.066%209.7676%2014.0563%209.8043%2014.0375C9.8395%2014.0209%209.8779%2014.0124%209.9168%2014.0125C9.9568%2014.0115%209.9964%2014.02%2010.0324%2014.0375C10.0637%2014.0531%2010.1074%2014.0656%2010.1512%2014.0656V14.1375C10.1099%2014.1377%2010.0692%2014.1281%2010.0324%2014.1094C9.9961%2014.0932%209.9565%2014.0857%209.9168%2014.0875C9.873%2014.0875%209.8324%2014.0969%209.8043%2014.1094C9.773%2014.1281%209.7324%2014.1375%209.6855%2014.1375C9.6418%2014.1375%209.598%2014.1281%209.5699%2014.1125C9.5328%2014.095%209.4922%2014.0864%209.4512%2014.0875C9.4112%2014.0868%209.3716%2014.0954%209.3355%2014.1125C9.3043%2014.1281%209.2637%2014.1375%209.2168%2014.1375V14.0625'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.2199%2014.2094C9.2599%2014.2104%209.2996%2014.2018%209.3355%2014.1844C9.3668%2014.1687%209.4074%2014.1594%209.4512%2014.1594C9.4949%2014.1594%209.5387%2014.1687%209.5699%2014.1844C9.6012%2014.2%209.6418%2014.2094%209.6855%2014.2094C9.7324%2014.2094%209.773%2014.2%209.8043%2014.1812C9.8397%2014.1658%209.8781%2014.1583%209.9168%2014.1594C9.9637%2014.1594%2010.0043%2014.1687%2010.0324%2014.1844C10.0695%2014.202%2010.1102%2014.2105%2010.1512%2014.2094V14.1375C10.1099%2014.1377%2010.0692%2014.1281%2010.0324%2014.1094C9.9961%2014.0932%209.9565%2014.0857%209.9168%2014.0875C9.873%2014.0875%209.8324%2014.0969%209.8043%2014.1094C9.773%2014.125%209.7324%2014.1375%209.6855%2014.1375C9.6418%2014.1375%209.598%2014.1281%209.5699%2014.1125C9.5328%2014.095%209.4922%2014.0864%209.4512%2014.0875C9.4112%2014.0868%209.3716%2014.0954%209.3355%2014.1125C9.3043%2014.1281%209.2637%2014.1375%209.2168%2014.1375V14.2094'%20fill='%23CCCCCC'/%3e%3cpath%20d='M9.2199%2014.2094C9.2599%2014.2104%209.2996%2014.2018%209.3355%2014.1844C9.3668%2014.1687%209.4074%2014.1594%209.4512%2014.1594C9.4949%2014.1594%209.5387%2014.1687%209.5699%2014.1844C9.6012%2014.2%209.6418%2014.2094%209.6855%2014.2094C9.7324%2014.2094%209.773%2014.2%209.8043%2014.1812C9.8397%2014.1658%209.8781%2014.1583%209.9168%2014.1594C9.9637%2014.1594%2010.0043%2014.1687%2010.0324%2014.1844C10.0695%2014.202%2010.1102%2014.2105%2010.1512%2014.2094V14.1375C10.1099%2014.1377%2010.0692%2014.1281%2010.0324%2014.1094C9.9961%2014.0932%209.9565%2014.0857%209.9168%2014.0875C9.873%2014.0875%209.8324%2014.0969%209.8043%2014.1094C9.773%2014.125%209.7324%2014.1375%209.6855%2014.1375C9.6418%2014.1375%209.598%2014.1281%209.5699%2014.1125C9.5328%2014.095%209.4922%2014.0864%209.4512%2014.0875C9.4112%2014.0868%209.3716%2014.0954%209.3355%2014.1125C9.3043%2014.1281%209.2637%2014.1375%209.2168%2014.1375V14.2094'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.2199%2014.2812C9.2599%2014.2822%209.2995%2014.2736%209.3355%2014.2562C9.3668%2014.2406%209.4074%2014.2312%209.4512%2014.2312C9.4949%2014.2312%209.5387%2014.2406%209.5699%2014.2562C9.6012%2014.2719%209.6418%2014.2812%209.6855%2014.2812C9.7268%2014.2816%209.7676%2014.2719%209.8043%2014.2531C9.8397%2014.2376%209.8781%2014.2302%209.9168%2014.2312C9.9637%2014.2312%2010.0043%2014.2406%2010.0324%2014.2562C10.0637%2014.2719%2010.1074%2014.2812%2010.1512%2014.2812V14.2094C10.1102%2014.2105%2010.0695%2014.202%2010.0324%2014.1844C9.9964%2014.1671%209.9568%2014.1586%209.9168%2014.1594C9.8781%2014.1583%209.8397%2014.1658%209.8043%2014.1812C9.7676%2014.2%209.7268%2014.2097%209.6855%2014.2094C9.6418%2014.2094%209.598%2014.2%209.5699%2014.1844C9.5387%2014.1687%209.498%2014.1594%209.4512%2014.1594C9.4074%2014.1594%209.3668%2014.1687%209.3355%2014.1844C9.3043%2014.2%209.2637%2014.2094%209.2168%2014.2094V14.2812'%20fill='%23005BBF'/%3e%3cpath%20d='M9.2199%2014.2812C9.2599%2014.2822%209.2995%2014.2736%209.3355%2014.2562C9.3668%2014.2406%209.4074%2014.2312%209.4512%2014.2312C9.4949%2014.2312%209.5387%2014.2406%209.5699%2014.2562C9.6012%2014.2719%209.6418%2014.2812%209.6855%2014.2812C9.7268%2014.2816%209.7676%2014.2719%209.8043%2014.2531C9.8397%2014.2376%209.8781%2014.2302%209.9168%2014.2312C9.9637%2014.2312%2010.0043%2014.2406%2010.0324%2014.2562C10.0637%2014.2719%2010.1074%2014.2812%2010.1512%2014.2812V14.2094C10.1102%2014.2105%2010.0695%2014.202%2010.0324%2014.1844C9.9964%2014.1671%209.9568%2014.1586%209.9168%2014.1594C9.8781%2014.1583%209.8397%2014.1658%209.8043%2014.1812C9.7676%2014.2%209.7268%2014.2097%209.6855%2014.2094C9.6418%2014.2094%209.598%2014.2%209.5699%2014.1844C9.5387%2014.1687%209.498%2014.1594%209.4512%2014.1594C9.4074%2014.1594%209.3668%2014.1687%209.3355%2014.1844C9.3043%2014.2%209.2637%2014.2094%209.2168%2014.2094V14.2812H9.2199Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.9471%2013.625L9.9439%2013.6406C9.9439%2013.6875%209.98141%2013.7219%2010.0283%2013.7219H9.34081C9.38771%2013.7219%209.42521%2013.6844%209.42521%2013.6406L9.4221%2013.625H9.9471Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.9471%2013.625L9.9439%2013.6406C9.9439%2013.6875%209.98141%2013.7219%2010.0283%2013.7219H9.34081C9.38771%2013.7219%209.42521%2013.6844%209.42521%2013.6406L9.4221%2013.625H9.9471Z'%20stroke='black'%20stroke-width='0.1'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.4346%2013.5781H9.9346C9.9533%2013.5781%209.96581%2013.5875%209.96581%2013.6031C9.96581%2013.6156%209.9533%2013.625%209.9346%2013.625H9.4346C9.4158%2013.625%209.40331%2013.6156%209.40331%2013.6C9.40331%2013.5875%209.4189%2013.5781%209.4346%2013.5781Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.4346%2013.5781H9.9346C9.9533%2013.5781%209.96581%2013.5875%209.96581%2013.6031C9.96581%2013.6156%209.9533%2013.625%209.9346%2013.625H9.4346C9.4158%2013.625%209.40331%2013.6156%209.40331%2013.6C9.40331%2013.5875%209.4189%2013.5781%209.4346%2013.5781Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.34081%2013.8969H10.0283V13.7188H9.34081V13.8938V13.8969Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.34081%2013.8969H10.0283V13.7188H9.34081V13.8938V13.8969Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M10.0817%2012.9594C10.1473%2012.9969%2010.1942%2013.0375%2010.188%2013.0594C10.1848%2013.0781%2010.163%2013.0906%2010.1317%2013.1094C10.0817%2013.1437%2010.0536%2013.2031%2010.0755%2013.2344C10.0545%2013.2179%2010.0376%2013.1967%2010.0262%2013.1726C10.0148%2013.1485%2010.0092%2013.122%2010.0098%2013.0953C10.0104%2013.0686%2010.0172%2013.0424%2010.0297%2013.0189C10.0422%2012.9953%2010.06%2012.9749%2010.0817%2012.9594Z'%20fill='%23AD1519'/%3e%3cpath%20d='M10.0817%2012.9594C10.1473%2012.9969%2010.1942%2013.0375%2010.188%2013.0594C10.1848%2013.0781%2010.163%2013.0906%2010.1317%2013.1094C10.0817%2013.1437%2010.0536%2013.2031%2010.0755%2013.2344C10.0545%2013.2179%2010.0376%2013.1967%2010.0262%2013.1726C10.0148%2013.1485%2010.0092%2013.122%2010.0098%2013.0953C10.0104%2013.0686%2010.0172%2013.0424%2010.0297%2013.0189C10.0422%2012.9953%2010.06%2012.9749%2010.0817%2012.9594Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.4404%2013.55H9.9279V11.1562H9.4404V13.5469V13.55Z'%20fill='%23CCCCCC'/%3e%3cpath%20d='M9.7936%2011.1594V13.5437M9.8498%2011.1594V13.5437M9.4436%2013.55H9.9279V11.1562H9.4404V13.5469L9.4436%2013.55Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.94434%2012.0531C9.1786%2011.9746%209.4282%2011.9531%209.6725%2011.9906C9.9631%2012.0406%2010.185%2012.1563%2010.1693%2012.2531V12.2594L10.2787%2012.0031C10.2975%2011.9%2010.0506%2011.7688%209.7287%2011.7156C9.6337%2011.7001%209.5375%2011.6928%209.4412%2011.6938C9.2318%2011.6938%209.0537%2011.7188%208.94434%2011.7594V12.0531Z'%20fill='%23AD1519'/%3e%3cpath%20d='M8.94434%2012.0531C9.1786%2011.9746%209.4282%2011.9531%209.6725%2011.9906C9.9631%2012.0406%2010.185%2012.1563%2010.1693%2012.2531V12.2594L10.2787%2012.0031C10.2975%2011.9%2010.0506%2011.7688%209.7287%2011.7156C9.6337%2011.7001%209.5375%2011.6928%209.4412%2011.6938C9.2318%2011.6938%209.0537%2011.7188%208.94434%2011.7594V12.0531Z'%20stroke='black'%20stroke-width='0.1'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.9287%2012.3531C10.0662%2012.3437%2010.1568%2012.3094%2010.1693%2012.2531C10.1756%2012.2062%2010.1318%2012.1594%2010.0506%2012.1125C10.0131%2012.1156%209.9725%2012.1219%209.9287%2012.1219V12.3531Z'%20fill='%23AD1519'/%3e%3cpath%20d='M9.9287%2012.3531C10.0662%2012.3437%2010.1568%2012.3094%2010.1693%2012.2531C10.1756%2012.2062%2010.1318%2012.1594%2010.0506%2012.1125C10.0131%2012.1156%209.9725%2012.1219%209.9287%2012.1219V12.3531Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.43809%2012.1719C9.37489%2012.1775%209.31389%2012.1978%209.25989%2012.2312V12.2375C9.24429%2012.2688%209.31619%2012.3312%209.44119%2012.4062V12.1719'%20fill='%23AD1519'/%3e%3cpath%20d='M9.43809%2012.1719C9.37489%2012.1775%209.31389%2012.1978%209.25989%2012.2312V12.2375C9.24429%2012.2688%209.31619%2012.3312%209.44119%2012.4062V12.1719'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M10.2321%2012.8125C10.2446%2012.775%2010.1133%2012.7%209.92889%2012.6313C9.84139%2012.6%209.77269%2012.5688%209.68519%2012.5313C9.42579%2012.4156%209.23519%2012.2844%209.26019%2012.2375V12.2313C9.24769%2012.2438%209.2289%2012.4813%209.2289%2012.4813C9.2039%2012.5219%209.37889%2012.6531%209.61639%2012.7656C9.69139%2012.8031%209.85389%2012.8594%209.92889%2012.8906C10.0633%2012.9344%2010.2008%2013.025%2010.1883%2013.0563L10.2321%2012.8156'%20fill='%23AD1519'/%3e%3cpath%20d='M10.2321%2012.8125C10.2446%2012.775%2010.1133%2012.7%209.92889%2012.6313C9.84139%2012.6%209.77269%2012.5688%209.68519%2012.5313C9.42579%2012.4156%209.23519%2012.2844%209.26019%2012.2375V12.2313C9.24769%2012.2438%209.2289%2012.4813%209.2289%2012.4813C9.2039%2012.5219%209.37889%2012.6531%209.61639%2012.7656C9.69139%2012.8031%209.85389%2012.8594%209.92889%2012.8906C10.0633%2012.9344%2010.2008%2013.025%2010.1883%2013.0563L10.2321%2012.8156V12.8125Z'%20stroke='black'%20stroke-width='0.1'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.248%2011.95C9.2668%2011.8781%209.2918%2011.8125%209.3137%2011.7438H9.298C9.2929%2011.745%209.2877%2011.7461%209.2824%2011.7469C9.2702%2011.7975%209.2556%2011.8476%209.2387%2011.8969C9.2074%2011.8531%209.1762%2011.8125%209.1543%2011.7688L9.123%2011.775H9.0918C9.135%2011.8333%209.1767%2011.8927%209.2168%2011.9531H9.2324L9.248%2011.95ZM9.4355%2011.7438H9.4043C9.396%2011.7442%209.3876%2011.7442%209.3793%2011.7438V11.9375H9.5105V11.9156H9.4293L9.4324%2011.7438H9.4355ZM9.6449%2011.775L9.7074%2011.7844V11.7625L9.5262%2011.7469V11.7719C9.547%2011.7708%209.5679%2011.7708%209.5887%2011.7719L9.5762%2011.9469H9.6262L9.6418%2011.7781L9.6449%2011.775ZM9.7168%2011.9656C9.7262%2011.9656%209.7324%2011.9656%209.7418%2011.9719L9.7668%2011.9781L9.7887%2011.8875L9.8074%2011.925L9.8324%2011.9906L9.8637%2011.9969C9.8762%2011.9969%209.8855%2012.0031%209.8949%2012.0063L9.8855%2011.9844C9.873%2011.9531%209.8543%2011.925%209.8449%2011.8938C9.8762%2011.8938%209.9043%2011.8844%209.9105%2011.8563C9.9137%2011.8375%209.9105%2011.825%209.8887%2011.8094C9.8762%2011.8%209.8512%2011.7969%209.8355%2011.7938L9.7605%2011.7781L9.7168%2011.9656ZM9.8105%2011.8031C9.8324%2011.8094%209.8574%2011.8125%209.8574%2011.8344V11.85C9.848%2011.8781%209.8262%2011.8875%209.7949%2011.8781L9.8105%2011.8031ZM10.0605%2012.0219L10.0543%2012.0844L10.0793%2012.1L10.1074%2012.1156L10.123%2011.8969C10.1154%2011.8946%2010.1081%2011.8914%2010.1012%2011.8875L9.9105%2012.0063L9.9262%2012.0156L9.9387%2012.0219L9.9918%2011.9844L10.0637%2012.025L10.0605%2012.0219ZM10.0074%2011.975L10.0699%2011.9313L10.0637%2012.0031L10.0074%2011.9719'%20fill='%23C8B100'/%3e%3cpath%20d='M6.69336%2010.0125C6.69336%209.98126%206.72461%209.95001%206.75586%209.95001C6.78711%209.95001%206.82461%209.98126%206.82461%2010.0125C6.82461%2010.0469%206.79336%2010.075%206.75898%2010.075C6.75052%2010.0754%206.74205%2010.0741%206.73411%2010.0712C6.72616%2010.0682%206.7189%2010.0637%206.71276%2010.0578C6.70662%2010.052%206.70173%2010.045%206.6984%2010.0372C6.69506%2010.0294%206.69335%2010.021%206.69336%2010.0125Z'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M7.4293%209.48126C7.62617%209.48126%207.8043%209.51251%207.91992%209.55626C8.06422%209.61583%208.22055%209.64046%208.37617%209.62814C8.46055%209.62814%208.5793%209.65314%208.69805%209.70314C8.78254%209.73932%208.86063%209.78892%208.9293%209.85001L8.88243%209.89376L8.86993%2010.0125L8.7418%2010.1594L8.6793%2010.2156L8.52305%2010.3375L8.44492%2010.3438L8.42305%2010.4094L7.43555%2010.2938L6.44492%2010.4094L6.41992%2010.3438L6.3418%2010.3375L6.18867%2010.2125L6.12617%2010.1594L5.99805%2010.0125L5.98242%209.89376L5.93555%209.85001C6.00526%209.78876%206.0844%209.73917%206.16992%209.70314C6.26998%209.65676%206.37843%209.63124%206.48867%209.62814C6.55117%209.63439%206.61992%209.63126%206.69492%209.62189C6.78074%209.61266%206.86486%209.59163%206.94492%209.55939C7.06055%209.51251%207.22617%209.48126%207.4293%209.48126Z'%20fill='%23AD1519'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M7.44403%2010.7844C7.07528%2010.7844%206.74403%2010.7406%206.50965%2010.6719C6.50167%2010.6697%206.49474%2010.6647%206.49015%2010.6578C6.48556%2010.6509%206.4836%2010.6426%206.48465%2010.6344C6.48465%2010.6187%206.49403%2010.6031%206.50965%2010.5969C6.8144%2010.5163%207.12886%2010.4785%207.44403%2010.4844C7.80965%2010.4844%208.1409%2010.5281%208.37528%2010.5969C8.38268%2010.6%208.389%2010.6052%208.39345%2010.6118C8.3979%2010.6185%208.40028%2010.6264%208.40028%2010.6344C8.40028%2010.6424%208.3979%2010.6502%208.39345%2010.6569C8.389%2010.6636%208.38268%2010.6688%208.37528%2010.6719C8.1409%2010.7406%207.81278%2010.7844%207.44403%2010.7844Z'%20fill='%23C8B100'/%3e%3cpath%20d='M7.44403%2010.7844C7.07528%2010.7844%206.74403%2010.7406%206.50965%2010.6719C6.50167%2010.6697%206.49474%2010.6647%206.49015%2010.6578C6.48556%2010.6509%206.4836%2010.6426%206.48465%2010.6344C6.48465%2010.6187%206.49403%2010.6031%206.50965%2010.5969C6.8144%2010.5163%207.12886%2010.4785%207.44403%2010.4844C7.80965%2010.4844%208.1409%2010.5281%208.37528%2010.5969C8.38268%2010.6%208.389%2010.6052%208.39345%2010.6118C8.3979%2010.6185%208.40028%2010.6264%208.40028%2010.6344C8.40028%2010.6424%208.3979%2010.6502%208.39345%2010.6569C8.389%2010.6636%208.38268%2010.6688%208.37528%2010.6719C8.1409%2010.7406%207.81278%2010.7844%207.44403%2010.7844Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.44043%2010.7375C7.10918%2010.7375%206.80918%2010.7%206.58105%2010.6406C6.80918%2010.5781%207.10918%2010.5469%207.44043%2010.5437C7.73066%2010.5401%208.02027%2010.5715%208.30293%2010.6375C8.07481%2010.7%207.77168%2010.7375%207.44043%2010.7375Z'%20fill='%23AD1519'/%3e%3cpath%20d='M7.41211%2010.7406V10.5438M7.46524%2010.7406V10.5438'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M7.31348%2010.7406V10.5438M7.36348%2010.7406V10.5438'%20stroke='black'%20stroke-width='0.05'/%3e%3cpath%20d='M7.14414%2010.725V10.55M7.26914%2010.7406V10.5438M7.18163%2010.7281V10.55M7.22227%2010.7313V10.5438M7.10352%2010.7188V10.5563'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M6.96289%2010.7094V10.5687M7.00039%2010.7125V10.5625M7.03164%2010.7094V10.5625M7.06914%2010.7188V10.5625'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.8916%2010.7V10.575M6.9291%2010.7031V10.5719'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M6.77637%2010.6812V10.5937M6.81387%2010.6875V10.5937M6.85449%2010.6937V10.5844'%20stroke='black'%20stroke-width='0.15'/%3e%3cpath%20d='M6.66309%2010.6594V10.6188M6.74121%2010.675V10.6031M6.70059%2010.6656V10.6094'%20stroke='black'%20stroke-width='0.175'/%3e%3cpath%20d='M6.61914%2010.6507V10.6281'%20stroke='black'%20stroke-width='0.225'/%3e%3cpath%20d='M7.52051%2010.7375V10.5406M7.67676%2010.7281V10.5469M7.58613%2010.7344V10.5438'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M7.43789%2010.4812C7.12122%2010.4777%206.80562%2010.5187%206.50039%2010.6031C6.51914%2010.5937%206.51602%2010.5719%206.49102%2010.5094C6.45977%2010.4312%206.41602%2010.4344%206.41602%2010.4344C6.67539%2010.3562%207.04102%2010.3094%207.44102%2010.3094C7.78884%2010.3042%208.13576%2010.3462%208.47227%2010.4344C8.47227%2010.4344%208.42539%2010.4312%208.39414%2010.5062C8.36914%2010.5687%208.36914%2010.5937%208.38789%2010.6C8.15352%2010.5312%207.81289%2010.4844%207.44102%2010.4844'%20fill='%23C8B100'/%3e%3cpath%20d='M7.43789%2010.4812C7.12122%2010.4777%206.80562%2010.5187%206.50039%2010.6031C6.51914%2010.5937%206.51602%2010.5719%206.49102%2010.5094C6.45977%2010.4312%206.41602%2010.4344%206.41602%2010.4344C6.67539%2010.3562%207.04102%2010.3094%207.44102%2010.3094C7.78884%2010.3042%208.13576%2010.3462%208.47227%2010.4344C8.47227%2010.4344%208.42539%2010.4312%208.39414%2010.5062C8.36914%2010.5687%208.36914%2010.5937%208.38789%2010.6C8.15352%2010.5312%207.81289%2010.4844%207.44102%2010.4844'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.4414%2010.3094C7.03828%2010.3094%206.67578%2010.3562%206.4164%2010.4344C6.41251%2010.4359%206.40835%2010.4366%206.40419%2010.4364C6.40002%2010.4363%206.39592%2010.4353%206.39214%2010.4336C6.38835%2010.4318%206.38495%2010.4293%206.38214%2010.4262C6.37933%2010.4232%206.37717%2010.4196%206.37578%2010.4156C6.37434%2010.4115%206.37378%2010.4072%206.37412%2010.4028C6.37446%2010.3985%206.3757%2010.3943%206.37776%2010.3905C6.37982%2010.3867%206.38265%2010.3833%206.38607%2010.3806C6.3895%2010.378%206.39344%2010.3761%206.39765%2010.375C6.73775%2010.2828%207.08907%2010.2387%207.4414%2010.2438C7.8539%2010.2438%208.2289%2010.2969%208.48828%2010.375C8.50703%2010.3812%208.5164%2010.4%208.51015%2010.4156C8.5039%2010.4312%208.48515%2010.4406%208.46953%2010.4344C8.20703%2010.3562%207.84453%2010.3094%207.4414%2010.3094Z'%20fill='%23C8B100'/%3e%3cpath%20d='M7.4414%2010.3094C7.03828%2010.3094%206.67578%2010.3562%206.4164%2010.4344C6.41251%2010.4359%206.40835%2010.4366%206.40419%2010.4364C6.40002%2010.4363%206.39592%2010.4353%206.39214%2010.4336C6.38835%2010.4318%206.38495%2010.4293%206.38214%2010.4262C6.37933%2010.4232%206.37717%2010.4196%206.37578%2010.4156C6.37434%2010.4115%206.37378%2010.4072%206.37412%2010.4028C6.37446%2010.3985%206.3757%2010.3943%206.37776%2010.3905C6.37982%2010.3867%206.38265%2010.3833%206.38607%2010.3806C6.3895%2010.378%206.39344%2010.3761%206.39765%2010.375C6.73775%2010.2828%207.08907%2010.2387%207.4414%2010.2438C7.8539%2010.2438%208.2289%2010.2969%208.48828%2010.375C8.50703%2010.3812%208.5164%2010.4%208.51015%2010.4156C8.5039%2010.4312%208.48515%2010.4406%208.46953%2010.4344C8.20703%2010.3562%207.84453%2010.3094%207.4414%2010.3094Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.44043%2010.7375C7.10918%2010.7375%206.80918%2010.7%206.58105%2010.6406C6.80918%2010.5781%207.10918%2010.5469%207.44043%2010.5437C7.73066%2010.5401%208.02027%2010.5715%208.30293%2010.6375C8.07481%2010.7%207.77168%2010.7375%207.44043%2010.7375Z'%20stroke='black'%20stroke-width='0.1'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.15723%2010.4C7.15723%2010.3844%207.16973%2010.3688%207.18848%2010.3688C7.2041%2010.3688%207.21973%2010.3844%207.21973%2010.4C7.21973%2010.4156%207.20723%2010.4313%207.18848%2010.4313C7.18019%2010.4313%207.17224%2010.428%207.16638%2010.4221C7.16052%2010.4162%207.15723%2010.4083%207.15723%2010.4Z'%20fill='white'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.4416%2010.425H7.34473C7.33644%2010.425%207.32849%2010.4217%207.32263%2010.4158C7.31677%2010.41%207.31348%2010.402%207.31348%2010.3937C7.31348%2010.3855%207.31677%2010.3775%207.32263%2010.3717C7.32849%2010.3658%207.33644%2010.3625%207.34473%2010.3625H7.54473C7.56035%2010.3625%207.57598%2010.3781%207.57598%2010.3937C7.57598%2010.4094%207.56035%2010.425%207.54473%2010.425H7.44473'%20fill='%23AD1519'/%3e%3cpath%20d='M7.4416%2010.425H7.34473C7.33644%2010.425%207.32849%2010.4217%207.32263%2010.4158C7.31677%2010.41%207.31348%2010.402%207.31348%2010.3937C7.31348%2010.3855%207.31677%2010.3775%207.32263%2010.3717C7.32849%2010.3658%207.33644%2010.3625%207.34473%2010.3625H7.54473C7.56035%2010.3625%207.57598%2010.3781%207.57598%2010.3937C7.57598%2010.4094%207.56035%2010.425%207.54473%2010.425H7.44473'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.9484%2010.4531L6.87652%2010.4594C6.85777%2010.4625%206.84527%2010.45%206.83902%2010.4344C6.83859%2010.43%206.83907%2010.4256%206.84044%2010.4215C6.84182%2010.4173%206.84405%2010.4135%206.84699%2010.4102C6.84994%2010.407%206.85354%2010.4044%206.85755%2010.4026C6.86156%2010.4009%206.86589%2010.4%206.87027%2010.4L6.93902%2010.3906L7.01402%2010.3812C7.02965%2010.3812%207.04527%2010.3906%207.0484%2010.4094C7.05152%2010.425%207.03902%2010.4406%207.02027%2010.4406L6.9484%2010.4531Z'%20fill='%23058E6E'/%3e%3cpath%20d='M6.9484%2010.4531L6.87652%2010.4594C6.85777%2010.4625%206.84527%2010.45%206.83902%2010.4344C6.83859%2010.43%206.83907%2010.4256%206.84044%2010.4215C6.84182%2010.4173%206.84405%2010.4135%206.84699%2010.4102C6.84994%2010.407%206.85354%2010.4044%206.85755%2010.4026C6.86156%2010.4009%206.86589%2010.4%206.87027%2010.4L6.93902%2010.3906L7.01402%2010.3812C7.02965%2010.3812%207.04527%2010.3906%207.0484%2010.4094C7.05152%2010.425%207.03902%2010.4406%207.02027%2010.4406L6.9484%2010.4531Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.65723%2010.4594C6.65723%2010.4406%206.67285%2010.4281%206.6916%2010.4281C6.71035%2010.4281%206.72285%2010.4406%206.72285%2010.4594C6.72285%2010.475%206.71035%2010.4906%206.6916%2010.4906C6.68331%2010.4906%206.67537%2010.4873%206.6695%2010.4815C6.66364%2010.4756%206.66035%2010.4677%206.66035%2010.4594'%20fill='white'/%3e%3cpath%20d='M6.65723%2010.4594C6.65723%2010.4406%206.67285%2010.4281%206.6916%2010.4281C6.71035%2010.4281%206.72285%2010.4406%206.72285%2010.4594C6.72285%2010.475%206.71035%2010.4906%206.6916%2010.4906C6.68331%2010.4906%206.67537%2010.4873%206.6695%2010.4815C6.66364%2010.4756%206.66035%2010.4677%206.66035%2010.4594'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.43652%2010.5156L6.47402%2010.4656L6.57715%2010.4781L6.4959%2010.5406L6.43965%2010.5156'%20fill='%23AD1519'/%3e%3cpath%20d='M6.43652%2010.5156L6.47402%2010.4656L6.57715%2010.4781L6.4959%2010.5406L6.43965%2010.5156'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.93739%2010.4531L8.00927%2010.4594C8.02489%2010.4625%208.04052%2010.45%208.04364%2010.4344C8.04407%2010.4303%208.04369%2010.4261%208.0425%2010.4222C8.04132%2010.4182%208.03936%2010.4145%208.03675%2010.4113C8.03413%2010.4081%208.03091%2010.4055%208.02727%2010.4035C8.02362%2010.4016%208.01963%2010.4004%208.01552%2010.4L7.94677%2010.3906L7.87177%2010.3813C7.86766%2010.3808%207.86351%2010.3812%207.85955%2010.3824C7.85559%2010.3836%207.85191%2010.3855%207.84871%2010.3881C7.84552%2010.3908%207.84287%2010.394%207.84093%2010.3976C7.83898%2010.4013%207.83778%2010.4053%207.83739%2010.4094C7.83427%2010.425%207.84677%2010.4406%207.86552%2010.4406L7.93739%2010.4531Z'%20fill='%23058E6E'/%3e%3cpath%20d='M7.93739%2010.4531L8.00927%2010.4594C8.02489%2010.4625%208.04052%2010.45%208.04364%2010.4344C8.04407%2010.4303%208.04369%2010.4261%208.0425%2010.4222C8.04132%2010.4182%208.03936%2010.4145%208.03675%2010.4113C8.03413%2010.4081%208.03091%2010.4055%208.02727%2010.4035C8.02362%2010.4016%208.01963%2010.4004%208.01552%2010.4L7.94677%2010.3906L7.87177%2010.3813C7.86766%2010.3808%207.86351%2010.3812%207.85955%2010.3824C7.85559%2010.3836%207.85191%2010.3855%207.84871%2010.3881C7.84552%2010.3908%207.84287%2010.394%207.84093%2010.3976C7.83898%2010.4013%207.83778%2010.4053%207.83739%2010.4094C7.83427%2010.425%207.84677%2010.4406%207.86552%2010.4406L7.93739%2010.4531Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.66602%2010.4C7.66602%2010.3844%207.67852%2010.3688%207.69727%2010.3688C7.71602%2010.3688%207.72852%2010.3844%207.72852%2010.4C7.72852%2010.4156%207.71602%2010.4313%207.69727%2010.4313C7.68898%2010.4313%207.68103%2010.428%207.67517%2010.4221C7.66931%2010.4162%207.66602%2010.4083%207.66602%2010.4ZM8.15977%2010.4594C8.15977%2010.4406%208.17539%2010.4281%208.19102%2010.4281C8.20977%2010.4281%208.22539%2010.4406%208.22539%2010.4594C8.22539%2010.475%208.21289%2010.4906%208.19414%2010.4906C8.18586%2010.4906%208.17791%2010.4873%208.17205%2010.4815C8.16619%2010.4756%208.16289%2010.4677%208.16289%2010.4594'%20fill='white'/%3e%3cpath%20d='M8.15977%2010.4594C8.15977%2010.4406%208.17539%2010.4281%208.19102%2010.4281C8.20977%2010.4281%208.22539%2010.4406%208.22539%2010.4594C8.22539%2010.475%208.21289%2010.4906%208.19414%2010.4906C8.18586%2010.4906%208.17791%2010.4873%208.17205%2010.4815C8.16619%2010.4756%208.16289%2010.4677%208.16289%2010.4594M7.66602%2010.4C7.66602%2010.3844%207.67852%2010.3688%207.69727%2010.3688C7.71602%2010.3688%207.72852%2010.3844%207.72852%2010.4C7.72852%2010.4156%207.71602%2010.4313%207.69727%2010.4313C7.68898%2010.4313%207.68103%2010.428%207.67517%2010.4221C7.66931%2010.4162%207.66602%2010.4083%207.66602%2010.4Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.44512%2010.5156L8.41074%2010.4656L8.30762%2010.4781L8.38887%2010.5406L8.44512%2010.5156Z'%20fill='%23AD1519'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.54199%2010.65C6.77324%2010.5844%207.09199%2010.5438%207.44199%2010.5438C7.79511%2010.5438%208.11074%2010.5844%208.34511%2010.65'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.6977%209.74374L6.74145%209.77499L6.80395%209.67499C6.76549%209.65235%206.7344%209.61905%206.71443%209.57913C6.69447%209.5392%206.68649%209.49435%206.69145%209.44999C6.6977%209.32186%206.85395%209.21249%207.05708%209.21249C7.1602%209.21249%207.25395%209.24374%207.3227%209.28749C7.3227%209.26874%207.3227%209.24999%207.32895%209.23124C7.2456%209.18603%207.15188%209.16341%207.05708%209.16561C6.82583%209.16561%206.64458%209.29374%206.6352%209.44999C6.63073%209.49419%206.6369%209.53881%206.65321%209.58013C6.66953%209.62146%206.6955%209.65827%206.72895%209.68749L6.6977%209.74374Z'%20fill='%23C8B100'/%3e%3cpath%20d='M6.6977%209.74374L6.74145%209.77499L6.80395%209.67499C6.76549%209.65235%206.7344%209.61905%206.71443%209.57913C6.69447%209.5392%206.68649%209.49435%206.69145%209.44999C6.6977%209.32186%206.85395%209.21249%207.05708%209.21249C7.1602%209.21249%207.25395%209.24374%207.3227%209.28749C7.3227%209.26874%207.3227%209.24999%207.32895%209.23124C7.2456%209.18603%207.15188%209.16341%207.05708%209.16561C6.82583%209.16561%206.64458%209.29374%206.6352%209.44999C6.63073%209.49419%206.6369%209.53881%206.65321%209.58013C6.66953%209.62146%206.6955%209.65827%206.72895%209.68749L6.6977%209.74374Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.7002%209.74375C6.66307%209.71805%206.63245%209.68405%206.61075%209.64445C6.58905%209.60486%206.57688%209.56075%206.5752%209.51562C6.5752%209.41563%206.6377%209.325%206.74082%209.26562C6.70783%209.29037%206.68106%209.32245%206.66262%209.35933C6.64417%209.39622%206.63457%209.4369%206.63457%209.47814C6.63441%209.51769%206.64269%209.55682%206.65885%209.59293C6.67502%209.62903%206.6987%209.66128%206.72832%209.6875L6.7002%209.74375Z'%20fill='%23C8B100'/%3e%3cpath%20d='M6.7002%209.74375C6.66307%209.71805%206.63245%209.68405%206.61075%209.64445C6.58905%209.60486%206.57688%209.56075%206.5752%209.51562C6.5752%209.41562%206.6377%209.325%206.74082%209.26562C6.70783%209.29037%206.68106%209.32245%206.66262%209.35933C6.64417%209.39622%206.63457%209.4369%206.63457%209.47814C6.63441%209.51769%206.64269%209.55682%206.65885%209.59293C6.67502%209.62903%206.6987%209.66128%206.72832%209.6875L6.7002%209.74375Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.00352%209.84685C5.95751%209.79644%205.93189%209.73073%205.93164%209.66248C5.93164%209.62185%205.94102%209.58123%205.96289%209.54373C6.02539%209.41248%206.22539%209.31873%206.46289%209.31873C6.52539%209.31873%206.58789%209.32497%206.64727%209.33747L6.61602%209.38123C6.5655%209.37214%206.51422%209.36794%206.46289%209.36872C6.24414%209.36872%206.06289%209.4531%206.00977%209.5656C5.99514%209.59579%205.98766%209.62894%205.98789%209.66248C5.98821%209.69606%205.99593%209.72916%206.01052%209.75941C6.0251%209.78966%206.04619%209.81631%206.07227%209.83747L5.99102%209.9656L5.95039%209.93435L6.00352%209.84685Z'%20fill='%23C8B100'/%3e%3cpath%20d='M6.00352%209.84685C5.95751%209.79644%205.93189%209.73073%205.93164%209.66248C5.93164%209.62185%205.94102%209.58123%205.96289%209.54373C6.02539%209.41248%206.22539%209.31873%206.46289%209.31873C6.52539%209.31873%206.58789%209.32497%206.64727%209.33747L6.61602%209.38123C6.5655%209.37214%206.51422%209.36794%206.46289%209.36872C6.24414%209.36872%206.06289%209.4531%206.00977%209.5656C5.99514%209.59579%205.98766%209.62894%205.98789%209.66248C5.98821%209.69606%205.99593%209.72916%206.01052%209.75941C6.0251%209.78966%206.04619%209.81631%206.07227%209.83747L5.99102%209.9656L5.95039%209.93435L6.00352%209.84685Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.08574%209.41565C6.033%209.44594%205.98973%209.4903%205.96074%209.54377C5.94238%209.58067%205.93276%209.62131%205.93262%209.66252C5.93262%209.7344%205.96074%209.7969%206.00449%209.8469L5.95762%209.92502C5.91126%209.86746%205.88591%209.79581%205.88574%209.7219C5.88574%209.5969%205.96387%209.48752%206.08574%209.41565Z'%20fill='%23C8B100'/%3e%3cpath%20d='M6.08574%209.41565C6.033%209.44594%205.98973%209.4903%205.96074%209.54377C5.94238%209.58067%205.93276%209.62131%205.93262%209.66252C5.93262%209.7344%205.96074%209.7969%206.00449%209.8469L5.95762%209.92502C5.91126%209.86746%205.88591%209.79581%205.88574%209.7219C5.88574%209.5969%205.96387%209.48752%206.08574%209.41565Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.43789%209.13751C7.49102%209.13751%207.53789%209.17189%207.54727%209.21876C7.55664%209.26251%207.55977%209.30939%207.55977%209.35939V9.39376C7.56289%209.49689%207.57852%209.59064%207.60039%209.64689L7.43789%209.80314L7.27539%209.64689C7.29727%209.59064%207.31289%209.49689%207.31602%209.39376V9.35939C7.31602%209.30939%207.32227%209.26251%207.32852%209.21876C7.33789%209.17189%207.38477%209.13751%207.43789%209.13751Z'%20fill='%23C8B100'/%3e%3cpath%20d='M7.43789%209.13751C7.49102%209.13751%207.53789%209.17189%207.54727%209.21876C7.55664%209.26251%207.55977%209.30939%207.55977%209.35939V9.39376C7.56289%209.49689%207.57852%209.59064%207.60039%209.64689L7.43789%209.80314L7.27539%209.64689C7.29727%209.59064%207.31289%209.49689%207.31602%209.39376V9.35939C7.31602%209.30939%207.32227%209.26251%207.32852%209.21876C7.33789%209.17189%207.38477%209.13751%207.43789%209.13751Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.4373%209.1875C7.46855%209.1875%207.49044%209.20625%207.49356%209.23125C7.49981%209.26875%207.50605%209.3125%207.50605%209.3625V9.39375C7.50918%209.49375%207.5248%209.58125%207.54355%209.63438L7.4373%209.73438L7.33105%209.63438C7.35293%209.58125%207.36544%209.49375%207.36856%209.39375V9.3625C7.36944%209.3185%207.3736%209.27462%207.38105%209.23125C7.38486%209.21909%207.39229%209.20839%207.40234%209.20057C7.4124%209.19275%207.42459%209.18819%207.4373%209.1875Z'%20fill='%23C8B100'/%3e%3cpath%20d='M7.4373%209.1875C7.46855%209.1875%207.49044%209.20625%207.49356%209.23125C7.49981%209.26875%207.50605%209.3125%207.50605%209.3625V9.39375C7.50918%209.49375%207.5248%209.58125%207.54355%209.63438L7.4373%209.73438L7.33105%209.63438C7.35293%209.58125%207.36544%209.49375%207.36856%209.39375V9.3625C7.36944%209.3185%207.3736%209.27462%207.38105%209.23125C7.38486%209.21909%207.39229%209.20839%207.40234%209.20057C7.4124%209.19275%207.42459%209.18819%207.4373%209.1875Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.17793%209.74374L8.1373%209.77499L8.0748%209.67499C8.10888%209.6546%208.13715%209.62577%208.15685%209.59129C8.17656%209.55681%208.18704%209.51783%208.1873%209.47812C8.18791%209.46875%208.18791%209.45936%208.1873%209.44999C8.18105%209.32186%208.02168%209.21249%207.82168%209.21249C7.72762%209.21026%207.63507%209.2364%207.55606%209.28749C7.55472%209.26867%207.55263%209.2499%207.5498%209.23124C7.63316%209.18603%207.72688%209.16341%207.82168%209.16561C8.05293%209.16561%208.23418%209.29374%208.24043%209.44999C8.24491%209.49419%208.23873%209.53881%208.22242%209.58013C8.20611%209.62146%208.18014%209.65827%208.14668%209.68749L8.17793%209.74374Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.17793%209.74374L8.1373%209.77499L8.0748%209.67499C8.10888%209.6546%208.13715%209.62577%208.15685%209.59129C8.17655%209.55681%208.18704%209.51783%208.1873%209.47812C8.18791%209.46875%208.18791%209.45936%208.1873%209.44999C8.18105%209.32186%208.02168%209.21249%207.82168%209.21249C7.72762%209.21026%207.63507%209.2364%207.55606%209.28749C7.55472%209.26867%207.55263%209.2499%207.5498%209.23124C7.63316%209.18603%207.72688%209.16341%207.82168%209.16561C8.05293%209.16561%208.23418%209.29374%208.24043%209.44999C8.24491%209.49419%208.23873%209.53881%208.22242%209.58013C8.20611%209.62146%208.18014%209.65827%208.14668%209.68749L8.17793%209.74374Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.17617%209.74375C8.21423%209.71876%208.24573%209.685%208.26803%209.6453C8.29033%209.6056%208.30277%209.56114%208.3043%209.51562C8.3043%209.41563%208.23867%209.325%208.13867%209.26562C8.17166%209.29037%208.19844%209.32245%208.21688%209.35933C8.23532%209.39622%208.24492%209.4369%208.24492%209.47814C8.24431%209.51818%208.23506%209.55761%208.2178%209.59375C8.20054%209.62988%208.17568%209.66186%208.14492%209.6875L8.17617%209.74375Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.17617%209.74375C8.21423%209.71876%208.24573%209.685%208.26803%209.6453C8.29033%209.6056%208.30277%209.56114%208.3043%209.51562C8.3043%209.41562%208.23867%209.325%208.13867%209.26562C8.17166%209.29037%208.19844%209.32245%208.21688%209.35933C8.23532%209.39622%208.24492%209.4369%208.24492%209.47814C8.24431%209.51818%208.23506%209.55761%208.2178%209.59375C8.20054%209.62988%208.17568%209.66186%208.14492%209.6875L8.17617%209.74375Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.87637%209.84686C8.92124%209.79598%208.94573%209.73031%208.94512%209.66248C8.94487%209.62128%208.93525%209.58067%208.917%209.54373C8.8545%209.41248%208.65449%209.31873%208.41699%209.31873C8.35401%209.31845%208.29117%209.32473%208.22949%209.33748L8.26074%209.38123C8.31229%209.37192%208.36462%209.36773%208.41699%209.36873C8.63574%209.36873%208.817%209.45311%208.867%209.56561C8.88262%209.59686%208.88887%209.62811%208.88887%209.66248C8.88894%209.69581%208.8817%209.72876%208.86766%209.75899C8.85362%209.78923%208.83313%209.81602%208.80762%209.83748L8.88575%209.96561L8.92637%209.93436L8.87325%209.84686'%20fill='%23C8B100'/%3e%3cpath%20d='M8.87637%209.84686C8.92124%209.79598%208.94573%209.73031%208.94512%209.66248C8.94487%209.62128%208.93525%209.58067%208.917%209.54373C8.8545%209.41248%208.65449%209.31873%208.41699%209.31873C8.35401%209.31845%208.29117%209.32473%208.22949%209.33748L8.26074%209.38123C8.31229%209.37192%208.36462%209.36773%208.41699%209.36873C8.63574%209.36873%208.817%209.45311%208.867%209.56561C8.88262%209.59686%208.88887%209.62811%208.88887%209.66248C8.88894%209.69581%208.8817%209.72876%208.86766%209.75899C8.85362%209.78923%208.83313%209.81602%208.80762%209.83748L8.88575%209.96561L8.92637%209.93436L8.87325%209.84686H8.87637Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.79199%209.41565C8.84463%209.44607%208.88787%209.4904%208.91699%209.54377C8.93524%209.58071%208.94486%209.62132%208.94512%209.66252C8.94487%209.73077%208.91925%209.79649%208.87324%209.8469L8.92324%209.92502C8.9696%209.86746%208.99495%209.79581%208.99512%209.7219C8.99512%209.5969%208.91387%209.48752%208.79199%209.41565Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.79199%209.41565C8.84463%209.44607%208.88787%209.4904%208.91699%209.54377C8.93524%209.58071%208.94486%209.62132%208.94512%209.66252C8.94487%209.73077%208.91925%209.79649%208.87324%209.8469L8.92324%209.92502C8.9696%209.86746%208.99495%209.79581%208.99512%209.7219C8.99512%209.5969%208.91387%209.48752%208.79199%209.41565Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.38086%209.66874C7.38086%209.63749%207.40586%209.61249%207.43711%209.61249C7.46836%209.61249%207.49648%209.63749%207.49648%209.66874C7.49648%209.69999%207.46836%209.72187%207.43711%209.72187C7.42272%209.72189%207.40886%209.7164%207.3984%209.70651C7.38794%209.69663%207.38166%209.68311%207.38086%209.66874Z'%20fill='white'/%3e%3cpath%20d='M7.38086%209.66874C7.38086%209.63749%207.40586%209.61249%207.43711%209.61249C7.46836%209.61249%207.49648%209.63749%207.49648%209.66874C7.49648%209.69999%207.46836%209.72187%207.43711%209.72187C7.42272%209.72189%207.40886%209.7164%207.3984%209.70651C7.38794%209.69663%207.38166%209.68311%207.38086%209.66874Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.38086%209.56251C7.38086%209.53126%207.40586%209.50626%207.43711%209.50626C7.46836%209.50626%207.49648%209.53126%207.49648%209.56251C7.49648%209.59376%207.46836%209.61563%207.43711%209.61563C7.42272%209.61565%207.40886%209.61016%207.3984%209.60028C7.38794%209.5904%207.38166%209.57688%207.38086%209.56251ZM7.39336%209.44688C7.39336%209.42501%207.41211%209.40626%207.43711%209.40626C7.46211%209.40626%207.48398%209.42501%207.48398%209.44688C7.48398%209.47188%207.46211%209.49063%207.43711%209.49063C7.41211%209.49063%207.39336%209.47188%207.39336%209.44688ZM7.40586%209.34376C7.40586%209.32813%207.41836%209.31251%207.43711%209.31251C7.45586%209.31251%207.46836%209.32813%207.46836%209.34376C7.46836%209.35938%207.45586%209.37501%207.43711%209.37501C7.42882%209.37501%207.42087%209.37171%207.41501%209.36585C7.40915%209.35999%207.40586%209.35205%207.40586%209.34376ZM7.41211%209.25626C7.41211%209.24063%207.42461%209.23126%207.43711%209.23126C7.45273%209.23126%207.46523%209.24063%207.46523%209.25626C7.46523%209.26876%207.45273%209.28126%207.43711%209.28126C7.43048%209.28126%207.42412%209.27862%207.41943%209.27393C7.41474%209.26925%207.41211%209.26289%207.41211%209.25626Z'%20fill='white'/%3e%3cpath%20d='M7.41211%209.25626C7.41211%209.24063%207.42461%209.23126%207.43711%209.23126C7.45273%209.23126%207.46523%209.24063%207.46523%209.25626C7.46523%209.26876%207.45273%209.28126%207.43711%209.28126C7.43048%209.28126%207.42412%209.27862%207.41943%209.27393C7.41474%209.26925%207.41211%209.26289%207.41211%209.25626ZM7.38086%209.56251C7.38086%209.53126%207.40586%209.50626%207.43711%209.50626C7.46836%209.50626%207.49648%209.53126%207.49648%209.56251C7.49648%209.59376%207.46836%209.61563%207.43711%209.61563C7.42272%209.61565%207.40886%209.61016%207.3984%209.60028C7.38794%209.5904%207.38166%209.57688%207.38086%209.56251ZM7.39336%209.44688C7.39336%209.42501%207.41211%209.40626%207.43711%209.40626C7.46211%209.40626%207.48398%209.42501%207.48398%209.44688C7.48398%209.47188%207.46211%209.49063%207.43711%209.49063C7.41211%209.49063%207.39336%209.47188%207.39336%209.44688ZM7.40586%209.34376C7.40586%209.32813%207.41836%209.31251%207.43711%209.31251C7.45586%209.31251%207.46836%209.32813%207.46836%209.34376C7.46836%209.35938%207.45586%209.37501%207.43711%209.37501C7.42882%209.37501%207.42087%209.37171%207.41501%209.36585C7.40915%209.35999%207.40586%209.35205%207.40586%209.34376Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.44336%209.99377L7.48086%2010C7.47387%2010.0219%207.47221%2010.0451%207.47603%2010.0677C7.47984%2010.0903%207.48901%2010.1117%207.50278%2010.13C7.51654%2010.1484%207.5345%2010.1632%207.55515%2010.1732C7.57581%2010.1832%207.59855%2010.1881%207.62149%2010.1875C7.6512%2010.1876%207.68025%2010.1787%207.7048%2010.162C7.72934%2010.1452%207.74824%2010.1215%207.75899%2010.0938C7.76211%2010.0938%207.77461%2010.0406%207.78086%2010.0406C7.78711%2010.0406%207.78399%2010.0969%207.78711%2010.0938C7.79649%2010.1656%207.86211%2010.2125%207.93399%2010.2125C7.95422%2010.213%207.97434%2010.2093%207.99303%2010.2015C8.01171%2010.1937%208.02853%2010.182%208.0424%2010.1673C8.05627%2010.1525%208.06686%2010.135%208.07349%2010.1159C8.08012%2010.0967%208.08263%2010.0764%208.08086%2010.0563L8.12774%2010.0094L8.14961%2010.0719C8.14063%2010.0903%208.13634%2010.1107%208.13711%2010.1313C8.13874%2010.1672%208.15437%2010.201%208.18065%2010.2256C8.20694%2010.2501%208.24179%2010.2634%208.27774%2010.2625C8.32774%2010.2625%208.37149%2010.2406%208.39649%2010.2031L8.42461%2010.1656V10.2125C8.42461%2010.2594%208.44336%2010.3%208.48711%2010.3063C8.48711%2010.3063%208.54024%2010.3094%208.61211%2010.2563C8.67774%2010.2031%208.71524%2010.1594%208.71524%2010.1594L8.72149%2010.2125C8.72149%2010.2125%208.66524%2010.3%208.60274%2010.3375C8.57149%2010.3563%208.51836%2010.3781%208.47774%2010.3688C8.43399%2010.3625%208.40274%2010.3281%208.38399%2010.2875C8.35293%2010.3067%208.31737%2010.3175%208.28086%2010.3188C8.24127%2010.3202%208.20214%2010.31%208.16827%2010.2894C8.1344%2010.2689%208.10728%2010.2389%208.09024%2010.2031C8.06908%2010.2253%208.04349%2010.2428%208.01513%2010.2545C7.98678%2010.2661%207.95629%2010.2717%207.92565%2010.2708C7.89501%2010.2699%207.86489%2010.2626%207.83726%2010.2493C7.80962%2010.236%207.78508%2010.2171%207.76524%2010.1938C7.72575%2010.2293%207.67465%2010.2493%207.62149%2010.25C7.58641%2010.25%207.55185%2010.2415%207.52081%2010.2252C7.48977%2010.2089%207.46319%2010.1852%207.44336%2010.1563C7.42353%2010.1852%207.39695%2010.2089%207.36591%2010.2252C7.33487%2010.2415%207.30031%2010.25%207.26524%2010.25C7.211%2010.2501%207.15865%2010.2301%207.11836%2010.1938C7.09851%2010.2171%207.07398%2010.236%207.04634%2010.2493C7.01871%2010.2626%206.98859%2010.2699%206.95795%2010.2708C6.9273%2010.2717%206.89682%2010.2661%206.86846%2010.2545C6.84011%2010.2428%206.81452%2010.2253%206.79336%2010.2031C6.77654%2010.2384%206.7499%2010.2681%206.71664%2010.2886C6.68339%2010.3091%206.64492%2010.3196%206.60586%2010.3188C6.56828%2010.3181%206.53158%2010.3073%206.49961%2010.2875C6.48086%2010.3281%206.45273%2010.3625%206.40586%2010.3719C6.36836%2010.3781%206.31523%2010.3563%206.28086%2010.3375C6.21836%2010.3%206.16211%2010.2125%206.16211%2010.2125L6.16836%2010.1594C6.16836%2010.1594%206.20586%2010.2031%206.27461%2010.2563C6.34336%2010.3125%206.39648%2010.3063%206.39648%2010.3063C6.44023%2010.3%206.45898%2010.2594%206.45898%2010.2125V10.1656L6.49023%2010.2031C6.50315%2010.222%206.52038%2010.2375%206.54049%2010.2484C6.56059%2010.2592%206.58301%2010.2652%206.60586%2010.2656C6.68398%2010.2656%206.74648%2010.2031%206.74648%2010.1313C6.74779%2010.1097%206.74348%2010.0882%206.73399%2010.0688L6.75899%2010.0094L6.80586%2010.0563C6.80543%2010.0625%206.80543%2010.0688%206.80586%2010.075C6.80586%2010.15%206.86836%2010.2125%206.94961%2010.2125C7.02461%2010.2125%207.08711%2010.1656%207.09649%2010.0938C7.09649%2010.0938%207.09649%2010.0438%207.10274%2010.0406C7.10899%2010.0406%207.12149%2010.0938%207.12461%2010.0906C7.13503%2010.1194%207.15418%2010.1442%207.1794%2010.1616C7.20461%2010.179%207.23462%2010.188%207.26524%2010.1875C7.28817%2010.1881%207.31092%2010.1832%207.33157%2010.1732C7.35222%2010.1632%207.37018%2010.1484%207.38395%2010.13C7.39771%2010.1117%207.40688%2010.0903%207.4107%2010.0677C7.41451%2010.0451%207.41285%2010.0219%207.40586%2010L7.44336%209.99377Z'%20fill='%23C8B100'/%3e%3cpath%20d='M7.44336%209.99377L7.48086%2010C7.47387%2010.0219%207.47221%2010.0451%207.47603%2010.0677C7.47984%2010.0903%207.48901%2010.1117%207.50278%2010.13C7.51654%2010.1484%207.5345%2010.1632%207.55515%2010.1732C7.57581%2010.1832%207.59855%2010.1881%207.62149%2010.1875C7.6512%2010.1876%207.68025%2010.1787%207.7048%2010.162C7.72934%2010.1452%207.74824%2010.1215%207.75899%2010.0938C7.76211%2010.0938%207.77461%2010.0406%207.78086%2010.0406C7.78711%2010.0406%207.78399%2010.0969%207.78711%2010.0938C7.79649%2010.1656%207.86211%2010.2125%207.93399%2010.2125C7.95422%2010.213%207.97434%2010.2093%207.99303%2010.2015C8.01171%2010.1937%208.02853%2010.182%208.0424%2010.1673C8.05627%2010.1525%208.06686%2010.135%208.07349%2010.1159C8.08012%2010.0967%208.08263%2010.0764%208.08086%2010.0563L8.12774%2010.0094L8.14961%2010.0719C8.14063%2010.0903%208.13634%2010.1107%208.13711%2010.1313C8.13874%2010.1672%208.15437%2010.201%208.18065%2010.2256C8.20694%2010.2501%208.24179%2010.2634%208.27774%2010.2625C8.32774%2010.2625%208.37149%2010.2406%208.39649%2010.2031L8.42461%2010.1656V10.2125C8.42461%2010.2594%208.44336%2010.3%208.48711%2010.3063C8.48711%2010.3063%208.54024%2010.3094%208.61211%2010.2563C8.67774%2010.2031%208.71524%2010.1594%208.71524%2010.1594L8.72149%2010.2125C8.72149%2010.2125%208.66524%2010.3%208.60274%2010.3375C8.57149%2010.3563%208.51836%2010.3781%208.47774%2010.3688C8.43399%2010.3625%208.40274%2010.3281%208.38399%2010.2875C8.35293%2010.3067%208.31737%2010.3175%208.28086%2010.3188C8.24127%2010.3202%208.20214%2010.31%208.16827%2010.2894C8.1344%2010.2689%208.10728%2010.2389%208.09024%2010.2031C8.06908%2010.2253%208.04349%2010.2428%208.01513%2010.2545C7.98678%2010.2661%207.95629%2010.2717%207.92565%2010.2708C7.89501%2010.2699%207.86489%2010.2626%207.83726%2010.2493C7.80962%2010.236%207.78508%2010.2171%207.76524%2010.1938C7.72575%2010.2293%207.67465%2010.2493%207.62149%2010.25C7.58641%2010.25%207.55185%2010.2415%207.52081%2010.2252C7.48977%2010.2089%207.46319%2010.1852%207.44336%2010.1563C7.42353%2010.1852%207.39695%2010.2089%207.36591%2010.2252C7.33487%2010.2415%207.30031%2010.25%207.26524%2010.25C7.211%2010.2501%207.15865%2010.2301%207.11836%2010.1938C7.09851%2010.2171%207.07398%2010.236%207.04634%2010.2493C7.01871%2010.2626%206.98859%2010.2699%206.95795%2010.2708C6.9273%2010.2717%206.89682%2010.2661%206.86846%2010.2545C6.84011%2010.2428%206.81452%2010.2253%206.79336%2010.2031C6.77654%2010.2384%206.7499%2010.2681%206.71664%2010.2886C6.68339%2010.3091%206.64492%2010.3196%206.60586%2010.3188C6.56828%2010.3181%206.53158%2010.3073%206.49961%2010.2875C6.48086%2010.3281%206.45273%2010.3625%206.40586%2010.3719C6.36836%2010.3781%206.31523%2010.3563%206.28086%2010.3375C6.21836%2010.3%206.16211%2010.2125%206.16211%2010.2125L6.16836%2010.1594C6.16836%2010.1594%206.20586%2010.2031%206.27461%2010.2563C6.34336%2010.3125%206.39648%2010.3063%206.39648%2010.3063C6.44023%2010.3%206.45898%2010.2594%206.45898%2010.2125V10.1656L6.49023%2010.2031C6.50315%2010.222%206.52038%2010.2375%206.54049%2010.2484C6.56059%2010.2592%206.58301%2010.2652%206.60586%2010.2656C6.68398%2010.2656%206.74648%2010.2031%206.74648%2010.1313C6.74779%2010.1097%206.74348%2010.0882%206.73399%2010.0688L6.75899%2010.0094L6.80586%2010.0563C6.80543%2010.0625%206.80543%2010.0688%206.80586%2010.075C6.80586%2010.15%206.86836%2010.2125%206.94961%2010.2125C7.02461%2010.2125%207.08711%2010.1656%207.09649%2010.0938C7.09649%2010.0938%207.09649%2010.0438%207.10274%2010.0406C7.10899%2010.0406%207.12149%2010.0938%207.12461%2010.0906C7.13503%2010.1194%207.15418%2010.1442%207.1794%2010.1616C7.20461%2010.179%207.23462%2010.188%207.26524%2010.1875C7.28817%2010.1881%207.31092%2010.1832%207.33157%2010.1732C7.35222%2010.1632%207.37018%2010.1484%207.38395%2010.13C7.39771%2010.1117%207.40688%2010.0903%207.4107%2010.0677C7.41451%2010.0451%207.41285%2010.0219%207.40586%2010L7.44336%209.99377Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.45625%2010.1781C8.46563%2010.1531%208.45625%2010.1281%208.4375%2010.1219C8.42188%2010.1156%208.4%2010.1312%208.39063%2010.1562C8.38125%2010.1812%208.39063%2010.2062%208.40938%2010.2125C8.425%2010.2188%208.44688%2010.2031%208.45625%2010.1781ZM7.81563%2010.0531C7.81563%2010.0281%207.80625%2010.0031%207.78438%2010.0031C7.76875%209.99998%207.75313%2010.0187%207.74688%2010.0469C7.74375%2010.0719%207.75625%2010.0937%207.775%2010.0969C7.79375%2010.0969%207.8125%2010.0781%207.81563%2010.0531ZM7.06875%2010.0531C7.06875%2010.0281%207.08125%2010.0031%207.1%2010.0031C7.11875%209.99998%207.13438%2010.0187%207.1375%2010.0469C7.14063%2010.0719%207.12813%2010.0937%207.10938%2010.0969C7.09063%2010.0969%207.075%2010.0781%207.07188%2010.0531H7.06875ZM6.42812%2010.1781C6.42187%2010.1531%206.42813%2010.1281%206.44688%2010.1219C6.46563%2010.1156%206.48438%2010.1312%206.49375%2010.1562C6.50313%2010.1812%206.49375%2010.2062%206.47813%2010.2125C6.45938%2010.2188%206.4375%2010.2031%206.42812%2010.1781Z'%20fill='white'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.70977%209.75C6.74305%209.77072%206.76753%209.80299%206.77852%209.84062C6.77852%209.84062%206.77852%209.83125%206.79727%209.82188C6.81602%209.8125%206.82852%209.8125%206.82852%209.8125L6.82539%209.85313L6.81602%209.92188C6.81072%209.93935%206.80338%209.95613%206.79414%209.97188C6.78765%209.96661%206.78012%209.96277%206.77204%209.96062C6.76396%209.95846%206.75552%209.95804%206.74727%209.95937C6.73936%209.96109%206.73192%209.96449%206.72545%209.96935C6.71897%209.9742%206.71363%209.98039%206.70977%209.9875C6.70977%209.9875%206.68789%209.96875%206.67227%209.94688L6.63789%209.88438L6.61602%209.85C6.61602%209.85%206.63164%209.84375%206.65039%209.85C6.66914%209.85%206.67539%209.85625%206.67539%209.85625C6.67219%209.81817%206.68333%209.78028%206.70664%209.75H6.70977ZM6.71914%2010.0563C6.7096%2010.0482%206.703%2010.0372%206.70039%2010.025C6.70039%2010.0094%206.70039%209.99688%206.70977%209.9875C6.70977%209.9875%206.68164%209.97187%206.65352%209.96562C6.63164%209.95937%206.59102%209.95937%206.58164%209.95937H6.55039L6.55664%209.975C6.56289%209.99062%206.57227%209.99687%206.57227%209.99687C6.53433%2010.0053%206.50091%2010.0276%206.47852%2010.0594C6.51014%2010.0824%206.54889%2010.0934%206.58789%2010.0906L6.58164%2010.1156V10.1344L6.61289%2010.1219C6.62227%2010.1187%206.65977%2010.1062%206.67539%2010.0906C6.70039%2010.0781%206.72227%2010.0563%206.72227%2010.0563H6.71914ZM6.80664%2010.0406C6.81279%2010.0303%206.81501%2010.0181%206.81289%2010.0062C6.81052%209.99395%206.80388%209.98288%206.79414%209.975L6.83789%209.93437C6.85763%209.92274%206.87859%209.91331%206.90039%209.90625L6.93477%209.89375V9.9125C6.93329%209.92097%206.9312%209.92933%206.92852%209.9375C6.96656%209.93459%207.00435%209.94571%207.03477%209.96875C7.01314%209.99989%206.98093%2010.0221%206.94414%2010.0312C6.95005%2010.0445%206.95738%2010.0571%206.96602%2010.0687H6.93477C6.92227%2010.0687%206.88477%2010.0687%206.86289%2010.0625C6.84354%2010.0569%206.82471%2010.0496%206.80664%2010.0406Z'%20fill='%23C8B100'/%3e%3cpath%20d='M6.70977%209.9875C6.71363%209.98039%206.71897%209.9742%206.72545%209.96935C6.73192%209.96449%206.73936%209.96109%206.74727%209.95937C6.75552%209.95804%206.76396%209.95846%206.77204%209.96062C6.78012%209.96277%206.78765%209.96661%206.79414%209.97188C6.80338%209.95613%206.81072%209.93935%206.81602%209.92188L6.82539%209.85313L6.82852%209.8125C6.82852%209.8125%206.81602%209.8125%206.79727%209.82188C6.77852%209.83125%206.77852%209.84062%206.77852%209.84062C6.76753%209.80299%206.74305%209.77072%206.70977%209.75H6.70664C6.68333%209.78028%206.67219%209.81817%206.67539%209.85625C6.67539%209.85625%206.66914%209.85%206.65039%209.85C6.63164%209.84375%206.61602%209.85%206.61602%209.85L6.63789%209.88438L6.67227%209.94688C6.68789%209.96875%206.70977%209.9875%206.70977%209.9875ZM6.70977%209.9875C6.70039%209.99688%206.70039%2010.0094%206.70039%2010.025C6.703%2010.0372%206.7096%2010.0482%206.71914%2010.0563H6.72227C6.72227%2010.0563%206.70039%2010.0781%206.67539%2010.0906C6.65977%2010.1062%206.62227%2010.1187%206.61289%2010.1219L6.58164%2010.1344V10.1156L6.58789%2010.0906C6.54889%2010.0934%206.51014%2010.0824%206.47852%2010.0594C6.50091%2010.0276%206.53433%2010.0053%206.57227%209.99687C6.57227%209.99687%206.56289%209.99062%206.55664%209.975L6.55039%209.95937H6.58164C6.59102%209.95937%206.63164%209.95937%206.65352%209.96562C6.68164%209.97187%206.70977%209.9875%206.70977%209.9875ZM6.80664%2010.0406C6.81279%2010.0303%206.81501%2010.0181%206.81289%2010.0062C6.81052%209.99395%206.80388%209.98288%206.79414%209.975L6.83789%209.93437C6.85763%209.92274%206.87859%209.91331%206.90039%209.90625L6.93477%209.89375V9.9125C6.93329%209.92097%206.9312%209.92933%206.92852%209.9375C6.96656%209.93459%207.00435%209.94571%207.03477%209.96875C7.01314%209.99989%206.98093%2010.0221%206.94414%2010.0312C6.95005%2010.0445%206.95738%2010.0571%206.96602%2010.0687H6.93477C6.92227%2010.0687%206.88477%2010.0688%206.86289%2010.0625C6.84354%2010.0569%206.82471%2010.0496%206.80664%2010.0406Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.69336%2010.0125C6.69336%209.98126%206.72461%209.95001%206.75586%209.95001C6.78711%209.95001%206.82461%209.98126%206.82461%2010.0125C6.82461%2010.0469%206.79336%2010.075%206.75898%2010.075C6.75052%2010.0754%206.74205%2010.0741%206.73411%2010.0712C6.72616%2010.0682%206.7189%2010.0637%206.71276%2010.0578C6.70662%2010.052%206.70173%2010.045%206.6984%2010.0372C6.69506%2010.0294%206.69335%2010.021%206.69336%2010.0125Z'%20fill='%23AD1519'/%3e%3cpath%20d='M6.69336%2010.0125C6.69336%209.98126%206.72461%209.95001%206.75586%209.95001C6.78711%209.95001%206.82461%209.98126%206.82461%2010.0125C6.82461%2010.0469%206.79336%2010.075%206.75898%2010.075C6.75052%2010.0754%206.74205%2010.0741%206.73411%2010.0712C6.72616%2010.0682%206.7189%2010.0637%206.71276%2010.0578C6.70662%2010.052%206.70173%2010.045%206.6984%2010.0372C6.69506%2010.0294%206.69335%2010.021%206.69336%2010.0125Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.44121%209.65002C7.47486%209.67971%207.49606%209.721%207.50059%209.76565C7.50059%209.76565%207.50684%209.75627%207.52871%209.75002C7.55059%209.74065%207.56621%209.74377%207.56621%209.74377L7.55059%209.78753L7.52559%209.86252C7.51734%209.88142%207.50685%209.89927%207.49434%209.91566C7.48772%209.90822%207.4795%209.90238%207.47029%209.89859C7.46109%209.8948%207.45115%209.89315%207.44121%209.89377C7.42246%209.89377%207.40371%209.90316%207.39121%209.91566C7.39121%209.91566%207.37246%209.89377%207.35996%209.86252L7.33496%209.78753L7.31934%209.74377L7.35684%209.75002C7.37871%209.75627%207.38496%209.76565%207.38496%209.76565C7.38496%209.7219%207.40996%209.67815%207.44121%209.65002Z'%20fill='%23C8B100'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.39492%209.99376C7.38568%209.98335%207.38018%209.97015%207.3793%209.95626C7.3793%209.94064%207.38242%209.92501%207.3918%209.91564C7.3918%209.91564%207.3668%209.89376%207.33555%209.88439C7.31367%209.87189%207.27305%209.86251%207.25742%209.86251L7.21992%209.85626L7.22617%209.87501L7.23867%209.90314C7.19505%209.90656%207.15406%209.92539%207.12305%209.95626C7.1543%209.98439%207.19492%2010.0063%207.23867%2010.0063L7.22617%2010.0375L7.21992%2010.0563L7.25742%2010.05C7.26992%2010.0469%207.31367%2010.0375%207.33555%2010.0281C7.3668%2010.0156%207.39492%209.99689%207.39492%209.99689V9.99376ZM7.48867%209.99689C7.49943%209.98628%207.50574%209.97198%207.50632%209.95688C7.50691%209.94178%207.50171%209.92704%207.4918%209.91564C7.4918%209.91564%207.51992%209.89376%207.54805%209.88439C7.57272%209.87289%207.59911%209.8655%207.62617%209.86251L7.66367%209.85314L7.66055%209.87501L7.64805%209.90314C7.6918%209.90314%207.73242%209.92814%207.76055%209.95626C7.72988%209.98533%207.69017%2010.003%207.64805%2010.0063C7.6512%2010.0235%207.65645%2010.0403%207.66367%2010.0563L7.62617%2010.05L7.54805%2010.0281C7.5168%2010.0156%207.4918%209.99689%207.4918%209.99689H7.48867ZM8.1793%209.74689C8.1456%209.76859%208.12112%209.80198%208.11055%209.84064L8.08867%209.82189C8.06992%209.81251%208.05742%209.81251%208.05742%209.81251L8.06367%209.85314C8.06367%209.86251%208.06367%209.89376%208.07305%209.92189C8.0793%209.95314%208.0918%209.97189%208.0918%209.97189C8.09838%209.96678%208.10592%209.96305%208.11397%209.9609C8.12202%209.95876%208.13042%209.95824%208.13867%209.95939C8.15742%209.96251%208.16992%209.97501%208.1793%209.98751L8.21367%209.94689C8.23242%209.92189%208.24492%209.89376%208.24805%209.88439L8.26992%209.85001C8.26992%209.85001%208.25742%209.84376%208.23867%209.85001C8.2168%209.85001%208.20742%209.85626%208.20742%209.85626C8.21063%209.81819%208.19948%209.78029%208.17617%209.75001L8.1793%209.74689ZM8.1668%2010.0563C8.17617%2010.0469%208.18242%2010.0375%208.18555%2010.025C8.18848%2010.0122%208.18624%209.9987%208.1793%209.98751C8.1793%209.98751%208.2043%209.97189%208.23242%209.96564C8.2543%209.95939%208.29492%209.95939%208.3043%209.95939H8.33867L8.3293%209.97501C8.32561%209.98257%208.32143%209.98987%208.3168%209.99689C8.35359%2010.006%208.3858%2010.0282%208.40742%2010.0594C8.3758%2010.0824%208.33705%2010.0934%208.29805%2010.0906L8.3043%2010.1156V10.1344L8.27305%2010.1219C8.26367%2010.1188%208.2293%2010.1063%208.21055%2010.0906C8.18555%2010.0781%208.1668%2010.0563%208.1668%2010.0563ZM8.0793%2010.0406C8.0734%2010.0302%208.0712%2010.0181%208.07305%2010.0063C8.07305%209.99064%208.08242%209.98126%208.0918%209.97501C8.0918%209.97501%208.07305%209.95001%208.04805%209.93439C8.0293%209.92189%207.99492%209.90939%207.98555%209.90626C7.97512%209.90213%207.9647%209.89796%207.9543%209.89376V9.91251C7.9543%209.92814%207.96055%209.93751%207.96055%209.93751C7.92151%209.93441%207.88267%209.94551%207.85117%209.96876C7.87305%209.99689%207.9043%2010.0219%207.94492%2010.0313C7.94492%2010.0313%207.93555%2010.0375%207.9293%2010.0531L7.91992%2010.0688H7.95117C7.96367%2010.0688%208.0043%2010.0688%208.02305%2010.0625C8.0424%2010.0569%208.06122%2010.0495%208.0793%2010.0406Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.1793%209.98751C8.16992%209.97501%208.15742%209.96251%208.13867%209.95939C8.13042%209.95824%208.12202%209.95876%208.11397%209.9609C8.10592%209.96305%208.09838%209.96678%208.0918%209.97189C8.0918%209.97189%208.0793%209.95314%208.07305%209.92189C8.06367%209.89376%208.06367%209.86251%208.06367%209.85314L8.05742%209.81251C8.05742%209.81251%208.06992%209.81251%208.08867%209.82189L8.11055%209.84064C8.12112%209.80198%208.1456%209.76859%208.1793%209.74689L8.17617%209.75001C8.19948%209.78029%208.21063%209.81819%208.20742%209.85626C8.20742%209.85626%208.2168%209.85001%208.23867%209.85001C8.25742%209.84376%208.26992%209.85001%208.26992%209.85001L8.24805%209.88439C8.24492%209.89376%208.23242%209.92189%208.21367%209.94689L8.1793%209.98751ZM8.1793%209.98751C8.18624%209.9987%208.18848%2010.0122%208.18555%2010.025C8.18242%2010.0375%208.17617%2010.0469%208.1668%2010.0563C8.1668%2010.0563%208.18555%2010.0781%208.21055%2010.0906C8.2293%2010.1063%208.26367%2010.1188%208.27305%2010.1219L8.3043%2010.1344V10.1156L8.29805%2010.0906C8.33705%2010.0934%208.3758%2010.0824%208.40742%2010.0594C8.3858%2010.0282%208.35359%2010.006%208.3168%209.99689C8.32143%209.98987%208.32561%209.98257%208.3293%209.97501L8.33867%209.95939H8.3043C8.29492%209.95939%208.2543%209.95939%208.23242%209.96564C8.2043%209.97189%208.1793%209.98751%208.1793%209.98751ZM8.0793%2010.0406C8.0734%2010.0302%208.0712%2010.0181%208.07305%2010.0063C8.07305%209.99064%208.08242%209.98126%208.0918%209.97501C8.0918%209.97501%208.07305%209.95001%208.04805%209.93439C8.0293%209.92189%207.99492%209.90939%207.98555%209.90626C7.97512%209.90213%207.9647%209.89796%207.9543%209.89376V9.91251C7.9543%209.92814%207.96055%209.93751%207.96055%209.93751C7.92151%209.93441%207.88267%209.94551%207.85117%209.96876C7.87305%209.99689%207.9043%2010.0219%207.94492%2010.0313C7.94492%2010.0313%207.93555%2010.0375%207.9293%2010.0531L7.91992%2010.0688H7.95117C7.96367%2010.0688%208.0043%2010.0688%208.02305%2010.0625C8.0424%2010.0569%208.06122%2010.0495%208.0793%2010.0406ZM7.39492%209.99376C7.38568%209.98335%207.38018%209.97015%207.3793%209.95626C7.3793%209.94064%207.38242%209.92501%207.3918%209.91564C7.3918%209.91564%207.3668%209.89376%207.33555%209.88439C7.31367%209.87189%207.27305%209.86251%207.25742%209.86251L7.21992%209.85626L7.22617%209.87501L7.23867%209.90314C7.19505%209.90656%207.15406%209.92539%207.12305%209.95626C7.1543%209.98439%207.19492%2010.0063%207.23867%2010.0063L7.22617%2010.0375L7.21992%2010.0563L7.25742%2010.05C7.26992%2010.0469%207.31367%2010.0375%207.33555%2010.0281C7.3668%2010.0156%207.39492%209.99689%207.39492%209.99689V9.99376ZM7.48867%209.99689C7.49943%209.98628%207.50574%209.97198%207.50632%209.95688C7.50691%209.94178%207.50171%209.92704%207.4918%209.91564C7.4918%209.91564%207.51992%209.89376%207.54805%209.88439C7.57272%209.87289%207.59911%209.8655%207.62617%209.86251L7.66367%209.85314L7.66055%209.87501L7.64805%209.90314C7.6918%209.90314%207.73242%209.92814%207.76055%209.95626C7.72988%209.98533%207.69017%2010.003%207.64805%2010.0063C7.6512%2010.0235%207.65645%2010.0403%207.66367%2010.0563L7.62617%2010.05L7.54805%2010.0281C7.5168%2010.0156%207.4918%209.99689%207.4918%209.99689H7.48867Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.06348%2010.0125C8.06348%209.98126%208.09473%209.95001%208.12598%209.95001C8.15723%209.95001%208.1916%209.98126%208.1916%2010.0125C8.1916%2010.0291%208.18502%2010.045%208.1733%2010.0567C8.16157%2010.0684%208.14568%2010.075%208.1291%2010.075C8.12063%2010.0754%208.11217%2010.0741%208.10422%2010.0712C8.09628%2010.0682%208.08901%2010.0637%208.08287%2010.0578C8.07673%2010.052%208.07185%2010.045%208.06851%2010.0372C8.06518%2010.0294%208.06347%2010.021%208.06348%2010.0125ZM8.78847%2010.15C8.77597%2010.1344%208.74472%2010.1375%208.71972%2010.1563C8.69472%2010.1781%208.68847%2010.2063%208.7041%2010.225C8.71972%2010.2406%208.75097%2010.2375%208.77597%2010.2156C8.79785%2010.1969%208.80722%2010.1656%208.7916%2010.1531'%20fill='%23AD1519'/%3e%3cpath%20d='M8.78847%2010.15C8.77597%2010.1344%208.74472%2010.1375%208.71972%2010.1563C8.69472%2010.1781%208.68847%2010.2063%208.7041%2010.225C8.71972%2010.2406%208.75097%2010.2375%208.77597%2010.2156C8.79785%2010.1969%208.80722%2010.1656%208.7916%2010.1531M8.06348%2010.0125C8.06348%209.98126%208.09473%209.95001%208.12598%209.95001C8.15723%209.95001%208.1916%209.98126%208.1916%2010.0125C8.1916%2010.0291%208.18502%2010.045%208.1733%2010.0567C8.16157%2010.0684%208.14568%2010.075%208.1291%2010.075C8.12063%2010.0754%208.11217%2010.0741%208.10422%2010.0712C8.09628%2010.0682%208.08901%2010.0637%208.08287%2010.0578C8.07673%2010.052%208.07185%2010.045%208.06851%2010.0372C8.06518%2010.0294%208.06347%2010.021%208.06348%2010.0125Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.69727%2010.1875L8.71914%2010.1562C8.74102%2010.1375%208.77539%2010.1344%208.79102%2010.15L8.79414%2010.1562C8.79414%2010.1562%208.82539%2010.0937%208.86602%2010.075C8.90664%2010.0531%208.97227%2010.0594%208.97227%2010.0594C8.97227%2010.0476%208.96991%2010.036%208.96532%2010.0252C8.96073%2010.0143%208.954%2010.0045%208.94554%209.99637C8.93708%209.9882%208.92707%209.98182%208.91609%209.97762C8.90511%209.97341%208.89339%209.97145%208.88164%209.97187C8.8676%209.97112%208.85356%209.97354%208.84058%209.97895C8.8276%209.98436%208.816%209.99262%208.80664%2010.0031L8.80039%209.97187C8.80039%209.97187%208.75977%209.98125%208.74102%2010.0281C8.72227%2010.075%208.74102%2010.1406%208.74102%2010.1406C8.74102%2010.1406%208.73164%2010.1125%208.71914%2010.0937C8.69738%2010.0727%208.67196%2010.0557%208.64414%2010.0437L8.60352%2010.0219L8.60039%2010.0375C8.59972%2010.0458%208.59972%2010.0542%208.60039%2010.0625C8.56115%2010.0584%208.52151%2010.0638%208.48477%2010.0781C8.50154%2010.1098%208.52933%2010.1343%208.56289%2010.1469L8.53789%2010.1687C8.53331%2010.1736%208.52913%2010.1788%208.52539%2010.1844L8.56602%2010.1906L8.64414%2010.1969C8.66196%2010.1958%208.6797%2010.1938%208.69727%2010.1906V10.1875ZM6.18789%2010.1906C6.18789%2010.1781%206.17852%2010.1688%206.16602%2010.1594C6.14414%2010.1375%206.11289%2010.1344%206.09727%2010.15L6.09102%2010.1594C6.09102%2010.1594%206.05977%2010.0969%206.01914%2010.075C5.98164%2010.0531%205.91602%2010.0594%205.91602%2010.0594C5.91602%2010.0479%205.91828%2010.0365%205.92268%2010.0259C5.92707%2010.0153%205.93352%2010.0056%205.94164%209.9975C5.94977%209.98938%205.95941%209.98293%205.97003%209.97853C5.98065%209.97414%205.99203%209.97187%206.00352%209.97187C6.03477%209.97187%206.06289%209.98437%206.07852%2010.0031L6.08477%209.97187C6.08477%209.97187%206.12539%209.98125%206.14727%2010.0281C6.16289%2010.075%206.14414%2010.1406%206.14414%2010.1406C6.14414%2010.1406%206.15352%2010.1125%206.16914%2010.0937C6.1909%2010.0727%206.21632%2010.0557%206.24414%2010.0437L6.28477%2010.0219V10.0625C6.324%2010.0584%206.36365%2010.0638%206.40039%2010.0781C6.38361%2010.1098%206.35583%2010.1343%206.32227%2010.1469L6.34727%2010.1687L6.35977%2010.1844L6.32227%2010.1906L6.24102%2010.1969C6.2232%2010.1958%206.20546%2010.1937%206.18789%2010.1906Z'%20fill='%23C8B100'/%3e%3cpath%20d='M6.18789%2010.1906C6.18789%2010.1781%206.17852%2010.1688%206.16602%2010.1594C6.14414%2010.1375%206.11289%2010.1344%206.09727%2010.15L6.09102%2010.1594C6.09102%2010.1594%206.05977%2010.0969%206.01914%2010.075C5.98164%2010.0531%205.91602%2010.0594%205.91602%2010.0594C5.91602%2010.0479%205.91828%2010.0365%205.92268%2010.0259C5.92707%2010.0153%205.93352%2010.0056%205.94164%209.9975C5.94977%209.98938%205.95941%209.98293%205.97003%209.97853C5.98065%209.97414%205.99203%209.97187%206.00352%209.97187C6.03477%209.97187%206.06289%209.98437%206.07852%2010.0031L6.08477%209.97187C6.08477%209.97187%206.12539%209.98125%206.14727%2010.0281C6.16289%2010.075%206.14414%2010.1406%206.14414%2010.1406C6.14414%2010.1406%206.15352%2010.1125%206.16914%2010.0937C6.1909%2010.0727%206.21632%2010.0557%206.24414%2010.0437L6.28477%2010.0219V10.0625C6.324%2010.0584%206.36365%2010.0638%206.40039%2010.0781C6.38361%2010.1098%206.35583%2010.1343%206.32227%2010.1469L6.34727%2010.1687L6.35977%2010.1844L6.32227%2010.1906L6.24102%2010.1969C6.2232%2010.1958%206.20546%2010.1937%206.18789%2010.1906ZM8.69727%2010.1875L8.71914%2010.1562C8.74102%2010.1375%208.77539%2010.1344%208.79102%2010.15L8.79414%2010.1562C8.79414%2010.1562%208.82539%2010.0937%208.86602%2010.075C8.90664%2010.0531%208.97227%2010.0594%208.97227%2010.0594C8.97227%2010.0476%208.96991%2010.036%208.96532%2010.0252C8.96073%2010.0143%208.954%2010.0045%208.94554%209.99637C8.93708%209.9882%208.92707%209.98182%208.91609%209.97762C8.90511%209.97341%208.89339%209.97145%208.88164%209.97187C8.8676%209.97112%208.85356%209.97354%208.84058%209.97895C8.8276%209.98436%208.816%209.99262%208.80664%2010.0031L8.80039%209.97187C8.80039%209.97187%208.75977%209.98125%208.74102%2010.0281C8.72227%2010.075%208.74102%2010.1406%208.74102%2010.1406C8.74102%2010.1406%208.73164%2010.1125%208.71914%2010.0937C8.69738%2010.0727%208.67196%2010.0557%208.64414%2010.0437L8.60352%2010.0219L8.60039%2010.0375C8.59972%2010.0458%208.59972%2010.0542%208.60039%2010.0625C8.56115%2010.0584%208.52151%2010.0638%208.48477%2010.0781C8.50154%2010.1098%208.52933%2010.1343%208.56289%2010.1469L8.53789%2010.1687C8.53331%2010.1736%208.52913%2010.1788%208.52539%2010.1844L8.56602%2010.1906L8.64414%2010.1969C8.66196%2010.1958%208.6797%2010.1938%208.69727%2010.1906V10.1875Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.09426%2010.15C6.11301%2010.1344%206.14426%2010.1375%206.16926%2010.1594C6.19114%2010.1781%206.20051%2010.2062%206.18176%2010.2219C6.16614%2010.2406%206.13489%2010.2375%206.11301%2010.2156C6.08801%2010.1969%206.08176%2010.1656%206.09739%2010.1531L6.09426%2010.15ZM7.37864%209.95624C7.37864%209.92186%207.40676%209.89374%207.44114%209.89374C7.47551%209.89374%207.50676%209.92186%207.50676%209.95624C7.50676%209.98749%207.47551%2010.0187%207.44426%2010.0187C7.4358%2010.0192%207.42733%2010.0179%207.41938%2010.0149C7.41144%2010.012%207.40417%2010.0074%207.39803%2010.0016C7.3919%209.99573%207.38701%209.9887%207.38368%209.9809C7.38034%209.97311%207.37863%209.96472%207.37864%209.95624Z'%20fill='%23AD1519'/%3e%3cpath%20d='M7.37864%209.95624C7.37864%209.92186%207.40676%209.89374%207.44114%209.89374C7.47551%209.89374%207.50676%209.92186%207.50676%209.95624C7.50676%209.98749%207.47551%2010.0187%207.44426%2010.0187C7.4358%2010.0192%207.42733%2010.0179%207.41938%2010.0149C7.41144%2010.012%207.40417%2010.0074%207.39803%2010.0016C7.3919%209.99573%207.38701%209.9887%207.38368%209.9809C7.38034%209.97311%207.37863%209.96472%207.37864%209.95624ZM6.09426%2010.15C6.11301%2010.1344%206.14426%2010.1375%206.16926%2010.1594C6.19114%2010.1781%206.20051%2010.2062%206.18176%2010.2219C6.16614%2010.2406%206.13489%2010.2375%206.11301%2010.2156C6.08801%2010.1969%206.08176%2010.1656%206.09739%2010.1531L6.09426%2010.15Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.30762%209.01874C7.30762%208.94999%207.36699%208.89374%207.44199%208.89374C7.51699%208.89374%207.57324%208.94999%207.57324%209.01874C7.57324%209.08749%207.51387%209.14374%207.43887%209.14374C7.42204%209.14415%207.4053%209.14125%207.38959%209.13519C7.37389%209.12913%207.35953%209.12004%207.34734%209.10843C7.33515%209.09682%207.32537%209.08293%207.31856%209.06754C7.31174%209.05215%207.30802%209.03557%207.30762%209.01874Z'%20fill='%23005BBF'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M7.40762%208.66565V8.7344H7.33262V8.80315H7.40449V9.00002H7.31387L7.30762%209.01877C7.30762%209.03752%207.31074%209.05315%207.31699%209.06877H7.56387C7.57012%209.05315%207.57324%209.03752%207.57324%209.01877L7.56699%209.00002H7.47949V8.80315H7.55137V8.7344H7.47949V8.66565H7.40449H7.40762Z'%20fill='%23C8B100'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M7.45371%2014.3313C7.06938%2014.3301%206.69023%2014.2425%206.34434%2014.075C6.22458%2014.017%206.12356%2013.9264%206.05282%2013.8137C5.98209%2013.7009%205.9445%2013.5706%205.94434%2013.4375V12.4375H8.95684V13.4375C8.95668%2013.5706%208.91908%2013.7009%208.84835%2013.8137C8.77761%2013.9264%208.6766%2014.017%208.55684%2014.075C8.2132%2014.2426%207.83605%2014.3302%207.45371%2014.3313Z'%20fill='%23CCCCCC'/%3e%3cpath%20d='M7.45371%2014.3313C7.06938%2014.3301%206.69023%2014.2425%206.34434%2014.075C6.22458%2014.017%206.12356%2013.9264%206.05282%2013.8137C5.98209%2013.7009%205.9445%2013.5706%205.94434%2013.4375V12.4375H8.95684V13.4375C8.95668%2013.5706%208.91908%2013.7009%208.84835%2013.8137C8.77761%2013.9264%208.6766%2014.017%208.55684%2014.075C8.2132%2014.2426%207.83605%2014.3302%207.45371%2014.3313Z'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M7.44824%2012.4375H8.95762V10.7656H7.44824V12.4375Z'%20fill='%23CCCCCC'/%3e%3cpath%20d='M7.44824%2012.4375H8.95762V10.7656H7.44824V12.4375Z'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M7.44765%2013.4375C7.44765%2013.8313%207.11328%2014.1531%206.69765%2014.1531C6.28203%2014.1531%205.94141%2013.8313%205.94141%2013.4344V12.4344H7.44765V13.4344'%20fill='%23AD1519'/%3e%3cpath%20d='M6.26855%2014.0281C6.31543%2014.0531%206.38105%2014.0906%206.4498%2014.1094L6.44668%2012.4H6.26855V14.025V14.0281Z'%20fill='%23C8B100'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M5.9375%2013.425C5.94056%2013.5961%206.0011%2013.7612%206.10937%2013.8937V12.4094H5.94063V13.425H5.9375Z'%20fill='%23C8B100'%20stroke='black'%20stroke-width='0.125'%20stroke-linejoin='round'/%3e%3cpath%20d='M6.60645%2014.1469C6.66462%2014.153%206.72327%2014.153%206.78145%2014.1469V12.4H6.60645V14.15V14.1469Z'%20fill='%23C7B500'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M6.9377%2014.1094C7.00205%2014.0936%207.06331%2014.0672%207.11895%2014.0313V12.4H6.9377L6.93457%2014.1094H6.9377Z'%20fill='%23C8B100'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M5.94063%2012.4375H7.44687V10.7656H5.9375V12.4375H5.94063Z'%20fill='%23AD1519'/%3e%3cpath%20d='M5.94063%2012.4375H7.44687V10.7656H5.9375V12.4375H5.94063Z'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M7.28223%2013.875C7.35723%2013.8125%207.42598%2013.6625%207.45098%2013.4938L7.4541%2012.4H7.28223L7.28535%2013.8781L7.28223%2013.875Z'%20fill='%23C8B100'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M7.44765%2013.4375C7.44765%2013.8313%207.11328%2014.1531%206.69765%2014.1531C6.28203%2014.1531%205.94141%2013.8313%205.94141%2013.4344V12.4344H7.44765V13.4344'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M8.95762%2012.4375V13.4375C8.95762%2013.8313%208.62012%2014.1531%208.20449%2014.1531C7.78887%2014.1531%207.44824%2013.8313%207.44824%2013.4344V12.4344H8.95762'%20fill='%23AD1519'/%3e%3cpath%20d='M8.95762%2012.4375V13.4375C8.95762%2013.8313%208.62012%2014.1531%208.20449%2014.1531C7.78887%2014.1531%207.44824%2013.8313%207.44824%2013.4344V12.4344H8.95762'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M7.72142%2013.1906L7.72454%2013.2063C7.72454%2013.225%207.70892%2013.2375%207.69017%2013.2375C7.68581%2013.2379%207.68141%2013.2375%207.67725%2013.2361C7.67309%2013.2347%207.66926%2013.2325%207.66602%2013.2295C7.66278%2013.2266%207.66019%2013.223%207.65843%2013.219C7.65667%2013.215%207.65577%2013.2106%207.65579%2013.2063V13.1906H7.60892C7.60506%2013.21%207.60873%2013.2302%207.61917%2013.247C7.62961%2013.2639%207.64605%2013.2761%207.66517%2013.2812V13.4031H7.71517V13.2812C7.72731%2013.2776%207.73843%2013.2712%207.74766%2013.2625C7.75688%2013.2539%207.76395%2013.2431%207.76829%2013.2312H7.90579V13.1938H7.71829L7.72142%2013.1906ZM8.39954%2013.1938V13.2312H8.27454C8.27227%2013.2379%208.26912%2013.2442%208.26517%2013.25L8.40892%2013.4125L8.37141%2013.4438L8.22767%2013.2781L8.22142%2013.2812V13.5531H8.17142V13.2812H8.16517L8.01517%2013.4438L7.97767%2013.4125L8.12454%2013.2469C8.12202%2013.2429%208.11992%2013.2388%208.11829%2013.2344H7.99329V13.1875H8.39954V13.1938ZM8.48079%2013.1938V13.2312H8.61829C8.62766%2013.2562%208.64641%2013.275%208.67141%2013.2812V13.4031H8.72141V13.2812C8.73764%2013.2765%208.7519%2013.2666%208.76204%2013.2531C8.77218%2013.2396%208.77766%2013.2232%208.77766%2013.2063C8.77832%2013.2011%208.77832%2013.1958%208.77766%2013.1906H8.72766L8.73079%2013.2063C8.73079%2013.225%208.71516%2013.2375%208.69954%2013.2375C8.67766%2013.2375%208.66204%2013.225%208.66204%2013.2063C8.66171%2013.2009%208.66279%2013.1955%208.66516%2013.1906H8.48079V13.1938ZM8.27141%2013.8812C8.31109%2013.8756%208.34993%2013.8651%208.38704%2013.85L8.41204%2013.8937C8.36902%2013.9119%208.32387%2013.9245%208.27766%2013.9312C8.27336%2013.9494%208.26294%2013.9655%208.24814%2013.9769C8.23334%2013.9883%208.21508%2013.9943%208.19642%2013.9937C8.17829%2013.9935%208.16075%2013.9873%208.14659%2013.976C8.13244%2013.9646%208.12247%2013.9489%208.11829%2013.9312C8.06889%2013.9253%208.02053%2013.9127%207.97454%2013.8937L7.99954%2013.85C8.04017%2013.8656%208.08079%2013.8781%208.12454%2013.8812C8.12917%2013.8716%208.13571%2013.8631%208.14377%2013.8561C8.15183%2013.8491%208.16124%2013.8438%208.17142%2013.8406V13.6312H8.22142V13.8406C8.24329%2013.8469%208.26204%2013.8625%208.27141%2013.8844V13.8812ZM7.92767%2013.8125L7.90267%2013.8562C7.86071%2013.8295%207.82283%2013.7969%207.79017%2013.7594C7.76204%2013.7656%207.73392%2013.7594%207.71204%2013.7437C7.70393%2013.7374%207.69722%2013.7294%207.69232%2013.7204C7.68741%2013.7113%207.68443%2013.7014%207.68355%2013.6911C7.68267%2013.6808%207.68391%2013.6705%207.6872%2013.6607C7.69049%2013.651%207.69576%2013.642%207.70267%2013.6344L7.70579%2013.6312C7.68416%2013.5838%207.67044%2013.5331%207.66517%2013.4812H7.71829C7.72204%2013.5243%207.73259%2013.5665%207.74954%2013.6062C7.76517%2013.6062%207.78079%2013.6062%207.79329%2013.6125L7.92142%2013.4719L7.96204%2013.5031L7.83392%2013.6437C7.84954%2013.6719%207.84954%2013.7062%207.83079%2013.7312C7.85932%2013.7625%207.8919%2013.7899%207.92767%2013.8125ZM7.74017%2013.6625C7.74954%2013.65%207.77142%2013.6469%207.78704%2013.6625C7.80267%2013.6781%207.80267%2013.6937%207.79017%2013.7062C7.78368%2013.7128%207.77499%2013.7168%207.76576%2013.7174C7.75654%2013.718%207.74742%2013.7151%207.74017%2013.7094C7.73684%2013.7064%207.73418%2013.7028%207.73235%2013.6988C7.73053%2013.6948%207.72959%2013.6904%207.72959%2013.6859C7.72959%2013.6815%207.73053%2013.6771%207.73235%2013.6731C7.73418%2013.669%207.73684%2013.6654%207.74017%2013.6625ZM7.67142%2013.5219L7.62142%2013.5125L7.61204%2013.3781L7.66517%2013.3594V13.4375C7.66517%2013.4687%207.66517%2013.4938%207.67142%2013.5219ZM7.71517%2013.3562L7.76829%2013.3687V13.4375C7.76829%2013.4125%207.77767%2013.5031%207.77767%2013.5031L7.72454%2013.5219C7.71869%2013.4941%207.71555%2013.4659%207.71517%2013.4375V13.3562ZM7.89017%2013.7844C7.93504%2013.82%207.9858%2013.8475%208.04017%2013.8656L8.05267%2013.8156C8.00786%2013.8018%207.96563%2013.7807%207.92767%2013.7531L7.89017%2013.7844ZM7.86517%2013.8281C7.91058%2013.8629%207.9612%2013.8904%208.01517%2013.9094L7.97767%2013.9437C7.93365%2013.928%207.89168%2013.907%207.85267%2013.8812L7.86517%2013.8281ZM7.93392%2013.5344L7.98392%2013.5562L8.07767%2013.4531L8.04642%2013.4094L7.93392%2013.5344ZM7.89329%2013.5031L7.86204%2013.4594L7.95579%2013.3562L8.00579%2013.3781L7.89329%2013.5031ZM8.45891%2013.8125L8.48391%2013.8562C8.52584%2013.8295%208.56372%2013.7969%208.59641%2013.7594C8.62454%2013.7656%208.65266%2013.7594%208.67454%2013.7437C8.68265%2013.7374%208.68936%2013.7294%208.69426%2013.7204C8.69917%2013.7113%208.70215%2013.7014%208.70303%2013.6911C8.70391%2013.6808%208.70267%2013.6705%208.69938%2013.6607C8.69609%2013.651%208.69082%2013.642%208.68391%2013.6344L8.68079%2013.6312C8.70258%2013.5839%208.71631%2013.5332%208.72141%2013.4812H8.66829C8.66443%2013.5243%208.65389%2013.5665%208.63704%2013.6062C8.62217%2013.6048%208.60717%2013.607%208.59329%2013.6125L8.46516%2013.4719L8.42454%2013.5031L8.55266%2013.6437C8.54396%2013.6568%208.53957%2013.6723%208.54013%2013.688C8.54069%2013.7037%208.54617%2013.7188%208.55579%2013.7312C8.52732%2013.7626%208.49473%2013.7899%208.45891%2013.8125ZM8.64641%2013.6625C8.63976%2013.6572%208.6315%2013.6543%208.62298%2013.6543C8.61446%2013.6543%208.60619%2013.6572%208.59954%2013.6625C8.59338%2013.6679%208.5896%2013.6755%208.58901%2013.6837C8.58843%2013.6919%208.59109%2013.7%208.59641%2013.7062C8.6029%2013.7128%208.61159%2013.7168%208.62082%2013.7174C8.63004%2013.718%208.63916%2013.7151%208.64641%2013.7094C8.64974%2013.7064%208.6524%2013.7028%208.65423%2013.6988C8.65605%2013.6948%208.65699%2013.6904%208.65699%2013.6859C8.65699%2013.6815%208.65605%2013.6771%208.65423%2013.6731C8.6524%2013.669%208.64974%2013.6654%208.64641%2013.6625ZM8.71516%2013.5219L8.76516%2013.5125L8.77454%2013.3781L8.72141%2013.3594V13.4375C8.72141%2013.4687%208.72141%2013.4969%208.71516%2013.525V13.5219ZM8.67141%2013.3562L8.61829%2013.3687V13.4375C8.61829%2013.4125%208.60891%2013.5031%208.60891%2013.5031L8.66204%2013.5219L8.67141%2013.4375V13.3562ZM8.49641%2013.7844C8.45154%2013.82%208.40078%2013.8475%208.34642%2013.8656L8.33391%2013.8156C8.37872%2013.8018%208.42095%2013.7807%208.45891%2013.7531L8.49641%2013.7844ZM8.52141%2013.8281C8.476%2013.8629%208.42538%2013.8904%208.37141%2013.9094L8.40892%2013.9437C8.45294%2013.928%208.49491%2013.907%208.53391%2013.8812L8.52141%2013.8281ZM8.45266%2013.5344L8.40266%2013.5562L8.31204%2013.4531L8.34329%2013.4094L8.45266%2013.5344ZM8.49329%2013.5031L8.52454%2013.4594L8.43079%2013.3562L8.38079%2013.3781L8.49329%2013.5031ZM7.86517%2013.2312L7.88079%2013.2812H8.02142L8.03704%2013.2312H7.86517ZM8.52454%2013.2312L8.50891%2013.2812H8.36829L8.35267%2013.2312H8.52454ZM8.16204%2013.9156C8.16204%2013.8969%208.17767%2013.8844%208.19642%2013.8844C8.20077%2013.8839%208.20518%2013.8844%208.20934%2013.8858C8.2135%2013.8872%208.21732%2013.8894%208.22056%2013.8923C8.2238%2013.8953%208.22639%2013.8989%208.22815%2013.9029C8.22991%2013.9069%208.23081%2013.9112%208.23079%2013.9156C8.23079%2013.9344%208.21516%2013.9469%208.19954%2013.9469C8.19502%2013.9473%208.19046%2013.9468%208.18613%2013.9455C8.18179%2013.9442%208.17777%2013.942%208.17428%2013.9391C8.17079%2013.9362%208.16792%2013.9326%208.16582%2013.9286C8.16372%2013.9245%208.16243%2013.9201%208.16204%2013.9156ZM8.22142%2013.6719L8.27454%2013.6594V13.525L8.22142%2013.5094V13.6719ZM8.17142%2013.6719L8.11829%2013.6594V13.525L8.17142%2013.5094V13.6719Z'%20fill='%23C8B100'/%3e%3cpath%20d='M7.6084%2013.1938C7.61465%2013.1625%207.63965%2013.1438%207.66465%2013.1313V12.9688H7.71465V13.1344C7.73965%2013.1438%207.76152%2013.1625%207.76777%2013.1844H7.90527V13.1938H7.71777C7.71459%2013.1882%207.71005%2013.1836%207.70458%2013.1803C7.69911%2013.177%207.6929%2013.1752%207.68652%2013.175C7.67402%2013.175%207.66465%2013.1844%207.65527%2013.1938H7.6084ZM7.98965%2013.1938V13.1844H8.11777C8.11962%2013.1811%208.12171%2013.178%208.12402%2013.175L7.96777%2012.9969L8.00527%2012.9656L8.16152%2013.1406L8.16777%2013.1375V12.9063H8.21777V13.1344H8.22715L8.38027%2012.9625L8.41777%2012.9938L8.26465%2013.1656L8.27402%2013.1844H8.39902V13.1938H7.99277H7.98965ZM8.66465%2013.1938C8.66758%2013.188%208.67206%2013.1832%208.67758%2013.1799C8.68311%2013.1766%208.68946%2013.1749%208.6959%2013.175C8.71152%2013.175%208.7209%2013.1844%208.72715%2013.1938H8.77715C8.7709%2013.1625%208.74902%2013.1438%208.7209%2013.1313V12.9688H8.6709V13.1344C8.6459%2013.1438%208.62715%2013.1594%208.61777%2013.1844H8.48027V13.1938H8.66777H8.66465ZM7.72402%2012.725L7.91152%2012.9375L7.95215%2012.9063L7.76152%2012.6969L7.7709%2012.6781H7.9084V12.625H7.7709C7.76504%2012.6091%207.75436%2012.5954%207.74035%2012.5859C7.72634%2012.5764%207.70971%2012.5715%207.69277%2012.5719C7.6821%2012.5715%207.67145%2012.5731%207.66143%2012.5768C7.65142%2012.5805%207.64223%2012.5862%207.63439%2012.5934C7.62655%2012.6007%207.62022%2012.6094%207.61576%2012.6191C7.6113%2012.6288%207.6088%2012.6393%207.6084%2012.65C7.6084%2012.6669%207.61388%2012.6834%207.62402%2012.6969C7.63417%2012.7104%207.64842%2012.7203%207.66465%2012.725V12.8875H7.71465V12.725H7.72402ZM8.72402%2012.725V12.8906H8.6709V12.7281C8.66655%2012.7264%208.66237%2012.7243%208.6584%2012.7219L8.4709%2012.9344L8.43027%2012.9031L8.62402%2012.6875L8.6209%2012.6781H8.48027V12.625H8.6209C8.62657%2012.6096%208.63678%2012.5963%208.65017%2012.5868C8.66355%2012.5773%208.6795%2012.5721%208.6959%2012.5719C8.70657%2012.5715%208.71722%2012.5731%208.72724%2012.5768C8.73726%2012.5805%208.74645%2012.5862%208.75428%2012.5934C8.76212%2012.6007%208.76845%2012.6094%208.77291%2012.6191C8.77737%2012.6288%208.77987%2012.6393%208.78027%2012.65C8.78009%2012.6673%208.77415%2012.6841%208.76341%2012.6976C8.75266%2012.7112%208.73771%2012.7208%208.7209%2012.725H8.72402ZM8.2209%2012.725V12.8281H8.16777V12.7281C8.15563%2012.7245%208.14451%2012.7181%208.13528%2012.7094C8.12606%2012.7007%208.11899%2012.69%208.11465%2012.6781H7.98965V12.625H8.11465C8.12051%2012.6091%208.13119%2012.5954%208.1452%2012.5859C8.1592%2012.5764%208.17584%2012.5715%208.19277%2012.5719C8.23027%2012.5719%208.26152%2012.5937%208.2709%2012.625H8.3959V12.675H8.2709C8.26708%2012.6867%208.26057%2012.6973%208.25188%2012.706C8.24319%2012.7147%208.23258%2012.7212%208.2209%2012.725ZM7.66465%2012.85L7.61152%2012.8625V12.9969L7.66465%2013.0125V12.85ZM7.71465%2012.85L7.76777%2012.8625V12.9969L7.71465%2013.0125V12.85ZM8.6709%2012.85L8.61777%2012.8625V12.9969L8.6709%2013.0125V12.85ZM8.7209%2012.85L8.77402%2012.8625V12.9969L8.7209%2013.0125V12.85ZM7.92402%2012.875L7.97402%2012.8531L8.06465%2012.9563L8.0334%2013L7.92402%2012.875ZM7.8834%2012.9063L7.85215%2012.95L7.9459%2013.0531L7.9959%2013.0313L7.8834%2012.9063ZM8.46152%2012.8719L8.41152%2012.85L8.31777%2012.9531L8.34902%2012.9969L8.46152%2012.8719ZM8.49902%2012.9031L8.53027%2012.9469L8.43652%2013.05L8.38965%2013.0281L8.49902%2012.9031ZM7.86465%2013.1844L7.88027%2013.1344H8.0209L8.03652%2013.1844H7.86465ZM7.65527%2012.6531C7.65527%2012.6344%207.6709%2012.6219%207.69277%2012.6219C7.70106%2012.6219%207.70901%2012.6252%207.71487%2012.631C7.72073%2012.6369%207.72402%2012.6448%207.72402%2012.6531C7.72402%2012.6719%207.71152%2012.6844%207.69277%2012.6844C7.68826%2012.6848%207.6837%2012.6843%207.67936%2012.683C7.67503%2012.6817%207.671%2012.6795%207.66751%2012.6766C7.66403%2012.6737%207.66115%2012.6701%207.65905%2012.6661C7.65695%2012.662%207.65567%2012.6576%207.65527%2012.6531ZM8.0334%2012.6781L8.01777%2012.7281H7.87715L7.86152%2012.6781H8.0334ZM8.0334%2012.6281L8.01777%2012.5781H7.87715L7.86152%2012.6281H8.0334ZM8.52402%2013.1844L8.5084%2013.1344H8.36777L8.35215%2013.1844H8.52402ZM8.66152%2012.6531C8.66152%2012.6344%208.67715%2012.6219%208.6959%2012.6219C8.70026%2012.6214%208.70466%2012.6219%208.70882%2012.6233C8.71298%2012.6247%208.7168%2012.6269%208.72005%2012.6298C8.72329%2012.6328%208.72587%2012.6364%208.72763%2012.6404C8.7294%2012.6444%208.7303%2012.6487%208.73027%2012.6531C8.73027%2012.6719%208.71465%2012.6844%208.69902%2012.6844C8.69451%2012.6848%208.68995%2012.6843%208.68561%2012.683C8.68128%2012.6817%208.67725%2012.6795%208.67376%2012.6766C8.67028%2012.6737%208.6674%2012.6701%208.6653%2012.6661C8.6632%2012.662%208.66192%2012.6576%208.66152%2012.6531ZM8.1584%2012.6531C8.1584%2012.6344%208.17402%2012.6219%208.19277%2012.6219C8.19713%2012.6214%208.20153%2012.6219%208.20569%2012.6233C8.20985%2012.6247%208.21368%2012.6269%208.21692%2012.6298C8.22016%2012.6328%208.22275%2012.6364%208.22451%2012.6404C8.22627%2012.6444%208.22717%2012.6487%208.22715%2012.6531C8.22715%2012.6719%208.21152%2012.6844%208.19277%2012.6844C8.18417%2012.6844%208.17587%2012.6812%208.16951%2012.6754C8.16314%2012.6697%208.15918%2012.6617%208.1584%2012.6531ZM8.35215%2012.6781L8.36777%2012.7281H8.51152L8.52715%2012.6781H8.35215ZM8.35215%2012.6281L8.36777%2012.5781H8.51152L8.52715%2012.6281H8.35215ZM8.16777%2012.7844L8.11465%2012.8V12.9344L8.16777%2012.95V12.7813V12.7844ZM8.2209%2012.7813L8.2709%2012.7969V12.9313L8.2209%2012.9469V12.7813Z'%20fill='%23C8B100'/%3e%3cpath%20d='M7.86465%2013.8281C7.91006%2013.8629%207.96068%2013.8904%208.01465%2013.9094L7.97715%2013.9438C7.93313%2013.928%207.89117%2013.907%207.85215%2013.8813L7.86465%2013.8281ZM8.2709%2013.8844C8.31071%2013.8777%208.34955%2013.8662%208.38652%2013.85L8.41152%2013.8938C8.36851%2013.9119%208.32335%2013.9245%208.27715%2013.9312C8.27285%2013.9494%208.26242%2013.9655%208.24762%2013.9769C8.23283%2013.9883%208.21456%2013.9943%208.1959%2013.9937C8.17777%2013.9935%208.16023%2013.9873%208.14608%2013.976C8.13192%2013.9646%208.12196%2013.9489%208.11777%2013.9312C8.06837%2013.9253%208.02001%2013.9127%207.97402%2013.8938L7.99902%2013.85C8.03965%2013.8656%208.08027%2013.8781%208.12402%2013.8813C8.12865%2013.8716%208.13519%2013.8631%208.14326%2013.8561C8.15132%2013.8491%208.16073%2013.8438%208.1709%2013.8406V13.6313H8.2209V13.8406C8.24277%2013.8469%208.26152%2013.8625%208.2709%2013.8844ZM8.12402%2013.2469C8.12134%2013.2419%208.11924%2013.2367%208.11777%2013.2313H7.99277V13.1875H8.11777C8.11949%2013.1832%208.12158%2013.179%208.12402%2013.175L7.96777%2013L8.00527%2012.9688L8.16152%2013.1406C8.16361%2013.1405%208.16569%2013.1405%208.16777%2013.1406V12.9063H8.2209V13.1344H8.22715L8.38027%2012.9625L8.41777%2012.9938L8.26465%2013.1656L8.27402%2013.1844H8.39902V13.2313H8.27402C8.27402%2013.2375%208.26777%2013.2438%208.26465%2013.2469L8.41152%2013.4125L8.3709%2013.4438L8.22715%2013.2781L8.2209%2013.2813V13.5531H8.1709V13.2813L8.16465%2013.2781L8.01465%2013.4438L7.97715%2013.4125L8.12402%2013.2469ZM7.72402%2012.725L7.91152%2012.9375L7.95215%2012.9063L7.76152%2012.6969L7.7709%2012.6781H7.9084V12.625H7.7709C7.76504%2012.6091%207.75436%2012.5954%207.74035%2012.5859C7.72634%2012.5764%207.70971%2012.5715%207.69277%2012.5719C7.67176%2012.5719%207.65155%2012.58%207.6364%2012.5946C7.62125%2012.6091%207.61233%2012.629%207.61152%2012.65C7.61132%2012.6665%207.61635%2012.6827%207.62589%2012.6961C7.63543%2012.7096%207.649%2012.7197%207.66465%2012.725V12.8875H7.71465V12.725H7.72402ZM7.92715%2013.8125L7.90215%2013.8562C7.8602%2013.8295%207.82231%2013.7969%207.78965%2013.7594C7.76152%2013.7656%207.7334%2013.7594%207.71152%2013.7437C7.70341%2013.7374%207.6967%2013.7295%207.6918%2013.7204C7.6869%2013.7113%207.68391%2013.7014%207.68303%2013.6911C7.68215%2013.6808%207.6834%2013.6705%207.68669%2013.6607C7.68997%2013.651%207.69524%2013.642%207.70215%2013.6344L7.70527%2013.6313C7.68472%2013.5836%207.67205%2013.533%207.66777%2013.4813H7.71777C7.72153%2013.5243%207.73207%2013.5665%207.74902%2013.6063C7.76465%2013.6063%207.78027%2013.6063%207.79277%2013.6125L7.9209%2013.4719L7.96152%2013.5031L7.8334%2013.6438C7.85215%2013.6719%207.84902%2013.7063%207.83027%2013.7313C7.8588%2013.7625%207.89138%2013.7899%207.92715%2013.8125ZM7.66465%2013.4031V13.2813C7.64842%2013.2765%207.63417%2013.2666%207.62402%2013.2531C7.61388%2013.2396%207.6084%2013.2232%207.6084%2013.2063C7.6084%2013.175%207.6334%2013.1438%207.66465%2013.1313V12.9688H7.71465V13.1344C7.73965%2013.1406%207.76152%2013.1594%207.76777%2013.1844H7.90527V13.2313H7.76777C7.76375%2013.2428%207.75716%2013.2533%207.7485%2013.262C7.73984%2013.2706%207.72934%2013.2772%207.71777%2013.2813V13.4031H7.66465ZM7.73652%2013.6625C7.74902%2013.65%207.7709%2013.6469%207.78652%2013.6625C7.80215%2013.6781%207.80215%2013.6938%207.78965%2013.7063C7.78317%2013.7128%207.77448%2013.7168%207.76525%2013.7174C7.75602%2013.718%207.7469%2013.7151%207.73965%2013.7094C7.73632%2013.7064%207.73366%2013.7028%207.73184%2013.6988C7.73001%2013.6948%207.72907%2013.6904%207.72907%2013.6859C7.72907%2013.6815%207.73001%2013.6771%207.73184%2013.6731C7.73366%2013.669%207.73632%2013.6654%207.73965%2013.6625H7.73652ZM7.67402%2013.5219L7.6209%2013.5125L7.61152%2013.3781L7.66465%2013.3594V13.4375C7.66465%2013.4688%207.66465%2013.4938%207.67402%2013.5219ZM7.71777%2013.3563L7.76777%2013.3688V13.4375C7.76777%2013.4125%207.77715%2013.5031%207.77715%2013.5031L7.72402%2013.5219L7.71465%2013.4375V13.3563H7.71777ZM7.88965%2013.7844C7.93452%2013.82%207.98529%2013.8475%208.03965%2013.8656L8.05215%2013.8156C8.00734%2013.8018%207.96511%2013.7807%207.92715%2013.7531L7.88965%2013.7844Z'%20stroke='%23C8B100'%20stroke-width='0.075'/%3e%3cpath%20d='M7.93419%2013.5344L7.98419%2013.5563L8.07794%2013.4531L8.04669%2013.4094L7.93419%2013.5344ZM7.89355%2013.5031L7.8623%2013.4594L7.95605%2013.3563L8.00605%2013.3781L7.89355%2013.5031ZM7.65605%2013.2063C7.65605%2013.1875%207.67168%2013.175%207.6873%2013.175C7.70918%2013.175%207.7248%2013.1906%207.7248%2013.2063C7.7248%2013.225%207.70918%2013.2406%207.69043%2013.2406C7.68607%2013.2411%207.68168%2013.2406%207.67752%2013.2392C7.67336%2013.2378%207.66952%2013.2356%207.66628%2013.2327C7.66304%2013.2297%207.66047%2013.2261%207.6587%2013.2221C7.65694%2013.2181%207.65603%2013.2138%207.65605%2013.2094V13.2063ZM8.45918%2013.8125L8.48419%2013.8563C8.52611%2013.8295%208.56399%2013.7969%208.59668%2013.7594C8.6248%2013.7656%208.65293%2013.7594%208.67793%2013.7438C8.68582%2013.7372%208.69227%2013.729%208.69689%2013.7199C8.70151%2013.7107%208.7042%2013.7007%208.70479%2013.6904C8.70537%2013.6802%208.70385%2013.6699%208.7003%2013.6603C8.69676%2013.6506%208.69128%2013.6418%208.68419%2013.6344L8.68106%2013.6313C8.70286%2013.5839%208.71658%2013.5332%208.72168%2013.4813H8.66855C8.6647%2013.5243%208.65416%2013.5665%208.6373%2013.6063C8.62243%2013.6048%208.60743%2013.607%208.59355%2013.6125L8.46544%2013.4719L8.4248%2013.5031L8.55293%2013.6438C8.54422%2013.6568%208.53984%2013.6723%208.5404%2013.688C8.54096%2013.7037%208.54645%2013.7188%208.55606%2013.7313C8.52855%2013.7624%208.49703%2013.7897%208.46231%2013.8125H8.45918ZM8.72168%2013.4031V13.2813C8.73791%2013.2765%208.75216%2013.2666%208.7623%2013.2531C8.77245%2013.2396%208.77794%2013.2232%208.77794%2013.2063C8.77794%2013.175%208.75605%2013.1438%208.72168%2013.1313V12.9688H8.67169V13.1344C8.64669%2013.1406%208.62794%2013.1594%208.61856%2013.1844H8.48105V13.2313H8.61856C8.62794%2013.2563%208.64669%2013.2719%208.67169%2013.2813V13.4031H8.72168ZM8.64981%2013.6625C8.64294%2013.6564%208.63403%2013.653%208.6248%2013.653C8.61558%2013.653%208.60668%2013.6564%208.5998%2013.6625C8.59364%2013.6679%208.58986%2013.6755%208.58928%2013.6837C8.58869%2013.6919%208.59135%2013.7%208.59668%2013.7063C8.60316%2013.7128%208.61186%2013.7168%208.62109%2013.7174C8.63032%2013.718%208.63943%2013.7151%208.64668%2013.7094C8.65%2013.7064%208.65268%2013.7028%208.6545%2013.6988C8.65633%2013.6948%208.65726%2013.6904%208.65726%2013.6859C8.65726%2013.6815%208.65633%2013.6771%208.6545%2013.6731C8.65268%2013.669%208.65%2013.6654%208.64668%2013.6625H8.64981ZM8.71231%2013.5219L8.76544%2013.5125L8.77481%2013.3781L8.72168%2013.3594V13.4375C8.72168%2013.4688%208.72169%2013.4938%208.71544%2013.5219H8.71231ZM8.67169%2013.3563L8.61856%2013.3688V13.4375C8.61856%2013.4125%208.60919%2013.5031%208.60919%2013.5031L8.6623%2013.5219L8.67169%2013.4375V13.3563ZM8.72168%2012.7281V12.8906H8.67169V12.7281C8.66733%2012.7265%208.66313%2012.7244%208.65918%2012.7219L8.47168%2012.9344L8.43419%2012.9031L8.62169%2012.6844V12.6781H8.48105V12.625H8.61856C8.62442%2012.6091%208.6351%2012.5954%208.64911%2012.5859C8.66312%2012.5764%208.67974%2012.5715%208.69668%2012.5719C8.7177%2012.5719%208.7379%2012.58%208.75305%2012.5946C8.76821%2012.6091%208.77713%2012.629%208.77794%2012.65C8.77794%2012.6669%208.77245%2012.6834%208.7623%2012.6969C8.75216%2012.7104%208.73791%2012.7203%208.72168%2012.725V12.7281ZM8.22168%2012.7281V12.8281H8.16855V12.7281C8.15641%2012.7245%208.14529%2012.7181%208.13606%2012.7094C8.12684%2012.7007%208.11977%2012.69%208.11543%2012.6781H7.99043V12.625H8.11543C8.12793%2012.5938%208.15605%2012.5719%208.19355%2012.5719C8.23105%2012.5719%208.2623%2012.5938%208.27168%2012.625H8.39668V12.675H8.27168C8.26786%2012.6867%208.26135%2012.6973%208.25266%2012.706C8.24397%2012.7147%208.23336%2012.7212%208.22168%2012.725V12.7281ZM8.49669%2013.7844C8.45182%2013.82%208.40104%2013.8475%208.34668%2013.8656L8.33418%2013.8156C8.37899%2013.8018%208.42122%2013.7807%208.45918%2013.7531L8.49669%2013.7844ZM8.52168%2013.8281C8.47627%2013.8629%208.42565%2013.8904%208.37169%2013.9094L8.40918%2013.9438C8.4532%2013.928%208.49516%2013.907%208.53418%2013.8813L8.52168%2013.8281ZM7.66543%2012.8469L7.6123%2012.8625V12.9969L7.66543%2013.0125V12.85V12.8469ZM7.71855%2012.85L7.76855%2012.8625V12.9969L7.71855%2013.0125V12.8438V12.85ZM8.67169%2012.8438L8.61856%2012.8594V12.9938L8.67169%2013.0094V12.8438Z'%20stroke='%23C8B100'%20stroke-width='0.075'/%3e%3cpath%20d='M8.72188%2012.8469L8.775%2012.8625V12.9969L8.72188%2013.0125V12.8437V12.8469ZM8.45313%2013.5312L8.40313%2013.5531L8.31251%2013.45L8.34376%2013.4062L8.45313%2013.5312ZM8.49376%2013.5L8.52501%2013.4562L8.43126%2013.3531L8.38126%2013.375L8.49376%2013.5ZM7.92501%2012.875L7.97501%2012.8531L8.06876%2012.9562L8.03751%2013L7.92501%2012.875ZM7.88438%2012.9062L7.85313%2012.95L7.94688%2013.0531L7.99688%2013.0312L7.88438%2012.9062ZM8.46251%2012.8719L8.41251%2012.85L8.31876%2012.9531L8.35001%2012.9969L8.46251%2012.8719ZM8.50001%2012.9031L8.53126%2012.9469L8.43751%2013.0469L8.39063%2013.0281L8.50001%2012.9031ZM7.86563%2013.1844L7.88126%2013.1344H8.02188L8.03751%2013.1844H7.86563ZM7.86563%2013.2312L7.88126%2013.2812H8.02188L8.03751%2013.2312H7.86563ZM7.65626%2012.6562C7.65626%2012.6375%207.67188%2012.625%207.69376%2012.625C7.71251%2012.625%207.72501%2012.6375%207.72501%2012.6562C7.72501%2012.675%207.71251%2012.6875%207.69376%2012.6875C7.68916%2012.6884%207.68442%2012.6883%207.67987%2012.6872C7.67533%2012.686%207.6711%2012.6839%207.66749%2012.6809C7.66389%2012.6779%207.66101%2012.6741%207.65907%2012.6698C7.65712%2012.6656%207.65616%2012.6609%207.65626%2012.6562ZM8.03438%2012.6812L8.01876%2012.7312H7.87813L7.86251%2012.6812H8.03438ZM8.03438%2012.6312L8.01876%2012.5812H7.87813L7.86251%2012.6312H8.03438ZM8.6625%2013.2094C8.6625%2013.1937%208.67813%2013.1781%208.69688%2013.1781C8.71563%2013.1781%208.73125%2013.1937%208.73125%2013.2094C8.73125%2013.2281%208.71563%2013.2437%208.7%2013.2437C8.69541%2013.2447%208.69067%2013.2446%208.68612%2013.2434C8.68157%2013.2423%208.67734%2013.2401%208.67374%2013.2371C8.67014%2013.2341%208.66726%2013.2304%208.66532%2013.2261C8.66337%2013.2218%208.66241%2013.2172%208.6625%2013.2125V13.2094ZM8.52501%2013.1875L8.50938%2013.1375H8.36876L8.35313%2013.1875H8.52501ZM8.52501%2013.2344L8.50938%2013.2844H8.36876L8.35313%2013.2344H8.52501ZM8.16251%2013.9187C8.16251%2013.9%208.17813%2013.8875%208.19688%2013.8875C8.21563%2013.8875%208.23126%2013.9%208.23126%2013.9187C8.23126%2013.9375%208.21563%2013.95%208.20001%2013.95C8.19549%2013.9504%208.19093%2013.95%208.18659%2013.9486C8.18226%2013.9473%208.17823%2013.9451%208.17475%2013.9422C8.17126%2013.9393%208.16838%2013.9357%208.16628%2013.9317C8.16418%2013.9277%208.1629%2013.9233%208.16251%2013.9187ZM8.22188%2013.675L8.27501%2013.6625V13.5281L8.22188%2013.5125V13.675ZM8.17188%2013.675L8.11876%2013.6625V13.5281L8.17188%2013.5125V13.675ZM8.6625%2012.6562C8.6625%2012.6375%208.67813%2012.625%208.69688%2012.625C8.70124%2012.6246%208.70564%2012.625%208.7098%2012.6264C8.71396%2012.6278%208.71779%2012.63%208.72103%2012.633C8.72427%2012.6359%208.72685%2012.6395%208.72862%2012.6435C8.73038%2012.6475%208.73128%2012.6519%208.73125%2012.6562C8.73125%2012.675%208.71563%2012.6875%208.7%2012.6875C8.69549%2012.6879%208.69093%2012.6875%208.68659%2012.6861C8.68226%2012.6848%208.67823%2012.6826%208.67474%2012.6797C8.67126%2012.6768%208.66838%2012.6732%208.66628%2012.6692C8.66418%2012.6652%208.6629%2012.6608%208.6625%2012.6562ZM8.15938%2012.6562C8.15938%2012.6375%208.17501%2012.625%208.19376%2012.625C8.19811%2012.6246%208.20252%2012.625%208.20668%2012.6264C8.21084%2012.6278%208.21466%2012.63%208.2179%2012.633C8.22114%2012.6359%208.22373%2012.6395%208.22549%2012.6435C8.22725%2012.6475%208.22815%2012.6519%208.22813%2012.6562C8.22813%2012.675%208.21251%2012.6875%208.19688%2012.6875C8.19236%2012.6879%208.1878%2012.6875%208.18347%2012.6861C8.17913%2012.6848%208.17511%2012.6826%208.17162%2012.6797C8.16813%2012.6768%208.16526%2012.6732%208.16316%2012.6692C8.16106%2012.6652%208.15977%2012.6608%208.15938%2012.6562ZM8.35313%2012.6812L8.36876%2012.7312H8.5125L8.52813%2012.6812H8.35626H8.35313ZM8.35626%2012.6312L8.36876%2012.5812H8.5125L8.52813%2012.6312H8.35626ZM8.16876%2012.7875L8.11876%2012.8031V12.9375L8.16876%2012.9531V12.7812V12.7875ZM8.22188%2012.7812L8.27188%2012.7969V12.9312L8.22188%2012.9469V12.7812Z'%20stroke='%23C8B100'%20stroke-width='0.075'/%3e%3cpath%20d='M8.11523%2013.2094C8.11604%2013.1884%208.12496%2013.1685%208.14011%2013.1539C8.15526%2013.1394%208.17548%2013.1312%208.1965%2013.1312C8.21751%2013.1312%208.23771%2013.1394%208.25286%2013.1539C8.26801%2013.1685%208.27693%2013.1884%208.27774%2013.2094C8.27616%2013.2298%208.26691%2013.2489%208.25184%2013.2628C8.23677%2013.2767%208.21701%2013.2844%208.1965%2013.2844C8.15275%2013.2844%208.11523%2013.2531%208.11523%2013.2094Z'%20fill='%23058E6E'/%3e%3cpath%20d='M8.21562%2011.1781V11.1594L8.21875%2011.15L8.14687%2011.1469C8.12043%2011.1399%208.09588%2011.1271%208.075%2011.1094C8.05%2011.0875%208.04063%2011.0781%208.025%2011.0719C7.98438%2011.0656%207.95312%2011.0844%207.95312%2011.0844C7.95312%2011.0844%207.98438%2011.0969%208.00626%2011.125C8.02813%2011.1531%208.05313%2011.1656%208.0625%2011.1687C8.08125%2011.175%208.14375%2011.1687%208.15938%2011.1719L8.21562%2011.1781Z'%20fill='%23DB4446'/%3e%3cpath%20d='M8.21562%2011.1781V11.1594L8.21875%2011.15L8.14687%2011.1469C8.12043%2011.1399%208.09588%2011.1271%208.075%2011.1094C8.05%2011.0875%208.04063%2011.0781%208.025%2011.0719C7.98438%2011.0656%207.95312%2011.0844%207.95312%2011.0844C7.95312%2011.0844%207.98438%2011.0969%208.00626%2011.125C8.02813%2011.1531%208.05312%2011.1656%208.0625%2011.1687C8.08125%2011.175%208.14375%2011.1687%208.15938%2011.1719L8.21562%2011.1781Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.44179%2011.1094V11.1531C8.44804%2011.1719%208.43867%2011.1906%208.44179%2011.2C8.44179%2011.2125%208.44492%2011.2188%208.45117%2011.2281L8.45742%2011.2562L8.43554%2011.2406L8.41679%2011.2281V11.2594C8.41992%2011.2656%208.42617%2011.2844%208.43554%2011.2937L8.46679%2011.3344C8.47304%2011.35%208.46992%2011.3781%208.46992%2011.3781C8.46992%2011.3781%208.45742%2011.3563%208.44492%2011.3531L8.40742%2011.3313C8.40742%2011.3313%208.42929%2011.3563%208.42929%2011.3781C8.42929%2011.4031%208.41992%2011.4281%208.41992%2011.4281C8.41992%2011.4281%208.41054%2011.4063%208.39492%2011.3938L8.36367%2011.3656C8.36367%2011.3656%208.37617%2011.4031%208.37617%2011.4281V11.5L8.34804%2011.4688L8.31679%2011.4469C8.31679%2011.4406%208.33242%2011.4656%208.33554%2011.4812C8.33554%2011.4969%208.34492%2011.5531%208.39179%2011.6219C8.42304%2011.6625%208.46367%2011.7344%208.55742%2011.7125C8.65117%2011.6875%208.61679%2011.5625%208.59804%2011.5031C8.58093%2011.4569%208.57041%2011.4085%208.56679%2011.3594C8.56679%2011.3344%208.58554%2011.2687%208.58242%2011.2562C8.57815%2011.2239%208.58028%2011.1909%208.58867%2011.1594C8.60117%2011.1188%208.61054%2011.1031%208.61679%2011.0875C8.62304%2011.0688%208.62929%2011.0594%208.62929%2011.0469L8.63242%2011.0062L8.65429%2011.0469L8.65742%2011.0938C8.65742%2011.0938%208.66054%2011.0625%208.68867%2011.0437C8.71367%2011.025%208.74492%2011.0094%208.75117%2011C8.76054%2010.9906%208.76054%2010.9844%208.76054%2010.9844C8.76054%2010.9844%208.76054%2011.0406%208.74179%2011.0656L8.68867%2011.1281C8.68867%2011.1281%208.71054%2011.1188%208.72617%2011.1188H8.75429C8.75429%2011.1188%208.73554%2011.1312%208.71054%2011.1687C8.68554%2011.2%208.69492%2011.2062%208.67929%2011.2344C8.66054%2011.2656%208.64804%2011.2656%208.62617%2011.2812C8.59492%2011.3063%208.61054%2011.4125%208.61367%2011.4281C8.61992%2011.4437%208.67617%2011.5687%208.67617%2011.6C8.67617%2011.6312%208.68242%2011.7%208.62929%2011.7438C8.59492%2011.775%208.53554%2011.775%208.52304%2011.7812C8.51054%2011.7906%208.48554%2011.8156%208.48554%2011.8688C8.48554%2011.9219%208.50429%2011.9312%208.51679%2011.9437C8.53554%2011.9594%208.55429%2011.95%208.55742%2011.9625C8.56367%2011.9719%208.56367%2011.9781%208.57304%2011.9844C8.57929%2011.9906%208.58242%2011.9969%208.57929%2012.0094C8.57929%2012.0187%208.55429%2012.0438%208.54492%2012.0625L8.51992%2012.1375C8.51992%2012.1437%208.51679%2012.1688%208.52304%2012.1781C8.52304%2012.1781%208.55117%2012.2094%208.53242%2012.2156C8.51992%2012.2219%208.50742%2012.2094%208.50117%2012.2094L8.47304%2012.225C8.46367%2012.2219%208.46367%2012.2156%208.46054%2012.2L8.45742%2012.1781C8.45117%2012.1781%208.44804%2012.1844%208.44492%2012.1938C8.44492%2012.2%208.44492%2012.2188%208.43554%2012.2188C8.42929%2012.2188%208.41992%2012.2062%208.41054%2012.2031C8.40429%2012.2031%208.38554%2012.1969%208.38554%2012.1906C8.38554%2012.1813%208.39804%2012.1625%208.40742%2012.1594C8.41992%2012.1594%208.43242%2012.15%208.42304%2012.1438C8.41367%2012.1375%208.40742%2012.1375%208.40117%2012.1438C8.39492%2012.15%208.37617%2012.1437%208.37929%2012.1375V12.1125C8.37929%2012.1063%208.36679%2012.0969%208.38242%2012.0875C8.40117%2012.0781%208.40742%2012.0937%208.42617%2012.0906C8.44492%2012.0906%208.45117%2012.0812%208.45742%2012.0719C8.46367%2012.0625%208.46367%2012.0406%208.45117%2012.0281C8.43867%2012.0125%208.42929%2012.0125%208.42304%2012.0031L8.41367%2011.975V12.0437L8.39179%2012.0188C8.38242%2012.0094%208.37304%2011.9781%208.37304%2011.9781V12.0188C8.37304%2012.0313%208.38242%2012.0406%208.37929%2012.0437C8.37617%2012.0469%208.35429%2012.0219%208.34804%2012.0188C8.33571%2012.0104%208.3251%2011.9998%208.31679%2011.9875L8.30429%2011.9437C8.30148%2011.9283%208.30148%2011.9124%208.30429%2011.8969L8.31679%2011.8656H8.27304C8.25117%2011.8656%208.23554%2011.8562%208.22617%2011.8719C8.21679%2011.8875%208.21992%2011.9187%208.23242%2011.9594C8.24179%2011.9969%208.24804%2012.0187%208.24492%2012.025C8.23917%2012.0346%208.23176%2012.043%208.22304%2012.05H8.19492C8.1834%2012.0438%208.17051%2012.0406%208.15742%2012.0406H8.11679L8.08242%2012.0312C8.07304%2012.0344%208.05742%2012.0406%208.06367%2012.0531C8.06992%2012.0719%208.05742%2012.075%208.04804%2012.075L8.01992%2012.0688C8.00742%2012.0656%207.99179%2012.0687%207.99492%2012.0562C7.99492%2012.0437%208.00117%2012.0438%208.00742%2012.0344C8.01367%2012.025%208.01367%2012.0188%208.00742%2012.0188H7.98867C7.98242%2012.025%207.97304%2012.0344%207.96367%2012.0312C7.95742%2012.0281%207.95117%2012.0187%207.95117%2012C7.95117%2011.9812%207.92929%2011.9625%207.95117%2011.9656C7.96679%2011.9656%207.99179%2011.9781%207.99492%2011.9656C8.00117%2011.9562%207.99492%2011.9531%207.98867%2011.9437C7.98242%2011.9344%207.96367%2011.9312%207.97929%2011.9219L8.00117%2011.9062C8.00429%2011.9%208.01367%2011.8812%208.02304%2011.8875C8.04179%2011.8937%208.02304%2011.9094%208.04179%2011.9281C8.06054%2011.95%208.07304%2011.9594%208.10429%2011.9531C8.13554%2011.9531%208.14492%2011.9469%208.14492%2011.9375L8.14179%2011.9062V11.875C8.14179%2011.875%208.12929%2011.8844%208.12617%2011.8938L8.11367%2011.9187V11.8562C8.11202%2011.8478%208.10993%2011.8395%208.10742%2011.8313L8.09804%2011.8594L8.09492%2011.8906C8.09492%2011.8906%208.07304%2011.875%208.07929%2011.8438C8.08242%2011.8219%208.07617%2011.7937%208.08242%2011.7812C8.08867%2011.7719%208.10429%2011.7344%208.14492%2011.7312H8.22617L8.28867%2011.7219C8.28867%2011.7219%208.20117%2011.6781%208.17929%2011.6625C8.15546%2011.6449%208.13439%2011.6238%208.11679%2011.6L8.09804%2011.55C8.09804%2011.55%208.08242%2011.55%208.06679%2011.5594C8.05273%2011.5678%208.04008%2011.5783%208.02929%2011.5906L8.00742%2011.6219L8.01054%2011.5844V11.5594C8.01054%2011.5594%207.99804%2011.5969%207.97929%2011.6125L7.93554%2011.6438V11.6188L7.94179%2011.5875C7.94179%2011.5875%207.92929%2011.6125%207.90742%2011.6188C7.88554%2011.6188%207.85117%2011.6187%207.84804%2011.6312C7.84804%2011.6469%207.85429%2011.6625%207.84804%2011.675C7.84804%2011.6844%207.83554%2011.6906%207.83554%2011.6906L7.81054%2011.6781C7.79804%2011.6781%207.78867%2011.6844%207.78867%2011.6844C7.78867%2011.6844%207.77929%2011.6719%207.78242%2011.6625C7.78554%2011.6562%207.80429%2011.6437%207.79804%2011.6375L7.77304%2011.6438C7.76367%2011.6469%207.74804%2011.6531%207.74804%2011.6375C7.74804%2011.625%207.75429%2011.6156%207.74804%2011.6062C7.74804%2011.5969%207.74804%2011.5906%207.75429%2011.5875L7.79179%2011.5844C7.79179%2011.5781%207.78554%2011.5688%207.76679%2011.5656C7.74804%2011.5625%207.74179%2011.55%207.75117%2011.5406C7.76054%2011.5344%207.76054%2011.5312%207.76679%2011.5219C7.76992%2011.5156%207.77304%2011.5%207.78867%2011.5062C7.80429%2011.5156%207.80117%2011.5312%207.81992%2011.5375C7.84094%2011.5408%207.86246%2011.5386%207.88242%2011.5312L7.92929%2011.5L7.97617%2011.4688L7.94492%2011.4437C7.93554%2011.4344%207.92304%2011.4156%207.91367%2011.4125C7.8957%2011.4041%207.87682%2011.3978%207.85742%2011.3938C7.83924%2011.3903%207.82144%2011.3851%207.80429%2011.3781L7.82929%2011.3688C7.83554%2011.3625%207.84804%2011.35%207.85429%2011.35H7.86367H7.81992C7.81054%2011.3469%207.78867%2011.3313%207.77929%2011.3313L7.75429%2011.3344C7.75429%2011.3344%207.77929%2011.3219%207.79804%2011.3187L7.82929%2011.3156C7.82929%2011.3156%207.80117%2011.3063%207.79492%2011.2969L7.77617%2011.2656C7.76992%2011.2625%207.76679%2011.25%207.75742%2011.25L7.72617%2011.2594C7.71367%2011.2594%207.70742%2011.2531%207.70742%2011.2406L7.70429%2011.225C7.69804%2011.2156%207.68554%2011.2%207.69804%2011.1937H7.74179C7.74179%2011.1875%207.72617%2011.175%207.71679%2011.1687C7.70429%2011.1625%207.68554%2011.1531%207.69492%2011.1438L7.71992%2011.1281C7.72617%2011.1188%207.72929%2011.0969%207.74179%2011.1062C7.75429%2011.1125%207.76679%2011.1437%207.77617%2011.1406C7.78554%2011.1406%207.78554%2011.1156%207.78554%2011.1094C7.78554%2011.0969%207.78554%2011.0781%207.79179%2011.0813C7.80117%2011.0813%207.80742%2011.0938%207.82304%2011.0969C7.83554%2011.0969%207.85429%2011.0938%207.85429%2011.1031C7.85429%2011.1125%207.84492%2011.125%207.83554%2011.1344C7.82617%2011.1438%207.82304%2011.1656%207.82617%2011.1781C7.83242%2011.1937%207.84804%2011.2156%207.86367%2011.2219C7.87617%2011.2313%207.90117%2011.2375%207.91679%2011.25C7.93242%2011.2594%207.96992%2011.2875%207.98242%2011.2906L8.00742%2011.3031C8.00742%2011.3031%208.02304%2011.2969%208.04179%2011.2969C8.06367%2011.2969%208.10742%2011.2969%208.12304%2011.2906C8.14179%2011.2844%208.16367%2011.2719%208.15429%2011.2594C8.15117%2011.2406%208.11367%2011.2281%208.11679%2011.2156C8.11679%2011.2031%208.13242%2011.2031%208.15429%2011.2031C8.17929%2011.2031%208.21054%2011.2062%208.21679%2011.1719C8.22304%2011.1406%208.22304%2011.125%208.19179%2011.1156C8.16054%2011.1094%208.13554%2011.1094%208.12929%2011.0844C8.12304%2011.0625%208.11679%2011.0563%208.12304%2011.05C8.13242%2011.0438%208.14179%2011.0406%208.16679%2011.0375C8.19179%2011.0375%208.21679%2011.0375%208.22617%2011.0312C8.23242%2011.025%208.23554%2011.0094%208.24492%2011.0031C8.25429%2010.9969%208.28867%2010.9906%208.28867%2010.9906C8.28867%2010.9906%208.33242%2011.0125%208.37304%2011.0437C8.39812%2011.0632%208.42116%2011.0852%208.44179%2011.1094Z'%20fill='%23ED72AA'/%3e%3cpath%20d='M8.44179%2011.1094V11.1531C8.44804%2011.1719%208.43867%2011.1906%208.44179%2011.2C8.44179%2011.2125%208.44492%2011.2188%208.45117%2011.2281L8.45742%2011.2562L8.43554%2011.2406L8.41679%2011.2281V11.2594C8.41992%2011.2656%208.42617%2011.2844%208.43554%2011.2937L8.46679%2011.3344C8.47304%2011.35%208.46992%2011.3781%208.46992%2011.3781C8.46992%2011.3781%208.45742%2011.3563%208.44492%2011.3531L8.40742%2011.3313C8.40742%2011.3313%208.42929%2011.3563%208.42929%2011.3781C8.42929%2011.4031%208.41992%2011.4281%208.41992%2011.4281C8.41992%2011.4281%208.41054%2011.4063%208.39492%2011.3938L8.36367%2011.3656C8.36367%2011.3656%208.37617%2011.4031%208.37617%2011.4281V11.5L8.34804%2011.4688L8.31679%2011.4469C8.31679%2011.4406%208.33242%2011.4656%208.33554%2011.4812C8.33554%2011.4969%208.34492%2011.5531%208.39179%2011.6219C8.42304%2011.6625%208.46367%2011.7344%208.55742%2011.7125C8.65117%2011.6875%208.61679%2011.5625%208.59804%2011.5031C8.58093%2011.4569%208.57041%2011.4085%208.56679%2011.3594C8.56679%2011.3344%208.58554%2011.2687%208.58242%2011.2562C8.57815%2011.2239%208.58028%2011.1909%208.58867%2011.1594C8.60117%2011.1188%208.61054%2011.1031%208.61679%2011.0875C8.62304%2011.0688%208.62929%2011.0594%208.62929%2011.0469L8.63242%2011.0062L8.65429%2011.0469L8.65742%2011.0938C8.65742%2011.0938%208.66054%2011.0625%208.68867%2011.0437C8.71367%2011.025%208.74492%2011.0094%208.75117%2011C8.76054%2010.9906%208.76054%2010.9844%208.76054%2010.9844C8.76054%2010.9844%208.76054%2011.0406%208.74179%2011.0656L8.68867%2011.1281C8.68867%2011.1281%208.71054%2011.1188%208.72617%2011.1188H8.75429C8.75429%2011.1188%208.73554%2011.1312%208.71054%2011.1687C8.68554%2011.2%208.69492%2011.2063%208.67929%2011.2344C8.66054%2011.2656%208.64804%2011.2656%208.62617%2011.2812C8.59492%2011.3063%208.61054%2011.4125%208.61367%2011.4281C8.61992%2011.4437%208.67617%2011.5687%208.67617%2011.6C8.67617%2011.6312%208.68242%2011.7%208.62929%2011.7438C8.59492%2011.775%208.53554%2011.775%208.52304%2011.7812C8.51054%2011.7906%208.48554%2011.8156%208.48554%2011.8688C8.48554%2011.9219%208.50429%2011.9312%208.51679%2011.9437C8.53554%2011.9594%208.55429%2011.95%208.55742%2011.9625C8.56367%2011.9719%208.56367%2011.9781%208.57304%2011.9844C8.57929%2011.9906%208.58242%2011.9969%208.57929%2012.0094C8.57929%2012.0187%208.55429%2012.0437%208.54492%2012.0625L8.51992%2012.1375C8.51992%2012.1437%208.51679%2012.1688%208.52304%2012.1781C8.52304%2012.1781%208.55117%2012.2094%208.53242%2012.2156C8.51992%2012.2219%208.50742%2012.2094%208.50117%2012.2094L8.47304%2012.225C8.46367%2012.2219%208.46367%2012.2156%208.46054%2012.2L8.45742%2012.1781C8.45117%2012.1781%208.44804%2012.1844%208.44492%2012.1938C8.44492%2012.2%208.44492%2012.2188%208.43554%2012.2188C8.42929%2012.2188%208.41992%2012.2063%208.41054%2012.2031C8.40429%2012.2031%208.38554%2012.1969%208.38554%2012.1906C8.38554%2012.1813%208.39804%2012.1625%208.40742%2012.1594C8.41992%2012.1594%208.43242%2012.15%208.42304%2012.1438C8.41367%2012.1375%208.40742%2012.1375%208.40117%2012.1438C8.39492%2012.15%208.37617%2012.1437%208.37929%2012.1375V12.1125C8.37929%2012.1063%208.36679%2012.0969%208.38242%2012.0875C8.40117%2012.0781%208.40742%2012.0937%208.42617%2012.0906C8.44492%2012.0906%208.45117%2012.0812%208.45742%2012.0719C8.46367%2012.0625%208.46367%2012.0406%208.45117%2012.0281C8.43867%2012.0125%208.42929%2012.0125%208.42304%2012.0031L8.41367%2011.975V12.0437L8.39179%2012.0188C8.38242%2012.0094%208.37304%2011.9781%208.37304%2011.9781V12.0188C8.37304%2012.0313%208.38242%2012.0406%208.37929%2012.0437C8.37617%2012.0469%208.35429%2012.0219%208.34804%2012.0188C8.33571%2012.0104%208.3251%2011.9998%208.31679%2011.9875L8.30429%2011.9437C8.30148%2011.9283%208.30148%2011.9124%208.30429%2011.8969L8.31679%2011.8656H8.27304C8.25117%2011.8656%208.23554%2011.8562%208.22617%2011.8719C8.21679%2011.8875%208.21992%2011.9187%208.23242%2011.9594C8.24179%2011.9969%208.24804%2012.0187%208.24492%2012.025C8.23917%2012.0346%208.23176%2012.043%208.22304%2012.05H8.19492C8.1834%2012.0438%208.17051%2012.0406%208.15742%2012.0406H8.11679L8.08242%2012.0312C8.07304%2012.0344%208.05742%2012.0406%208.06367%2012.0531C8.06992%2012.0719%208.05742%2012.075%208.04804%2012.075L8.01992%2012.0688C8.00742%2012.0656%207.99179%2012.0687%207.99492%2012.0562C7.99492%2012.0437%208.00117%2012.0438%208.00742%2012.0344C8.01367%2012.025%208.01367%2012.0188%208.00742%2012.0188H7.98867C7.98242%2012.025%207.97304%2012.0344%207.96367%2012.0312C7.95742%2012.0281%207.95117%2012.0188%207.95117%2012C7.95117%2011.9812%207.92929%2011.9625%207.95117%2011.9656C7.96679%2011.9656%207.99179%2011.9781%207.99492%2011.9656C8.00117%2011.9562%207.99492%2011.9531%207.98867%2011.9437C7.98242%2011.9344%207.96367%2011.9313%207.97929%2011.9219L8.00117%2011.9062C8.00429%2011.9%208.01367%2011.8812%208.02304%2011.8875C8.04179%2011.8937%208.02304%2011.9094%208.04179%2011.9281C8.06054%2011.95%208.07304%2011.9594%208.10429%2011.9531C8.13554%2011.9531%208.14492%2011.9469%208.14492%2011.9375L8.14179%2011.9062V11.875C8.14179%2011.875%208.12929%2011.8844%208.12617%2011.8938L8.11367%2011.9187V11.8562C8.11202%2011.8478%208.10993%2011.8395%208.10742%2011.8313L8.09804%2011.8594L8.09492%2011.8906C8.09492%2011.8906%208.07304%2011.875%208.07929%2011.8438C8.08242%2011.8219%208.07617%2011.7938%208.08242%2011.7812C8.08867%2011.7719%208.10429%2011.7344%208.14492%2011.7312H8.22617L8.28867%2011.7219C8.28867%2011.7219%208.20117%2011.6781%208.17929%2011.6625C8.15546%2011.6449%208.13439%2011.6238%208.11679%2011.6L8.09804%2011.55C8.09804%2011.55%208.08242%2011.55%208.06679%2011.5594C8.05273%2011.5678%208.04008%2011.5783%208.02929%2011.5906L8.00742%2011.6219L8.01054%2011.5844V11.5594C8.01054%2011.5594%207.99804%2011.5969%207.97929%2011.6125L7.93554%2011.6438V11.6188L7.94179%2011.5875C7.94179%2011.5875%207.92929%2011.6125%207.90742%2011.6188C7.88554%2011.6188%207.85117%2011.6187%207.84804%2011.6312C7.84804%2011.6469%207.85429%2011.6625%207.84804%2011.675C7.84804%2011.6844%207.83554%2011.6906%207.83554%2011.6906L7.81054%2011.6781C7.79804%2011.6781%207.78867%2011.6844%207.78867%2011.6844C7.78867%2011.6844%207.77929%2011.6719%207.78242%2011.6625C7.78554%2011.6562%207.80429%2011.6437%207.79804%2011.6375L7.77304%2011.6438C7.76367%2011.6469%207.74804%2011.6531%207.74804%2011.6375C7.74804%2011.625%207.75429%2011.6156%207.74804%2011.6062C7.74804%2011.5969%207.74804%2011.5906%207.75429%2011.5875L7.79179%2011.5844C7.79179%2011.5781%207.78554%2011.5688%207.76679%2011.5656C7.74804%2011.5625%207.74179%2011.55%207.75117%2011.5406C7.76054%2011.5344%207.76054%2011.5312%207.76679%2011.5219C7.76992%2011.5156%207.77304%2011.5%207.78867%2011.5062C7.80429%2011.5156%207.80117%2011.5312%207.81992%2011.5375C7.84094%2011.5408%207.86246%2011.5386%207.88242%2011.5312L7.92929%2011.5L7.97617%2011.4688L7.94492%2011.4437C7.93554%2011.4344%207.92304%2011.4156%207.91367%2011.4125C7.8957%2011.4041%207.87682%2011.3978%207.85742%2011.3938C7.83924%2011.3903%207.82144%2011.3851%207.80429%2011.3781L7.82929%2011.3688C7.83554%2011.3625%207.84804%2011.35%207.85429%2011.35H7.86367H7.81992C7.81054%2011.3469%207.78867%2011.3313%207.77929%2011.3313L7.75429%2011.3344C7.75429%2011.3344%207.77929%2011.3219%207.79804%2011.3187L7.82929%2011.3156C7.82929%2011.3156%207.80117%2011.3063%207.79492%2011.2969L7.77617%2011.2656C7.76992%2011.2625%207.76679%2011.25%207.75742%2011.25L7.72617%2011.2594C7.71367%2011.2594%207.70742%2011.2531%207.70742%2011.2406L7.70429%2011.225C7.69804%2011.2156%207.68554%2011.2%207.69804%2011.1937H7.74179C7.74179%2011.1875%207.72617%2011.175%207.71679%2011.1687C7.70429%2011.1625%207.68554%2011.1531%207.69492%2011.1438L7.71992%2011.1281C7.72617%2011.1188%207.72929%2011.0969%207.74179%2011.1062C7.75429%2011.1125%207.76679%2011.1438%207.77617%2011.1406C7.78554%2011.1406%207.78554%2011.1156%207.78554%2011.1094C7.78554%2011.0969%207.78554%2011.0781%207.79179%2011.0813C7.80117%2011.0813%207.80742%2011.0938%207.82304%2011.0969C7.83554%2011.0969%207.85429%2011.0938%207.85429%2011.1031C7.85429%2011.1125%207.84492%2011.125%207.83554%2011.1344C7.82617%2011.1438%207.82304%2011.1656%207.82617%2011.1781C7.83242%2011.1937%207.84804%2011.2156%207.86367%2011.2219C7.87617%2011.2313%207.90117%2011.2375%207.91679%2011.25C7.93242%2011.2594%207.96992%2011.2875%207.98242%2011.2906L8.00742%2011.3031C8.00742%2011.3031%208.02304%2011.2969%208.04179%2011.2969C8.06367%2011.2969%208.10742%2011.2969%208.12304%2011.2906C8.14179%2011.2844%208.16367%2011.2719%208.15429%2011.2594C8.15117%2011.2406%208.11367%2011.2281%208.11679%2011.2156C8.11679%2011.2031%208.13242%2011.2031%208.15429%2011.2031C8.17929%2011.2031%208.21054%2011.2063%208.21679%2011.1719C8.22304%2011.1406%208.22304%2011.125%208.19179%2011.1156C8.16054%2011.1094%208.13554%2011.1094%208.12929%2011.0844C8.12304%2011.0625%208.11679%2011.0563%208.12304%2011.05C8.13242%2011.0438%208.14179%2011.0406%208.16679%2011.0375C8.19179%2011.0375%208.21679%2011.0375%208.22617%2011.0312C8.23242%2011.025%208.23554%2011.0094%208.24492%2011.0031C8.25429%2010.9969%208.28867%2010.9906%208.28867%2010.9906C8.28867%2010.9906%208.33242%2011.0125%208.37304%2011.0437C8.39812%2011.0632%208.42116%2011.0852%208.44179%2011.1094Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.12853%2011.0884L8.12207%2011.0691V11.0594C8.12207%2011.0594%208.1479%2011.0594%208.14467%2011.0691C8.14467%2011.0755%208.13821%2011.0755%208.13499%2011.0787L8.12853%2011.0884Z'%20fill='black'/%3e%3cpath%20d='M8.12853%2011.0884L8.12207%2011.0691V11.0594C8.12207%2011.0594%208.1479%2011.0594%208.14467%2011.0691C8.14467%2011.0755%208.13821%2011.0755%208.13499%2011.0787L8.12853%2011.0884Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.25098%2011.0437V11.0312C8.25098%2011.0312%208.27285%2011.0313%208.28223%2011.0406C8.29785%2011.0531%208.31035%2011.0719%208.31035%2011.0719L8.28535%2011.0594H8.26973L8.26035%2011.0563V11.0469H8.25098'%20fill='black'/%3e%3cpath%20d='M8.25098%2011.0437V11.0312C8.25098%2011.0312%208.27285%2011.0313%208.28223%2011.0406C8.29785%2011.0531%208.31035%2011.0719%208.31035%2011.0719L8.28535%2011.0594H8.26973L8.26035%2011.0563V11.0469H8.25098V11.0437Z'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M8.41543%2011.2281L8.40294%2011.2062C8.39969%2011.2022%208.39655%2011.198%208.39355%2011.1937'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M7.79395%2011.0813C7.79395%2011.0813%207.80956%2011.0938%207.81894%2011.0938H7.84395C7.84395%2011.0938%207.85019%2011.0781%207.84706%2011.0688C7.84081%2011.0313%207.80957%2011.025%207.80957%2011.025C7.80957%2011.025%207.81895%2011.0469%207.8127%2011.0563C7.80866%2011.066%207.80221%2011.0746%207.79395%2011.0813Z'%20fill='%23DB4446'/%3e%3cpath%20d='M7.79395%2011.0813C7.79395%2011.0813%207.80956%2011.0938%207.81894%2011.0938H7.84395C7.84395%2011.0938%207.85019%2011.0781%207.84706%2011.0688C7.84081%2011.0313%207.80957%2011.025%207.80957%2011.025C7.80957%2011.025%207.81895%2011.0469%207.8127%2011.0563C7.80866%2011.066%207.80221%2011.0746%207.79395%2011.0813Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.72597%2011.1125C7.72597%2011.1125%207.71347%2011.0906%207.68535%2011.0938C7.66035%2011.0938%207.6416%2011.1188%207.6416%2011.1188H7.6791C7.68847%2011.1281%207.6916%2011.15%207.6916%2011.15L7.71347%2011.1312C7.71795%2011.1252%207.72212%2011.119%207.72597%2011.1125Z'%20fill='%23DB4446'/%3e%3cpath%20d='M7.72597%2011.1125C7.72597%2011.1125%207.71347%2011.0906%207.68535%2011.0938C7.66035%2011.0938%207.6416%2011.1188%207.6416%2011.1188H7.6791C7.68847%2011.1281%207.6916%2011.15%207.6916%2011.15L7.71347%2011.1312C7.71795%2011.1252%207.72212%2011.119%207.72597%2011.1125Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.69371%2011.2062C7.69371%2011.2062%207.66871%2011.2094%207.65621%2011.225C7.64371%2011.2406%207.64683%2011.2656%207.64683%2011.2656C7.64683%2011.2656%207.65933%2011.25%207.67496%2011.25L7.70621%2011.2562L7.70308%2011.2312L7.69371%2011.2062Z'%20fill='%23DB4446'/%3e%3cpath%20d='M7.69371%2011.2062C7.69371%2011.2062%207.66871%2011.2094%207.65621%2011.225C7.64371%2011.2406%207.64683%2011.2656%207.64683%2011.2656C7.64683%2011.2656%207.65933%2011.25%207.67496%2011.25L7.70621%2011.2562L7.70308%2011.2312L7.69371%2011.2062Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.13116%2011.2036L8.14084%2011.1875L8.15053%2011.2036H8.12793'%20fill='black'/%3e%3cpath%20d='M8.13116%2011.2036L8.14084%2011.1875L8.15053%2011.2036H8.12793'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.15753%2011.2036L8.16721%2011.1875L8.18013%2011.2036H8.1543'%20fill='black'/%3e%3cpath%20d='M8.15753%2011.2036L8.16721%2011.1875L8.18013%2011.2036H8.1543'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.14355%2011.1031L8.16939%2011.1128L8.14678%2011.1257L8.14355%2011.1064'%20fill='black'/%3e%3cpath%20d='M8.14355%2011.1031L8.16939%2011.1128L8.14678%2011.1257L8.14355%2011.1064'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.17188%2011.1125L8.19448%2011.119L8.17833%2011.1319L8.17188%2011.1125Z'%20fill='black'/%3e%3cpath%20d='M8.17188%2011.1125L8.19448%2011.119L8.17833%2011.1319L8.17188%2011.1125Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.10054%2011.5531L8.14117%2011.5281C8.15336%2011.5196%208.16394%2011.5091%208.17242%2011.4969M8.00679%2011.3031C8.00679%2011.3031%207.98492%2011.3094%207.97554%2011.3219C7.96304%2011.3375%207.96617%2011.3531%207.96617%2011.3531C7.96617%2011.3531%207.98492%2011.3375%208.01304%2011.3437L8.05054%2011.3531L8.09117%2011.3437C8.09117%2011.3437%208.06929%2011.3687%208.06929%2011.3844L8.07554%2011.4187C8.07554%2011.4406%208.05679%2011.4687%208.05679%2011.4687L8.08804%2011.4594C8.10728%2011.4548%208.12537%2011.4463%208.14117%2011.4344L8.16929%2011.4031C8.16929%2011.4031%208.16304%2011.4344%208.16929%2011.4469L8.17554%2011.4969L8.20054%2011.4781C8.20679%2011.475%208.22242%2011.4656%208.22867%2011.4562L8.23804%2011.425C8.23804%2011.425%208.23804%2011.45%208.25054%2011.4656L8.26929%2011.5156C8.26929%2011.5156%208.27867%2011.4906%208.28804%2011.4812C8.29742%2011.4687%208.30992%2011.4562%208.30992%2011.45C8.30987%2011.4405%208.30882%2011.4311%208.30679%2011.4219L8.31929%2011.4469L8.00679%2011.3031ZM7.97554%2011.4656C7.97554%2011.4656%207.99117%2011.4406%208.00679%2011.4344L8.04117%2011.4094L8.06929%2011.3969L7.97554%2011.4656Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.76816%2011.5125C7.76816%2011.5125%207.75566%2011.4969%207.73379%2011.5031C7.71191%2011.5031%207.69629%2011.5313%207.69629%2011.5313C7.69629%2011.5313%207.71504%2011.525%207.72754%2011.5281C7.74004%2011.5313%207.74629%2011.5406%207.74629%2011.5406L7.75879%2011.5281L7.76816%2011.5094'%20fill='%23DB4446'/%3e%3cpath%20d='M7.76816%2011.5125C7.76816%2011.5125%207.75566%2011.4969%207.73379%2011.5031C7.71191%2011.5031%207.69629%2011.5313%207.69629%2011.5313C7.69629%2011.5313%207.71504%2011.525%207.72754%2011.5281C7.74004%2011.5313%207.74629%2011.5406%207.74629%2011.5406L7.75879%2011.5281L7.76816%2011.5094V11.5125Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.74434%2011.6C7.74434%2011.6%207.72559%2011.6%207.70996%2011.6094C7.69434%2011.6219%207.69434%2011.6469%207.69434%2011.6469C7.69434%2011.6469%207.70684%2011.6344%207.71934%2011.6375L7.74746%2011.6437V11.625C7.75371%2011.6125%207.74434%2011.6%207.74434%2011.6Z'%20fill='%23DB4446'/%3e%3cpath%20d='M7.74434%2011.6C7.74434%2011.6%207.72559%2011.6%207.70996%2011.6094C7.69434%2011.6219%207.69434%2011.6469%207.69434%2011.6469C7.69434%2011.6469%207.70684%2011.6344%207.71934%2011.6375L7.74746%2011.6437V11.625C7.75371%2011.6125%207.74434%2011.6%207.74434%2011.6Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.78809%2011.6813C7.78809%2011.6813%207.78809%2011.7063%207.79746%2011.7219C7.80996%2011.7375%207.83184%2011.7375%207.83184%2011.7375L7.82246%2011.7156C7.82246%2011.7031%207.83184%2011.6906%207.83184%2011.6906C7.83184%2011.6906%207.82246%2011.6813%207.80996%2011.6813H7.78809Z'%20fill='%23DB4446'/%3e%3cpath%20d='M8.28809%2011.7219C8.28809%2011.7219%208.35059%2011.7594%208.34746%2011.7906C8.34746%2011.8219%208.31621%2011.8625%208.31621%2011.8625M7.78809%2011.6813C7.78809%2011.6813%207.78809%2011.7063%207.79746%2011.7219C7.80996%2011.7375%207.83184%2011.7375%207.83184%2011.7375L7.82246%2011.7156C7.82246%2011.7031%207.83184%2011.6906%207.83184%2011.6906C7.83184%2011.6906%207.82246%2011.6813%207.80996%2011.6813H7.78809Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.00684%2011.8938C8.00684%2011.8938%207.99434%2011.875%207.97246%2011.875C7.95059%2011.875%207.92871%2011.8969%207.92871%2011.8969C7.92871%2011.8969%207.95371%2011.8938%207.95996%2011.9031L7.97559%2011.9219L7.99121%2011.9125L8.00684%2011.8938Z'%20fill='%23DB4446'/%3e%3cpath%20d='M8.00684%2011.8938C8.00684%2011.8938%207.99434%2011.875%207.97246%2011.875C7.95059%2011.875%207.92871%2011.8969%207.92871%2011.8969C7.92871%2011.8969%207.95371%2011.8938%207.95996%2011.9031L7.97559%2011.9219L7.99121%2011.9125L8.00684%2011.8938Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.94394%2011.9781C7.94394%2011.9781%207.9127%2011.975%207.9002%2011.9875C7.8877%2012.0031%207.8877%2012.0281%207.8877%2012.0281C7.8877%2012.0281%207.90645%2012.0094%207.91895%2012.0125C7.93457%2012.0125%207.9502%2012.0219%207.9502%2012.0219V12L7.94081%2011.9781'%20fill='%23DB4446'/%3e%3cpath%20d='M7.94394%2011.9781C7.94394%2011.9781%207.9127%2011.975%207.9002%2011.9875C7.8877%2012.0031%207.8877%2012.0281%207.8877%2012.0281C7.8877%2012.0281%207.90645%2012.0094%207.91895%2012.0125C7.93457%2012.0125%207.9502%2012.0219%207.9502%2012.0219V12L7.94081%2011.9781H7.94394Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.00026%2012.0656C8.00026%2012.0656%207.99089%2012.0875%208.00026%2012.1C8.00963%2012.1156%208.03151%2012.125%208.03151%2012.125C8.03151%2012.125%208.02213%2012.1125%208.02526%2012.1C8.02838%2012.0906%208.04713%2012.075%208.04713%2012.075L8.00339%2012.0687'%20fill='%23DB4446'/%3e%3cpath%20d='M8.00026%2012.0656C8.00026%2012.0656%207.99089%2012.0875%208.00026%2012.1C8.00963%2012.1156%208.03151%2012.125%208.03151%2012.125C8.03151%2012.125%208.02213%2012.1125%208.02526%2012.1C8.02838%2012.0906%208.04713%2012.075%208.04713%2012.075L8.00339%2012.0687L8.00026%2012.0656Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.37403%2012.1031C8.37403%2012.1031%208.34903%2012.0969%208.33652%2012.1031C8.3209%2012.1125%208.31152%2012.1469%208.31152%2012.1469C8.31152%2012.1469%208.3334%2012.1281%208.34903%2012.1312C8.36465%2012.1312%208.38028%2012.1406%208.38028%2012.1406V12.1156L8.37403%2012.1031Z'%20fill='%23DB4446'/%3e%3cpath%20d='M8.37403%2012.1031C8.37403%2012.1031%208.34903%2012.0969%208.33652%2012.1031C8.3209%2012.1125%208.31152%2012.1469%208.31152%2012.1469C8.31152%2012.1469%208.3334%2012.1281%208.34903%2012.1312C8.36465%2012.1312%208.38028%2012.1406%208.38028%2012.1406V12.1156L8.37403%2012.1031Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.3878%2012.1937C8.3878%2012.1937%208.36905%2012.2125%208.3753%2012.2281L8.39405%2012.2594C8.39405%2012.2594%208.39405%2012.2375%208.4003%2012.2281L8.43155%2012.2187L8.40967%2012.2031C8.40231%2012.2002%208.39501%2012.197%208.3878%2012.1937Z'%20fill='%23DB4446'/%3e%3cpath%20d='M8.3878%2012.1937C8.3878%2012.1937%208.36905%2012.2125%208.3753%2012.2281L8.39405%2012.2594C8.39405%2012.2594%208.39405%2012.2375%208.4003%2012.2281L8.43155%2012.2187L8.40967%2012.2031C8.40231%2012.2002%208.39501%2012.197%208.3878%2012.1937Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.48228%2012.2188C8.48228%2012.2188%208.47291%2012.2438%208.48853%2012.2594C8.50728%2012.275%208.51978%2012.275%208.51978%2012.275C8.51978%2012.275%208.51041%2012.2531%208.51353%2012.2406C8.51666%2012.225%208.52916%2012.2188%208.52916%2012.2188L8.50416%2012.2125L8.48228%2012.2219'%20fill='%23DB4446'/%3e%3cpath%20d='M8.48228%2012.2188C8.48228%2012.2188%208.47291%2012.2438%208.48853%2012.2594C8.50728%2012.275%208.51978%2012.275%208.51978%2012.275C8.51978%2012.275%208.51041%2012.2531%208.51353%2012.2406C8.51666%2012.225%208.52916%2012.2188%208.52916%2012.2188L8.50416%2012.2125L8.48228%2012.2219V12.2188Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.52598%2013.8875C7.58848%2013.9062%207.61973%2013.95%207.61973%2014.0062C7.61973%2014.0781%207.55098%2014.1312%207.46348%2014.1312C7.36973%2014.1312%207.29785%2014.0781%207.29785%2014.0062C7.29785%2013.9531%207.3291%2013.8937%207.3916%2013.8875L7.38535%2013.875L7.36348%2013.8531H7.40098L7.42598%2013.8687L7.4416%2013.8469C7.45098%2013.8344%207.46035%2013.8312%207.46035%2013.8312L7.4791%2013.85L7.48848%2013.8656L7.51035%2013.8531L7.53535%2013.8437C7.53535%2013.8437%207.53535%2013.8562%207.5291%2013.8656L7.52598%2013.8875Z'%20fill='%23FFD691'/%3e%3cpath%20d='M7.52598%2013.8875C7.58848%2013.9062%207.61973%2013.95%207.61973%2014.0062C7.61973%2014.0781%207.55098%2014.1312%207.46348%2014.1312C7.36973%2014.1312%207.29785%2014.0781%207.29785%2014.0062C7.29785%2013.9531%207.3291%2013.8937%207.3916%2013.8875L7.38535%2013.875L7.36348%2013.8531H7.40098L7.42598%2013.8687L7.4416%2013.8469C7.45098%2013.8344%207.46035%2013.8312%207.46035%2013.8312L7.4791%2013.85L7.48848%2013.8656L7.51035%2013.8531L7.53535%2013.8437C7.53535%2013.8437%207.53535%2013.8562%207.5291%2013.8656L7.52598%2013.8875Z'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M7.44727%2014.2094C7.44727%2014.2094%207.32851%2014.1281%207.27538%2014.1156C7.21288%2014.1031%207.13477%2014.1156%207.10352%2014.1156C7.10352%2014.1156%207.14102%2014.1406%207.15977%2014.1594C7.17539%2014.175%207.23164%2014.2063%207.26289%2014.2156C7.35664%2014.2406%207.45039%2014.2094%207.45039%2014.2094H7.44727ZM7.48164%2014.2156C7.48164%2014.2156%207.55664%2014.1375%207.63789%2014.125C7.73164%2014.1125%207.79414%2014.1344%207.83164%2014.1438L7.78477%2014.1688C7.76914%2014.1781%207.72227%2014.2156%207.65977%2014.2188C7.59727%2014.2188%207.52227%2014.2094%207.50977%2014.2125L7.48164%2014.2156Z'%20fill='%23058E6E'/%3e%3cpath%20d='M7.48164%2014.2156C7.48164%2014.2156%207.55664%2014.1375%207.63789%2014.125C7.73164%2014.1125%207.79414%2014.1344%207.83164%2014.1438L7.78477%2014.1688C7.76914%2014.1781%207.72227%2014.2156%207.65977%2014.2188C7.59727%2014.2188%207.52227%2014.2094%207.50977%2014.2125L7.48164%2014.2156ZM7.44727%2014.2094C7.44727%2014.2094%207.32851%2014.1281%207.27538%2014.1156C7.21288%2014.1031%207.13477%2014.1156%207.10352%2014.1156C7.10352%2014.1156%207.14102%2014.1406%207.15977%2014.1594C7.17539%2014.175%207.23164%2014.2063%207.26289%2014.2156C7.35664%2014.2406%207.45039%2014.2094%207.45039%2014.2094H7.44727Z'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M7.4592%2014.1187C7.44375%2014.1047%207.43141%2014.0876%207.42296%2014.0685C7.41452%2014.0494%207.41016%2014.0287%207.41016%2014.0078C7.41016%2013.9869%207.41452%2013.9663%207.42296%2013.9472C7.43141%2013.9281%207.44375%2013.9109%207.4592%2013.8969C7.47406%2013.9109%207.48588%2013.9279%207.49394%2013.9467C7.502%2013.9655%207.50613%2013.9858%207.50607%2014.0062C7.50637%2014.0272%207.50237%2014.048%207.49431%2014.0674C7.48625%2014.0867%207.47429%2014.1042%207.4592%2014.1187Z'%20fill='%23AD1519'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M7.42871%2014.2812C7.42871%2014.2812%207.44746%2014.2344%207.44746%2014.1969L7.44434%2014.1312H7.46934C7.46934%2014.1312%207.47871%2014.1656%207.47871%2014.1937L7.47559%2014.2687L7.45371%2014.2719L7.42871%2014.2812Z'%20fill='%23058E6E'/%3e%3cpath%20d='M7.42871%2014.2812C7.42871%2014.2812%207.44746%2014.2344%207.44746%2014.1969L7.44434%2014.1312H7.46934C7.46934%2014.1312%207.47871%2014.1656%207.47871%2014.1937L7.47559%2014.2687L7.45371%2014.2719L7.42871%2014.2812Z'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M8.93848%209.95935C8.93848%209.94373%208.9541%209.9281%208.96973%209.9281C8.98848%209.9281%209.0041%209.94373%209.0041%209.95935C9.0041%209.9781%208.98848%209.9906%208.97285%209.9906C8.96456%209.9906%208.95662%209.98731%208.95075%209.98145C8.94489%209.97559%208.9416%209.96764%208.9416%209.95935'%20fill='white'/%3e%3cpath%20d='M8.93848%209.95935C8.93848%209.94373%208.9541%209.9281%208.96973%209.9281C8.98848%209.9281%209.0041%209.94373%209.0041%209.95935C9.0041%209.9781%208.98848%209.9906%208.97285%209.9906C8.96456%209.9906%208.95662%209.98731%208.95075%209.98145C8.94489%209.97559%208.9416%209.96764%208.9416%209.95935H8.93848Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.98242%209.88123C8.98242%209.86248%208.99805%209.84998%209.0168%209.84998C9.0355%209.84998%209.048%209.86248%209.048%209.88123C9.048%209.89998%209.0355%209.91248%209.0168%209.91248C9.0085%209.91248%209.0006%209.90919%208.9947%209.90333C8.98884%209.89747%208.98555%209.88952%208.98555%209.88123'%20fill='white'/%3e%3cpath%20d='M8.98242%209.88123C8.98242%209.86248%208.99805%209.84998%209.0168%209.84998C9.0355%209.84998%209.048%209.86248%209.048%209.88123C9.048%209.89998%209.0355%209.91248%209.0168%209.91248C9.0085%209.91248%209.0006%209.90919%208.9947%209.90333C8.98884%209.89747%208.98555%209.88952%208.98555%209.88123H8.98242Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.0127%209.78748C9.0127%209.77185%209.02829%209.75623%209.04389%209.75623C9.06269%209.75623%209.0783%209.77185%209.0783%209.78748C9.0783%209.8031%209.0627%209.81873%209.0471%209.81873C9.0427%209.81917%209.03829%209.81868%209.03419%209.81731C9.02999%209.81594%209.02619%209.81369%209.02289%209.81075C9.01969%209.8078%209.0171%209.80421%209.0153%209.80019C9.0136%209.79618%209.0127%209.79186%209.0127%209.78748Z'%20fill='white'/%3e%3cpath%20d='M9.0127%209.78748C9.0127%209.77185%209.02829%209.75623%209.04389%209.75623C9.06269%209.75623%209.0783%209.77185%209.0783%209.78748C9.0783%209.8031%209.0627%209.81873%209.0471%209.81873C9.0427%209.81917%209.03829%209.81868%209.03419%209.81731C9.02999%209.81594%209.02619%209.81369%209.02289%209.81075C9.01969%209.8078%209.0171%209.80421%209.0153%209.80019C9.0136%209.79618%209.0127%209.79186%209.0127%209.78748Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.0146%209.6875C9.0146%209.67188%209.0303%209.65625%209.0459%209.65625C9.0646%209.65625%209.0803%209.67188%209.0803%209.6875C9.0803%209.70625%209.0646%209.71875%209.049%209.71875C9.0407%209.71875%209.0328%209.71546%209.0269%209.7096C9.0211%209.70374%209.0178%209.69579%209.0178%209.6875'%20fill='white'/%3e%3cpath%20d='M9.0146%209.6875C9.0146%209.67188%209.0303%209.65625%209.0459%209.65625C9.0646%209.65625%209.0803%209.67188%209.0803%209.6875C9.0803%209.70625%209.0646%209.71875%209.049%209.71875C9.0407%209.71875%209.0328%209.71546%209.0269%209.7096C9.0211%209.70374%209.0178%209.69579%209.0178%209.6875H9.0146Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.99121%209.59375C8.99121%209.575%209.0068%209.5625%209.0225%209.5625C9.0443%209.5625%209.06%209.575%209.06%209.59375C9.06%209.6125%209.0443%209.625%209.0256%209.625C9.0173%209.625%209.0093%209.62171%209.0035%209.61585C8.99763%209.60999%208.99434%209.60204%208.99434%209.59375'%20fill='white'/%3e%3cpath%20d='M8.99121%209.59375C8.99121%209.575%209.0068%209.5625%209.0225%209.5625C9.0443%209.5625%209.06%209.575%209.06%209.59375C9.06%209.6125%209.0443%209.625%209.0256%209.625C9.0173%209.625%209.0093%209.62171%209.0035%209.61585C8.99763%209.60999%208.99434%209.60204%208.99434%209.59375H8.99121Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.94043%209.50311C8.94043%209.48749%208.95605%209.47186%208.97168%209.47186C8.99355%209.47186%209.0061%209.48749%209.0061%209.50311C9.0061%209.51874%208.99355%209.53436%208.9748%209.53436C8.96652%209.53436%208.95857%209.53107%208.95271%209.52521C8.94685%209.51935%208.94355%209.5114%208.94355%209.50311'%20fill='white'/%3e%3cpath%20d='M8.94043%209.50311C8.94043%209.48749%208.95605%209.47186%208.97168%209.47186C8.99355%209.47186%209.0061%209.48749%209.0061%209.50311C9.0061%209.51874%208.99355%209.53436%208.9748%209.53436C8.96652%209.53436%208.95857%209.53107%208.95271%209.52521C8.94685%209.51935%208.94355%209.5114%208.94355%209.50311H8.94043Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.875%209.43127C8.875%209.41252%208.8875%209.40002%208.90625%209.40002C8.925%209.40002%208.9375%209.41252%208.9375%209.43127C8.9375%209.45002%208.925%209.46252%208.90625%209.46252C8.89796%209.46252%208.89001%209.45923%208.88415%209.45337C8.87829%209.44751%208.875%209.43956%208.875%209.43127Z'%20fill='white'/%3e%3cpath%20d='M8.875%209.43127C8.875%209.41252%208.8875%209.40002%208.90625%209.40002C8.925%209.40002%208.9375%209.41252%208.9375%209.43127C8.9375%209.45002%208.925%209.46252%208.90625%209.46252C8.89796%209.46252%208.89001%209.45923%208.88415%209.45337C8.87829%209.44751%208.875%209.43956%208.875%209.43127Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.79395%209.36877C8.79395%209.35315%208.80956%209.33752%208.82831%209.33752C8.8366%209.33752%208.84456%209.34081%208.85042%209.34667C8.85628%209.35253%208.85956%209.36048%208.85956%209.36877C8.85956%209.37706%208.85628%209.38501%208.85042%209.39087C8.84456%209.39673%208.8366%209.40002%208.82831%209.40002C8.80956%209.40002%208.79706%209.38752%208.79706%209.36877'%20fill='white'/%3e%3cpath%20d='M8.79395%209.36877C8.79395%209.35315%208.80956%209.33752%208.82831%209.33752C8.8366%209.33752%208.84456%209.34081%208.85042%209.34667C8.85628%209.35253%208.85956%209.36048%208.85956%209.36877C8.85956%209.37706%208.85628%209.38501%208.85042%209.39087C8.84456%209.39673%208.8366%209.40002%208.82831%209.40002C8.80956%209.40002%208.79706%209.38752%208.79706%209.36877H8.79395Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.7041%209.3219C8.7041%209.30315%208.7166%209.29065%208.73535%209.29065C8.7541%209.29065%208.7666%209.30315%208.7666%209.3219C8.7666%209.34065%208.7541%209.35315%208.73535%209.35315C8.72706%209.35315%208.71911%209.34985%208.71325%209.34399C8.70739%209.33813%208.7041%209.33018%208.7041%209.3219Z'%20fill='white'/%3e%3cpath%20d='M8.7041%209.3219C8.7041%209.30315%208.7166%209.29065%208.73535%209.29065C8.7541%209.29065%208.7666%209.30315%208.7666%209.3219C8.7666%209.34065%208.7541%209.35315%208.73535%209.35315C8.72706%209.35315%208.71911%209.34985%208.71325%209.34399C8.70739%209.33813%208.7041%209.33018%208.7041%209.3219Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.60352%209.28436C8.60352%209.26874%208.61914%209.25311%208.63789%209.25311C8.64618%209.25311%208.65413%209.25641%208.65999%209.26227C8.66585%209.26813%208.66914%209.27608%208.66914%209.28436C8.66914%209.29265%208.66585%209.3006%208.65999%209.30646C8.65413%209.31232%208.64618%209.31561%208.63789%209.31561C8.6296%209.31561%208.62165%209.31232%208.61579%209.30646C8.60993%209.3006%208.60664%209.29265%208.60664%209.28436'%20fill='white'/%3e%3cpath%20d='M8.60352%209.28436C8.60352%209.26874%208.61914%209.25311%208.63789%209.25311C8.64618%209.25311%208.65413%209.25641%208.65999%209.26227C8.66585%209.26813%208.66914%209.27608%208.66914%209.28436C8.66914%209.29265%208.66585%209.3006%208.65999%209.30646C8.65413%209.31232%208.64618%209.31561%208.63789%209.31561C8.6296%209.31561%208.62165%209.31232%208.61579%209.30646C8.60993%209.3006%208.60664%209.29265%208.60664%209.28436H8.60352Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.49707%209.26562C8.49707%209.25%208.50957%209.23438%208.52832%209.23438C8.54707%209.23438%208.55957%209.25%208.55957%209.26562C8.55957%209.28125%208.54707%209.29688%208.52832%209.29688C8.52003%209.29688%208.51208%209.29357%208.50622%209.28771C8.50036%209.28185%208.49707%209.27391%208.49707%209.26562Z'%20fill='white'/%3e%3cpath%20d='M8.49707%209.26562C8.49707%209.25%208.50957%209.23438%208.52832%209.23438C8.54707%209.23438%208.55957%209.25%208.55957%209.26562C8.55957%209.28125%208.54707%209.29688%208.52832%209.29688C8.52003%209.29688%208.51208%209.29357%208.50622%209.28771C8.50036%209.28185%208.49707%209.27391%208.49707%209.26562Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.39355%209.2594C8.39355%209.24377%208.40605%209.22815%208.4248%209.22815C8.44355%209.22815%208.45605%209.24377%208.45605%209.2594C8.45605%209.27502%208.44355%209.29065%208.4248%209.29065C8.41652%209.29065%208.40857%209.28735%208.40271%209.28149C8.39685%209.27563%208.39355%209.26768%208.39355%209.2594Z'%20fill='white'/%3e%3cpath%20d='M8.39355%209.2594C8.39355%209.24377%208.40605%209.22815%208.4248%209.22815C8.44355%209.22815%208.45605%209.24377%208.45605%209.2594C8.45605%209.27502%208.44355%209.29065%208.4248%209.29065C8.41652%209.29065%208.40857%209.28735%208.40271%209.28149C8.39685%209.27563%208.39355%209.26768%208.39355%209.2594Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.29102%209.26562C8.29102%209.24687%208.30664%209.23438%208.32227%209.23438C8.34414%209.23438%208.35664%209.24687%208.35664%209.26562C8.35664%209.28438%208.34414%209.29688%208.32539%209.29688C8.3171%209.29688%208.30915%209.29357%208.30329%209.28771C8.29743%209.28185%208.29414%209.27391%208.29414%209.26562'%20fill='white'/%3e%3cpath%20d='M8.29102%209.26562C8.29102%209.24687%208.30664%209.23438%208.32227%209.23438C8.34414%209.23438%208.35664%209.24687%208.35664%209.26562C8.35664%209.28438%208.34414%209.29688%208.32539%209.29688C8.3171%209.29688%208.30915%209.29357%208.30329%209.28771C8.29743%209.28185%208.29414%209.27391%208.29414%209.26562H8.29102Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.19141%209.26562C8.19141%209.24687%208.20703%209.23438%208.22265%209.23438C8.2414%209.23438%208.25703%209.24687%208.25703%209.26562C8.25703%209.28438%208.2414%209.29688%208.22578%209.29688C8.22142%209.29732%208.21702%209.29682%208.21286%209.29545C8.2087%209.29408%208.20488%209.29185%208.20163%209.28891C8.19839%209.28596%208.19581%209.28236%208.19405%209.27835C8.19228%209.27434%208.19138%209.27%208.19141%209.26562Z'%20fill='white'/%3e%3cpath%20d='M8.19141%209.26562C8.19141%209.24687%208.20703%209.23438%208.22265%209.23438C8.2414%209.23438%208.25703%209.24687%208.25703%209.26562C8.25703%209.28438%208.2414%209.29688%208.22578%209.29688C8.22142%209.29732%208.21702%209.29682%208.21286%209.29545C8.2087%209.29408%208.20488%209.29185%208.20163%209.28891C8.19839%209.28596%208.19581%209.28236%208.19405%209.27835C8.19228%209.27434%208.19138%209.27%208.19141%209.26562Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.24023%209.34998C8.24023%209.33435%208.25586%209.31873%208.27148%209.31873C8.29336%209.31873%208.30586%209.33435%208.30586%209.34998C8.30586%209.3656%208.29336%209.38123%208.27461%209.38123C8.26632%209.38123%208.25837%209.37794%208.25251%209.37208C8.24665%209.36622%208.24336%209.35827%208.24336%209.34998H8.24023ZM8.26211%209.44685C8.26211%209.4281%208.27461%209.4156%208.29336%209.4156C8.31211%209.4156%208.32461%209.4281%208.32461%209.44685C8.32461%209.46248%208.31211%209.4781%208.29336%209.4781C8.28507%209.4781%208.27713%209.47481%208.27127%209.46895C8.26541%209.46309%208.26211%209.45514%208.26211%209.44685ZM8.26211%209.5406C8.26211%209.52498%208.28086%209.50935%208.29648%209.50935C8.30477%209.50935%208.31272%209.51265%208.31858%209.51851C8.32444%209.52437%208.32773%209.53232%208.32773%209.5406C8.32773%209.54889%208.32444%209.55684%208.31858%209.5627C8.31272%209.56856%208.30477%209.57185%208.29648%209.57185C8.2882%209.57185%208.28025%209.56856%208.27439%209.5627C8.26853%209.55684%208.26523%209.54889%208.26523%209.5406H8.26211ZM8.23398%209.6281C8.23398%209.61248%208.24961%209.59685%208.26523%209.59685C8.28711%209.59685%208.29961%209.61248%208.29961%209.6281C8.29961%209.64685%208.28711%209.65935%208.26836%209.65935C8.26007%209.65935%208.25212%209.65606%208.24626%209.6502C8.2404%209.64434%208.23711%209.63639%208.23711%209.6281H8.23398ZM8.17773%209.70934C8.17773%209.69372%208.19336%209.67809%208.20898%209.67809C8.23086%209.67809%208.24648%209.69372%208.24648%209.70934C8.24648%209.72497%208.23086%209.74059%208.21211%209.74059C8.19336%209.74059%208.18086%209.72809%208.18086%209.70934'%20fill='white'/%3e%3cpath%20d='M8.17773%209.70934C8.17773%209.69372%208.19336%209.67809%208.20898%209.67809C8.23086%209.67809%208.24648%209.69372%208.24648%209.70934C8.24648%209.72497%208.23086%209.74059%208.21211%209.74059C8.19336%209.74059%208.18086%209.72809%208.18086%209.70934M8.24023%209.34998C8.24023%209.33435%208.25586%209.31873%208.27148%209.31873C8.29336%209.31873%208.30586%209.33435%208.30586%209.34998C8.30586%209.3656%208.29336%209.38123%208.27461%209.38123C8.26632%209.38123%208.25837%209.37794%208.25251%209.37208C8.24665%209.36622%208.24336%209.35827%208.24336%209.34998H8.24023ZM8.26211%209.44685C8.26211%209.4281%208.27461%209.4156%208.29336%209.4156C8.31211%209.4156%208.32461%209.4281%208.32461%209.44685C8.32461%209.46248%208.31211%209.4781%208.29336%209.4781C8.28507%209.4781%208.27713%209.47481%208.27127%209.46895C8.26541%209.46309%208.26211%209.45514%208.26211%209.44685ZM8.26211%209.5406C8.26211%209.52498%208.28086%209.50935%208.29648%209.50935C8.30477%209.50935%208.31272%209.51265%208.31858%209.51851C8.32444%209.52437%208.32773%209.53232%208.32773%209.5406C8.32773%209.54889%208.32444%209.55684%208.31858%209.5627C8.31272%209.56856%208.30477%209.57185%208.29648%209.57185C8.2882%209.57185%208.28025%209.56856%208.27439%209.5627C8.26853%209.55684%208.26523%209.54889%208.26523%209.5406H8.26211ZM8.23398%209.6281C8.23398%209.61248%208.24961%209.59685%208.26523%209.59685C8.28711%209.59685%208.29961%209.61248%208.29961%209.6281C8.29961%209.64685%208.28711%209.65935%208.26836%209.65935C8.26007%209.65935%208.25212%209.65606%208.24626%209.6502C8.2404%209.64434%208.23711%209.63639%208.23711%209.6281H8.23398Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.11328%209.20312C8.11328%209.1875%208.12891%209.17188%208.14766%209.17188C8.15594%209.17188%208.16389%209.17517%208.16975%209.18103C8.17561%209.18689%208.17891%209.19484%208.17891%209.20312C8.17891%209.21141%208.17561%209.21935%208.16975%209.22521C8.16389%209.23107%208.15594%209.23438%208.14766%209.23438C8.13937%209.23438%208.13142%209.23107%208.12556%209.22521C8.1197%209.21935%208.11641%209.21141%208.11641%209.20312'%20fill='white'/%3e%3cpath%20d='M8.11328%209.20312C8.11328%209.1875%208.12891%209.17188%208.14766%209.17188C8.15594%209.17188%208.16389%209.17517%208.16975%209.18103C8.17561%209.18689%208.17891%209.19484%208.17891%209.20312C8.17891%209.21141%208.17561%209.21935%208.16975%209.22521C8.16389%209.23107%208.15594%209.23438%208.14766%209.23438C8.13937%209.23438%208.13142%209.23107%208.12556%209.22521C8.1197%209.21935%208.11641%209.21141%208.11641%209.20312H8.11328Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.02539%209.15625C8.02539%209.1375%208.03789%209.125%208.05664%209.125C8.07539%209.125%208.08789%209.1375%208.08789%209.15625C8.08789%209.175%208.07539%209.1875%208.05664%209.1875C8.04835%209.1875%208.0404%209.18421%208.03454%209.17835C8.02868%209.17249%208.02539%209.16454%208.02539%209.15625Z'%20fill='white'/%3e%3cpath%20d='M8.02539%209.15625C8.02539%209.1375%208.03789%209.125%208.05664%209.125C8.07539%209.125%208.08789%209.1375%208.08789%209.15625C8.08789%209.175%208.07539%209.1875%208.05664%209.1875C8.04835%209.1875%208.0404%209.18421%208.03454%209.17835C8.02868%209.17249%208.02539%209.16454%208.02539%209.15625Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.9248%209.125C7.9248%209.10625%207.94044%209.09375%207.95607%209.09375C7.97482%209.09375%207.99043%209.10625%207.99043%209.125C7.99043%209.14062%207.97481%209.15625%207.95918%209.15625C7.94043%209.15625%207.9248%209.14062%207.9248%209.125Z'%20fill='white'/%3e%3cpath%20d='M7.9248%209.125C7.9248%209.10625%207.94044%209.09375%207.95607%209.09375C7.97482%209.09375%207.99043%209.10625%207.99043%209.125C7.99043%209.14062%207.97481%209.15625%207.95918%209.15625C7.94043%209.15625%207.9248%209.14062%207.9248%209.125Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.82227%209.10626C7.82227%209.09064%207.83789%209.07501%207.85352%209.07501C7.87227%209.07501%207.88789%209.09064%207.88789%209.10626C7.88789%209.12188%207.87227%209.13751%207.85664%209.13751C7.85228%209.13795%207.84788%209.13746%207.84372%209.13609C7.83956%209.13472%207.83574%209.13249%207.83249%209.12954C7.82925%209.12659%207.82667%209.123%207.82491%209.11899C7.82314%209.11498%207.82224%209.11064%207.82227%209.10626Z'%20fill='white'/%3e%3cpath%20d='M7.82227%209.10626C7.82227%209.09064%207.83789%209.07501%207.85352%209.07501C7.87227%209.07501%207.88789%209.09064%207.88789%209.10626C7.88789%209.12188%207.87227%209.13751%207.85664%209.13751C7.85228%209.13795%207.84788%209.13746%207.84372%209.13609C7.83956%209.13472%207.83574%209.13249%207.83249%209.12954C7.82925%209.12659%207.82667%209.123%207.82491%209.11899C7.82314%209.11498%207.82224%209.11064%207.82227%209.10626Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.71875%209.10938C7.71875%209.09062%207.73438%209.07812%207.75313%209.07812C7.77188%209.07812%207.78438%209.09062%207.78438%209.10938C7.78438%209.125%207.77188%209.14062%207.75313%209.14062C7.74484%209.14062%207.73689%209.13733%207.73103%209.13147C7.72517%209.12561%207.72188%209.11766%207.72188%209.10938'%20fill='white'/%3e%3cpath%20d='M7.71875%209.10938C7.71875%209.09062%207.73438%209.07812%207.75313%209.07812C7.77188%209.07812%207.78438%209.09062%207.78438%209.10938C7.78438%209.125%207.77188%209.14062%207.75313%209.14062C7.74484%209.14062%207.73689%209.13733%207.73103%209.13147C7.72517%209.12561%207.72188%209.11766%207.72188%209.10938H7.71875Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.61523%209.125C7.61523%209.10938%207.63086%209.09375%207.64648%209.09375C7.66836%209.09375%207.68086%209.10938%207.68086%209.125C7.68086%209.14062%207.66836%209.15625%207.64961%209.15625C7.64132%209.15625%207.63337%209.15296%207.62751%209.1471C7.62165%209.14124%207.61836%209.13329%207.61836%209.125'%20fill='white'/%3e%3cpath%20d='M7.61523%209.125C7.61523%209.10938%207.63086%209.09375%207.64648%209.09375C7.66836%209.09375%207.68086%209.10938%207.68086%209.125C7.68086%209.14062%207.66836%209.15625%207.64961%209.15625C7.64132%209.15625%207.63337%209.15296%207.62751%209.1471C7.62165%209.14124%207.61836%209.13329%207.61836%209.125H7.61523Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.51856%209.15936C7.51856%209.14373%207.53417%209.12811%207.54979%209.12811C7.56854%209.12811%207.58417%209.14373%207.58417%209.15936C7.58417%209.17498%207.56854%209.19061%207.55292%209.19061C7.54856%209.19105%207.54417%209.19057%207.54001%209.18919C7.53585%209.18782%207.53201%209.18559%207.52877%209.18264C7.52553%209.17969%207.52295%209.1761%207.52118%209.17209C7.51942%209.16808%207.51853%209.16374%207.51856%209.15936Z'%20fill='white'/%3e%3cpath%20d='M7.51856%209.15936C7.51856%209.14373%207.53417%209.12811%207.54979%209.12811C7.56854%209.12811%207.58417%209.14373%207.58417%209.15936C7.58417%209.17498%207.56854%209.19061%207.55292%209.19061C7.54856%209.19105%207.54417%209.19057%207.54001%209.18919C7.53585%209.18782%207.53201%209.18559%207.52877%209.18264C7.52553%209.17969%207.52295%209.1761%207.52118%209.17209C7.51942%209.16808%207.51853%209.16374%207.51856%209.15936Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.87598%209.95935C5.87598%209.94373%205.88848%209.9281%205.90723%209.9281C5.92598%209.9281%205.93848%209.94373%205.93848%209.95935C5.93848%209.9781%205.92598%209.9906%205.90723%209.9906C5.89894%209.9906%205.89099%209.98731%205.88513%209.98145C5.87927%209.97559%205.87598%209.96764%205.87598%209.95935Z'%20fill='white'/%3e%3cpath%20d='M5.87598%209.95935C5.87598%209.94373%205.88848%209.9281%205.90723%209.9281C5.92598%209.9281%205.93848%209.94373%205.93848%209.95935C5.93848%209.9781%205.92598%209.9906%205.90723%209.9906C5.89894%209.9906%205.89099%209.98731%205.88513%209.98145C5.87927%209.97559%205.87598%209.96764%205.87598%209.95935Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.82812%209.88123C5.82812%209.86248%205.84375%209.84998%205.85938%209.84998C5.87813%209.84998%205.89062%209.86248%205.89062%209.88123C5.89062%209.89998%205.87813%209.91248%205.85938%209.91248C5.85109%209.91248%205.84314%209.90919%205.83728%209.90333C5.83142%209.89747%205.82812%209.88952%205.82812%209.88123Z'%20fill='white'/%3e%3cpath%20d='M5.82812%209.88123C5.82812%209.86248%205.84375%209.84998%205.85938%209.84998C5.87813%209.84998%205.89062%209.86248%205.89062%209.88123C5.89062%209.89998%205.87813%209.91248%205.85938%209.91248C5.85109%209.91248%205.84314%209.90919%205.83728%209.90333C5.83142%209.89747%205.82812%209.88952%205.82812%209.88123Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.79785%209.78748C5.79785%209.77185%205.81348%209.75623%205.8291%209.75623C5.85098%209.75623%205.86348%209.77185%205.86348%209.78748C5.86348%209.8031%205.85098%209.81873%205.83223%209.81873C5.82394%209.81873%205.81599%209.81544%205.81013%209.80958C5.80427%209.80372%205.80098%209.79577%205.80098%209.78748'%20fill='white'/%3e%3cpath%20d='M5.79785%209.78748C5.79785%209.77185%205.81348%209.75623%205.8291%209.75623C5.85098%209.75623%205.86348%209.77185%205.86348%209.78748C5.86348%209.8031%205.85098%209.81873%205.83223%209.81873C5.82394%209.81873%205.81599%209.81544%205.81013%209.80958C5.80427%209.80372%205.80098%209.79577%205.80098%209.78748H5.79785Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.79492%209.6875C5.79492%209.67188%205.81055%209.65625%205.82617%209.65625C5.84492%209.65625%205.86055%209.67188%205.86055%209.6875C5.86055%209.70625%205.84492%209.71875%205.8293%209.71875C5.82101%209.71875%205.81306%209.71546%205.8072%209.7096C5.80134%209.70374%205.79805%209.69579%205.79805%209.6875'%20fill='white'/%3e%3cpath%20d='M5.79492%209.6875C5.79492%209.67188%205.81055%209.65625%205.82617%209.65625C5.84492%209.65625%205.86055%209.67188%205.86055%209.6875C5.86055%209.70625%205.84492%209.71875%205.8293%209.71875C5.82101%209.71875%205.81306%209.71546%205.8072%209.7096C5.80134%209.70374%205.79805%209.69579%205.79805%209.6875H5.79492Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.81934%209.59375C5.81934%209.575%205.83496%209.5625%205.85059%209.5625C5.86934%209.5625%205.88184%209.575%205.88184%209.59375C5.88184%209.6125%205.86934%209.625%205.85059%209.625C5.8423%209.625%205.83435%209.62171%205.82849%209.61585C5.82263%209.60999%205.81934%209.60204%205.81934%209.59375Z'%20fill='white'/%3e%3cpath%20d='M5.81934%209.59375C5.81934%209.575%205.83496%209.5625%205.85059%209.5625C5.86934%209.5625%205.88184%209.575%205.88184%209.59375C5.88184%209.6125%205.86934%209.625%205.85059%209.625C5.8423%209.625%205.83435%209.62171%205.82849%209.61585C5.82263%209.60999%205.81934%209.60204%205.81934%209.59375Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.86914%209.50311C5.86914%209.48749%205.88477%209.47186%205.90039%209.47186C5.91914%209.47186%205.93477%209.48749%205.93477%209.50311C5.93477%209.51874%205.91914%209.53436%205.90352%209.53436C5.89523%209.53436%205.88728%209.53107%205.88142%209.52521C5.87556%209.51935%205.87227%209.5114%205.87227%209.50311'%20fill='white'/%3e%3cpath%20d='M5.86914%209.50311C5.86914%209.48749%205.88477%209.47186%205.90039%209.47186C5.91914%209.47186%205.93477%209.48749%205.93477%209.50311C5.93477%209.51874%205.91914%209.53436%205.90352%209.53436C5.89523%209.53436%205.88728%209.53107%205.88142%209.52521C5.87556%209.51935%205.87227%209.5114%205.87227%209.50311H5.86914Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.9375%209.43127C5.9375%209.41252%205.95%209.40002%205.96875%209.40002C5.9875%209.40002%206%209.41252%206%209.43127C6%209.45002%205.9875%209.46252%205.96875%209.46252C5.96046%209.46252%205.95251%209.45923%205.94665%209.45337C5.94079%209.44751%205.9375%209.43956%205.9375%209.43127Z'%20fill='white'/%3e%3cpath%20d='M5.9375%209.43127C5.9375%209.41252%205.95%209.40002%205.96875%209.40002C5.9875%209.40002%206%209.41252%206%209.43127C6%209.45002%205.9875%209.46252%205.96875%209.46252C5.96046%209.46252%205.95251%209.45923%205.94665%209.45337C5.94079%209.44751%205.9375%209.43956%205.9375%209.43127Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.01562%209.36877C6.01562%209.35315%206.02812%209.33752%206.04688%209.33752C6.06563%209.33752%206.07812%209.35315%206.07812%209.36877C6.07812%209.3844%206.06563%209.40002%206.04688%209.40002C6.03859%209.40002%206.03064%209.39673%206.02478%209.39087C6.01892%209.38501%206.01562%209.37706%206.01562%209.36877Z'%20fill='white'/%3e%3cpath%20d='M6.01562%209.36877C6.01562%209.35315%206.02812%209.33752%206.04688%209.33752C6.06563%209.33752%206.07812%209.35315%206.07812%209.36877C6.07812%209.3844%206.06563%209.40002%206.04688%209.40002C6.03859%209.40002%206.03064%209.39673%206.02478%209.39087C6.01892%209.38501%206.01562%209.37706%206.01562%209.36877Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.11035%209.3219C6.11035%209.30315%206.12285%209.29065%206.1416%209.29065C6.16035%209.29065%206.17285%209.30315%206.17285%209.3219C6.17285%209.34065%206.16035%209.35315%206.1416%209.35315C6.13331%209.35315%206.12536%209.34985%206.1195%209.34399C6.11364%209.33813%206.11035%209.33018%206.11035%209.3219Z'%20fill='white'/%3e%3cpath%20d='M6.11035%209.3219C6.11035%209.30315%206.12285%209.29065%206.1416%209.29065C6.16035%209.29065%206.17285%209.30315%206.17285%209.3219C6.17285%209.34065%206.16035%209.35315%206.1416%209.35315C6.13331%209.35315%206.12536%209.34985%206.1195%209.34399C6.11364%209.33813%206.11035%209.33018%206.11035%209.3219Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.20605%209.28436C6.20605%209.26874%206.22168%209.25311%206.2373%209.25311C6.24559%209.25311%206.25354%209.25641%206.2594%209.26227C6.26526%209.26813%206.26855%209.27608%206.26855%209.28436C6.26855%209.29265%206.26526%209.3006%206.2594%209.30646C6.25354%209.31232%206.24559%209.31561%206.2373%209.31561C6.22902%209.31561%206.22107%209.31232%206.21521%209.30646C6.20935%209.3006%206.20605%209.29265%206.20605%209.28436Z'%20fill='white'/%3e%3cpath%20d='M6.20605%209.28436C6.20605%209.26874%206.22168%209.25311%206.2373%209.25311C6.24559%209.25311%206.25354%209.25641%206.2594%209.26227C6.26526%209.26813%206.26855%209.27608%206.26855%209.28436C6.26855%209.29265%206.26526%209.3006%206.2594%209.30646C6.25354%209.31232%206.24559%209.31561%206.2373%209.31561C6.22902%209.31561%206.22107%209.31232%206.21521%209.30646C6.20935%209.3006%206.20605%209.29265%206.20605%209.28436Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.3125%209.26562C6.3125%209.25%206.32813%209.23438%206.34688%209.23438C6.35516%209.23438%206.36311%209.23767%206.36897%209.24353C6.37483%209.24939%206.37813%209.25734%206.37813%209.26562C6.37813%209.27391%206.37483%209.28185%206.36897%209.28771C6.36311%209.29357%206.35516%209.29688%206.34688%209.29688C6.32813%209.29688%206.31563%209.28438%206.31563%209.26562'%20fill='white'/%3e%3cpath%20d='M6.3125%209.26562C6.3125%209.25%206.32813%209.23438%206.34688%209.23438C6.35516%209.23438%206.36311%209.23767%206.36897%209.24353C6.37483%209.24939%206.37813%209.25734%206.37813%209.26562C6.37813%209.27391%206.37483%209.28185%206.36897%209.28771C6.36311%209.29357%206.35516%209.29688%206.34688%209.29688C6.32813%209.29688%206.31563%209.28438%206.31563%209.26562H6.3125Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.41992%209.2594C6.41992%209.24377%206.43242%209.22815%206.45117%209.22815C6.46992%209.22815%206.48242%209.24377%206.48242%209.2594C6.48242%209.27502%206.46992%209.29065%206.45117%209.29065C6.44288%209.29065%206.43494%209.28735%206.42907%209.28149C6.42321%209.27563%206.41992%209.26768%206.41992%209.2594Z'%20fill='white'/%3e%3cpath%20d='M6.41992%209.2594C6.41992%209.24377%206.43242%209.22815%206.45117%209.22815C6.46992%209.22815%206.48242%209.24377%206.48242%209.2594C6.48242%209.27502%206.46992%209.29065%206.45117%209.29065C6.44288%209.29065%206.43494%209.28735%206.42907%209.28149C6.42321%209.27563%206.41992%209.26768%206.41992%209.2594Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.51856%209.26562C6.51856%209.24687%206.53418%209.23438%206.54981%209.23438C6.56856%209.23438%206.58419%209.24687%206.58419%209.26562C6.58419%209.28438%206.56856%209.29688%206.55293%209.29688C6.54857%209.29732%206.54417%209.29682%206.54001%209.29545C6.53585%209.29408%206.53203%209.29185%206.52878%209.28891C6.52554%209.28596%206.52296%209.28236%206.52119%209.27835C6.51943%209.27434%206.51853%209.27%206.51856%209.26562Z'%20fill='white'/%3e%3cpath%20d='M6.51856%209.26562C6.51856%209.24687%206.53418%209.23438%206.54981%209.23438C6.56856%209.23438%206.58419%209.24687%206.58419%209.26562C6.58419%209.28438%206.56856%209.29688%206.55293%209.29688C6.54857%209.29732%206.54417%209.29682%206.54001%209.29545C6.53585%209.29408%206.53203%209.29185%206.52878%209.28891C6.52554%209.28596%206.52296%209.28236%206.52119%209.27835C6.51943%209.27434%206.51853%209.27%206.51856%209.26562Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.61914%209.26562C6.61914%209.24687%206.63476%209.23438%206.65039%209.23438C6.67226%209.23438%206.68789%209.24687%206.68789%209.26562C6.68789%209.28438%206.67226%209.29688%206.65351%209.29688C6.64523%209.29688%206.63728%209.29357%206.63142%209.28771C6.62556%209.28185%206.62227%209.27391%206.62227%209.26562'%20fill='white'/%3e%3cpath%20d='M6.61914%209.26562C6.61914%209.24687%206.63476%209.23438%206.65039%209.23438C6.67226%209.23438%206.68789%209.24687%206.68789%209.26562C6.68789%209.28438%206.67226%209.29688%206.65351%209.29688C6.64523%209.29688%206.63728%209.29357%206.63142%209.28771C6.62556%209.28185%206.62227%209.27391%206.62227%209.26562H6.61914Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.56895%209.34998C6.56895%209.33435%206.58457%209.31873%206.6002%209.31873C6.62207%209.31873%206.63457%209.33435%206.63457%209.34998C6.63457%209.3656%206.62207%209.38123%206.60332%209.38123C6.59503%209.38123%206.58708%209.37794%206.58122%209.37208C6.57536%209.36622%206.57207%209.35827%206.57207%209.34998H6.56895ZM6.5502%209.44685C6.5502%209.4281%206.5627%209.4156%206.58145%209.4156C6.6002%209.4156%206.6127%209.4281%206.6127%209.44685C6.6127%209.46248%206.6002%209.4781%206.58145%209.4781C6.57316%209.4781%206.56521%209.47481%206.55935%209.46895C6.55349%209.46309%206.5502%209.45514%206.5502%209.44685ZM6.54395%209.5406C6.54395%209.52498%206.55957%209.50935%206.5752%209.50935C6.59707%209.50935%206.60957%209.52498%206.60957%209.5406C6.60957%209.55623%206.59707%209.57185%206.57832%209.57185C6.57003%209.57185%206.56208%209.56856%206.55622%209.5627C6.55036%209.55684%206.54707%209.54889%206.54707%209.5406H6.54395ZM6.5752%209.6281C6.5752%209.61248%206.59082%209.59685%206.60645%209.59685C6.6252%209.59685%206.64082%209.61248%206.64082%209.6281C6.64082%209.64685%206.6252%209.65935%206.60957%209.65935C6.60521%209.65979%206.60081%209.65931%206.59665%209.65794C6.59249%209.65656%206.58867%209.65432%206.58542%209.65137C6.58218%209.64843%206.5796%209.64484%206.57784%209.64083C6.57607%209.63682%206.57517%209.63248%206.5752%209.6281ZM6.63145%209.70934C6.63145%209.69372%206.64707%209.67809%206.6627%209.67809C6.67098%209.67809%206.67893%209.68139%206.68479%209.68725C6.69065%209.69311%206.69395%209.70106%206.69395%209.70934C6.69395%209.71763%206.69065%209.72559%206.68479%209.73145C6.67893%209.73731%206.67098%209.74059%206.6627%209.74059C6.65441%209.74059%206.64646%209.73731%206.6406%209.73145C6.63474%209.72559%206.63145%209.71763%206.63145%209.70934Z'%20fill='white'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.69824%209.20312C6.69824%209.1875%206.71387%209.17188%206.72949%209.17188C6.73778%209.17188%206.74573%209.17517%206.75159%209.18103C6.75745%209.18689%206.76074%209.19484%206.76074%209.20312C6.76074%209.21141%206.75745%209.21935%206.75159%209.22521C6.74573%209.23107%206.73778%209.23438%206.72949%209.23438C6.7212%209.23438%206.71325%209.23107%206.70739%209.22521C6.70153%209.21935%206.69824%209.21141%206.69824%209.20312Z'%20fill='white'/%3e%3cpath%20d='M6.69824%209.20312C6.69824%209.1875%206.71387%209.17188%206.72949%209.17188C6.73778%209.17188%206.74573%209.17517%206.75159%209.18103C6.75745%209.18689%206.76074%209.19484%206.76074%209.20312C6.76074%209.21141%206.75745%209.21935%206.75159%209.22521C6.74573%209.23107%206.73778%209.23438%206.72949%209.23438C6.7212%209.23438%206.71325%209.23107%206.70739%209.22521C6.70153%209.21935%206.69824%209.21141%206.69824%209.20312Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.78711%209.15625C6.78711%209.1375%206.79961%209.125%206.81836%209.125C6.83711%209.125%206.84961%209.1375%206.84961%209.15625C6.84961%209.175%206.83711%209.1875%206.81836%209.1875C6.81007%209.1875%206.80212%209.18421%206.79626%209.17835C6.7904%209.17249%206.78711%209.16454%206.78711%209.15625Z'%20fill='white'/%3e%3cpath%20d='M6.78711%209.15625C6.78711%209.1375%206.79961%209.125%206.81836%209.125C6.83711%209.125%206.84961%209.1375%206.84961%209.15625C6.84961%209.175%206.83711%209.1875%206.81836%209.1875C6.81007%209.1875%206.80212%209.18421%206.79626%209.17835C6.7904%209.17249%206.78711%209.16454%206.78711%209.15625Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.88477%209.125C6.88477%209.10625%206.90039%209.09375%206.91602%209.09375C6.93789%209.09375%206.95039%209.10625%206.95039%209.125C6.95039%209.14062%206.93789%209.15625%206.91914%209.15625C6.90039%209.15625%206.88789%209.14062%206.88789%209.125'%20fill='white'/%3e%3cpath%20d='M6.88477%209.125C6.88477%209.10625%206.90039%209.09375%206.91602%209.09375C6.93789%209.09375%206.95039%209.10625%206.95039%209.125C6.95039%209.14062%206.93789%209.15625%206.91914%209.15625C6.90039%209.15625%206.88789%209.14062%206.88789%209.125H6.88477Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.9873%209.10626C6.9873%209.09064%207.00294%209.07501%207.01857%209.07501C7.04044%209.07501%207.05293%209.09064%207.05293%209.10626C7.05293%209.12189%207.04043%209.13751%207.02168%209.13751C7.01339%209.13751%207.00544%209.13422%206.99958%209.12836C6.99372%209.1225%206.99043%209.11455%206.99043%209.10626'%20fill='white'/%3e%3cpath%20d='M6.9873%209.10626C6.9873%209.09064%207.00294%209.07501%207.01857%209.07501C7.04044%209.07501%207.05293%209.09064%207.05293%209.10626C7.05293%209.12189%207.04043%209.13751%207.02168%209.13751C7.01339%209.13751%207.00544%209.13422%206.99958%209.12836C6.99372%209.1225%206.99043%209.11455%206.99043%209.10626H6.9873Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.09082%209.10938C7.09082%209.09062%207.10332%209.07812%207.12207%209.07812C7.14082%209.07812%207.15332%209.09062%207.15332%209.10938C7.15332%209.125%207.14082%209.14062%207.12207%209.14062C7.11378%209.14062%207.10583%209.13733%207.09997%209.13147C7.09411%209.12561%207.09082%209.11766%207.09082%209.10938Z'%20fill='white'/%3e%3cpath%20d='M7.09082%209.10938C7.09082%209.09062%207.10332%209.07812%207.12207%209.07812C7.14082%209.07812%207.15332%209.09062%207.15332%209.10938C7.15332%209.125%207.14082%209.14062%207.12207%209.14062C7.11378%209.14062%207.10583%209.13733%207.09997%209.13147C7.09411%209.12561%207.09082%209.11766%207.09082%209.10938Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.19434%209.125C7.19434%209.10938%207.20996%209.09375%207.22559%209.09375C7.24746%209.09375%207.25996%209.10938%207.25996%209.125C7.25996%209.14062%207.24746%209.15625%207.22871%209.15625C7.22042%209.15625%207.21247%209.15296%207.20661%209.1471C7.20075%209.14124%207.19746%209.13329%207.19746%209.125'%20fill='white'/%3e%3cpath%20d='M7.19434%209.125C7.19434%209.10938%207.20996%209.09375%207.22559%209.09375C7.24746%209.09375%207.25996%209.10938%207.25996%209.125C7.25996%209.14062%207.24746%209.15625%207.22871%209.15625C7.22042%209.15625%207.21247%209.15296%207.20661%209.1471C7.20075%209.14124%207.19746%209.13329%207.19746%209.125H7.19434Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.29199%209.15936C7.29199%209.14373%207.30762%209.12811%207.32324%209.12811C7.34512%209.12811%207.35762%209.14373%207.35762%209.15936C7.35762%209.17498%207.34512%209.19061%207.32637%209.19061C7.31808%209.19061%207.31013%209.18732%207.30427%209.18146C7.29841%209.17559%207.29512%209.16765%207.29512%209.15936'%20fill='white'/%3e%3cpath%20d='M7.29199%209.15936C7.29199%209.14373%207.30762%209.12811%207.32324%209.12811C7.34512%209.12811%207.35762%209.14373%207.35762%209.15936C7.35762%209.17498%207.34512%209.19061%207.32637%209.19061C7.31808%209.19061%207.31013%209.18732%207.30427%209.18146C7.29841%209.17559%207.29512%209.16765%207.29512%209.15936H7.29199Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.45996%2011.1531H6.42871V11.1219H6.38184V11.2344H6.43184V11.3125H6.32559V11.5313H6.38184V11.9781H6.27246V12.2063H7.12246V11.9781H7.01308V11.5313H7.06933V11.3125H6.96308V11.2344H7.01308V11.125H6.96308V11.1531H6.93808V11.1219H6.88808V11.1531H6.85371V11.1219H6.80371V11.2344H6.85371V11.3125H6.75058V11.0688H6.80371V10.9594H6.75058V10.9875H6.71933V10.9563H6.67246V10.9875H6.64433V10.9563H6.59433V11.0688H6.64746V11.3125H6.54433V11.2344H6.59433V11.125H6.54433V11.1531H6.51621V11.1219H6.45996V11.1531Z'%20fill='%23C8B100'/%3e%3cpath%20d='M6.85683%2011.2344H6.96621M6.43184%2011.3125V11.2344H6.38184V11.1219H6.42871V11.1531H6.45996V11.1219H6.51621V11.1531H6.54433V11.125H6.59433V11.2344H6.54433M6.43184%2011.3125H6.32559V11.5313H6.38184V11.9781H6.27246M6.43184%2011.3125H6.96308M6.27246%2011.9781V12.2063M6.27246%2011.9781H7.12558M6.27246%2012.2063H7.12246V11.9781H7.01308V11.5313H7.06933V11.3125H6.96308M6.27246%2012.2063H7.12558M6.96308%2011.3125V11.2344H7.01308V11.125H6.96308V11.1531H6.93808V11.1219H6.88808V11.1531H6.85371V11.1219H6.80371V11.2344H6.85371V11.3125H6.75058V11.0688H6.80371V10.9594H6.75058V10.9875H6.71933V10.9563H6.67246V10.9875H6.64433V10.9563H6.59433V11.0688H6.64746M6.64746%2011.0688V11.3125H6.54433V11.2344M6.64746%2011.0688H6.75371M6.54433%2011.2344H6.43496M6.27246%2012.15H7.12558M6.27246%2012.0938H7.12558M6.27246%2012.0406H7.12558M6.38184%2011.9281H7.01308M6.38184%2011.8719H7.01308M6.38184%2011.8094H7.01308M6.38184%2011.7563H7.01308M6.38184%2011.7H7.01308M6.38184%2011.6438H7.01308M6.38184%2011.5906H7.01308M6.32559%2011.5344H7.06933M6.32559%2011.4781H7.06933M6.32559%2011.4219H7.06933M6.32559%2011.3656H7.06933M6.64433%2011.2563H6.75058M6.64433%2011.2H6.75058M6.64433%2011.1438H6.75058M6.64433%2011.0906H6.75058M6.59121%2011.0219H6.80371M6.42871%2011.2563H6.54121M6.38496%2011.1875H6.59121M6.38184%2012.2063V12.15M6.38184%2012.0938V12.0406M6.32559%2012.0938V12.15M6.43184%2012.15V12.0938M6.48496%2012.2063V12.15M6.48496%2012.0938V12.0406M6.48496%2011.9781V11.9281M6.48496%2011.8719V11.8094M6.43184%2012.0406V11.9781M6.32559%2012.0406V11.9781M6.54433%2011.9781V12.0406M6.59121%2011.9781V11.9281M6.43184%2011.8719V11.9281M6.54121%2011.8719V11.9281M6.64433%2011.8719V11.9281M6.59433%2011.875V11.8125M6.64746%2011.7594V11.8125M6.64746%2011.6469V11.7031M6.59433%2011.5906V11.6469M6.64746%2011.5375V11.5906M6.54433%2011.5375V11.5906M6.43496%2011.5375V11.5906M6.38496%2011.4813V11.5375M6.48809%2011.4813V11.5375M6.59433%2011.4813V11.5375M6.64746%2011.425V11.4813M6.54433%2011.425V11.4813M6.43496%2011.425V11.4813M6.38496%2011.3688V11.425M6.59433%2011.3688V11.425M6.48809%2011.2594V11.3156M6.96621%2011.2594H6.85683M7.01308%2011.1906H6.80683M7.01621%2012.2094V12.1531M7.01621%2012.0969V12.0438M7.07246%2012.0969V12.1531M6.96621%2012.1531V12.0938M6.91308%2012.2063V12.15M6.91308%2012.0938V12.0406M6.91308%2011.9781V11.9281M6.91308%2011.8719V11.8094M6.96621%2012.0406V11.9781M7.07246%2012.0406V11.9781M6.85371%2011.9781V12.0406M6.80683%2011.9781V11.9281M6.96621%2011.8719V11.9281M6.85683%2011.8719V11.9281M6.75371%2011.8719V11.9281M6.80683%2011.8719V11.8094M6.75371%2011.7563V11.8094M6.75371%2011.6438V11.7M6.80683%2011.5875V11.6438M6.75371%2011.5344V11.5875M6.85683%2011.5344V11.5875M6.96621%2011.5344V11.5875M7.01621%2011.4781V11.5344M6.91308%2011.4781V11.5344M6.80683%2011.4781V11.5344M6.75371%2011.4219V11.4781M6.85683%2011.4219V11.4781M6.96621%2011.4219V11.4781M7.01621%2011.3656V11.4219M6.80683%2011.3656V11.4219M6.91308%2011.2563V11.3125M6.69433%2011.875V11.8125M6.69433%2011.6438V11.5875M6.69433%2011.7563V11.7M6.69433%2011.5344V11.4781M6.69433%2011.4219V11.3688M6.69433%2011.2563V11.2M6.69433%2011.1469V11.0906'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.83887%2012.2063V12.0594C6.83887%2012.0344%206.82637%2011.95%206.69512%2011.95C6.57012%2011.95%206.55762%2012.0344%206.55762%2012.0594V12.2063H6.83887Z'%20fill='%23C8B100'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.60351%2012.0688L6.53477%2012.0594C6.53477%2012.0312%206.54101%2011.9906%206.56289%2011.9781L6.62539%2012.025C6.61601%2012.0312%206.60351%2012.0563%206.60351%2012.0688ZM6.79101%2012.0688L6.85976%2012.0594C6.85976%2012.0312%206.85351%2011.9906%206.83164%2011.9781L6.76914%2012.025C6.77851%2012.0312%206.79101%2012.0563%206.79101%2012.0688ZM6.72226%2011.9969L6.75351%2011.9344C6.73369%2011.9262%206.71246%2011.922%206.69101%2011.9219L6.63789%2011.9344L6.67226%2011.9969H6.72226ZM6.59101%2011.825V11.6719C6.59101%2011.6312%206.55976%2011.5969%206.51289%2011.5969C6.46602%2011.5969%206.43789%2011.6281%206.43789%2011.6719V11.825H6.59101ZM6.80351%2011.825V11.6719C6.80351%2011.6312%206.83476%2011.5969%206.88164%2011.5969C6.92851%2011.5969%206.95664%2011.6281%206.95664%2011.6719V11.825H6.80351ZM6.75039%2011.45L6.76289%2011.3125H6.63164L6.63789%2011.45H6.75039ZM6.85351%2011.45L6.84101%2011.3125H6.97851L6.96289%2011.45H6.85351ZM6.54101%2011.45L6.54726%2011.3125H6.41602L6.43164%2011.45H6.54101Z'%20fill='%23C8B100'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.79082%2012.2063V12.0813C6.79082%2012.0594%206.77519%2011.9969%206.69394%2011.9969C6.61894%2011.9969%206.60332%2012.0594%206.60332%2012.0813V12.2063H6.79082ZM6.57519%2011.8094V11.6781C6.57519%2011.6469%206.55644%2011.6094%206.51269%2011.6094C6.46895%2011.6094%206.4502%2011.6437%206.4502%2011.6781V11.8125H6.57519V11.8094ZM6.81894%2011.8094V11.6781C6.81894%2011.6469%206.84082%2011.6094%206.88144%2011.6094C6.92207%2011.6094%206.94394%2011.6437%206.94394%2011.6781V11.8125H6.81894V11.8094Z'%20fill='%230039F0'/%3e%3cpath%20d='M6.96289%2012.4312C6.96289%2012.1281%207.18164%2011.8812%207.45039%2011.8812C7.71914%2011.8812%207.93789%2012.1281%207.93789%2012.4312C7.93789%2012.7344%207.71914%2012.9781%207.45039%2012.9781C7.18164%2012.9781%206.96289%2012.7344%206.96289%2012.4312Z'%20fill='%23AD1519'/%3e%3cpath%20d='M6.96289%2012.4312C6.96289%2012.1281%207.18164%2011.8812%207.45039%2011.8812C7.71914%2011.8812%207.93789%2012.1281%207.93789%2012.4312C7.93789%2012.7344%207.71914%2012.9781%207.45039%2012.9781C7.18164%2012.9781%206.96289%2012.7344%206.96289%2012.4312Z'%20stroke='black'%20stroke-width='0.15'/%3e%3cpath%20d='M7.10742%2012.4281C7.10742%2012.2094%207.26367%2012.0281%207.45117%2012.0281C7.63867%2012.0281%207.79492%2012.2063%207.79492%2012.4281C7.79492%2012.6531%207.63867%2012.8344%207.45117%2012.8344C7.26367%2012.8344%207.10742%2012.6531%207.10742%2012.4281Z'%20fill='%23005BBF'/%3e%3cpath%20d='M7.10742%2012.4281C7.10742%2012.2094%207.26367%2012.0281%207.45117%2012.0281C7.63867%2012.0281%207.79492%2012.2063%207.79492%2012.4281C7.79492%2012.6531%207.63867%2012.8344%207.45117%2012.8344C7.26367%2012.8344%207.10742%2012.6531%207.10742%2012.4281Z'%20stroke='black'%20stroke-width='0.15'/%3e%3cpath%20d='M7.28712%2012.1531C7.28712%2012.1531%207.24649%2012.1969%207.24649%2012.2375C7.24746%2012.2635%207.25384%2012.2891%207.26524%2012.3125C7.25899%2012.2969%207.24024%2012.2875%207.22149%2012.2875C7.19649%2012.2875%207.17773%2012.3063%207.17773%2012.3281L7.18398%2012.3531L7.19961%2012.3813C7.20274%2012.3719%207.21524%2012.3656%207.23086%2012.3656C7.24649%2012.3656%207.26211%2012.3781%207.26211%2012.3969C7.26234%2012.399%207.26234%2012.401%207.26211%2012.4031H7.22462V12.4344H7.25587L7.23086%2012.4813L7.26211%2012.4688L7.28712%2012.4969L7.31211%2012.4688L7.34336%2012.4813L7.3215%2012.4344H7.35275V12.4031H7.31837C7.31785%2012.4%207.31785%2012.3969%207.31837%2012.3938C7.31837%2012.3855%207.32167%2012.3775%207.32753%2012.3717C7.33339%2012.3658%207.34134%2012.3625%207.34962%2012.3625C7.36212%2012.3625%207.37149%2012.3719%207.38087%2012.3813L7.39337%2012.35L7.39962%2012.3281C7.39882%2012.3171%207.39387%2012.3067%207.38575%2012.2992C7.37763%2012.2917%207.36695%2012.2875%207.35586%2012.2875C7.33399%2012.2875%207.31836%2012.2969%207.31211%2012.3156C7.31211%2012.3156%207.33086%2012.2781%207.33086%2012.2375C7.33086%2012.1969%207.28712%2012.1531%207.28712%2012.1531Z'%20fill='%23C8B100'/%3e%3cpath%20d='M7.28712%2012.1531C7.28712%2012.1531%207.24649%2012.1969%207.24649%2012.2375C7.24746%2012.2635%207.25384%2012.2891%207.26524%2012.3125C7.25899%2012.2969%207.24024%2012.2875%207.22149%2012.2875C7.19649%2012.2875%207.17773%2012.3063%207.17773%2012.3281L7.18398%2012.3531L7.19961%2012.3813C7.20274%2012.3719%207.21524%2012.3656%207.23086%2012.3656C7.24649%2012.3656%207.26211%2012.3781%207.26211%2012.3969C7.26234%2012.399%207.26234%2012.401%207.26211%2012.4031H7.22462V12.4344H7.25587L7.23086%2012.4813L7.26211%2012.4688L7.28712%2012.4969L7.31211%2012.4688L7.34336%2012.4813L7.3215%2012.4344H7.35275V12.4031H7.31837C7.31785%2012.4%207.31785%2012.3969%207.31837%2012.3938C7.31837%2012.3855%207.32167%2012.3775%207.32753%2012.3717C7.33339%2012.3658%207.34134%2012.3625%207.34962%2012.3625C7.36212%2012.3625%207.37149%2012.3719%207.38087%2012.3813L7.39337%2012.35L7.39962%2012.3281C7.39882%2012.3171%207.39387%2012.3067%207.38575%2012.2992C7.37763%2012.2917%207.36695%2012.2875%207.35586%2012.2875C7.33399%2012.2875%207.31836%2012.2969%207.31211%2012.3156C7.31211%2012.3156%207.33086%2012.2781%207.33086%2012.2375C7.33086%2012.1969%207.28712%2012.1531%207.28712%2012.1531Z'%20stroke='black'%20stroke-width='0.075'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.22559%2012.4344H7.35371V12.4031H7.22559V12.4344Z'%20fill='%23C8B100'/%3e%3cpath%20d='M7.22559%2012.4344H7.35371V12.4031H7.22559V12.4344Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M7.60742%2012.1531C7.60742%2012.1531%207.5668%2012.1969%207.5668%2012.2375C7.5668%2012.2781%207.58555%2012.3125%207.58555%2012.3125C7.5793%2012.2969%207.56367%2012.2875%207.5418%2012.2875C7.5168%2012.2875%207.49805%2012.3063%207.49805%2012.3281L7.5043%2012.3531L7.51992%2012.3813C7.52617%2012.3719%207.53555%2012.3656%207.55117%2012.3656C7.55946%2012.3656%207.56741%2012.3689%207.57327%2012.3748C7.57913%2012.3806%207.58242%2012.3886%207.58242%2012.3969C7.58265%2012.399%207.58265%2012.401%207.58242%2012.4031H7.54492V12.4344H7.57617L7.55117%2012.4813L7.58242%2012.4688L7.60742%2012.4969L7.63242%2012.4688L7.66367%2012.4813L7.6418%2012.4344H7.67305V12.4031H7.63867C7.63808%2012.4%207.63808%2012.3968%207.63867%2012.3938C7.63867%2012.3855%207.64196%2012.3775%207.64782%2012.3717C7.65369%2012.3658%207.66163%2012.3625%207.66992%2012.3625C7.68242%2012.3625%207.69492%2012.3719%207.70117%2012.3813L7.71367%2012.35L7.71992%2012.3281C7.71913%2012.3171%207.71417%2012.3067%207.70605%2012.2992C7.69793%2012.2917%207.68725%2012.2875%207.67617%2012.2875C7.65742%2012.2875%207.63867%2012.2969%207.63242%2012.3156C7.63242%2012.3156%207.65117%2012.2781%207.65117%2012.2375C7.65117%2012.1969%207.60742%2012.1531%207.60742%2012.1531Z'%20fill='%23C8B100'/%3e%3cpath%20d='M7.60742%2012.1531C7.60742%2012.1531%207.5668%2012.1969%207.5668%2012.2375C7.5668%2012.2781%207.58555%2012.3125%207.58555%2012.3125C7.5793%2012.2969%207.56367%2012.2875%207.5418%2012.2875C7.5168%2012.2875%207.49805%2012.3063%207.49805%2012.3281L7.5043%2012.3531L7.51992%2012.3813C7.52617%2012.3719%207.53555%2012.3656%207.55117%2012.3656C7.55946%2012.3656%207.56741%2012.3689%207.57327%2012.3748C7.57913%2012.3806%207.58242%2012.3886%207.58242%2012.3969C7.58265%2012.399%207.58265%2012.401%207.58242%2012.4031H7.54492V12.4344H7.57617L7.55117%2012.4813L7.58242%2012.4688L7.60742%2012.4969L7.63242%2012.4688L7.66367%2012.4813L7.6418%2012.4344H7.67305V12.4031H7.63867C7.63808%2012.4%207.63808%2012.3968%207.63867%2012.3938C7.63867%2012.3855%207.64196%2012.3775%207.64782%2012.3717C7.65369%2012.3658%207.66163%2012.3625%207.66992%2012.3625C7.68242%2012.3625%207.69492%2012.3719%207.70117%2012.3813L7.71367%2012.35L7.71992%2012.3281C7.71913%2012.3171%207.71417%2012.3067%207.70605%2012.2992C7.69793%2012.2917%207.68725%2012.2875%207.67617%2012.2875C7.65742%2012.2875%207.63867%2012.2969%207.63242%2012.3156C7.63242%2012.3156%207.65117%2012.2781%207.65117%2012.2375C7.65117%2012.1969%207.60742%2012.1531%207.60742%2012.1531Z'%20stroke='black'%20stroke-width='0.075'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.54395%2012.4344H7.67206V12.4031H7.54395V12.4344Z'%20fill='%23C8B100'/%3e%3cpath%20d='M7.54395%2012.4344H7.67206V12.4031H7.54395V12.4344Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M7.44727%2012.425C7.44727%2012.425%207.40664%2012.4719%207.40664%2012.5125C7.40664%2012.5531%207.42539%2012.5875%207.42539%2012.5875C7.41914%2012.5719%207.40352%2012.5594%207.38164%2012.5594C7.35664%2012.5594%207.33789%2012.5781%207.33789%2012.6031L7.34414%2012.625L7.35977%2012.6562C7.36289%2012.6437%207.37539%2012.6375%207.39102%2012.6375C7.3993%2012.6375%207.40725%2012.6408%207.41311%2012.6467C7.41897%2012.6525%207.42227%2012.6605%207.42227%2012.6687C7.42279%2012.6719%207.42279%2012.675%207.42227%2012.6781H7.38477V12.7094H7.41602L7.39102%2012.7562L7.42227%2012.7437L7.44727%2012.7719L7.47227%2012.7406L7.50352%2012.7562L7.48164%2012.7094H7.51289V12.6781H7.47852C7.47799%2012.675%207.47799%2012.6719%207.47852%2012.6687C7.47852%2012.6605%207.48181%2012.6525%207.48767%2012.6467C7.49353%2012.6408%207.50148%2012.6375%207.50977%2012.6375C7.52227%2012.6375%207.53164%2012.6437%207.53789%2012.6562L7.55352%2012.625L7.55977%2012.6031C7.55977%2012.5915%207.55516%2012.5804%207.54695%2012.5722C7.53875%2012.564%207.52762%2012.5594%207.51602%2012.5594C7.49414%2012.5594%207.47852%2012.5719%207.47227%2012.5906C7.47227%2012.5906%207.49102%2012.5531%207.49102%2012.5125C7.49102%2012.4719%207.44727%2012.4281%207.44727%2012.4281'%20fill='%23C8B100'/%3e%3cpath%20d='M7.44727%2012.425C7.44727%2012.425%207.40664%2012.4719%207.40664%2012.5125C7.40664%2012.5531%207.42539%2012.5875%207.42539%2012.5875C7.41914%2012.5719%207.40352%2012.5594%207.38164%2012.5594C7.35664%2012.5594%207.33789%2012.5781%207.33789%2012.6031L7.34414%2012.625L7.35977%2012.6562C7.36289%2012.6437%207.37539%2012.6375%207.39102%2012.6375C7.3993%2012.6375%207.40725%2012.6408%207.41311%2012.6467C7.41897%2012.6525%207.42227%2012.6605%207.42227%2012.6687C7.42279%2012.6719%207.42279%2012.675%207.42227%2012.6781H7.38477V12.7094H7.41602L7.39102%2012.7562L7.42227%2012.7437L7.44727%2012.7719L7.47227%2012.7406L7.50352%2012.7562L7.48164%2012.7094H7.51289V12.6781H7.47852C7.47799%2012.675%207.47799%2012.6719%207.47852%2012.6687C7.47852%2012.6605%207.48181%2012.6525%207.48767%2012.6467C7.49353%2012.6408%207.50148%2012.6375%207.50977%2012.6375C7.52227%2012.6375%207.53164%2012.6437%207.53789%2012.6562L7.55352%2012.625L7.55977%2012.6031C7.55977%2012.5915%207.55516%2012.5804%207.54695%2012.5722C7.53875%2012.564%207.52762%2012.5594%207.51602%2012.5594C7.49414%2012.5594%207.47852%2012.5719%207.47227%2012.5906C7.47227%2012.5906%207.49102%2012.5531%207.49102%2012.5125C7.49102%2012.4719%207.44727%2012.4281%207.44727%2012.4281V12.425Z'%20stroke='black'%20stroke-width='0.075'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.38574%2012.7062H7.51387V12.675H7.38574V12.7062Z'%20fill='%23C8B100'/%3e%3cpath%20d='M7.38574%2012.7062H7.51387V12.675H7.38574V12.7062Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.425%2010.9812H8.41563C8.41322%2010.9859%208.41005%2010.9901%208.40625%2010.9937C8.4%2011%208.3875%2011%208.38125%2010.9937C8.37987%2010.992%208.37888%2010.99%208.37834%2010.9878C8.3778%2010.9857%208.37773%2010.9834%208.37813%2010.9812C8.37575%2010.9826%208.37306%2010.9833%208.37031%2010.9833C8.36757%2010.9833%208.36488%2010.9826%208.3625%2010.9812C8.35313%2010.9781%208.35312%2010.9656%208.35937%2010.9594V10.9437H8.35L8.34688%2010.95C8.34063%2010.9594%208.33125%2010.9594%208.325%2010.9562C8.32465%2010.9542%208.32465%2010.9521%208.325%2010.95H8.31563C8.3%2010.9562%208.29375%2010.9187%208.29375%2010.9125L8.2875%2010.9187C8.2875%2010.9187%208.29375%2010.9406%208.29063%2010.9562C8.29063%2010.975%208.28125%2010.9937%208.28125%2010.9937C8.31429%2011.0047%208.34502%2011.0216%208.37187%2011.0437C8.39888%2011.0634%208.42216%2011.0878%208.44063%2011.1156L8.47813%2011.1C8.49688%2011.0937%208.51875%2011.0937%208.51875%2011.0937L8.525%2011.0875C8.51563%2011.0875%208.47813%2011.0906%208.47813%2011.075V11.0687C8.47605%2011.069%208.47395%2011.069%208.47188%2011.0687C8.46563%2011.0625%208.46563%2011.0562%208.47188%2011.0469L8.47813%2011.0437V11.0344H8.46875L8.4625%2011.0375C8.45625%2011.0469%208.44375%2011.0469%208.4375%2011.0375C8.43589%2011.0359%208.43475%2011.0339%208.4342%2011.0317C8.43365%2011.0295%208.43371%2011.0272%208.43437%2011.025C8.43192%2011.0261%208.42926%2011.0267%208.42656%2011.0267C8.42387%2011.0267%208.4212%2011.0261%208.41875%2011.025C8.4125%2011.0187%208.40937%2011.0094%208.41875%2011L8.425%2010.9906V10.9812Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.425%2010.9812H8.41563C8.41322%2010.9859%208.41005%2010.9901%208.40625%2010.9937C8.4%2011%208.3875%2011%208.38125%2010.9937C8.37987%2010.992%208.37888%2010.99%208.37834%2010.9878C8.3778%2010.9857%208.37773%2010.9834%208.37813%2010.9812C8.37575%2010.9826%208.37306%2010.9833%208.37031%2010.9833C8.36757%2010.9833%208.36488%2010.9826%208.3625%2010.9812C8.35313%2010.9781%208.35312%2010.9656%208.35937%2010.9594V10.9437H8.35L8.34688%2010.95C8.34063%2010.9594%208.33125%2010.9594%208.325%2010.9562C8.32465%2010.9542%208.32465%2010.9521%208.325%2010.95H8.31563C8.3%2010.9562%208.29375%2010.9187%208.29375%2010.9125L8.2875%2010.9187C8.2875%2010.9187%208.29375%2010.9406%208.29063%2010.9562C8.29063%2010.975%208.28125%2010.9937%208.28125%2010.9937C8.31429%2011.0047%208.34502%2011.0216%208.37187%2011.0437C8.39888%2011.0634%208.42216%2011.0878%208.44063%2011.1156L8.47813%2011.1C8.49688%2011.0937%208.51875%2011.0937%208.51875%2011.0937L8.525%2011.0875C8.51563%2011.0875%208.47813%2011.0906%208.47813%2011.075V11.0687C8.47605%2011.069%208.47395%2011.069%208.47188%2011.0687C8.46563%2011.0625%208.46563%2011.0562%208.47188%2011.0469L8.47813%2011.0437V11.0344H8.46875L8.4625%2011.0375C8.45625%2011.0469%208.44375%2011.0469%208.4375%2011.0375C8.43589%2011.0359%208.43475%2011.0339%208.4342%2011.0317C8.43365%2011.0295%208.43371%2011.0272%208.43437%2011.025C8.43192%2011.0261%208.42926%2011.0267%208.42656%2011.0267C8.42387%2011.0267%208.4212%2011.0261%208.41875%2011.025C8.4125%2011.0187%208.40937%2011.0094%208.41875%2011L8.425%2010.9906V10.9812Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.35645%2011H8.36189V11.0082H8.35917C8.35645%2011.0082%208.35645%2011.0027%208.35917%2011.0027'%20fill='black'/%3e%3cpath%20d='M8.35645%2011H8.36189V11.0082H8.35917C8.35645%2011.0082%208.35645%2011.0027%208.35917%2011.0027L8.35645%2011Z'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M8.38566%2011.0254L8.37598%2011.019V11.0125H8.37921L8.39212%2011.0222L8.40181%2011.0286V11.0351H8.39535L8.38566%2011.0254Z'%20fill='black'/%3e%3cpath%20d='M8.38566%2011.0254L8.37598%2011.019V11.0125H8.37921L8.39212%2011.0222L8.40181%2011.0286V11.0351H8.39535L8.38566%2011.0254Z'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M8.33211%2010.9909L8.32565%2010.9845C8.32565%2010.9845%208.32242%2010.9845%208.32565%2010.9812L8.33534%2010.9845L8.34503%2010.9877V10.9942H8.3418L8.33211%2010.9909Z'%20fill='black'/%3e%3cpath%20d='M8.33211%2010.9909L8.32565%2010.9845C8.32565%2010.9845%208.32242%2010.9845%208.32565%2010.9812L8.33534%2010.9845L8.34503%2010.9877V10.9942H8.3418L8.33211%2010.9909Z'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M8.30288%2010.9688H8.30794V10.9738H8.30288C8.30288%2010.9738%208.30035%2010.9713%208.30288%2010.9688Z'%20fill='black'/%3e%3cpath%20d='M8.30288%2010.9688H8.30794V10.9738H8.30288C8.30288%2010.9738%208.30035%2010.9713%208.30288%2010.9688Z'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M8.41442%2011.0461V11.0406H8.40625L8.40897%2011.0461H8.41442Z'%20fill='black'/%3e%3cpath%20d='M8.41442%2011.0461V11.0406H8.40625L8.40897%2011.0461H8.41442Z'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M8.43399%2011.0688L8.44024%2011.075H8.44337C8.4465%2011.075%208.44337%2011.0719%208.44337%2011.0688L8.43711%2011.0625L8.43086%2011.0563H8.42773V11.0625L8.43399%2011.0688Z'%20fill='black'/%3e%3cpath%20d='M8.43399%2011.0688L8.44024%2011.075H8.44337C8.4465%2011.075%208.44337%2011.0719%208.44337%2011.0688L8.43711%2011.0625L8.43086%2011.0563H8.42773V11.0625L8.43399%2011.0688Z'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M8.46227%2011.0925V11.0844H8.4541V11.0898H8.46227'%20fill='black'/%3e%3cpath%20d='M8.46227%2011.0925V11.0844H8.4541V11.0898H8.46227V11.0925Z'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M8.38125%2010.9094H8.3625L8.35938%2010.9375V10.9406H8.36561L8.3875%2010.925L8.37813%2010.9094'%20fill='%23C8B100'/%3e%3cpath%20d='M8.38125%2010.9094H8.3625L8.35938%2010.9375V10.9406H8.36561L8.3875%2010.925L8.37813%2010.9094'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.33105%2010.925V10.9406L8.35919%2010.9438H8.3623V10.9375L8.34668%2010.9156L8.33105%2010.925Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.33105%2010.925V10.9406L8.35919%2010.9438H8.3623V10.9375L8.34668%2010.9156L8.33105%2010.925Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.3877%2010.9562L8.3752%2010.9656L8.35645%2010.9437V10.9406H8.39081V10.9562'%20fill='%23C8B100'/%3e%3cpath%20d='M8.3877%2010.9562L8.3752%2010.9656L8.35645%2010.9437V10.9406H8.39081V10.9562'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.35376%2010.9374C8.35542%2010.9359%208.35756%2010.9351%208.35979%2010.9351C8.36201%2010.9351%208.36416%2010.9359%208.36582%2010.9374L8.36703%2010.9419L8.36582%2010.9465L8.3613%2010.9477L8.35677%2010.9465L8.35398%2010.9424L8.35376%2010.9374Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.35376%2010.9374C8.35542%2010.9359%208.35756%2010.9351%208.35979%2010.9351C8.36201%2010.9351%208.36416%2010.9359%208.36582%2010.9374L8.36703%2010.9419L8.36582%2010.9465L8.3613%2010.9477L8.35677%2010.9465L8.35398%2010.9424L8.35376%2010.9374Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.28731%2010.9094L8.28106%2010.8875L8.26855%2010.875C8.26855%2010.875%208.28106%2010.8687%208.29356%2010.8781C8.30606%2010.8875%208.29356%2010.9063%208.29356%2010.9063L8.28731%2010.9094Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.28731%2010.9094L8.28106%2010.8875L8.26855%2010.875C8.26855%2010.875%208.28106%2010.8687%208.29356%2010.8781C8.30606%2010.8875%208.29356%2010.9063%208.29356%2010.9063L8.28731%2010.9094Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.31934%2010.9187L8.30684%2010.9313L8.28809%2010.9125V10.9062H8.31934V10.9187Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.31934%2010.9187L8.30684%2010.9313L8.28809%2010.9125V10.9062H8.31934V10.9187Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.28516%2010.9063L8.29453%2010.9031V10.9125C8.29453%2010.9188%208.29141%2010.9188%208.28828%2010.9188L8.28516%2010.9094'%20fill='%23C8B100'/%3e%3cpath%20d='M8.28516%2010.9063L8.29453%2010.9031V10.9125C8.29453%2010.9188%208.29141%2010.9188%208.28828%2010.9188L8.28516%2010.9094V10.9063Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.44688%2010.9531H8.43124L8.42188%2010.975V10.9812H8.42811L8.45312%2010.9687L8.44688%2010.9531Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.44688%2010.9531H8.43124L8.42188%2010.975V10.9812H8.42811L8.45312%2010.9687L8.44688%2010.9531Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.39746%2010.9627V10.9789L8.42329%2010.9853H8.42652V10.9789L8.41361%2010.9563L8.39746%2010.9627Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.39746%2010.9627V10.9789L8.42329%2010.9853H8.42652V10.9789L8.41361%2010.9563L8.39746%2010.9627Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.45%2011L8.43437%2011.0063L8.42188%2010.9844V10.9781H8.425L8.45312%2010.9844L8.45%2011Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.45%2011L8.43437%2011.0063L8.42188%2010.9844V10.9781H8.425L8.45312%2010.9844L8.45%2011Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.41699%2010.975H8.42905C8.43053%2010.9767%208.43135%2010.9788%208.43135%2010.981C8.43135%2010.9833%208.43053%2010.9854%208.42905%2010.9871L8.42453%2010.9883L8.42001%2010.9871C8.41852%2010.9854%208.4177%2010.9833%208.4177%2010.981C8.4177%2010.9788%208.41852%2010.9767%208.42001%2010.975'%20fill='%23C8B100'/%3e%3cpath%20d='M8.41699%2010.975H8.42905C8.43053%2010.9767%208.43135%2010.9788%208.43135%2010.981C8.43135%2010.9833%208.43053%2010.9854%208.42905%2010.9871L8.42453%2010.9883L8.42001%2010.9871C8.41852%2010.9854%208.4177%2010.9833%208.4177%2010.981C8.4177%2010.9788%208.41852%2010.9767%208.42001%2010.975H8.41699Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.50762%2011.0094L8.51074%2011.025L8.48574%2011.0344H8.47949V11.0281L8.49199%2011.0031L8.50762%2011.0094Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.50762%2011.0094L8.51074%2011.025L8.48574%2011.0344H8.47949V11.0281L8.49199%2011.0031L8.50762%2011.0094Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.50058%2011.0563L8.48496%2011.0594L8.47559%2011.0344V11.0312H8.48184L8.50683%2011.0406L8.50371%2011.0563'%20fill='%23C8B100'/%3e%3cpath%20d='M8.50058%2011.0563L8.48496%2011.0594L8.47559%2011.0344V11.0312H8.48184L8.50683%2011.0406L8.50371%2011.0563'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.45645%2011.0094L8.4502%2011.025L8.47832%2011.0344H8.48145V11.0312L8.47206%2011.0062L8.45645%2011.0094Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.45645%2011.0094L8.4502%2011.025L8.47832%2011.0344H8.48145V11.0312L8.47206%2011.0062L8.45645%2011.0094Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.48446%2011.0375L8.48571%2011.0328L8.48446%2011.0281C8.48274%2011.0266%208.48052%2011.0257%208.47821%2011.0257C8.4759%2011.0257%208.47368%2011.0266%208.47196%2011.0281L8.4707%2011.0328L8.47196%2011.0375C8.47368%2011.039%208.4759%2011.0399%208.47821%2011.0399C8.48052%2011.0399%208.48274%2011.039%208.48446%2011.0375Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.48446%2011.0375L8.48571%2011.0328L8.48446%2011.0281C8.48274%2011.0266%208.48052%2011.0257%208.47821%2011.0257C8.4759%2011.0257%208.47368%2011.0266%208.47196%2011.0281L8.4707%2011.0328L8.47196%2011.0375C8.47368%2011.039%208.4759%2011.0399%208.47821%2011.0399C8.48052%2011.0399%208.48274%2011.039%208.48446%2011.0375Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.52539%2011.0938H8.55039L8.56602%2011.1031C8.56602%2011.1031%208.56914%2011.0906%208.55664%2011.0813C8.54727%2011.0719%208.53164%2011.0875%208.53164%2011.0875L8.52539%2011.0938Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.52539%2011.0938H8.55039L8.56602%2011.1031C8.56602%2011.1031%208.56914%2011.0906%208.55664%2011.0813C8.54727%2011.0719%208.53164%2011.0875%208.53164%2011.0875L8.52539%2011.0938Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.50938%2011.0656L8.5%2011.0813L8.525%2011.0969V11.0938H8.53125L8.52812%2011.0625L8.50938%2011.0656Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.50938%2011.0656L8.5%2011.0813L8.525%2011.0969V11.0938H8.53125L8.52812%2011.0625L8.50938%2011.0656Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.53116%2011.0938C8.53116%2011.0938%208.53428%2011.0906%208.53116%2011.0875H8.52178C8.51553%2011.0875%208.51553%2011.0906%208.51865%2011.0938H8.52803'%20fill='%23C8B100'/%3e%3cpath%20d='M9.7187%2010.4094V10.4281H9.6437V10.4094H9.6749V10.3687H9.653V10.3531H9.6718V10.3344H9.6905V10.3531H9.7093V10.3719H9.6905V10.4094H9.7218M8.53115%2011.0937C8.53115%2011.0937%208.53428%2011.0906%208.53115%2011.0875H8.52178C8.51553%2011.0875%208.51553%2011.0906%208.51865%2011.0937H8.52803H8.53115Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.04395%2010.7687V10.7625M5.1627%2010.7844V10.7469M5.14707%2010.7812V10.75M5.15332%2010.7812V10.75M5.13145%2010.7812V10.75M5.1377%2010.7812V10.75M5.10957%2010.7812V10.75M5.11582%2010.7812V10.75M5.1252%2010.7812V10.75M5.10332%2010.7812V10.75M5.09395%2010.7781V10.7531M5.09082%2010.7781V10.7531M5.0752%2010.775V10.7562M5.08145%2010.775V10.7562M5.06895%2010.7719V10.7562M5.0627%2010.7719V10.7594M5.05332%2010.7687V10.7594'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M5.03711%2010.7683V10.7625'%20stroke='black'%20stroke-width='0.05'/%3e%3cpath%20d='M9.52541%2010.7688V10.7625M9.64411%2010.7844V10.75M9.62541%2010.7812V10.75M9.63481%2010.7812V10.75M9.60981%2010.7812V10.75M9.61911%2010.7812V10.75M9.59101%2010.7812V10.75M9.59731%2010.7812V10.75M9.60351%2010.7812V10.75M9.58481%2010.7812V10.75M9.57541%2010.7781V10.7531M9.56911%2010.7781V10.7531M9.55661%2010.775V10.7562M9.56291%2010.775V10.7562M9.54731%2010.775V10.7562M9.54101%2010.7719V10.7594M9.53161%2010.7719V10.7594'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M9.5195%2010.7683V10.7625'%20stroke='black'%20stroke-width='0.05'/%3e%3c/symbol%3e%3csymbol%20id='flag_pt'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9.79999%204H23V19H9.79999V4Z'%20fill='%23FF0000'/%3e%3cpath%20d='M1%204H9.8V19H1V4Z'%20fill='%23006600'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.6715%2013.4042C11.5611%2013.372%206.4839%2010.4034%206.44952%209.92691L6.72797%209.49225C7.23327%2010.178%2012.424%2013.0661%2012.9361%2012.9631L12.6715%2013.4042Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.66773%209.43108C6.56805%209.68222%207.9946%2010.5064%209.70648%2011.4852C11.4218%2012.4608%2012.8999%2013.0629%2013.0065%2012.9792L13.0581%2012.889C13.0374%2012.9212%2012.9893%2012.9309%2012.9102%2012.9083C12.4462%2012.7828%2011.2396%2012.2644%209.7443%2011.4144C8.24555%2010.5644%206.94617%209.78203%206.74336%209.4504C6.72755%209.41931%206.72045%209.38496%206.72274%209.35059H6.71586L6.67461%209.42142L6.66773%209.43108ZM12.6937%2013.417C12.6765%2013.4492%2012.6387%2013.4492%2012.5733%2013.4428C12.1608%2013.4009%2010.9027%2012.8278%209.4143%2011.9939C7.6818%2011.0216%206.2518%2010.1394%206.40992%209.9076L6.45117%209.83676L6.45805%209.83998C6.32055%2010.2328%209.28023%2011.8169%209.45555%2011.9199C11.1674%2012.9116%2012.6112%2013.4943%2012.7383%2013.343L12.6937%2013.417Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.80727%2010.2167C10.9142%2010.207%2012.2823%2010.075%2013.073%209.77882L12.901%209.52124C12.437%209.76272%2011.062%209.9237%209.79701%209.94624C8.30513%209.93336%207.24982%209.80135%206.72044%209.46973L6.56232%209.74662C7.53169%2010.133%208.52857%2010.2134%209.80727%2010.2167Z'%20fill='%23FFFF00'/%3e%3cpath%20d='M9.80727%2010.2167C10.9142%2010.207%2012.2823%2010.075%2013.073%209.77882L12.901%209.52124C12.437%209.76272%2011.062%209.9237%209.79701%209.94624C8.30513%209.93336%207.24982%209.80135%206.72044%209.46973L6.56232%209.74662C7.53169%2010.133%208.52857%2010.2134%209.80727%2010.2167Z'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M13.1167%209.78524C13.0892%209.82709%2012.5736%209.99131%2011.8174%2010.1136C11.1507%2010.2083%2010.4773%2010.2545%209.80296%2010.2521C9.15699%2010.2544%208.51155%2010.2156%207.87112%2010.1362C7.07706%2010.0203%206.668%209.85929%206.51331%209.80134L6.55112%209.7305C6.98769%209.89149%207.40019%209.98809%207.88144%2010.0589C8.5172%2010.1393%209.15804%2010.1791%209.79956%2010.178C10.4703%2010.1787%2011.1402%2010.1324%2011.8036%2010.0396C12.5771%209.92047%2012.9999%209.76915%2013.0617%209.70153L13.1167%209.78847V9.78524ZM12.9655%209.52445C12.883%209.58885%2012.4636%209.72728%2011.728%209.83675C11.0927%209.92283%2010.4517%209.96588%209.80989%209.96555C9.05362%209.96555%208.43144%209.91403%207.9605%209.84964C7.21112%209.75949%206.81237%209.59206%206.668%209.54699L6.71269%209.47616C6.82612%209.53089%207.20769%209.67578%207.96737%209.77559C8.57807%209.85221%209.19374%209.88878%209.80989%209.88506C10.4471%209.88524%2011.0836%209.8422%2011.7142%209.75627C12.4533%209.65968%2012.8521%209.48581%2012.914%209.44073L12.9655%209.52445ZM6.16612%2011.4659C6.84675%2011.8104%208.36269%2011.9811%209.79612%2011.9939C11.1024%2011.9972%2012.8005%2011.8072%2013.4365%2011.4917L13.4192%2011.1472C13.2199%2011.4369%2011.398%2011.717%209.78237%2011.7074C8.16675%2011.6945%206.66456%2011.4627%206.16269%2011.16V11.4659'%20fill='%23FFFF00'/%3e%3cpath%20d='M6.16612%2011.4659C6.84675%2011.8104%208.36269%2011.9811%209.79612%2011.9939C11.1024%2011.9972%2012.8005%2011.8072%2013.4365%2011.4917L13.4192%2011.1472C13.2199%2011.4369%2011.398%2011.717%209.78237%2011.7074C8.16675%2011.6945%206.66456%2011.4627%206.16269%2011.16V11.4659M13.1167%209.78524C13.0892%209.82709%2012.5736%209.99131%2011.8174%2010.1136C11.1507%2010.2083%2010.4773%2010.2545%209.80296%2010.2521C9.15699%2010.2544%208.51155%2010.2156%207.87112%2010.1362C7.07706%2010.0203%206.668%209.85929%206.51331%209.80134L6.55112%209.7305C6.98769%209.89149%207.40019%209.98809%207.88144%2010.0589C8.51718%2010.1393%209.15804%2010.1791%209.79956%2010.178C10.4703%2010.1787%2011.1402%2010.1324%2011.8036%2010.0396C12.5771%209.92047%2012.9999%209.76915%2013.0617%209.70153L13.1167%209.78847V9.78524ZM12.9655%209.52445C12.883%209.58885%2012.4636%209.72728%2011.728%209.83675C11.0927%209.92283%2010.4517%209.96588%209.80989%209.96555C9.05362%209.96555%208.43144%209.91403%207.9605%209.84964C7.21112%209.75949%206.81237%209.59206%206.668%209.54699L6.71269%209.47616C6.82612%209.53089%207.20769%209.67578%207.96737%209.77559C8.57807%209.85221%209.19374%209.88878%209.80989%209.88506C10.4471%209.88524%2011.0836%209.8422%2011.7142%209.75627C12.4533%209.65968%2012.8521%209.48581%2012.914%209.44073L12.9655%209.52445Z'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M13.4713%2011.4176V11.4981C13.375%2011.6076%2012.7768%2011.7686%2012.0275%2011.8845C11.283%2011.9847%2010.5315%2012.0321%209.77939%2012.0261C9.06621%2012.0318%208.35364%2011.9855%207.64814%2011.8877C7.1217%2011.8307%206.6073%2011.7005%206.12189%2011.5013V11.408C6.45532%2011.614%207.35594%2011.7686%207.65844%2011.8136C8.20157%2011.8909%208.89939%2011.9489%209.77939%2011.9489C10.7041%2011.9489%2011.4431%2011.8877%2012.0138%2011.8072C12.5534%2011.7331%2013.32%2011.5432%2013.4713%2011.4176ZM13.4713%2011.1278V11.2083C13.375%2011.3146%2012.7768%2011.4756%2012.0275%2011.5915C11.2831%2011.6928%2010.5316%2011.7412%209.77939%2011.7364C9.06627%2011.7403%208.35384%2011.694%207.64814%2011.5979C7.1217%2011.5409%206.6073%2011.4107%206.12189%2011.2116V11.115C6.45532%2011.3242%207.35939%2011.4756%207.65844%2011.5206C8.36067%2011.617%209.06969%2011.6633%209.77939%2011.6591C10.7041%2011.6591%2011.4466%2011.5947%2012.0138%2011.5142C12.5534%2011.4434%2013.32%2011.2534%2013.4713%2011.1278ZM9.79314%2013.343C8.22564%2013.3366%206.88158%2012.9438%206.59626%2012.8794L6.80251%2013.182C7.7667%2013.5019%208.78414%2013.6578%209.80694%2013.6424C10.9997%2013.6102%2012.0413%2013.5233%2012.7734%2013.1885L12.9866%2012.8729C12.4882%2013.0951%2010.7866%2013.343%209.78969%2013.343'%20fill='%23FFFF00'/%3e%3cpath%20d='M9.79314%2013.343C8.22564%2013.3366%206.88158%2012.9438%206.59626%2012.8794L6.80251%2013.182C7.7667%2013.5019%208.78414%2013.6578%209.80694%2013.6424C10.9997%2013.6102%2012.0413%2013.5233%2012.7734%2013.1885L12.9866%2012.8729C12.4882%2013.0951%2010.7866%2013.343%209.78969%2013.343M13.4713%2011.4176V11.4981C13.375%2011.6076%2012.7768%2011.7686%2012.0275%2011.8845C11.283%2011.9847%2010.5315%2012.0321%209.77939%2012.0261C9.06621%2012.0318%208.35364%2011.9855%207.64814%2011.8877C7.1217%2011.8307%206.6073%2011.7005%206.12189%2011.5013V11.408C6.45532%2011.614%207.35594%2011.7686%207.65844%2011.8136C8.20157%2011.8909%208.89939%2011.9489%209.77939%2011.9489C10.7041%2011.9489%2011.4431%2011.8877%2012.0138%2011.8072C12.5534%2011.7331%2013.32%2011.5432%2013.4713%2011.4176ZM13.4713%2011.1278V11.2083C13.375%2011.3146%2012.7768%2011.4756%2012.0275%2011.5915C11.2831%2011.6928%2010.5316%2011.7412%209.77939%2011.7364C9.06627%2011.7403%208.35384%2011.694%207.64814%2011.5979C7.1217%2011.5409%206.6073%2011.4107%206.12189%2011.2116V11.115C6.45532%2011.3242%207.35939%2011.4756%207.65844%2011.5206C8.36067%2011.617%209.06969%2011.6633%209.77939%2011.6591C10.7041%2011.6591%2011.4466%2011.5947%2012.0138%2011.5142C12.5534%2011.4434%2013.32%2011.2534%2013.4713%2011.1278Z'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.857%2013.1176C12.8257%2013.1611%2012.7937%2013.204%2012.7608%2013.2464C12.417%2013.3623%2011.867%2013.4847%2011.6402%2013.5169C11.0313%2013.6231%2010.4135%2013.677%209.79421%2013.6778C8.40546%2013.6585%207.26764%2013.4042%206.73484%2013.1852L6.69014%2013.1176L6.69702%2013.1047L6.76921%2013.1337C7.74753%2013.4369%208.77061%2013.5945%209.80111%2013.6006C10.4474%2013.6006%2011.0902%2013.533%2011.6092%2013.446C12.4067%2013.2947%2012.7299%2013.182%2012.8295%2013.1305L12.8536%2013.1176H12.857ZM13.0392%2012.8343C13.0166%2012.872%2012.9936%2012.9096%2012.9704%2012.947C12.7849%2013.0114%2012.2829%2013.1466%2011.5508%2013.2432C11.0695%2013.3044%2010.7704%2013.3655%209.81145%2013.3816C8.71505%2013.3713%207.62544%2013.2196%206.57327%2012.9309L6.53546%2012.8504C7.60446%2013.1271%208.70601%2013.2785%209.81486%2013.3011C10.6914%2013.285%2011.0661%2013.2239%2011.5439%2013.1627C12.3964%2013.0403%2012.8261%2012.9051%2012.9533%2012.8697C12.9534%2012.8675%2012.9534%2012.8654%2012.9533%2012.8633L13.0427%2012.8311L13.0392%2012.8343Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M13.0583%2011.1955C13.0617%2012.1614%2012.5324%2013.0307%2012.1096%2013.4106C11.4851%2013.9811%2010.6512%2014.306%209.77894%2014.3186C8.73739%2014.3347%207.75769%2013.7004%207.49301%2013.4203C6.90088%2012.8321%206.56387%2012.0585%206.5477%2011.2502C6.60957%2010.1941%207.05301%209.46002%207.69239%208.95453C8.31349%208.47562%209.09481%208.21686%209.89922%208.22366C10.3689%208.24498%2010.8285%208.35795%2011.2488%208.55534C11.6691%208.75272%2012.0407%209.03015%2012.3399%209.36987C12.7696%209.85926%2012.9586%2010.3905%2013.0583%2011.1955ZM9.78582%207.89203C10.7474%207.892%2011.6701%208.24803%2012.3527%208.88251C13.0352%209.51699%2013.4223%2010.3785%2013.4296%2011.2792C13.4296%2011.7261%2013.3356%2012.1686%2013.153%2012.5815C12.9704%2012.9944%2012.7028%2013.3696%2012.3654%2013.6856C12.0279%2014.0016%2011.6274%2014.2523%2011.1865%2014.4233C10.7458%2014.5944%2010.2733%2014.6824%209.79614%2014.6824C9.31899%2014.6824%208.84651%2014.5944%208.40568%2014.4233C7.96485%2014.2523%207.5643%2014.0016%207.22691%2013.6856C6.88951%2013.3696%206.62188%2012.9944%206.43928%2012.5815C6.25668%2012.1686%206.16269%2011.7261%206.16269%2011.2792C6.15926%209.41172%207.78864%207.89203%209.78582%207.89203Z'%20fill='%23FFFF00'/%3e%3cpath%20d='M9.78582%207.89203C10.7474%207.892%2011.6701%208.24803%2012.3527%208.88251C13.0352%209.51699%2013.4223%2010.3785%2013.4296%2011.2792C13.4296%2011.7261%2013.3356%2012.1686%2013.153%2012.5815C12.9704%2012.9944%2012.7028%2013.3696%2012.3654%2013.6856C12.0279%2014.0016%2011.6274%2014.2523%2011.1865%2014.4233C10.7458%2014.5944%2010.2733%2014.6824%209.79614%2014.6824C9.31899%2014.6824%208.84651%2014.5944%208.40568%2014.4233C7.96485%2014.2523%207.5643%2014.0016%207.22691%2013.6856C6.88951%2013.3696%206.62188%2012.9944%206.43928%2012.5815C6.25668%2012.1686%206.16269%2011.7261%206.16269%2011.2792C6.15926%209.41172%207.78864%207.89203%209.78582%207.89203ZM13.0583%2011.1955C13.0617%2012.1614%2012.5324%2013.0307%2012.1096%2013.4106C11.4851%2013.9811%2010.6512%2014.306%209.77894%2014.3186C8.73739%2014.3347%207.75769%2013.7004%207.49301%2013.4203C6.90088%2012.8321%206.56387%2012.0585%206.5477%2011.2502C6.60957%2010.1941%207.05301%209.46002%207.69239%208.95453C8.31349%208.47562%209.09481%208.21686%209.89922%208.22366C10.3689%208.24498%2010.8285%208.35795%2011.2488%208.55534C11.6691%208.75272%2012.0407%209.03015%2012.3399%209.36987C12.7696%209.85926%2012.9586%2010.3905%2013.0583%2011.1955Z'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.79678%207.87598C11.7974%207.87598%2013.4268%209.40211%2013.4268%2011.2759C13.4268%2013.1498%2011.7974%2014.6759%209.80023%2014.6759C7.80303%2014.6759%206.17023%2013.1498%206.17023%2011.2759C6.17023%209.40211%207.7996%207.87598%209.80023%207.87598H9.79678ZM6.24585%2011.2727C6.24585%2013.1015%207.85116%2014.5987%209.79678%2014.5987C11.7424%2014.5987%2013.3477%2013.1015%2013.3477%2011.2727C13.3477%209.44397%2011.7424%207.94681%209.79678%207.94681C7.85116%207.94681%206.24585%209.44397%206.24585%2011.2727Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.80045%208.1593C10.6812%208.16185%2011.5251%208.49069%2012.1478%209.07402C12.7707%209.65736%2013.1218%2010.4478%2013.1245%2011.2727C13.1218%2012.098%2012.7708%2012.8888%2012.1481%2013.4726C11.5255%2014.0564%2010.6815%2014.386%209.80045%2014.3894C7.97856%2014.3894%206.47638%2012.9856%206.47638%2011.2727C6.48%2010.448%206.83137%209.65811%207.45397%209.07496C8.07657%208.4918%208.91995%208.16269%209.80045%208.1593ZM6.55544%2011.2727C6.55544%2012.947%208.01981%2014.3121%209.80045%2014.3121C11.581%2014.3121%2013.0454%2012.9438%2013.0454%2011.2727C13.0454%209.59851%2011.581%208.23336%209.80045%208.23336C8.94093%208.23675%208.11765%208.55805%207.50987%209.12732C6.9021%209.69658%206.55906%2010.4677%206.55544%2011.2727Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.94741%207.85986H9.63458V14.6953H9.944L9.94741%207.85986Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.91385%207.82123H9.99293V14.7339H9.91725V7.82123H9.91385ZM9.60449%207.82123H9.68699V14.7339H9.60792V7.82123H9.60449Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M13.4291%2011.408V11.1568L13.2091%2010.9636L11.9613%2010.6545L10.167%2010.4839L8.00132%2010.5869L6.46132%2010.9282L6.15195%2011.1439V11.3983L6.93914%2011.0667L8.80914%2010.793H10.607L11.927%2010.9282L12.8413%2011.1343L13.4291%2011.408Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.80001%2010.7511C10.6559%2010.7511%2011.4843%2010.8252%2012.1479%2010.9443C12.8284%2011.0731%2013.3063%2011.2341%2013.4713%2011.4112V11.5013C13.2718%2011.276%2012.6291%2011.115%2012.1306%2011.0184C11.4775%2010.9025%2010.6525%2010.8252%209.79657%2010.8252C8.89939%2010.8252%208.06064%2010.9089%207.41439%2011.0248C6.89876%2011.1214%206.20783%2011.3146%206.12189%2011.5013V11.408C6.16657%2011.2792%206.68221%2011.086%207.40408%2010.9475C8.05376%2010.8284%208.89251%2010.7511%209.79657%2010.7511H9.80001ZM9.80001%2010.4581C10.5872%2010.4567%2011.373%2010.5213%2012.1479%2010.6513C12.8284%2010.7801%2013.3063%2010.9411%2013.4713%2011.1214V11.2083C13.2718%2010.9862%2012.6291%2010.822%2012.1306%2010.7286C11.4775%2010.6095%2010.6525%2010.5354%209.79657%2010.5354C8.99878%2010.5331%208.20246%2010.5999%207.41782%2010.735C6.91939%2010.822%206.20094%2011.0216%206.12189%2011.2083V11.1182C6.17001%2010.9894%206.69251%2010.7866%207.40408%2010.6578C8.05721%2010.5386%208.89251%2010.4581%209.80001%2010.4581ZM9.77939%208.97062C11.1304%208.96418%2012.3094%209.1477%2012.8491%209.40528L13.045%209.72725C12.5775%209.48899%2011.3057%209.24429%209.78283%209.27649C8.54189%209.28615%207.21501%209.40528%206.55158%209.74012L6.78533%209.37308C7.33189%209.10584%208.61751%208.97062%209.77939%208.97062Z'%20fill='%23FFFF00'/%3e%3cpath%20d='M9.77939%208.97062C11.1304%208.96418%2012.3094%209.1477%2012.8491%209.40528L13.045%209.72725C12.5775%209.48899%2011.3056%209.24429%209.78283%209.27649C8.54189%209.28615%207.21501%209.40528%206.55158%209.74012L6.78533%209.37308C7.33189%209.10584%208.61751%208.97062%209.77939%208.97062ZM9.80001%2010.7511C10.6559%2010.7511%2011.4843%2010.8252%2012.1479%2010.9443C12.8284%2011.0731%2013.3063%2011.2341%2013.4713%2011.4112V11.5013C13.2718%2011.276%2012.6291%2011.115%2012.1306%2011.0184C11.4775%2010.9025%2010.6525%2010.8252%209.79657%2010.8252C8.89939%2010.8252%208.06064%2010.9089%207.41439%2011.0248C6.89876%2011.1214%206.20783%2011.3146%206.12189%2011.5013V11.408C6.16657%2011.2792%206.68221%2011.086%207.40408%2010.9475C8.05376%2010.8284%208.89251%2010.7511%209.79657%2010.7511H9.80001ZM9.80001%2010.4581C10.5872%2010.4567%2011.373%2010.5213%2012.1479%2010.6513C12.8284%2010.7801%2013.3063%2010.9411%2013.4713%2011.1214V11.2083C13.2718%2010.9862%2012.6291%2010.822%2012.1306%2010.7286C11.4775%2010.6095%2010.6525%2010.5354%209.79657%2010.5354C8.99878%2010.5331%208.20246%2010.5999%207.41782%2010.735C6.91939%2010.822%206.20094%2011.0216%206.12189%2011.2083V11.1182C6.17001%2010.9894%206.69251%2010.7866%207.40408%2010.6578C8.05721%2010.5386%208.89251%2010.4581%209.80001%2010.4581Z'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.79936%209.23465C10.5047%209.2235%2011.2098%209.26983%2011.9065%209.3731C12.4565%209.46969%2012.9825%209.61136%2013.0581%209.68863L13.1165%209.78522C12.9343%209.67575%2012.4772%209.55018%2011.8928%209.44715C11.3084%209.34412%2010.5625%209.3087%209.79592%209.31192C8.92623%209.3087%208.24905%209.35056%207.67155%209.44715C7.27345%209.49941%206.88694%209.61139%206.52686%209.77878L6.5853%209.67897C6.79155%209.58238%207.11123%209.46325%207.65436%209.36988C8.25592%209.26685%208.93998%209.23787%209.79936%209.23465ZM9.79936%208.94488C10.535%208.93844%2011.2638%208.97708%2011.8309%209.07367C12.1984%209.12477%2012.5541%209.23362%2012.8828%209.39564L12.9688%209.52442C12.8243%209.3731%2012.2813%209.22821%2011.7965%209.15094C11.2328%209.05757%2010.535%209.02215%209.79936%209.01571C9.11458%209.00999%208.43048%209.05738%207.75405%209.15738C7.40036%209.20354%207.05684%209.30246%206.73655%209.45037L6.81217%209.34412C7.01155%209.24753%207.33467%209.15738%207.7403%209.08333C8.42119%208.98201%209.10997%208.93462%209.79936%208.94166V8.94488ZM11.6006%2012.6894C11.0048%2012.5928%2010.4005%2012.5497%209.79592%2012.5606C7.54436%2012.5864%206.81905%2012.9953%206.72967%2013.1176L6.5578%2012.86C7.1353%2012.4737%208.35905%2012.2547%209.80968%2012.2741C10.5625%2012.2869%2011.2122%2012.3352%2011.7553%2012.435L11.6006%2012.6926'%20fill='%23FFFF00'/%3e%3cpath%20d='M11.6006%2012.6894C11.0048%2012.5928%2010.4005%2012.5497%209.79592%2012.5606C7.54436%2012.5864%206.81905%2012.9953%206.72967%2013.1176L6.5578%2012.86C7.1353%2012.4737%208.35905%2012.2547%209.80968%2012.2741C10.5625%2012.2869%2011.2122%2012.3352%2011.7553%2012.435L11.6006%2012.6926M9.79936%209.23465C10.5047%209.2235%2011.2098%209.26983%2011.9065%209.3731C12.4565%209.46969%2012.9825%209.61136%2013.0581%209.68863L13.1165%209.78522C12.9343%209.67575%2012.4772%209.55018%2011.8928%209.44715C11.3084%209.34412%2010.5625%209.3087%209.79592%209.31192C8.92623%209.3087%208.24905%209.35056%207.67155%209.44715C7.27345%209.49941%206.88694%209.61139%206.52686%209.77878L6.5853%209.67897C6.79155%209.58238%207.11123%209.46325%207.65436%209.36988C8.25592%209.26685%208.93998%209.23787%209.79936%209.23465ZM9.79936%208.94488C10.535%208.93844%2011.2638%208.97708%2011.8309%209.07367C12.1984%209.12477%2012.5541%209.23362%2012.8828%209.39564L12.9688%209.52442C12.8243%209.3731%2012.2813%209.22821%2011.7965%209.15094C11.2328%209.05757%2010.535%209.02215%209.79936%209.01571C9.11458%209.00999%208.43048%209.05738%207.75405%209.15738C7.40036%209.20354%207.05684%209.30246%206.73655%209.45037L6.81217%209.34412C7.01155%209.24753%207.33467%209.15738%207.7403%209.08333C8.42119%208.98201%209.10997%208.93462%209.79936%208.94166V8.94488Z'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.78541%2012.5252C10.4111%2012.5349%2011.0229%2012.5574%2011.6175%2012.6604L11.5763%2012.7313C11.0263%2012.6347%2010.435%2012.6025%209.78884%2012.6025C8.95353%2012.596%208.11478%2012.6701%207.38259%2012.8665C7.15228%2012.9277%206.77072%2013.0661%206.72947%2013.182L6.68822%2013.1176C6.70197%2013.0468%206.92884%2012.9051%207.36197%2012.7956C8.20072%2012.5703%208.98447%2012.5284%209.78541%2012.5252ZM9.81289%2012.229C10.4732%2012.2283%2011.1323%2012.2822%2011.7825%2012.39L11.7379%2012.464C11.103%2012.3549%2010.4585%2012.3021%209.81289%2012.3063C8.98103%2012.3063%208.09759%2012.3642%207.29322%2012.5831C7.03541%2012.654%206.58509%2012.8085%206.57134%2012.9277L6.53009%2012.8568C6.53697%2012.7474%206.92541%2012.6025%207.27603%2012.5091C8.08384%2012.2869%208.97072%2012.2322%209.81289%2012.229Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M13.01%2012.8987L12.7419%2013.2947L11.9615%2012.6475L9.9472%2011.3758L7.67156%2010.207L6.49249%209.83033L6.74344%209.39245L6.82937%209.35059L7.56156%209.52123L9.98152%2010.69L11.3772%2011.5142L12.5494%2012.303L13.0272%2012.8182L13.01%2012.8987Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.45124%209.83996C6.65749%209.71117%208.17686%2010.3422%209.77186%2011.2438C11.3565%2012.1453%2012.8759%2013.1627%2012.7384%2013.3527L12.6938%2013.4203L12.6731%2013.4364C12.6765%2013.4331%2012.7006%2013.4042%2012.6731%2013.3366C12.6044%2013.1273%2011.525%2012.3223%209.74093%2011.3114C7.99811%2010.3422%206.54749%209.75625%206.40656%209.92368L6.45124%209.83996ZM13.065%2012.8955C13.1956%2012.6508%2011.7863%2011.6559%2010.0365%2010.6867C8.24906%209.73693%206.95656%209.1767%206.71936%209.34412L6.67124%209.4375C6.67124%209.44072%206.67124%209.43106%206.68499%209.4214C6.72624%209.38921%206.79843%209.3892%206.82936%209.3892C7.23499%209.39563%208.39343%209.8947%2010.0194%2010.7672C10.7344%2011.1536%2013.0306%2012.5381%2013.0203%2012.9244C13.0203%2012.9566%2013.0238%2012.9631%2013.01%2012.9824L13.0684%2012.8987L13.065%2012.8955Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.62256%2011.6516C7.6231%2011.9182%207.68009%2012.182%207.79023%2012.4279C7.90038%2012.6737%208.06148%2012.8966%208.26422%2013.0837C8.4645%2013.2742%208.70302%2013.4257%208.96608%2013.5294C9.22912%2013.6331%209.51148%2013.6871%209.7969%2013.6882C10.3745%2013.6881%2010.9285%2013.4732%2011.3369%2013.0906C11.5389%2012.9024%2011.6993%2012.6788%2011.8088%2012.4324C11.9183%2012.1861%2011.9747%2011.9219%2011.9749%2011.655V8.93503L7.62256%208.92816V11.6516Z'%20fill='white'%20stroke='black'%20stroke-width='0.169697'/%3e%3cpath%20d='M7.70099%2011.655C7.70176%2011.9108%207.75659%2012.1638%207.86231%2012.3996C7.96805%2012.6354%208.12258%2012.8492%208.31699%2013.0288C8.70737%2013.3963%209.23747%2013.6038%209.79099%2013.6057C10.3435%2013.606%2010.8736%2013.401%2011.265%2013.0356C11.4587%2012.8558%2011.6126%2012.6418%2011.7176%2012.4061C11.8228%2012.1703%2011.877%2011.9174%2011.8774%2011.6619V9.01746H7.70832V11.655H7.70099ZM11.045%209.8108V11.4902L11.0414%2011.6653C11.0426%2011.8188%2011.0108%2011.9708%2010.9477%2012.1125C10.8847%2012.2541%2010.7919%2012.3824%2010.6746%2012.4896C10.4415%2012.7087%2010.1249%2012.8323%209.79466%2012.833C9.44999%2012.833%209.14565%2012.6956%208.91833%2012.4827C8.68435%2012.2643%208.55247%2011.9679%208.55165%2011.6585V9.80393L11.045%209.8108Z'%20fill='%23FF0000'%20stroke='black'%20stroke-width='0.121212'/%3e%3cpath%20d='M7.97382%209.70777C7.97749%209.51889%208.12049%209.47424%208.12049%209.47424C8.12415%209.47424%208.27815%209.52232%208.27815%209.71121H7.97382'%20fill='%23FFFF00'/%3e%3cpath%20d='M7.8488%209.47767L7.82313%209.69404H7.97713C7.97713%209.51545%208.1238%209.48798%208.1238%209.48798C8.12747%209.48798%208.27047%209.52576%208.27413%209.69404H8.42813L8.3988%209.47424H7.8488V9.47767ZM7.81213%209.69747H8.43547C8.44647%209.69747%208.45747%209.70778%208.45747%209.72151C8.45747%209.73869%208.44647%209.74899%208.43547%209.74899H7.81213C7.80113%209.74899%207.79013%209.73869%207.79013%209.72151C7.79013%209.70778%207.80113%209.69747%207.81579%209.69747H7.81213Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.121212'/%3e%3cpath%20d='M8.04091%209.69402C8.04091%209.58068%208.12524%209.54978%208.12524%209.54978C8.12524%209.54978%208.20958%209.58412%208.20958%209.69402H8.04091ZM7.82824%209.38493H8.42591C8.43691%209.38493%208.44791%209.39866%208.44791%209.4124C8.44791%209.4227%208.43691%209.43301%208.42591%209.43301H7.82824C7.81724%209.43301%207.80624%209.4227%207.80624%209.40897C7.80624%209.39866%207.81724%209.38836%207.82824%209.38836V9.38493ZM7.84291%209.43644H8.40758C8.41858%209.43644%208.42958%209.44674%208.42958%209.46048C8.42958%209.47422%208.41858%209.48452%208.40758%209.48452H7.83924C7.82458%209.48452%207.81724%209.47422%207.81724%209.46048C7.81724%209.44674%207.82458%209.43644%207.83924%209.43644H7.84291ZM8.02624%209.0724H8.07024V9.09987H8.10324V9.0724H8.15091V9.10331H8.18391V9.06897H8.22791V9.13765C8.22791%209.15139%208.22058%209.15826%208.20958%209.15826H8.04824C8.03724%209.15826%208.02624%209.15139%208.02624%209.14109V9.0724ZM8.19491%209.16513L8.20591%209.38493H8.04824L8.05924%209.16169H8.19491'%20fill='%23FFFF00'/%3e%3cpath%20d='M8.19491%209.16513L8.20591%209.38493H8.04824L8.05924%209.16169H8.19491M8.04091%209.69402C8.04091%209.58068%208.12524%209.54978%208.12524%209.54978C8.12524%209.54978%208.20958%209.58412%208.20958%209.69402H8.04091ZM7.82824%209.38493H8.42591C8.43691%209.38493%208.44791%209.39866%208.44791%209.4124C8.44791%209.4227%208.43691%209.43301%208.42591%209.43301H7.82824C7.81724%209.43301%207.80624%209.4227%207.80624%209.40897C7.80624%209.39866%207.81724%209.38836%207.82824%209.38836V9.38493ZM7.84291%209.43644H8.40758C8.41858%209.43644%208.42958%209.44674%208.42958%209.46048C8.42958%209.47422%208.41858%209.48452%208.40758%209.48452H7.83924C7.82458%209.48452%207.81724%209.47422%207.81724%209.46048C7.81724%209.44674%207.82458%209.43644%207.83924%209.43644H7.84291ZM8.02624%209.0724H8.07024V9.09987H8.10324V9.0724H8.15091V9.10331H8.18391V9.06897H8.22791V9.13765C8.22791%209.15139%208.22058%209.15826%208.20958%209.15826H8.04824C8.03724%209.15826%208.02624%209.15139%208.02624%209.14109V9.0724Z'%20stroke='black'%20stroke-width='0.121212'/%3e%3cpath%20d='M8.00341%209.26819V9.38495H7.85675V9.26819H8.00341Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.121212'/%3e%3cpath%20d='M7.8299%209.17889H7.87391V9.21323H7.90691V9.17889H7.95091V9.21323H7.98391V9.17889H8.02791V9.24757C8.02791%209.26131%208.02057%209.26818%208.00957%209.26818H7.8519C7.84607%209.26818%207.84047%209.26601%207.83634%209.26215C7.83222%209.25828%207.8299%209.25304%207.8299%209.24757V9.17889Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.121212'/%3e%3cpath%20d='M8.10809%209.23384C8.10809%209.21323%208.14109%209.21323%208.14109%209.23384V9.28879H8.10809V9.23384Z'%20fill='black'/%3e%3cpath%20d='M7.91473%209.30934C7.91473%209.28873%207.94407%209.28873%207.94407%209.30934V9.35055H7.91473V9.30934Z'%20fill='black'/%3e%3cpath%20d='M9.52824%2011.3562C9.52758%2011.4287%209.55642%2011.4987%209.6089%2011.552C9.63339%2011.5776%209.66333%2011.5982%209.69679%2011.6124C9.73025%2011.6266%209.76651%2011.6341%209.8032%2011.6344C9.8802%2011.6344%209.94994%2011.6001%209.99757%2011.552C10.05%2011.4987%2010.0789%2011.4287%2010.0782%2011.3562V10.9853H9.52824V11.3562Z'%20fill='%23003399'/%3e%3cpath%20d='M9.65626%2011.1777C9.68663%2011.1777%209.71126%2011.1546%209.71126%2011.1261C9.71126%2011.0977%209.68663%2011.0746%209.65626%2011.0746C9.62588%2011.0746%209.60126%2011.0977%209.60126%2011.1261C9.60126%2011.1546%209.62588%2011.1777%209.65626%2011.1777Z'%20fill='white'/%3e%3cpath%20d='M9.96027%2011.1777C9.99063%2011.1777%2010.0153%2011.1546%2010.0153%2011.1261C10.0153%2011.0977%209.99063%2011.0746%209.96027%2011.0746C9.92991%2011.0746%209.90527%2011.0977%209.90527%2011.1261C9.90527%2011.1546%209.92991%2011.1777%209.96027%2011.1777Z'%20fill='white'/%3e%3cpath%20d='M9.8056%2011.315C9.83596%2011.315%209.8606%2011.292%209.8606%2011.2635C9.8606%2011.2351%209.83596%2011.212%209.8056%2011.212C9.7752%2011.212%209.75058%2011.2351%209.75058%2011.2635C9.75058%2011.292%209.7752%2011.315%209.8056%2011.315Z'%20fill='white'/%3e%3cpath%20d='M9.65626%2011.4593C9.68663%2011.4593%209.71126%2011.4362%209.71126%2011.4078C9.71126%2011.3793%209.68663%2011.3562%209.65626%2011.3562C9.62588%2011.3562%209.60126%2011.3793%209.60126%2011.4078C9.60126%2011.4362%209.62588%2011.4593%209.65626%2011.4593Z'%20fill='white'/%3e%3cpath%20d='M9.96027%2011.4593C9.99063%2011.4593%2010.0153%2011.4362%2010.0153%2011.4078C10.0153%2011.3793%209.99063%2011.3562%209.96027%2011.3562C9.92991%2011.3562%209.90527%2011.3793%209.90527%2011.4078C9.90527%2011.4362%209.92991%2011.4593%209.96027%2011.4593Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='flag_ru'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0.5%204.5H23.5V19.5H0.5V4.5Z'%20fill='%23F5F5F5'%20stroke='%23C7CCD1'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%209.15625H23V18.5312H1V9.15625Z'%20fill='%230039A6'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2014H23V19H1V14Z'%20fill='%23D52B1E'/%3e%3c/symbol%3e%3csymbol%20id='flag_th'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M23%204H1V19H23V4Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%204H23V19H1V4Z'%20fill='%23F4F5F8'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%209.07812H23V14.0781H1V9.07812Z'%20fill='%232D2A4A'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%204H23V6.57812H1V4ZM1%2016.5H23V19H1V16.5Z'%20fill='%23A51931'/%3e%3c/symbol%3e%3csymbol%20id='flag_vi'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M2.25098%204H22.249V19H2.25098V4Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%204H23V19H1V4Z'%20fill='%23EC0015'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M14.9922%2015.1621L12.3672%2013.208L9.75977%2015.1797L10.7266%2011.9688L8.11914%209.98535L11.3447%209.95605L12.3467%206.75098L13.3633%209.94727L16.5889%209.9502L13.9961%2011.9541L14.9893%2015.165L14.9922%2015.1621Z'%20fill='%23FFFF00'/%3e%3c/symbol%3e%3csymbol%20id='fly_dollar'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M23.7305%2011.3262C22.0073%208.92112%2018.4447%2012.4607%2011.9428%2013.1801C9.53552%2013.4461%207.36646%2015.3723%204.57003%2015.1887C3.42343%2015.1133%201.82233%2011.9523%200.623675%2012.4562C0.00699442%2012.7158%20-0.275985%2013.5823%200.358049%2014.2333L7.39782%2022.282C7.39782%2022.282%207.75555%2022.6772%208.96088%2022.4035C9.25788%2022.4872%2013.7228%2020.7728%2016.3043%2017.3406C16.9223%2016.5189%2017.6592%2015.8346%2018.422%2015.2629C20.8987%2013.5082%2023.591%2012.8968%2023.591%2012.8968C23.9354%2012.6244%2024.0162%2012.3347%2023.9975%2012.0834C24.0202%2011.6639%2023.7305%2011.3262%2023.7305%2011.3262Z'%20fill='%23218321'/%3e%3cpath%20d='M7.53588%206.97545C4.94703%2010.3899%200.413302%2012.0074%200.413302%2012.0074C-0.432538%2012.6883%200.281909%2013.4909%200.281909%2013.4909L7.42502%2021.5288C7.42502%2021.5288%207.78224%2021.9301%208.9853%2021.6517C8.9853%2021.6517%2013.519%2020.0375%2016.1072%2016.623C18.7754%2013.1045%2023.587%2011.9937%2023.587%2011.9937C24.4322%2011.3128%2023.7184%2010.5089%2023.7184%2010.5089L16.5753%202.47229C16.5753%202.47229%2016.2181%202.07036%2015.015%202.34742C15.015%202.34742%2010.2041%203.45565%207.53588%206.97545Z'%20fill='%23A7D28B'/%3e%3cpath%20d='M14.625%2013.5C16.489%2013.5%2018%2011.8211%2018%209.75C18%207.67893%2016.489%206%2014.625%206C12.761%206%2011.25%207.67893%2011.25%209.75C11.25%2011.8211%2012.761%2013.5%2014.625%2013.5Z'%20fill='%23218321'/%3e%3cpath%20d='M8.71135%2021C8.13894%2021%207.92907%2020.7881%207.90048%2020.7558L1.78711%2013.659C1.77542%2013.6455%201.46549%2013.2927%201.50318%2012.8442C1.52592%2012.5722%201.66756%2012.3299%201.92356%2012.1238L1.96449%2012.0992C2.00412%2012.0837%205.96882%2010.4631%208.19092%207.53413L8.32086%207.63105L8.19092%207.53413C10.5417%204.43517%2014.5967%203.10538%2014.637%203.09246C15.7707%202.83012%2016.1417%203.20489%2016.1814%203.24882L22.2142%2010.385C22.2252%2010.3966%2022.5345%2010.7507%2022.4968%2011.1998C22.4741%2011.4711%2022.3324%2011.7135%2022.0764%2011.9196L22.0121%2011.9512C21.9725%2011.9609%2018.0299%2012.9353%2015.7461%2015.9451C13.4726%2018.9433%209.50403%2020.883%209.4644%2020.9018C9.16292%2020.9729%208.91472%2021%208.71135%2021ZM8.14543%2020.5432C8.14608%2020.5432%208.43911%2020.812%209.35719%2020.6C9.36239%2020.5929%2013.2615%2018.6861%2015.4881%2015.7513C17.7213%2012.808%2021.4819%2011.7568%2021.8991%2011.6475C22.066%2011.5047%2022.1583%2011.3464%2022.1732%2011.1765C22.2005%2010.8663%2021.9705%2010.5995%2021.9686%2010.5969L15.9358%203.46012C15.9345%203.46012%2015.6434%203.19196%2014.7247%203.4039C14.698%203.41295%2010.7385%204.71301%208.45081%207.72862C6.2638%2010.6111%202.44789%2012.2485%202.11068%2012.3893C1.93655%2012.5347%201.84169%2012.6969%201.82674%2012.8707C1.80075%2013.1783%202.02946%2013.4439%202.03141%2013.4464L8.14543%2020.5432Z'%20fill='%23218321'/%3e%3cpath%20d='M14.2537%2015.0185L14.25%2019.0951L14.5591%2019.5C15.1617%2018.8933%2015.7407%2018.2111%2016.2413%2017.4439C16.7606%2016.6492%2017.3638%2015.969%2018%2015.3946L17.6996%2015L14.2537%2015.0185Z'%20fill='%23FCB100'/%3e%3cpath%20d='M17.9881%2014.8637L9.68807%205.25C9.01377%205.79257%208.36602%206.42535%207.81517%207.17366C7.27692%207.90444%206.65041%208.54761%206%209.11484L6.9703%2010.2383L6.96964%2010.2389L14.3199%2018.75C14.9703%2018.1821%2015.5895%2017.5325%2016.1284%2016.801C16.6793%2016.0534%2017.3264%2015.4212%2018%2014.8787L17.9874%2014.8637H17.9881Z'%20fill='%23FCB100'/%3e%3cpath%20d='M9.35578%2015.2815C8.31886%2014.0527%206.12382%2016.0465%205.49781%2015.3048C5.19479%2014.9456%205.38992%2014.4798%205.78817%2014.144C6.45747%2013.5775%206.9403%2013.9074%207.24332%2013.6508C7.45843%2013.4696%207.44711%2013.2477%207.31924%2013.0951C7.02222%2012.7439%206.26301%2012.9272%205.67296%2013.2683L5.38593%2012.9285C5.20678%2012.7166%204.88978%2012.6893%204.678%2012.8685C4.46622%2013.0484%204.43958%2013.3643%204.61873%2013.5762L4.91575%2013.9287C4.46489%2014.5271%204.31171%2015.3215%204.84516%2015.9525C5.84145%2017.132%208.0638%2015.1715%208.76307%2016.0005C9.00548%2016.2884%208.93755%2016.8375%208.42742%2017.2679C7.66288%2017.915%206.97027%2017.6118%206.65926%2017.8744C6.50742%2018.0016%206.48012%2018.2442%206.64195%2018.4368C6.89968%2018.7413%207.72082%2018.676%208.51%2018.1842C8.51133%2018.1856%208.51133%2018.1869%208.51133%2018.1882L8.83566%2018.5721C9.0148%2018.784%209.33247%2018.8099%209.54425%2018.632C9.7567%2018.4521%209.78267%2018.1349%209.60352%2017.923L9.27919%2017.5392C9.27587%2017.5352%209.27054%2017.5325%209.26654%2017.5285C9.79865%2016.8768%209.97846%2016.0178%209.35578%2015.2815Z'%20fill='%23218321'/%3e%3cpath%20d='M21.7465%2021.9552C21.7527%2021.9497%2021.7596%2021.9456%2021.7659%2021.9407C21.8129%2021.8937%2021.8495%2021.8398%2021.891%2021.788C21.92%2021.7521%2021.9525%2021.7175%2021.9794%2021.6809C22.0036%2021.6463%2022.0237%2021.6111%2022.0458%2021.5758C23.0273%2020.0644%2022.3845%2017.5019%2020.4415%2015.5586C18.4977%2013.6152%2015.934%2012.9725%2014.423%2013.9545C14.387%2013.976%2014.3518%2013.996%2014.3172%2014.0209C14.2806%2014.0478%2014.2453%2014.0803%2014.2108%2014.1087C14.1596%2014.1508%2014.1057%2014.1868%2014.058%2014.2344C14.0518%2014.2407%2014.0476%2014.2476%2014.0428%2014.2538C14.0352%2014.2614%2014.0262%2014.2662%2014.0179%2014.2745L14.0221%2014.278C13.3308%2015.0119%2013.3225%2016.1474%2014.0179%2016.8433C14.7147%2017.5399%2015.8497%2017.5302%2016.5844%2016.8391L16.592%2016.8474C16.5775%2016.8613%2016.5616%2016.8702%2016.5478%2016.8841C15.8158%2017.6159%2015.7985%2018.7832%2016.507%2019.4929C17.2162%2020.2013%2018.3851%2020.184%2019.1164%2019.4521C19.1302%2019.4383%2019.1392%2019.4224%2019.153%2019.4079L19.1606%2019.4162C18.4694%2020.1501%2018.4604%2021.2856%2019.1572%2021.9822C19.8532%2022.6774%2020.9882%2022.6691%2021.7223%2021.978L21.7265%2021.9822C21.7334%2021.9725%2021.7389%2021.9635%2021.7465%2021.9552Z'%20fill='white'/%3e%3cpath%20d='M13.991%2017.2777C14.5882%2017.855%2015.5209%2017.9022%2016.2123%2017.4442C16.5017%2016.9658%2016.5848%2016.511%2016.5848%2016.3687C15.13%2017.4187%2013.8314%2016.3745%2013.5408%2015.75C13.4201%2016.2896%2013.5665%2016.8663%2013.991%2017.2777ZM18.8022%2019.7271C18.9986%2019.4599%2019.1509%2019.2015%2019.2221%2019.0268C18.296%2019.8483%2016.5255%2019.2468%2015.9889%2017.9437C15.7529%2018.5496%2015.8735%2019.2475%2016.3653%2019.7233C17.0258%2020.3625%2018.1015%2020.3574%2018.8022%2019.7271ZM21.3426%2022.0203L21.3618%2021.9973C21.3683%2021.9922%2021.3749%2021.9884%2021.3802%2021.9833C21.4257%2021.9399%2021.4606%2021.8902%2021.4995%2021.843C21.5279%2021.8092%2021.5582%2021.7779%2021.5839%2021.7435C21.6076%2021.7122%2021.6267%2021.679%2021.6478%2021.6465C21.6907%2021.5827%2021.7137%2021.5075%2021.75%2021.4398C20.0836%2022.1613%2018.8398%2020.9372%2018.4911%2020.3268C18.2966%2020.9117%2018.4232%2021.5668%2018.8925%2022.0216C19.5556%2022.6639%2020.638%2022.6563%2021.3387%2022.0178L21.3426%2022.0203Z'%20fill='%23C7CCD1'/%3e%3cpath%20d='M9.05953%208.50202L9.07727%208.48808C9.12098%208.445%209.15456%208.39558%209.19194%208.3487C9.21855%208.31576%209.24769%208.28471%209.2724%208.2505C9.29521%208.21882%209.31358%208.18651%209.33385%208.1542C10.2335%206.76862%209.64365%204.41878%207.86276%202.63787C6.08124%200.856327%203.73206%200.266492%202.3465%201.16613C2.31419%201.18641%202.28125%201.20478%202.24957%201.22759C2.21536%201.2523%202.18431%201.28144%202.15137%201.30805C2.10449%201.34606%202.05507%201.37901%202.01199%201.42272C2.00629%201.42842%202.00249%201.43539%201.99805%201.44046C1.99108%201.4468%201.98221%201.4525%201.97525%201.45947L1.97841%201.46264C1.34487%202.13547%201.33727%203.17639%201.97525%203.81438C2.61322%204.45236%203.65414%204.44476%204.32696%203.81121L4.33393%203.81818C4.32062%203.83022%204.30605%203.83909%204.29338%203.85176C3.62246%204.52269%203.60662%205.59275%204.25664%206.24341C4.90665%206.89407%205.97734%206.8776%206.64826%206.20667C6.66093%206.19399%206.66917%206.17942%206.68184%206.16612L6.68881%206.17309C6.05526%206.84592%206.04703%207.88684%206.68564%208.52483C7.32362%209.16281%208.3639%209.15521%209.03672%208.52103L9.03989%208.52483C9.04686%208.51786%209.05256%208.50962%209.05953%208.50202Z'%20fill='white'/%3e%3cpath%20d='M1.991%203.7787C2.58825%204.3565%203.52105%204.4037%204.21257%203.94451C4.50196%203.4662%204.58437%203.01212%204.58437%202.8699C3.13013%203.919%201.83081%202.87436%201.54075%202.25C1.42012%202.79018%201.56646%203.36735%201.991%203.7787ZM6.80395%206.2264C6.99974%205.95918%207.15202%205.70216%207.22256%205.52742C6.2957%206.34885%204.52504%205.74681%203.98909%204.44387C3.75309%205.04974%203.87373%205.74744%204.36485%206.22321C5.0267%206.86288%206.1032%206.85714%206.80395%206.2264ZM9.3426%208.5204C9.34985%208.51338%209.35579%208.50509%209.36238%208.49744L9.38084%208.48341C9.42632%208.44004%209.46126%208.3903%209.50016%208.3431C9.52784%208.30994%209.55817%208.27869%209.58388%208.24425C9.60761%208.21236%209.62673%208.17984%209.64782%208.14731C9.69067%208.08354%209.71374%208.00764%209.75%207.94004C8.0835%208.66134%206.83955%207.43813%206.49082%206.8278C6.29636%207.41262%206.42292%208.06759%206.89229%208.52167C7.55612%209.16389%208.63856%209.15624%209.33865%208.51785L9.3426%208.5204Z'%20fill='%23C7CCD1'/%3e%3c/symbol%3e%3csymbol%20id='fly_euro'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9.25488%2012.001H12.7479'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13.8906%2014.655C12.8296%2015.115%2011.5576%2014.926%2010.6906%2014.058C9.55364%2012.921%209.55364%2011.078%2010.6906%209.941C11.5586%209.073%2012.8306%208.884%2013.8906%209.344'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M19.804%2018.213V18.213C17.299%2017.712%2014.715%2017.774%2012.237%2018.393L12%2018.453C9.366%2019.111%206.619%2019.177%203.957%2018.644L3.804%2018.613C3.336%2018.52%203%2018.109%203%2017.633V6.79399C3%206.16299%203.577%205.68999%204.196%205.81299V5.81299C6.701%206.31399%209.285%206.25199%2011.763%205.63299L12.236%205.51499C14.714%204.89599%2017.299%204.83399%2019.803%205.33499L20.195%205.41299C20.664%205.50699%2021%205.91699%2021%206.39399V17.233C21%2017.864%2020.423%2018.337%2019.804%2018.213V18.213Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='freeze'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M11.9871%203.00008C11.5326%203.00912%2011.1684%203.3588%2011.1749%203.78383V5.0077L10.9331%204.78161C10.7784%204.63089%2010.5657%204.5495%2010.3401%204.54649C10.0048%204.5495%209.70509%204.73941%209.57616%205.0288C9.45046%205.3212%209.52459%205.65279%209.76633%205.87284L11.1749%207.19015V10.1624L8.41904%208.67928L7.90333%206.87966C7.81308%206.54205%207.49398%206.3039%207.12654%206.29486C6.86224%206.28883%206.61405%206.40037%206.45289%206.59329C6.29173%206.78923%206.24016%207.04244%206.31107%207.27757L6.40132%207.58504L5.26676%206.97612C5.1475%206.90679%205.01213%206.87062%204.87353%206.86459C4.84775%206.86459%204.81874%206.86459%204.79295%206.8676C4.42873%206.88871%204.11931%207.12986%204.03873%207.46446C3.95815%207.79907%204.12253%208.14271%204.44162%208.30851L5.57619%208.92044L5.2442%209.00484C4.95411%209.07116%204.72526%209.27915%204.64468%209.55045C4.56733%209.81874%204.64791%2010.1081%204.86064%2010.3041C5.07337%2010.5%205.38279%2010.5723%205.66966%2010.497L7.59712%2010.0147L10.3497%2011.5008L7.59712%2012.9869L5.66966%2012.5046C5.5923%2012.4835%205.51172%2012.4745%205.42792%2012.4775C5.01213%2012.4835%204.67047%2012.7759%204.62212%2013.1617C4.577%2013.5446%204.8413%2013.9033%205.2442%2013.9967L5.57619%2014.0812L4.44162%2014.6931C4.1741%2014.8227%204.00327%2015.0819%204.00005%2015.3653C3.99682%2015.6487%204.15798%2015.9109%204.42228%2016.0496C4.68659%2016.1852%205.01213%2016.1792%205.26676%2016.0255L6.40132%2015.4165L6.31107%2015.724C6.22727%2015.9923%206.30785%2016.2817%206.51736%2016.4806C6.72686%2016.6796%207.03307%2016.758%207.32315%2016.6826C7.61002%2016.6103%207.83242%2016.3962%207.90333%2016.1219L8.41904%2014.3223L11.1749%2012.8392V15.8114L9.76633%2017.1287C9.55038%2017.3217%209.46335%2017.6111%209.54071%2017.8793C9.61484%2018.1506%209.84046%2018.3617%2010.1306%2018.431C10.4174%2018.5033%2010.7268%2018.4219%2010.9331%2018.22L11.1749%2017.9939V19.2178C11.1716%2019.4951%2011.3264%2019.7543%2011.5842%2019.896C11.8421%2020.0347%2012.1579%2020.0347%2012.4158%2019.896C12.6736%2019.7543%2012.8284%2019.4951%2012.8251%2019.2178V17.9939L13.0669%2018.22C13.2732%2018.4219%2013.5826%2018.5033%2013.8694%2018.431C14.1595%2018.3617%2014.3852%2018.1506%2014.4593%2017.8793C14.5366%2017.6111%2014.4496%2017.3217%2014.2337%2017.1287L12.8251%2015.8114V12.8392L15.581%2014.3223L16.0967%2016.1219C16.1676%2016.3962%2016.39%2016.6103%2016.6768%2016.6826C16.9669%2016.758%2017.2731%2016.6796%2017.4826%2016.4806C17.6922%2016.2817%2017.7727%2015.9923%2017.6889%2015.724L17.5987%2015.4165L18.7332%2016.0255C18.9879%2016.1792%2019.3134%2016.1852%2019.5777%2016.0496C19.842%2015.9109%2020.0032%2015.6487%2020%2015.3653C19.9967%2015.0819%2019.8259%2014.8227%2019.5584%2014.6931L18.4238%2014.0812L18.7558%2013.9967C19.1619%2013.9033%2019.4294%2013.5386%2019.3747%2013.1497C19.3231%2012.7608%2018.9653%2012.4714%2018.5495%2012.4775C18.4722%2012.4775%2018.4013%2012.4865%2018.3303%2012.5046L16.4029%2012.9869L13.6503%2011.5008L16.4029%2010.0147L18.3303%2010.497C18.6172%2010.5723%2018.9266%2010.5%2019.1394%2010.3041C19.3521%2010.1081%2019.4327%209.81874%2019.3553%209.55045C19.2747%209.27915%2019.0459%209.07116%2018.7558%209.00484L18.4238%208.92044L19.5584%208.30851C19.8807%208.1397%2020.0419%207.79002%2019.9548%207.45542C19.8678%207.1178%2019.5519%206.87966%2019.1813%206.8676C19.0265%206.86158%2018.8686%206.89775%2018.7332%206.97612L17.5987%207.58504L17.6889%207.27757C17.7631%207.03641%2017.705%206.78019%2017.5407%206.58425C17.3731%206.39132%2017.1184%206.2828%2016.8509%206.29486C16.4899%206.31596%2016.1837%206.55109%2016.0967%206.87966L15.581%208.67928L12.8251%2010.1624V7.19015L14.2337%205.87284C14.4786%205.65279%2014.5528%205.31215%2014.4238%205.01975C14.2917%204.72735%2013.9823%204.53744%2013.6406%204.54347C13.4246%204.5495%2013.2184%204.63391%2013.0669%204.78161L12.8251%205.0077V3.78383C12.8284%203.57584%2012.7413%203.37387%2012.5834%203.22616C12.4255%203.07846%2012.2095%202.99707%2011.9871%203.00008Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='fullscreen'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M7%2014H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12%207h-3v2h5v-5h-2v3zM14%205v2h3v3h2V5h-5z'/%3e%3c/symbol%3e%3csymbol%20id='get_app'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19%209h-4V3H9v6H5l7%207%207-7zM5%2018v2h14v-2H5z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='gift_solid'%20viewBox='0%200%2024%2024'%3e%3crect%20width='24'%20height='24'%20rx='12'%20fill='currentColor'/%3e%3cpath%20d='M13.5556%2011.2222H17.8333C18.1428%2011.2222%2018.4395%2011.0993%2018.6583%2010.8805C18.8771%2010.6617%2019%2010.3649%2019%2010.0555V9.27775C19%208.96833%2018.8771%208.67159%2018.6583%208.45279C18.4395%208.234%2018.1428%208.11108%2017.8333%208.11108H6.16667C5.85725%208.11108%205.5605%208.234%205.34171%208.45279C5.12292%208.67159%205%208.96833%205%209.27775V10.0555C5%2010.3649%205.12292%2010.6617%205.34171%2010.8805C5.5605%2011.0993%205.85725%2011.2222%206.16667%2011.2222H10.4444'%20stroke='white'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M18.2218%2011.2222V17.4445C18.2218%2017.857%2018.0579%2018.2527%2017.7662%2018.5444C17.4745%2018.8361%2017.0788%2019%2016.6662%2019H7.3329C6.92034%2019%206.52468%2018.8361%206.23296%2018.5444C5.94123%2018.2527%205.77734%2017.857%205.77734%2017.4445V11.2222'%20stroke='white'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10.4442%205C10.8568%205%2011.2524%205.16389%2011.5442%205.45561C11.8359%205.74733%2011.9998%206.143%2011.9998%206.55556V8.11111H10.4442C10.0317%208.11111%209.63601%207.94722%209.34428%207.6555C9.05256%207.36378%208.88867%206.96811%208.88867%206.55556C8.88867%206.143%209.05256%205.74733%209.34428%205.45561C9.63601%205.16389%2010.0317%205%2010.4442%205Z'%20stroke='white'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13.5556%205C13.9681%205%2014.3638%205.16389%2014.6555%205.45561C14.9472%205.74733%2015.1111%206.143%2015.1111%206.55556C15.1111%206.96811%2014.9472%207.36378%2014.6555%207.6555C14.3638%207.94722%2013.9681%208.11111%2013.5556%208.11111H12V6.55556C12%206.143%2012.1639%205.74733%2012.4556%205.45561C12.7473%205.16389%2013.143%205%2013.5556%205Z'%20stroke='white'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.7786%208.11108H11.2231C10.7935%208.11108%2010.4453%208.45931%2010.4453%208.88886V18.2222C10.4453%2018.6518%2010.7935%2019%2011.2231%2019H12.7786C13.2082%2019%2013.5564%2018.6518%2013.5564%2018.2222V8.88886C13.5564%208.45931%2013.2082%208.11108%2012.7786%208.11108Z'%20stroke='white'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='glasses'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M17.903%204L19.574%205.142C20.056%205.471%2020.37%205.995%2020.434%206.576L21.464%2016M9.50001%2016.473C9.50001%2015.161%2010.619%2014.098%2012%2014.098C13.381%2014.098%2014.5%2015.161%2014.5%2016.473M6.09701%204L4.42601%205.142C3.94401%205.471%203.63001%205.995%203.56701%206.576L2.53601%2016M20.4749%2014.0251C21.8417%2015.3919%2021.8417%2017.608%2020.4749%2018.9748C19.1081%2020.3417%2016.892%2020.3417%2015.5252%2018.9748C14.1583%2017.608%2014.1583%2015.3919%2015.5252%2014.0251C16.892%2012.6583%2019.1081%2012.6583%2020.4749%2014.0251ZM8.47488%2014.0251C9.84172%2015.3919%209.84172%2017.608%208.47488%2018.9748C7.10804%2020.3417%204.89197%2020.3417%203.52513%2018.9748C2.15829%2017.608%202.15829%2015.3919%203.52513%2014.0251C4.89197%2012.6583%207.10804%2012.6583%208.47488%2014.0251Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='google_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M22.0026%2012.228C22.0035%2011.5466%2021.9447%2010.8663%2021.8269%2010.1947H12.2051V14.046H17.716C17.6033%2014.6611%2017.3646%2015.2474%2017.0144%2015.7697C16.6642%2016.292%2016.2097%2016.7393%2015.6783%2017.0848V19.5847H18.9673C20.8931%2017.8445%2022.0026%2015.271%2022.0026%2012.228Z'%20fill='%234285F4'/%3e%3cpath%20d='M12.1999%2021.9999C14.9533%2021.9999%2017.2716%2021.1139%2018.9622%2019.5861L15.6732%2017.0862C14.7577%2017.6945%2013.5787%2018.0418%2012.1999%2018.0418C9.5387%2018.0418%207.2799%2016.2835%206.47218%2013.9141H3.08398V16.4904C3.93318%2018.1466%205.23534%2019.5388%206.84507%2020.5117C8.4548%2021.4846%2010.3088%2021.9999%2012.1999%2021.9999Z'%20fill='%2334A853'/%3e%3cpath%20d='M6.47462%2013.9142C6.0476%2012.6726%206.0476%2011.3281%206.47462%2010.0865V7.51024H3.08642C2.37205%208.90346%202%2010.4411%202%2012.0004C2%2013.5596%202.37205%2015.0972%203.08642%2016.4905L6.47462%2013.9142Z'%20fill='%23FBBC04'/%3e%3cpath%20d='M12.1999%205.95885C13.655%205.93555%2015.0609%206.47435%2016.1139%207.45879L19.0259%204.60473C17.1794%202.9049%2014.7331%201.97166%2012.1999%202.00066C10.3087%202.00074%208.4548%202.51599%206.84507%203.48888C5.23534%204.46178%203.93318%205.85402%203.08398%207.51018L6.47218%2010.0865C7.2799%207.71711%209.5387%205.95885%2012.1999%205.95885Z'%20fill='%23EA4335'/%3e%3c/symbol%3e%3csymbol%20id='googleplus_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23EA4335'/%3e%3cpath%20d='M17.0945%209.858C17.5752%209.858%2018.0556%209.858%2018.5384%209.858C18.541%2010.3331%2018.5457%2010.8105%2018.5483%2011.2854C19.0311%2011.2901%2019.5166%2011.2925%2019.9996%2011.2949C19.9996%2011.7699%2019.9996%2012.2424%2019.9996%2012.7175C19.5168%2012.7198%2019.0313%2012.7222%2018.5483%2012.7246C18.5435%2013.202%2018.541%2013.6769%2018.5384%2014.1543C18.0556%2014.152%2017.5723%2014.1543%2017.0919%2014.1543C17.0873%2013.6769%2017.0873%2013.202%2017.0822%2012.727C16.5994%2012.722%2016.1139%2012.7198%2015.6309%2012.7173C15.6309%2012.2422%2015.6309%2011.7697%2015.6309%2011.2946C16.1139%2011.2923%2016.597%2011.2899%2017.0822%2011.2851C17.0846%2010.8105%2017.0895%2010.3331%2017.0945%209.858Z'%20fill='white'/%3e%3cpath%20d='M4.00312%2012.0064C3.90357%209.42853%206.1995%207.04628%208.82332%207.01538C10.1606%206.9032%2011.4616%207.41393%2012.4737%208.24692C12.0585%208.69583%2011.6361%209.13956%2011.185%209.55497C10.294%209.02263%209.22132%208.61694%208.18005%208.97724C6.50058%209.44755%205.48349%2011.3977%206.10499%2013.0136C6.61969%2014.7012%208.70684%2015.6273%2010.3426%2014.9184C11.1896%2014.6201%2011.748%2013.8515%2011.993%2013.0257C11.0223%2013.0067%2010.0514%2013.0185%209.08067%2012.9922C9.07825%2012.4242%209.07583%2011.8583%209.07825%2011.2903C10.6971%2011.2879%2012.3183%2011.2832%2013.9395%2011.2975C14.0391%2012.6892%2013.8303%2014.1785%2012.9104%2015.2955C11.6506%2016.89%209.32329%2017.3579%207.42998%2016.7324C5.42063%2016.0834%203.95939%2014.0925%204.00312%2012.0064Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='graph-no-data'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M8.50116%2022H3.09591C2.48991%2022%202%2021.5334%202%2020.9587V17.0413C2%2016.4655%202.49107%2016%203.09591%2016H8.5M8.50116%2022H15.5M8.50116%2022V9.14533C8.50116%208.512%208.99223%208%209.59707%208H15.4988M15.5%2022V3.11059C15.5%202.49765%2015.9912%202%2016.5961%202H20.9039C21.5088%202%2022%202.49647%2022%203.11059V20.8894C22%2021.5024%2021.51%2022%2020.9039%2022H15.5Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='group'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M2%2019C2%2016.8%203.8%2015%206%2015H10C12.2%2015%2014%2016.8%2014%2019M16%2014H19C20.7%2014%2022%2015.3%2022%2017M11.5%208.5C11.5%2010.433%209.933%2012%208%2012C6.067%2012%204.5%2010.433%204.5%208.5C4.5%206.567%206.067%205%208%205C9.933%205%2011.5%206.567%2011.5%208.5ZM20%208.5C20%209.88071%2018.8807%2011%2017.5%2011C16.1193%2011%2015%209.88071%2015%208.5C15%207.11929%2016.1193%206%2017.5%206C18.8807%206%2020%207.11929%2020%208.5Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='group_connection'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M11.6555%2013.6545C12.5697%2012.7403%2012.5697%2011.2581%2011.6555%2010.3439C10.7413%209.42965%209.25906%209.42965%208.34484%2010.3439C7.43063%2011.2581%207.43063%2012.7403%208.34484%2013.6545C9.25905%2014.5688%2010.7413%2014.5688%2011.6555%2013.6545Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19.4484%2013.4895C20.2713%2012.6666%2020.2713%2011.3325%2019.4484%2010.5097C18.6256%209.68687%2017.2915%209.68687%2016.4687%2010.5097C15.6459%2011.3325%2015.6459%2012.6666%2016.4687%2013.4895C17.2915%2014.3123%2018.6256%2014.3123%2019.4484%2013.4895Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.51094%2020.382C8.33377%2019.5592%208.33377%2018.2251%207.51094%2017.4023C6.6881%2016.5794%205.35402%2016.5794%204.53119%2017.4023C3.70835%2018.2251%203.70835%2019.5592%204.53119%2020.382C5.35403%2021.2049%206.6881%2021.2049%207.51094%2020.382Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.51094%206.59688C8.33377%205.77404%208.33377%204.43996%207.51094%203.61713C6.6881%202.79429%205.35402%202.79429%204.53119%203.61713C3.70835%204.43997%203.70835%205.77404%204.53119%206.59688C5.35403%207.41971%206.6881%207.41971%207.51094%206.59688Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.07031%2017.0695L8.83031%2014.0195'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.07031%206.92969L8.83031%209.97969'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15.8498%2012H12.3398'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='growth_arrow_circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M17%209.5L12.6244%2013.8756L10.1244%2011.3756L7%2014.5M17%209.5H13.8756M17%209.5V12.6244M22%2012C22%2017.5228%2017.5228%2022%2012%2022C6.47715%2022%202%2017.5228%202%2012C2%206.47715%206.47715%202%2012%202C17.5228%202%2022%206.47715%2022%2012Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='hand_money'%20viewBox='0%200%2024%2024'%3e%3cg%20clip-path='url(%23clip0_10494_49603)'%3e%3cpath%20d='M12.9813%2014H20.5C20.8978%2014%2021.2794%2013.842%2021.5607%2013.5607C21.842%2013.2794%2022%2012.8978%2022%2012.5V6.5C22%206.10218%2021.842%205.72064%2021.5607%205.43934C21.2794%205.15804%2020.8978%205%2020.5%205H10.5C10.1022%205%209.72064%205.15804%209.43934%205.43934C9.15804%205.72064%209%206.10218%209%206.5V13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.4395%208.43949C14.7212%208.16041%2015.1019%208.00425%2015.4985%208.00518C15.895%208.00612%2016.2751%208.16406%2016.5555%208.44446C16.8359%208.72486%2016.9938%209.1049%2016.9948%209.50145C16.9957%209.898%2016.8395%2010.2788%2016.5605%2010.5605'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9%208H6.70819C6.24246%207.99999%205.78313%208.10842%205.36658%208.31671L4.78137%208.60931C4.27108%208.86444%203.84413%209.25979%203.5506%209.749L2%2012.3333'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M3%2021L8.76187%2018.918C9.56607%2018.6274%2010.256%2018.0867%2010.7304%2017.3753L13.7233%2012.8873C13.9344%2012.5708%2014.0293%2012.1908%2013.9918%2011.8122C13.9543%2011.4335%2013.7868%2011.0796%2013.5178%2010.8105C13.2092%2010.5019%2012.7907%2010.3285%2012.3542%2010.3285C11.9178%2010.3285%2011.4992%2010.5018%2011.1906%2010.8103L9%2013H7'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='help'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm1%2017h-2v-2h2v2zm2.07-7.75l-.9.92C13.45%2012.9%2013%2013.5%2013%2015h-2v-.5c0-1.1.45-2.1%201.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41%200-1.1-.9-2-2-2s-2%20.9-2%202H8c0-2.21%201.79-4%204-4s4%201.79%204%204c0%20.88-.36%201.68-.93%202.25z'/%3e%3c/symbol%3e%3csymbol%20id='help_invert'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0%200h24v24H0z'/%3e%3cpath%20d='M11%2018h2v-2h-2v2zm1-16C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm0%2018c-4.41%200-8-3.59-8-8s3.59-8%208-8%208%203.59%208%208-3.59%208-8%208zm0-14c-2.21%200-4%201.79-4%204h2c0-1.1.9-2%202-2s2%20.9%202%202c0%202-3%201.75-3%205h2c0-2.25%203-2.5%203-5%200-2.21-1.79-4-4-4z'/%3e%3c/symbol%3e%3csymbol%20id='help_solid'%20viewBox='0%200%2024%2024'%3e%3ccircle%20cx='12'%20cy='12'%20r='10'%20fill='none'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M2%2012C2%2017.5233%206.47667%2022%2012%2022C17.5233%2022%2022%2017.5233%2022%2012C22%206.47667%2017.5233%202%2012%202C6.47667%202%202%206.47667%202%2012ZM12%206.25C10.2164%206.25%208.75%207.65203%208.75%209.4805C8.75%209.89471%209.08579%2010.2305%209.5%2010.2305C9.91421%2010.2305%2010.25%209.89471%2010.25%209.4805C10.25%208.50408%2011.0211%207.75%2012%207.75C12.9789%207.75%2013.75%208.50408%2013.75%209.4805C13.75%2010.1068%2013.4076%2010.462%2012.8406%2010.8501C12.157%2011.3165%2011.25%2012.0745%2011.25%2013.5V14C11.25%2014.4142%2011.5858%2014.75%2012%2014.75C12.4142%2014.75%2012.75%2014.4142%2012.75%2014V13.5C12.75%2012.852%2013.1051%2012.4855%2013.6864%2012.0889L13.6874%2012.0882C14.3551%2011.6312%2015.25%2010.8847%2015.25%209.4805C15.25%207.65203%2013.7836%206.25%2012%206.25ZM12.75%2016.5C12.75%2016.0858%2012.4142%2015.75%2012%2015.75C11.5858%2015.75%2011.25%2016.0858%2011.25%2016.5V17C11.25%2017.4142%2011.5858%2017.75%2012%2017.75C12.4142%2017.75%2012.75%2017.4142%2012.75%2017V16.5Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='help_ukraine_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='url(%23help_ukraine_colored_paint0_linear_8335_38758)'/%3e%3ccircle%20cx='12'%20cy='12'%20r='11'%20fill='white'/%3e%3cpath%20d='M7.92557%2018.1585L7.02003%2015.8001C6.9754%2015.6839%207.00692%2015.5498%207.09887%2015.4692C9.32533%2013.5173%2010.808%2013.7375%2013.5414%2015.2856C13.5712%2015.3025%2013.6046%2015.3141%2013.6382%2015.3192C14.7269%2015.4851%2015.3922%2015.7471%2015.423%2016.1643C15.4245%2016.1845%2015.4267%2016.207%2015.4298%2016.227C15.5934%2017.334%2012.2035%2016.0842%2011.4599%2016.5728C11.296%2016.6806%2011.5066%2016.8328%2011.6971%2016.7956C12.7979%2016.5809%2014.67%2017.4547%2015.4241%2016.9309C15.9518%2016.4519%2015.9265%2016.1897%2015.7318%2015.8613C15.6471%2015.7183%2015.6794%2015.5308%2015.8143%2015.4387C17.0174%2014.6172%2018.0411%2013.7509%2018.4136%2014.0665C18.5216%2014.1579%2018.6362%2014.259%2018.7742%2014.2776C19.0062%2014.3088%2019.0384%2014.4731%2018.9649%2014.8319C18.9597%2014.8571%2018.951%2014.8817%2018.9393%2014.9044C17.5301%2017.6554%2014.4907%2019.0499%2013.3332%2018.9936C13.3134%2018.9926%2013.2955%2018.9934%2013.2758%2018.9955C12.3366%2019.0951%209.87766%2017.5028%208.40762%2018.3093C8.23372%2018.4048%207.99857%2018.3486%207.92557%2018.1585Z'%20fill='%23D7A37D'/%3e%3cpath%20d='M5.81639%2015.0146L5.1419%2015.3098C5.02874%2015.3593%204.97095%2015.5193%205.01457%2015.6623L5.97986%2018.8266C6.02754%2018.9829%206.17355%2019.0475%206.28571%2018.9619L6.89776%2018.4947C6.98564%2018.4277%207.02276%2018.2893%206.98576%2018.1666L6.0829%2015.1742C6.04183%2015.0381%205.92395%2014.9675%205.81639%2015.0146Z'%20fill='%23100F0D'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M18.7%209H10.2998C11.3968%2011.2202%2014.1364%2012.8763%2014.3021%2012.9566C14.3607%2012.9851%2014.4261%2013%2014.4927%2013C14.5592%2013%2014.6247%2012.9851%2014.6833%2012.9566C14.849%2012.8763%2017.603%2011.2202%2018.7%209Z'%20fill='%23F9D548'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M18.7001%209H10.2999C10.143%208.63554%2010.0396%208.25593%2010.0106%207.86557C9.9177%206.61822%2010.4389%205.6191%2011.4053%205.1931C11.7192%205.07138%2012.0509%205.00643%2012.386%205.00109C12.7776%204.99465%2013.1664%205.06974%2013.5296%205.22194C13.8927%205.37414%2014.2227%205.60035%2014.5%205.88717C14.8973%205.47581%2015.4003%205.19164%2015.949%205.06857C16.4977%204.9455%2017.0689%204.98873%2017.5947%205.1931C18.5611%205.61906%2019.0823%206.61822%2018.9894%207.86557C18.9604%208.25593%2018.857%208.63554%2018.7001%209Z'%20fill='%23215CB5'/%3e%3c/symbol%3e%3csymbol%20id='home'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19.842%208.299L19.3815%208.891L19.3818%208.89123L19.842%208.299ZM13.842%203.632L13.3813%204.22384L13.3815%204.224L13.842%203.632ZM10.158%203.632L9.69758%203.03995L9.69752%203.04L10.158%203.632ZM4.158%208.299L4.61818%208.89123L4.61848%208.891L4.158%208.299ZM9%2016.25C8.58579%2016.25%208.25%2016.5858%208.25%2017C8.25%2017.4142%208.58579%2017.75%209%2017.75V16.25ZM15%2017.75C15.4142%2017.75%2015.75%2017.4142%2015.75%2017C15.75%2016.5858%2015.4142%2016.25%2015%2016.25V17.75ZM20.3025%207.707L14.3025%203.04L13.3815%204.224L19.3815%208.891L20.3025%207.707ZM14.3027%203.04016C12.9486%201.98618%2011.0523%201.98644%209.69758%203.03995L10.6184%204.22404C11.4317%203.59155%2012.5694%203.59182%2013.3813%204.22384L14.3027%203.04016ZM9.69752%203.04L3.69752%207.707L4.61848%208.891L10.6185%204.224L9.69752%203.04ZM3.69783%207.70677C2.78363%208.41711%202.25%209.50986%202.25%2010.667H3.75C3.75%209.97213%204.07037%209.31688%204.61817%208.89123L3.69783%207.70677ZM2.25%2010.667V18H3.75V10.667H2.25ZM2.25%2018C2.25%2020.0712%203.92879%2021.75%206%2021.75V20.25C4.75721%2020.25%203.75%2019.2428%203.75%2018H2.25ZM6%2021.75H18V20.25H6V21.75ZM18%2021.75C20.0712%2021.75%2021.75%2020.0712%2021.75%2018H20.25C20.25%2019.2428%2019.2428%2020.25%2018%2020.25V21.75ZM21.75%2018V10.667H20.25V18H21.75ZM21.75%2010.667C21.75%209.50986%2021.2164%208.41711%2020.3022%207.70677L19.3818%208.89123C19.9296%209.31688%2020.25%209.97213%2020.25%2010.667H21.75ZM9%2017.75H15V16.25H9V17.75Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='iban'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M2.64941%2011.3333L3.98275%2010L5.31608%2011.3333'%20stroke='currentColor'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21.3151%2012.6667L19.9818%2014L18.6484%2012.6667'%20stroke='currentColor'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.47363%207.36889C6.9243%205.33422%209.29319%204%2011.9821%204C16.3999%204%2019.9821%207.58223%2019.9821%2012C19.9821%2012.608%2019.9083%2013.1982%2019.7803%2013.7671'%20stroke='currentColor'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M18.4905%207.36891C16.4443%208.05691%2014.2603%208.44447%2011.9821%208.44447C9.70386%208.44447%207.51986%208.05691%205.47363%207.36891'%20stroke='currentColor'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M18.487%2016.6276C17.0372%2018.6622%2014.6683%2019.9964%2011.9785%2019.9964C7.56074%2019.9964%203.97852%2016.4142%203.97852%2011.9964C3.97852%2011.3884%204.05229%2010.7982%204.18029%2010.2293'%20stroke='currentColor'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.47168%2016.6276C7.5179%2015.9396%209.70191%2015.552%2011.9801%2015.552C14.2584%2015.552%2016.4424%2015.9396%2018.4886%2016.6276'%20stroke='currentColor'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.3388%2017.6569C15.6406%2014.5327%2015.6406%209.46735%2014.3388%206.34315C13.037%203.21895%2010.9265%203.21895%209.62475%206.34315C8.323%209.46733%208.323%2014.5327%209.62475%2017.6569C10.9265%2020.781%2013.037%2020.781%2014.3388%2017.6569Z'%20stroke='currentColor'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='iban_blue'%20viewBox='0%200%2024%2024'%3e%3crect%20width='24'%20height='24'%20rx='12'%20fill='%238756FF'/%3e%3cpath%20d='M4%2011.2857L5.14286%2010.1429L6.28571%2011.2857'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19.9996%2012.4286L18.8567%2013.5714L17.7139%2012.4286'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M6.4209%207.88762C7.66433%206.14362%209.6948%205%2011.9996%205C15.7862%205%2018.8567%208.07048%2018.8567%2011.8571C18.8567%2012.3783%2018.7935%2012.8842%2018.6838%2013.3718'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17.5782%207.88763C15.8243%208.47735%2013.9523%208.80954%2011.9996%208.80954C10.0468%208.80954%208.1748%208.47735%206.4209%207.88763'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17.5755%2015.8236C16.3328%2017.5676%2014.3023%2018.7112%2011.9968%2018.7112C8.21012%2018.7112%205.13965%2015.6407%205.13965%2011.8541C5.13965%2011.3329%205.20289%2010.827%205.3126%2010.3394'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M6.41895%2015.8236C8.17285%2015.2339%2010.0448%2014.9017%2011.9976%2014.9017C13.9504%2014.9017%2015.8224%2015.2339%2017.5763%2015.8236'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.02%2016.7059C15.1358%2014.028%2015.1358%209.68629%2014.02%207.00841C12.9042%204.33053%2011.0952%204.33053%209.97942%207.00841C8.86363%209.68628%208.86363%2014.028%209.97942%2016.7059C11.0952%2019.3837%2012.9042%2019.3837%2014.02%2016.7059Z'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='id_square'%20viewBox='0%200%2018%2018'%3e%3cpath%20d='M5.66667%2011.5V6.5M11.0854%2011.5H8.58333V6.5H11.0854C11.9715%206.5%2012.75%207.28059%2012.75%208.16667V9.83333C12.75%2010.7194%2011.9715%2011.5%2011.0854%2011.5ZM14.095%2016.5H3.90577C2.57698%2016.5%201.5%2015.4231%201.5%2014.0944V3.90564C1.5%202.57693%202.57698%201.5%203.90577%201.5H14.0942C15.423%201.5%2016.5%202.57693%2016.5%203.90564V14.0936C16.5008%2015.4231%2015.4238%2016.5%2014.095%2016.5Z'%20stroke='currentColor'%20fill='none'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='id_thin'%20viewBox='0%200%2032%2032'%3e%3cpath%20d='M10.6667%2020V12M19.3366%2020H15.3333V12H19.3366C20.7545%2012%2022%2013.2489%2022%2014.6667V17.3333C22%2018.7511%2020.7545%2020%2019.3366%2020ZM24.152%2028H7.84924C5.72318%2028%204%2026.2769%204%2024.151V7.84903C4%205.72308%205.72318%204%207.84924%204H24.1508C26.2768%204%2028%205.72308%2028%207.84903V24.1497C28.0013%2026.2769%2026.2781%2028%2024.152%2028Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='image'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M21%2019V5c0-1.1-.9-2-2-2H5c-1.1%200-2%20.9-2%202v14c0%201.1.9%202%202%202h14c1.1%200%202-.9%202-2zM8.5%2013.5l2.5%203.01L14.5%2012l4.5%206H5l3.5-4.5z'/%3e%3c/symbol%3e%3csymbol%20id='infinity'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M10%209.05534C9.094%207.81734%207.652%206.99934%206%206.99934C3.239%206.99934%201%209.23834%201%2011.9993C1%2014.7603%203.239%2016.9993%206%2016.9993C7.861%2016.9993%209.586%2016.0223%2010.543%2014.4273L13.457%209.57134C14.414%207.97634%2016.139%206.99934%2018%206.99934C20.761%206.99934%2023%209.23834%2023%2011.9993C23%2014.7603%2020.761%2016.9993%2018%2016.9993C16.348%2016.9993%2014.906%2016.1813%2014%2014.9433M9.93%206.02734L10.451%208.98134L7.497%209.50234'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='info'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%2017V11M12%207.5V7M19.0711%204.92894C22.9763%208.83419%2022.9763%2015.1658%2019.0711%2019.0711C15.1658%2022.9763%208.83416%2022.9763%204.92894%2019.0711C1.02369%2015.1658%201.02369%208.83416%204.92894%204.92894C8.83418%201.02369%2015.1658%201.02369%2019.0711%204.92894Z'%20stroke='currentColor'%20fill='none'%20stroke-miterlimit='10'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='info_rounded_square'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16%2021H8C5.239%2021%203%2018.761%203%2016V8C3%205.239%205.239%203%208%203H16C18.761%203%2021%205.239%2021%208V16C21%2018.761%2018.761%2021%2016%2021Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.25%2016.184V11.434H11.25'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11.9602%207.99H11.9502C11.8102%207.99%2011.7002%208.1%2011.7002%208.24C11.7002%208.37%2011.8102%208.49%2011.9502%208.48C12.0802%208.47%2012.2002%208.36%2012.1902%208.22C12.1902%208.08%2012.0702%207.97%2011.9402%207.97'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='info_solid'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M19.0711%2019.0711C22.9763%2015.1658%2022.9763%208.83419%2019.0711%204.92894C15.1658%201.02369%208.83418%201.02369%204.92894%204.92894C1.02369%208.83416%201.02369%2015.1658%204.92894%2019.0711C8.83416%2022.9763%2015.1658%2022.9763%2019.0711%2019.0711ZM12.75%207C12.75%206.58579%2012.4142%206.25%2012%206.25C11.5858%206.25%2011.25%206.58579%2011.25%207V7.5C11.25%207.91421%2011.5858%208.25%2012%208.25C12.4142%208.25%2012.75%207.91421%2012.75%207.5V7ZM12.75%2011C12.75%2010.5858%2012.4142%2010.25%2012%2010.25C11.5858%2010.25%2011.25%2010.5858%2011.25%2011V17C11.25%2017.4142%2011.5858%2017.75%2012%2017.75C12.4142%2017.75%2012.75%2017.4142%2012.75%2017V11Z'/%3e%3c/symbol%3e%3csymbol%20id='instagram'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cg%3e%3cg%3e%3cg%3e%3cpath%20d='M15.8,2H8.2C4.8,2,2,4.8,2,8.2v7.5C2,19.2,4.8,22,8.2,22h7.5c3.5,0,6.3-2.8,6.3-6.3V8.2C22,4.8,19.2,2,15.8,2z%20M20.1,15.8c0,2.4-2,4.4-4.4,4.4H8.2c-2.4,0-4.4-2-4.4-4.4V8.2c0-2.4,2-4.4,4.4-4.4h7.5c2.4,0,4.4,2,4.4,4.4V15.8z'/%3e%3c/g%3e%3c/g%3e%3cg%3e%3cg%3e%3cpath%20d='M12,7c-2.8,0-5,2.2-5,5s2.2,5,5,5s5-2.2,5-5S14.8,7,12,7z%20M12,15.1c-1.7,0-3.1-1.4-3.1-3.1s1.4-3.1,3.1-3.1%20s3.1,1.4,3.1,3.1S13.7,15.1,12,15.1z'/%3e%3c/g%3e%3c/g%3e%3cg%3e%3cg%3e%3ccircle%20cx='17.4'%20cy='6.6'%20r='0.7'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='instagram_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='url(%23instagram_colored_paint0_radial)'/%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='url(%23instagram_colored_paint1_radial)'/%3e%3cpath%20d='M12.0007%205C10.0996%205%209.86097%205.00831%209.11429%205.04229C8.36908%205.07642%207.8604%205.1944%207.41532%205.3675C6.95492%205.54629%206.56437%205.78546%206.17528%206.17469C5.7859%206.56377%205.54673%206.95431%205.36736%207.41456C5.19381%207.85979%205.07569%208.3686%205.04215%209.11352C5.00875%209.86019%205%2010.0989%205%2012C5%2013.9011%205.00846%2014.1389%205.04229%2014.8856C5.07656%2015.6308%205.19454%2016.1395%205.3675%2016.5846C5.54644%2017.045%205.78561%2017.4355%206.17485%2017.8246C6.56379%2018.214%206.95433%2018.4537%207.41444%2018.6325C7.85982%2018.8056%208.36864%2018.9236%209.11371%2018.9577C9.86038%2018.9917%2010.0988%2019%2011.9998%2019C13.901%2019%2014.1389%2018.9917%2014.8856%2018.9577C15.6308%2018.9236%2016.14%2018.8056%2016.5854%2018.6325C17.0457%2018.4537%2017.4356%2018.214%2017.8246%2017.8246C18.214%2017.4355%2018.4531%2017.045%2018.6325%2016.5847C18.8046%2016.1395%2018.9227%2015.6307%2018.9577%2014.8857C18.9912%2014.1391%2019%2013.9011%2019%2012C19%2010.0989%2018.9912%209.86033%2018.9577%209.11367C18.9227%208.36846%2018.8046%207.85979%2018.6325%207.41471C18.4531%206.95431%2018.214%206.56377%2017.8246%206.17469C17.4352%205.78531%2017.0458%205.54615%2016.585%205.3675C16.1387%205.1944%2015.6298%205.07642%2014.8845%205.04229C14.1379%205.00831%2013.9002%205%2011.9985%205H12.0007ZM11.3727%206.26146C11.5591%206.26117%2011.767%206.26146%2012.0007%206.26146C13.8697%206.26146%2014.0912%206.26817%2014.8293%206.30171C15.5118%206.33292%2015.8822%206.44696%2016.1289%206.54277C16.4556%206.66965%2016.6885%206.82131%2016.9334%207.06631C17.1784%207.31131%2017.33%207.54465%2017.4572%207.87131C17.553%208.11777%2017.6672%208.48819%2017.6983%209.17069C17.7318%209.9086%2017.7391%2010.1303%2017.7391%2011.9984C17.7391%2013.8665%2017.7318%2014.0882%2017.6983%2014.8261C17.6671%2015.5086%2017.553%2015.879%2017.4572%2016.1255C17.3303%2016.4521%2017.1784%2016.6847%2016.9334%2016.9296C16.6884%2017.1746%2016.4558%2017.3263%2016.1289%2017.4531C15.8825%2017.5494%2015.5118%2017.6631%2014.8293%2017.6944C14.0913%2017.7279%2013.8697%2017.7352%2012.0007%2017.7352C10.1315%2017.7352%209.90997%2017.7279%209.17204%2017.6944C8.48954%2017.6629%208.11912%2017.5488%207.87222%2017.453C7.54555%2017.3261%207.31221%2017.1745%207.06721%2016.9295C6.82221%2016.6845%206.67054%2016.4517%206.54337%2016.1249C6.44756%2015.8784%206.33337%2015.508%206.30231%2014.8255C6.26876%2014.0876%206.26205%2013.8659%206.26205%2011.9966C6.26205%2010.1274%206.26876%209.90685%206.30231%209.16894C6.33351%208.48644%206.44756%208.11602%206.54337%207.86927C6.67025%207.5426%206.82221%207.30927%207.06721%207.06427C7.31221%206.81927%207.54555%206.6676%207.87222%206.54044C8.11897%206.44419%208.48954%206.33044%209.17204%206.29908C9.8178%206.26992%2010.0681%206.26117%2011.3727%206.25971V6.26146ZM15.7372%207.42375C15.2735%207.42375%2014.8972%207.79956%2014.8972%208.26346C14.8972%208.72721%2015.2735%209.10346%2015.7372%209.10346C16.201%209.10346%2016.5772%208.72721%2016.5772%208.26346C16.5772%207.79971%2016.201%207.42346%2015.7372%207.42346V7.42375ZM12.0007%208.40521C10.0154%208.40521%208.40583%2010.0148%208.40583%2012C8.40583%2013.9852%2010.0154%2015.5941%2012.0007%2015.5941C13.9859%2015.5941%2015.5949%2013.9852%2015.5949%2012C15.5949%2010.0148%2013.9858%208.40521%2012.0005%208.40521H12.0007ZM12.0007%209.66667C13.2893%209.66667%2014.334%2010.7113%2014.334%2012C14.334%2013.2886%2013.2893%2014.3333%2012.0007%2014.3333C10.7119%2014.3333%209.6673%2013.2886%209.6673%2012C9.6673%2010.7113%2010.7119%209.66667%2012.0007%209.66667Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='keyboard'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M20%205H4c-1.1%200-1.99.9-1.99%202L2%2017c0%201.1.9%202%202%202h16c1.1%200%202-.9%202-2V7c0-1.1-.9-2-2-2zm-9%203h2v2h-2V8zm0%203h2v2h-2v-2zM8%208h2v2H8V8zm0%203h2v2H8v-2zm-1%202H5v-2h2v2zm0-3H5V8h2v2zm9%207H8v-2h8v2zm0-4h-2v-2h2v2zm0-3h-2V8h2v2zm3%203h-2v-2h2v2zm0-3h-2V8h2v2z'/%3e%3cpath%20d='M0%200h24v24H0zm0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='keyboard_arrow_left'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15.41%2016.59L10.83%2012l4.58-4.59L14%206l-6%206%206%206%201.41-1.41z'/%3e%3cpath%20fill='none'%20d='M0%200h24v24H0V0z'/%3e%3c/symbol%3e%3csymbol%20id='keyboard_arrow_right'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M8.59%2016.59L13.17%2012%208.59%207.41%2010%206l6%206-6%206-1.41-1.41z'/%3e%3cpath%20fill='none'%20d='M0%200h24v24H0V0z'/%3e%3c/symbol%3e%3csymbol%20id='keyboard_arrow_right_thin'%20viewBox='0%200%2040%2040'%3e%3cpath%20d='M16.6665%2026.6654L23.3332%2019.9987L16.6665%2013.332'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='kraken'%20viewBox='0%200%2024%2024'%3e%3cg%20clip-path='url(%23clip0_10709_44626)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12%2024C18.6274%2024%2024%2018.6274%2024%2012C24%205.37258%2018.6274%200%2012%200C5.37258%200%200%205.37258%200%2012C0%2018.6274%205.37258%2024%2012%2024ZM15.5402%205.81061C14.2931%205.20277%2012.8822%204.92815%2011.4974%205.01603C9.87059%205.11123%208.28103%205.7154%207.01533%206.71869C6.17402%207.37779%205.47044%208.20165%204.96044%209.12805C4.33504%2010.2632%204.00372%2011.5484%204%2012.8373V16.2463C4%2016.5978%204.17496%2016.9383%204.46905%2017.136C4.87482%2017.4436%205.50022%2017.4253%205.88738%2017.0921C6.14424%2016.8834%206.29686%2016.5575%206.29314%2016.2316V12.8666C6.29314%2012.6725%206.34526%2012.4748%206.44577%2012.3027C6.67657%2011.8926%207.1903%2011.6619%207.65563%2011.7608C8.16563%2011.8523%208.57139%2012.321%208.57512%2012.8336C8.5776%2013.5245%208.57677%2014.2153%208.57594%2014.9061C8.57553%2015.2515%208.57512%2015.5969%208.57512%2015.9424C8.57512%2015.9767%208.57469%2016.0112%208.57426%2016.0457C8.57187%2016.2398%208.56945%2016.4364%208.64212%2016.6198C8.79475%2017.0592%209.25636%2017.3814%209.73286%2017.3557C10.1982%2017.3667%2010.6375%2017.0518%2010.7901%2016.6234C10.8666%2016.4352%2010.864%2016.2332%2010.8614%2016.032C10.8607%2015.9788%2010.86%2015.9256%2010.8608%2015.8728V12.8702C10.8608%2012.5663%2010.9911%2012.2661%2011.2145%2012.0574C11.4639%2011.8194%2011.825%2011.7058%2012.1675%2011.7571C12.6961%2011.823%2013.1316%2012.2954%2013.1428%2012.819C13.147%2013.407%2013.1464%2013.9961%2013.1458%2014.5852C13.1454%2015.0269%2013.1449%2015.4685%2013.1465%2015.9094C13.1464%2015.921%2013.1462%2015.9326%2013.1461%2015.9443C13.1422%2016.2345%2013.1381%2016.5422%2013.2991%2016.7992C13.5448%2017.2422%2014.1069%2017.4546%2014.5946%2017.3228C14.9669%2017.2239%2015.2759%2016.9273%2015.3838%2016.5612C15.4353%2016.3999%2015.4339%2016.2304%2015.4326%2016.0621C15.4324%2016.0356%2015.4322%2016.0091%2015.4322%2015.9826C15.4322%2015.6374%2015.4318%2015.2921%2015.4314%2014.9467C15.4306%2014.2554%2015.4297%2013.5636%2015.4322%2012.8702C15.4359%2012.4235%2015.7449%2011.9988%2016.173%2011.8486C16.6793%2011.6473%2017.3047%2011.8706%2017.5653%2012.343C17.7253%2012.5993%2017.7216%2012.9105%2017.7142%2013.1998C17.7142%2013.5418%2017.7138%2013.8834%2017.7134%2014.2248C17.7125%2014.9067%2017.7117%2015.5874%2017.7142%2016.2682C17.7179%2016.7772%2018.1162%2017.2496%2018.6262%2017.3411C18.8645%2017.3777%2019.1176%2017.3667%2019.3372%2017.2642C19.6537%2017.1251%2019.8956%2016.8321%2019.9701%2016.4989C20.0006%2016.3791%2020.0002%2016.2562%2019.9999%2016.1331C19.9999%2016.1208%2019.9999%2016.1085%2019.9999%2016.0961V12.8007C19.9999%2011.9146%2019.8361%2011.0284%2019.5308%2010.1936C18.8384%208.30052%2017.3754%206.69672%2015.5402%205.81061Z'%20fill='%235248D1'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='language'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4%208C8.89843%209.33333%2015.1026%209.33333%2020%208M20%2016C15.1016%2014.6667%208.89743%2014.6667%204%2016M12%203C16.982%203%2021%207.018%2021%2012C21%2016.982%2016.982%2021%2012%2021C7.018%2021%203%2016.982%203%2012C3%207.018%207.018%203%2012%203ZM10.1685%204.05999C7.27848%208.88499%207.27848%2015.116%2010.1685%2019.941C11.0145%2021.354%2012.9875%2021.354%2013.8335%2019.941C16.7235%2015.116%2016.7235%208.88499%2013.8335%204.05999C12.9865%202.64699%2011.0145%202.64699%2010.1685%204.05999Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='layers'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15.436%2014.484L21%2016.976L11.987%2021L3%2016.976L8.564%2014.491M15.436%209.509L21%2012L11.987%2016.024L3%2012L8.564%209.516M3%207.024L11.987%2011.049L21%207.024L12.013%203L3%207.024Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='lightning'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M17.8478%2011.306C17.9432%2011.151%2017.9955%2010.9734%2017.9993%2010.7915C18.0031%2010.6096%2017.9583%2010.4299%2017.8696%2010.2711C17.7808%2010.1122%2017.6513%209.97989%2017.4944%209.88777C17.3375%209.79566%2017.1588%209.74706%2016.9768%209.747H13.4998V0.747002L6.15183%2012.689C6.05642%2012.8439%206.00408%2013.0215%206.00023%2013.2034C5.99638%2013.3853%206.04116%2013.5649%206.12994%2013.7237C6.21872%2013.8825%206.34828%2014.0147%206.50525%2014.1067C6.66222%2014.1987%206.8409%2014.2472%207.02283%2014.247H10.4998V23.247L17.8478%2011.306Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='lightning_circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%2022C17.5228%2022%2022%2017.5228%2022%2012C22%206.47715%2017.5228%202%2012%202C6.47715%202%202%206.47715%202%2012C2%2017.5228%206.47715%2022%2012%2022Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11.6874%206.24141C11.7494%206.14178%2011.8356%206.0677%2011.9341%206.02934C12.0326%205.99097%2012.1385%205.99022%2012.2374%206.02718C12.3362%206.06413%2012.4231%206.13699%2012.4861%206.23572C12.5491%206.33445%2012.5851%206.4542%2012.5891%206.57852V10.4926H15.5066C15.5964%2010.4943%2015.6842%2010.5249%2015.7607%2010.5812C15.8373%2010.6376%2015.8999%2010.7177%2015.9419%2010.813C15.9838%2010.9084%2016.0037%2011.0156%2015.9994%2011.1234C15.9951%2011.2312%2015.9668%2011.3356%2015.9174%2011.4257L12.3106%2017.7586C12.2486%2017.8582%2012.1624%2017.9323%2012.0639%2017.9707C11.9654%2018.009%2011.8595%2018.0098%2011.7606%2017.9728C11.6618%2017.9359%2011.5749%2017.863%2011.5119%2017.7643C11.4489%2017.6656%2011.4129%2017.5458%2011.4089%2017.4215V13.5074H8.49339C8.4036%2013.5057%208.31583%2013.4751%208.23926%2013.4188C8.16269%2013.3624%208.10014%2013.2823%208.05815%2013.187C8.01616%2013.0916%207.99627%2012.9844%208.00058%2012.8766C8.00488%2012.7688%208.03321%2012.6644%208.08261%2012.5743L11.6874%206.24141Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='lightning_circle_solid'%20viewBox='0%200%2040%2040'%3e%3crect%20width='40'%20height='40'%20rx='20'%20fill='currentColor'/%3e%3cpath%20d='M26.4981%2019.2821C26.6041%2019.1214%2026.6622%2018.9372%2026.6664%2018.7485C26.6706%2018.5599%2026.6209%2018.3736%2026.5223%2018.2088C26.4237%2018.0441%2026.2797%2017.9069%2026.1054%2017.8114C25.931%2017.7158%2025.7325%2017.6654%2025.5303%2017.6654H21.6668V8.33203L13.502%2020.7163C13.396%2020.877%2013.3378%2021.0611%2013.3336%2021.2498C13.3293%2021.4384%2013.379%2021.6247%2013.4777%2021.7894C13.5763%2021.954%2013.7203%2022.0912%2013.8947%2022.1866C14.0691%2022.282%2014.2677%2022.3322%2014.4698%2022.332H18.3333V31.6654L26.4981%2019.2821Z'%20fill='none'%20stroke='white'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='lightning_outlined'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16.8736%2011.9165C16.9531%2011.7856%2016.9966%2011.6356%2016.9998%2011.482C17.003%2011.3284%2016.9657%2011.1767%2016.8917%2011.0425C16.8178%2010.9084%2016.7098%2010.7967%2016.5791%2010.7189C16.4483%2010.6411%2016.2994%2010.6001%2016.1477%2010.6H13.2501V3L7.12653%2013.0844C7.04701%2013.2152%207.0034%2013.3651%207.00019%2013.5187C6.99698%2013.6723%207.0343%2013.824%207.10829%2013.9581C7.18227%2014.0922%207.29025%2014.2039%207.42106%2014.2816C7.55187%2014.3592%207.70078%2014.4001%207.8524%2014.4H10.75V22L16.8736%2011.9165Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='like'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M8%2010.572L11.649%205.821C12.328%204.936%2013.654%204.914%2014.363%205.775C14.628%206.096%2014.772%206.5%2014.772%206.916V10.187H17.868C18.469%2010.187%2019.03%2010.487%2019.364%2010.986L19.693%2011.477C19.988%2011.918%2020.074%2012.467%2019.927%2012.976L18.568%2017.698C18.346%2018.469%2017.641%2019%2016.839%2019H10.55C10.05%2019%209.572%2018.792%209.232%2018.426L8%2017.1M6.944%2019H5.056C4.473%2019%204%2018.527%204%2017.944V10.556C4%209.973%204.473%209.5%205.056%209.5H6.944C7.527%209.5%208%209.973%208%2010.556V17.944C8%2018.527%207.527%2019%206.944%2019Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='link'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M10.0001%2013L10.9531%2013.953C11.3246%2014.3245%2011.7655%2014.6191%2012.2509%2014.8201C12.7362%2015.0212%2013.2563%2015.1246%2013.7816%2015.1246C14.3069%2015.1246%2014.8271%2015.0212%2015.3124%2014.8201C15.7977%2014.6191%2016.2387%2014.3245%2016.6101%2013.953L19.6411%2010.922C20.5114%2010.0517%2021.0003%208.87128%2021.0003%207.6405C21.0003%206.40972%2020.5114%205.22934%2019.6411%204.359C18.7708%203.48875%2017.5904%202.99986%2016.3596%202.99986C15.1289%202.99986%2013.9485%203.48875%2013.0781%204.359L12.1911%205.247M14.0001%2010L13.0471%209.047C12.6757%208.67554%2012.2347%208.38089%2011.7494%208.17985C11.2641%207.97882%2010.7439%207.87535%2010.2186%207.87535C9.69333%207.87535%209.17317%207.97882%208.68785%208.17985C8.20254%208.38089%207.76157%208.67554%207.39013%209.047L4.35914%2012.078C3.48889%2012.9483%203%2014.1287%203%2015.3595C3%2016.5903%203.48889%2017.7707%204.35914%2018.641C5.22948%2019.5112%206.40985%2020.0001%207.64064%2020.0001C8.87142%2020.0001%2010.0518%2019.5112%2010.9221%2018.641L11.8091%2017.753'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='link_broken'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M10.9198%2016.646L8.94875%2018.617C7.58775%2019.978%205.38175%2019.978%204.02075%2018.617C2.65975%2017.256%202.65975%2015.05%204.02075%2013.689L5.99175%2011.718'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.7275%208.762H17.5155C19.4395%208.762%2021.0005%2010.322%2021.0005%2012.247C21.0005%2014.171%2019.4405%2015.732%2017.5155%2015.732H14.7275'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M8.41016%204.36L8.91016%205.84'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.4402%204.49L11.6602%206.07'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.38965%206.96L6.85965%207.69'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='link_colored'%20viewBox='0%200%2024%2024'%3e%3crect%20width='24'%20height='24'%20rx='12'%20fill='%238756FF'/%3e%3cpath%20d='M14.6294%2012L16.8168%2014.1876C17.0611%2014.4318%2017.0611%2014.8272%2016.8168%2015.0709L15.071%2016.8168C14.8267%2017.0611%2014.4314%2017.0611%2014.1878%2016.8168L12.0003%2014.6292L10.6911%2015.9385C10.3625%2016.2671%209.80346%2016.1347%209.65667%2015.6943L7.03322%207.82281C6.87019%207.33494%207.33492%206.87018%207.82338%207.03322L15.6944%209.65684C16.1347%209.80364%2016.2672%2010.3627%2015.9386%2010.6913L14.6294%2012'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='link_external'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%2012L21%203M21%203V10M21%203H14M9%203H5C3.895%203%203%203.895%203%205V19C3%2020.105%203.895%2021%205%2021H19C20.105%2021%2021%2020.105%2021%2019V15'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='link_external_new'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16%203H21M21%203V8M21%203L14%2010M19%2014V19C19%2020.105%2018.105%2021%2017%2021H5C3.895%2021%203%2020.105%203%2019V7C3%205.895%203.895%205%205%205H10'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='linkedin'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cpath%20d='M20.2,2H3.8C2.8,2,2,2.8,2,3.8v16.3c0,1,0.8,1.8,1.8,1.8h16.3c1,0,1.8-0.8,1.8-1.8V3.8C22,2.8,21.2,2,20.2,2z%20M8.2,19.2%20c0,0.3-0.2,0.5-0.5,0.5H5.4c-0.3,0-0.5-0.2-0.5-0.5V9.9c0-0.3,0.2-0.5,0.5-0.5h2.2c0.3,0,0.5,0.2,0.5,0.5C8.2,9.9,8.2,19.2,8.2,19.2%20z%20M6.6,8.5c-1.2,0-2.1-0.9-2.1-2.1s0.9-2.1,2.1-2.1s2.1,0.9,2.1,2.1S7.7,8.5,6.6,8.5z%20M19.9,19.3c0,0.3-0.2,0.5-0.5,0.5H17%20c-0.3,0-0.5-0.2-0.5-0.5v-4.4c0-0.7,0.2-2.9-1.7-2.9c-1.5,0-1.8,1.5-1.8,2.2v5.1c0,0.3-0.2,0.5-0.5,0.5h-2.3c-0.3,0-0.5-0.2-0.5-0.5%20V9.8c0-0.3,0.2-0.5,0.5-0.5h2.3c0.3,0,0.5,0.2,0.5,0.5v0.8c0.5-0.8,1.4-1.5,3.1-1.5c3.8,0,3.8,3.6,3.8,5.6L19.9,19.3L19.9,19.3z'/%3e%3c/symbol%3e%3csymbol%20id='linkedin_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%230077B5'/%3e%3cpath%20d='M18.792%2017.4955C17.9978%2017.4765%2017.2225%2017.4765%2016.4283%2017.4955C16.2581%2017.4955%2016.2202%2017.4574%2016.2202%2017.2863C16.2202%2015.879%2016.2202%2014.4526%2016.2202%2013.0453C16.2202%2012.722%2016.2013%2012.3987%2016.1068%2012.0944C15.8231%2011.1055%2014.6885%2010.7441%2013.8754%2011.4098C13.4405%2011.7521%2013.2703%2012.2275%2013.2703%2012.7981C13.2703%2014.1293%2013.2703%2015.4606%2013.2703%2016.7918C13.2703%2016.963%2013.2514%2017.1341%2013.2703%2017.3243C13.2892%2017.4765%2013.2136%2017.5145%2013.0812%2017.4955C12.2681%2017.4955%2011.4739%2017.4955%2010.6607%2017.4955C10.5095%2017.4955%2010.4716%2017.4574%2010.4716%2017.3053C10.4905%2016.1072%2010.4906%2014.9091%2010.4906%2013.6919C10.4906%2012.2085%2010.4905%2010.7251%2010.4716%209.26075C10.4716%209.08959%2010.5095%209.05156%2010.6607%209.05156C11.4739%209.05156%2012.2681%209.05156%2013.0812%209.05156C13.2325%209.05156%2013.2703%209.08959%2013.2703%209.24174C13.2703%209.54602%2013.2703%209.85031%2013.2703%2010.2116C13.327%2010.1546%2013.3459%2010.1356%2013.3649%2010.1166C14.1023%209.03254%2015.1424%208.72825%2016.3715%208.91843C17.7898%209.14665%2018.6974%2010.1356%2018.9244%2011.657C18.9811%2012.0183%2019%2012.3797%2019%2012.741C19%2014.2624%2019%2015.7649%2019%2017.2863C19%2017.4384%2018.9622%2017.4955%2018.792%2017.4955Z'%20fill='white'/%3e%3cpath%20d='M8.95895%2013.2735C8.95895%2014.6048%208.95895%2015.936%208.95895%2017.2673C8.95895%2017.4384%208.92113%2017.4955%208.75094%2017.4955C7.95673%2017.4765%207.16251%2017.4955%206.3683%2017.4955C6.21702%2017.4955%206.1792%2017.4574%206.1792%2017.3053C6.1792%2014.6238%206.1792%2011.9233%206.1792%209.24173C6.1792%209.10861%206.21702%209.05156%206.3683%209.05156C7.18142%209.05156%207.99455%209.05156%208.80767%209.05156C8.97786%209.05156%208.99677%209.10861%208.99677%209.26075C8.95895%2010.592%208.95895%2011.9233%208.95895%2013.2735Z'%20fill='white'/%3e%3cpath%20d='M9.09135%206.84548C8.90225%207.6062%208.12694%208.04361%207.23818%207.89147C6.29268%207.73932%205.7632%206.80745%206.10358%205.89459C6.3305%205.32406%206.87889%204.98174%207.57855%205.00075C8.63751%204.98174%209.33717%205.83754%209.09135%206.84548Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='list'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M3%2013h2v-2H3v2zm0%204h2v-2H3v2zm0-8h2V7H3v2zm4%204h14v-2H7v2zm0%204h14v-2H7v2zM7%207v2h14V7H7z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='litecoin_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%233D5E98'/%3e%3cpath%20d='M11.9226%2014.2308L12.5643%2012.0297L14.0837%2011.524L14.4616%2010.2304L14.4487%2010.1983L12.9531%2010.696L14.0307%207H10.9746L9.5654%2011.8234L8.38878%2012.2149L8%2013.5486L9.17571%2013.1574L8.34515%2016H16.4786L17%2014.2308H11.9226Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='live_help'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M19%202H5c-1.11%200-2%20.9-2%202v14c0%201.1.89%202%202%202h4l3%203%203-3h4c1.1%200%202-.9%202-2V4c0-1.1-.9-2-2-2zm-6%2016h-2v-2h2v2zm2.07-7.75l-.9.92C13.45%2011.9%2013%2012.5%2013%2014h-2v-.5c0-1.1.45-2.1%201.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41%200-1.1-.9-2-2-2s-2%20.9-2%202H8c0-2.21%201.79-4%204-4s4%201.79%204%204c0%20.88-.36%201.68-.93%202.25z'/%3e%3c/symbol%3e%3csymbol%20id='loader'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M3%2012C3%2016.9705%207.0295%2021%2012%2021C16.9705%2021%2021%2016.9705%2021%2012C21%207.0295%2016.9705%203%2012%203C9.18725%203%206.676%204.29025%205.02575%206.31125'%20stroke='currentColor'%20fill='none'%20stroke-width='1'%20stroke-miterlimit='10'%20stroke-linecap='round'/%3e%3c/symbol%3e%3csymbol%20id='location_city'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15%2011V5l-3-3-3%203v2H3v14h18V11h-6zm-8%208H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6%208h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6%2012h-2v-2h2v2zm0-4h-2v-2h2v2z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='location_on'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5%2010C5%2015.25%2012%2021%2012%2021C12%2021%2019%2015.25%2019%2010C19%206.134%2015.866%203%2012%203C8.134%203%205%206.134%205%2010ZM9%2010C9%2011.657%2010.343%2013%2012%2013C13.657%2013%2015%2011.657%2015%2010C15%208.343%2013.657%207%2012%207C10.343%207%209%208.343%209%2010Z'/%3e%3c/symbol%3e%3csymbol%20id='lock'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M8%2010V7C8%204.791%209.791%203%2012%203C14.209%203%2016%204.791%2016%207V10M17%2021H7C5.895%2021%205%2020.105%205%2019V12C5%2010.895%205.895%2010%207%2010H17C18.105%2010%2019%2010.895%2019%2012V19C19%2020.105%2018.105%2021%2017%2021Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='lock_old'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M18%208h-1V6c0-2.76-2.24-5-5-5S7%203.24%207%206v2H6c-1.1%200-2%20.9-2%202v10c0%201.1.9%202%202%202h12c1.1%200%202-.9%202-2V10c0-1.1-.9-2-2-2zm-6%209c-1.1%200-2-.9-2-2s.9-2%202-2%202%20.9%202%202-.9%202-2%202zm3.1-9H8.9V6c0-1.71%201.39-3.1%203.1-3.1%201.71%200%203.1%201.39%203.1%203.1v2z'/%3e%3c/symbol%3e%3csymbol%20id='logout'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M6%2015V18C6%2018.7956%206.31607%2019.5587%206.87868%2020.1213C7.44129%2020.6839%208.20435%2021%209%2021H18C18.7956%2021%2019.5587%2020.6839%2020.1213%2020.1213C20.6839%2019.5587%2021%2018.7956%2021%2018V6C21%205.20435%2020.6839%204.44129%2020.1213%203.87868C19.5587%203.31607%2018.7956%203%2018%203H9C8.20435%203%207.44129%203.31607%206.87868%203.87868C6.31607%204.44129%206%205.20435%206%206V9M12%2015L15%2012M15%2012L12%209M15%2012H3'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='magic_blink'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M6%203C6%204.06087%205.57857%205.07828%204.82843%205.82843C4.07828%206.57857%203.06087%207%202%207C3.06087%207%204.07828%207.42143%204.82843%208.17157C5.57857%208.92172%206%209.93913%206%2011M6%203C6%204.06087%206.42143%205.07828%207.17157%205.82843C7.92172%206.57857%208.93913%207%2010%207C8.93913%207%207.92172%207.42143%207.17157%208.17157C6.42143%208.92172%206%209.93913%206%2011M6%203V2M6%2011V12M17%2015C17%2013.6739%2016.4732%2012.4021%2015.5355%2011.4645C14.5979%2010.5268%2013.3261%2010%2012%2010C13.3261%2010%2014.5979%209.47322%2015.5355%208.53553C16.4732%207.59785%2017%206.32608%2017%205M17%2015C17%2013.6739%2017.5268%2012.4021%2018.4645%2011.4645C19.4021%2010.5268%2020.6739%2010%2022%2010C20.6739%2010%2019.4021%209.47322%2018.4645%208.53553C17.5268%207.59785%2017%206.32608%2017%205M17%2015V16M17%205V4M10%2021V22M10%2014V13M10%2013.5C10%2014.5609%209.57857%2015.5783%208.82843%2016.3284C8.07828%2017.0786%207.06087%2017.5%206%2017.5C7.06087%2017.5%208.07828%2017.9214%208.82843%2018.6716C9.57857%2019.4217%2010%2020.4391%2010%2021.5C10%2020.4391%2010.4214%2019.4217%2011.1716%2018.6716C11.9217%2017.9214%2012.9391%2017.5%2014%2017.5C12.9391%2017.5%2011.9217%2017.0786%2011.1716%2016.3284C10.4214%2015.5783%2010%2014.5609%2010%2013.5Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='mail_outline'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0%200h24v24H0z'/%3e%3cpath%20d='M20%204H4c-1.1%200-1.99.9-1.99%202L2%2018c0%201.1.9%202%202%202h16c1.1%200%202-.9%202-2V6c0-1.1-.9-2-2-2zm0%2014H4V8l8%205%208-5v10zm-8-7L4%206h16l-8%205z'/%3e%3c/symbol%3e%3csymbol%20id='mc_assist'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.6%202H10.4C5.8%202%202%205.8%202%2010.4V20.7C2%2021.4%202.6%2022%203.3%2022H13.6C18.2%2022%2022%2018.2%2022%2013.6V10.4C22%205.8%2018.2%202%2013.6%202ZM16.9%2013.7C16.9%2014.8%2016%2015.6%2015%2015.6H11.3L8.8%2018.1C8.7%2018.2%208.7%2018.2%208.6%2018.2C8.4%2018.2%208.3%2018.1%208.3%2017.9V15.6C7.3%2015.5%206.5%2014.7%206.5%2013.7V9.5C6.5%208.4%207.4%207.6%208.4%207.6H15.2C16.1%207.6%2016.9%208.4%2016.9%209.3V13.7Z'%20fill='%23703CEE'/%3e%3cpath%20d='M15.0004%208.5H8.40039C7.80039%208.5%207.40039%209%207.40039%209.5V13.6C7.40039%2014.2%207.90039%2014.6%208.40039%2014.6H9.10039V16V16.1C9.20039%2016.2%209.30039%2016.2%209.30039%2016.1L10.8004%2014.6H14.8004C15.4004%2014.6%2015.8004%2014.1%2015.8004%2013.6V9.5C16.0004%209%2015.5004%208.5%2015.0004%208.5ZM11.7004%2013.7C11.5004%2013.7%2011.3004%2013.5%2011.3004%2013.3C11.3004%2013.1%2011.5004%2012.9%2011.7004%2012.9C11.9004%2012.9%2012.1004%2013.1%2012.1004%2013.3C12.1004%2013.5%2011.9004%2013.7%2011.7004%2013.7ZM12.1004%2011.8C12.1004%2011.8%2012.1004%2011.9%2012.1004%2011.8V12.1V12.2C12.1004%2012.4%2011.9004%2012.6%2011.7004%2012.5C11.5004%2012.4%2011.3004%2012.3%2011.4004%2012.1V11.8C11.4004%2011.5%2011.6004%2011.2%2011.9004%2011C12.1004%2010.9%2012.3004%2010.7%2012.3004%2010.5C12.3004%2010.2%2012.1004%2010%2011.8004%2010C11.7004%2010%2011.5004%2010%2011.4004%2010.2C11.3004%2010.3%2011.2004%2010.4%2011.2004%2010.6V10.7C11.2004%2010.9%2011.0004%2011.1%2010.8004%2011C10.6004%2010.9%2010.4004%2010.8%2010.5004%2010.6C10.5004%209.9%2011.1004%209.3%2011.8004%209.4C12.3004%209.4%2012.8004%209.8%2012.9004%2010.3C13.1004%2010.9%2012.8004%2011.6%2012.1004%2011.8Z'%20fill='%23703CEE'/%3e%3c/symbol%3e%3csymbol%20id='mc_dashboard'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.5942%202H10.4058C5.76813%202%202%205.76813%202%2010.4058V20.7163C2%2021.4202%202.5797%2022%203.28363%2022H13.5942C18.2319%2022%2022%2018.2319%2022%2013.5942V10.4058C22%205.76813%2018.2733%202%2013.5942%202Z'%20fill='%23703CEE'/%3e%3cpath%20d='M12%207C12%206.44772%2012.4477%206%2013%206H15.5C16.0523%206%2016.5%206.44772%2016.5%207V17C16.5%2017.5523%2016.0523%2018%2015.5%2018H12V7Z'%20fill='white'/%3e%3cpath%20d='M6%2012C6%2011.4477%206.44772%2011%207%2011H10.5V18H7C6.44772%2018%206%2017.5523%206%2017V12Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='mc_id'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.6%202H10.4C5.8%202%202%205.8%202%2010.4V20.7C2%2021.4%202.6%2022%203.3%2022H13.6C18.2%2022%2022%2018.2%2022%2013.6V10.4C22%205.8%2018.2%202%2013.6%202ZM9.2%206.3C9.8%205.7%2010.6%205.4%2011.5%205.4C12.4%205.4%2013.1%205.7%2013.8%206.3C14.4%206.9%2014.7%207.7%2014.7%208.6C14.7%209.5%2014.4%2010.2%2013.8%2010.9C13.2%2011.5%2012.4%2011.8%2011.5%2011.8C10.6%2011.8%209.9%2011.5%209.2%2010.9C8.6%2010.3%208.3%209.5%208.3%208.6C8.3%207.7%208.6%206.9%209.2%206.3ZM16.5%2018C16.1%2018.4%2015.5%2018.6%2014.8%2018.6H8.4C7.7%2018.6%207.1%2018.4%206.7%2018C6.3%2017.6%206%2017%206%2016.3C6%2016%206%2015.8%206%2015.5C6%2015.2%206.1%2015%206.1%2014.7C6.2%2014.4%206.2%2014.1%206.3%2013.9C6.4%2013.6%206.5%2013.4%206.6%2013.1C6.7%2012.8%206.9%2012.6%207.1%2012.4C7.3%2012.2%207.6%2012%207.9%2011.9C8.2%2011.8%208.5%2011.7%208.9%2011.7C9%2011.7%209.2%2011.8%209.4%2011.9C9.6%2012%209.7%2012.1%209.9%2012.3C10.1%2012.4%2010.3%2012.5%2010.6%2012.6C10.9%2012.7%2011.2%2012.7%2011.5%2012.7C11.8%2012.7%2012.1%2012.7%2012.4%2012.6C12.7%2012.5%2012.9%2012.4%2013.1%2012.3C13.3%2012.2%2013.5%2012.1%2013.6%2012C13.9%2011.8%2014%2011.8%2014.1%2011.8C14.4%2011.8%2014.8%2011.9%2015.1%2012C15.4%2012.1%2015.6%2012.3%2015.9%2012.5C16.1%2012.7%2016.3%2012.9%2016.4%2013.2C16.5%2013.5%2016.7%2013.7%2016.7%2014C16.8%2014.3%2016.9%2014.5%2016.9%2014.8C17%2015.1%2017%2015.4%2017%2015.6C17%2015.9%2017%2016.1%2017%2016.4C17.1%2017.1%2016.9%2017.6%2016.5%2018Z'%20fill='%23E30040'/%3e%3c/symbol%3e%3csymbol%20id='mc_pay'%20viewBox='0%200%2052%2032'%3e%3cpath%20d='M23.7466%2020.2882C23.2862%2019.1645%2023.0528%2017.9607%2023.0598%2016.7462C23.0569%2015.5641%2023.2766%2014.3922%2023.7074%2013.2916C23.7074%2013.2735%2023.7074%2013.2584%2023.7285%2013.2403C23.7044%2013.1499%2023.6803%2013.0564%2023.6532%2012.969C23.4299%2012.2462%2023.062%2011.5765%2022.5718%2011.0006C22.0744%2010.4335%2021.457%209.98449%2020.7644%209.68624C19.9332%209.34756%2019.0407%209.18538%2018.1436%209.20995C17.7078%209.21061%2017.2741%209.27045%2016.8544%209.3878C16.4418%209.50709%2016.0453%209.67614%2015.6735%209.89122C15.3058%2010.1078%2014.9633%2010.3646%2014.6523%2010.6569C14.3474%2010.944%2014.0709%2011.26%2013.8269%2011.6004C13.6189%2011.2647%2013.3644%2010.9602%2013.0708%2010.6961C12.7539%2010.4143%2012.4051%2010.1705%2012.0316%209.9696C11.6271%209.75593%2011.1996%209.58905%2010.7574%209.47221C10.2826%209.34674%209.79344%209.28392%209.3024%209.28531C8.86329%209.28115%208.42593%209.34105%208.00408%209.46316C7.6329%209.57503%207.27681%209.73194%206.94374%209.93041C6.63813%2010.1222%206.35344%2010.3455%206.09425%2010.5966C5.85206%2010.8289%205.62183%2011.0734%205.40443%2011.3291C5.3743%2011.1603%205.33514%2010.9674%205.28393%2010.7443C5.24034%2010.5305%205.17576%2010.3214%205.09114%2010.1203C5.01894%209.94081%204.91712%209.77471%204.78991%209.62896C4.73779%209.56891%204.67348%209.52068%204.6013%209.4874C4.52911%209.45415%204.45067%209.43664%204.3712%209.43603H2.41317C2.20612%209.45605%202.01443%209.55411%201.87697%209.71035C1.79068%209.79422%201.72198%209.89445%201.67491%2010.0052C1.62784%2010.116%201.60334%2010.2351%201.60285%2010.3555V23.1972C1.59068%2023.4176%201.66529%2023.6341%201.8107%2023.8001C1.89451%2023.8818%201.99492%2023.9446%202.1051%2023.9842C2.21529%2024.0237%202.33268%2024.039%202.44932%2024.0292H4.98571C5.08795%2024.0355%205.19031%2024.0187%205.2852%2023.9801C5.38009%2023.9415%205.4651%2023.882%205.53396%2023.8061C5.60424%2023.7306%205.65879%2023.6419%205.69449%2023.5452C5.73015%2023.4484%205.74627%2023.3455%205.74181%2023.2424V15.7062C5.73898%2015.3544%205.81733%2015.0068%205.97075%2014.6903C6.27258%2014.0724%206.7902%2013.5866%207.42571%2013.3247C7.7389%2013.1944%208.07457%2013.1268%208.41376%2013.1258C8.74759%2013.1227%209.07922%2013.1799%209.39277%2013.2946C9.67855%2013.4028%209.93828%2013.5703%2010.1549%2013.7859C10.377%2014.0108%2010.5494%2014.2799%2010.661%2014.5757C10.7893%2014.9176%2010.8517%2015.2807%2010.8447%2015.6459V23.1821C10.8293%2023.4087%2010.8979%2023.6331%2011.0375%2023.8122C11.1189%2023.8913%2011.2167%2023.9518%2011.3238%2023.9893C11.431%2024.0268%2011.5451%2024.0404%2011.6581%2024.0292H14.1071C14.3377%2024.038%2014.563%2023.9582%2014.7367%2023.8061C14.8218%2023.724%2014.888%2023.6242%2014.9307%2023.5139C14.9733%2023.4035%2014.9914%2023.2851%2014.9837%2023.167V15.7393C14.9837%2015.3811%2015.065%2015.0275%2015.2217%2014.7054C15.5343%2014.0707%2016.0709%2013.5745%2016.7278%2013.3127C17.0499%2013.1799%2017.3947%2013.1112%2017.743%2013.1107C18.0593%2013.1036%2018.3731%2013.1695%2018.6599%2013.3034C18.9467%2013.4372%2019.1988%2013.6353%2019.3968%2013.8824C19.597%2014.1335%2019.7464%2014.4212%2019.8366%2014.7295C19.9365%2015.065%2019.9863%2015.4134%2019.9842%2015.7635V23.164C19.9842%2023.7308%2020.2854%2024.0111%2020.9331%2024.0111H23.1743C23.4108%2024.0222%2023.6423%2023.9399%2023.8189%2023.782C23.9082%2023.7011%2023.9782%2023.6011%2024.0236%2023.4894C24.0689%2023.3777%2024.0886%2023.2572%2024.081%2023.1369V20.9936C23.9575%2020.7645%2023.846%2020.5324%2023.7466%2020.2882Z'%20fill='%231D1E26'/%3e%3cpath%20d='M44.0948%203.6001H41.7723C40.152%203.6001%2038.5982%204.24358%2037.4514%205.38924C36.3049%206.53489%2035.6596%208.08907%2035.6572%209.71047V17.2105C35.6587%2017.46%2035.7587%2017.6988%2035.9353%2017.8749C36.1118%2018.051%2036.3507%2018.1503%2036.6001%2018.1511H44.0918C44.8946%2018.1522%2045.6895%2017.9951%2046.4318%2017.6886C47.1737%2017.3821%2047.8482%2016.9322%2048.4163%2016.3648C48.9845%2015.7973%2049.4354%2015.1233%2049.7433%2014.3813C50.0508%2013.6394%2050.2096%2012.844%2050.2099%2012.0407V9.71047C50.2075%208.08907%2049.5622%206.53489%2048.4157%205.38924C47.2692%204.24358%2045.7152%203.6001%2044.0948%203.6001Z'%20fill='%234B00FF'/%3e%3cpath%20d='M36.8204%2021.7289L35.6155%2019.872C35.4941%2019.6635%2035.3079%2019.5005%2035.0853%2019.4077C35.0356%2019.3929%2034.9838%2019.3858%2034.9317%2019.3866H34.8443C34.7904%2019.3879%2034.7371%2019.395%2034.6847%2019.4077C34.5672%2019.4542%2034.4561%2019.5149%2034.3533%2019.5886C33.6861%2020.101%2032.8658%2020.3729%2032.0248%2020.3603C31.5674%2020.3661%2031.1141%2020.2725%2030.6963%2020.086C30.3017%2019.9083%2029.9502%2019.6471%2029.6661%2019.3203C29.37%2018.9858%2029.14%2018.5981%2028.9883%2018.1778C28.672%2017.2722%2028.672%2016.286%2028.9883%2015.3804C29.1416%2014.9555%2029.368%2014.5607%2029.6571%2014.2138C29.9425%2013.8815%2030.2932%2013.6117%2030.6873%2013.421C31.1021%2013.2226%2031.556%2013.1196%2032.0158%2013.1195C32.4375%2013.116%2032.8565%2013.1864%2033.2538%2013.3275C33.3198%2013.3544%2033.3906%2013.368%2033.462%2013.3673C33.5331%2013.3667%2033.6036%2013.352%2033.6692%2013.3239C33.7346%2013.2959%2033.7939%2013.2552%2033.8436%2013.204C33.8933%2013.1529%2033.9325%2013.0924%2033.9587%2013.0261C33.9852%2012.9631%2033.9985%2012.8954%2033.9979%2012.8271V9.96333C33.9976%209.8388%2033.9542%209.71825%2033.875%209.62212C33.796%209.52596%2033.6861%209.46012%2033.5641%209.43579C33.0674%209.34225%2032.5634%209.29384%2032.0579%209.2911C31.0619%209.2864%2030.0751%209.48327%2029.157%209.86988C28.2762%2010.2436%2027.4739%2010.7806%2026.7923%2011.4525C25.9248%2012.3226%2025.2832%2013.3919%2024.9233%2014.5672C24.5634%2015.7424%2024.4962%2016.9878%2024.7276%2018.195C24.959%2019.4021%2025.4819%2020.5343%2026.2508%2021.4929C27.0197%2022.4514%2028.0113%2023.2072%2029.139%2023.6943C30.0536%2024.0948%2031.0415%2024.3001%2032.0399%2024.2972C32.8366%2024.3034%2033.6283%2024.1676%2034.3774%2023.8963C35.1064%2023.6341%2035.8014%2023.2849%2036.4469%2022.8563C36.5713%2022.7713%2036.684%2022.6699%2036.7813%2022.5549C36.8846%2022.4412%2036.9406%2022.2924%2036.9379%2022.1389C36.9445%2021.993%2036.9033%2021.8491%2036.8204%2021.7289Z'%20fill='%231D1E26'/%3e%3cpath%20d='M43.3631%209.08059V6.50622C43.3631%206.45038%2043.3451%206.39604%2043.3116%206.35129C43.2782%206.30653%2043.2315%206.27375%2043.1779%206.25783C43.1246%206.24191%2043.0673%206.2437%2043.0149%206.26292C42.9625%206.28215%2042.9176%206.31779%2042.8872%206.36454L39.3085%2011.9112C39.2841%2011.949%2039.2703%2011.9928%2039.2688%2012.0378C39.2669%2012.0828%2039.2775%2012.1274%2039.2992%2012.1669C39.3209%2012.2064%2039.3528%2012.2394%2039.3914%2012.2623C39.4302%2012.2852%2039.4745%2012.2972%2039.5194%2012.2971H42.2847C42.3157%2012.2967%2042.3468%2012.3025%2042.3757%2012.3141C42.4043%2012.3257%2042.4305%2012.343%2042.4528%2012.3649C42.4748%2012.3867%2042.4926%2012.4128%2042.5046%2012.4415C42.5164%2012.4702%2042.5227%2012.501%2042.5227%2012.5322V15.0463C42.5215%2015.0992%2042.5378%2015.1511%2042.5688%2015.1939C42.5998%2015.2367%2042.6441%2015.268%2042.695%2015.2832C42.7456%2015.2982%2042.7998%2015.2962%2042.8492%2015.2774C42.8989%2015.2585%2042.9408%2015.2239%2042.9685%2015.1789L46.514%209.71062C46.5397%209.67152%2046.5541%209.62625%2046.5559%209.57958C46.5577%209.53292%2046.5472%209.48658%2046.5249%209.44553C46.5026%209.40447%2046.4698%209.37016%2046.4297%209.34626C46.3896%209.32232%2046.3438%209.30972%2046.2972%209.30969H43.586C43.527%209.30668%2043.471%209.28139%2043.4297%209.23891C43.3884%209.19641%2043.3646%209.13989%2043.3631%209.08059Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='mc_pay_app'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19%200H5C2.23858%200%200%202.23858%200%205V19C0%2021.7614%202.23858%2024%205%2024H19C21.7614%2024%2024%2021.7614%2024%2019V5C24%202.23858%2021.7614%200%2019%200Z'%20fill='%23703CEE'/%3e%3cpath%20d='M9.52804%2013.9614C9.3822%2013.6299%209.3085%2013.2746%209.31124%2012.9162C9.30985%2012.5674%209.37922%2012.2214%209.51568%2011.8968C9.51568%2011.8915%209.51568%2011.887%209.52233%2011.8817C9.51473%2011.855%209.50807%2011.8274%209.49856%2011.8016C9.42862%2011.5873%209.31244%2011.3887%209.15721%2011.2181C9.00017%2011.0508%208.80528%2010.9183%208.5867%2010.8303C8.3272%2010.7306%208.04848%2010.6821%207.76802%2010.688C7.63011%2010.6878%207.49283%2010.7054%207.36011%2010.7405C7.22992%2010.7749%207.10498%2010.8249%206.98833%2010.889C6.87186%2010.9527%206.76341%2011.0285%206.66504%2011.1149C6.56668%2011.1997%206.47809%2011.294%206.4007%2011.396C6.33513%2011.2969%206.25476%2011.207%206.16204%2011.1292C6.06245%2011.0455%205.95228%2010.9735%205.834%2010.9148C5.70628%2010.8531%205.57129%2010.8057%205.43179%2010.7734C5.28193%2010.7363%205.12753%2010.7178%204.97253%2010.7182C4.83393%2010.717%204.69587%2010.7347%204.56272%2010.7707C4.44536%2010.8032%204.33289%2010.8495%204.22802%2010.9086C4.13009%2010.9627%204.03889%2011.0269%203.95608%2011.0998C3.8793%2011.1681%203.8066%2011.2402%203.73833%2011.316C3.72882%2011.267%203.71646%2011.2092%203.70125%2011.1434C3.68625%2011.0806%203.6659%2011.019%203.64039%2010.9593C3.61712%2010.9065%203.58502%2010.8576%203.54531%2010.8143C3.5287%2010.7957%203.50789%2010.7808%203.48438%2010.7706C3.46086%2010.7605%203.43523%2010.7553%203.40934%2010.7556H2.79129C2.72587%2010.7596%202.6646%2010.787%202.62014%2010.8321C2.5919%2010.857%202.56961%2010.8873%202.5547%2010.9209C2.53979%2010.9544%202.5326%2010.9905%202.53361%2011.0269V14.8162C2.52977%2014.8812%202.55332%2014.9451%202.59922%2014.9941C2.62571%2015.0182%202.65741%2015.0366%202.69218%2015.0483C2.72695%2015.06%202.76399%2015.0645%202.8008%2015.0617H3.60426C3.63648%2015.0631%203.66865%2015.0579%203.69853%2015.0466C3.72841%2015.0352%203.7553%2015.0179%203.77732%2014.9959C3.8221%2014.9508%203.84603%2014.891%203.84388%2014.8295V12.6057C3.84274%2012.5019%203.86748%2012.3993%203.91614%2012.306C3.96357%2012.2156%204.02799%2012.134%204.10631%2012.0649C4.18463%2011.996%204.27585%2011.9411%204.3754%2011.903C4.47394%2011.8632%204.57994%2011.842%204.68728%2011.8408C4.79265%2011.8398%204.89734%2011.8567%204.9963%2011.8906C5.08662%2011.9223%205.16864%2011.9718%205.23687%2012.0356C5.30701%2012.1022%205.36143%2012.1819%205.39661%2012.2695C5.43672%2012.3705%205.45639%2012.4776%205.45461%2012.5853V14.8091C5.44918%2014.876%205.47091%2014.9424%205.51546%2014.995C5.54138%2015.0183%205.5724%2015.0361%205.60637%2015.0472C5.64035%2015.0582%205.67648%2015.0623%205.71229%2015.059H6.48438C6.55717%2015.0616%206.62828%2015.0381%206.6831%2014.9932C6.71003%2014.969%206.73096%2014.9396%206.74443%2014.907C6.7579%2014.8744%206.76358%2014.8395%206.76107%2014.8046V12.6182C6.76073%2012.5125%206.78644%2012.4081%206.83619%2012.3131C6.88533%2012.2202%206.95201%2012.1365%207.03302%2012.0658C7.11447%2011.9959%207.20888%2011.9404%207.31161%2011.9021C7.41308%2011.8622%207.52196%2011.8413%207.63205%2011.8408C7.73595%2011.839%207.83886%2011.86%207.93252%2011.9021C8.01845%2011.9422%208.0943%2011.9989%208.15501%2012.0685C8.21781%2012.1427%208.26463%2012.2276%208.29289%2012.3184C8.32451%2012.418%208.34021%2012.5214%208.33948%2012.6253V14.8091C8.33948%2014.9754%208.43456%2015.0581%208.63995%2015.0581H9.34643C9.42131%2015.0609%209.49447%2015.0367%209.55086%2014.9905C9.57856%2014.9663%209.60025%2014.9367%209.61438%2014.9038C9.62851%2014.871%209.63474%2014.8356%209.63263%2014.8002V14.1677C9.5946%2014.1001%209.55942%2014.0325%209.52804%2013.9614Z'%20fill='white'/%3e%3cpath%20d='M13.6188%2014.3175L13.2499%2013.7757C13.2127%2013.7152%2013.1561%2013.6677%2013.0884%2013.6402C13.073%2013.6355%2013.0567%2013.6335%2013.0405%2013.6341H13.0137C12.9974%2013.6337%2012.9812%2013.6361%2012.9658%2013.6411C12.9289%2013.6534%2012.8944%2013.6712%2012.8634%2013.6939C12.6585%2013.8424%2012.4076%2013.9216%2012.1503%2013.919C12.0102%2013.9206%2011.8714%2013.8929%2011.7435%2013.8381C11.6229%2013.7864%2011.5153%2013.7105%2011.4281%2013.6156C11.3388%2013.5172%2011.2694%2013.4039%2011.2233%2013.2814C11.1274%2013.017%2011.1274%2012.7295%2011.2233%2012.4651C11.2697%2012.3409%2011.339%2012.2256%2011.4281%2012.1248C11.5144%2012.0266%2011.6212%2011.9466%2011.7417%2011.8899C11.8685%2011.8314%2012.0076%2011.8013%2012.1485%2011.802C12.2776%2011.8008%2012.406%2011.8213%2012.5276%2011.8627C12.5527%2011.8723%2012.5799%2011.8759%2012.6068%2011.8732C12.6338%2011.8705%2012.6596%2011.8615%2012.682%2011.8471C12.7045%2011.8327%2012.7229%2011.8133%2012.7357%2011.7906C12.7485%2011.7678%2012.7553%2011.7425%2012.7555%2011.7167V10.8846C12.7551%2010.8476%2012.7413%2010.8119%2012.7164%2010.7835C12.6915%2010.7551%2012.6571%2010.7358%2012.6189%2010.7289C12.4669%2010.7013%2012.3125%2010.6874%2012.1577%2010.6876C11.8527%2010.685%2011.5503%2010.7422%2011.2694%2010.8556C10.8544%2011.024%2010.5004%2011.305%2010.2516%2011.6638C10.0028%2012.0225%209.87012%2012.4432%209.87012%2012.8733C9.87012%2013.3034%2010.0028%2013.724%2010.2516%2014.0827C10.5004%2014.4415%2010.8544%2014.7226%2011.2694%2014.8909C11.5496%2015.0059%2011.8518%2015.0643%2012.1568%2015.0625C12.4007%2015.0634%2012.6429%2015.0238%2012.8726%2014.9455C13.0957%2014.8686%2013.3084%2014.7667%2013.5063%2014.642C13.5446%2014.6174%2013.5791%2014.5878%2013.6087%2014.5541C13.6403%2014.5209%2013.6575%2014.4775%2013.6567%2014.4327C13.6567%2014.3915%2013.6435%2014.3513%2013.6188%2014.3175Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M13.6434%2013.3125H19.4548C20.5658%2013.3125%2021.4664%2012.4751%2021.4664%2011.4422V11.0266C21.4664%209.99362%2020.5658%209.15625%2019.4548%209.15625H15.4315C14.3206%209.15625%2013.4199%209.99362%2013.4199%2011.0266V13.1047C13.4199%2013.2195%2013.52%2013.3125%2013.6434%2013.3125ZM15.1443%2012.0033C15.0561%2012.0033%2014.9845%2011.9368%2014.9845%2011.8547V10.6109C14.9845%2010.4962%2015.0846%2010.4031%2015.208%2010.4031H15.6926C15.845%2010.4031%2015.9753%2010.426%2016.0835%2010.4717C16.1933%2010.5174%2016.2778%2010.583%2016.3368%2010.6683C16.3958%2010.7536%2016.4253%2010.855%2016.4253%2010.9723C16.4253%2011.0897%2016.3958%2011.191%2016.3368%2011.2764C16.2778%2011.3617%2016.1933%2011.4272%2016.0835%2011.4729C15.9753%2011.5187%2015.845%2011.5415%2015.6926%2011.5415H15.3041V11.8547C15.3041%2011.9368%2015.2326%2012.0033%2015.1443%2012.0033ZM15.6779%2011.2901H15.3041V10.6546H15.6779C15.8188%2010.6546%2015.9245%2010.682%2015.995%2010.7369C16.0671%2010.7917%2016.1032%2010.8702%2016.1032%2010.9723C16.1032%2011.0729%2016.0671%2011.1514%2015.995%2011.2078C15.9245%2011.2626%2015.8188%2011.2901%2015.6779%2011.2901ZM16.6456%2012.0033C16.5372%2012.0033%2016.4649%2011.8994%2016.5094%2011.8075L17.1298%2010.5257C17.1659%2010.4511%2017.2457%2010.4031%2017.3336%2010.4031H17.3595C17.4473%2010.4031%2017.527%2010.451%2017.5632%2010.5254L18.1842%2011.8045C18.2295%2011.8977%2018.1561%2012.0033%2018.0462%2012.0033C17.9856%2012.0033%2017.9309%2011.9698%2017.907%2011.918L17.7664%2011.6136C17.7467%2011.6257%2017.723%2011.633%2017.697%2011.633H16.9467C16.9361%2011.633%2016.9258%2011.6318%2016.9161%2011.6295L16.7828%2011.9191C16.7593%2011.9702%2016.7053%2012.0033%2016.6456%2012.0033ZM17.3441%2010.6995L17.6676%2011.3998H17.0218L17.3441%2010.6995ZM18.8192%2011.9087C18.8192%2011.9609%2018.8648%2012.0033%2018.921%2012.0033H19.0343C19.0921%2012.0033%2019.1389%2011.9598%2019.1389%2011.9061V11.4395L19.7071%2010.5654C19.7534%2010.4941%2019.6982%2010.4031%2019.6086%2010.4031H19.5736C19.5266%2010.4031%2019.4829%2010.426%2019.4585%2010.4634L18.9893%2011.1816L18.5275%2010.4689C18.501%2010.4281%2018.4535%2010.4031%2018.4023%2010.4031H18.3575C18.2633%2010.4031%2018.2053%2010.4988%2018.254%2010.5737L18.8192%2011.4433V11.9087Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='mc_pay_compact'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.5959%202H10.4041C8.17719%202%206.04181%202.88445%204.46574%204.45913C2.89009%206.03382%202.00331%208.17%202%2010.3986V20.7073C2.00207%2021.0502%202.13952%2021.3783%202.38212%2021.6204C2.62472%2021.8625%202.95301%2021.9989%203.2958%2022H13.5918C14.6951%2022.0016%2015.7876%2021.7856%2016.8077%2021.3644C17.8274%2020.9431%2018.7543%2020.3247%2019.5351%2019.5448C20.3159%2018.7648%2020.9356%2017.8384%2021.3587%2016.8186C21.7814%2015.7988%2021.9996%2014.7056%2022%2013.6014V10.3986C21.9967%208.17%2021.1099%206.03382%2019.5343%204.45913C17.9586%202.88445%2015.8228%202%2013.5959%202Z'%20fill='%234B00FF'/%3e%3cpath%20d='M12.6186%209.07202V5.37242C12.6186%205.29218%2012.5938%205.21408%2012.5479%205.14977C12.502%205.08545%2012.4379%205.03835%2012.3644%205.01546C12.2912%204.99259%2012.2127%204.99515%2012.1407%205.02278C12.0688%205.05041%2012.0072%205.10163%2011.9655%205.16881L7.05484%2013.1399C7.02136%2013.1942%207.00234%2013.2571%207.00027%2013.3218C6.99779%2013.3864%207.01226%2013.4505%207.04202%2013.5073C7.07179%2013.5641%207.1156%2013.6114%207.16851%2013.6444C7.22183%2013.6773%207.28259%2013.6946%207.34418%2013.6944H11.1388C11.1814%2013.6938%2011.2239%2013.7021%2011.2636%2013.7188C11.3029%2013.7356%2011.3388%2013.7603%2011.3694%2013.7918C11.3996%2013.8232%2011.424%2013.8607%2011.4405%2013.902C11.4566%2013.9432%2011.4653%2013.9875%2011.4653%2014.0323V17.6452C11.4637%2017.7213%2011.486%2017.7959%2011.5286%2017.8574C11.5711%2017.9189%2011.6319%2017.9639%2011.7018%2017.9856C11.7712%2018.0073%2011.8456%2018.0044%2011.9134%2017.9773C11.9816%2017.9502%2012.0391%2017.9005%2012.0771%2017.8358L16.9423%209.97743C16.9774%209.92124%2016.9972%209.85617%2016.9997%209.78911C17.0022%209.72205%2016.9877%209.65546%2016.9572%209.59646C16.9266%209.53746%2016.8815%209.48816%2016.8265%209.45381C16.7716%209.41941%2016.7087%209.4013%2016.6447%209.40126H12.9245C12.8435%209.39693%2012.7666%209.36058%2012.7099%209.29954C12.6533%209.23846%2012.6207%209.15723%2012.6186%209.07202Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='mc_pay_menu'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.5942%202H10.4058C5.76813%202%202%205.76813%202%2010.4058V20.7163C2%2021.4202%202.5797%2022%203.28363%2022H13.5942C18.2319%2022%2022%2018.2319%2022%2013.5942V10.4058C22%205.76813%2018.2733%202%2013.5942%202Z'%20fill='%23703CEE'/%3e%3cpath%20d='M12.9304%206L7%2014.1H10.9536L10.925%2019L17%2010.85L12.9304%2010.9V6Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='mc_pay_menu_circle_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200V0C18.6274%200%2024%205.37258%2024%2012V12C24%2018.6274%2018.6274%2024%2012%2024V24C5.37258%2024%200%2018.6274%200%2012V12Z'%20fill='%23703CEE'/%3e%3cpath%20d='M12.9304%205L7%2013.723H10.9536L10.925%2019L17%2010.2231L12.9304%2010.2769V5Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='mc_pay_mobile_app'%20viewBox='0%200%2024%2024'%3e%3cg%20id='surface1'%3e%3cpath%20style='%20stroke:none;fill-rule:nonzero;fill:url(%23linear0);'%20d='M%206%200%20L%2018%200%20C%2021.3125%200%2024%202.6875%2024%206%20L%2024%2018%20C%2024%2021.3125%2021.3125%2024%2018%2024%20L%206%2024%20C%202.6875%2024%200%2021.3125%200%2018%20L%200%206%20C%200%202.6875%202.6875%200%206%200%20Z%20M%206%200%20'/%3e%3cpath%20style='%20stroke:none;fill-rule:nonzero;fill:rgb(100%25,100%25,100%25);fill-opacity:1;'%20d='M%2013.105469%202.929688%20L%205.976562%2014.269531%20L%2010.734375%2014.269531%20L%2010.683594%2021.078125%20L%2018.011719%209.71875%20L%2013.105469%209.769531%20Z%20M%2013.105469%202.929688%20'/%3e%3cpath%20style='%20stroke:none;fill-rule:nonzero;fill:url(%23linear1);'%20d='M%2010.464844%2021.820312%20L%2010.519531%2014.484375%20L%205.585938%2014.484375%20L%2013.320312%202.183594%20L%2013.320312%209.550781%20L%2018.410156%209.5%20Z%20M%206.367188%2014.054688%20L%2010.953125%2014.054688%20L%2010.90625%2020.339844%20L%2017.613281%209.9375%20L%2012.890625%209.988281%20L%2012.890625%203.675781%20Z%20M%206.367188%2014.054688%20'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='mc_studio'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.6%202H10.4C5.8%202%202%205.8%202%2010.4V20.7C2%2021.4%202.6%2022%203.3%2022H13.6C18.2%2022%2022%2018.2%2022%2013.6V10.4C22%205.8%2018.2%202%2013.6%202ZM14.6%2014.9C14.6%2015.3%2014.3%2015.7%2013.8%2015.7H7.5C7.1%2015.7%206.7%2015.4%206.7%2014.9V9.9C6.7%209.5%207%209.1%207.5%209.1H13.8C14.2%209.1%2014.6%209.4%2014.6%209.9V14.9ZM17.7%2014.5V14.6C17.6%2014.7%2017.5%2014.7%2017.4%2014.7L15.2%2013.5C15.1%2013.5%2015.1%2013.4%2015.1%2013.3V11.5C15.1%2011.4%2015.1%2011.3%2015.2%2011.3L17.4%2010.1H17.5C17.6%2010.1%2017.7%2010.2%2017.7%2010.3V14.5Z'%20fill='%23E30040'/%3e%3c/symbol%3e%3csymbol%20id='mc_vidwide'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.6%202H10.4C5.8%202%202%205.8%202%2010.4V20.7C2%2021.4%202.6%2022%203.3%2022H13.6C18.2%2022%2022%2018.2%2022%2013.6V10.4C22%205.8%2018.2%202%2013.6%202Z'%20fill='url(%23mc_vidwide_paint0_linear)'/%3e%3cpath%20d='M9.16652%2010.0775C8.6872%209.14931%209.29987%208%2010.274%208H17.726C18.7001%208%2019.3128%209.14931%2018.8335%2010.0775L15.1075%2017.2928C14.6205%2018.2357%2013.3795%2018.2357%2012.8925%2017.2928L9.16652%2010.0775Z'%20fill='white'%20fill-opacity='0.7'/%3e%3cpath%20d='M5.16652%2010.0775C4.6872%209.14931%205.29987%208%206.27399%208H13.726C14.7001%208%2015.3128%209.14931%2014.8335%2010.0775L11.1075%2017.2928C10.6205%2018.2357%209.3795%2018.2357%208.89253%2017.2928L5.16652%2010.0775Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='mcadslogo'%20viewBox='0%200%20230%20230'%3e%3cstyle%20type='text/css'%3e%20.mcads0{fill:%23111111;}%20.mcads1{fill:%23E20E41;}%20.mcads2{fill:%23F2F3F9;}%3c/style%3e%3cpath%20class='mcads0'%20d='M81.4,142.1c-1.6-4-2.5-8.2-2.5-12.6c0-4.2,0.7-8.3,2.4-12.3c0-0.1,0-0.1,0.1-0.2c-0.1-0.3-0.2-0.6-0.3-1%20c-0.7-2.6-2.1-4.9-3.8-6.9c-1.7-2-4-3.6-6.4-4.7c-2.9-1.2-6.1-1.8-9.3-1.7c-1.5,0-3.1,0.2-4.6,0.6c-1.5,0.4-2.9,1-4.2,1.8%20c-1.3,0.7-2.6,1.7-3.6,2.7c-1.1,1-2,2.1-2.9,3.3c-0.7-1.2-1.6-2.2-2.7-3.2c-1.1-1-2.4-1.9-3.7-2.6c-1.4-0.7-3-1.4-4.5-1.8%20c-1.7-0.4-3.4-0.6-5.1-0.6c-1.6,0-3.1,0.2-4.6,0.6c-1.3,0.4-2.6,1-3.7,1.6c-1.1,0.6-2.1,1.4-3,2.4c-0.9,0.9-1.7,1.7-2.5,2.6%20c-0.1-0.6-0.2-1.3-0.4-2c-0.2-0.7-0.4-1.5-0.6-2.1s-0.6-1.2-1.1-1.7c-0.4-0.4-1-0.6-1.5-0.6H5.8c-0.7,0-1.4,0.3-1.9,1%20c-0.6,0.6-1,1.5-1,2.4v45.5c0,0.7,0.2,1.5,0.7,2c0.6,0.6,1.4,0.9,2.2,0.9h9c0.7,0,1.4-0.2,1.9-0.7c0.5-0.5,0.7-1.3,0.7-2v-26.7%20c0-1.3,0.3-2.5,0.9-3.6c1.1-2.2,2.9-4,5.1-4.8c1.1-0.4,2.2-0.7,3.5-0.7c1.2,0,2.4,0.2,3.5,0.6c1.1,0.4,1.9,1,2.7,1.7%20c0.7,0.9,1.4,1.7,1.8,2.8c0.4,1.2,0.6,2.5,0.6,3.7v26.7c-0.1,0.9,0.2,1.6,0.6,2.2c0.6,0.5,1.4,0.9,2.2,0.7h8.4%20c0.9,0,1.6-0.2,2.2-0.7c0.6-0.6,1-1.4,0.9-2.2v-26.3c0-1.3,0.3-2.6,0.9-3.6s1.3-2.1,2.2-3c1-0.9,2-1.5,3.1-2%20c1.2-0.4,2.4-0.6,3.6-0.6c2.2,0,4.5,1,5.9,2.8c0.7,0.9,1.3,1.9,1.5,3c0.3,1.2,0.5,2.5,0.5,3.7v26.2c0,2,1.1,3,3.4,3h7.9%20c0.9,0,1.6-0.2,2.2-0.9c0.6-0.6,1-1.4,1-2.2v-7.6C82,143.7,81.7,143,81.4,142.1z'/%3e%3cpath%20class='mcads0'%20d='M127.7,147.1l-4.3-6.6c-0.4-0.7-1.1-1.3-1.9-1.7c-0.2,0-0.3-0.1-0.5-0.1h-0.3c-0.2,0-0.4,0-0.5,0.1%20c-0.4,0.1-0.9,0.3-1.2,0.6c-2.4,1.8-5.2,2.8-8.2,2.8c-1.6,0-3.2-0.3-4.7-1c-1.4-0.6-2.7-1.6-3.6-2.7c-1.1-1.2-1.8-2.6-2.4-4.1%20c-1.2-3.2-1.2-6.7,0-9.9c0.5-1.5,1.4-2.9,2.5-4.2c1-1.2,2.2-2.1,3.6-2.8c1.5-0.7,3.1-1.1,4.7-1.1c1.5,0,3,0.2,4.4,0.7l0,0%20c1,0.4,2.1-0.1,2.5-1.1c0.1-0.2,0.1-0.4,0.1-0.6v-10.2c0-1-0.6-1.7-1.6-1.9c-1.7-0.3-3.5-0.5-5.3-0.5c-3.5,0-7.1,0.6-10.3,2%20c-3.1,1.3-6,3.2-8.4,5.6c-10.4,10.5-10.4,27.4,0,37.7c2.5,2.4,5.2,4.3,8.3,5.7c3.2,1.4,6.7,2.1,10.3,2c2.8,0,5.7-0.4,8.3-1.4%20c2.6-1,5-2.1,7.4-3.6c0.4-0.3,0.9-0.6,1.2-1.1s0.5-1,0.5-1.5C128.2,148.1,128,147.6,127.7,147.1z'/%3e%3cpath%20class='mcads1'%20d='M205.7,82.4h-60.2c-12,0-21.7,9.7-21.7,21.7l0,0v26.8c0,1.8,1.5,3.3,3.3,3.4h78.5c12,0,21.7-9.7,21.7-21.7l0,0%20v-8.6C227.3,92.1,217.7,82.4,205.7,82.4z'/%3e%3cpath%20class='mcads2'%20d='M148.3,117.6c-1-0.5-1.4-1.7-0.9-2.7l7.6-15.1c0.5-1,1.7-1.4,2.7-1c0.4,0.2,0.7,0.5,1,1l7.5,15.1%20c0.2,0.4,0.3,1.1,0.1,1.5c-0.2,0.5-0.5,1-1,1.2c-0.3,0.1-0.5,0.2-0.9,0.2c-0.7,0-1.5-0.4-1.8-1.1l-1.3-2.7h-8.8l-1.4,2.6%20c-0.2,0.5-0.6,0.9-1.2,1C149.4,117.9,148.8,117.9,148.3,117.6z%20M154.4,110h4.8l-2.4-4.8L154.4,110z'/%3e%3cpath%20class='mcads2'%20d='M170.7,117.9c-1.1,0-2-0.9-2-2l0,0v-15.1c0-1.1,0.9-2,2-2h5c5.2,0,9.5,4.3,9.5,9.5c0,5.2-4.3,9.5-9.5,9.5%20L170.7,117.9z%20M172.8,113.8h3c3,0,5.6-2.5,5.6-5.5c0-1.5-0.5-2.9-1.6-4s-2.5-1.6-3.8-1.6h-3L172.8,113.8z'/%3e%3cpath%20class='mcads2'%20d='M198.2,113.8c0.4,0,1-0.2,1.3-0.5c0.3-0.3,0.5-0.7,0.5-1.3c0-0.4-0.2-1-0.5-1.3c-0.3-0.3-0.7-0.5-1.2-0.5h-5%20c-3.2,0-5.8-2.6-5.8-5.8c0-1.5,0.6-3,1.7-4.1c1.1-1.1,2.6-1.7,4.1-1.7h8.8c1.1,0,2,0.9,2,2c0,0.5-0.2,1.1-0.6,1.4%20c-0.4,0.4-0.9,0.5-1.4,0.5h-8.8c-1,0-1.7,0.7-1.7,1.7c0,0.4,0.2,1,0.5,1.3c0.3,0.3,0.7,0.5,1.3,0.5h5c3.2,0,5.8,2.6,5.8,5.8%20c0,1.5-0.6,3-1.7,4.1c-1.1,1.1-2.6,1.7-4.1,1.7h-8.8c-0.5,0-1.1-0.2-1.4-0.5c-0.7-0.7-0.7-2,0-2.9c0.4-0.4,0.9-0.6,1.4-0.6%20L198.2,113.8z'/%3e%3c/symbol%3e%3csymbol%20id='mediacube'%20viewBox='0%200%20676%20781'%3e%3cg%3e%3cg%20transform='translate(-863%20-150)'%3e%3cuse%20fill='%23ed1d2b'%20xlink:href='%23mediacube_kndia'/%3e%3c/g%3e%3cg%20transform='translate(-863%20-150)'%3e%3cuse%20fill='%23ed1d2b'%20xlink:href='%23mediacube_kndib'/%3e%3c/g%3e%3cg%20transform='translate(-863%20-150)'%3e%3cuse%20fill='%23ed1d2b'%20xlink:href='%23mediacube_kndic'/%3e%3c/g%3e%3cg%20transform='translate(-863%20-150)'%3e%3cuse%20fill='%23c62127'%20xlink:href='%23mediacube_kndid'/%3e%3c/g%3e%3cg%20transform='translate(-863%20-150)'%3e%3cuse%20fill='%23c62127'%20xlink:href='%23mediacube_kndie'/%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='menu'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4%206H20M20%2012H4M4%2018H20'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='menu_new'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M3%206H21M17%2012H3M3%2018H13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='message'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9%2010H15M9%2013H12M12%204C7.03%204%203%207.35868%203%2011.4971C3.03694%2012.7249%203.39056%2013.9223%204.02657%2014.9731C4.66258%2016.024%205.55939%2016.8926%206.63%2017.4948C6.41369%2018.0826%206.11292%2018.6358%205.73714%2019.1369C5.63591%2019.2847%205.58282%2019.4601%205.58511%2019.6392C5.58741%2019.8184%205.64498%2019.9924%205.74996%2020.1376C5.85494%2020.2827%206.00219%2020.3919%206.17159%2020.4501C6.34098%2020.5084%206.52424%2020.5129%206.6963%2020.4631C7.89863%2020.113%209.03031%2019.555%2010.04%2018.8143C10.6863%2018.9354%2011.3425%2018.9956%2012%2018.9942C16.97%2018.9942%2021%2015.6355%2021%2011.4971C21%207.35869%2016.97%204%2012%204Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='messenger'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cpath%20d='M12,1.9c-5.6,0-10.1,4.2-10.1,9.4c0,3,1.5,5.6,3.8,7.3v3.6l3.5-1.9c0.9,0.3,1.9,0.4,2.9,0.4c5.6,0,10.1-4.2,10.1-9.4%20C22.1,6.1,17.6,1.9,12,1.9z%20M13,14.5l-2.6-2.8l-5,2.8l5.5-5.9l2.6,2.8l5-2.8L13,14.5z'/%3e%3c/symbol%3e%3csymbol%20id='messenger_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%2300C6FF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.94679%2020V17.1505C5.14843%2015.7923%204%2013.7239%204%2011.4074C4%207.31639%207.58171%204%2012%204C16.4186%204%2020%207.31639%2020%2011.4074C20%2015.4981%2016.4186%2018.8148%2012%2018.8148C11.1757%2018.8148%2010.3801%2018.6993%209.63171%2018.4852L6.94679%2020ZM6.83105%2013.9118L11.1454%209.37856L13.2161%2011.479L17.099%209.37856L12.809%2013.9118L10.7575%2011.7739L6.83105%2013.9118Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='minus'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cpath%20d='M6,11h12v2H6V11z'/%3e%3c/symbol%3e%3csymbol%20id='mobile_device'%20viewBox='0%200%2032%2033'%3e%3cpath%20d='M14.6667%207.5C14.1144%207.5%2013.6667%207.94772%2013.6667%208.5C13.6667%209.05228%2014.1144%209.5%2014.6667%209.5V7.5ZM17.3333%209.5C17.8856%209.5%2018.3333%209.05228%2018.3333%208.5C18.3333%207.94772%2017.8856%207.5%2017.3333%207.5V9.5ZM17%2024.3646C17%2023.8123%2016.5523%2023.3646%2016%2023.3646C15.4477%2023.3646%2015%2023.8123%2015%2024.3646H17ZM15%2024.5C15%2025.0523%2015.4477%2025.5%2016%2025.5C16.5523%2025.5%2017%2025.0523%2017%2024.5H15ZM21.3333%2027.5H10.6667V29.5H21.3333V27.5ZM10.6667%2027.5C9.74562%2027.5%209%2026.7544%209%2025.8333H7C7%2027.859%208.64105%2029.5%2010.6667%2029.5V27.5ZM9%2025.8333V7.16667H7V25.8333H9ZM9%207.16667C9%206.24562%209.74562%205.5%2010.6667%205.5V3.5C8.64105%203.5%207%205.14105%207%207.16667H9ZM10.6667%205.5H21.3333V3.5H10.6667V5.5ZM21.3333%205.5C22.2544%205.5%2023%206.24562%2023%207.16667H25C25%205.14105%2023.359%203.5%2021.3333%203.5V5.5ZM23%207.16667V25.8333H25V7.16667H23ZM23%2025.8333C23%2026.7544%2022.2544%2027.5%2021.3333%2027.5V29.5C23.359%2029.5%2025%2027.859%2025%2025.8333H23ZM14.6667%209.5H17.3333V7.5H14.6667V9.5ZM15%2024.3646V24.5H17V24.3646H15Z'/%3e%3c/symbol%3e%3csymbol%20id='money_clock'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M17%207H16'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M6%2014H7'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10%2017H5.5C4.83696%2017%204.20107%2016.7366%203.73223%2016.2678C3.26339%2015.7989%203%2015.163%203%2014.5V6.5C3%205.83696%203.26339%205.20107%203.73223%204.73223C4.20107%204.26339%204.83696%204%205.5%204H17.5C18.163%204%2018.7989%204.26339%2019.2678%204.73223C19.7366%205.20107%2020%205.83696%2020%206.5V10'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.73223%2012.2678C9.26339%2011.7989%209%2011.163%209%2010.5C9%209.83695%209.26339%209.20107%209.73223%208.73223C10.2011%208.26339%2010.837%207.99999%2011.5%207.99999C12.163%207.99999%2012.7989%208.26339%2013.2678%208.73223'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17.5%2021C16.61%2021%2015.74%2020.7361%2014.9999%2020.2416C14.2599%2019.7471%2013.6831%2019.0443%2013.3425%2018.2221C13.0019%2017.3998%2012.9128%2016.495%2013.0865%2015.6221C13.2601%2014.7492%2013.6887%2013.9474%2014.318%2013.318C14.9474%2012.6887%2015.7492%2012.2601%2016.6221%2012.0865C17.495%2011.9128%2018.3998%2012.0019%2019.2221%2012.3425C20.0443%2012.6831%2020.7471%2013.2599%2021.2416%2013.9999C21.7361%2014.74%2022%2015.61%2022%2016.5C22%2017.6935%2021.5259%2018.8381%2020.682%2019.682C19.8381%2020.5259%2018.6935%2021%2017.5%2021Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17.3926%2014.9833V16.7368L18.7748%2017.58'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='money_input'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M10.5858%2016.4142C10.3061%2016.1345%2010.1156%2015.7781%2010.0384%2015.3901C9.96126%2015.0022%2010.0009%2014.6%2010.1522%2014.2346C10.3036%2013.8691%2010.56%2013.5568%2010.8889%2013.337C11.2178%2013.1172%2011.6044%2012.9999%2012%2012.9999C12.3956%2012.9999%2012.7823%2013.1172%2013.1112%2013.337C13.4401%2013.5568%2013.6964%2013.8691%2013.8478%2014.2346C13.9991%2014.6%2014.0387%2015.0022%2013.9616%2015.3901C13.8844%2015.7781%2013.6939%2016.1345%2013.4142%2016.4142C13.2285%2016.5999%2013.008%2016.7472%2012.7654%2016.8477C12.5227%2016.9483%2012.2626%2017%2012%2017C11.7374%2017%2011.4773%2016.9483%2011.2346%2016.8477C10.992%2016.7472%2010.7715%2016.5999%2010.5858%2016.4142Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17.5%2017V13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M6.5%2017V13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12%203V8'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10%206L12%208L14%206'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16%209H19C19.2627%208.99993%2019.5228%209.05161%2019.7655%209.15209C20.0081%209.25258%2020.2286%209.39989%2020.4144%209.58563C20.6001%209.77136%2020.7474%209.99186%2020.8479%2010.2345C20.9484%2010.4772%2021.0001%2010.7373%2021%2011V19C21.0001%2019.2627%2020.9484%2019.5228%2020.8479%2019.7655C20.7474%2020.0081%2020.6001%2020.2286%2020.4144%2020.4144C20.2286%2020.6001%2020.0081%2020.7474%2019.7655%2020.8479C19.5228%2020.9484%2019.2627%2021.0001%2019%2021H5C4.73734%2021.0001%204.47723%2020.9484%204.23455%2020.8479C3.99186%2020.7474%203.77136%2020.6001%203.58563%2020.4144C3.39989%2020.2286%203.25258%2020.0081%203.15209%2019.7655C3.05161%2019.5228%202.99993%2019.2627%203%2019V11C2.99993%2010.7373%203.05161%2010.4772%203.15209%2010.2345C3.25258%209.99186%203.39989%209.77136%203.58563%209.58563C3.77136%209.39989%203.99186%209.25258%204.23455%209.15209C4.47723%209.05161%204.73734%208.99993%205%209H8'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='more_horiz'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M6%2010c-1.1%200-2%20.9-2%202s.9%202%202%202%202-.9%202-2-.9-2-2-2zm12%200c-1.1%200-2%20.9-2%202s.9%202%202%202%202-.9%202-2-.9-2-2-2zm-6%200c-1.1%200-2%20.9-2%202s.9%202%202%202%202-.9%202-2-.9-2-2-2z'/%3e%3c/symbol%3e%3csymbol%20id='music'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M20%202H8c-1.1%200-2%20.9-2%202v12c0%201.1.9%202%202%202h12c1.1%200%202-.9%202-2V4c0-1.1-.9-2-2-2zm-2%205h-3v5.5c0%201.38-1.12%202.5-2.5%202.5S10%2013.88%2010%2012.5s1.12-2.5%202.5-2.5c.57%200%201.08.19%201.5.51V5h4v2zM4%206H2v14c0%201.1.9%202%202%202h14v-2H4V6z'/%3e%3c/symbol%3e%3csymbol%20id='music_icon'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.6,2h-3.2C5.8,2,2,5.8,2,10.4v10.3C2,21.4,2.6,22,3.3,22h10.3c4.6,0,8.4-3.7,8.4-8.4v-3.2C22,5.8,18.2,2,13.6,2z%20M14.6,17c-0.3,0.2-0.7,0.2-1.1,0.2c-0.1,0-0.2,0-0.3,0c-0.4,0-0.8-0.3-1-0.7c-0.2-0.4-0.1-0.9,0.2-1.2c0.3-0.4,0.7-0.7,1.1-0.9%20c0.5-0.3,1.1-0.3,1.7-0.2v-3.8h-5V15c0.1,0.4,0,0.8-0.2,1.1c-0.3,0.4-0.6,0.7-1.1,0.9c-0.3,0.2-0.7,0.2-1.1,0.2c-0.1,0-0.2,0-0.3,0%20c-0.2,0-0.5-0.1-0.7-0.3c-0.5-0.4-0.6-1.2-0.2-1.7c0.6-0.8,1.5-1.2,2.5-1.1c0.1,0,0.2,0,0.3,0.1V8c0-0.2,0.2-0.4,0.4-0.4h5.8%20c0.2,0,0.4,0.2,0.4,0.4v7C16.1,15.7,15.6,16.6,14.6,17z'/%3e%3c/symbol%3e%3csymbol%20id='new'%20viewBox='0%200%2024%2024'%3e%3cclipPath%20id='b'%3e%3cuse%20xlink:href='%23new_a'%20overflow='visible'/%3e%3c/clipPath%3e%3cpath%20d='M20%204H4c-1.11%200-1.99.89-1.99%202L2%2018c0%201.11.89%202%202%202h16c1.11%200%202-.89%202-2V6c0-1.11-.89-2-2-2zM8.5%2015H7.3l-2.55-3.5V15H3.5V9h1.25l2.5%203.5V9H8.5v6zm5-4.74H11v1.12h2.5v1.26H11v1.11h2.5V15h-4V9h4v1.26zm7%203.74c0%20.55-.45%201-1%201h-4c-.55%200-1-.45-1-1V9h1.25v4.51h1.13V9.99h1.25v3.51h1.12V9h1.25v5z'/%3e%3c/symbol%3e%3csymbol%20id='notes'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M18%2018V14.5C18%2013.672%2018.672%2013%2019.5%2013C20.328%2013%2021%2013.672%2021%2014.5V19C21%2020.657%2019.657%2022%2018%2022C16.343%2022%2015%2020.657%2015%2019V16M11%2016H7M14%2012H7M14%208H7M18%209V5C18%203.895%2017.105%203%2016%203H5C3.895%203%203%203.895%203%205V19C3%2020.105%203.895%2021%205%2021H11'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='objects'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.0001%2020C12.9921%2018.896%2013.888%2018%2014.992%2018C16.104%2018%2017%2018.896%2017%2020M13.0001%2020C13.0001%2021.104%2013.896%2022%2015%2022C16.104%2022%2017%2021.104%2017%2020M13.0001%2020H3M17%2020H21M19%2015H5C3.895%2015%203%2014.105%203%2013V5C3%203.895%203.895%203%205%203H19C20.105%203%2021%203.895%2021%205V13C21%2014.105%2020.105%2015%2019%2015Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='obs'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%200.959961C5.90842%200.959961%200.959961%205.90842%200.959961%2012C0.959961%2013.9668%201.47849%2015.8127%202.38215%2017.4131L2.37184%2017.4187C2.41348%2017.4925%202.46182%2017.56%202.50684%2017.6306C2.50883%2017.6339%202.51046%2017.6375%202.51246%2017.6409L2.50402%2017.6456C2.55213%2017.7263%202.60771%2017.7993%202.65871%2017.8771C4.61482%2020.977%208.0682%2023.04%2012%2023.04C15.9101%2023.04%2019.3467%2020.9992%2021.3084%2017.9278L21.3215%2017.9362C21.3617%2017.8734%2021.3943%2017.808%2021.4312%2017.744L21.4387%2017.7487C21.5305%2017.5987%2021.6095%2017.4445%2021.6881%2017.2903C21.6992%2017.27%2021.7099%2017.2496%2021.7209%2017.2293C21.7393%2017.1922%2021.7604%2017.1561%2021.7781%2017.1187C22.5821%2015.5878%2023.04%2013.8473%2023.04%2012C23.04%205.90842%2018.0915%200.959961%2012%200.959961ZM12%201.91996C17.5727%201.91996%2022.08%206.42725%2022.08%2012C22.08%2012.0462%2022.0768%2012.0917%2022.0762%2012.1378C21.5926%2010.6502%2020.6059%209.31912%2019.1821%208.44777C18.1015%207.78623%2016.9038%207.47395%2015.7246%207.46621L15.449%207.46434L15.3084%207.70246C14.6402%208.83696%2013.4142%209.59996%2012%209.59996C9.87324%209.59996%208.15996%207.88668%208.15996%205.75996C8.15996%203.63324%209.87324%201.91996%2012%201.91996ZM6.91496%203.30371C5.89938%204.4797%205.27996%206.00655%205.27996%207.67996C5.27996%208.85892%205.58727%209.96872%206.1209%2010.9321L6.26059%2011.1853L6.54934%2011.1796C7.91426%2011.1541%209.24887%2011.8562%209.96934%2013.1325C11.0145%2014.9845%2010.3645%2017.3185%208.51246%2018.3637C6.77985%2019.3415%204.55727%2018.8611%203.42652%2017.2865C2.47711%2015.7488%201.91996%2013.9423%201.91996%2012C1.91996%208.28507%203.92863%205.05208%206.91496%203.30371ZM7.51121%204.07621C7.31336%204.60122%207.19996%205.16685%207.19996%205.75996C7.19996%208.4054%209.35452%2010.56%2012%2010.56C13.6394%2010.56%2015.0639%209.71283%2015.929%208.45527C16.8735%208.49521%2017.8182%208.73831%2018.6806%209.26621C19.9484%2010.0422%2020.8111%2011.2437%2021.2081%2012.5784C20.8521%2012.0587%2020.3907%2011.6014%2019.8328%2011.2443C19.2758%2010.8879%2018.6717%2010.6616%2018.0571%2010.5571C16.2134%2010.2439%2014.2715%2011.0285%2013.2018%2012.6993V12.7003L12.7293%2013.4381H12.8681C12.3062%2014.7727%2012.3791%2016.2414%2013.0228%2017.4834C12.5727%2018.1201%2012.0091%2018.6867%2011.2978%2019.1109C9.98155%2019.8958%208.46611%2020.0992%207.06496%2019.8009C7.7239%2019.7354%208.37817%2019.5409%208.98402%2019.199C11.0601%2018.0274%2011.8379%2015.5448%2011.0381%2013.3762H11.2096L10.8056%2012.66C9.97066%2011.181%208.45905%2010.345%206.87652%2010.259C6.4832%209.47991%206.23996%208.61309%206.23996%207.67996C6.23996%206.31229%206.7176%205.06128%207.51121%204.07621ZM17.1525%2011.445C17.8913%2011.427%2018.6438%2011.6227%2019.3153%2012.0525C20.9808%2013.1184%2021.5716%2015.308%2020.7196%2017.0456C18.9768%2020.0538%2015.7313%2022.08%2012%2022.08C10.1937%2022.08%208.50297%2021.6011%207.03777%2020.7712C8.62085%2021.0664%2010.3141%2020.816%2011.79%2019.9359C12.7046%2019.3904%2013.4374%2018.6569%2013.979%2017.8218L14.144%2017.5668L13.9846%2017.3081C13.2328%2016.0919%2013.1864%2014.5077%2014.009%2013.2196C14.0095%2013.2189%2014.0104%2013.2185%2014.0109%2013.2178V13.2168C14.7276%2012.0979%2015.921%2011.4749%2017.1525%2011.445Z'/%3e%3c/symbol%3e%3csymbol%20id='okru'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cg%3e%3cpath%20d='M12,12.9c3.1,0,5.7-2.5,5.7-5.7S15.1,1.5,12,1.5S6.3,4.1,6.3,7.2C6.3,10.3,8.9,12.9,12,12.9z%20M12,4.7%20c1.4,0,2.5,1.1,2.5,2.5S13.4,9.7,12,9.7S9.5,8.6,9.5,7.2S10.6,4.7,12,4.7z'/%3e%3cpath%20d='M17.6,15.5c0.6-0.4,1-1.1,1-1.8c0-0.6-0.3-1.2-0.9-1.4c-0.6-0.3-1.2-0.2-1.7,0.2c-2.3,1.7-5.5,1.7-7.8,0%20c-0.5-0.4-1.2-0.4-1.7-0.2c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.4,1.4,1,1.8c0.8,0.5,1.7,0.9,2.6,1.2c0.2,0,0.3,0.1,0.5,0.1l-2.6,2.6%20c-0.7,0.7-0.7,1.8,0,2.5c0.7,0.7,1.8,0.7,2.5,0c0,0,0,0,0,0l2.7-2.8l2.7,2.8c0.7,0.7,1.8,0.7,2.5,0c0.7-0.7,0.7-1.8,0-2.5%20c0,0,0,0,0,0l-2.6-2.6c0.2,0,0.3-0.1,0.5-0.1C15.9,16.5,16.8,16.1,17.6,15.5z'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='okru_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23EE8208'/%3e%3cpath%20d='M11.9999%206.42008C13.0172%206.42008%2013.8448%207.18698%2013.8448%208.12979C13.8448%209.07182%2013.017%209.83871%2011.9999%209.83871C10.9832%209.83871%2010.1554%209.07182%2010.1554%208.12979C10.1552%207.18678%2010.9834%206.42008%2011.9999%206.42008ZM11.9999%2012.2576C14.4573%2012.2576%2016.4557%2010.4062%2016.4557%208.12979C16.4557%205.85222%2014.4575%204%2011.9999%204C9.54268%204%207.54403%205.85242%207.54403%208.12979C7.54403%2010.4062%209.54268%2012.2576%2011.9999%2012.2576ZM13.8025%2015.6258C14.7192%2015.4324%2015.5939%2015.0967%2016.3898%2014.633C16.6828%2014.4622%2016.8906%2014.1905%2016.9674%2013.8777C17.0443%2013.5648%2016.9839%2013.2366%2016.7995%2012.965C16.7084%2012.8304%2016.5895%2012.7138%2016.4496%2012.6219C16.3098%2012.5299%2016.1517%2012.4644%2015.9846%2012.429C15.8174%2012.3937%2015.6443%2012.3893%2015.4753%2012.416C15.3062%2012.4427%2015.1446%2012.5001%2014.9995%2012.5847C13.174%2013.6483%2010.8245%2013.6475%209.00052%2012.5847C8.85544%2012.5%208.69376%2012.4427%208.52474%2012.416C8.35571%2012.3892%208.18267%2012.3937%208.01549%2012.429C7.84832%2012.4643%207.6903%2012.5298%207.55048%2012.6218C7.41066%2012.7138%207.29178%2012.8304%207.20065%2012.965C7.01625%2013.2365%206.95575%2013.5647%207.03246%2013.8775C7.10918%2014.1903%207.31682%2014.4621%207.60972%2014.633C8.40556%2015.0965%209.28015%2015.4322%2010.1966%2015.6258L7.70569%2017.9346C7.46091%2018.1616%207.32342%2018.4693%207.32348%2018.7902C7.32354%2019.1111%207.46114%2019.4188%207.70601%2019.6456C7.95089%2019.8725%208.28297%2019.9999%208.62921%2019.9999C8.97545%2019.9998%209.30749%2019.8723%209.55227%2019.6453L11.9995%2017.3771L14.4481%2019.6455C14.5692%2019.7579%2014.713%2019.8471%2014.8713%2019.9079C15.0295%2019.9687%2015.1992%2020%2015.3706%2020C15.5419%2020%2015.7116%2019.9687%2015.8699%2019.9079C16.0281%2019.8471%2016.1719%2019.7579%2016.293%2019.6455C16.4144%2019.5334%2016.5108%2019.4001%2016.5765%2019.2533C16.6422%2019.1065%2016.6761%2018.9492%2016.6761%2018.7903C16.6761%2018.6314%2016.6422%2018.474%2016.5765%2018.3273C16.5108%2018.1805%2016.4144%2018.0472%2016.293%2017.935L13.8025%2015.6258Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='ondemand_video'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0%200h24v24H0V0z'/%3e%3cpath%20d='M21%203H3c-1.11%200-2%20.89-2%202v12c0%201.1.89%202%202%202h5v2h8v-2h5c1.1%200%201.99-.9%201.99-2L23%205c0-1.11-.9-2-2-2zm0%2014H3V5h18v12zm-5-6l-7%204V7z'/%3e%3c/symbol%3e%3csymbol%20id='partners'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M20%2014.5973L15.7062%2015.4141M20%2014.5973C20.0117%2014.8473%2020.1234%2015.0826%2020.3108%2015.2518C20.4982%2015.4209%2020.746%2015.5102%2021%2015.5H22M20%2014.5973V8.4017C20.0117%208.15178%2020.1235%207.91659%2020.3109%207.7476C20.4983%207.57861%2020.7461%207.48958%2021%207.5H22M15.7062%2015.4141C15.4745%2015.5552%2015.2074%2015.63%2014.935%2015.6302H14.446M15.7062%2015.4141C15.9379%2015.2731%2016.1252%2015.0713%2016.247%2014.8314C16.3689%2014.5915%2016.4205%2014.323%2016.3961%2014.0559C16.3717%2013.7887%2016.2723%2013.5336%2016.109%2013.3189L12.97%209.35969M14.416%208.88915L10.948%2010.0173C10.6796%2010.1042%2010.3882%2010.091%2010.1291%209.98008C9.86997%209.86916%209.66138%209.66832%209.543%209.4158C9.4154%209.14625%209.39925%208.83844%209.49797%208.55739C9.59668%208.27635%209.80252%208.04408%2010.072%207.90969L13.431%206.24706C13.7173%206.10493%2014.0302%206.02216%2014.3503%206.00387C14.6704%205.98559%2014.9909%206.03217%2015.292%206.14075L20.015%208.17744M4%2014.3249H6L9.642%2018.542C9.82085%2018.746%2010.0588%2018.8913%2010.3239%2018.9584C10.5891%2019.0255%2010.8687%2019.0112%2011.1253%2018.9173C11.382%2018.8235%2011.6033%2018.6546%2011.7596%2018.4334C11.916%2018.2122%2011.9998%2017.9492%2012%2017.6797V17.0743M12%2017.0743L12.175%2017.1432C12.4262%2017.2421%2012.6982%2017.2789%2012.9672%2017.2504C13.2363%2017.2219%2013.4941%2017.129%2013.7182%2016.9797C13.9422%2016.8304%2014.1258%2016.6293%2014.2526%2016.3941C14.3795%2016.1588%2014.4459%2015.8966%2014.446%2015.6302M12%2017.0743L11%2016M14.446%2015.6302L13%2014M10.583%207.65572L10.225%207.36532C9.86424%207.10383%209.428%206.96275%208.98%206.96271C8.71305%206.96262%208.44858%207.01308%208.201%207.11135L3.99994%209.04075M2.00006%207.5H3C3.25393%207.48958%203.50172%207.57861%203.68913%207.7476C3.87654%207.91659%203.98832%208.05989%204%208.30981L3.99994%2014.5973C3.98825%2014.8473%203.87651%2015.0826%203.68913%2015.2518C3.50175%2015.4209%203.25397%2015.5102%202.99994%2015.5H2'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='pause'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M6%2019h4V5H6v14zm8-14v14h4V5h-4z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='payment'%20viewBox='0%200%2024%2024'%3e%3cg%20transform='translate(-8%20-8)'%3e%3cg%20transform='translate(8%208)'%3e%3cpath%20class='c'%20d='M0,0H24V24H0Z'/%3e%3cpath%20class='a'%20d='M21,18v1a2.006,2.006,0,0,1-2,2H5a2,2,0,0,1-2-2V5A2,2,0,0,1,5,3H19a2.006,2.006,0,0,1,2,2V6H12a2,2,0,0,0-2,2v8a2,2,0,0,0,2,2Zm-9-2H22V8H12Zm4-2.5A1.5,1.5,0,1,1,17.5,12,1.5,1.5,0,0,1,16,13.5Z'/%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='payoneer'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cg%20id='layer1'%20transform='translate(-53.895874,-165.87389)'%3e%3cg%20id='g3187'%20transform='translate(0.13229185,-0.13228321)'%3e%3cg%20id='g2666'%20transform='matrix(0.35277777,0,0,-0.35277777,67.246115,167.62408)'%3e%3cpath%20id='path2668'%20d='M-27-10.1c0.2-3.9,3.5-19,3.5-19c1.3-3.1,2.3,0,2.3,0c4.1,12.4-4.3,19.5-4.3,19.5%20C-27.5-8.3-27-10.1-27-10.1%20M21.9-7.9c0,0,4.1-2.9,0-3.4c0,0-15.4-1.8-26.8-12.5c0,0-17.2-15-23.6-31.5c0,0-2.1,0-1.4,3.3%20c0.7,3.3,5,17.4,24.2,34.7C-5.8-17.4,12.6-0.6,21.9-7.9'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='payoneer_colored'%20viewBox='0%200%2024%2024'%3e%3crect%20width='24'%20height='24'%20rx='12'%20fill='%23EEF5FF'/%3e%3cpath%20d='M21%2012C21%209.61306%2020.0518%207.32386%2018.364%205.63604C16.6761%203.94821%2014.3869%203%2012%203C9.61306%203%207.32386%203.94821%205.63604%205.63604C3.94821%207.32386%203%209.61306%203%2012H5.2785C5.2785%2010.2173%205.98665%208.50771%207.24719%207.24719C8.50771%205.98665%2010.2173%205.2785%2012%205.2785C13.7827%205.2785%2015.4923%205.98665%2016.7528%207.24719C18.0133%208.50771%2018.7215%2010.2173%2018.7215%2012H21Z'%20fill='url(%23payoneer_colored_paint0_linear_9155_43603)'/%3e%3cpath%20d='M21%2012C21%2014.3869%2020.0518%2016.6761%2018.364%2018.364C16.6761%2020.0518%2014.3869%2021%2012%2021C9.61306%2021%207.32386%2020.0518%205.63604%2018.364C3.94821%2016.6761%203%2014.3869%203%2012H5.2785C5.2785%2013.7827%205.98665%2015.4923%207.24719%2016.7528C8.50771%2018.0133%2010.2173%2018.7215%2012%2018.7215C13.7827%2018.7215%2015.4923%2018.0133%2016.7528%2016.7528C18.0133%2015.4923%2018.7215%2013.7827%2018.7215%2012H21Z'%20fill='url(%23payoneer_colored_paint1_linear_9155_43603)'/%3e%3c/symbol%3e%3csymbol%20id='payoneer_cy'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cg%20id='layer1'%20transform='translate(-53.895874,-165.87389)'%3e%3cg%20id='g3187'%20transform='translate(0.13229185,-0.13228321)'%3e%3cg%20id='g2666'%20transform='matrix(0.35277777,0,0,-0.35277777,67.246115,167.62408)'%3e%3cpath%20id='path2668'%20d='M-27-10.1c0.2-3.9,3.5-19,3.5-19c1.3-3.1,2.3,0,2.3,0c4.1,12.4-4.3,19.5-4.3,19.5%20C-27.5-8.3-27-10.1-27-10.1%20M21.9-7.9c0,0,4.1-2.9,0-3.4c0,0-15.4-1.8-26.8-12.5c0,0-17.2-15-23.6-31.5c0,0-2.1,0-1.4,3.3%20c0.7,3.3,5,17.4,24.2,34.7C-5.8-17.4,12.6-0.6,21.9-7.9'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='paypal'%20viewBox='0%200%20512.00017%20512'%3e%3cpath%20d='m487.160156%20115.148438c-1.921875-2.285157-3.972656-4.492188-6.128906-6.636719%201.910156%2016.890625%201.324219%2035.394531-1.773438%2055.441406-5.882812%2038.089844-17.339843%2071.640625-34.042968%2099.722656-13.707032%2023.039063-32.953125%2042.453125-53.253906%2057.703125-.890626.667969-1.777344%201.324219-2.660157%201.96875-30.296875%2022.164063-66.910156%2034.019532-104.441406%2034.488282l-61.753906.769531-17.960938%2086.773437c-3.761719%2020.902344-20.441406%2036.074219-39.65625%2036.074219h-101.386719c-.703124%200-1.402343-.027344-2.097656-.066406%201.394532%205.316406%203.890625%2010.355469%207.4375%2014.789062%207.597656%209.484375%2018.921875%2014.925781%2031.074219%2014.925781h99.800781c18.914063%200%2035.332032-13.464843%2039.035156-32.011718l17.683594-88.546875%2093.421875-1.074219.769531-.085938c6.203126-.714843%2038.9375-5.480468%2073.988282-29.210937%2019.984375-13.53125%2036.960937-30.757813%2050.449218-51.203125%2016.445313-24.917969%2027.71875-54.695312%2033.511719-88.496094%207.484375-43.671875.078125-79.109375-22.015625-105.324218zm0%200'/%3e%3cpath%20d='m178.652344%20418.488281%2017.683594-88.550781%2093.421874-1.070312.769532-.089844c6.207031-.710938%2038.941406-5.476563%2073.988281-29.207032%2019.984375-13.535156%2036.960937-30.761718%2050.449219-51.203124%2016.445312-24.921876%2027.71875-54.695313%2033.511718-88.5%207.484376-43.667969.078126-79.105469-22.011718-105.320313-28.609375-33.949219-82.910156-52.644531-152.910156-52.644531-20.957032%200-103.8125-.875-150.429688-1.8945315-18.910156-.3984375-35.574219%2012.6679685-39.703125%2031.0937495l-82.445313%20370.882813c-2.660156%2011.859375.171876%2024.101563%207.769532%2033.589844%207.59375%209.484375%2018.921875%2014.925781%2031.070312%2014.925781h99.800782c18.917968%200%2035.332031-13.464844%2039.035156-32.011719zm0%200'/%3e%3c/symbol%3e%3csymbol%20id='paypal_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23E1EDFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M11.3998%208.83984H14.8447C16.6943%208.83984%2017.3906%209.76479%2017.283%2011.1237C17.1051%2013.3671%2015.7321%2014.6082%2013.911%2014.6082H12.9915C12.7417%2014.6082%2012.5736%2014.7716%2012.506%2015.2143L12.1156%2017.788C12.0898%2017.9549%2012.0009%2018.0515%2011.8675%2018.0647H9.70314C9.49951%2018.0647%209.42748%2017.911%209.48084%2017.5781L10.8005%209.32735C10.852%208.99708%2011.0352%208.83984%2011.3998%208.83984Z'%20fill='%23009EE3'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.24427%206H12.6927C13.6638%206%2014.8162%206.03074%2015.5863%206.70271C16.1011%207.15157%2016.3715%207.8657%2016.3092%208.63517C16.0976%2011.2361%2014.5228%2012.6933%2012.4099%2012.6933H10.7097C10.4198%2012.6933%2010.2287%2012.8831%2010.1468%2013.3961L9.67199%2016.3826C9.64087%2016.5758%209.55639%2016.69%209.40522%2016.7041H7.27729C7.04164%2016.7041%206.95806%2016.5284%207.01941%2016.1402L8.54889%206.56744C8.61025%206.1827%208.82456%206%209.24427%206Z'%20fill='%23113984'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10.1963%2013.093L10.7983%209.32735C10.8508%208.99707%2011.0339%208.83896%2011.3985%208.83896H14.8434C15.4134%208.83896%2015.8749%208.9268%2016.236%209.0893C15.89%2011.4047%2014.3739%2012.6907%2012.3891%2012.6907H10.6916C10.4639%2012.6916%2010.2968%2012.804%2010.1963%2013.093Z'%20fill='%23172C70'/%3e%3c/symbol%3e%3csymbol%20id='percent'%20viewBox='0%200%2020%2020'%3e%3cpath%20d='M4.16669%2016.6673L16.6667%203.33398M8.33335%205.41732C8.33335%206.56791%207.40061%207.50065%206.25002%207.50065C5.09943%207.50065%204.16669%206.56791%204.16669%205.41732C4.16669%204.26672%205.09943%203.33398%206.25002%203.33398C7.40061%203.33398%208.33335%204.26672%208.33335%205.41732ZM16.6667%2014.584C16.6667%2015.7346%2015.7339%2016.6673%2014.5834%2016.6673C13.4328%2016.6673%2012.5%2015.7346%2012.5%2014.584C12.5%2013.4334%2013.4328%2012.5007%2014.5834%2012.5007C15.7339%2012.5007%2016.6667%2013.4334%2016.6667%2014.584Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='personal_email_colored'%20viewBox='0%200%2032%2032'%3e%3cpath%20d='M0%2016C0%207.16344%207.16344%200%2016%200C24.8366%200%2032%207.16344%2032%2016C32%2024.8366%2024.8366%2032%2016%2032C7.16344%2032%200%2024.8366%200%2016Z'%20fill='url(%23personal_email_colored_paint0_linear_17277_40980)'/%3e%3cpath%20d='M6.67073%2011.8402C6.6676%2011.8932%206.66602%2011.9465%206.66602%2012.0002V20.0002C6.66602%2021.4729%207.85992%2022.6668%209.33268%2022.6668H22.666C24.1388%2022.6668%2025.3327%2021.4729%2025.3327%2020.0002V12.0002C25.3327%2011.9459%2025.3311%2011.8921%2025.3279%2011.8386L17.7334%2016.4339C16.6756%2017.1903%2015.2693%2017.1886%2014.2132%2016.4306L6.67073%2011.8402Z'%20fill='white'/%3e%3cpath%20d='M7.53865%2010.0272L15.2886%2014.7437C15.3148%2014.7597%2015.3403%2014.7769%2015.365%2014.7952C15.7323%2015.0681%2016.2172%2015.0685%2016.5848%2014.7964C16.6098%2014.7779%2016.6356%2014.7606%2016.6621%2014.7446L24.4594%2010.0265C23.9857%209.59595%2023.3565%209.3335%2022.666%209.3335H9.33268C8.64183%209.3335%208.01233%209.59621%207.53865%2010.0272Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='phone_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%234DCB4D'/%3e%3cpath%20d='M9.18173%2014.8144C11.8015%2017.4352%2015.1209%2019.1056%2017.0951%2017.14L17.5739%2016.6612C18.2111%2016.024%2018.1223%2014.9692%2017.3831%2014.4544C16.9163%2014.1292%2016.4146%2013.78%2015.8602%2013.39C15.2865%2012.9868%2014.4993%2013.048%2014.0013%2013.5424L13.46%2014.08C12.7892%2013.6552%2012.1255%2013.1092%2011.5087%2012.4936L11.5063%2012.4912C10.8906%2011.8756%2010.3446%2011.2108%209.91978%2010.54L10.4574%209.99876C10.9519%209.50075%2011.0143%208.71235%2010.6086%208.13875C10.2186%207.58555%209.86938%207.08514%209.54655%206.61954C9.03292%205.87794%207.97685%205.78794%207.3384%206.42634L6.85957%206.90514C4.89503%208.87915%206.56435%2012.196%209.18413%2014.818'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='photo_add'%20viewBox='0%200%2040%2040'%3e%3cpath%20d='M34.4211%2019.2105C34.4211%2018.6582%2033.9733%2018.2105%2033.4211%2018.2105C32.8688%2018.2105%2032.4211%2018.6582%2032.4211%2019.2105H34.4211ZM20.7895%207.57895C21.3418%207.57895%2021.7895%207.13123%2021.7895%206.57895C21.7895%206.02666%2021.3418%205.57895%2020.7895%205.57895V7.57895ZM23.2305%2016.7695L22.5233%2017.4765L23.2305%2016.7695ZM15.1905%2016.7695L15.8977%2017.4765L15.1905%2016.7695ZM19.2105%2015.104V14.104V15.104ZM27.1053%207.94737C26.553%207.94737%2026.1053%208.39508%2026.1053%208.94737C26.1053%209.49965%2026.553%209.94737%2027.1053%209.94737V7.94737ZM35%209.94737C35.5523%209.94737%2036%209.49965%2036%208.94737C36%208.39508%2035.5523%207.94737%2035%207.94737V9.94737ZM30.0526%2012.8947C30.0526%2013.447%2030.5003%2013.8947%2031.0526%2013.8947C31.6049%2013.8947%2032.0526%2013.447%2032.0526%2012.8947H30.0526ZM32.0526%205C32.0526%204.44772%2031.6049%204%2031.0526%204C30.5003%204%2030.0526%204.44772%2030.0526%205H32.0526ZM32.4211%2019.2105V27.1053H34.4211V19.2105H32.4211ZM32.4211%2027.1053C32.4211%2028.9339%2031.6946%2030.6876%2030.4016%2031.9806L31.8158%2033.3948C33.4839%2031.7267%2034.4211%2029.4643%2034.4211%2027.1053H32.4211ZM30.4016%2031.9806C29.1086%2033.2736%2027.3549%2034%2025.5263%2034V36C27.8853%2036%2030.1478%2035.0629%2031.8158%2033.3948L30.4016%2031.9806ZM25.5263%2034H12.8947V36H25.5263V34ZM12.8947%2034C11.0661%2034%209.31244%2033.2736%208.01942%2031.9806L6.60521%2033.3948C8.27329%2035.0629%2010.5357%2036%2012.8947%2036V34ZM8.01942%2031.9806C6.72641%2030.6876%206%2028.9339%206%2027.1053H4C4%2029.4643%204.93712%2031.7267%206.60521%2033.3948L8.01942%2031.9806ZM6%2027.1053V14.4737H4V27.1053H6ZM6%2014.4737C6%2012.6451%206.72641%2010.8914%208.01942%209.59837L6.60521%208.18416C4.93712%209.85224%204%2012.1147%204%2014.4737H6ZM8.01942%209.59837C9.31244%208.30536%2011.0661%207.57895%2012.8947%207.57895V5.57895C10.5357%205.57895%208.27329%206.51607%206.60521%208.18416L8.01942%209.59837ZM12.8947%207.57895H20.7895V5.57895H12.8947V7.57895ZM22.5233%2017.4765C23.1782%2018.1316%2023.6242%2018.9663%2023.8048%2019.8749L25.7665%2019.4849C25.5087%2018.1884%2024.8723%2016.9974%2023.9377%2016.0625L22.5233%2017.4765ZM23.8048%2019.8749C23.9855%2020.7835%2023.8926%2021.7252%2023.538%2022.5811L25.3857%2023.3466C25.8917%2022.1254%2026.0242%2020.7815%2025.7665%2019.4849L23.8048%2019.8749ZM23.538%2022.5811C23.1834%2023.4369%2022.5831%2024.1684%2021.8128%2024.683L22.9238%2026.346C24.023%2025.6117%2024.8797%2024.5679%2025.3857%2023.3466L23.538%2022.5811ZM21.8128%2024.683C21.0425%2025.1977%2020.1369%2025.4724%2019.2105%2025.4724V27.4724C20.5324%2027.4724%2021.8247%2027.0804%2022.9238%2026.346L21.8128%2024.683ZM19.2105%2025.4724C18.2841%2025.4724%2017.3786%2025.1977%2016.6083%2024.683L15.4972%2026.346C16.5964%2027.0804%2017.8886%2027.4724%2019.2105%2027.4724V25.4724ZM16.6083%2024.683C15.838%2024.1684%2015.2376%2023.4369%2014.883%2022.5811L13.0353%2023.3466C13.5413%2024.5679%2014.398%2025.6117%2015.4972%2026.346L16.6083%2024.683ZM14.883%2022.5811C14.5284%2021.7252%2014.4356%2020.7835%2014.6162%2019.8749L12.6546%2019.4849C12.3969%2020.7815%2012.5294%2022.1254%2013.0353%2023.3466L14.883%2022.5811ZM14.6162%2019.8749C14.7968%2018.9663%2015.2428%2018.1316%2015.8977%2017.4765L14.4833%2016.0625C13.5487%2016.9974%2012.9123%2018.1884%2012.6546%2019.4849L14.6162%2019.8749ZM15.8977%2017.4765C16.3327%2017.0413%2016.8492%2016.6962%2017.4176%2016.4607L16.6521%2014.613C15.841%2014.949%2015.104%2015.4416%2014.4833%2016.0625L15.8977%2017.4765ZM17.4176%2016.4607C17.986%2016.2252%2018.5953%2016.104%2019.2105%2016.104V14.104C18.3326%2014.104%2017.4632%2014.2769%2016.6521%2014.613L17.4176%2016.4607ZM19.2105%2016.104C19.8258%2016.104%2020.435%2016.2252%2021.0035%2016.4607L21.769%2014.613C20.9579%2014.2769%2020.0885%2014.104%2019.2105%2014.104V16.104ZM21.0035%2016.4607C21.5719%2016.6962%2022.0883%2017.0413%2022.5233%2017.4765L23.9377%2016.0625C23.317%2015.4416%2022.5801%2014.949%2021.769%2014.613L21.0035%2016.4607ZM27.1053%209.94737H35V7.94737H27.1053V9.94737ZM32.0526%2012.8947V5H30.0526V12.8947H32.0526Z'/%3e%3c/symbol%3e%3csymbol%20id='picture'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M3%2016L7.58579%2011.4142C7.96086%2011.0391%208.46957%2010.8284%209%2010.8284C9.53043%2010.8284%2010.0391%2011.0391%2010.4142%2011.4142L12.5858%2013.5858C12.9609%2013.9609%2013.4696%2014.1716%2014%2014.1716C14.5304%2014.1716%2015.0391%2013.9609%2015.4142%2013.5858L21%208M3%2016C3%2018.7614%205.23858%2021%208%2021H16C18.7614%2021%2021%2018.7614%2021%2016V8M3%2016V8C3%205.23858%205.23858%203%208%203H16C18.7614%203%2021%205.23858%2021%208M14%208V8.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='picture_thin'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M3%2016L7.58579%2011.4142C7.96086%2011.0391%208.46957%2010.8284%209%2010.8284C9.53043%2010.8284%2010.0391%2011.0391%2010.4142%2011.4142L12.5858%2013.5858C12.9609%2013.9609%2013.4696%2014.1716%2014%2014.1716C14.5304%2014.1716%2015.0391%2013.9609%2015.4142%2013.5858L21%208M3%2016C3%2018.7614%205.23858%2021%208%2021H16C18.7614%2021%2021%2018.7614%2021%2016V8M3%2016V8C3%205.23858%205.23858%203%208%203H16C18.7614%203%2021%205.23858%2021%208M14%208V8.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='plane'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4.5139%2012.3805L1.68555%2015.2088M12.0562%2019.9227L9.22782%2022.7511M8.28533%2016.1513L3.57142%2020.8652M21.17%203.26664L14.8848%209.55186M9.80728%208.0471L13.7701%209.71287C14.1985%209.89292%2014.5392%2010.2336%2014.7193%2010.662L16.3883%2014.6309C16.5305%2014.9691%2016.7739%2015.2551%2017.0851%2015.4495C17.3963%2015.6439%2017.76%2015.7373%2018.1264%2015.7168C18.4928%2015.6963%2018.8438%2015.5629%2019.1313%2015.335C19.4189%2015.1071%2019.6289%2014.7957%2019.7325%2014.4437L22.8753%203.768C22.9655%203.46156%2022.9715%203.13648%2022.8926%202.82694C22.8137%202.5174%2022.6529%202.23484%2022.427%202.00897C22.2011%201.78309%2021.9186%201.62225%2021.609%201.54336C21.2995%201.46446%2020.9744%201.47043%2020.668%201.56063L9.9942%204.70286C9.64218%204.80647%209.33085%205.01646%209.10293%205.30404C8.875%205.59161%208.74165%205.94268%208.72117%206.30905C8.70069%206.67543%208.79409%207.03916%208.98855%207.35034C9.18301%207.66153%209.469%207.90491%209.80728%208.0471Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='play-videos'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M10.9406%209.05799L14.8226%2011.354C15.3136%2011.644%2015.3136%2012.355%2014.8226%2012.645L10.9406%2014.941C10.4406%2015.237%209.80859%2014.876%209.80859%2014.295V9.70399C9.80859%209.12299%2010.4406%208.76199%2010.9406%209.05799Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M18%2021H6C4.343%2021%203%2019.657%203%2018V6C3%204.343%204.343%203%206%203H18C19.657%203%2021%204.343%2021%206V18C21%2019.657%2019.657%2021%2018%2021Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='play'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M8%205v14l11-7z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='print'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19%208H5c-1.66%200-3%201.34-3%203v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zm-3%2011H8v-5h8v5zm3-7c-.55%200-1-.45-1-1s.45-1%201-1%201%20.45%201%201-.45%201-1%201zm-1-9H6v4h12V3z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='prototype'%20viewBox='0%200%20448%20512'%3e%3cpath%20d='M400%20480H48c-26.5%200-48-21.5-48-48V80c0-26.5%2021.5-48%2048-48h352c26.5%200%2048%2021.5%2048%2048v352c0%2026.5-21.5%2048-48%2048zM238.1%20177.9L102.4%20313.6l-6.3%2057.1c-.8%207.6%205.6%2014.1%2013.3%2013.3l57.1-6.3L302.2%20242c2.3-2.3%202.3-6.1%200-8.5L246.7%20178c-2.5-2.4-6.3-2.4-8.6-.1zM345%20165.1L314.9%20135c-9.4-9.4-24.6-9.4-33.9%200l-23.1%2023.1c-2.3%202.3-2.3%206.1%200%208.5l55.5%2055.5c2.3%202.3%206.1%202.3%208.5%200L345%20199c9.3-9.3%209.3-24.5%200-33.9z'/%3e%3c/symbol%3e%3csymbol%20id='public'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm-1%2017.93c-3.95-.49-7-3.85-7-7.93%200-.62.08-1.21.21-1.79L9%2015v1c0%201.1.9%202%202%202v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55%200%201-.45%201-1V7h2c1.1%200%202-.9%202-2v-.41c2.93%201.19%205%204.06%205%207.41%200%202.08-.8%203.97-2.1%205.39z'/%3e%3c/symbol%3e%3csymbol%20id='qiwi'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cpath%20d='M18.9,16.1c0.1,0.4-0.1,0.6-0.2,0.6c-0.1,0-0.3-0.2-0.5-0.5c-0.2-0.3-0.3-0.7-0.2-0.9c0.1-0.1,0.2-0.2,0.4-0.1%20C18.7,15.3,18.8,15.8,18.9,16.1z%20M16.9,16.9c0.4,0.4,0.5,0.8,0.3,1.1c-0.1,0.2-0.3,0.2-0.6,0.2s-0.5-0.1-0.6-0.2%20c-0.4-0.3-0.5-0.9-0.2-1.2c0.1-0.1,0.3-0.2,0.4-0.2C16.5,16.7,16.7,16.8,16.9,16.9z%20M16.2,20.3c1.8,0,3.7,0.6,5.9,2.5%20c0.2,0.2,0.5,0,0.3-0.3c-2.1-2.7-4.1-3.2-6-3.6c-2.4-0.5-3.6-1.9-4.4-3.3c-0.2-0.3-0.2-0.2-0.3,0.1c0,0.5,0,1.1,0.1,1.7l0,0%20c-0.1,0-0.2,0-0.3,0c-3.4,0-6.1-2.8-6.1-6.1s2.8-6.1,6.1-6.1s6.1,2.8,6.1,6.1c0,0.2,0,0.5,0,0.7c-0.4-0.1-1.3-0.1-2,0%20c-0.2,0-0.2,0.1,0,0.2c2,0.4,3.4,1.6,3.7,3.9c0,0.1,0.1,0.1,0.1,0c0.8-1.4,1.3-3,1.3-4.8c0-5.1-4.2-9.3-9.3-9.3s-9.3,4.2-9.3,9.3%20s4.2,9.3,9.3,9.3C12.9,20.6,14.3,20.3,16.2,20.3z'/%3e%3c/symbol%3e%3csymbol%20id='qiwi_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23FF8C00'/%3e%3cpath%20d='M16.1318%2013.8144C16.3752%2013.9049%2016.4688%2014.2576%2016.4874%2014.4115C16.5249%2014.6922%2016.4409%2014.8008%2016.3473%2014.8008C16.2536%2014.8008%2016.1225%2014.6922%2015.9824%2014.4751C15.8419%2014.2576%2015.7858%2014.0135%2015.8608%2013.8866C15.9074%2013.8051%2016.01%2013.7691%2016.1318%2013.8144ZM14.71%2014.8371C14.8598%2014.8371%2015.0281%2014.9004%2015.1779%2015.0269C15.4677%2015.2624%2015.5521%2015.5338%2015.4023%2015.7329C15.318%2015.8325%2015.1779%2015.8958%2015.0188%2015.8958C14.8598%2015.8958%2014.6914%2015.8415%2014.5792%2015.7419C14.3172%2015.5248%2014.2425%2015.1625%2014.4106%2014.9636C14.4763%2014.8821%2014.5792%2014.8371%2014.71%2014.8371ZM11.4361%2017.4524C7.88109%2017.4524%205%2014.6649%205%2011.226C5%207.78717%207.88138%205%2011.4358%205C14.9906%205%2017.872%207.78745%2017.872%2011.226C17.872%2012.3933%2017.5353%2013.4886%2016.9648%2014.4208C16.9459%2014.4478%2016.8991%2014.4388%2016.8898%2014.4025C16.6654%2012.8732%2015.7018%2012.0313%2014.2986%2011.7782C14.1768%2011.7599%2014.1582%2011.6876%2014.3172%2011.6696C14.7475%2011.6333%2015.3555%2011.6423%2015.6736%2011.6966C15.6922%2011.5428%2015.7018%2011.3799%2015.7018%2011.217C15.7018%208.94546%2013.7933%207.09916%2011.4452%207.09916C9.09731%207.09916%207.1888%208.94546%207.1888%2011.217C7.1888%2013.4886%209.09731%2015.3349%2011.4454%2015.3349H11.6417C11.575%2014.9675%2011.5468%2014.5945%2011.5574%2014.2216C11.567%2013.9682%2011.6231%2013.9319%2011.7353%2014.1311C12.3247%2015.1175%2013.1667%2016.0044%2014.813%2016.3574C16.16%2016.6471%2017.5071%2016.9818%2018.9571%2018.7645C19.0879%2018.9184%2018.8917%2019.0812%2018.7419%2018.9547C17.264%2017.6875%2015.917%2017.2712%2014.6914%2017.2712C13.3162%2017.2805%2012.3811%2017.4524%2011.4361%2017.4524Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='radio--checked'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M7%2012C7%209.23858%209.23858%207%2012%207C14.7614%207%2017%209.23858%2017%2012C17%2014.7614%2014.7614%2017%2012%2017C9.23858%2017%207%2014.7614%207%2012Z'%20fill='currentColor'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12%203.11111C7.0908%203.11111%203.11111%207.0908%203.11111%2012C3.11111%2016.9092%207.0908%2020.8889%2012%2020.8889C16.9092%2020.8889%2020.8889%2016.9092%2020.8889%2012C20.8889%207.0908%2016.9092%203.11111%2012%203.11111ZM12%202C6.47715%202%202%206.47715%202%2012C2%2017.5228%206.47715%2022%2012%2022C17.5228%2022%2022%2017.5228%2022%2012C22%206.47715%2017.5228%202%2012%202Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='ready'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm-2%2015l-5-5%201.41-1.41L10%2014.17l7.59-7.59L19%208l-9%209z'/%3e%3c/symbol%3e%3csymbol%20id='receipt'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M18%2017H6v-2h12v2zm0-4H6v-2h12v2zm0-4H6V7h12v2zM3%2022l1.5-1.5L6%2022l1.5-1.5L9%2022l1.5-1.5L12%2022l1.5-1.5L15%2022l1.5-1.5L18%2022l1.5-1.5L21%2022V2l-1.5%201.5L18%202l-1.5%201.5L15%202l-1.5%201.5L12%202l-1.5%201.5L9%202%207.5%203.5%206%202%204.5%203.5%203%202v20z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='receipt_thin'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16%207H8'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.13%2011H8'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M4%204V19.191C4%2019.563%204.391%2019.804%204.724%2019.639L6.667%2018.667L9.11%2019.889C9.251%2019.959%209.416%2019.959%209.557%2019.889L12%2018.667L14.443%2019.888C14.584%2019.958%2014.749%2019.958%2014.89%2019.888L17.333%2018.666L19.276%2019.638C19.609%2019.804%2020%2019.563%2020%2019.191V4C20%203.448%2019.552%203%2019%203H5C4.448%203%204%203.448%204%204Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13%2015H8'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='recording_circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M6%2011.556V12.444M8.4%209.778V14.222M10.8%208V16M15.6%208.889V15.111M18%2011.111V12.889M13.2%2010.222V13.778M12%203.023C16.971%203.023%2021%207.052%2021%2012.023C21%2016.994%2016.971%2021.023%2012%2021.023C7.029%2021.023%203%2016.994%203%2012.023C3%207.053%207.029%203.023%2012%203.023Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='recruiters'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16%206H20M18%208V4M15%2018C14.8695%2017.5604%2014.6659%2017.1673%2014.406%2016.8462C13.9661%2016.3031%2013.3924%2016%2012.7928%2016H8.20838C7.60875%2016%207.03387%2016.3031%206.594%2016.8462C6.33412%2017.1673%206.13162%2017.5619%206%2018M14.006%205.765C12.936%205.279%2011.752%205%2010.5%205C5.806%205%202%208.806%202%2013.5C2%2018.194%205.806%2022%2010.5%2022C15.194%2022%2019%2018.194%2019%2013.5C19%2012.248%2018.721%2011.064%2018.235%209.994M18%2010C15.791%2010%2014%208.209%2014%206C14%203.791%2015.791%202%2018%202C20.209%202%2022%203.791%2022%206C22%208.209%2020.209%2010%2018%2010ZM10.5%209C11.8805%209%2013%2010.1195%2013%2011.5C13%2012.8805%2011.8805%2014%2010.5%2014C9.11949%2014%208%2012.8805%208%2011.5C8%2010.1195%209.11949%209%2010.5%209Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='redo'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M6%2014.076V14C6%2010.686%208.686%208%2012%208H18M18%208L15%2011M18%208L15%205M6%2014.08V19'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='referral'%20viewBox='0%200%2024%2024'%3e%3ccircle%20cx='7.5'%20cy='12'%20r='3'%20fill='none'/%3e%3ccircle%20cx='16.4004'%20cy='4.6'%20r='3'%20fill='none'/%3e%3ccircle%20cx='16.4004'%20cy='19.5'%20r='3'%20fill='none'/%3e%3cpath%20d='M14.5833%206.36688L9.41602%2010.1893'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M18.2421%202.74834C19.252%203.74613%2019.252%205.36388%2018.2421%206.36166C17.2321%207.35946%2015.5946%207.35946%2014.5846%206.36166C13.5747%205.36387%2013.5747%203.74613%2014.5846%202.74834C15.5946%201.75055%2017.2321%201.75055%2018.2421%202.74834'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.5833%2017.6331L9.41602%2013.8106'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M18.2421%2017.6383C19.252%2018.6361%2019.252%2020.2539%2018.2421%2021.2517C17.2321%2022.2494%2015.5946%2022.2494%2014.5846%2021.2517C13.5747%2020.2539%2013.5747%2018.6361%2014.5846%2017.6383C15.5946%2016.6405%2017.2321%2016.6405%2018.2421%2017.6383'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.41056%2010.1951C10.4195%2011.1919%2010.4195%2012.8081%209.41056%2013.8049C8.40158%2014.8017%206.7657%2014.8017%205.75673%2013.8049C4.74776%2012.8081%204.74776%2011.1919%205.75673%2010.1951C6.76571%209.19832%208.40158%209.19832%209.41056%2010.1951'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='referral_solid'%20viewBox='0%200%2024%2024'%3e%3ccircle%20cx='7.5'%20cy='12'%20r='3'%20fill='currentColor'/%3e%3ccircle%20cx='16.4004'%20cy='4.6'%20r='3'%20fill='currentColor'/%3e%3ccircle%20cx='16.4004'%20cy='19.5'%20r='3'%20fill='currentColor'/%3e%3cpath%20d='M14.5833%206.36688L9.41602%2010.1893'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M18.2421%202.74834C19.252%203.74613%2019.252%205.36388%2018.2421%206.36166C17.2321%207.35946%2015.5946%207.35946%2014.5846%206.36166C13.5747%205.36387%2013.5747%203.74613%2014.5846%202.74834C15.5946%201.75055%2017.2321%201.75055%2018.2421%202.74834'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.5833%2017.6331L9.41602%2013.8106'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M18.2421%2017.6383C19.252%2018.6361%2019.252%2020.2539%2018.2421%2021.2517C17.2321%2022.2494%2015.5946%2022.2494%2014.5846%2021.2517C13.5747%2020.2539%2013.5747%2018.6361%2014.5846%2017.6383C15.5946%2016.6405%2017.2321%2016.6405%2018.2421%2017.6383'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.41056%2010.1951C10.4195%2011.1919%2010.4195%2012.8081%209.41056%2013.8049C8.40158%2014.8017%206.7657%2014.8017%205.75673%2013.8049C4.74776%2012.8081%204.74776%2011.1919%205.75673%2010.1951C6.76571%209.19832%208.40158%209.19832%209.41056%2010.1951'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='reload'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%204C7.58172%204%204%207.58172%204%2012C4%2016.4183%207.58172%2020%2012%2020C16.4183%2020%2020%2016.4183%2020%2012C20%209.03887%2018.3912%206.38324%2016%205M16%205V9M16%205H20'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='reload_right'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M20%2012C20%2016.4183%2016.4183%2020%2012%2020C7.58172%2020%204%2016.4183%204%2012C4%207.58172%207.58172%204%2012%204C14.9611%204%2017.6168%205.60879%2019%208M19%208H15M19%208V4'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='remove_red_eye'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M12%204.5C7%204.5%202.73%207.61%201%2012c1.73%204.39%206%207.5%2011%207.5s9.27-3.11%2011-7.5c-1.73-4.39-6-7.5-11-7.5zM12%2017c-2.76%200-5-2.24-5-5s2.24-5%205-5%205%202.24%205%205-2.24%205-5%205zm0-8c-1.66%200-3%201.34-3%203s1.34%203%203%203%203-1.34%203-3-1.34-3-3-3z'/%3e%3c/symbol%3e%3csymbol%20id='repair'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M7.5%2011.6C7.52647%2012.7759%208.0122%2013.8948%208.85323%2014.7171C9.69426%2015.5394%2010.8238%2015.9998%2012%2015.9998C13.1762%2015.9998%2014.3057%2015.5394%2015.1468%2014.7171C15.9878%2013.8948%2016.4735%2012.7759%2016.5%2011.6V11.5625C16.5006%2010.9297%2016.3664%2010.3041%2016.1061%209.72731C15.8459%209.15054%2015.4657%208.63587%2014.9909%208.21763C14.8593%208.10713%2014.6989%208.03658%2014.5286%208.01431C14.3583%207.99204%2014.1851%208.01898%2014.0296%208.09194C13.8741%208.1649%2013.7427%208.28085%2013.651%208.42608C13.5592%208.57131%2013.511%208.73976%2013.5119%208.91154L13.5123%2011.375C13.5123%2011.4346%2013.4885%2011.4919%2013.4464%2011.5341C13.4042%2011.5763%2013.3469%2011.6%2013.2873%2011.6H10.7127C10.6531%2011.6%2010.5958%2011.5763%2010.5536%2011.5341C10.5114%2011.4919%2010.4877%2011.4346%2010.4877%2011.375L10.4881%208.91154C10.489%208.73976%2010.4408%208.57131%2010.349%208.42608C10.2573%208.28085%2010.1259%208.1649%209.97037%208.09194C9.81485%208.01898%209.6417%207.99204%209.47137%208.01431C9.30104%208.03658%209.14064%208.10713%209.00911%208.21763C8.53429%208.63587%208.15408%209.15054%207.89386%209.72732C7.63363%2010.3041%207.49936%2010.9297%207.5%2011.5625'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12%2021C16.9706%2021%2021%2016.9706%2021%2012C21%207.02944%2016.9706%203%2012%203C7.02944%203%203%207.02944%203%2012C3%2016.9706%207.02944%2021%2012%2021Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10%2020.7769V15.5424'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14%2020.7769V15.5424'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='reply_arrow'%20viewBox='0%200%2020%2020'%3e%3cpath%20d='M9.16667%2011.9408C12.995%2011.9408%2016.2492%2013.91%2017.5%2016.6667V15.8275C17.5%2010.8142%2013.8158%206.725%209.16667%206.41833V2.5L2.5%209.16667L9.16667%2015.8333V11.9442'%20stroke='currentColor'%20stroke-linecap='round'%20fill='none'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='requisites'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13%2019H6C5.20435%2019%204.44129%2018.6839%203.87868%2018.1213C3.31607%2017.5587%203%2016.7956%203%2016V8C3%207.20435%203.31607%206.44129%203.87868%205.87868C4.44129%205.31607%205.20435%205%206%205H13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16%2019H18C18.7956%2019%2019.5587%2018.6839%2020.1213%2018.1213C20.6839%2017.5587%2021%2016.7956%2021%2016V8C21%207.20435%2020.6839%206.44129%2020.1213%205.87868C19.5587%205.31607%2018.7956%205%2018%205H16'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16%202.00001V22'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7%2011V13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%2011V13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='reset'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M20.4238%204.80273V7.69573H17.5308H20.4238'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9%2020.477C5.507%2019.24%203%2015.917%203%2012C3%207.03%207.029%203%2012%203C15.412%203%2018.379%204.899%2019.905%207.696'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.5%2021C18.9853%2021%2021%2018.9853%2021%2016.5C21%2014.0147%2018.9853%2012%2016.5%2012C14.0147%2012%2012%2014.0147%2012%2016.5C12%2018.9853%2014.0147%2021%2016.5%2021Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17.75%2015.25L15.25%2017.75'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17.75%2017.75L15.25%2015.25'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='resize_video'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M21.25%2013C21.6297%2013%2021.9435%2013.2822%2021.9932%2013.6482L22%2013.75V18.75C22%2020.483%2020.6436%2021.8992%2018.9345%2021.9949L18.75%2022L14.0822%2022.0002C14.6185%2021.6147%2015.0555%2021.0997%2015.3474%2020.5011L18.75%2020.5C19.6682%2020.5%2020.4212%2019.7929%2020.4942%2018.8935L20.5%2018.75V13.75C20.5%2013.3358%2020.8358%2013%2021.25%2013ZM11.75%209C13.545%209%2015%2010.4551%2015%2012.25V18.75C15%2020.5449%2013.545%2022%2011.75%2022H5.25003C3.4551%2022%202.00003%2020.5449%202.00003%2018.75V12.25C2.00003%2010.4551%203.4551%209%205.25003%209H11.75ZM11.75%2010.5H5.25003C4.28353%2010.5%203.50003%2011.2835%203.50003%2012.25V18.75C3.50003%2019.7165%204.28353%2020.5%205.25003%2020.5H11.75C12.7165%2020.5%2013.5%2019.7165%2013.5%2018.75V12.25C13.5%2011.2835%2012.7165%2010.5%2011.75%2010.5ZM6.06108%2013.1028C6.17862%2012.8874%206.43165%2012.7928%206.6567%2012.8674L6.73945%2012.9033L10.6953%2015.0611C10.7796%2015.107%2010.8488%2015.1763%2010.8948%2015.2606C11.0124%2015.4761%2010.9548%2015.74%2010.7703%2015.8888L10.6953%2015.9389L6.73945%2018.0967C6.66601%2018.1367%206.58369%2018.1577%206.50003%2018.1577C6.25457%2018.1577%206.05042%2017.9809%206.00808%2017.7476L6.00003%2017.6577V13.3423C6.00003%2013.2586%206.02102%2013.1763%206.06108%2013.1028ZM18.75%202C20.4831%202%2021.8993%203.35645%2021.9949%205.06558L22%205.25V10.25C22%2010.6642%2021.6642%2011%2021.25%2011C20.8703%2011%2020.5565%2010.7178%2020.5069%2010.3518L20.5%2010.25V5.25C20.5%204.33183%2019.7929%203.57881%2018.8936%203.5058L18.75%203.5H13.75C13.3358%203.5%2013%203.16421%2013%202.75C13%202.3703%2013.2822%202.05651%2013.6483%202.00685L13.75%202H18.75ZM10.25%202C10.6642%202%2011%202.33579%2011%202.75C11%203.1297%2010.7179%203.44349%2010.3518%203.49315L10.25%203.5H5.25003C4.33186%203.5%203.57884%204.20711%203.50583%205.10647L3.50003%205.25L3.49999%208.65214C2.9009%208.94409%202.38559%209.38126%201.99988%209.91785L2.00003%205.25C2.00003%203.51697%203.35648%202.10075%205.0656%202.00514L5.25003%202H10.25Z'/%3e%3c/symbol%3e%3csymbol%20id='revenue'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M8%2015V17M12%2011V17M16%207V17M5%203H19C20.105%203%2021%203.895%2021%205V19C21%2020.105%2020.105%2021%2019%2021H5C3.895%2021%203%2020.105%203%2019V5C3%203.895%203.895%203%205%203Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='review'%20viewBox='0%200%20576%20512'%3e%3cpath%20d='M569.517%20440.013C587.975%20472.007%20564.806%20512%20527.94%20512H48.054c-36.937%200-59.999-40.055-41.577-71.987L246.423%2023.985c18.467-32.009%2064.72-31.951%2083.154%200l239.94%20416.028zM288%20354c-25.405%200-46%2020.595-46%2046s20.595%2046%2046%2046%2046-20.595%2046-46-20.595-46-46-46zm-43.673-165.346l7.418%20136c.347%206.364%205.609%2011.346%2011.982%2011.346h48.546c6.373%200%2011.635-4.982%2011.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884%200-12.356%205.78-11.981%2012.654z'/%3e%3c/symbol%3e%3csymbol%20id='ripple_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%2367A9E2'/%3e%3cpath%20d='M7.99361%209.07386C8.8332%209.08261%209.62766%209.42834%2010.2145%2010.1767C10.3499%2010.3474%2010.4672%2010.5312%2010.5936%2010.7062C10.8193%2011.0213%2011.1263%2011.2139%2011.5235%2011.2314C12.336%2011.2664%2012.9048%2010.5574%2012.6836%209.78282C12.643%209.6384%2012.5708%209.49836%2012.503%209.36269C12.2638%208.87255%2012.0968%208.36928%2012.1103%207.81787C12.1464%206.42184%2013.2478%205.21399%2014.6652%205.02581C16.0239%204.84638%2017.3239%205.61661%2017.8114%206.89448C18.3441%208.29051%2017.7076%209.90098%2016.3625%2010.5399C15.9201%2010.75%2015.4507%2010.82%2014.9631%2010.8375C14.5253%2010.855%2014.1687%2011.0213%2013.9294%2011.3845C13.4194%2012.1723%2013.9565%2013.1175%2014.9315%2013.1569C15.3829%2013.1744%2015.8343%2013.2226%2016.2496%2013.4107C17.184%2013.8352%2017.7392%2014.5573%2017.9423%2015.5289C18.1996%2016.7542%2017.5767%2018.0452%2016.4527%2018.6491C14.7645%2019.5506%2012.661%2018.636%2012.1961%2016.8067C12.002%2016.0365%2012.1419%2015.3188%2012.5076%2014.6273C12.6385%2014.3779%2012.7333%2014.1197%2012.7197%2013.8352C12.6926%2013.2313%2012.1374%2012.7193%2011.519%2012.7499C11.0992%2012.7674%2010.8058%2013.0037%2010.5711%2013.3276C10.3815%2013.5902%2010.2009%2013.8659%209.97523%2014.0934C8.88737%2015.2006%207.05922%2015.205%205.91268%2014.1241C4.45919%2012.7456%204.7887%2010.3649%206.5672%209.41959C6.97345%209.20077%207.41131%209.09137%207.99361%209.07386Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='rocket'%20viewBox='0%200%2087%2084'%3e%3cpath%20d='M61.9719%2040.9476L42.4087%2056.5982C40.9663%2057.752%2038.887%2057.6369%2037.5809%2056.3308L27.6694%2046.4192C26.3633%2045.1131%2026.2481%2043.0338%2027.402%2041.5914L43.0526%2022.0282C50.2091%2013.0825%2061.0441%207.875%2072.5001%207.875C74.5022%207.875%2076.1251%209.49797%2076.1251%2011.5C76.1251%2022.9561%2070.9176%2033.791%2061.9719%2040.9476Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M58%2044.125V60.0097C58%2061.3828%2057.2243%2062.638%2055.9962%2063.252L47.2384%2067.631C45.4477%2068.5263%2043.2703%2067.8005%2042.375%2066.0098C42.2983%2065.8564%2042.2326%2065.6977%2042.1783%2065.535L39.875%2058.625'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M25.375%2044.125L18.4652%2041.8217C16.5659%2041.1886%2015.5394%2039.1357%2016.1725%2037.2364C16.2268%2037.0737%2016.2925%2036.915%2016.3692%2036.7616L20.7482%2028.0039C21.3622%2026.7758%2022.6173%2026.0001%2023.9903%2026H39.875'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M20.8441%2071.6276L10.875%2073.1253L12.3727%2063.1562C12.8585%2059.9222%2015.3972%2057.3835%2018.6312%2056.8977C22.6987%2056.2865%2026.4916%2059.0884%2027.1028%2063.1559C27.2131%2063.8896%2027.2131%2064.6356%2027.1028%2065.3693C26.6169%2068.6032%2024.0781%2071.1419%2020.8441%2071.6276Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M36%2047L49%2034.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'/%3e%3c/symbol%3e%3csymbol%20id='rocket_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16%2013V17.6545C16%2018.0568%2015.786%2018.4246%2015.4472%2018.6045L13.0313%2019.8876C12.5373%2020.15%2011.9366%2019.9373%2011.6896%2019.4126C11.6685%2019.3676%2011.6504%2019.3212%2011.6354%2019.2735L11%2017'%20fill='%23FF1FDB'/%3e%3cpath%20d='M7%2013L4.72658%2012.3646C4.17005%2012.19%203.86929%2011.6236%204.0548%2011.0997C4.07069%2011.0548%204.08995%2011.011%204.11242%2010.9687L5.39554%208.55279C5.57545%208.21403%205.94321%208.00003%206.34551%208H11'%20fill='%23FF1FDB'/%3e%3cpath%20d='M16.9985%2012.3505L11.4674%2016.7754C11.0596%2017.1016%2010.4717%2017.0691%2010.1025%2016.6998L7.30019%2013.8975C6.93092%2013.5283%206.89836%2012.9404%207.22459%2012.5326L11.6495%207.00152C13.6728%204.47231%2016.7362%203%2019.9751%203C20.5411%203%2021%203.45886%2021%204.02489C21%207.26385%2019.5277%2010.3272%2016.9985%2012.3505Z'%20fill='%2380A3FF'/%3e%3cpath%20d='M5.7501%2020.5869L3%2021L3.41315%2018.2499C3.54717%2017.3578%204.2475%2016.6575%205.13964%2016.5235C6.26172%2016.3548%207.30803%2017.1278%207.47664%2018.2499C7.50705%2018.4523%207.50705%2018.6581%207.47664%2018.8605C7.34259%2019.7526%206.64224%2020.4529%205.7501%2020.5869Z'%20fill='%23FF8A00'/%3e%3c/symbol%3e%3csymbol%20id='rocket_small'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M17.0955%2012.1235L11.6988%2016.4409C11.3009%2016.7592%2010.7273%2016.7274%2010.367%2016.3671L7.63274%2013.6329C7.27244%2013.2726%207.24067%2012.699%207.55898%2012.3011L11.8764%206.90437C13.8506%204.43659%2016.8396%203.00003%2019.9999%203.00003C20.5521%203.00003%2020.9999%203.44775%2020.9999%204.00003C20.9999%207.16033%2019.5633%2010.1493%2017.0955%2012.1235Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16%2013V17.382C16%2017.7608%2015.786%2018.107%2015.4472%2018.2764L13.0313%2019.4844C12.5373%2019.7314%2011.9366%2019.5312%2011.6896%2019.0372C11.6685%2018.9949%2011.6504%2018.9511%2011.6354%2018.9062L11%2017'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.00036%2013L5.0942%2012.3646C4.57025%2012.19%204.2871%2011.6236%204.46175%2011.0997C4.47671%2011.0548%204.49484%2011.011%204.516%2010.9687L5.724%208.55279C5.89338%208.21403%206.23961%208.00003%206.61836%208H11.0004'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.7501%2020.5869L3%2021.0001L3.41315%2018.25C3.54717%2017.3578%204.2475%2016.6575%205.13964%2016.5235C6.26172%2016.3549%207.30803%2017.1278%207.47664%2018.2499C7.50705%2018.4523%207.50705%2018.6581%207.47664%2018.8605C7.34259%2019.7526%206.64224%2020.4529%205.7501%2020.5869Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='role'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M18%2015.434C17.869%2015.105%2017.666%2014.809%2017.406%2014.568C16.967%2014.16%2016.392%2013.934%2015.792%2013.934C14.792%2013.934%2012.208%2013.934%2011.208%2013.934C10.608%2013.934%2010.034%2014.161%209.594%2014.568C9.334%2014.809%209.131%2015.105%209%2015.434M18%2018V19.333C18%2020.254%2017.254%2021%2016.333%2021H4.667C3.746%2021%203%2020.254%203%2019.333V7.667C3%206.746%203.746%206%204.667%206H6M19.333%2018H7.667C6.746%2018%206%2017.254%206%2016.333V4.667C6%203.746%206.746%203%207.667%203H19.334C20.254%203%2021%203.746%2021%204.667V16.334C21%2017.254%2020.254%2018%2019.333%2018ZM15.2684%207.166C16.2444%208.142%2016.2444%209.725%2015.2684%2010.702C14.2924%2011.678%2012.7094%2011.678%2011.7324%2010.702C10.7554%209.726%2010.7564%208.143%2011.7324%207.166C12.7084%206.189%2014.2914%206.19%2015.2684%207.166Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='safety'%20viewBox='0%200%2032%2032'%3e%3cpath%20d='M18.6666%2014.666V12.7905C18.6666%2011.6177%2017.4721%2010.666%2015.9999%2010.666C14.5278%2010.666%2013.3333%2011.6177%2013.3333%2012.7905V14.666'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13.4545%2014.666H18.5455C19.3484%2014.666%2020%2015.3902%2020%2016.2826V19.7161C20%2020.6085%2019.3484%2021.3327%2018.5455%2021.3327H13.4545C12.6516%2021.3327%2012%2020.6085%2012%2019.7161V16.2826C12%2015.3902%2012.6516%2014.666%2013.4545%2014.666Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.78%2029.226C23.2645%2027.4127%2028%2021.3474%2028%2014.8762V8.9087C28%207.70572%2027.2635%206.62126%2026.137%206.16644L18.841%203.21825C17.0215%202.48194%2014.9815%202.48194%2013.1605%203.21825L5.8645%206.16644C4.7365%206.62126%204%207.70572%204%208.9087V14.8762C4%2021.3474%208.7355%2027.4141%2015.22%2029.226C15.727%2029.3682%2016.273%2029.3682%2016.78%2029.226Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='sand_clock'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M17%204.5C15.5%203.5%2013.7%203%2012%203C7%203%203%207%203%2012M7%2019.5C8.5%2020.5%2010.3%2021%2012%2021C17%2021%2021%2017%2021%2012M20.3%207.7C20.4%207.8%2020.4%208.1%2020.3%208.2C20.2%208.3%2019.9%208.3%2019.8%208.2C19.7%208.1%2019.7%207.8%2019.8%207.7C19.9%207.6%2020.1%207.6%2020.3%207.7ZM4.3%2015.7C4.4%2015.8%204.4%2016.1%204.3%2016.2C4.2%2016.3%203.9%2016.3%203.8%2016.2C3.7%2016.1%203.7%2015.8%203.8%2015.7C3.9%2015.6%204.1%2015.6%204.3%2015.7Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.2%2013.7L10.4%2012L9.2%2010.3C9.1%2010.1%209%209.9%209%209.7V8.5C9%208.2%209.2%208%209.5%208H14.5C14.8%208%2015%208.2%2015%208.5V9.7C15%209.9%2015%2010.1%2014.8%2010.3L13.5%2012L14.9%2013.7C15%2013.9%2015.1%2014.1%2015.1%2014.3V15.5C15.1%2015.8%2014.9%2016%2014.6%2016H9.5C9.2%2016%209%2015.8%209%2015.5V14.3C9%2014.1%209%2013.9%209.2%2013.7Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='save'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M17%203H5c-1.11%200-2%20.9-2%202v14c0%201.1.89%202%202%202h14c1.1%200%202-.9%202-2V7l-4-4zm-5%2016c-1.66%200-3-1.34-3-3s1.34-3%203-3%203%201.34%203%203-1.34%203-3%203zm3-10H5V5h10v4z'/%3e%3c/symbol%3e%3csymbol%20id='search'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19%2019L15.71%2015.71M15.7138%206.8382C18.1647%209.28913%2018.1647%2013.2629%2015.7138%2015.7138C13.2629%2018.1647%209.28913%2018.1647%206.8382%2015.7138C4.38727%2013.2629%204.38727%209.28913%206.8382%206.8382C9.28913%204.38727%2013.2629%204.38727%2015.7138%206.8382Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='send'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M2.01%2021L23%2012%202.01%203%202%2010l15%202-15%202z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='send_solid'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M2%2012C2%2017.5233%206.47667%2022%2012%2022C17.5233%2022%2022%2017.5233%2022%2012C22%206.47667%2017.5233%202%2012%202C6.47667%202%202%206.47667%202%2012ZM12.5303%206.46967C12.3897%206.32902%2012.1989%206.25%2012%206.25C11.8011%206.25%2011.6103%206.32902%2011.4697%206.46967L7.46967%2010.4697C7.17678%2010.7626%207.17678%2011.2374%207.46967%2011.5303C7.76256%2011.8232%208.23744%2011.8232%208.53033%2011.5303L11.2555%208.80517L11.25%2016.9995C11.2497%2017.4137%2011.5853%2017.7497%2011.9995%2017.75C12.4137%2017.7503%2012.7497%2017.4147%2012.75%2017.0005L12.7555%208.81614L15.4697%2011.5303C15.7626%2011.8232%2016.2374%2011.8232%2016.5303%2011.5303C16.8232%2011.2374%2016.8232%2010.7626%2016.5303%2010.4697L12.5303%206.46967Z'/%3e%3c/symbol%3e%3csymbol%20id='settings'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.9096%2010.0908C14.964%2011.1452%2014.964%2012.8548%2013.9096%2013.9092C12.8551%2014.9636%2011.1456%2014.9636%2010.0912%2013.9092C9.03676%2012.8548%209.03676%2011.1452%2010.0912%2010.0908C11.1456%209.03638%2012.8551%209.03638%2013.9096%2010.0908Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.25036%2012C5.25036%2012.297%205.27736%2012.594%205.31336%2012.882L3.72536%2014.124C3.37336%2014.4%203.27736%2014.893%203.50136%2015.28L4.91336%2017.723C5.13636%2018.11%205.61036%2018.273%206.02536%2018.107L7.44736%2017.536C7.72836%2017.423%208.04136%2017.468%208.29336%2017.635C8.51336%2017.781%208.74136%2017.915%208.97736%2018.035C9.24736%2018.172%209.44336%2018.417%209.48636%2018.717L9.70336%2020.23C9.76636%2020.672%2010.1454%2021%2010.5914%2021H13.4084C13.8544%2021%2014.2334%2020.672%2014.2964%2020.23L14.5134%2018.718C14.5564%2018.418%2014.7544%2018.171%2015.0254%2018.035C15.2604%2017.917%2015.4874%2017.784%2015.7064%2017.639C15.9604%2017.471%2016.2744%2017.423%2016.5564%2017.537L17.9754%2018.107C18.3894%2018.273%2018.8634%2018.11%2019.0874%2017.723L20.4994%2015.28C20.7234%2014.893%2020.6274%2014.399%2020.2754%2014.124L18.6874%2012.882C18.7234%2012.594%2018.7504%2012.297%2018.7504%2012C18.7504%2011.703%2018.7234%2011.406%2018.6874%2011.118L20.2754%209.876C20.6274%209.6%2020.7234%209.107%2020.4994%208.72L19.0874%206.277C18.8644%205.89%2018.3904%205.727%2017.9754%205.893L16.5564%206.463C16.2744%206.576%2015.9604%206.529%2015.7064%206.361C15.4874%206.216%2015.2604%206.083%2015.0254%205.965C14.7544%205.829%2014.5564%205.582%2014.5134%205.282L14.2974%203.77C14.2344%203.328%2013.8554%203%2013.4094%203H10.5924C10.1464%203%209.76736%203.328%209.70436%203.77L9.48636%205.284C9.44336%205.583%209.24636%205.829%208.97736%205.966C8.74136%206.086%208.51336%206.221%208.29336%206.366C8.04036%206.532%207.72736%206.577%207.44636%206.464L6.02536%205.893C5.61036%205.727%205.13636%205.89%204.91336%206.277L3.50136%208.72C3.27736%209.107%203.37336%209.601%203.72536%209.876L5.31336%2011.118C5.27736%2011.406%205.25036%2011.703%205.25036%2012Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='settings_solid'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5.31336%2012.882C5.27736%2012.594%205.25036%2012.297%205.25036%2012C5.25036%2011.703%205.27736%2011.406%205.31336%2011.118L3.72536%209.876C3.37336%209.601%203.27736%209.107%203.50136%208.72L4.91336%206.277C5.13636%205.89%205.61036%205.727%206.02536%205.893L7.44636%206.464C7.72736%206.577%208.04036%206.532%208.29336%206.366C8.51336%206.221%208.74136%206.086%208.97736%205.966C9.24636%205.829%209.44336%205.583%209.48636%205.284L9.70436%203.77C9.76736%203.328%2010.1464%203%2010.5924%203H13.4094C13.8554%203%2014.2344%203.328%2014.2974%203.77L14.5134%205.282C14.5564%205.582%2014.7544%205.829%2015.0254%205.965C15.2604%206.083%2015.4874%206.216%2015.7064%206.361C15.9604%206.529%2016.2744%206.576%2016.5564%206.463L17.9754%205.893C18.3904%205.727%2018.8644%205.89%2019.0874%206.277L20.4994%208.72C20.7234%209.107%2020.6274%209.6%2020.2754%209.876L18.6874%2011.118C18.7234%2011.406%2018.7504%2011.703%2018.7504%2012C18.7504%2012.297%2018.7234%2012.594%2018.6874%2012.882L20.2754%2014.124C20.6274%2014.399%2020.7234%2014.893%2020.4994%2015.28L19.0874%2017.723C18.8634%2018.11%2018.3894%2018.273%2017.9754%2018.107L16.5564%2017.537C16.2744%2017.423%2015.9604%2017.471%2015.7064%2017.639C15.4874%2017.784%2015.2604%2017.917%2015.0254%2018.035C14.7544%2018.171%2014.5564%2018.418%2014.5134%2018.718L14.2964%2020.23C14.2334%2020.672%2013.8544%2021%2013.4084%2021H10.5914C10.1454%2021%209.76636%2020.672%209.70336%2020.23L9.48636%2018.717C9.44336%2018.417%209.24736%2018.172%208.97736%2018.035C8.74136%2017.915%208.51336%2017.781%208.29336%2017.635C8.04136%2017.468%207.72836%2017.423%207.44736%2017.536L6.02536%2018.107C5.61036%2018.273%205.13636%2018.11%204.91336%2017.723L3.50136%2015.28C3.27736%2014.893%203.37336%2014.4%203.72536%2014.124L5.31336%2012.882ZM13.909%2013.9092C14.9634%2012.8548%2014.9634%2011.1452%2013.909%2010.0908C12.8546%209.03638%2011.145%209.03638%2010.0906%2010.0908C9.0362%2011.1452%209.0362%2012.8548%2010.0906%2013.9092C11.145%2014.9636%2012.8546%2014.9636%2013.909%2013.9092Z'/%3e%3c/symbol%3e%3csymbol%20id='settings_tools'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M21%2017H17M13%2017H3M3%207H7M11%207H21M14%2014H16C16.552%2014%2017%2014.448%2017%2015V19C17%2019.552%2016.552%2020%2016%2020H14C13.448%2020%2013%2019.552%2013%2019V15C13%2014.448%2013.448%2014%2014%2014ZM10%2010H8C7.448%2010%207%209.552%207%209V5C7%204.448%207.448%204%208%204H10C10.552%204%2011%204.448%2011%205V9C11%209.552%2010.552%2010%2010%2010Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='shield'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15.3186%2010.342L11.1706%2014.49L8.68164%2012.001'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19.1%205.921C16.641%205.727%2014.403%204.748%2012.637%203.233C12.275%202.923%2011.724%202.923%2011.363%203.233C9.597%204.747%207.359%205.727%204.9%205.921C4.388%205.961%204%206.399%204%206.912V11.242C4%2015.609%207.156%2019.704%2011.478%2020.927C11.817%2021.023%2012.184%2021.023%2012.523%2020.927C16.844%2019.703%2020%2015.61%2020%2011.243V6.913C20%206.399%2019.612%205.961%2019.1%205.921Z'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='shield_blue'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%2022C17.5229%2022%2022%2017.5228%2022%2012C22%206.47715%2017.5229%202%2012%202C6.47715%202%202%206.47715%202%2012C2%2017.5228%206.47715%2022%2012%2022Z'%20fill='currentColor'/%3e%3cpath%20d='M7%2012.5032V9.38217C7.00195%209.20092%207.0687%209.02635%207.18818%208.89004C7.30765%208.75373%207.47197%208.66468%207.6514%208.63899C8.97837%208.52184%2010.2458%208.03462%2011.3096%207.23273C11.5081%207.08173%2011.7506%206.99997%2012%206.99997C12.2494%206.99997%2012.4919%207.08173%2012.6904%207.23273C13.7542%208.03462%2015.0216%208.52184%2016.3486%208.63899C16.528%208.66468%2016.6923%208.75372%2016.8118%208.89002C16.9313%209.02632%2016.998%209.20088%2017%209.38212V12.5031C17%2014.8847%2014.0417%2016.648%2012.6737%2017.3383C12.4655%2017.4444%2012.2351%2017.4998%2012.0014%2017.5001C11.7677%2017.5003%2011.5373%2017.4453%2011.3289%2017.3396C9.962%2016.6502%207%2014.8824%207%2012.5032Z'%20fill='white'/%3e%3cpath%20d='M13.25%2011.5L11.6883%2013L10.75%2012.1'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='shield_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M21.6969%202C17.0303%200%2011.6969%200%2011.6969%200C11.6969%200%206.3636%200%201.69694%202C-0.303061%2012%201.69694%2020.6667%2011.6969%2024C21.6969%2020.6667%2023.6969%2012%2021.6969%202Z'%20fill='%23C7CCD1'/%3e%3cpath%20d='M11.6966%2022.5893C3.97128%2019.8193%201.00395%2013.2207%202.86995%202.96268C7.07195%201.35268%2011.6486%201.33334%2011.6966%201.33334C11.7439%201.33334%2016.3353%201.36001%2020.5233%202.96268C22.3893%2013.2207%2019.4219%2019.8193%2011.6966%2022.5893Z'%20fill='%2392BBFA'/%3e%3cpath%20d='M20.5239%202.96268C16.3359%201.36001%2011.7446%201.33334%2011.6973%201.33334V22.5893C19.4226%2019.8193%2022.3899%2013.2207%2020.5239%202.96268Z'%20fill='%230B84DA'/%3e%3c/symbol%3e%3csymbol%20id='shield_usd'%20viewBox='0%200%2032%2032'%3e%3cpath%20d='M15.9997%2011.3332V9.9998M15.9997%2011.3332L15.205%2011.3319C14.1717%2011.3319%2013.333%2012.1692%2013.333%2013.2039C13.333%2014.0626%2013.9183%2014.8106%2014.749%2015.0186L17.249%2015.6466C18.081%2015.8572%2018.6663%2016.6053%2018.6663%2017.4639C18.6663%2018.4973%2017.829%2019.336%2016.7943%2019.336H15.333C14.6197%2019.336%2014.0303%2018.9453%2013.685%2018.3799M15.9997%2011.3332L16.6663%2011.3319C17.377%2011.3319%2017.9663%2011.7212%2018.3103%2012.2852M15.9997%2019.3331V20.6665M26.6663%2014.9092C26.6663%2020.9639%2022.1157%2026.6253%2015.9997%2028C9.88367%2026.6253%205.33301%2020.9639%205.33301%2014.9092V9.65708C5.33301%208.5744%205.98767%207.59838%206.99034%207.18904L13.657%204.46101C15.1583%203.84633%2016.841%203.84633%2018.3423%204.46101L25.009%207.18904C26.0117%207.59972%2026.6663%208.5744%2026.6663%209.65708V14.9092Z'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='shop'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M16%206V4c0-1.11-.89-2-2-2h-4c-1.11%200-2%20.89-2%202v2H2v13c0%201.11.89%202%202%202h16c1.11%200%202-.89%202-2V6h-6zm-6-2h4v2h-4V4zM9%2018V9l7.5%204L9%2018z'/%3e%3c/symbol%3e%3csymbol%20id='shopping_cart'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M7%2018c-1.1%200-1.99.9-1.99%202S5.9%2022%207%2022s2-.9%202-2-.9-2-2-2zM1%202v2h2l3.6%207.59-1.35%202.45c-.16.28-.25.61-.25.96%200%201.1.9%202%202%202h12v-2H7.42c-.14%200-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75%200%201.41-.41%201.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48%200-.55-.45-1-1-1H5.21l-.94-2H1zm16%2016c-1.1%200-1.99.9-1.99%202s.89%202%201.99%202%202-.9%202-2-.9-2-2-2z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='shuffle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19%2018.979L21%2016.979L19%2014.979'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10.182%209L8.602%206.828C8.224%206.308%207.619%206.002%206.976%206.004L3%206.021'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19%208L21%206L19%204'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13.8184%2014L15.3984%2016.172C15.7764%2016.692%2016.3814%2016.998%2017.0244%2016.996L21.0004%2016.979'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21%206.021L17.024%206.004C16.381%206.001%2015.776%206.308%2015.398%206.828L8.602%2016.172C8.224%2016.692%207.619%2016.998%206.976%2016.996L3%2016.979'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='sign_out'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='currentColor'%20d='M8.5,11.5c0.6,0,1,0.4,1,1c0,0.6-0.4,1-1,1c-0.6,0-1-0.4-1-1C7.5,11.9,7.9,11.5,8.5,11.5z%20M12,4.4v6.1l0,0.5l7.4,0l-1.7-1.7%20c-0.3-0.3-0.3-0.7-0.1-1l0.1-0.1c0.3-0.3,0.7-0.3,1-0.1l0.1,0.1l3,3c0.3,0.3,0.3,0.7,0.1,1l-0.1,0.1l-3,3c-0.3,0.3-0.8,0.3-1.1,0%20c-0.3-0.3-0.3-0.7-0.1-1l0.1-0.1l1.7-1.7l-7.4,0l0,6.7c0,0.5-0.4,0.8-0.9,0.7l-8.5-1.5C2.3,18.4,2,18.1,2,17.7v-12%20C2,5.4,2.3,5.1,2.6,5l8.5-1.4C11.6,3.5,12,3.9,12,4.4z%20M10.5,5.2l-7,1.1v10.7l7,1.2V5.2z%20M13,18.5l0.8,0l0.1,0%20c0.4,0,0.6-0.4,0.6-0.7l0-4.3H13V18.5z%20M13,10l0-1.3V5l0.7,0c0.4,0,0.7,0.3,0.7,0.6l0,0.1l0,4.3H13z'/%3e%3c/symbol%3e%3csymbol%20id='skype'%20viewBox='0%200%20430.123%20430.123'%3e%3cg%3e%3cpath%20id='Skype'%20d='M412.164,246.198c1.605-10.155,2.45-20.544,2.45-31.148c0-110.215-89.342-199.555-199.56-199.555%20c-10.576,0-20.995,0.871-31.141,2.458C165.534,6.581,143.842,0,120.595,0C53.996,0,0.005,53.984,0.005,120.59%20c0,23.242,6.585,44.916,17.952,63.332c-1.573,10.172-2.439,20.528-2.439,31.132c0,110.223,89.34,199.536,199.532,199.536%20c10.585,0,21.007-0.816,31.152-2.417c18.398,11.35,40.072,17.949,63.314,17.949c66.617,0,120.602-53.998,120.602-120.602%20C430.123,286.269,423.542,264.6,412.164,246.198z%20M309.801,305.81c-8.442,12.153-20.843,21.65-37.047,28.479%20c-16.237,6.847-35.428,10.254-57.59,10.254c-26.562,0-48.554-4.648-65.913-14.034c-12.305-6.721-22.313-15.737-30.007-26.98%20c-7.71-11.252-11.619-22.271-11.619-33.015c0-6.338,2.417-11.85,7.122-16.344c4.754-4.527,10.877-6.796,18.104-6.796%20c5.92,0,11.005,1.783,15.145,5.316c4.109,3.532,7.556,8.667,10.375,15.443c3.379,7.85,7.049,14.412,10.954,19.648%20c3.881,5.171,9.343,9.488,16.417,12.867c6.996,3.388,16.307,5.082,27.958,5.082c15.945,0,28.831-3.449,38.693-10.253%20c9.912-6.866,14.673-15.22,14.673-25.314c0-8.051-2.567-14.445-7.831-19.43c-5.312-5.05-12.172-8.896-20.685-11.579%20c-8.546-2.711-20.02-5.586-34.399-8.615c-19.308-4.214-35.456-9.119-48.533-14.752c-13.094-5.654-23.522-13.383-31.251-23.146%20c-7.745-9.859-11.607-22.113-11.607-36.627c0-13.84,4.077-26.217,12.239-36.989c8.158-10.802,19.961-19.07,35.351-24.829%20c15.336-5.757,33.391-8.637,54.075-8.637c16.541,0,30.849,1.914,42.96,5.722c12.078,3.836,22.146,8.898,30.196,15.25%20c7.999,6.338,13.885,13.023,17.613,20.038c3.725,7.036,5.601,13.908,5.601,20.614c0,6.235-2.417,11.89-7.127,16.846%20c-4.709,4.963-10.733,7.493-17.768,7.47c-6.342,0-11.317-1.463-14.767-4.56c-3.36-2.996-6.889-7.766-10.706-14.414%20c-4.825-9.276-10.604-16.503-17.324-21.672c-6.543-5.073-17.338-7.714-32.359-7.682c-13.898,0-25.018,2.84-33.411,8.394%20c-8.445,5.643-12.482,12.19-12.501,19.861c0.014,4.807,1.396,8.86,4.177,12.326c2.824,3.498,6.753,6.529,11.803,9.084%20c5.052,2.595,10.191,4.602,15.355,6.046c5.225,1.481,13.894,3.622,25.944,6.457c15.112,3.257,28.819,6.896,41.136,10.862%20c12.293,3.986,22.784,8.793,31.451,14.52c8.736,5.71,15.564,12.99,20.438,21.783c4.909,8.807,7.354,19.564,7.354,32.222%20C322.509,279.968,318.263,293.676,309.801,305.81z'/%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='skype_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%2300AFF0'/%3e%3cpath%20d='M18.9691%2013.2492C18.9643%2013.2755%2018.961%2013.3021%2018.956%2013.3285L18.9304%2013.1774C18.9444%2013.2009%2018.956%2013.2254%2018.9691%2013.2492C19.0465%2012.8278%2019.0871%2012.3964%2019.0871%2011.9652C19.0871%2011.0091%2018.9%2010.0815%2018.5301%209.20822C18.1733%208.36469%2017.6628%207.60715%2017.0119%206.95674C16.362%206.30633%2015.604%205.79584%2014.7609%205.43904C13.8879%205.06965%2012.9603%204.88247%2012.0042%204.88247C11.5535%204.88247%2011.1022%204.92475%2010.663%205.00908C10.662%205.00932%2010.6608%205.00932%2010.6596%205.00955C10.6843%205.02262%2010.7093%205.03426%2010.7335%205.0478L10.5846%205.02452C10.6095%205.01977%2010.6347%205.01454%2010.6596%205.00955C10.057%204.6891%209.37925%204.51807%208.69321%204.51807C7.57316%204.51807%206.52011%204.95421%205.72813%205.74643C4.93638%206.53842%204.5%207.59147%204.5%208.71151C4.5%209.42439%204.68339%2010.1252%205.0276%2010.7445C5.03211%2010.7188%205.0352%2010.6929%205.04019%2010.6672L5.06584%2010.8157C5.05254%2010.7924%205.0409%2010.7682%205.0276%2010.7445C4.95776%2011.1457%204.92094%2011.5557%204.92094%2011.9652C4.92094%2012.9216%205.10812%2013.849%205.47799%2014.7224C5.83431%2015.5662%206.34504%2016.3233%206.99521%2016.9737C7.64609%2017.6241%208.40316%2018.1353%209.24717%2018.4911C10.1202%2018.8612%2011.048%2019.0487%2012.0042%2019.0487C12.4203%2019.0487%2012.8375%2019.0107%2013.2446%2018.9384C13.2209%2018.9251%2013.1967%2018.913%2013.1724%2018.899L13.3237%2018.9256C13.2976%2018.9306%2013.2712%2018.9337%2013.2446%2018.9384C13.872%2019.2933%2014.5823%2019.482%2015.3075%2019.482C16.4273%2019.482%2017.4799%2019.0465%2018.2719%2018.2541C19.0641%2017.4626%2019.5%2016.4093%2019.5%2015.2892C19.5%2014.574%2019.3157%2013.8708%2018.9691%2013.2492ZM12.0324%2016.3031C9.51607%2016.3031%208.39033%2015.0659%208.39033%2014.1388C8.39033%2013.6632%208.74143%2013.3299%209.22531%2013.3299C10.3021%2013.3299%2010.0232%2014.8761%2012.0324%2014.8761C13.061%2014.8761%2013.629%2014.3177%2013.629%2013.7461C13.629%2013.4024%2013.4594%2013.0214%2012.7821%2012.8544L10.5439%2012.2956C8.74143%2011.8436%208.41432%2010.8692%208.41432%209.95318C8.41432%208.05136%2010.205%207.33729%2011.8866%207.33729C13.4356%207.33729%2015.2617%208.19342%2015.2617%209.33436C15.2617%209.82324%2014.8383%2010.1076%2014.3547%2010.1076C13.4356%2010.1076%2013.6048%208.83551%2011.7535%208.83551C10.8349%208.83551%2010.3261%209.25146%2010.3261%209.84675C10.3261%2010.4409%2011.0516%2010.6307%2011.6816%2010.7741L13.3382%2011.1419C15.1529%2011.5462%2015.613%2012.6056%2015.613%2013.6036C15.613%2015.1491%2014.4267%2016.3031%2012.0324%2016.3031ZM13.1724%2018.899C13.1967%2018.913%2013.2209%2018.9251%2013.2446%2018.9384C13.2712%2018.9337%2013.2976%2018.9306%2013.3237%2018.9256L13.1724%2018.899ZM18.956%2013.3285C18.961%2013.3021%2018.9643%2013.2755%2018.9691%2013.2492C18.956%2013.2254%2018.9444%2013.2009%2018.9304%2013.1774L18.956%2013.3285ZM5.04019%2010.6672C5.0352%2010.6929%205.03211%2010.7188%205.0276%2010.7445C5.0409%2010.7682%205.05254%2010.7924%205.06584%2010.8157L5.04019%2010.6672ZM10.7335%205.0478C10.7093%205.03426%2010.6843%205.02262%2010.6596%205.00955C10.6347%205.01454%2010.6095%205.01977%2010.5846%205.02452L10.7335%205.0478Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='slack'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.33289%202C8.22732%202.00082%207.33257%202.89623%207.33339%203.99959C7.33257%205.10296%208.22814%205.99837%209.33371%205.99918H11.334V4.00041C11.3349%202.89704%2010.4393%202.00163%209.33289%202C9.33371%202%209.33371%202%209.33289%202V2ZM9.33289%207.33333H4.00033C2.89476%207.33415%201.99919%208.22956%202%209.33293C1.99837%2010.4363%202.89394%2011.3317%203.99951%2011.3333H9.33289C10.4385%2011.3325%2011.334%2010.4371%2011.3332%209.33374C11.334%208.22956%2010.4385%207.33415%209.33289%207.33333Z'%20fill='%2336C5F0'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M22.0002%209.33293C22.0011%208.22956%2021.1055%207.33415%2019.9999%207.33333C18.8943%207.33415%2017.9988%208.22956%2017.9996%209.33293V11.3333H19.9999C21.1055%2011.3325%2022.0011%2010.4371%2022.0002%209.33293ZM16.6668%209.33293V3.99959C16.6677%202.89704%2015.7729%202.00163%2014.6673%202C13.5618%202.00082%2012.6662%202.89623%2012.667%203.99959V9.33293C12.6654%2010.4363%2013.5609%2011.3317%2014.6665%2011.3333C15.7721%2011.3325%2016.6677%2010.4371%2016.6668%209.33293Z'%20fill='%232EB67D'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M14.6663%2022C15.7719%2021.9992%2016.6675%2021.1038%2016.6667%2020.0005C16.6675%2018.8971%2015.7719%2018.0017%2014.6663%2018.0009H12.666V20.0005C12.6652%2021.103%2013.5608%2021.9984%2014.6663%2022ZM14.6663%2016.6659H19.9997C21.1053%2016.6651%2022.0009%2015.7697%2022.0001%2014.6663C22.0017%2013.5629%2021.1061%2012.6675%2020.0006%2012.6659H14.6672C13.5616%2012.6667%2012.666%2013.5621%2012.6668%2014.6655C12.666%2015.7697%2013.5608%2016.6651%2014.6663%2016.6659Z'%20fill='%23ECB22E'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M2%2014.6662C1.99918%2015.7696%202.89476%2016.665%204.00033%2016.6658C5.1059%2016.665%206.00148%2015.7696%206.00066%2014.6662V12.6666H4.00033C2.89476%2012.6674%201.99918%2013.5629%202%2014.6662ZM7.3334%2014.6662V19.9996C7.33176%2021.1029%208.22733%2021.9984%209.33291%2022C10.4385%2021.9992%2011.3341%2021.1038%2011.3332%2020.0004V14.6679C11.3349%2013.5645%2010.4393%2012.6691%209.33372%2012.6674C8.22733%2012.6674%207.33258%2013.5629%207.3334%2014.6662C7.3334%2014.6662%207.3334%2014.667%207.3334%2014.6662Z'%20fill='%23E01E5A'/%3e%3c/symbol%3e%3csymbol%20id='smile_star_eye'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M24%2012C24%2018.6273%2018.6273%2024%2012%2024C5.37267%2024%200%2018.6273%200%2012C0%205.37267%205.37267%200%2012%200C18.6273%200%2024%205.37267%2024%2012Z'%20fill='%23FFCC4D'/%3e%3cpath%20d='M12.0003%2014C9.58499%2014%207.98233%2013.7187%206.00033%2013.3333C5.54766%2013.246%204.66699%2013.3333%204.66699%2014.6667C4.66699%2017.3333%207.73033%2020.6667%2012.0003%2020.6667C16.2697%2020.6667%2019.3337%2017.3333%2019.3337%2014.6667C19.3337%2013.3333%2018.453%2013.2453%2018.0003%2013.3333C16.0183%2013.7187%2014.4157%2014%2012.0003%2014Z'%20fill='%239C5E00'/%3e%3cpath%20d='M6%2014.6667C6%2014.6667%208%2015.3333%2012%2015.3333C16%2015.3333%2018%2014.6667%2018%2014.6667C18%2014.6667%2016.6667%2017.3333%2012%2017.3333C7.33333%2017.3333%206%2014.6667%206%2014.6667Z'%20fill='white'/%3e%3cpath%20d='M10.4545%202.942L7.42652%203.476L5.86652%200.640667C5.69452%200.328001%205.34118%200.160667%204.99185%200.222001C4.64052%200.284001%204.36718%200.562667%204.31252%200.914667L3.81585%204.11267L0.787849%204.64667C0.431183%204.70933%200.155849%204.99667%200.107183%205.356C0.058516%205.71533%200.247849%206.06467%200.575849%206.22067L3.28918%207.50867L2.79052%2010.7167C2.73518%2011.074%202.91652%2011.426%203.23918%2011.5893C3.35852%2011.6493%203.48652%2011.678%203.61385%2011.678C3.83185%2011.678%204.04718%2011.5927%204.20785%2011.43L6.54918%209.056L9.56118%2010.486C9.88785%2010.6407%2010.2772%2010.568%2010.5252%2010.3047C10.7732%2010.0413%2010.8225%209.64867%2010.6485%209.332L9.08318%206.48667L11.1932%204.348C11.4478%204.09%2011.5058%203.69667%2011.3378%203.37533C11.1685%203.054%2010.8092%202.88%2010.4545%202.942ZM13.5452%202.942L16.5732%203.476L18.1332%200.640667C18.3052%200.328001%2018.6585%200.160667%2019.0078%200.222001C19.3585%200.284001%2019.6318%200.562667%2019.6865%200.914667L20.1832%204.11267L23.2112%204.64667C23.5685%204.70933%2023.8438%204.996%2023.8918%205.35533C23.9398%205.71467%2023.7512%206.064%2023.4232%206.22L20.7098%207.508L21.2085%2010.716C21.2638%2011.0733%2021.0825%2011.4253%2020.7598%2011.5887C20.6405%2011.6487%2020.5125%2011.6773%2020.3852%2011.6773C20.1672%2011.6773%2019.9518%2011.592%2019.7912%2011.4293L17.4498%209.05533L14.4378%2010.4853C14.1112%2010.64%2013.7218%2010.5673%2013.4738%2010.304C13.2258%2010.0407%2013.1765%209.648%2013.3505%209.33133L14.9158%206.48667L12.8058%204.348C12.5512%204.09%2012.4932%203.69667%2012.6612%203.37533C12.8312%203.054%2013.1905%202.88%2013.5452%202.942Z'%20fill='%23E95F28'/%3e%3c/symbol%3e%3csymbol%20id='sort_asc'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15%2017L18%2020M18%2020L21%2017M18%2020V4.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%2019.5H3M11%2014.5H5M11%209.5H7M11%204.5H9'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='sort_az'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15.395%2014.5H19.606L17.5005%2017L15.395%2019.5H19.606M20%209.5L17.5%204.5L15%209.5M15.419%208.662H19.581'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M4%2016.5L7%2019.5M7%2019.5L10%2016.5M7%2019.5V4.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='sort_desc'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15%2016.5L18%2019.5M18%2019.5L21%2016.5M18%2019.5V4.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%2019.5H9M11%2014.5H7M11%209.5H5M11%204.5H3'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='sort_directions'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M10%208L7%205M7%205L4%208M7%205V19M14%2016L17%2019M17%2019L20%2016M17%2019V5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='sort_list'%20viewBox='0%200%2018%2018'%3e%3cg%20class='b'%3e%3cpath%20class='a'%20d='M8.78,11.415V9.659H15.8v1.756H8.78m0,5.268V14.927h3.512v1.756H8.78m0-10.537V4.39H19.317V6.146H8.78m-3.512,8.78h2.2L4.39,18,1.317,14.927h2.2V3.512H5.268Z'%20transform='translate(-1.317%20-1.756)'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='sort_za'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4%2016.5L7%2019.5M7%2019.5L10%2016.5M7%2019.5V4.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15.395%204.5H19.606L15.395%209.5H19.606M20%2019.5L17.5%2014.5L15%2019.5M15.419%2018.662H19.581'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='spy_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M22.0002%2024V23.3333C22.0002%2021.1246%2020.2088%2019.3333%2018.0001%2019.3333H6.00004C3.79135%2019.3333%202%2021.1246%202%2023.3333V24H22.0002ZM17.8335%2013.6232C18.6255%2013.7619%2019.5795%2013.7092%2019.4442%2014.2346C19.1248%2015.4706%2017.7081%2015.0126%2017.4581%2015.0266C17.2081%2015.0399%2017.8335%2013.6232%2017.8335%2013.6232Z'%20fill='%238F99A3'/%3e%3cpath%20d='M18.0427%2013.7633C19.2928%2013.9299%2019.7368%2014.0406%2018.8201%2014.4019C18.3054%2014.6053%2017.3247%2017.604%2016.5994%2017.1473C15.8747%2016.6906%2018.0427%2013.7633%2018.0427%2013.7633Z'%20fill='%23202427'/%3e%3cpath%20d='M6.17146%2013.6232C5.37945%2013.7619%204.42544%2013.7092%204.56078%2014.2346C4.88012%2015.4706%206.29679%2015.0126%206.5468%2015.0266C6.7968%2015.0399%206.17146%2013.6232%206.17146%2013.6232Z'%20fill='%238F99A3'/%3e%3cpath%20d='M5.96249%2013.7633C4.71248%2013.9299%204.26847%2014.0406%205.18515%2014.4019C5.69982%2014.6053%206.6805%2017.604%207.40584%2017.1473C8.13118%2016.6906%205.96249%2013.7633%205.96249%2013.7633Z'%20fill='%23202427'/%3e%3cpath%20d='M14.514%202.6778C13.2086%202.25513%2010.1366%202.37046%209.3686%203.36914C7.37192%203.40781%205.0299%205.21182%204.72256%207.59251C4.41856%209.94853%205.0959%2011.0425%205.33723%2012.8146C5.6099%2014.8219%206.73858%2015.4639%207.64125%2015.7326C8.93927%2017.4473%2010.3193%2017.3739%2012.636%2017.3739C17.1607%2017.3739%2019.3154%2014.3466%2019.506%209.20519C19.6207%206.09517%2017.796%203.73981%2014.514%202.6778Z'%20fill='%23202427'/%3e%3cpath%20d='M17.1021%209.42452C16.6641%208.81851%2016.1041%208.33051%2014.8754%208.15717C15.3361%208.36851%2015.7775%209.09785%2015.8355%209.50119C15.8928%209.90452%2015.9508%2010.2305%2015.5861%209.82786C14.1248%208.21251%2012.5334%208.84851%2010.9567%207.86184C9.8554%207.1725%209.52006%206.41049%209.52006%206.41049C9.52006%206.41049%209.3854%207.42783%207.71538%208.46451C7.23137%208.76518%206.65337%209.43452%206.33337%2010.4225C6.1027%2011.1332%206.1747%2011.7665%206.1747%2012.8492C6.1747%2016.0092%208.77872%2018.6666%2011.9921%2018.6666C15.2055%2018.6666%2017.8095%2015.9866%2017.8095%2012.8492C17.8068%2010.8839%2017.6015%2010.1159%2017.1021%209.42452Z'%20fill='%23FFCC4D'/%3e%3cpath%20d='M12.6235%2014.3766H11.3422C11.1655%2014.3766%2011.0215%2014.2333%2011.0215%2014.0559V13.9399C11.0215%2013.7633%2011.1648%2013.6186%2011.3422%2013.6186H12.6235C12.8002%2013.6186%2012.9448%2013.7626%2012.9448%2013.9399V14.0559C12.9448%2014.2333%2012.8008%2014.3766%2012.6235%2014.3766Z'%20fill='%235C6670'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5.10614%209.85853C5.20481%209.95654%205.69815%2010.2525%205.79682%2010.5479C5.89548%2010.8432%206.09349%2012.5172%206.68549%2013.0099C7.29616%2013.5179%209.59885%2013.3286%2010.0402%2013.1092C11.0269%2012.6172%2011.1482%2011.2439%2011.3229%2010.5479C11.4215%2010.1539%2012.0135%2010.1539%2012.0135%2010.1539C12.0135%2010.1539%2012.6055%2010.1539%2012.7042%2010.5479C12.8789%2011.2439%2013.0002%2012.6172%2013.9869%2013.1086C14.4282%2013.3286%2016.7309%2013.5179%2017.3429%2013.0106C17.9343%2012.5179%2018.1316%2010.8439%2018.2303%2010.5479C18.3276%2010.2525%2018.8223%209.9572%2018.9203%209.85853C19.0189%209.75987%2019.0189%209.36586%2018.9203%209.2672C18.7229%209.07053%2016.3949%208.89453%2013.8882%209.16853C13.3882%209.2232%2013.1982%209.3652%2012.0135%209.3652C10.8295%209.3652%2010.6389%209.22253%2010.1389%209.16853C7.63283%208.89453%205.30415%209.06986%205.10681%209.2672C5.00748%209.36586%205.00748%209.76053%205.10614%209.85853Z'%20fill='%23202427'/%3e%3cpath%20d='M5.23938%205.59651C5.23938%205.59651%206.14539%20-0.337551%209.19408%200.0151193C11.5354%200.285789%2012.4541%200.565124%2014.4161%200.0797866C15.7141%20-0.24155%2017.1262%200.837127%2017.9775%202.99915C18.5215%204.37783%2018.7935%205.69317%2018.7935%205.69317C18.7935%205.69317%2021.4189%205.4365%2021.5702%206.84785C21.7222%208.2592%2018.6675%209.99188%2010.9774%209.99188C6.66739%209.99121%202.22069%208.41986%202.00935%207.10452C1.79801%205.78917%205.23938%205.59651%205.23938%205.59651Z'%20fill='%238F99A3'/%3e%3cpath%20d='M5.418%204.76648C5.418%204.76648%205.23799%205.50249%205.14733%206.01382C5.05666%206.52583%205.29799%206.87783%206.95068%207.22984C9.14203%207.69651%2014.0701%207.69117%2016.9894%206.9745C18.1621%206.6865%2018.9135%206.4945%2018.8235%205.91916C18.7121%205.20715%2018.6928%205.20848%2018.4628%204.44714C18.4628%204.44714%2017.4781%204.78181%2016.1781%205.08715C14.4047%205.50315%209.53537%205.69449%207.19068%205.18315C5.94133%204.90981%205.418%204.76648%205.418%204.76648ZM5.32733%2014.0686C5.09133%2014.1652%207.27468%2014.9872%2010.314%2015.0406C13.4947%2015.0966%2014.4701%2015.3006%2013.7447%2016.0133C12.9807%2016.7633%2013.1767%2017.9426%2013.2307%2018.2919C13.2847%2018.6413%2014.5954%2019.5693%2014.7027%2019.9986C14.8101%2020.4286%2013.8834%2023.9727%2013.8834%2023.9727L8.06402%2023.8047C6.354%2017.9086%206.142%2018.1373%205.32733%2014.7352C5.16666%2014.0632%205.32733%2014.0686%205.32733%2014.0686Z'%20fill='%23202427'/%3e%3cpath%20d='M4.66047%2014.0959C4.42447%2014.1932%206.60782%2015.0146%209.64719%2015.0679C12.8279%2015.1239%2013.8032%2015.3279%2013.0779%2016.0406C12.3139%2016.7906%2012.6352%2017.9699%2012.6892%2018.3193C12.7432%2018.6686%2013.9286%2019.5966%2014.0366%2020.0266C14.1432%2020.4559%2013.2159%2024%2013.2159%2024L7.3965%2023.832C5.68648%2017.9359%205.47448%2018.1646%204.65981%2014.7626C4.49981%2014.0906%204.66047%2014.0959%204.66047%2014.0959Z'%20fill='%238F99A3'/%3e%3cpath%20d='M18.7027%2014.0686C18.9387%2014.1652%2016.7554%2014.9872%2013.7167%2015.0406C10.536%2015.0966%209.56066%2015.3006%2010.286%2016.0132C11.05%2016.7633%2012.27%2017.9413%2012.2167%2018.2906C12.1627%2018.6399%209.43532%2019.5693%209.32799%2019.9986C9.22065%2020.4286%2010.1473%2023.9727%2010.1473%2023.9727L15.9667%2023.8047C17.6767%2017.9086%2017.8887%2018.1373%2018.7027%2014.7352C18.8634%2014.0632%2018.7027%2014.0686%2018.7027%2014.0686Z'%20fill='%23202427'/%3e%3cpath%20d='M19.3063%2014.0686C19.5423%2014.1652%2017.3589%2014.9872%2014.3202%2015.0406C11.1395%2015.0966%2010.1642%2015.3006%2010.8895%2016.0132C11.6535%2016.7633%2012.8742%2017.9413%2012.8202%2018.2906C12.7662%2018.6399%2010.0388%2019.5693%209.9315%2019.9986C9.82417%2020.4286%2010.7508%2023.9727%2010.7508%2023.9727L16.5222%2023.9793C18.2322%2018.0833%2018.4923%2018.1373%2019.3069%2014.7352C19.4669%2014.0632%2019.3063%2014.0686%2019.3063%2014.0686Z'%20fill='%238F99A3'/%3e%3c/symbol%3e%3csymbol%20id='staff'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='currentColor'%20d='M4,14h9c1.1,0,1.9,0.8,2,1.9V16v1.5C15,21,11.3,22,8.5,22c-2.7,0-6.3-1-6.5-4.3v-0.2V16C2,14.9,2.8,14.1,4,14L4,14z%20M15.2,14H20c1.1,0,1.9,0.8,2,1.9V16v1c0,3.1-2.9,4-5,4c-0.7,0-1.4-0.1-2.1-0.3c0.3-0.4,0.6-0.8,0.8-1.3c0.5,0.1,1.1,0.1,1.3,0.1%20h0.3c1,0,3.1-0.4,3.2-2.3V17v-1c0-0.2-0.2-0.4-0.4-0.5H20h-4.1c-0.1-0.5-0.3-1-0.6-1.3L15.2,14H20H15.2z%20M4,15.5L4,15.5%20c-0.2,0-0.3,0.1-0.4,0.1c0,0-0.1,0.1-0.1,0.3V16v1.5c0,1,0.5,1.7,1.4,2.2c0.8,0.4,2,0.7,3.3,0.8h0.3h0.3c1.3,0,2.4-0.3,3.3-0.8%20s1.4-1.1,1.4-2.1v-0.2V16c0-0.2-0.2-0.4-0.4-0.5H13H4z%20M8.5,3C11,3,13,5,13,7.5S11,12,8.5,12S4,10,4,7.5S6,3,8.5,3z%20M17.5,5%20C19.4,5,21,6.6,21,8.5S19.4,12,17.5,12S14,10.4,14,8.5S15.6,5,17.5,5z%20M8.5,4.5c-1.7,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3%20S10.2,4.5,8.5,4.5z%20M17.5,6.5c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S18.6,6.5,17.5,6.5z'/%3e%3c/symbol%3e%3csymbol%20id='star'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M12%2017.27L18.18%2021l-1.64-7.03L22%209.24l-7.19-.61L12%202%209.19%208.63%202%209.24l5.46%204.73L5.82%2021z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='star_round'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M7.7328%2020.829C7.48434%2020.9587%207.20452%2021.0162%206.92506%2020.9949C6.6456%2020.9737%206.37768%2020.8746%206.15167%2020.7089C5.92566%2020.5431%205.7506%2020.3174%205.64634%2020.0573C5.54208%2019.7971%205.5128%2019.5129%205.5618%2019.237L6.3708%2014.6L2.9648%2011.336C2.76077%2011.1414%202.61571%2010.8933%202.54624%2010.6201C2.47678%2010.3468%202.48573%2010.0595%202.57206%209.79116C2.65839%209.52277%202.8186%209.28415%203.03434%209.10265C3.25008%208.92115%203.5126%208.80413%203.7918%208.765L8.5208%208.089L10.6558%203.83C10.7799%203.57959%2010.9715%203.36884%2011.2089%203.2215C11.4464%203.07415%2011.7203%202.99608%2011.9998%202.99608C12.2793%202.99608%2012.5532%203.07415%2012.7906%203.2215C13.0281%203.36884%2013.2197%203.57959%2013.3438%203.83L15.4788%208.089L20.2078%208.765C20.487%208.80413%2020.7495%208.92115%2020.9653%209.10265C21.181%209.28415%2021.3412%209.52277%2021.4275%209.79116C21.5139%2010.0595%2021.5228%2010.3468%2021.4533%2010.6201C21.3839%2010.8933%2021.2388%2011.1414%2021.0348%2011.336L17.6288%2014.6L18.4378%2019.238C18.4868%2019.5139%2018.4575%2019.7981%2018.3532%2020.0583C18.249%2020.3184%2018.0739%2020.5441%2017.8479%2020.7099C17.6219%2020.8756%2017.354%2020.9747%2017.0745%2020.9959C16.7951%2021.0172%2016.5153%2020.9597%2016.2668%2020.83L11.9998%2018.625L7.7328%2020.829Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='star_round_solid'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M7.50832%2021.3193C7.24679%2021.4561%206.95224%2021.5168%206.65806%2021.4944C6.36389%2021.472%206.08186%2021.3674%205.84395%2021.1925C5.60604%2021.0176%205.42176%2020.7794%205.31201%2020.5048C5.20226%2020.2303%205.17143%2019.9304%205.22301%2019.6392L6.07461%2014.7457L2.48927%2011.3012C2.2745%2011.0959%202.1218%2010.834%202.04868%2010.5457C1.97556%2010.2573%201.98497%209.95415%202.07585%209.67092C2.16673%209.38769%202.33538%209.13587%202.56248%208.94433C2.78957%208.7528%203.06591%208.6293%203.35981%208.588L8.33782%207.87461L10.5852%203.38004C10.7159%203.11579%2010.9175%202.89338%2011.1675%202.73789C11.4175%202.58239%2011.7058%202.5%2012%202.5C12.2942%202.5%2012.5825%202.58239%2012.8325%202.73789C13.0825%202.89338%2013.2841%203.11579%2013.4148%203.38004L15.6622%207.87461L20.6402%208.588C20.9341%208.6293%2021.2104%208.7528%2021.4375%208.94433C21.6646%209.13587%2021.8333%209.38769%2021.9241%209.67092C22.015%209.95415%2022.0244%2010.2573%2021.9513%2010.5457C21.8782%2010.834%2021.7255%2011.0959%2021.5107%2011.3012L17.9254%2014.7457L18.777%2019.6403C18.8286%2019.9315%2018.7977%2020.2314%2018.688%2020.5059C18.5782%2020.7804%2018.394%2021.0187%2018.1561%2021.1936C17.9181%2021.3685%2017.6361%2021.473%2017.3419%2021.4955C17.0478%2021.5179%2016.7532%2021.4572%2016.4917%2021.3203L12%2018.9934L7.50832%2021.3193Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='stars'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4.69%2015.0288L3.495%2013.4648C2.835%2012.5998%202.835%2011.3998%203.495%2010.5358L4.69%208.97275L4.951%207.02075C5.095%205.94075%205.945%205.09175%207.025%204.94875L8.973%204.68975H8.971L10.535%203.49575C11.4%202.83475%2012.599%202.83475%2013.464%203.49575L15.027%204.68975L16.98%204.94975C18.06%205.09375%2018.909%205.94375%2019.052%207.02375L19.31%208.97075L20.503%2010.5358C21.163%2011.4008%2021.164%2012.5998%2020.503%2013.4648L19.308%2015.0278L19.048%2016.9797C18.904%2018.0597%2018.054%2018.9088%2016.974%2019.0518L15.026%2019.3097H15.028L13.464%2020.5047C12.599%2021.1657%2011.4%2021.1657%2010.535%2020.5047L8.972%2019.3108L7.02%2019.0497C5.94%2018.9057%205.091%2018.0557%204.948%2016.9757L4.69%2015.0288Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11.6311%2014.975L10.8011%2015.411C10.5341%2015.551%2010.2101%2015.527%209.96615%2015.351L9.65615%2015.126C9.41215%2014.949%209.28915%2014.649%209.34015%2014.351L9.49915%2013.427C9.54315%2013.17%209.45815%2012.907%209.27115%2012.725L8.60015%2012.071C8.38315%2011.86%208.30615%2011.545%208.39915%2011.258L8.51715%2010.894C8.61015%2010.607%208.85815%2010.398%209.15715%2010.354L10.0851%2010.219C10.3431%2010.182%2010.5661%2010.019%2010.6821%209.78495L11.0971%208.94395C11.2301%208.67295%2011.5061%208.50195%2011.8081%208.50195H12.1911C12.4931%208.50195%2012.7691%208.67295%2012.9031%208.94295L13.3181%209.78395C13.4341%2010.018%2013.6571%2010.181%2013.9151%2010.218L14.8431%2010.353C15.1421%2010.397%2015.3901%2010.606%2015.4831%2010.893L15.6011%2011.257C15.6941%2011.544%2015.6161%2011.859%2015.4001%2012.07L14.7291%2012.724C14.5421%2012.906%2014.4571%2013.169%2014.5011%2013.426L14.6601%2014.35C14.7101%2014.647%2014.5881%2014.948%2014.3441%2015.125L14.0341%2015.35C13.7901%2015.528%2013.4671%2015.552%2013.1991%2015.411L12.3691%2014.975C12.1381%2014.854%2011.8621%2014.854%2011.6311%2014.975Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='stars_fill'%20viewBox='0%200%2032%2032'%3e%3cpath%20d='M6.25333%2020.0383L4.66%2017.953C3.78%2016.7997%203.78%2015.1997%204.66%2014.0477L6.25333%2011.9637L6.60133%209.361C6.79333%207.921%207.92667%206.789%209.36667%206.59833L11.964%206.253H11.9613L14.0467%204.661C15.2%203.77967%2016.7987%203.77967%2017.952%204.661L20.036%206.253L22.64%206.59967C24.08%206.79167%2025.212%207.925%2025.4027%209.365L25.7467%2011.961L27.3373%2014.0477C28.2173%2015.201%2028.2187%2016.7997%2027.3373%2017.953L25.744%2020.037L25.3973%2022.6397C25.2053%2024.0797%2024.072%2025.2117%2022.632%2025.4023L20.0347%2025.7463H20.0373L17.952%2027.3397C16.7987%2028.221%2015.2%2028.221%2014.0467%2027.3397L11.9627%2025.7477L9.36%2025.3997C7.92%2025.2077%206.788%2024.0743%206.59733%2022.6343L6.25333%2020.0383Z'%20fill='currentColor'/%3e%3cpath%20d='M15.5082%2019.9666L14.4015%2020.5479C14.0455%2020.7346%2013.6135%2020.7026%2013.2882%2020.4679L12.8749%2020.1679C12.5495%2019.9319%2012.3855%2019.5319%2012.4535%2019.1346L12.6655%2017.9026C12.7242%2017.5599%2012.6109%2017.2093%2012.3615%2016.9666L11.4669%2016.0946C11.1775%2015.8133%2011.0749%2015.3933%2011.1989%2015.0106L11.3562%2014.5253C11.4802%2014.1426%2011.8109%2013.8639%2012.2095%2013.8053L13.4469%2013.6253C13.7909%2013.5759%2014.0882%2013.3586%2014.2429%2013.0466L14.7962%2011.9253C14.9735%2011.5639%2015.3415%2011.3359%2015.7442%2011.3359H16.2549C16.6575%2011.3359%2017.0255%2011.5639%2017.2042%2011.9239L17.7575%2013.0453C17.9122%2013.3573%2018.2095%2013.5746%2018.5535%2013.6239L19.7909%2013.8039C20.1895%2013.8626%2020.5202%2014.1413%2020.6442%2014.5239L20.8015%2015.0093C20.9255%2015.3919%2020.8215%2015.8119%2020.5335%2016.0933L19.6389%2016.9653C19.3895%2017.2079%2019.2762%2017.5586%2019.3349%2017.9013L19.5469%2019.1333C19.6135%2019.5293%2019.4509%2019.9306%2019.1255%2020.1666L18.7122%2020.4666C18.3869%2020.7039%2017.9562%2020.7359%2017.5989%2020.5479L16.4922%2019.9666C16.1842%2019.8053%2015.8162%2019.8053%2015.5082%2019.9666Z'%20stroke='white'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='stats_icon'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.6,2h-3.2C5.8,2,2,5.7,2,10.4c0,0,0,0,0,0v10.3C2,21.4,2.6,22,3.3,22h10.3c4.6,0,8.4-3.8,8.4-8.4v-3.2%20C22,5.8,18.2,2,13.6,2z%20M17.3,12.2C17.3,12.3,17.3,12.3,17.3,12.2c-0.1,0.1-0.1,0.1-0.2,0l-1.2-1.2l-3.6,3.5c0,0,0,0,0,0%20c-0.1,0.1-0.3,0.1-0.4,0l-2-2c0,0,0,0,0,0c-0.1-0.1-0.2-0.1-0.3,0l-3.3,3.3c-0.1,0.1-0.2,0.1-0.2,0l-0.6-0.6c0,0,0,0,0,0%20c-0.1-0.1-0.1-0.2,0-0.3l4-4c0,0,0,0,0,0c0.1-0.1,0.3-0.1,0.4,0l2.1,2.1c0,0,0,0,0,0c0,0,0.1,0,0.1,0l2.8-2.8l-1.3-1.3c0,0,0,0,0,0%20c0,0,0-0.1,0-0.1L18,8.1c0,0,0,0,0,0c0.1,0,0.1,0.1,0.1,0.2L17.3,12.2z'/%3e%3c/symbol%3e%3csymbol%20id='steam'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cg%3e%3cpath%20d='M15.8,7.5c0,1,0.8,1.9,1.9,1.9s1.9-0.8,1.9-1.9s-0.8-1.9-1.9-1.9S15.8,6.5,15.8,7.5z%20M20.8,4.4c-1.7-1.7-4.5-1.7-6.2,0%20c-0.7,0.7-1.1,1.6-1.2,2.5l0,0l-4,6.1c-0.5,0-1.1,0.2-1.6,0.4L4.6,11c-0.7-0.6-1.8-0.4-2.3,0.3S1.9,13,2.6,13.6l3.1,2.4%20c-0.3,1.3,0,2.8,1,3.8c1.6,1.6,4.1,1.6,5.6,0c1-1,1.3-2.3,1.1-3.5l4.9-4.4l0,0c0.9-0.1,1.8-0.5,2.5-1.2C22.5,8.9,22.5,6.1,20.8,4.4%20z%20M9.5,19.6c-1.5,0-2.6-1.2-2.6-2.6c0,0,0,0,0,0l1.3,1c0.3,0.2,0.7,0.3,1,0.3c0.5,0,1-0.2,1.3-0.6c0.6-0.7,0.4-1.8-0.3-2.3l-1.2-1%20c0.2,0,0.4-0.1,0.5-0.1c1.5,0,2.6,1.2,2.6,2.6C12.1,18.4,10.9,19.6,9.5,19.6z%20M17.7,10.6c-1.7,0-3.1-1.4-3.1-3.1s1.4-3.1,3.1-3.1%20s3.1,1.4,3.1,3.1S19.4,10.6,17.7,10.6z'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='steam_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23132E62'/%3e%3cpath%20d='M11.9026%208.69631C11.9026%208.71708%2011.9026%208.73785%2011.9036%208.75735L8.97306%2013.1453C8.49834%2013.1231%208.02197%2013.2089%207.57027%2013.4007C7.37115%2013.4844%207.18457%2013.5872%207.00951%2013.7058L0%2011C0%2011%200.000560999%2013%200.00059548%2015L5.59531%2017.3169C5.82372%2018.3691%206.52399%2019.292%207.55711%2019.736C9.24743%2020.4639%2011.1964%2019.6343%2011.8995%2017.8912C12.0825%2017.4356%2012.1678%2016.9577%2012.1555%2016.4809L16.3487%2013.3922C16.3826%2013.3933%2016.4175%2013.3943%2016.4515%2013.3943C18.9608%2013.3943%2021.0003%2011.2857%2021.0003%208.69631C21.0003%206.10668%2018.9608%204%2016.4515%204C13.9432%204%2011.9026%206.10668%2011.9026%208.69631ZM11.1995%2017.5882C10.6553%2018.9349%209.15378%2019.5739%207.84865%2019.0133C7.24656%2018.7548%206.79198%2018.2812%206.52975%2017.7164L8.01056%2018.349C8.97306%2018.7622%2010.0773%2018.2917%2010.4774%2017.3C10.8787%2016.3071%2010.4234%2015.167%209.46146%2014.7538L7.93068%2014.1C8.52136%2013.869%209.19285%2013.8605%209.82023%2014.1297C10.4527%2014.4009%2010.9435%2014.9117%2011.2036%2015.5644C11.4637%2016.2171%2011.4626%2016.9376%2011.1995%2017.5882ZM16.4515%2011.8261C14.781%2011.8261%2013.421%2010.4222%2013.421%208.69631C13.421%206.97183%2014.781%205.56745%2016.4515%205.56745C18.123%205.56745%2019.483%206.97183%2019.483%208.69631C19.483%2010.4222%2018.123%2011.8261%2016.4515%2011.8261ZM14.1806%208.69155C14.1806%207.39323%2015.2004%206.34021%2016.4566%206.34021C17.7138%206.34021%2018.7336%207.39323%2018.7336%208.69155C18.7336%209.98997%2017.7138%2011.042%2016.4566%2011.042C15.2004%2011.042%2014.1806%209.98997%2014.1806%208.69155Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='studio_icon'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.6,2h-3.2C5.8,2,2,5.8,2,10.4v10.3C2,21.4,2.6,22,3.3,22h10.3c4.6,0,8.4-3.8,8.4-8.4v-3.2C22,5.8,18.2,2,13.6,2z%20M14.6,14.9c0,0.4-0.3,0.8-0.8,0.8H7.5c-0.4,0-0.8-0.3-0.8-0.8v-5c0-0.4,0.3-0.8,0.8-0.8h6.3c0.4,0,0.8,0.3,0.8,0.8V14.9z%20M17.7,14.5c0,0,0,0.1,0,0.1c-0.1,0.1-0.2,0.1-0.3,0.1l-2.2-1.2c-0.1,0-0.1-0.1-0.1-0.2v-1.8c0-0.1,0-0.2,0.1-0.2l2.2-1.2%20c0,0,0.1,0,0.1,0c0.1,0,0.2,0.1,0.2,0.2V14.5z'/%3e%3c/symbol%3e%3csymbol%20id='subscriptions'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M20%208H4V6h16v2zm-2-6H6v2h12V2zm4%2010v8c0%201.1-.9%202-2%202H4c-1.1%200-2-.9-2-2v-8c0-1.1.9-2%202-2h16c1.1%200%202%20.9%202%202zm-6%204l-6-3.27v6.53L16%2016z'/%3e%3cpath%20fill='none'%20d='M0%200h24v24H0z'/%3e%3c/symbol%3e%3csymbol%20id='suitcase'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M5%2021H19C20.1046%2021%2021%2020.1046%2021%2019V10C21%208.89543%2020.1046%208%2019%208H5C3.89543%208%203%208.89543%203%2010V19C3%2020.1046%203.89543%2021%205%2021Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16%2021V6C16%204.89543%2015.1046%204%2014%204H10C8.89543%204%208%204.89543%208%206V21'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='supervised_user_circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M11.99%202c-5.52%200-10%204.48-10%2010s4.48%2010%2010%2010%2010-4.48%2010-10-4.48-10-10-10zm3.61%206.34c1.07%200%201.93.86%201.93%201.93%200%201.07-.86%201.93-1.93%201.93-1.07%200-1.93-.86-1.93-1.93-.01-1.07.86-1.93%201.93-1.93zm-6-1.58c1.3%200%202.36%201.06%202.36%202.36%200%201.3-1.06%202.36-2.36%202.36s-2.36-1.06-2.36-2.36c0-1.31%201.05-2.36%202.36-2.36zm0%209.13v3.75c-2.4-.75-4.3-2.6-5.14-4.96%201.05-1.12%203.67-1.69%205.14-1.69.53%200%201.2.08%201.9.22-1.64.87-1.9%202.02-1.9%202.68zM11.99%2020c-.27%200-.53-.01-.79-.04v-4.07c0-1.42%202.94-2.13%204.4-2.13%201.07%200%202.92.39%203.84%201.15-1.17%202.97-4.06%205.09-7.45%205.09z'/%3e%3cpath%20fill='none'%20d='M0%200h24v24H0z'/%3e%3c/symbol%3e%3csymbol%20id='support'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19%2017H18C17.448%2017%2017%2016.552%2017%2016V11C17%2010.448%2017.448%2010%2018%2010H19C20.105%2010%2021%2010.895%2021%2012V15C21%2016.105%2020.105%2017%2019%2017Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M6%2017H5C3.895%2017%203%2016.105%203%2015V12C3%2010.895%203.895%2010%205%2010H6C6.552%2010%207%2010.448%207%2011V16C7%2016.552%206.552%2017%206%2017Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M18.5%2010V9.5C18.5%205.91%2015.59%203%2012%203C8.41%203%205.5%205.91%205.5%209.5V10'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.625%2021.25H11.375C10.685%2021.25%2010.125%2020.69%2010.125%2020C10.125%2019.31%2010.685%2018.75%2011.375%2018.75H12.625C13.315%2018.75%2013.875%2019.31%2013.875%2020C13.875%2020.69%2013.315%2021.25%2012.625%2021.25Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13.875%2020H16C17.105%2020%2018%2019.105%2018%2018V17'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='swap_cubes'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9.33325%2015.5556L11.111%2017.3333L9.33325%2019.1111'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M4.88892%2012.8889V15.5556C4.88892%2016.5378%205.68447%2017.3333%206.66669%2017.3333H11.1111M14.6667%208.44444L12.8889%206.66667L14.6667%204.88889'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19.1111%2011.1111V8.44444C19.1111%207.46222%2018.3156%206.66667%2017.3333%206.66667H12.8889M8.44444%2010.2222H5.77778C4.79556%2010.2222%204%209.42667%204%208.44444V5.77778C4%204.79556%204.79556%204%205.77778%204H8.44444C9.42667%204%2010.2222%204.79556%2010.2222%205.77778V8.44444C10.2222%209.42667%209.42667%2010.2222%208.44444%2010.2222ZM18.2222%2020H15.5556C14.5733%2020%2013.7778%2019.2044%2013.7778%2018.2222V15.5556C13.7778%2014.5733%2014.5733%2013.7778%2015.5556%2013.7778H18.2222C19.2044%2013.7778%2020%2014.5733%2020%2015.5556V18.2222C20%2019.2044%2019.2044%2020%2018.2222%2020Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='swap_cubes_colored'%20viewBox='0%200%2040%2040'%3e%3crect%20width='40'%20height='40'%20rx='20'%20fill='%23E986FF'/%3e%3cpath%20d='M17.5%2025.8335L19.1667%2028.3335L17.5%2030.8335'%20stroke='white'%20stroke-width='1.5'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10%2021.7857V25.7143C10%2027.1613%2011.0848%2028.3333%2012.4242%2028.3333H18.4848M23.3333%2015.2381L20.9091%2012.619L23.3333%2010'%20stroke='white'%20stroke-width='1.5'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M30.37%2018.7039V14.815C30.37%2013.3826%2029.2099%2012.2224%2027.7775%2012.2224H21.296M14.8145%2017.4076H10.9256C9.49319%2017.4076%208.33301%2016.2474%208.33301%2014.815V10.9261C8.33301%209.49368%209.49319%208.3335%2010.9256%208.3335H14.8145C16.2469%208.3335%2017.4071%209.49368%2017.4071%2010.9261V14.815C17.4071%2016.2474%2016.2469%2017.4076%2014.8145%2017.4076ZM29.0737%2031.6668H25.1849C23.7525%2031.6668%2022.5923%2030.5066%2022.5923%2029.0742V25.1853C22.5923%2023.7529%2023.7525%2022.5928%2025.1849%2022.5928H29.0737C30.5062%2022.5928%2031.6663%2023.7529%2031.6663%2025.1853V29.0742C31.6663%2030.5066%2030.5062%2031.6668%2029.0737%2031.6668Z'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='swap_horizontal_circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M8%209H16M16%209L14%207M16%209L14%2011M10%2013L8%2015M8%2015L10%2017M8%2015H16M18.3639%205.63604C21.8787%209.15076%2021.8787%2014.8492%2018.3639%2018.3639C14.8492%2021.8787%209.15074%2021.8787%205.63604%2018.3639C2.12132%2014.8492%202.12132%209.15074%205.63604%205.63604C9.15076%202.12132%2014.8492%202.12132%2018.3639%205.63604Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='switches'%20viewBox='0%200%2020%2020'%3e%3cpath%20d='M11.6668%2014.5833H12.2668L12.2668%2014.579L11.6668%2014.5833ZM5.41674%203.1H14.5834V1.9H5.41674V3.1ZM14.5834%207.73333H5.41674V8.93333H14.5834V7.73333ZM5.41674%207.73333C4.13728%207.73333%203.10008%206.69613%203.10008%205.41667H1.90008C1.90008%207.35887%203.47454%208.93333%205.41674%208.93333V7.73333ZM16.9001%205.41667C16.9001%206.69613%2015.8629%207.73333%2014.5834%207.73333V8.93333C16.5256%208.93333%2018.1001%207.35887%2018.1001%205.41667H16.9001ZM14.5834%203.1C15.8629%203.1%2016.9001%204.13721%2016.9001%205.41667H18.1001C18.1001%203.47447%2016.5256%201.9%2014.5834%201.9V3.1ZM5.41674%201.9C3.47454%201.9%201.90008%203.47447%201.90008%205.41667H3.10008C3.10008%204.13721%204.13728%203.1%205.41674%203.1V1.9ZM5.41674%2012.2667H14.5834V11.0667H5.41674V12.2667ZM14.5834%2016.9H5.41674V18.1H14.5834V16.9ZM5.41674%2016.9C4.13728%2016.9%203.10008%2015.8628%203.10008%2014.5833H1.90008C1.90008%2016.5255%203.47454%2018.1%205.41674%2018.1V16.9ZM16.9001%2014.5833C16.9001%2015.8628%2015.8629%2016.9%2014.5834%2016.9V18.1C16.5256%2018.1%2018.1001%2016.5255%2018.1001%2014.5833H16.9001ZM14.5834%2012.2667C15.8629%2012.2667%2016.9001%2013.3039%2016.9001%2014.5833H18.1001C18.1001%2012.6411%2016.5256%2011.0667%2014.5834%2011.0667V12.2667ZM5.41674%2011.0667C3.47454%2011.0667%201.90008%2012.6411%201.90008%2014.5833H3.10008C3.10008%2013.3039%204.13728%2012.2667%205.41674%2012.2667V11.0667ZM14.5834%2011.0667C12.646%2011.0667%2011.0527%2012.639%2011.0668%2014.5877L12.2668%2014.579C12.2576%2013.3077%2013.3008%2012.2667%2014.5834%2012.2667V11.0667ZM11.0668%2014.5833C11.0668%2016.5247%2012.642%2018.1%2014.5834%2018.1V16.9C13.3048%2016.9%2012.2668%2015.862%2012.2668%2014.5833H11.0668ZM14.5834%2018.1C16.5248%2018.1%2018.1001%2016.5247%2018.1001%2014.5833H16.9001C16.9001%2015.862%2015.862%2016.9%2014.5834%2016.9V18.1ZM18.1001%2014.5833C18.1001%2012.6435%2016.538%2011.0667%2014.5834%2011.0667V12.2667C15.8721%2012.2667%2016.9001%2013.3031%2016.9001%2014.5833H18.1001ZM5.41674%201.9C3.47939%201.9%201.88597%203.47228%201.90009%205.42101L3.10006%205.41232C3.09085%204.14105%204.13414%203.1%205.41674%203.1V1.9ZM1.90008%205.41667C1.90008%207.35804%203.4754%208.93333%205.41674%208.93333V7.73333C4.13813%207.73333%203.10008%206.69529%203.10008%205.41667H1.90008ZM5.41674%208.93333C7.35809%208.93333%208.93341%207.35804%208.93341%205.41667H7.73341C7.73341%206.69529%206.69535%207.73333%205.41674%207.73333V8.93333ZM8.93341%205.41667C8.93341%203.47686%207.37132%201.9%205.41674%201.9V3.1C6.70546%203.1%207.73341%204.13647%207.73341%205.41667H8.93341Z'/%3e%3c/symbol%3e%3csymbol%20id='table'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M20%204H4c-1.1%200-1.99.9-1.99%202L2%2018c0%201.1.9%202%202%202h16c1.1%200%202-.9%202-2V6c0-1.1-.9-2-2-2zm-5%2014H4v-4h11v4zm0-5H4V9h11v4zm5%205h-4V9h4v9z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='telegram'%20viewBox='0%200%20300%20300'%3e%3cg%20id='XMLID_496_'%3e%3cpath%20id='XMLID_497_'%20d='M5.299,144.645l69.126,25.8l26.756,86.047c1.712,5.511,8.451,7.548,12.924,3.891l38.532-31.412%20c4.039-3.291,9.792-3.455,14.013-0.391l69.498,50.457c4.785,3.478,11.564,0.856,12.764-4.926L299.823,29.22%20c1.31-6.316-4.896-11.585-10.91-9.259L5.218,129.402C-1.783,132.102-1.722,142.014,5.299,144.645z%20M96.869,156.711l135.098-83.207%20c2.428-1.491,4.926,1.792,2.841,3.726L123.313,180.87c-3.919,3.648-6.447,8.53-7.163,13.829l-3.798,28.146%20c-0.503,3.758-5.782,4.131-6.819,0.494l-14.607-51.325C89.253,166.16,91.691,159.907,96.869,156.711z'/%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='telegram_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23229ED9'/%3e%3cpath%20d='M7.41211%2012.2672L8.94935%2016.3196C8.94935%2016.3196%209.1415%2016.6981%209.34683%2016.6981C9.55217%2016.6981%2012.6135%2013.6654%2012.6135%2013.6654L16.0174%207.40333L7.46591%2011.2204L7.41211%2012.2672Z'%20fill='%23C8DAEA'/%3e%3cpath%20d='M9.45186%2013.3057L9.15649%2016.2924C9.15649%2016.2924%209.03351%2017.2074%209.99318%2016.2924C10.9529%2015.3773%2011.873%2014.6714%2011.873%2014.6714'%20fill='%23A9C6D8'/%3e%3cpath%20d='M7.44128%2012.4115L4.28006%2011.4306C4.28006%2011.4306%203.90234%2011.2842%204.02422%2010.9537C4.04948%2010.8857%204.09999%2010.8272%204.25042%2010.7268C4.95096%2010.2614%2017.2181%206.06265%2017.2181%206.06265C17.2181%206.06265%2017.5651%205.9518%2017.7693%206.025C17.8627%206.05847%2017.9231%206.09716%2017.9725%206.23625C17.9911%206.28644%2018.001%206.3952%2017.9999%206.50187C17.9988%206.57926%2017.9889%206.65037%2017.9813%206.76331C17.9066%207.91157%2015.671%2016.4806%2015.671%2016.4806C15.671%2016.4806%2015.537%2016.9815%2015.0583%2016.9993C14.8837%2017.0056%2014.6718%2016.9721%2014.4182%2016.764C13.4771%2015.9933%2010.227%2013.9122%209.50887%2013.4552C9.46824%2013.4291%209.45726%2013.3956%209.44958%2013.3632C9.43969%2013.3151%209.4946%2013.2555%209.4946%2013.2555C9.4946%2013.2555%2015.1549%208.46374%2015.3054%207.96072C15.3174%207.92203%2015.2735%207.90216%2015.2142%207.91889C14.8387%208.05066%208.3208%2011.9702%207.6016%2012.4032C7.55877%2012.4272%207.44128%2012.4115%207.44128%2012.4115Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='tether'%20viewBox='0%200%2024%2024'%3e%3cg%3e%3cpath%20d='M13.8,9L13.8,9l0-2.4h5.6V2.9H4.1v3.7h5.6V9c-4.5,0.2-8,1.1-8,2.2s3.4,2,8,2.2v7.8h4v-7.8c4.5-0.2,7.9-1.1,7.9-2.2%20S18.3,9.3,13.8,9z%20M13.8,12.7c-0.1,0-0.7,0-2,0c-1,0-1.8,0-2,0v0c-4-0.2-7-0.9-7-1.7c0-0.8,3-1.5,7-1.7v2.7c0.3,0,1,0.1,2.1,0.1%20c1.2,0,1.9-0.1,2-0.1V9.3c4,0.2,7,0.9,7,1.7C20.8,11.9,17.8,12.6,13.8,12.7z'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='tether_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%2350AF95'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M13.012%2012.8656C12.9554%2012.8698%2012.6631%2012.8874%2012.0112%2012.8874C11.4927%2012.8874%2011.1245%2012.8717%2010.9953%2012.8656C8.99144%2012.7769%207.49571%2012.426%207.49571%2012.006C7.49571%2011.5859%208.99144%2011.2355%2010.9953%2011.1454V12.5161C11.1264%2012.5256%2011.5016%2012.5479%2012.0201%2012.5479C12.6424%2012.5479%2012.954%2012.5218%2013.0101%2012.5166V11.1463C15.0097%2011.2359%2016.5021%2011.5868%2016.5021%2012.006C16.5021%2012.4251%2015.0102%2012.776%2013.0101%2012.8651L13.012%2012.8656ZM13.012%2011.0046V9.77796H15.8026V7.90747H8.20468V9.77796H10.9949V11.0041C8.72698%2011.1089%207.02148%2011.5607%207.02148%2012.1022C7.02148%2012.6437%208.72698%2013.0951%2010.9949%2013.2003V17.131H13.0115V13.1989C15.2742%2013.0941%2016.9768%2012.6427%2016.9768%2012.1017C16.9768%2011.5607%2015.2756%2011.1094%2013.0115%2011.0041L13.012%2011.0046Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='three_dots'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4%2012C4%2013.1046%204.89543%2014%206%2014C7.10457%2014%208%2013.1046%208%2012C8%2010.8954%207.10457%2010%206%2010C4.89543%2010%204%2010.8954%204%2012ZM10%2012C10%2013.1046%2010.8954%2014%2012%2014C13.1046%2014%2014%2013.1046%2014%2012C14%2010.8954%2013.1046%2010%2012%2010C10.8954%2010%2010%2010.8954%2010%2012ZM16%2012C16%2013.1046%2016.8954%2014%2018%2014C19.1046%2014%2020%2013.1046%2020%2012C20%2010.8954%2019.1046%2010%2018%2010C16.8954%2010%2016%2010.8954%2016%2012Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='thumb_down'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0%200h24v24H0z'/%3e%3cpath%20d='M15%203H6c-.83%200-1.54.5-1.84%201.22l-3.02%207.05c-.09.23-.14.47-.14.73v2c0%201.1.9%202%202%202h6.31l-.95%204.57-.03.32c0%20.41.17.79.44%201.06L9.83%2023l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm4%200v12h4V3h-4z'/%3e%3c/symbol%3e%3csymbol%20id='thumb_up'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0%200h24v24H0V0z'/%3e%3cpath%20d='M1%2021h4V9H1v12zm22-11c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17%201%207.59%207.59C7.22%207.95%207%208.45%207%209v10c0%201.1.9%202%202%202h9c.83%200%201.54-.5%201.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2z'/%3e%3c/symbol%3e%3csymbol%20id='tiktok'%20viewBox='0%200%2024%2024'%3e%3crect%20width='24'%20height='24'%20rx='12'%20fill='black'/%3e%3cpath%20d='M10.6785%2010.0457V9.43879C10.4599%209.409%2010.2397%209.39359%2010.0192%209.39264C7.32239%209.39264%205.12793%2011.5081%205.12793%2014.1083C5.12793%2015.7031%205.95496%2017.1153%207.21613%2017.9689C6.37165%2017.0982%205.90184%2015.9506%205.90263%2014.7585C5.90263%2012.1954%208.03445%2010.1053%2010.6785%2010.0457Z'%20fill='%2300F2EA'/%3e%3cpath%20d='M10.8087%2016.7437C11.9489%2016.7437%2012.8787%2015.8154%2012.9211%2014.658L12.925%204.32898H14.7686C14.7292%204.1134%2014.7091%203.89452%2014.7088%203.67514L12.1912%203.67514L12.1868%2014.0046C12.1448%2015.1612%2011.2143%2016.0894%2010.0744%2016.0894C9.73246%2016.0895%209.3956%2016.004%209.09277%2015.8403C9.28901%2016.12%209.54687%2016.3477%209.84517%2016.5048C10.1435%2016.6618%2010.4737%2016.7437%2010.8087%2016.7437ZM18.2116%207.83502V7.26082C17.5348%207.2616%2016.8723%207.06%2016.3045%206.6805C16.8029%207.26714%2017.4715%207.67212%2018.2116%207.83502Z'%20fill='%2300F2EA'/%3e%3cpath%20d='M16.2292%206.82713C15.6756%206.1829%2015.3698%205.35232%2015.3696%204.49194H14.6968C14.7849%204.96798%2014.9661%205.42055%2015.2296%205.82204C15.4931%206.22353%2015.8332%206.56551%2016.2292%206.82713ZM10.0145%2011.8695C8.8489%2011.8712%207.90451%2012.8338%207.90332%2014.0218C7.90454%2014.4156%208.0107%2014.8015%208.21023%2015.1375C8.40975%2015.4734%208.69499%2015.7465%209.03484%2015.9269C8.77552%2015.563%208.63553%2015.1234%208.6352%2014.6719C8.63639%2013.4835%209.58078%2012.5205%2010.7464%2012.5193C10.9645%2012.5193%2011.1726%2012.5561%2011.3697%2012.6189V10.0052C11.1632%209.97533%2010.9549%209.95978%2010.7464%209.95868C10.7099%209.95868%2010.6738%209.96113%2010.6378%209.96154V11.9692C10.4361%2011.9038%2010.226%2011.8702%2010.0145%2011.8695Z'%20fill='%23FF004F'/%3e%3cpath%20d='M17.8757%208.16748V10.1621C16.6233%2010.164%2015.4016%209.76261%2014.3816%209.01408V14.228C14.3816%2016.8323%2012.3081%2018.9511%209.75956%2018.9511C8.77433%2018.9511%207.86087%2018.6333%207.11035%2018.0947C7.54362%2018.5711%208.0673%2018.9508%208.64891%2019.2102C9.23052%2019.4696%209.85766%2019.6031%2010.4914%2019.6025C13.0403%2019.6025%2015.1139%2017.4837%2015.1139%2014.8798V9.66546C16.1339%2010.4138%2017.3556%2010.8151%2018.608%2010.813V8.24712C18.3618%208.24704%2018.1164%208.22035%2017.8757%208.16748Z'%20fill='%23FF004F'/%3e%3cpath%20d='M14.6349%2014.0565V8.83397C15.6846%209.5856%2016.933%209.98704%2018.2114%209.984V7.98696C17.4597%207.8267%2016.7774%207.42319%2016.264%206.8353C15.4425%206.30153%2014.8756%205.45493%2014.6956%204.49194H12.8135L12.8095%2014.7895C12.7659%2015.9428%2011.8164%2016.8683%2010.6528%2016.8683C9.95735%2016.8674%209.30556%2016.5326%208.90036%2015.9682C8.1891%2015.5953%207.74307%2014.859%207.74267%2014.0561C7.74386%2012.8636%208.71006%2011.8977%209.90343%2011.8961C10.1255%2011.8961%2010.3388%2011.9328%2010.541%2011.9961V9.98155C7.98333%2010.0416%205.9209%2012.1379%205.9209%2014.7083C5.9209%2015.9518%206.40419%2017.0835%207.19158%2017.9285C7.99114%2018.4889%208.93632%2018.7877%209.90343%2018.7857C12.5122%2018.7857%2014.6349%2016.6641%2014.6349%2014.0565Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='time'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16.6409%2016L11.7189%2013.064V6.736M18.3639%205.63604C21.8787%209.15076%2021.8787%2014.8492%2018.3639%2018.3639C14.8492%2021.8787%209.15074%2021.8787%205.63604%2018.3639C2.12132%2014.8492%202.12132%209.15074%205.63604%205.63604C9.15076%202.12132%2014.8492%202.12132%2018.3639%205.63604Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='time_thin'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16.6409%2016L11.7189%2013.064V6.736M18.3639%205.63604C21.8787%209.15076%2021.8787%2014.8492%2018.3639%2018.3639C14.8492%2021.8787%209.15074%2021.8787%205.63604%2018.3639C2.12132%2014.8492%202.12132%209.15074%205.63604%205.63604C9.15076%202.12132%2014.8492%202.12132%2018.3639%205.63604Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='timelapse'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M16.24%207.76C15.07%206.59%2013.54%206%2012%206v6l-4.24%204.24c2.34%202.34%206.14%202.34%208.49%200%202.34-2.34%202.34-6.14-.01-8.48zM12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm0%2018c-4.42%200-8-3.58-8-8s3.58-8%208-8%208%203.58%208%208-3.58%208-8%208z'/%3e%3c/symbol%3e%3csymbol%20id='timeline'%20viewBox='0%200%2024%2024'%3e%3cclipPath%20id='b'%3e%3cuse%20xlink:href='%23timeline_a'%20overflow='visible'/%3e%3c/clipPath%3e%3cpath%20d='M23%208c0%201.1-.9%202-2%202-.18%200-.35-.02-.51-.07l-3.56%203.55c.05.16.07.34.07.52%200%201.1-.9%202-2%202s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55%204.56c.05.16.07.33.07.51%200%201.1-.9%202-2%202s-2-.9-2-2%20.9-2%202-2c.18%200%20.35.02.51.07l4.56-4.55C8.02%209.36%208%209.18%208%209c0-1.1.9-2%202-2s2%20.9%202%202c0%20.18-.02.36-.07.52l2.55%202.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56C19.02%208.35%2019%208.18%2019%208c0-1.1.9-2%202-2s2%20.9%202%202z'/%3e%3c/symbol%3e%3csymbol%20id='tipalti'%20viewBox='0%200%20652%20652'%3e%3cg%3e%3cg%3e%3cpath%20d='M273.6,344.7c-0.1-1.7,0-3.4-0.3-5.1c-1.6-12.1-8.8-19.7-19.8-20.9c-7.1-0.8-13.9,0.4-20.3,3.5%20c-21.4,10.5-25.2,39.1-17.1,55.8c3.1,6.5,18.6,14.9,34.2,8.8C268.6,379.8,273.6,363.3,273.6,344.7%20M205.1,393.7%20c-4,24.6-7.8,48.4-11.7,72.3h-23.2c1.8-11.2,3.5-22,5.3-32.9c5.7-35.6,11.5-71.2,17.2-106.8c0-0.2,0.1-0.3,0.1-0.5%20c1-8.7-0.7-10.9-9.6-12.3c0.8-5,1.5-10,2.5-14.9c0.1-0.7,1.4-1.6,2.3-1.6c4.6-0.4,9.3-1.1,13.9-0.6c9.9,1.2,14.6,7.4,13.8,17.4%20c-0.1,0.9-0.1,1.7-0.3,3.8c7.1-11,16.4-17,27.9-20.1c17.9-4.9,36.2,0.2,46.4,12.9c5.8,7.2,8.7,15.6,9.5,24.4%20c2.2,24.6-3.9,46.2-22.1,62.7c-14.2,12.9-31.5,16.6-50.9,11.7C217.4,407.1,210.9,401.6,205.1,393.7'/%3e%3cpath%20d='M402.7,320.9c-3.7-1.3-6.3-2.3-9-3c-20.6-5.2-39.6,0.8-49.2,16c-6.9,10.8-9.3,22.9-7.6,35.8%20c1.7,12.7,9.6,19.5,22.2,19c17.2-0.7,28.8-10.2,34.1-25.5C397.8,349.8,399.6,335.3,402.7,320.9%20M426.4,392.7%20c-0.7,4.7-1.3,9.3-2.3,13.8c-0.3,1.3-1.8,3.1-3,3.2c-4.8,0.4-9.7,0.7-14.4,0c-7-1.1-11-5.8-11.9-12.9c-0.4-2.6-0.3-5.3-0.4-7%20c-5.2,4.5-10.4,10.1-16.6,14.2c-10.9,7.1-23.4,8.9-36.5,5.9c-15.6-3.5-26.5-15.7-29.4-33.6c-4.7-29.1,8.2-62.5,39.1-74.6%20c24.7-9.7,49.6-7.1,74.6,3.1c3,1.2,2.6,3.2,2.2,5.3c-3.6,22-7.3,44.1-10.9,66.1c-0.4,2.4-0.8,4.9-0.9,7.3%20c-0.5,6.4,1.5,8.5,7.9,8.9C424.8,392.5,425.5,392.6,426.4,392.7'/%3e%3cpath%20d='M62.2,271.4H15.3c1.3-8.1,2.5-15.7,3.8-23.5h120.1c-1.1,6.6-2.4,13.1-3.1,19.6c-0.4,3.1-1.6,4-4.7,4%20c-12.6-0.2-25.2-0.1-37.9-0.1h-5c-7.5,46-15,91.7-22.5,137.6H39.7C47.2,363.3,54.6,317.7,62.2,271.4'/%3e%3cpath%20d='M527,316c-7.4-0.6-14.4-1.1-22.2-1.7c0.9-5.5,1.7-10.7,2.6-16.3h22.6c2.3-9.9,4-14.7,6-24.3%20c0.8-3.9,2.2-5.7,6.6-5.4c5.4,0.4,10.9,0.1,16.9,0.1c-1.8,11.6-2.9,17.9-4.8,29.4h38.4c-0.8,5.6-1.4,10.8-2.5,15.8%20c-0.2,1-2.6,2.1-4.1,2.1c-10.3,0.2-20.6,0.2-30.9,0c-3,0-4.3,0.7-4.7,3.9c-2.5,17.1-5.7,34-7.8,51.2c-1.7,13.9,5.5,20.8,19.4,19.8%20c6-0.4,11.8-2,18.1-3.1c-0.1,5.4-0.1,11-0.3,16.5c0,0.8-1,1.9-1.8,2.1c-11.8,3.2-23.7,5.7-36.2,3.3c-16.4-3.1-25.8-14.9-24.1-32.1%20c1.7-17.5,4.9-34.8,7.5-52.2C526.1,322.3,526.6,319.3,527,316'/%3e%3cpath%20d='M494,388.5c-0.8,6.3-1.4,12-2.3,17.6c-0.2,1-1.6,2.3-2.5,2.3c-8,0.3-16.2,1.3-24.1,0.2%20c-10.8-1.4-16.8-8.5-17.7-19.8c-0.5-6.9-0.2-14,0.9-20.8c6.7-42.3,12.4-75.7,19.4-117.9c0-0.3,0.3-0.5,0.5-1h24.6%20c-1.6,9.7-3.1,19.2-4.7,28.7c-5.5,33.4-9.6,58-15.1,91.5c-0.3,2-0.4,4-0.4,6c0.2,11.2,5.1,15.4,16.1,13.9%20C490.1,389,491.7,388.8,494,388.5'/%3e%3cpath%20d='M124,409.2c1.6-9.8,3.1-19,4.6-28.3c4.3-26.4,8.6-52.8,12.8-79.3c0.5-2.8,1.4-3.9,4.3-3.8%20c7,0.2,13.9,0.1,21.5,0.1c-1.9,11.5-3.6,22.4-5.4,33.3c-4,24.8-8.1,49.5-12,74.3c-0.5,2.9-1.4,3.9-4.3,3.8%20C138.4,409.1,131.5,409.2,124,409.2'/%3e%3c/g%3e%3cg%3e%3cpath%20d='M637.6,297.9c-2.4,14.6-4.6,28.4-6.8,42.2c-3.5,21.9-7.2,43.7-10.6,65.6c-0.4,2.7-1.4,3.6-4.1,3.5%20c-7-0.2-14-0.1-21.6-0.1c1.3-8.5,2.6-16.5,3.9-24.5c4.5-27.6,9.1-55.3,13.4-82.9c0.5-3.1,1.6-4.1,4.7-4%20C623.3,298.1,630.1,297.9,637.6,297.9'/%3e%3cpath%20fill='%23F04E37'%20d='M632,234.1c-0.1-0.1-1.4-1.4-4.2-3.5c-1.5-1.2-3-2.3-5.5-3.9c-1.9-1.2-4.2-2.5-6.6-3.8l-2.5-1.4%20c-2.3-1.2-4.6-2.3-7.1-3.5c-1.2-0.6-2.5-1.2-3.8-1.8c-2.7-1.2-5.5-2.3-8.5-3.5c-1.5-0.6-2.9-1.2-4.5-1.8%20c-10.6-3.8-21.1-7.1-31.3-9.6c-23-6.1-50.2-10.2-78.8-11.9c-10.4-0.5-20.7-0.8-30.4-0.8c-4.6,0-9.3,0.1-14,0.2l-11.3,0.5%20l-16.3,1.2c-5.7,0.5-11.5,1-17.5,1.7c-7.6,0.8-15.1,1.7-22.5,2.9c-6.7,0.9-13.8,2.1-22.2,3.7c-13.8,2.4-27,5.5-42.6,9.4%20c-11.1,3-25.5,7.1-38.9,11.8c-11.3,3.9-22.8,8.2-34,12.8c-21.2,8.8-38,17.4-49,23c-4.7,2.4-8.6,4.5-11.5,6l-6.6,3.5%20c-2,1.1-2.8,3.5-1.8,5.6c1,2,3.5,3,5.7,1.9l6.6-3.2c3-1.4,6.9-3.4,11.7-5.6c5.9-2.8,13.4-6,21.2-9.3c10-4.1,19.2-7.6,28.1-10.7%20c10.1-3.5,21.6-7.4,33.9-10.4c13.3-3.6,27.6-6.5,38.5-8.6c15.5-2.7,29.2-4.6,41.8-5.8c8.2-0.9,15.1-1.4,21.6-1.8%20c7.6-0.6,15.2-0.9,21.7-1.1c5.6-0.3,11.5-0.3,17.2-0.4L419,216l15.9,0.2c14.5,0.5,28.4,1.6,41.3,3.4c10.8,1.7,24.9,4,37.7,7.4%20c10.3,2.8,22.2,6.2,32.3,10.4c9.9,3.8,18.3,8.2,25.2,11.9c7.8,4.5,13.9,8.5,17.5,11.1l10.5,7.8c2.9,2.1,4.6,3,4.7,3.1%20c3.4,1.9,7.3,2.8,11.3,2.8c6.3,0,12.3-2.5,16.7-6.9c4.4-4.4,6.9-10.3,6.9-16.6C638.9,244.4,636.5,238.5,632,234.1'/%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='transaction'%20viewBox='0%200%2024%2024'%3e%3cg%20class='b'%20transform='translate(-708%20-1508)'%3e%3cg%20transform='translate(708%201508)'%3e%3cpath%20class='c'%20d='M0,0H24V24H0Z'/%3e%3cpath%20class='d'%20d='M12,2.02A9.98,9.98,0,1,0,21.98,12,9.982,9.982,0,0,0,12,2.02ZM11.48,20V13.74H8L13,4v6.26h3.35Z'/%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='twitter_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%231DA1F2'/%3e%3cpath%20d='M9.52601%2018C15.5636%2018%2018.8673%2013.3819%2018.8673%209.38386C18.8673%209.25394%2018.8673%209.12402%2018.8609%208.99409C19.5012%208.5689%2020.0582%208.0315%2020.5%207.42323C19.911%207.66535%2019.2771%207.8248%2018.6112%207.90157C19.2899%207.52953%2019.8085%206.93307%2020.0582%206.22441C19.4244%206.57283%2018.7201%206.82087%2017.971%206.95669C17.3691%206.36614%2016.5176%206%2015.5764%206C13.7645%206%2012.2919%207.35827%2012.2919%209.02953C12.2919%209.26575%2012.3239%209.49606%2012.3752%209.72047C9.64766%209.59646%207.22749%208.38583%205.60764%206.55512C5.32593%207.00394%205.16587%207.52362%205.16587%208.07874C5.16587%209.12992%205.7485%2010.0571%206.62565%2010.6004C6.08784%2010.5827%205.58203%2010.4468%205.14026%2010.2224C5.14026%2010.2343%205.14026%2010.2461%205.14026%2010.2638C5.14026%2011.7283%206.27351%2012.9567%207.77171%2013.2343C7.4964%2013.3051%207.20828%2013.3406%206.90736%2013.3406C6.69608%2013.3406%206.4912%2013.3228%206.29272%2013.2874C6.70888%2014.4921%207.92537%2015.3661%209.35954%2015.3898C8.23269%2016.2047%206.81773%2016.689%205.28111%2016.689C5.01861%2016.689%204.7561%2016.6772%204.5%2016.6476C5.94698%2017.498%207.67567%2018%209.52601%2018Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='unarchive'%20viewBox='0%200%2024%2024'%3e%3cclipPath%20id='b'%3e%3cuse%20xlink:href='%23unarchive_a'%20overflow='visible'/%3e%3c/clipPath%3e%3cpath%20d='M20.55%205.22l-1.39-1.68C18.88%203.21%2018.47%203%2018%203H6c-.47%200-.88.21-1.15.55L3.46%205.22C3.17%205.57%203%206.01%203%206.5V19c0%201.1.89%202%202%202h14c1.1%200%202-.9%202-2V6.5c0-.49-.17-.93-.45-1.28zM12%209.5l5.5%205.5H14v2h-4v-2H6.5L12%209.5zM5.12%205l.82-1h12l.93%201H5.12z'/%3e%3c/symbol%3e%3csymbol%20id='unfold_more'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M12%205.83L15.17%209l1.41-1.41L12%203%207.41%207.59%208.83%209%2012%205.83zm0%2012.34L8.83%2015l-1.41%201.41L12%2021l4.59-4.59L15.17%2015%2012%2018.17z'/%3e%3c/symbol%3e%3csymbol%20id='unlock'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.083%2010V7.50001C13.083%205.10701%2015.023%203.16701%2017.416%203.16701C19.809%203.16701%2021.749%205.10701%2021.749%207.50001V9.66701M9.29199%2014V17M14.292%2021H4.29199C3.18699%2021%202.29199%2020.105%202.29199%2019V12C2.29199%2010.895%203.18699%2010%204.29199%2010H14.292C15.397%2010%2016.292%2010.895%2016.292%2012V19C16.292%2020.105%2015.397%2021%2014.292%2021Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='upload_img'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19%207v2.99s-1.99.01-2%200V7h-3s.01-1.99%200-2h3V2h2v3h3v2h-3zm-3%204V8h-3V5H5c-1.1%200-2%20.9-2%202v12c0%201.1.9%202%202%202h12c1.1%200%202-.9%202-2v-8h-3zM5%2019l3-4%202%203%203-4%204%205H5z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='usd_coin_colored'%20viewBox='0%200%2024%2024'%3e%3crect%20width='24'%20height='24'%20rx='12'%20fill='%232775CA'/%3e%3cpath%20d='M15.2996%2013.8999C15.2996%2012.15%2014.2496%2011.55%2012.1496%2011.3C10.6496%2011.1%2010.3496%2010.7%2010.3496%209.99995C10.3496%209.29987%2010.8496%208.84999%2011.8496%208.84999C12.7496%208.84999%2013.2496%209.14999%2013.4996%209.89999C13.5496%2010.05%2013.6996%2010.1499%2013.8496%2010.1499H14.6495C14.8496%2010.1499%2014.9996%209.99995%2014.9996%209.80002V9.74999C14.7995%208.64995%2013.8995%207.79999%2012.7496%207.70003V6.50003C12.7496%206.29999%2012.5996%206.14999%2012.3496%206.09995H11.5996C11.3996%206.09995%2011.2496%206.24995%2011.1995%206.50003V7.64999C9.69953%207.85003%208.74961%208.84999%208.74961%2010.1C8.74961%2011.75%209.74957%2012.3999%2011.8496%2012.65C13.2496%2012.9%2013.6996%2013.2%2013.6996%2014C13.6996%2014.8001%2012.9995%2015.35%2012.0496%2015.35C10.7495%2015.35%2010.2995%2014.7999%2010.1495%2014.0499C10.0996%2013.85%209.94961%2013.7499%209.79961%2013.7499H8.94953C8.74961%2013.7499%208.59961%2013.8999%208.59961%2014.1V14.15C8.79953%2015.3999%209.59957%2016.2999%2011.2496%2016.55V17.75C11.2496%2017.9499%2011.3996%2018.0999%2011.6495%2018.15H12.3995C12.5996%2018.15%2012.7496%2018%2012.7996%2017.75V16.55C14.2996%2016.2999%2015.2996%2015.2499%2015.2996%2013.8999Z'%20fill='white'/%3e%3cpath%20d='M9.45%2019.15C5.55%2017.75%203.54996%2013.4%205.00004%209.54995C5.75004%207.44995%207.40004%205.84999%209.45%205.09999C9.65004%205.00003%209.75%204.85003%209.75%204.59995V3.89999C9.75%203.69995%209.65004%203.54995%209.45%203.50003C9.39996%203.50003%209.3%203.50003%209.24996%203.54995C4.5%205.04995%201.89996%2010.1%203.39996%2014.85C4.29996%2017.65%206.45%2019.8%209.24996%2020.7C9.45%2020.7999%209.65004%2020.7%209.69996%2020.5C9.75%2020.45%209.75%2020.4%209.75%2020.3V19.5999C9.75%2019.4499%209.6%2019.25%209.45%2019.15ZM14.75%203.54995C14.55%203.44999%2014.35%203.54995%2014.3%203.74999C14.25%203.80003%2014.25%203.84995%2014.25%203.95003V4.64999C14.25%204.85003%2014.4%205.04995%2014.55%205.15003C18.45%206.54995%2020.45%2010.9%2019%2014.75C18.25%2016.85%2016.6%2018.45%2014.55%2019.2C14.35%2019.3%2014.25%2019.45%2014.25%2019.7V20.4C14.25%2020.6%2014.35%2020.75%2014.55%2020.7999C14.6%2020.7999%2014.7%2020.8%2014.75%2020.75C19.5%2019.25%2022.1%2014.2%2020.6%209.44999C19.7%206.59999%2017.5%204.44995%2014.75%203.54995Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='user'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19.245%2019.804C18.8609%2018.8384%2017.8867%2017.4783%2017.0266%2016.895C16.1666%2016.3116%2015.1512%2015.9999%2014.112%2016H9.888C8.56875%2015.9998%207.29898%2016.5022%206.337%2017.405C5.6023%2018.0941%205.19719%2018.9492%204.82356%2019.8616M12%206.75C13.6569%206.75%2015%208.09315%2015%209.75V10.25C15%2011.9069%2013.6569%2013.25%2012%2013.25C10.3431%2013.25%209%2011.9069%209%2010.25V9.75C9%208.09315%2010.3431%206.75%2012%206.75ZM8%203H16C18.7614%203%2021%205.23858%2021%208V16C21%2018.7614%2018.7614%2021%2016%2021H8C5.23858%2021%203%2018.7614%203%2016V8C3%205.23858%205.23858%203%208%203Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='user_edit'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M10%2015H7C5.93913%2015%204.92172%2015.4214%204.17157%2016.1716C3.42143%2016.9217%203%2017.9391%203%2019V20M20%2021H14M14.2929%2015.3344L17.3344%2012.2929C17.4273%2012.2%2017.5375%2012.1264%2017.6588%2012.0761C17.7802%2012.0259%2017.9102%2012%2018.0415%2012C18.1728%2012%2018.3029%2012.0259%2018.4242%2012.0761C18.5455%2012.1264%2018.6558%2012.2%2018.7486%2012.2929L19.7071%2013.2514C19.8947%2013.4389%2020%2013.6933%2020%2013.9585C20%2014.2237%2019.8947%2014.4781%2019.7071%2014.6656L16.6656%2017.7071C16.5727%2017.8%2016.4625%2017.8736%2016.3412%2017.9239C16.2198%2017.9741%2016.0898%2018%2015.9585%2018H14.5C14.3674%2018%2014.2402%2017.9473%2014.1464%2017.8536C14.0527%2017.7598%2014%2017.6326%2014%2017.5V16.0415C14%2015.7763%2014.1054%2015.5219%2014.2929%2015.3344ZM15%207C15%209.20914%2013.2091%2011%2011%2011C8.79086%2011%207%209.20914%207%207C7%204.79086%208.79086%203%2011%203C13.2091%203%2015%204.79086%2015%207Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='user_kyc'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16.674%2016.9996L16.39%2016.2866C16.246%2015.9256%2016.023%2015.6006%2015.738%2015.3366C15.255%2014.8886%2014.62%2014.6406%2013.962%2014.6406H10.038C9.37905%2014.6406%208.74505%2014.8896%208.26205%2015.3366C7.97705%2015.6006%207.75405%2015.9256%207.61005%2016.2866L7.32605%2016.9996'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13.9445%2011.6945C15.0185%2010.6206%2015.0185%208.8794%2013.9445%207.80546C12.8706%206.73151%2011.1294%206.73151%2010.0555%207.80546C8.98151%208.8794%208.98151%2010.6206%2010.0555%2011.6945C11.1294%2012.7685%2012.8706%2012.7685%2013.9445%2011.6945Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.588%203H5C3.895%203%203%203.895%203%205V7.588'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.412%2021.0001H19C20.105%2021.0001%2021%2020.1051%2021%2019.0001V16.4121'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M3%2016.4121V19.0001C3%2020.1051%203.895%2021.0001%205%2021.0001H7.588'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21%207.588V5C21%203.895%2020.105%203%2019%203H16.412'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='viber'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cg%3e%3cg%3e%3cpath%20d='M17.2,1.6H6.8c-2.9,0-5.2,2.3-5.2,5.2v10.4c0,2.9,2.3,5.2,5.2,5.2h10.4c2.9,0,5.2-2.3,5.2-5.2V6.8%20C22.4,3.9,20.1,1.6,17.2,1.6z%20M11.4,5.9c0-0.5,0.5-0.3,0.8-0.4c3.1,0.1,5.8,2.9,5.7,5.9c0,0.3,0.1,0.7-0.3,0.7%20c-0.4,0-0.3-0.4-0.4-0.7c-0.4-3.2-1.9-4.7-5.1-5.2C11.8,6.2,11.4,6.2,11.4,5.9z%20M16.1,11.5c-0.5,0.1-0.4-0.4-0.4-0.6%20c-0.3-1.9-1-2.7-3-3.1c-0.3-0.1-0.8,0-0.7-0.5c0.1-0.4,0.5-0.3,0.8-0.2c2,0.2,3.6,1.9,3.6,3.8C16.3,11.1,16.4,11.5,16.1,11.5z%20M14.8,10.5c0,0.3,0,0.5-0.3,0.5c-0.2,0-0.3-0.1-0.4-0.4c-0.1-0.8-0.5-1.3-1.3-1.4c-0.2,0-0.5-0.1-0.4-0.4%20c0.1-0.2,0.3-0.2,0.5-0.2C13.8,8.6,14.8,9.6,14.8,10.5z%20M18,16.6c-0.3,0.9-1.5,1.9-2.5,1.9c-0.1,0-0.4-0.1-0.7-0.2%20c-4.4-1.9-7.6-4.9-9.5-9.3c-0.6-1.5,0-2.7,1.6-3.2c0.3-0.1,0.5-0.1,0.8,0C8.4,6,10,8.3,10.1,8.9c0,0.5-0.3,0.8-0.7,1%20c-0.7,0.4-0.7,1-0.4,1.7c0.6,1.4,1.7,2.4,3.2,3c0.5,0.2,1,0.2,1.4-0.3c0.6-0.9,1.4-0.9,2.2-0.3c0.4,0.3,0.9,0.6,1.3,0.9%20C17.6,15.3,18.3,15.7,18,16.6z'/%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='viber_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%237360F2'/%3e%3cpath%20d='M17.4191%206.46346C17.053%206.12133%2015.5711%205.02593%2012.2677%205.01093C12.2677%205.01093%208.37382%204.77084%206.47561%206.54149C5.41875%207.61588%205.04678%209.18545%205.00841%2011.1362C4.97003%2013.0839%204.91984%2016.7362%208.38268%2017.7266H8.38563L8.38268%2019.2361C8.38268%2019.2361%208.36201%2019.8484%208.75759%2019.9714C9.23584%2020.1215%209.51924%2019.6563%209.97682%2019.1551C10.2277%2018.879%2010.5731%2018.4769%2010.8359%2018.1677C13.2035%2018.3688%2015.0249%2017.9066%2015.2316%2017.8376C15.7098%2017.6786%2018.4169%2017.3274%2018.8568%2013.6751C19.3114%209.91772%2018.6354%207.53785%2017.4191%206.46346ZM17.8206%2013.411C17.4486%2016.4601%2015.2552%2016.6522%2014.8508%2016.7842C14.6795%2016.8413%2013.0795%2017.2464%2011.0661%2017.1114C11.0661%2017.1114%209.56647%2018.951%209.10004%2019.4282C9.02624%2019.5032%208.94062%2019.5332%208.88453%2019.5182C8.80483%2019.4972%208.78121%2019.4012%208.78416%2019.2601C8.78416%2019.0561%208.79597%2016.7482%208.79597%2016.7482C8.79302%2016.7482%208.79302%2016.7482%208.79597%2016.7482C5.86452%2015.9229%206.03574%2012.8138%206.06822%2011.1872C6.10069%209.56059%206.40181%208.2251%207.2963%207.32777C8.8993%205.85123%2012.2086%206.07031%2012.2086%206.07031C15.0013%206.08232%2016.3386%206.93763%2016.6486%207.22274C17.6789%208.12306%2018.2044%2010.2688%2017.8206%2013.411Z'%20fill='white'/%3e%3cpath%20d='M13.6284%2011.2442C13.5309%2011.2442%2013.4483%2011.1662%2013.4424%2011.0641C13.4099%2010.4189%2013.1117%2010.1038%2012.5036%2010.0708C12.4003%2010.0648%2012.3206%209.97475%2012.3265%209.86971C12.3324%209.76467%2012.4209%209.68364%2012.5243%209.68964C13.3272%209.73466%2013.776%2010.2028%2013.8173%2011.0431C13.8232%2011.1482%2013.7435%2011.2382%2013.6402%2011.2412C13.6343%2011.2442%2013.6313%2011.2442%2013.6284%2011.2442Z'%20fill='white'/%3e%3cpath%20d='M14.5854%2011.5684H14.5825C14.4792%2011.5654%2014.3965%2011.4784%2014.3995%2011.3733C14.4142%2010.7251%2014.2312%2010.1999%2013.8415%209.76774C13.4548%209.33558%2012.9204%209.1015%2012.2149%209.05048C12.1116%209.04148%2012.0348%208.95144%2012.0437%208.8464C12.0525%208.74137%2012.1411%208.66334%2012.2444%208.67234C13.0415%208.73236%2013.6703%209.01446%2014.119%209.51265C14.5707%2010.0138%2014.7891%2010.6411%2014.7744%2011.3823C14.7714%2011.4874%2014.6858%2011.5684%2014.5854%2011.5684Z'%20fill='white'/%3e%3cpath%20d='M15.5654%2011.9584C15.4621%2011.9584%2015.3794%2011.8744%2015.3794%2011.7694C15.3706%2010.608%2015.0429%209.72263%2014.3757%209.05939C13.7174%208.40515%2012.8819%208.07203%2011.8989%208.06302C11.7955%208.06302%2011.7129%207.97599%2011.7129%207.87095C11.7129%207.76592%2011.7985%207.68188%2011.8989%207.68188C12.9823%207.69089%2013.9034%208.06002%2014.6325%208.78629C15.3647%209.51255%2015.7396%2010.5149%2015.7514%2011.7634C15.7543%2011.8714%2015.6717%2011.9584%2015.5654%2011.9584C15.5684%2011.9584%2015.5684%2011.9584%2015.5654%2011.9584Z'%20fill='white'/%3e%3cpath%20d='M12.5476%2013.594C12.5476%2013.594%2012.8103%2013.618%2012.952%2013.441L13.2266%2013.0898C13.3594%2012.9158%2013.6812%2012.8047%2013.9941%2012.9818C14.1683%2013.0808%2014.4842%2013.2789%2014.679%2013.426C14.8886%2013.582%2015.3137%2013.9422%2015.3167%2013.9452C15.5204%2014.1192%2015.5676%2014.3743%2015.4289%2014.6474C15.4289%2014.6474%2015.4289%2014.6504%2015.4289%2014.6534C15.2872%2014.9085%2015.0953%2015.1486%2014.8562%2015.3707C14.8532%2015.3707%2014.8532%2015.3737%2014.8503%2015.3737C14.6525%2015.5417%2014.4576%2015.6378%2014.2687%2015.6588C14.2451%2015.6648%2014.2185%2015.6648%2014.1831%2015.6648C14.1004%2015.6648%2014.0178%2015.6528%2013.9351%2015.6258L13.9292%2015.6168C13.634%2015.5327%2013.1439%2015.3227%2012.3291%2014.8635C11.7978%2014.5664%2011.3579%2014.2633%2010.983%2013.9602C10.7852%2013.8011%2010.5844%2013.624%2010.3778%2013.414C10.3719%2013.408%2010.363%2013.399%2010.3571%2013.393C10.3512%2013.387%2010.3424%2013.3779%2010.3365%2013.3719C10.3306%2013.3659%2010.3217%2013.3569%2010.3158%2013.3509C10.3099%2013.3449%2010.301%2013.3359%2010.2951%2013.3299C10.0914%2013.1199%209.91432%2012.9158%209.75786%2012.7147C9.45969%2012.3366%209.16153%2011.8864%208.86927%2011.3462C8.4176%2010.5149%208.21095%2010.0167%208.12829%209.71961L8.11943%209.71361C8.09286%209.62958%208.08105%209.54555%208.08105%209.46152C8.08105%209.4255%208.08105%209.3985%208.08696%209.37449C8.11058%209.17941%208.20504%208.98434%208.36741%208.78327C8.36741%208.78027%208.37036%208.78027%208.37036%208.77727C8.58882%208.53118%208.82499%208.33911%209.07592%208.19505C9.07592%208.19505%209.07887%208.19505%209.08182%208.19505C9.34751%208.054%209.59844%208.10202%209.77262%208.3091C9.77262%208.3091%2010.1298%208.74426%2010.2833%208.95733C10.428%209.15841%2010.6228%209.47652%2010.7202%209.65359C10.8944%209.9717%2010.7852%2010.2988%2010.614%2010.4339L10.2686%2010.713C10.0944%2010.857%2010.118%2011.1241%2010.118%2011.1241C10.118%2011.1241%2010.6287%2013.0988%2012.5476%2013.594Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='videoblocks'%20viewBox='0%200%20108%20108'%3e%3ccircle%20fill='%23FFE121'%20cx='54'%20cy='54'%20r='54'/%3e%3cpath%20d='M51.6,25.7v36.4c-10-0.2-18-8.6-17.8-18.6C34,33.7,41.9,25.9,51.6,25.7z'/%3e%3cpath%20d='M56.4,82.3V45.9c10,0.2,18,8.6,17.8,18.6C74,74.3,66.1,82.1,56.4,82.3z'/%3e%3ccircle%20cx='65'%20cy='34.3'%20r='8.6'/%3e%3ccircle%20cx='43'%20cy='73.7'%20r='8.6'/%3e%3c/symbol%3e%3csymbol%20id='vidiq-logo-mono'%20viewBox='0%200%20612%20234.396'%3e%3cg%3e%3cpath%20d='M1.859,75.268c-2.016-3.736,0.574-7.767,4.892-7.767h32.212c2.016,0,4.313,1.443,5.178,3.172l16.97,39.108%20c0.287,0,0.574,0,0.864,0l18.118-39.108c1.729-3.458,3.739-3.172,7.766-3.172h29.051c4.318,0,6.907,4.032,4.89,7.767L67.154,182.559%20c-0.865,1.433-3.167,2.873-4.892,2.873h-1.437c-1.729,0-4.026-1.44-4.892-2.873L1.859,75.268z'/%3e%3cpath%20d='M138.769,72.964c0-3.161,2.589-5.463,5.463-5.463h31.64c2.875,0,5.463,2.304,5.463,5.463v104.129%20c0,2.872-2.589,5.463-5.463,5.463h-31.64c-2.876,0-5.463-2.589-5.463-5.463V72.964z'/%3e%3cpath%20d='M180.617,21.25L140.073,2.324c-0.784-0.353-1.566,0.123-1.566,1.032v38.318c0,0.896,0.784,1.383,1.566,1.02%20l40.544-18.793c0.356-0.188,0.66-0.552,0.66-1.031V22.27C181.276,21.782,180.973,21.429,180.617,21.25z'/%3e%3cpath%20d='M261.296,64.624c9.778,0,20.424,3.451,23.873,5.463V7.67c0-2.885,2.589-5.463,5.464-5.463h31.93%20c2.876,0,5.463,2.58,5.463,5.463v169.423c0,2.872-2.589,5.463-5.463,5.463h-13.521c-2.874,0-4.887-2.591-6.037-5.752l-3.454-9.496%20c0,0-13.232,18.121-38.541,18.121c-32.503,0-56.956-27.33-56.956-60.407C204.054,84.468,230.52,64.624,261.296,64.624z%20M266.76,148.328c13.23,0,23.012-10.356,23.012-23.586c0-12.942-9.781-23.005-23.012-23.005c-13.231,0-23.299,10.062-23.299,23.005%20C243.461,137.973,253.529,148.328,266.76,148.328z'/%3e%3cpath%20d='M357.647,7.67c0-2.885,2.589-5.463,5.463-5.463h34.518c2.876,0,5.464,2.58,5.464,5.463v169.423%20c0,2.872-2.589,5.463-5.464,5.463H363.11c-2.872,0-5.463-2.591-5.463-5.463V7.67z'/%3e%3cpath%20d='M563.075,174.506c28.403-17.294,47.762-47.759,47.762-81.314C610.837,41.563,569.531,0,517.902,0%20s-92.668,41.563-92.668,93.191c0,51.629,41.039,92.671,92.668,92.671c1.348,0,3.406,0,5.647-0.104l27.417,46.047%20c0.781,1.301,2.072,2.591,4.134,2.591h37.148c4.134,0,6.191-4.13,4.134-7.747L563.075,174.506z%20M469.193,93.181%20c0-26.928,22.031-49.208,48.718-49.208c26.93,0,48.964,22.279,48.964,49.208c0,26.683-22.034,48.722-48.964,48.722%20C491.225,141.899,469.193,119.863,469.193,93.181z'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='vidiq_circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23549DD2'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1.52398%2010.7116C1.45447%2010.5777%201.54377%2010.4332%201.69268%2010.4332H2.8036C2.87316%2010.4332%202.95241%2010.4849%202.98219%2010.5469L3.56751%2011.9485H3.59729L4.22213%2010.5469C4.28175%2010.423%204.3511%2010.4332%204.48996%2010.4332H5.49191C5.64082%2010.4332%205.73012%2010.5777%205.66055%2010.7116L3.77588%2014.5565C3.74604%2014.6079%203.66664%2014.6595%203.60719%2014.6595H3.55762C3.49795%2014.6595%203.41871%2014.6079%203.38893%2014.5565L1.52398%2010.7116ZM6.24571%2010.629C6.24571%2010.5157%206.33495%2010.4332%206.43419%2010.4332H7.52533C7.62446%2010.4332%207.71381%2010.5157%207.71381%2010.629V14.3608C7.71381%2014.4637%207.62446%2014.5565%207.52533%2014.5565H6.43419C6.33495%2014.5565%206.24571%2014.4637%206.24571%2014.3608V10.629ZM10.6599%2013.3299C10.2036%2013.3299%209.85632%2012.9587%209.85632%2012.4846C9.85632%2012.0207%2010.2036%2011.6602%2010.6599%2011.6602C11.1162%2011.6602%2011.4535%2012.0207%2011.4535%2012.4846C11.4535%2012.9587%2011.1162%2013.3299%2010.6599%2013.3299ZM10.4714%2010.3301C10.8087%2010.3301%2011.1758%2010.4538%2011.2947%2010.5259V8.28911C11.2947%208.18572%2011.384%208.09326%2011.4832%208.09326H12.5844C12.6835%208.09326%2012.7729%208.18572%2012.7729%208.28911V14.3607C12.7729%2014.4637%2012.6835%2014.5565%2012.5844%2014.5565H12.1181C12.0189%2014.5565%2011.9496%2014.4637%2011.9099%2014.3504L11.7908%2014.0101C11.7908%2014.0101%2011.3344%2014.6595%2010.4615%2014.6595C9.34056%2014.6595%208.49725%2013.6801%208.49725%2012.4948C8.49725%2011.0413%209.41002%2010.3301%2010.4714%2010.3301Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.66327%208.76145C7.67554%208.76788%207.68602%208.78052%207.68602%208.79806V8.8196C7.68602%208.8367%207.67554%208.84973%207.66327%208.85649L6.265%209.52996C6.23797%209.54304%206.21094%209.52551%206.21094%209.49341V8.12019C6.21094%208.08759%206.23797%208.07055%206.265%208.08319L7.66327%208.76145ZM17.6156%2011.3392C17.6156%2010.3742%2018.3754%209.57577%2019.2958%209.57577C20.2245%209.57577%2020.9844%2010.3742%2020.9844%2011.3392C20.9844%2012.2955%2020.2245%2013.0852%2019.2958%2013.0852C18.3754%2013.0852%2017.6156%2012.2955%2017.6156%2011.3392ZM20.8535%2014.2537L22.0021%2016.1224C22.0731%2016.2519%2022.0021%2016.4%2021.8595%2016.4H20.5784C20.5072%2016.4%2020.4626%2016.3537%2020.4358%2016.3073L19.4903%2014.6569C19.413%2014.6607%2019.342%2014.6607%2019.2955%2014.6607C17.515%2014.6607%2016.0996%2013.1899%2016.0996%2011.3397C16.0996%209.48953%2017.515%208%2019.2955%208C21.0761%208%2022.5006%209.48953%2022.5006%2011.3397C22.5006%2012.5423%2021.833%2013.6339%2020.8535%2014.2537ZM13.7687%208.27484C13.7687%208.17145%2013.8579%208.07899%2013.9571%208.07899H15.1475C15.2466%208.07899%2015.3359%208.17145%2015.3359%208.27484V14.3465C15.3359%2014.4494%2015.2466%2014.5424%2015.1475%2014.5424H13.9571C13.8579%2014.5424%2013.7687%2014.4494%2013.7687%2014.3465V8.27484Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='visibility'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M11.9987%206.00107C8.41551%205.94063%204.70969%208.44466%202.37988%2011.0091C2.13533%2011.2806%202%2011.6331%202%2011.9985C2%2012.3639%202.13533%2012.7163%202.37988%2012.9878C4.65902%2015.4981%208.35418%2018.0599%2011.9987%2017.9986C15.6432%2018.0599%2019.3392%2015.4981%2021.6201%2012.9878C21.8647%2012.7163%2022%2012.3639%2022%2011.9985C22%2011.6331%2021.8647%2011.2806%2021.6201%2011.0091C19.2876%208.44466%2015.5818%205.94063%2011.9987%206.00107Z'%20stroke='currentColor'%20fill='none'%20stroke-width='1.33335'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15%2012.0008C14.9998%2012.5941%2014.8238%2013.174%2014.494%2013.6673C14.1643%2014.1605%2013.6957%2014.5449%2013.1475%2014.7719C12.5993%2014.9988%2011.9961%2015.0581%2011.4142%2014.9423C10.8323%2014.8264%2010.2979%2014.5406%209.8784%2014.121C9.45892%2013.7014%209.17328%2013.1669%209.05759%2012.585C8.9419%2012.0031%209.00135%2011.3999%209.22844%2010.8518C9.45553%2010.3036%209.84004%209.83514%2010.3334%209.50554C10.8267%209.17593%2011.4067%209%2012%209C12.3941%208.99989%2012.7843%209.07745%2013.1484%209.22822C13.5124%209.379%2013.8432%209.60005%2014.1218%209.87873C14.4004%2010.1574%2014.6214%2010.4883%2014.7721%2010.8524C14.9228%2011.2165%2015.0002%2011.6067%2015%2012.0008Z'%20stroke='currentColor'%20fill='none'%20stroke-width='1.4'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='visibility_off'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M5%2019L19%205'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.2998%2017.6019C10.1734%2017.8732%2011.0837%2018.0079%2011.9985%2018.001C15.6429%2018.0624%2019.3389%2015.5006%2021.6198%2012.9904C21.8644%2012.7189%2021.9997%2012.3664%2021.9997%2012.001C21.9997%2011.6356%2021.8644%2011.2832%2021.6198%2011.0117C20.7935%2010.1052%2019.8781%209.2842%2018.8874%208.56104'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.1434%206.25171C13.4421%206.07717%2012.7213%205.99294%2011.9985%206.00104C8.41543%205.94149%204.70966%208.44726%202.37988%2011.0099C2.13533%2011.2814%202%2011.6339%202%2011.9993C2%2012.3647%202.13533%2012.7171%202.37988%2012.9886C3.08826%2013.7641%203.86142%2014.4778%204.69099%2015.1219'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9%2012C8.99989%2011.606%209.07742%2011.2158%209.22815%2010.8518C9.37887%2010.4878%209.59985%2010.157%209.87845%209.87845C10.157%209.59985%2010.4878%209.37887%2010.8518%209.22815C11.2158%209.07742%2011.606%208.99989%2012%209'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15%2012C15.0001%2012.3939%2014.9226%2012.784%2014.7719%2013.148C14.6212%2013.512%2014.4002%2013.8427%2014.1216%2014.1213C13.843%2014.3999%2013.5123%2014.6208%2013.1482%2014.7716C12.7842%2014.9224%2012.394%2015%2012%2015'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='vkontakte'%20viewBox='0%200%2028%2028'%3e%3cg%20transform='translate(-4.116%20-4.116)'%3e%3cg%20transform='translate(4%2010.06)'%3e%3cpath%20d='M26.1,20.392c-.033-.067-.062-.124-.091-.172A13.612,13.612,0,0,0,23.4,17.2l-.029-.029-.014-.014-.014-.014h-.014a15.033,15.033,0,0,1-1.105-1.12,1.053,1.053,0,0,1-.191-1.105,10.428,10.428,0,0,1,1.23-1.789q.56-.725.89-1.163Q26.516,8.822,26.2,7.952l-.081-.134a.787.787,0,0,0-.421-.225,2.142,2.142,0,0,0-.876-.033l-3.933.029a.525.525,0,0,0-.273,0l-.177.043-.067.033-.053.043a.585.585,0,0,0-.148.144.887.887,0,0,0-.134.239,22.225,22.225,0,0,1-1.464,3.072c-.335.565-.646,1.053-.928,1.469a6.933,6.933,0,0,1-.708.914,4.28,4.28,0,0,1-.522.469c-.153.12-.273.167-.354.148s-.158-.038-.234-.053a.864.864,0,0,1-.306-.335,1.58,1.58,0,0,1-.158-.531,5.441,5.441,0,0,1-.048-.555c0-.153,0-.373,0-.656s.014-.474.014-.574c0-.344,0-.722.019-1.129s.024-.727.033-.962.014-.488.014-.751A3.058,3.058,0,0,0,15.356,8a2.321,2.321,0,0,0-.144-.435.759.759,0,0,0-.282-.33,1.7,1.7,0,0,0-.459-.187,9.047,9.047,0,0,0-1.842-.177,8.858,8.858,0,0,0-3.263.33,1.752,1.752,0,0,0-.517.411c-.163.2-.187.311-.067.33a1.678,1.678,0,0,1,1.163.589l.081.163a2.676,2.676,0,0,1,.191.627,6.645,6.645,0,0,1,.124,1,11.23,11.23,0,0,1,0,1.708q-.072.711-.129,1.105a2.135,2.135,0,0,1-.187.641c-.081.163-.139.263-.163.3a.214.214,0,0,1-.067.067,1.069,1.069,0,0,1-.368.067.847.847,0,0,1-.464-.191,3.125,3.125,0,0,1-.565-.526,7.323,7.323,0,0,1-.665-.938c-.244-.4-.5-.876-.766-1.421l-.22-.4c-.139-.254-.325-.627-.56-1.115S5.744,8.66,5.562,8.2a.879.879,0,0,0-.33-.435l-.067-.043a.76.76,0,0,0-.22-.115,1.409,1.409,0,0,0-.316-.091L.887,7.545a.959.959,0,0,0-.78.258l-.053.081a.435.435,0,0,0-.043.22,1.122,1.122,0,0,0,.081.368Q.911,10.4,1.878,12.191c.646,1.2,1.2,2.153,1.675,2.88S4.509,16.488,5,17.133s.818,1.062.976,1.244.287.321.378.411l.34.33a8.389,8.389,0,0,0,.962.785q.639.459,1.407.9a7.675,7.675,0,0,0,1.794.722,6.169,6.169,0,0,0,2,.225h1.569a1.086,1.086,0,0,0,.722-.3l.053-.067a.769.769,0,0,0,.1-.254,1.34,1.34,0,0,0,.048-.378,4.271,4.271,0,0,1,.091-1.057,2.526,2.526,0,0,1,.234-.708,1.891,1.891,0,0,1,.292-.4.981.981,0,0,1,.234-.2.638.638,0,0,1,.11-.048.876.876,0,0,1,.77.211,4.468,4.468,0,0,1,.833.794c.258.316.569.665.938,1.057a6.382,6.382,0,0,0,.957.876l.273.163a3.286,3.286,0,0,0,.713.3,1.507,1.507,0,0,0,.766.067l3.5-.053a1.556,1.556,0,0,0,.8-.172.66.66,0,0,0,.34-.378,1.007,1.007,0,0,0,0-.464A2.38,2.38,0,0,0,26.1,20.392Z'%20transform='translate(0.99%20-6.296)'/%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='vkontakte_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%235181B8'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M19.6329%208.2673C19.7442%207.89647%2019.6329%207.6239%2019.1035%207.6239H17.3531C16.908%207.6239%2016.703%207.85933%2016.5917%208.11902C16.5917%208.11902%2015.7015%2010.2886%2014.4404%2011.698C14.0325%2012.1059%2013.847%2012.2356%2013.6245%2012.2356C13.5132%2012.2356%2013.3522%2012.1059%2013.3522%2011.7351V8.2673C13.3522%207.8222%2013.223%207.6239%2012.8521%207.6239H10.1014C9.82336%207.6239%209.65607%207.83045%209.65607%208.02625C9.65607%208.44822%2010.2865%208.54549%2010.3515%209.73227V12.31C10.3515%2012.8751%2010.2495%2012.9777%2010.0269%2012.9777C9.43352%2012.9777%207.99018%2010.7981%207.13398%208.30444C6.96619%207.8197%206.7979%207.6239%206.35055%207.6239H4.60014C4.10002%207.6239%204%207.85933%204%208.11902C4%208.58263%204.59351%2010.8822%206.76314%2013.9234C8.20973%2016.0001%2010.2475%2017.1261%2012.1019%2017.1261C13.2147%2017.1261%2013.3522%2016.8761%2013.3522%2016.4453V14.8756C13.3522%2014.3755%2013.4576%2014.2757%2013.8098%2014.2757C14.0696%2014.2757%2014.5146%2014.4055%2015.5532%2015.4068C16.74%2016.5935%2016.9355%2017.1261%2017.6032%2017.1261H19.3536C19.8537%2017.1261%2020.1038%2016.8761%2019.9595%2016.3826C19.8017%2015.8907%2019.2351%2015.1773%2018.4831%2014.3313C18.0752%2013.8491%2017.4631%2013.3299%2017.2779%2013.0703C17.0182%2012.7365%2017.0923%2012.5882%2017.2779%2012.2916C17.2779%2012.2916%2019.4103%209.28742%2019.6329%208.26743V8.2673Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='wallet'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M6%2020H18C19.657%2020%2021%2018.657%2021%2017V6C21%204.895%2020.105%204%2019%204H5C3.895%204%203%204.895%203%206V17C3%2018.657%204.343%2020%206%2020Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21%2011.5H17.5C16.97%2011.5%2016.461%2011.711%2016.086%2012.086L15.258%2012.914C14.883%2013.289%2014.374%2013.5%2013.844%2013.5H10.743C10.213%2013.5%209.704%2013.289%209.329%2012.914L8.5%2012.086C8.125%2011.711%207.616%2011.5%207.086%2011.5H3'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21%208H3'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='warning'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%2015V8M12%2018.5V18M13.4409%202.89758C13.3086%202.62825%2013.1035%202.4014%2012.8488%202.24275C12.5941%202.0841%2012.3001%202%2012%202C11.6999%202%2011.4059%202.0841%2011.1512%202.24275C10.8965%202.4014%2010.6914%202.62825%2010.5591%202.89758L2.13868%2020.0515C2.03732%2020.2577%201.99017%2020.4864%202.0017%2020.7158C2.01323%2020.9453%202.08305%2021.168%202.20457%2021.363C2.32608%2021.558%202.49529%2021.7189%202.69621%2021.8303C2.89713%2021.9417%203.12314%2022.0002%203.3529%2022H20.6471C20.8769%2022.0002%2021.1029%2021.9417%2021.3038%2021.8303C21.5047%2021.7189%2021.6739%2021.558%2021.7954%2021.363C21.9169%2021.168%2021.9868%2020.9453%2021.9983%2020.7158C22.0098%2020.4864%2021.9627%2020.2577%2021.8613%2020.0515L13.4409%202.89758Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='webmoney'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cpath%20id='Combined-Shape'%20d='M12,1.7c1.6,0,3.2,0.4,4.6,1C16.7,2.9,17,3,17.2,3.1l-1,0.8l-1.4-1.5l-2.5,2.2l-1.5-1.6l-4.5,4l2.9,3.2%20l-1.1,1l2.9,3.2l-1.1,1l4.1,4.5l2.4-2.2l2.1,2.4c-0.4,0.3-0.9,0.6-1.4,0.9c-1.5,0.8-3.3,1.3-5.1,1.3C6.2,22.3,1.6,17.7,1.6,12%20C1.5,6.4,6.2,1.7,12,1.7z%20M10,11.4l2.5-2.2l2.2,2.5l-2.5,2.2L10,11.4z%20M11.8,15.6l2.5-2.2l2.2,2.5L14,18L11.8,15.6z%20M8.3,7.2L10.8,5%20L13,7.4l-2.5,2.2L8.3,7.2z%20M12.8,6l1.8-1.6l1.7,1.8l-1.8,1.7L12.8,6z%20M16.1,13.6l1.8-1.6l1.7,1.8l-1.8,1.7L16.1,13.6z%20M17.8,17.3%20l1.8-1.6l1.7,1.8l-1.8,1.7L17.8,17.3z%20M18.5,8.8l1.2-1.1l1.1,1.2L19.6,10L18.5,8.8z%20M16.9,5.2L18.1,4l1.1,1.2L18,6.4L16.9,5.2z%20M20.1,12.4l1.2-1.1l1.1,1.2l-1.3,1.1L20.1,12.4z%20M14.5,9.7L16.4,8L18,9.9l-1.8,1.6L14.5,9.7z'/%3e%3c/symbol%3e%3csymbol%20id='webmoney_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23006CB4'/%3e%3cpath%20d='M11.9665%205.00086C13.059%205.00086%2014.0983%205.25481%2015.0307%205.70909C15.1769%205.77584%2015.324%205.85621%2015.4698%205.93666L14.8308%206.51217L13.872%205.50877L12.2205%206.97964L11.2478%205.92349L8.21047%208.66497L10.1553%2010.8177L9.39599%2011.4855L11.3145%2013.6383L10.5551%2014.3069L13.3%2017.3691L14.9242%2015.871L16.3369%2017.4764C16.057%2017.6903%2015.7506%2017.9047%2015.4179%2018.0914C14.4055%2018.667%2013.2329%2019%2011.9803%2019C8.13043%2019%205.00004%2015.8587%205.00004%2011.9943C4.98696%208.15663%208.11744%205%2011.9669%205L11.9665%205.00086ZM10.6875%2011.5659L12.3533%2010.0678L13.8452%2011.7399L12.1794%2013.2372L10.6875%2011.5655V11.5659ZM11.873%2014.4546L13.5259%2012.9433L15.0307%2014.6149L13.3649%2016.1131L11.873%2014.4546ZM9.50287%208.71767L11.1673%207.2204L12.6601%208.89164L10.9943%2010.3898L9.50287%208.71767ZM12.5532%207.9159L13.7915%206.7925L14.9108%208.03585L13.6712%209.17242L12.5523%207.9159H12.5532ZM14.7641%2013.0636L16.0025%2011.9407L17.1218%2013.1972L15.8826%2014.321L14.7641%2013.0636ZM15.8562%2015.5911L17.0954%2014.4677L18.2139%2015.7111L16.9751%2016.8477L15.8562%2015.5911ZM16.3624%209.81386L17.1889%209.06565L17.9344%209.89468L17.1088%2010.6433L16.3624%209.81386ZM15.2968%207.34034L16.1232%206.57856L16.8695%207.42117L16.0431%208.17024L15.2972%207.3408L15.2968%207.34034ZM17.4156%2012.2886L18.2411%2011.5396L19%2012.3686L18.1606%2013.1172L17.4156%2012.2886ZM13.6989%2010.4293L14.9377%209.30641L16.0565%2010.5498L14.8182%2011.6732L13.6989%2010.4293Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='website_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23485A6C'/%3e%3cpath%20d='M14.6294%2012L16.8168%2014.1876C17.0611%2014.4318%2017.0611%2014.8272%2016.8168%2015.0709L15.071%2016.8168C14.8267%2017.0611%2014.4314%2017.0611%2014.1878%2016.8168L12.0003%2014.6292L10.6911%2015.9385C10.3625%2016.2671%209.80346%2016.1347%209.65667%2015.6943L7.03322%207.82281C6.87019%207.33494%207.33492%206.87018%207.82338%207.03322L15.6944%209.65684C16.1347%209.80364%2016.2672%2010.3627%2015.9386%2010.6913L14.6294%2012'%20stroke='white'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='whatsapp'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cg%3e%3cg%3e%3cpath%20d='M19,5c-1.8-1.8-4.1-2.7-6.6-2.7S7.6,3.2,5.8,5s-2.7,4.1-2.7,6.6c0,1.6,0.4,3.1,1.2,4.5l-2,5.6l5.6-2%20c1.4,0.8,2.9,1.2,4.5,1.2c2.5,0,4.8-1,6.6-2.7s2.7-4.1,2.7-6.6S20.8,6.8,19,5z%20M17,15.1L16,16.1c-0.9,0.9-3.4-0.2-5.7-2.4%20C8.1,11.5,7,8.9,7.9,8.1L8.9,7c0.2-0.2,0.6-0.2,0.8,0l1.3,1.3c0.2,0.2,0.2,0.6,0,0.8l-0.8,0.8c0.8,1.7,2.1,3,3.8,3.8l0.8-0.8%20c0.2-0.2,0.6-0.2,0.8,0l1.3,1.3C17.3,14.5,17.3,14.8,17,15.1z'/%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='whatsapp_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%230DC143'/%3e%3cpath%20d='M17.3752%206.60574C16.0887%205.28142%2014.3104%204.5625%2012.4941%204.5625C8.63468%204.5625%205.53198%207.70304%205.56982%2011.5247C5.56982%2012.7355%205.91036%2013.9084%206.47792%2014.9679L5.49414%2018.5625L9.16441%2017.6166C10.186%2018.1841%2011.3212%2018.449%2012.4563%2018.449C16.2779%2018.449%2019.3806%2015.3084%2019.3806%2011.4868C19.3806%209.63277%2018.6617%207.89223%2017.3752%206.60574ZM12.4941%2017.276C11.4725%2017.276%2010.4509%2017.0111%209.58063%2016.4814L9.3536%2016.3679L7.15901%2016.9355L7.72657%2014.7787L7.57522%2014.5517C5.91036%2011.8652%206.70495%208.30845%209.42928%206.64358C12.1536%204.97872%2015.6725%205.77331%2017.3374%208.49764C19.0022%2011.222%2018.2077%2014.7409%2015.4833%2016.4057C14.6131%2016.9733%2013.5536%2017.276%2012.4941%2017.276ZM15.8239%2013.076L15.4077%2012.8868C15.4077%2012.8868%2014.8022%2012.622%2014.4239%2012.4328C14.386%2012.4328%2014.3482%2012.3949%2014.3104%2012.3949C14.1968%2012.3949%2014.1212%2012.4328%2014.0455%2012.4706C14.0455%2012.4706%2014.0077%2012.5084%2013.4779%2013.1139C13.4401%2013.1895%2013.3644%2013.2274%2013.2887%2013.2274H13.2509C13.2131%2013.2274%2013.1374%2013.1895%2013.0995%2013.1517L12.9104%2013.076C12.4941%2012.8868%2012.1158%2012.6598%2011.8131%2012.3571C11.7374%2012.2814%2011.6239%2012.2057%2011.5482%2012.1301C11.2833%2011.8652%2011.0185%2011.5625%2010.8293%2011.222L10.7914%2011.1463C10.7536%2011.1084%2010.7536%2011.0706%2010.7158%2010.9949C10.7158%2010.9193%2010.7158%2010.8436%2010.7536%2010.8057C10.7536%2010.8057%2010.905%2010.6166%2011.0185%2010.503C11.0941%2010.4274%2011.132%2010.3139%2011.2077%2010.2382C11.2833%2010.1247%2011.3212%209.97331%2011.2833%209.8598C11.2455%209.67061%2010.7914%208.64899%2010.6779%208.42196C10.6022%208.30845%2010.5266%208.27061%2010.4131%208.23277H10.2995C10.2239%208.23277%2010.1104%208.23277%209.99684%208.23277C9.92117%208.23277%209.84549%208.27061%209.76982%208.27061L9.73198%208.30845C9.6563%208.34628%209.58063%208.42196%209.50495%208.4598C9.42928%208.53547%209.39144%208.61115%209.31576%208.68682C9.0509%209.02736%208.89955%209.44358%208.89955%209.8598C8.89955%2010.1625%208.97522%2010.4652%209.08874%2010.7301L9.12657%2010.8436C9.46711%2011.5625%209.92117%2012.2057%2010.5266%2012.7733L10.6779%2012.9247C10.7914%2013.0382%2010.905%2013.1139%2010.9806%2013.2274C11.7752%2013.9084%2012.6833%2014.4003%2013.705%2014.6652C13.8185%2014.703%2013.9698%2014.703%2014.0833%2014.7409C14.1968%2014.7409%2014.3482%2014.7409%2014.4617%2014.7409C14.6509%2014.7409%2014.8779%2014.6652%2015.0293%2014.5895C15.1428%2014.5139%2015.2185%2014.5139%2015.2941%2014.4382L15.3698%2014.3625C15.4455%2014.2868%2015.5212%2014.249%2015.5968%2014.1733C15.6725%2014.0976%2015.7482%2014.022%2015.786%2013.9463C15.8617%2013.7949%2015.8995%2013.6057%2015.9374%2013.4166C15.9374%2013.3409%2015.9374%2013.2274%2015.9374%2013.1517C15.9374%2013.1517%2015.8995%2013.1139%2015.8239%2013.076Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='wise_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%2300B9FF'/%3e%3cpath%20d='M9.95238%209.91756L7%2012.8351H12.019L12.5429%2011.5636H10L11.5905%209.91756L10.6667%208.27151H14.981L11%2018H12.4952L17%207H8.29524L9.95238%209.91756Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='worldfirst'%20viewBox='0%200%2024%2024'%3e%3cg%20clip-path='url(%23clip0_10709_44614)'%3e%3crect%20width='24'%20height='24'%20fill='white'/%3e%3cpath%20d='M24%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012ZM1.152%2012C1.152%2017.9912%206.00882%2022.848%2012%2022.848C17.9912%2022.848%2022.848%2017.9912%2022.848%2012C22.848%206.00882%2017.9912%201.152%2012%201.152C6.00882%201.152%201.152%206.00882%201.152%2012Z'%20fill='%23EDF0F3'/%3e%3cpath%20d='M8.01724%2016.4135L10.9768%208H12.2923L12.5928%209.4011L9.47896%2018H8.06597L8.01724%2016.4135ZM7.41183%208L8.75622%2016.4135L8.59381%2018H7.0184L5%208H7.41183ZM15.2438%2016.3448L16.5882%208H19L16.9654%2017.9657H15.39L15.2438%2016.3448ZM13.0313%208L15.9828%2016.4135L15.9178%2017.9657H14.5048L11.3991%209.39423L11.7239%208H13.0313Z'%20fill='%23FA1D44'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='x_network'%20viewBox='0%200%2024%2024'%3e%3crect%20width='24'%20height='24'%20rx='12'%20fill='black'/%3e%3cpath%20d='M13.3333%2010.9287L18.5459%205H17.3111L12.7831%2010.1468L9.1692%205H5L10.4661%2012.7836L5%2019H6.2348L11.0135%2013.5636L14.8308%2019H19M6.68047%205.9111H8.57747L17.3102%2018.1336H15.4127'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='yandexmoney'%20viewBox='0%200%2028%2028'%3e%3cg%20transform='translate(-166%20-310)'%3e%3cpath%20d='M49.647,27.436v9.857L34.383,42.327,46.455,34V27.265h.01V15.958s-8.639,6.877-11.337,8.89c-3.262,2.437-3.393,3.433-3.393,5V41.9a2.063,2.063,0,0,0,2.054,2.054H53.04V27.436Zm-8.709-.524c.7-.856,1.742-1.148,2.306-.675s.453,1.561-.252,2.416-1.742,1.148-2.306.675C40.122,28.836,40.233,27.758,40.938,26.913Z'%20transform='translate(137.612%20294.042)'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='yoomoney_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%238B3FFD'/%3e%3cpath%20d='M14.309%206C11.1341%206%208.61892%208.47093%208.61892%2011.5C8.61892%2014.5291%2011.1756%2017%2014.309%2017C17.4428%2017%2019.9995%2014.5291%2019.9995%2011.5C20.0414%208.47093%2017.4432%206%2014.3094%206H14.309ZM14.309%2013.533C13.1548%2013.533%2012.165%2012.6163%2012.165%2011.5C12.165%2010.3837%2013.1137%209.46704%2014.3094%209.46704C15.5051%209.46704%2016.4538%2010.3837%2016.4538%2011.5C16.4123%2012.6163%2015.5051%2013.533%2014.3094%2013.533H14.309ZM8.6185%207.6337V15.6446H6.5978L4%207.6337H8.6185Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='youtube'%20viewBox='0%200%2032%2033'%3e%3cpath%20d='M28.4643%2010.3485C28.1647%209.23467%2027.2864%208.35662%2026.1728%208.05669C24.1382%207.5%2015.9997%207.5%2015.9997%207.5C15.9997%207.5%207.86152%207.5%205.82693%208.03559C4.73466%208.3352%203.83503%209.23482%203.53543%2010.3485C3%2012.383%203%2016.602%203%2016.602C3%2016.602%203%2020.8425%203.53543%2022.8556C3.83535%2023.9693%204.71324%2024.8473%205.82709%2025.1473C7.88294%2025.7041%2016%2025.7041%2016%2025.7041C16%2025.7041%2024.1382%2025.7041%2026.1728%2025.1686C27.2866%2024.8688%2028.1647%2023.9908%2028.4646%2022.8771C28.9999%2020.8425%2028.9999%2016.6235%2028.9999%2016.6235C28.9999%2016.6235%2029.0213%2012.383%2028.4643%2010.3485ZM13.4086%2020.4999V12.7043L20.1762%2016.602L13.4086%2020.4999Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='youtube_circled'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200V0C18.6274%200%2024%205.37258%2024%2012V12C24%2018.6274%2018.6274%2024%2012%2024V24C5.37258%2024%200%2018.6274%200%2012V12Z'%20fill='currentColor'/%3e%3cpath%20d='M12.3546%2017.9846L9.07201%2017.9195C8.00914%2017.8969%206.94366%2017.9422%205.90168%2017.7072C4.31652%2017.3561%204.20422%2015.6346%204.08671%2014.1906C3.9248%2012.1605%203.98747%2010.0936%204.29301%208.08047C4.46537%206.95075%205.14435%206.27689%206.19417%206.20327C9.73794%205.93712%2013.3052%205.96827%2016.8412%206.09285C17.2146%206.10417%2017.5906%206.16646%2017.9589%206.23725C19.7765%206.58268%2019.8208%208.53349%2019.9384%2010.1757C20.0559%2011.8349%2020.0063%2013.5026%2019.7817%2015.1504C19.6015%2016.5151%2019.2568%2017.659%2017.8022%2017.7694C15.9794%2017.9138%2014.1983%2018.0299%2012.3703%2017.9931C12.3703%2017.9846%2012.3599%2017.9846%2012.3546%2017.9846ZM10.4248%2014.5303C11.7984%2013.6753%2013.1459%2012.8344%2014.5117%2011.9849C13.1355%2011.1299%2011.7906%2010.2889%2010.4248%209.43953V14.5303Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='youtube_circled_second'%20viewBox='0%200%2056%2056'%3e%3crect%20width='56'%20height='56'%20rx='28'%20fill='currentColor'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M38.4187%2017.7402C39.568%2018.1028%2040.472%2019.1588%2040.7773%2020.4975C41.3333%2022.9268%2041.3333%2028.0002%2041.3333%2028.0002C41.3333%2028.0002%2041.3333%2033.0735%2040.7773%2035.5028C40.468%2036.8468%2039.564%2037.9028%2038.4187%2038.2602C36.34%2038.9095%2028%2038.9095%2028%2038.9095C28%2038.9095%2019.664%2038.9095%2017.5813%2038.2602C16.432%2037.8975%2015.528%2036.8415%2015.2227%2035.5028C14.6667%2033.0735%2014.6667%2028.0002%2014.6667%2028.0002C14.6667%2028.0002%2014.6667%2022.9268%2015.2227%2020.4975C15.532%2019.1535%2016.436%2018.0975%2017.5813%2017.7402C19.664%2017.0908%2028%2017.0908%2028%2017.0908C28%2017.0908%2036.34%2017.0908%2038.4187%2017.7402ZM32.2639%2028.0002L25.3359%2032.0002V24.0002L32.2639%2028.0002Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='youtube_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200V0C18.6274%200%2024%205.37258%2024%2012V12C24%2018.6274%2018.6274%2024%2012%2024V24C5.37258%2024%200%2018.6274%200%2012V12Z'%20fill='%23FF0000'/%3e%3cpath%20d='M12.3546%2017.9846L9.07201%2017.9195C8.00914%2017.8969%206.94366%2017.9422%205.90168%2017.7072C4.31652%2017.3561%204.20422%2015.6346%204.08671%2014.1906C3.9248%2012.1605%203.98747%2010.0936%204.29301%208.08047C4.46537%206.95075%205.14435%206.27689%206.19417%206.20327C9.73794%205.93712%2013.3052%205.96827%2016.8412%206.09285C17.2146%206.10417%2017.5906%206.16646%2017.9589%206.23725C19.7765%206.58268%2019.8208%208.53349%2019.9384%2010.1757C20.0559%2011.8349%2020.0063%2013.5026%2019.7817%2015.1504C19.6015%2016.5151%2019.2568%2017.659%2017.8022%2017.7694C15.9794%2017.9138%2014.1983%2018.0299%2012.3703%2017.9931C12.3703%2017.9846%2012.3599%2017.9846%2012.3546%2017.9846ZM10.4248%2014.5303C11.7984%2013.6753%2013.1459%2012.8344%2014.5117%2011.9849C13.1355%2011.1299%2011.7906%2010.2889%2010.4248%209.43953V14.5303Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='youtube_outlined'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M20.8394%207.34203C20.6294%206.42172%2020.008%205.69573%2019.2178%205.44641C17.7888%205%2012.0551%205%2012.0551%205C12.0551%205%206.32426%205%204.89246%205.44641C4.10506%205.69207%203.48358%206.41805%203.27091%207.34203C2.88867%209.01216%202.88867%2012.5%202.88867%2012.5C2.88867%2012.5%202.88867%2015.9878%203.27091%2017.658C3.48083%2018.5783%204.10231%2019.3043%204.89246%2019.5536C6.32426%2020%2012.0551%2020%2012.0551%2020C12.0551%2020%2017.7888%2020%2019.2178%2019.5536C20.0052%2019.3079%2020.6267%2018.582%2020.8394%2017.658C21.2216%2015.9878%2021.2216%2012.5%2021.2216%2012.5C21.2216%2012.5%2021.2216%209.01216%2020.8394%207.34203Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10.2227%2015.2499L14.9856%2012.5L10.2227%209.75006V15.2499Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='zcash_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23FFC634'/%3e%3cpath%20d='M12.6357%209.30904C11.158%209.30904%209.71207%209.30904%208.2571%209.30904C8.2571%208.52518%208.2571%207.75008%208.2571%206.96184C8.30711%206.96184%208.34803%206.96184%208.3935%206.96184C9.15736%206.96184%209.92577%206.96184%2010.6896%206.96184C10.8533%206.96184%2010.8533%206.96184%2010.8533%206.79981C10.8533%206.24367%2010.8533%205.6919%2010.8533%205.13575C10.8533%205.09196%2010.8533%205.04817%2010.8533%205C11.6172%205%2012.3719%205%2013.1358%205C13.1358%205.04817%2013.1358%205.09196%2013.1358%205.13575C13.1358%205.68314%2013.1404%206.23053%2013.1313%206.77792C13.1313%206.88302%2013.1585%206.91367%2013.2677%206.91367C14.1179%206.90929%2014.9636%206.91367%2015.8139%206.91367C15.8593%206.91367%2015.9048%206.91367%2015.9457%206.91367C15.9594%207.06256%2015.973%207.19393%2015.9776%207.32531C15.9867%207.64498%2016.0094%207.96465%2015.9957%208.28433C15.9821%208.604%2015.9548%208.92806%2015.9003%209.24335C15.873%209.38348%2015.7775%209.52799%2015.6775%209.64185C15.1591%2010.2593%2014.6363%2010.8636%2014.1134%2011.4767C13.2631%2012.4708%2012.4129%2013.4648%2011.5626%2014.4589C11.499%2014.5333%2011.4353%2014.599%2011.3535%2014.691C12.8903%2014.691%2014.3998%2014.691%2015.9185%2014.691C15.9185%2015.4792%2015.9185%2016.2543%2015.9185%2017.0425C14.9818%2017.0425%2014.0543%2017.0425%2013.1085%2017.0425C13.1449%2017.6994%2013.1813%2018.3475%2013.2131%2019C12.422%2019%2011.6445%2019%2010.8488%2019C10.8488%2018.3607%2010.8488%2017.7169%2010.8488%2017.0688C9.90304%2017.0688%208.97095%2017.0688%208.03885%2017.0688C8.02976%2017.0469%208.02067%2017.0338%208.02067%2017.0206C8.01157%2016.4689%207.99338%2015.9127%208.00248%2015.361C8.01157%2014.9274%208.13888%2014.5421%208.44352%2014.1917C9.2483%2013.2721%2010.0213%2012.3262%2010.8169%2011.3935C11.3807%2010.7322%2011.9582%2010.0798%2012.5311%209.4229C12.5629%209.39662%2012.5902%209.36597%2012.6357%209.30904Z'%20fill='white'/%3e%3c/symbol%3e%3c/svg%3e",ho=["xlink:href"],W2=e.defineComponent({__name:"McSvgIcon",props:{spritePath:{type:String,default:Co,validator(t){return!!t}},name:{type:String,required:!0},color:{type:String,default:""},size:{type:String,default:"250"},weight:{type:Number,default:1.5},defaultName:{type:String,default:""},dir:{type:String,default:_1.Ltr}},setup(t){const o=t,n=e.computed(()=>({"mc-svg-icon":!0,[`mc-svg-icon--dir-${o.dir}`]:!!o.dir})),r=e.computed(()=>{var a,l,i;return{"--mc-svg-icon-size":se[o.size],"--mc-svg-icon-weight":(i=(l=(a=String(o.weight))==null?void 0:a.replace(".",""))==null?void 0:l.split(""))==null?void 0:i.join("."),"--mc-svg-icon-color":o.color&&X2[o.color]}});return(a,l)=>(e.openBlock(),e.createElementBlock("svg",{class:e.normalizeClass(n.value),style:e.normalizeStyle(r.value)},[e.createElementVNode("use",{"xlink:href":`${o.spritePath}#${o.name}`},null,8,ho)],6))}}),po={key:0,class:"mc-button__prepend"},mo={key:1,class:"mc-button__loader"},fo={key:2,class:"mc-button__text"},ko={key:3,class:"mc-button__append"},yo={key:4,class:"mc-button__background"},i0=e.defineComponent({__name:"McButton",props:{to:{type:String},href:{type:String},nuxt:{type:Boolean,default:!0},disabled:{type:Boolean,default:!1},inactive:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},iconLoading:{type:Boolean,default:!1},type:{type:String,default:null},variation:{type:String,default:"purple"},size:{type:String,default:"m"},shadow:{type:Boolean,default:!1},rounded:{type:Boolean,default:!1},semiRounded:{type:Boolean,default:!1},textAlign:{type:String,default:"center"},fullWidth:{type:Boolean,default:!1},isActive:{type:Boolean,default:!1},exact:{type:Boolean,default:!1},uppercase:{type:Boolean,default:!1},defaultTag:{type:String,default:"button"},secondaryColor:{type:String,default:null},underlineLink:{type:Boolean,default:!1},bgFlat:{type:Boolean,default:!1},weight:{type:String,default:"semi-bold"},tooltip:{type:String,default:null},tooltipPlacement:{type:String,default:null},tabindex:{type:[String,Number]}},emits:["blur","click"],setup(t,{emit:o}){const n=Qt(),r=e.computed(()=>{let f={};return a.tooltip&&(f={content:a.tooltip,size:ce.M,placement:a.tooltipPlacement||a1.Top}),f}),a=t,l=e.ref(null),i=o,d=e.computed(()=>({[`mc-button--variation-${a.variation}`]:!!a.variation,[`mc-button--size-${a.size}`]:!!a.size,[`mc-button--text-align-${a.textAlign}`]:!!a.textAlign,"mc-button--loading":!!a.loading,"mc-button--icon-loading":!!a.iconLoading,"mc-button--is-active":!!a.isActive,"mc-button--disabled":!!a.disabled,"mc-button--rounded":a.rounded&&/-compact$/.test(a.size),"mc-button--semi-rounded":!!a.semiRounded,"mc-button--full-width":!!a.fullWidth,"mc-button--uppercase":!!a.uppercase,"mc-button--shadow":!!a.shadow,"mc-button--secondary-color":!!a.secondaryColor,"mc-button--underline-link":!!a.underlineLink,"mc-button--bg-flat":!!a.bgFlat,[`mc-button--type-${c.value.type}`]:!!c.value.type,"mc-button--inactive":!!a.inactive})),c=e.computed(()=>{const f=a.variation,M=f.split("-"),V=M[M.length-1];let S=f.replace(`-${V}`,"");switch(V){case T1.Link:case T1.Flat:case T1.Outline:case T1.Invert:break;default:{S=f;break}}return{color:S,type:V}}),p=e.computed(()=>{let f,M;switch(c.value.type){case T1.Link:case T1.Flat:case T1.Outline:case T1.Invert:break;default:{switch(c.value.color){case"yellow":case"white":{f="0.9";break}case"toxic":break;default:M="white"}break}}return{"--mc-button-secondary-color":a.secondaryColor&&X2[a.secondaryColor],"--mc-button-background-color":a.variation&&X2[c.value.color],"--mc-button-font-weight":a.weight&&Et[a.weight],"--mc-button-hover-brightness":f,"--mc-button-text-color":M&&X2[M]}}),C=e.computed(()=>a.to?a.nuxt?"nuxt-link":"router-link":a.href?"a":a.defaultTag),k=e.computed(()=>c.value.type===T1.Link),m=e.computed(()=>{let f={to:a.to,href:a.href,disabled:!1,rel:"",type:a.type,tabindex:a.tabindex};return a.to?delete f.href:a.href?delete f.to:(a.disabled||a.loading)&&(f.disabled=!0),k.value&&(f.rel="noreferrer"),f}),y=f=>{i("blur",f)},b=f=>{i("click",f)};return(f,M)=>e.withDirectives((e.openBlock(),e.createBlock(e.resolveDynamicComponent(C.value),e.mergeProps({ref:l.value},{...m.value},{class:["mc-button",d.value],exact:t.exact,style:p.value,onBlur:y,onClick:b}),{default:e.withCtx(()=>[f.$slots["icon-prepend"]?(e.openBlock(),e.createElementBlock("span",po,[e.renderSlot(f.$slots,"icon-prepend")])):e.createCommentVNode("",!0),t.loading?(e.openBlock(),e.createElementBlock("span",mo,[e.createVNode(W2,{class:"mc-button__loader-icon",type:"div",name:"loader"})])):e.createCommentVNode("",!0),f.$slots.default?(e.openBlock(),e.createElementBlock("span",fo,[e.renderSlot(f.$slots,"default")])):e.createCommentVNode("",!0),f.$slots["icon-append"]?(e.openBlock(),e.createElementBlock("span",ko,[e.renderSlot(f.$slots,"icon-append")])):e.createCommentVNode("",!0),k.value?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("div",yo))]),_:3},16,["class","exact","style"])),[[e.unref(n),r.value]])}}),go={key:0,class:"mc-chip__icon"},bo={key:1,class:"mc-chip__title"},Mo={key:2,class:"mc-chip__counter"},d9=e.defineComponent({__name:"McChip",props:{title:{type:[String,Number],default:""},closable:{type:Boolean,default:!1},variation:{type:String,default:"transparent"},counter:{type:[String,Number],default:null},size:{type:String,default:"m"},textColor:{type:String,default:""}},emits:["close","click"],setup(t,{emit:o}){const n=o,r=t,a=e.computed(()=>({[`mc-chip--variation-${l.value.variation}`]:!!r.variation,[`mc-chip--size-${r.size}`]:!!r.size})),l=e.computed(()=>{var y;const p=(y=r.variation)==null?void 0:y.split("-"),C=p[p.length-1];let k,m;switch(C){case j9.Outline:case j9.Invert:{m=C,k=r.variation.replace(`-${C}`,"");break}default:{m="default",k=r.variation;break}}return{color:k,variation:m}}),i=e.computed(()=>{const p=r.textColor||"white";return{"--mc-chip-color":X2[l.value.color],"--mc-chip-text-color":X2[p]}}),d=p=>{n("close",p)},c=p=>{n("click",p)};return(p,C)=>(e.openBlock(),e.createElementBlock("section",{class:e.normalizeClass(["mc-chip",a.value]),tabindex:"0",style:e.normalizeStyle(i.value),onClick:c},[p.$slots.icon?(e.openBlock(),e.createElementBlock("div",go,[e.renderSlot(p.$slots,"icon")])):e.createCommentVNode("",!0),t.title||p.$slots.default?(e.openBlock(),e.createElementBlock("div",bo,[e.renderSlot(p.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(t.title),1)])])):e.createCommentVNode("",!0),t.counter||t.counter===0?(e.openBlock(),e.createElementBlock("div",Mo,e.toDisplayString(t.counter),1)):e.createCommentVNode("",!0),t.closable?(e.openBlock(),e.createElementBlock("button",{key:3,class:"mc-chip__button",type:"button",onClick:e.withModifiers(d,["stop"])},[e.renderSlot(p.$slots,"button",{},()=>[e.createVNode(W2,{size:"200",name:"cancel"})])])):e.createCommentVNode("",!0)],6))}});var p1=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function x1(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var H6={exports:{}};(function(t,o){(function(n,r){t.exports=r()})(self,function(){return(()=>{var n={d:(s,u)=>{for(var h in u)n.o(u,h)&&!n.o(s,h)&&Object.defineProperty(s,h,{enumerable:!0,get:u[h]})}};n.g=function(){if(typeof globalThis=="object")return globalThis;try{return this||new Function("return this")()}catch{if(typeof window=="object")return window}}(),n.o=(s,u)=>Object.prototype.hasOwnProperty.call(s,u),n.r=s=>{typeof Symbol<"u"&&Symbol.toStringTag&&Object.defineProperty(s,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(s,"__esModule",{value:!0})};var r={};function a(s,u){const h=Object.create(null),g=s.split(",");for(let L=0;L<g.length;L++)h[g[L]]=!0;return L=>!!h[L]}n.r(r),n.d(r,{Version:()=>ih,default:()=>sh,v3Cropper:()=>b7});const l=a("Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt");function i(s){if(S(s)){const u={};for(let h=0;h<s.length;h++){const g=s[h],L=i(O(g)?p(g):g);if(L)for(const j in L)u[j]=L[j]}return u}if(N(s))return s}const d=/;(?![^(]*\))/g,c=/:(.+)/;function p(s){const u={};return s.split(d).forEach(h=>{if(h){const g=h.split(c);g.length>1&&(u[g[0].trim()]=g[1].trim())}}),u}function C(s){let u="";if(O(s))u=s;else if(S(s))for(let h=0;h<s.length;h++){const g=C(s[h]);g&&(u+=g+" ")}else if(N(s))for(const h in s)s[h]&&(u+=h+" ");return u.trim()}const k={},m=()=>{},y=/^on[^a-z]/,b=s=>y.test(s),f=Object.assign,M=Object.prototype.hasOwnProperty,V=(s,u)=>M.call(s,u),S=Array.isArray,x=s=>Y(s)==="[object Map]",B=s=>typeof s=="function",O=s=>typeof s=="string",_=s=>typeof s=="symbol",N=s=>s!==null&&typeof s=="object",Z=Object.prototype.toString,Y=s=>Z.call(s),D=s=>O(s)&&s!=="NaN"&&s[0]!=="-"&&""+parseInt(s,10)===s,z=(s,u)=>s!==u&&(s==s||u==u),W=new WeakMap,u2=[];let w;const T=Symbol(""),H=Symbol("");function I(s,u=k){(function(g){return g&&g._isEffect===!0})(s)&&(s=s.raw);const h=function(g,L){const j=function(){if(!j.active)return L.scheduler?void 0:g();if(!u2.includes(j)){$(j);try{return r2.push(o2),o2=!0,u2.push(j),w=j,g()}finally{u2.pop(),v(),w=u2[u2.length-1]}}};return j.id=P++,j.allowRecurse=!!L.allowRecurse,j._isEffect=!0,j.active=!0,j.raw=g,j.deps=[],j.options=L,j}(s,u);return u.lazy||h(),h}function t2(s){s.active&&($(s),s.options.onStop&&s.options.onStop(),s.active=!1)}let P=0;function $(s){const{deps:u}=s;if(u.length){for(let h=0;h<u.length;h++)u[h].delete(s);u.length=0}}let o2=!0;const r2=[];function X(){r2.push(o2),o2=!1}function v(){const s=r2.pop();o2=s===void 0||s}function U(s,u,h){if(!o2||w===void 0)return;let g=W.get(s);g||W.set(s,g=new Map);let L=g.get(h);L||g.set(h,L=new Set),L.has(w)||(L.add(w),w.deps.push(L))}function h2(s,u,h,g,L,j){const G=W.get(s);if(!G)return;const e2=new Set,a2=K=>{K&&K.forEach(C2=>{(C2!==w||C2.allowRecurse)&&e2.add(C2)})};if(u==="clear")G.forEach(a2);else if(h==="length"&&S(s))G.forEach((K,C2)=>{(C2==="length"||C2>=g)&&a2(K)});else switch(h!==void 0&&a2(G.get(h)),u){case"add":S(s)?D(h)&&a2(G.get("length")):(a2(G.get(T)),x(s)&&a2(G.get(H)));break;case"delete":S(s)||(a2(G.get(T)),x(s)&&a2(G.get(H)));break;case"set":x(s)&&a2(G.get(T))}e2.forEach(K=>{K.options.scheduler?K.options.scheduler(K):K()})}const F=a("__proto__,__v_isRef,__isVue"),i2=new Set(Object.getOwnPropertyNames(Symbol).map(s=>Symbol[s]).filter(_)),k2=c2(),b2=c2(!1,!0),Q=c2(!0),p2=c2(!0,!0),E={};function c2(s=!1,u=!1){return function(h,g,L){if(g==="__v_isReactive")return!s;if(g==="__v_isReadonly")return s;if(g==="__v_raw"&&L===(s?u?O0:H2:u?w2:l2).get(h))return h;const j=S(h);if(!s&&j&&V(E,g))return Reflect.get(E,g,L);const G=Reflect.get(h,g,L);return(_(g)?i2.has(g):F(g))?G:(s||U(h,0,g),u?G:ke(G)?j&&D(g)?G:G.value:N(G)?s?S1(G):W0(G):G)}}function y2(s=!1){return function(u,h,g,L){let j=u[h];if(!s&&(g=c0(g),j=c0(j),!S(u)&&ke(j)&&!ke(g)))return j.value=g,!0;const G=S(u)&&D(h)?Number(h)<u.length:V(u,h),e2=Reflect.set(u,h,g,L);return u===c0(L)&&(G?z(g,j)&&h2(u,"set",h,g):h2(u,"add",h,g)),e2}}["includes","indexOf","lastIndexOf"].forEach(s=>{const u=Array.prototype[s];E[s]=function(...h){const g=c0(this);for(let j=0,G=this.length;j<G;j++)U(g,0,j+"");const L=u.apply(g,h);return L===-1||L===!1?u.apply(g,h.map(c0)):L}}),["push","pop","shift","unshift","splice"].forEach(s=>{const u=Array.prototype[s];E[s]=function(...h){X();const g=u.apply(this,h);return v(),g}});const d2={get:k2,set:y2(),deleteProperty:function(s,u){const h=V(s,u),g=(s[u],Reflect.deleteProperty(s,u));return g&&h&&h2(s,"delete",u,void 0),g},has:function(s,u){const h=Reflect.has(s,u);return _(u)&&i2.has(u)||U(s,0,u),h},ownKeys:function(s){return U(s,0,S(s)?"length":T),Reflect.ownKeys(s)}},S2={get:Q,set:(s,u)=>!0,deleteProperty:(s,u)=>!0},A=(f({},d2,{get:b2,set:y2(!0)}),f({},S2,{get:p2}),s=>N(s)?W0(s):s),R=s=>N(s)?S1(s):s,J=s=>s,g2=s=>Reflect.getPrototypeOf(s);function E2(s,u,h=!1,g=!1){const L=c0(s=s.__v_raw),j=c0(u);u!==j&&!h&&U(L,0,u),!h&&U(L,0,j);const{has:G}=g2(L),e2=g?J:h?R:A;return G.call(L,u)?e2(s.get(u)):G.call(L,j)?e2(s.get(j)):void 0}function L2(s,u=!1){const h=this.__v_raw,g=c0(h),L=c0(s);return s!==L&&!u&&U(g,0,s),!u&&U(g,0,L),s===L?h.has(s):h.has(s)||h.has(L)}function q2(s,u=!1){return s=s.__v_raw,!u&&U(c0(s),0,T),Reflect.get(s,"size",s)}function b0(s){s=c0(s);const u=c0(this);return g2(u).has.call(u,s)||(u.add(s),h2(u,"add",s,s)),this}function H1(s,u){u=c0(u);const h=c0(this),{has:g,get:L}=g2(h);let j=g.call(h,s);j||(s=c0(s),j=g.call(h,s));const G=L.call(h,s);return h.set(s,u),j?z(u,G)&&h2(h,"set",s,u):h2(h,"add",s,u),this}function F0(s){const u=c0(this),{has:h,get:g}=g2(u);let L=h.call(u,s);L||(s=c0(s),L=h.call(u,s)),g&&g.call(u,s);const j=u.delete(s);return L&&h2(u,"delete",s,void 0),j}function f1(){const s=c0(this),u=s.size!==0,h=s.clear();return u&&h2(s,"clear",void 0,void 0),h}function oe(s,u){return function(h,g){const L=this,j=L.__v_raw,G=c0(j),e2=u?J:s?R:A;return!s&&U(G,0,T),j.forEach((a2,K)=>h.call(g,e2(a2),e2(K),L))}}function z1(s,u,h){return function(...g){const L=this.__v_raw,j=c0(L),G=x(j),e2=s==="entries"||s===Symbol.iterator&&G,a2=s==="keys"&&G,K=L[s](...g),C2=h?J:u?R:A;return!u&&U(j,0,a2?H:T),{next(){const{value:m2,done:f2}=K.next();return f2?{value:m2,done:f2}:{value:e2?[C2(m2[0]),C2(m2[1])]:C2(m2),done:f2}},[Symbol.iterator](){return this}}}}function k1(s){return function(...u){return s!=="delete"&&this}}const P1={get(s){return E2(this,s)},get size(){return q2(this)},has:L2,add:b0,set:H1,delete:F0,clear:f1,forEach:oe(!1,!1)},B1={get(s){return E2(this,s,!1,!0)},get size(){return q2(this)},has:L2,add:b0,set:H1,delete:F0,clear:f1,forEach:oe(!1,!0)},Ie={get(s){return E2(this,s,!0)},get size(){return q2(this,!0)},has(s){return L2.call(this,s,!0)},add:k1("add"),set:k1("set"),delete:k1("delete"),clear:k1("clear"),forEach:oe(!0,!1)},Ye={get(s){return E2(this,s,!0,!0)},get size(){return q2(this,!0)},has(s){return L2.call(this,s,!0)},add:k1("add"),set:k1("set"),delete:k1("delete"),clear:k1("clear"),forEach:oe(!0,!0)};function Ue(s,u){const h=u?s?Ye:B1:s?Ie:P1;return(g,L,j)=>L==="__v_isReactive"?!s:L==="__v_isReadonly"?s:L==="__v_raw"?g:Reflect.get(V(h,L)&&L in g?h:g,L,j)}["keys","values","entries",Symbol.iterator].forEach(s=>{P1[s]=z1(s,!1,!1),Ie[s]=z1(s,!0,!1),B1[s]=z1(s,!1,!0),Ye[s]=z1(s,!0,!0)});const n2={get:Ue(!1,!1)},v2={get:Ue(!0,!1)},l2=new WeakMap,w2=new WeakMap,H2=new WeakMap,O0=new WeakMap;function W0(s){return s&&s.__v_isReadonly?s:fe(s,!1,d2,n2,l2)}function S1(s){return fe(s,!0,S2,v2,H2)}function fe(s,u,h,g,L){if(!N(s)||s.__v_raw&&(!u||!s.__v_isReactive))return s;const j=L.get(s);if(j)return j;const G=(e2=s).__v_skip||!Object.isExtensible(e2)?0:function(K){switch(K){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}((K=>Y(K).slice(8,-1))(e2));var e2;if(G===0)return s;const a2=new Proxy(s,G===2?g:h);return L.set(s,a2),a2}function Z0(s){return c1(s)?Z0(s.__v_raw):!(!s||!s.__v_isReactive)}function c1(s){return!(!s||!s.__v_isReadonly)}function ne(s){return Z0(s)||c1(s)}function c0(s){return s&&c0(s.__v_raw)||s}function ke(s){return!!(s&&s.__v_isRef===!0)}function We(s,u,h,g){let L;try{L=g?s(...g):s()}catch(j){B9(j,u,h)}return L}function H9(s,u,h,g){if(B(s)){const G=We(s,u,h,g);return G&&N(L=G)&&B(L.then)&&B(L.catch)&&G.catch(e2=>{B9(e2,u,h)}),G}var L;const j=[];for(let G=0;G<s.length;G++)j.push(H9(s[G],u,h,g));return j}function B9(s,u,h,g=!0){if(u&&u.vnode,u){let L=u.parent;const j=u.proxy,G=h;for(;L;){const a2=L.ec;if(a2){for(let K=0;K<a2.length;K++)if(a2[K](s,j,G)===!1)return}L=L.parent}const e2=u.appContext.config.errorHandler;if(e2)return void We(e2,null,10,[s,j,G])}(function(L,j,G,e2=!0){console.error(L)})(s,0,0,g)}let P3=!1,j3=!1;const t0=[];let j1=0;const M0=[];let qe=null,a0=0;const R1=[];let E1=null,ye=0;const R3=Promise.resolve();let I3=null,Y3=null;function Ge(s){const u=I3||R3;return s?u.then(this?s.bind(this):s):u}function U3(){P3||j3||(j3=!0,I3=R3.then(ge))}function re(s,u,h,g){S(s)?h.push(...s):u&&u.includes(s,s.allowRecurse?g+1:g)||h.push(s),U3()}function W3(s,u=null){if(M0.length){for(Y3=u,qe=[...new Set(M0)],M0.length=0,a0=0;a0<qe.length;a0++)qe[a0]();qe=null,a0=0,Y3=null,W3(s,u)}}const ae=s=>s.id==null?1/0:s.id;function ge(s){j3=!1,P3=!0,W3(s),t0.sort((u,h)=>ae(u)-ae(h));try{for(j1=0;j1<t0.length;j1++){const u=t0[j1];u&&We(u,null,14)}}finally{j1=0,t0.length=0,function(u){if(R1.length){const h=[...new Set(R1)];if(R1.length=0,E1)return void E1.push(...h);for(E1=h,E1.sort((g,L)=>ae(g)-ae(L)),ye=0;ye<E1.length;ye++)E1[ye]();E1=null,ye=0}}(),P3=!1,I3=null,(t0.length||R1.length)&&ge(s)}}let q3=0;const f3=s=>q3+=s;let G3=null;function X3(s){return B(s)&&(s=s()),S(s)&&(s=function(u){let h;for(let g=0;g<u.length;g++){const L=u[g];if(!g3(L))return;if(L.type!==y3||L.children==="v-if"){if(h)return;h=L}}return h}(s)),bt(s)}const yt={};function S9(s,u,{immediate:h,deep:g,flush:L,onTrack:j,onTrigger:G}=k,e2=Lt){let a2,K,C2=!1;if(ke(s)?(a2=()=>s.value,C2=!!s._shallow):Z0(s)?(a2=()=>s,g=!0):a2=S(s)?()=>s.map(A2=>ke(A2)?A2.value:Z0(A2)?L1(A2):B(A2)?We(A2,e2,2,[e2&&e2.proxy]):void 0):B(s)?u?()=>We(s,e2,2,[e2&&e2.proxy]):()=>{if(!e2||!e2.isUnmounted)return K&&K(),H9(s,e2,3,[m2])}:m,u&&g){const A2=a2;a2=()=>L1(A2())}let m2=A2=>{K=N2.options.onStop=()=>{We(A2,e2,4)}},f2=S(s)?[]:yt;const $2=()=>{if(N2.active)if(u){const A2=N2();(g||C2||z(A2,f2))&&(K&&K(),H9(u,e2,3,[A2,f2===yt?void 0:f2,m2]),f2=A2)}else N2()};let P2;$2.allowRecurse=!!u,P2=L==="sync"?$2:L==="post"?()=>be($2,e2&&e2.suspense):()=>{!e2||e2.isMounted?function(A2){re(A2,qe,M0,a0)}($2):$2()};const N2=I(a2,{lazy:!0,onTrack:j,onTrigger:G,scheduler:P2});return function(A2,e0=Lt){e0&&(e0.effects||(e0.effects=[])).push(A2)}(N2,e2),u?h?$2():f2=N2():L==="post"?be(N2,e2&&e2.suspense):N2(),()=>{t2(N2),e2&&((A2,e0)=>{const k0=A2.indexOf(e0);k0>-1&&A2.splice(k0,1)})(e2.effects,N2)}}function k3(s,u,h){const g=this.proxy;return S9(O(s)?()=>g[s]:s.bind(g),u.bind(g),h,this)}function L1(s,u=new Set){if(!N(s)||u.has(s))return s;if(u.add(s),ke(s))L1(s.value,u);else if(S(s))for(let h=0;h<s.length;h++)L1(s[h],u);else if(Y(s)==="[object Set]"||x(s))s.forEach(h=>{L1(h,u)});else for(const h in s)L1(s[h],u);return s}const be=function(s,u){u&&u.pendingBranch?S(s)?u.effects.push(...s):u.effects.push(s):re(s,E1,R1,ye)},gt=Symbol(),E9=Symbol(void 0),D9=Symbol(void 0),y3=Symbol(void 0);function g3(s){return!!s&&s.__v_isVNode===!0}const b3="__vInternal",M3=({key:s})=>s??null,y1=({ref:s})=>s!=null?O(s)||ke(s)||B(s)?{i:G3,r:s}:s:null,d1=function(s,u=null,h=null,g=0,L=null,j=!1){if(s&&s!==gt||(s=y3),g3(s)){const K=Xe(s,u,!0);return h&&Ke(K,h),K}if(G=s,B(G)&&"__vccOpts"in G&&(s=s.__vccOpts),u){(ne(u)||b3 in u)&&(u=f({},u));let{class:K,style:C2}=u;K&&!O(K)&&(u.class=C(K)),N(C2)&&(ne(C2)&&!S(C2)&&(C2=f({},C2)),u.style=i(C2))}var G;const e2=O(s)?1:(K=>K.__isSuspense)(s)?128:(K=>K.__isTeleport)(s)?64:N(s)?4:B(s)?2:0,a2={__v_isVNode:!0,__v_skip:!0,type:s,props:u,key:u&&M3(u),ref:u&&y1(u),scopeId:null,slotScopeIds:null,children:null,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:e2,patchFlag:g,dynamicProps:L,dynamicChildren:null,appContext:null};if(Ke(a2,h),128&e2){const{content:K,fallback:C2}=function(m2){const{shapeFlag:f2,children:$2}=m2;let P2,N2;return 32&f2?(P2=X3($2.default),N2=X3($2.fallback)):(P2=X3($2),N2=bt(null)),{content:P2,fallback:N2}}(a2);a2.ssContent=K,a2.ssFallback=C2}return a2};function Xe(s,u,h=!1){const{props:g,ref:L,patchFlag:j,children:G}=s,e2=u?function(...a2){const K=f({},a2[0]);for(let C2=1;C2<a2.length;C2++){const m2=a2[C2];for(const f2 in m2)if(f2==="class")K.class!==m2.class&&(K.class=C([K.class,m2.class]));else if(f2==="style")K.style=i([K.style,m2.style]);else if(b(f2)){const $2=K[f2],P2=m2[f2];$2!==P2&&(K[f2]=$2?[].concat($2,m2[f2]):P2)}else f2!==""&&(K[f2]=m2[f2])}return K}(g||{},u):g;return{__v_isVNode:!0,__v_skip:!0,type:s.type,props:e2,key:e2&&M3(e2),ref:u&&u.ref?h&&L?S(L)?L.concat(y1(u)):[L,y1(u)]:y1(u):L,scopeId:s.scopeId,slotScopeIds:s.slotScopeIds,children:G,target:s.target,targetAnchor:s.targetAnchor,staticCount:s.staticCount,shapeFlag:s.shapeFlag,patchFlag:u&&s.type!==E9?j===-1?16:16|j:j,dynamicProps:s.dynamicProps,dynamicChildren:s.dynamicChildren,appContext:s.appContext,dirs:s.dirs,transition:s.transition,component:s.component,suspense:s.suspense,ssContent:s.ssContent&&Xe(s.ssContent),ssFallback:s.ssFallback&&Xe(s.ssFallback),el:s.el,anchor:s.anchor}}function T9(s=" ",u=0){return d1(D9,null,s,u)}function bt(s){return s==null||typeof s=="boolean"?d1(y3):S(s)?d1(E9,null,s):typeof s=="object"?s.el===null?s:Xe(s):d1(D9,null,String(s))}function Ke(s,u){let h=0;const{shapeFlag:g}=s;if(u==null)u=null;else if(S(u))h=16;else if(typeof u=="object"){if(1&g||64&g){const L=u.default;return void(L&&(L._c&&f3(1),Ke(s,L()),L._c&&f3(-1)))}h=32,!u._&&!(b3 in u)&&(u._ctx=G3)}else B(u)?(u={default:u,_ctx:G3},h=32):(u=String(u),64&g?(h=16,u=[T9(u)]):h=8);s.children=u,s.shapeFlag|=h}function Me(s,u,h){const g=h.appContext.config.optionMergeStrategies,{mixins:L,extends:j}=u;j&&Me(s,j,h),L&&L.forEach(G=>Me(s,G,h));for(const G in u)g&&V(g,G)?s[G]=g[G](s[G],u[G],h.proxy,G):s[G]=u[G]}const Z9=s=>s?4&s.vnode.shapeFlag?s.exposed?s.exposed:s.proxy:Z9(s.parent):null,Qe=f(Object.create(null),{$:s=>s,$el:s=>s.vnode.el,$data:s=>s.data,$props:s=>s.props,$attrs:s=>s.attrs,$slots:s=>s.slots,$refs:s=>s.refs,$parent:s=>Z9(s.parent),$root:s=>Z9(s.root),$emit:s=>s.emit,$options:s=>function(u){const h=u.type,{__merged:g,mixins:L,extends:j}=h;if(g)return g;const G=u.appContext.mixins;if(!G.length&&!L&&!j)return h;const e2={};return G.forEach(a2=>Me(e2,a2,u)),Me(e2,h,u),h.__merged=e2}(s),$forceUpdate:s=>()=>function(u){if(!(t0.length&&t0.includes(u,P3&&u.allowRecurse?j1+1:j1)||u===Y3)){const h=function(g){let L=j1+1,j=t0.length;const G=ae(g);for(;L<j;){const e2=L+j>>>1;ae(t0[e2])<G?L=e2+1:j=e2}return L}(u);h>-1?t0.splice(h,0,u):t0.push(u),U3()}}(s.update),$nextTick:s=>Ge.bind(s.proxy),$watch:s=>k3.bind(s)}),Mt={get({_:s},u){const{ctx:h,setupState:g,data:L,props:j,accessCache:G,type:e2,appContext:a2}=s;if(u==="__v_skip")return!0;let K;if(u[0]!=="$"){const $2=G[u];if($2!==void 0)switch($2){case 0:return g[u];case 1:return L[u];case 3:return h[u];case 2:return j[u]}else{if(g!==k&&V(g,u))return G[u]=0,g[u];if(L!==k&&V(L,u))return G[u]=1,L[u];if((K=s.propsOptions[0])&&V(K,u))return G[u]=2,j[u];if(h!==k&&V(h,u))return G[u]=3,h[u];G[u]=4}}const C2=Qe[u];let m2,f2;return C2?(u==="$attrs"&&U(s,0,u),C2(s)):(m2=e2.__cssModules)&&(m2=m2[u])?m2:h!==k&&V(h,u)?(G[u]=3,h[u]):(f2=a2.config.globalProperties,V(f2,u)?f2[u]:void 0)},set({_:s},u,h){const{data:g,setupState:L,ctx:j}=s;if(L!==k&&V(L,u))L[u]=h;else if(g!==k&&V(g,u))g[u]=h;else if(V(s.props,u))return!1;return!(u[0]==="$"&&u.slice(1)in s||(j[u]=h,0))},has({_:{data:s,setupState:u,accessCache:h,ctx:g,appContext:L,propsOptions:j}},G){let e2;return h[G]!==void 0||s!==k&&V(s,G)||u!==k&&V(u,G)||(e2=j[0])&&V(e2,G)||V(g,G)||V(Qe,G)||V(L.config.globalProperties,G)}};f({},Mt,{get(s,u){if(u!==Symbol.unscopables)return Mt.get(s,u,s)},has:(s,u)=>u[0]!=="_"&&!l(u)});let Lt=null;function A0(s,u,h){const g=arguments.length;return g===2?N(u)&&!S(u)?g3(u)?d1(s,null,[u]):d1(s,u):d1(s,null,u):(g>3?h=Array.prototype.slice.call(arguments,2):g===3&&g3(h)&&(h=[h]),d1(s,u,h))}var I1=typeof window<"u"&&window.document!==void 0,Y1=I1?window:{},K3=!(!I1||!Y1.document.documentElement)&&"ontouchstart"in Y1.document.documentElement,L3=!!I1&&"PointerEvent"in Y1,r0="cropper",Q3="all",wt="crop",w1="move",w3="zoom",le="e",ie="w",Le="s",U1="n",u1="ne",Je="nw",e3="se",t3="sw",J3="".concat(r0,"-crop"),vt="".concat(r0,"-disabled"),B2="".concat(r0,"-hidden"),q="".concat(r0,"-hide"),V2="".concat(r0,"-invisible"),D2="".concat(r0,"-modal"),l0="".concat(r0,"-move"),_0="".concat(r0,"Action"),x0="".concat(r0,"Preview"),q0="crop",v1="move",we="crop",z0="cropend",e9="cropmove",t9="cropstart",n7="dblclick",r7=L3?"pointerdown":K3?"touchstart":"mousedown",a7=L3?"pointermove":K3?"touchmove":"mousemove",l7=L3?"pointerup pointercancel":K3?"touchend touchcancel":"mouseup",i7="resize",s7="wheel",t6="zoom",jC="image/jpeg",RC=/^e|w|s|n|se|sw|ne|nw|all|crop|move|zoom$/,IC=/^data:/,YC=/^data:image\/jpegbase64,/;function o6(s,u){(u==null||u>s.length)&&(u=s.length);for(var h=0,g=new Array(u);h<u;h++)g[h]=s[h];return g}function c7(s,u){var h=Object.keys(s);if(Object.getOwnPropertySymbols){var g=Object.getOwnPropertySymbols(s);u&&(g=g.filter(function(L){return Object.getOwnPropertyDescriptor(s,L).enumerable})),h.push.apply(h,g)}return h}function d7(s){for(var u=1;u<arguments.length;u++){var h=arguments[u]!=null?arguments[u]:{};u%2?c7(Object(h),!0).forEach(function(g){UC(s,g,h[g])}):Object.getOwnPropertyDescriptors?Object.defineProperties(s,Object.getOwnPropertyDescriptors(h)):c7(Object(h)).forEach(function(g){Object.defineProperty(s,g,Object.getOwnPropertyDescriptor(h,g))})}return s}function UC(s,u,h){return u in s?Object.defineProperty(s,u,{value:h,enumerable:!0,configurable:!0,writable:!0}):s[u]=h,s}function u7(s){return(u7=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(u){return typeof u}:function(u){return u&&typeof Symbol=="function"&&u.constructor===Symbol&&u!==Symbol.prototype?"symbol":typeof u})(s)}var WC=Number.isNaN||Y1.isNaN;function Y2(s){return typeof s=="number"&&!WC(s)}var C7=function(s){return s>0&&s<1/0};function n6(s){return s===void 0}function v3(s){return u7(s)==="object"&&s!==null}var qC=Object.prototype.hasOwnProperty;function Vt(s){if(!v3(s))return!1;try{var u=s.constructor,h=u.prototype;return u&&h&&qC.call(h,"isPrototypeOf")}catch{return!1}}function o3(s){return typeof s=="function"}var GC=Array.prototype.slice;function h7(s){return Array.from?Array.from(s):GC.call(s)}function P0(s,u){return s&&o3(u)&&(Array.isArray(s)||Y2(s.length)?h7(s).forEach(function(h,g){u.call(s,h,g,s)}):v3(s)&&Object.keys(s).forEach(function(h){u.call(s,s[h],h,s)})),s}var f0=Object.assign||function(s){for(var u=arguments.length,h=new Array(u>1?u-1:0),g=1;g<u;g++)h[g-1]=arguments[g];return v3(s)&&h.length>0&&h.forEach(function(L){v3(L)&&Object.keys(L).forEach(function(j){s[j]=L[j]})}),s},XC=/\.\d*(?:0|9){12}\d*$/;function o9(s){var u=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1e11;return XC.test(s)?Math.round(s*u)/u:s}var KC=/^width|height|left|top|marginLeft|marginTop$/;function n3(s,u){var h=s.style;P0(u,function(g,L){KC.test(L)&&Y2(g)&&(g="".concat(g,"px")),h[L]=g})}function L0(s,u){if(u)if(Y2(s.length))P0(s,function(g){L0(g,u)});else if(s.classList)s.classList.add(u);else{var h=s.className.trim();h?h.indexOf(u)<0&&(s.className="".concat(h," ").concat(u)):s.className=u}}function C1(s,u){u&&(Y2(s.length)?P0(s,function(h){C1(h,u)}):s.classList?s.classList.remove(u):s.className.indexOf(u)>=0&&(s.className=s.className.replace(u,"")))}function n9(s,u,h){u&&(Y2(s.length)?P0(s,function(g){n9(g,u,h)}):h?L0(s,u):C1(s,u))}var QC=/([a-z\d])([A-Z])/g;function r6(s){return s.replace(QC,"$1-$2").toLowerCase()}function a6(s,u){return v3(s[u])?s[u]:s.dataset?s.dataset[u]:s.getAttribute("data-".concat(r6(u)))}function A9(s,u,h){v3(h)?s[u]=h:s.dataset?s.dataset[u]=h:s.setAttribute("data-".concat(r6(u)),h)}var p7=/\s\s*/,m7=function(){var s=!1;if(I1){var u=!1,h=function(){},g=Object.defineProperty({},"once",{get:function(){return s=!0,u},set:function(L){u=L}});Y1.addEventListener("test",h,g),Y1.removeEventListener("test",h,g)}return s}();function W1(s,u,h){var g=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},L=h;u.trim().split(p7).forEach(function(j){if(!m7){var G=s.listeners;G&&G[j]&&G[j][h]&&(L=G[j][h],delete G[j][h],Object.keys(G[j]).length===0&&delete G[j],Object.keys(G).length===0&&delete s.listeners)}s.removeEventListener(j,L,g)})}function q1(s,u,h){var g=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},L=h;u.trim().split(p7).forEach(function(j){if(g.once&&!m7){var G=s.listeners,e2=G===void 0?{}:G;L=function(){delete e2[j][h],s.removeEventListener(j,L,g);for(var a2=arguments.length,K=new Array(a2),C2=0;C2<a2;C2++)K[C2]=arguments[C2];h.apply(s,K)},e2[j]||(e2[j]={}),e2[j][h]&&s.removeEventListener(j,e2[j][h],g),e2[j][h]=L,s.listeners=e2}s.addEventListener(j,L,g)})}function $9(s,u,h){var g;return o3(Event)&&o3(CustomEvent)?g=new CustomEvent(u,{detail:h,bubbles:!0,cancelable:!0}):(g=document.createEvent("CustomEvent")).initCustomEvent(u,!0,!0,h),s.dispatchEvent(g)}function f7(s){var u=s.getBoundingClientRect();return{left:u.left+(window.pageXOffset-document.documentElement.clientLeft),top:u.top+(window.pageYOffset-document.documentElement.clientTop)}}var l6=Y1.location,JC=/^(\w+:)\/\/([^:/?#]*):?(\d*)/i;function k7(s){var u=s.match(JC);return u!==null&&(u[1]!==l6.protocol||u[2]!==l6.hostname||u[3]!==l6.port)}function y7(s){var u="timestamp=".concat(new Date().getTime());return s+(s.indexOf("?")===-1?"?":"&")+u}function N9(s){var u=s.rotate,h=s.scaleX,g=s.scaleY,L=s.translateX,j=s.translateY,G=[];Y2(L)&&L!==0&&G.push("translateX(".concat(L,"px)")),Y2(j)&&j!==0&&G.push("translateY(".concat(j,"px)")),Y2(u)&&u!==0&&G.push("rotate(".concat(u,"deg)")),Y2(h)&&h!==1&&G.push("scaleX(".concat(h,")")),Y2(g)&&g!==1&&G.push("scaleY(".concat(g,")"));var e2=G.length?G.join(" "):"none";return{WebkitTransform:e2,msTransform:e2,transform:e2}}function _t(s,u){var h=s.pageX,g=s.pageY,L={endX:h,endY:g};return u?L:d7({startX:h,startY:g},L)}function r3(s){var u=s.aspectRatio,h=s.height,g=s.width,L=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"contain",j=C7(g),G=C7(h);if(j&&G){var e2=h*u;L==="contain"&&e2>g||L==="cover"&&e2<g?h=g/u:g=h*u}else j?h=g/u:G&&(g=h*u);return{width:g,height:h}}function eh(s,u,h,g){var L,j=u.aspectRatio,G=u.naturalWidth,e2=u.naturalHeight,a2=u.rotate,K=a2===void 0?0:a2,C2=u.scaleX,m2=C2===void 0?1:C2,f2=u.scaleY,$2=f2===void 0?1:f2,P2=h.aspectRatio,N2=h.naturalWidth,A2=h.naturalHeight,e0=g.fillColor,k0=e0===void 0?"transparent":e0,o0=g.imageSmoothingEnabled,j0=o0===void 0||o0,_2=g.imageSmoothingQuality,d0=_2===void 0?"low":_2,$0=g.maxWidth,g1=$0===void 0?1/0:$0,h1=g.maxHeight,t1=h1===void 0?1/0:h1,ve=g.minWidth,I0=ve===void 0?0:ve,o1=g.minHeight,a3=o1===void 0?0:o1,D1=document.createElement("canvas"),n1=D1.getContext("2d"),O9=r3({aspectRatio:P2,width:g1,height:t1}),z9=r3({aspectRatio:P2,width:I0,height:a3},"cover"),s6=Math.min(O9.width,Math.max(z9.width,N2)),c6=Math.min(O9.height,Math.max(z9.height,A2)),M7=r3({aspectRatio:j,width:g1,height:t1}),L7=r3({aspectRatio:j,width:I0,height:a3},"cover"),w7=Math.min(M7.width,Math.max(L7.width,G)),v7=Math.min(M7.height,Math.max(L7.height,e2)),ch=[-w7/2,-v7/2,w7,v7];return D1.width=o9(s6),D1.height=o9(c6),n1.fillStyle=k0,n1.fillRect(0,0,s6,c6),n1.save(),n1.translate(s6/2,c6/2),n1.rotate(K*Math.PI/180),n1.scale(m2,$2),n1.imageSmoothingEnabled=j0,n1.imageSmoothingQuality=d0,n1.drawImage.apply(n1,[s].concat(function(G0){if(Array.isArray(G0))return o6(G0)}(L=ch.map(function(G0){return Math.floor(o9(G0))}))||function(G0){if(typeof Symbol<"u"&&G0[Symbol.iterator]!=null||G0["@@iterator"]!=null)return Array.from(G0)}(L)||function(G0,V7){if(G0){if(typeof G0=="string")return o6(G0,V7);var r9=Object.prototype.toString.call(G0).slice(8,-1);return r9==="Object"&&G0.constructor&&(r9=G0.constructor.name),r9==="Map"||r9==="Set"?Array.from(G0):r9==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r9)?o6(G0,V7):void 0}}(L)||function(){throw new TypeError(`Invalid attempt to spread non-iterable instance.
|
|
2
|
+
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}())),n1.restore(),D1}var g7=String.fromCharCode,th=/^data:.*,/;const oh={methods:{render:function(){this.initCanvas(),this.initCropBox(),this.renderCanvas(),this.cropped&&this.renderCropBox()},initContainer:function(){var s=this.element,u=this.$props,h=this.container,g=this.cropper,L=Number(u.minContainerWidth),j=Number(u.minContainerHeight);L0(g,B2),C1(s,B2);var G={width:Math.max(h.offsetWidth,L>=0?L:200),height:Math.max(h.offsetHeight,j>=0?j:100)};this.containerData=G,n3(g,{width:G.width,height:G.height}),L0(s,B2),C1(g,B2)},initCanvas:function(){var s=this.containerData,u=this.imageData,h=this.viewMode,g=Math.abs(u.rotate)%180==90,L=g?u.naturalHeight:u.naturalWidth,j=g?u.naturalWidth:u.naturalHeight,G=L/j,e2=s.width,a2=s.height;s.height*G>s.width?h===3?e2=s.height*G:a2=s.width/G:h===3?a2=s.width/G:e2=s.height*G;var K={aspectRatio:G,naturalWidth:L,naturalHeight:j,width:e2,height:a2};this.canvasData=K,this.limited=h===1||h===2,this.limitCanvas(!0,!0),K.width=Math.min(Math.max(K.width,K.minWidth),K.maxWidth),K.height=Math.min(Math.max(K.height,K.minHeight),K.maxHeight),K.left=(s.width-K.width)/2,K.top=(s.height-K.height)/2,K.oldLeft=K.left,K.oldTop=K.top,this.initialCanvasData=f0({},K)},limitCanvas:function(s,u){var h=this.$props,g=this.containerData,L=this.canvasData,j=this.cropBoxData,G=h.viewMode,e2=L.aspectRatio,a2=this.cropped&&j;if(s){var K=Number(h.minCanvasWidth)||0,C2=Number(h.minCanvasHeight)||0;G>1?(K=Math.max(K,g.width),C2=Math.max(C2,g.height),G===3&&(C2*e2>K?K=C2*e2:C2=K/e2)):G>0&&(K?K=Math.max(K,a2?j.width:0):C2?C2=Math.max(C2,a2?j.height:0):a2&&(K=j.width,(C2=j.height)*e2>K?K=C2*e2:C2=K/e2));var m2=r3({aspectRatio:e2,width:K,height:C2});K=m2.width,C2=m2.height,L.minWidth=K,L.minHeight=C2,L.maxWidth=1/0,L.maxHeight=1/0}if(u)if(G>(a2?0:1)){var f2=g.width-L.width,$2=g.height-L.height;L.minLeft=Math.min(0,f2),L.minTop=Math.min(0,$2),L.maxLeft=Math.max(0,f2),L.maxTop=Math.max(0,$2),a2&&this.limited&&(L.minLeft=Math.min(j.left,j.left+(j.width-L.width)),L.minTop=Math.min(j.top,j.top+(j.height-L.height)),L.maxLeft=j.left,L.maxTop=j.top,G===2&&(L.width>=g.width&&(L.minLeft=Math.min(0,f2),L.maxLeft=Math.max(0,f2)),L.height>=g.height&&(L.minTop=Math.min(0,$2),L.maxTop=Math.max(0,$2))))}else L.minLeft=-L.width,L.minTop=-L.height,L.maxLeft=g.width,L.maxTop=g.height},initCropBox:function(){var s=this.$props,u=this.canvasData,h=s.aspectRatio||s.initialAspectRatio,g=Number(s.autoCropArea)||.8,L={width:u.width,height:u.height};h&&(u.height*h>u.width?L.height=L.width/h:L.width=L.height*h),this.cropBoxData=L,this.limitCropBox(!0,!0),L.width=Math.min(Math.max(L.width,L.minWidth),L.maxWidth),L.height=Math.min(Math.max(L.height,L.minHeight),L.maxHeight),L.width=Math.max(L.minWidth,L.width*g),L.height=Math.max(L.minHeight,L.height*g),L.left=u.left+(u.width-L.width)/2,L.top=u.top+(u.height-L.height)/2,L.oldLeft=L.left,L.oldTop=L.top,this.initialCropBoxData=f0({},L)},limitCropBox:function(s,u){var h=this.$props,g=this.containerData,L=this.canvasData,j=this.cropBoxData,G=this.limited,e2=h.aspectRatio;if(s){var a2=Number(h.minCropBoxWidth)||0,K=Number(h.minCropBoxHeight)||0,C2=G?Math.min(g.width,L.width,L.width+L.left,g.width-L.left):g.width,m2=G?Math.min(g.height,L.height,L.height+L.top,g.height-L.top):g.height;a2=Math.min(a2,g.width),K=Math.min(K,g.height),e2&&(a2&&K?K*e2>a2?K=a2/e2:a2=K*e2:a2?K=a2/e2:K&&(a2=K*e2),m2*e2>C2?m2=C2/e2:C2=m2*e2),j.minWidth=Math.min(a2,C2),j.minHeight=Math.min(K,m2),j.maxWidth=C2,j.maxHeight=m2}u&&(G?(j.minLeft=Math.max(0,L.left),j.minTop=Math.max(0,L.top),j.maxLeft=Math.min(g.width,L.left+L.width)-j.width,j.maxTop=Math.min(g.height,L.top+L.height)-j.height):(j.minLeft=0,j.minTop=0,j.maxLeft=g.width-j.width,j.maxTop=g.height-j.height))},renderCanvas:function(s,u){var h=this.canvasData,g=this.imageData;if(u){var L=function(K){var C2=K.width,m2=K.height,f2=K.degree;if((f2=Math.abs(f2)%180)==90)return{width:m2,height:C2};var $2=f2%90*Math.PI/180,P2=Math.sin($2),N2=Math.cos($2),A2=C2*N2+m2*P2,e0=C2*P2+m2*N2;return f2>90?{width:e0,height:A2}:{width:A2,height:e0}}({width:g.naturalWidth*Math.abs(g.scaleX||1),height:g.naturalHeight*Math.abs(g.scaleY||1),degree:g.rotate||0}),j=L.width,G=L.height,e2=h.width*(j/h.naturalWidth),a2=h.height*(G/h.naturalHeight);h.left-=(e2-h.width)/2,h.top-=(a2-h.height)/2,h.width=e2,h.height=a2,h.aspectRatio=j/G,h.naturalWidth=j,h.naturalHeight=G,this.limitCanvas(!0,!1)}(h.width>h.maxWidth||h.width<h.minWidth)&&(h.left=h.oldLeft),(h.height>h.maxHeight||h.height<h.minHeight)&&(h.top=h.oldTop),h.width=Math.min(Math.max(h.width,h.minWidth),h.maxWidth),h.height=Math.min(Math.max(h.height,h.minHeight),h.maxHeight),this.limitCanvas(!1,!0),h.left=Math.min(Math.max(h.left,h.minLeft),h.maxLeft),h.top=Math.min(Math.max(h.top,h.minTop),h.maxTop),h.oldLeft=h.left,h.oldTop=h.top,n3(this.canvas,f0({width:h.width,height:h.height},N9({translateX:h.left,translateY:h.top}))),this.renderImage(s),this.cropped&&this.limited&&this.limitCropBox(!0,!0)},renderImage:function(s){var u=this.canvasData,h=this.imageData,g=h.naturalWidth*(u.width/u.naturalWidth),L=h.naturalHeight*(u.height/u.naturalHeight);f0(h,{width:g,height:L,left:(u.width-g)/2,top:(u.height-L)/2}),n3(this.image,f0({width:h.width,height:h.height},N9(f0({translateX:h.left,translateY:h.top},h)))),s&&this.output()},renderCropBox:function(){var s=this.$props,u=this.containerData,h=this.cropBoxData;(h.width>h.maxWidth||h.width<h.minWidth)&&(h.left=h.oldLeft),(h.height>h.maxHeight||h.height<h.minHeight)&&(h.top=h.oldTop),h.width=Math.min(Math.max(h.width,h.minWidth),h.maxWidth),h.height=Math.min(Math.max(h.height,h.minHeight),h.maxHeight),this.limitCropBox(!1,!0),h.left=Math.min(Math.max(h.left,h.minLeft),h.maxLeft),h.top=Math.min(Math.max(h.top,h.minTop),h.maxTop),h.oldLeft=h.left,h.oldTop=h.top,s.movable&&s.cropBoxMovable&&A9(this.face,_0,h.width>=u.width&&h.height>=u.height?w1:Q3),n3(this.cropBox,f0({width:h.width,height:h.height},N9({translateX:h.left,translateY:h.top}))),this.cropped&&this.limited&&this.limitCanvas(!0,!0),this.disabled||this.output()},output:function(){this.preview(),$9(this.element,we,this.getData())}}};function nh(s){return function(u){if(Array.isArray(u))return i6(u)}(s)||function(u){if(typeof Symbol<"u"&&u[Symbol.iterator]!=null||u["@@iterator"]!=null)return Array.from(u)}(s)||function(u,h){if(u){if(typeof u=="string")return i6(u,h);var g=Object.prototype.toString.call(u).slice(8,-1);return g==="Object"&&u.constructor&&(g=u.constructor.name),g==="Map"||g==="Set"?Array.from(u):g==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(g)?i6(u,h):void 0}}(s)||function(){throw new TypeError(`Invalid attempt to spread non-iterable instance.
|
|
3
|
+
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}()}function i6(s,u){(u==null||u>s.length)&&(u=s.length);for(var h=0,g=new Array(u);h<u;h++)g[h]=s[h];return g}const rh={methods:{crop:function(){return!this.ready||this.cropped||this.disabled||(this.cropped=!0,this.limitCropBox(!0,!0),this.modal&&L0(this.dragBox,D2),C1(this.cropBox,B2),this.setCropBoxData(this.initialCropBoxData)),this},reset:function(){return this.ready&&!this.disabled&&(this.imageData=f0({},this.initialImageData),this.canvasData=f0({},this.initialCanvasData),this.cropBoxData=f0({},this.initialCropBoxData),this.renderCanvas(),this.cropped&&this.renderCropBox()),this},clear:function(){return this.cropped&&!this.disabled&&(f0(this.cropBoxData,{left:0,top:0,width:0,height:0}),this.cropped=!1,this.renderCropBox(),this.limitCanvas(!0,!0),this.renderCanvas(),C1(this.dragBox,D2),L0(this.cropBox,B2)),this},enable:function(){return this.ready&&this.disabled&&(this.disabled=!1,C1(this.cropper,vt)),this},disable:function(){return this.ready&&!this.disabled&&(this.disabled=!0,L0(this.cropper,vt)),this},destroy:function(){var s=this.element;return s.cropper?(s.cropper=void 0,this.isImg&&this.replaced&&(s.src=this.originalUrl),this):this},move:function(s){var u=arguments.length>1&&arguments[1]!==void 0?arguments[1]:s,h=this.canvasData,g=h.left,L=h.top;return this.moveTo(n6(s)?s:g+Number(s),n6(u)?u:L+Number(u))},moveTo:function(s){var u=arguments.length>1&&arguments[1]!==void 0?arguments[1]:s,h=this.canvasData,g=!1;return s=Number(s),u=Number(u),this.ready&&!this.disabled&&this.movable&&(Y2(s)&&(h.left=s,g=!0),Y2(u)&&(h.top=u,g=!0),g&&this.renderCanvas(!0)),this},zoom:function(s,u){var h=this.canvasData;return s=(s=Number(s))<0?1/(1-s):1+s,this.zoomTo(h.width*s/h.naturalWidth,null,u)},zoomTo:function(s,u,h){var g=this.canvasData,L=g.width,j=g.height,G=g.naturalWidth,e2=g.naturalHeight;if((s=Number(s))>=0&&this.ready&&!this.disabled&&this.zoomable){var a2=G*s,K=e2*s;if($9(this.element,t6,{ratio:s,oldRatio:L/G,originalEvent:h})===!1)return this;if(h){var C2=this.pointers,m2=f7(this.cropper),f2=C2&&Object.keys(C2).length?function($2){var P2=0,N2=0,A2=0;return P0($2,function(e0){var k0=e0.startX,o0=e0.startY;P2+=k0,N2+=o0,A2+=1}),{pageX:P2/=A2,pageY:N2/=A2}}(C2):{pageX:h.pageX,pageY:h.pageY};g.left-=(a2-L)*((f2.pageX-m2.left-g.left)/L),g.top-=(K-j)*((f2.pageY-m2.top-g.top)/j)}else Vt(u)&&Y2(u.x)&&Y2(u.y)?(g.left-=(a2-L)*((u.x-g.left)/L),g.top-=(K-j)*((u.y-g.top)/j)):(g.left-=(a2-L)/2,g.top-=(K-j)/2);g.width=a2,g.height=K,this.renderCanvas(!0)}return this},rotate:function(s){return this.rotateTo((this.imageData.rotate||0)+Number(s))},rotateTo:function(s){return Y2(s=Number(s))&&this.ready&&!this.disabled&&this.rotatable&&(this.imageData.rotate=s%360,this.renderCanvas(!0,!0)),this},scaleX:function(s){var u=this.imageData.scaleY;return this.scale(s,Y2(u)?u:1)},scaleY:function(s){var u=this.imageData.scaleX;return this.scale(Y2(u)?u:1,s)},scale:function(s){var u=arguments.length>1&&arguments[1]!==void 0?arguments[1]:s,h=this.imageData,g=!1;return s=Number(s),u=Number(u),this.ready&&!this.disabled&&this.scalable&&(Y2(s)&&(h.scaleX=s,g=!0),Y2(u)&&(h.scaleY=u,g=!0),g&&this.renderCanvas(!0,!0)),this},getData:function(){var s,u=arguments.length>0&&arguments[0]!==void 0&&arguments[0],h=this.imageData,g=this.canvasData,L=this.cropBoxData;if(this.ready&&this.cropped){s={x:L.left-g.left,y:L.top-g.top,width:L.width,height:L.height};var j=h.width/h.naturalWidth;if(P0(s,function(a2,K){s[K]=a2/j}),u){var G=Math.round(s.y+s.height),e2=Math.round(s.x+s.width);s.x=Math.round(s.x),s.y=Math.round(s.y),s.width=e2-s.x,s.height=G-s.y}}else s={x:0,y:0,width:0,height:0};return this.rotatable&&(s.rotate=h.rotate||0),this.scalable&&(s.scaleX=h.scaleX||1,s.scaleY=h.scaleY||1),s},setData:function(s){var u=this.$props,h=this.imageData,g=this.canvasData,L={};if(this.ready&&!this.disabled&&Vt(s)){var j=!1;u.rotatable&&Y2(s.rotate)&&s.rotate!==h.rotate&&(h.rotate=s.rotate,j=!0),u.scalable&&(Y2(s.scaleX)&&s.scaleX!==h.scaleX&&(h.scaleX=s.scaleX,j=!0),Y2(s.scaleY)&&s.scaleY!==h.scaleY&&(h.scaleY=s.scaleY,j=!0)),j&&this.renderCanvas(!0,!0);var G=h.width/h.naturalWidth;Y2(s.x)&&(L.left=s.x*G+g.left),Y2(s.y)&&(L.top=s.y*G+g.top),Y2(s.width)&&(L.width=s.width*G),Y2(s.height)&&(L.height=s.height*G),this.setCropBoxData(L)}return this},getContainerData:function(){return this.ready?f0({},this.containerData):{}},getImageData:function(){return this.sized?f0({},this.imageData):{}},getCanvasData:function(){var s=this.canvasData,u={};return this.ready&&P0(["left","top","width","height","naturalWidth","naturalHeight"],function(h){u[h]=s[h]}),u},setCanvasData:function(s){var u=this.canvasData,h=u.aspectRatio;return this.ready&&!this.disabled&&Vt(s)&&(Y2(s.left)&&(u.left=s.left),Y2(s.top)&&(u.top=s.top),Y2(s.width)?(u.width=s.width,u.height=s.width/h):Y2(s.height)&&(u.height=s.height,u.width=s.height*h),this.renderCanvas(!0)),this},getCropBoxData:function(){var s,u=this.cropBoxData;return this.ready&&this.cropped&&(s={left:u.left,top:u.top,width:u.width,height:u.height}),s||{}},setCropBoxData:function(s){var u,h,g=this.cropBoxData,L=this.aspectRatio;return this.ready&&this.cropped&&!this.disabled&&Vt(s)&&(Y2(s.left)&&(g.left=s.left),Y2(s.top)&&(g.top=s.top),Y2(s.width)&&s.width!==g.width&&(u=!0,g.width=s.width),Y2(s.height)&&s.height!==g.height&&(h=!0,g.height=s.height),L&&(u?g.height=g.width/L:h&&(g.width=g.height*L)),this.renderCropBox()),this},getCroppedCanvas:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};if(!this.ready||!window.HTMLCanvasElement)return null;var u=this.canvasData,h=eh(this.image,this.imageData,u,s);if(!this.cropped)return h;var g=this.getData(),L=g.x,j=g.y,G=g.width,e2=g.height,a2=h.width/Math.floor(u.naturalWidth);a2!==1&&(L*=a2,j*=a2,G*=a2,e2*=a2);var K=G/e2,C2=r3({aspectRatio:K,width:s.maxWidth||1/0,height:s.maxHeight||1/0}),m2=r3({aspectRatio:K,width:s.minWidth||0,height:s.minHeight||0},"cover"),f2=r3({aspectRatio:K,width:s.width||(a2!==1?h.width:G),height:s.height||(a2!==1?h.height:e2)}),$2=f2.width,P2=f2.height;$2=Math.min(C2.width,Math.max(m2.width,$2)),P2=Math.min(C2.height,Math.max(m2.height,P2));var N2=document.createElement("canvas"),A2=N2.getContext("2d");N2.width=o9($2),N2.height=o9(P2),A2.fillStyle=s.fillColor||"transparent",A2.fillRect(0,0,$2,P2);var e0=s.imageSmoothingEnabled,k0=e0===void 0||e0,o0=s.imageSmoothingQuality;A2.imageSmoothingEnabled=k0,o0&&(A2.imageSmoothingQuality=o0);var j0,_2,d0,$0,g1,h1,t1=h.width,ve=h.height,I0=L,o1=j;I0<=-G||I0>t1?(I0=0,j0=0,d0=0,g1=0):I0<=0?(d0=-I0,I0=0,g1=j0=Math.min(t1,G+I0)):I0<=t1&&(d0=0,g1=j0=Math.min(G,t1-I0)),j0<=0||o1<=-e2||o1>ve?(o1=0,_2=0,$0=0,h1=0):o1<=0?($0=-o1,o1=0,h1=_2=Math.min(ve,e2+o1)):o1<=ve&&($0=0,h1=_2=Math.min(e2,ve-o1));var a3=[I0,o1,j0,_2];if(g1>0&&h1>0){var D1=$2/G;a3.push(d0*D1,$0*D1,g1*D1,h1*D1)}return A2.drawImage.apply(A2,[h].concat(nh(a3.map(function(n1){return Math.floor(o9(n1))})))),N2},setAspectRatio:function(s){var u=this.options;return this.disabled||n6(s)||(u.aspectRatio=Math.max(0,s)||NaN,this.ready&&(this.initCropBox(),this.cropped&&this.renderCropBox())),this},setDragMode:function(){var s=this.$props,u=this.dragBox,h=this.face;if(this.ready&&!this.disabled){var g=s.dragMode===q0,L=s.movable&&s.dragMode===v1;A9(u,_0,s.dragMode),n9(u,J3,g),n9(u,l0,L),s.cropBoxMovable||(A9(h,_0,s.dragMode),n9(h,J3,g),n9(h,l0,L))}return this},getCropData:function(s,u){var h,g={outputType:"image/jpeg"};u===void 0?h=s:(g=f0(g,s),h=u),h(this.getCroppedCanvas(g).toDataURL(g.outputType))},getCropBlob:function(s,u){var h,g={outputType:"image/jpeg"};u===void 0?h=s:(g=f0(g,s),h=u),this.getCroppedCanvas(g).toBlob(function(L){h(L)},g.outputType,1)}}},ah={methods:{change:function(s){var u,h=this.$props,g=this.canvasData,L=this.containerData,j=this.cropBoxData,G=this.pointers,e2=this.action,a2=h.aspectRatio,K=j.left,C2=j.top,m2=j.width,f2=j.height,$2=K+m2,P2=C2+f2,N2=0,A2=0,e0=L.width,k0=L.height,o0=!0;!a2&&s.shiftKey&&(a2=m2&&f2?m2/f2:1),this.limited&&(N2=j.minLeft,A2=j.minTop,e0=N2+Math.min(L.width,g.width,g.left+g.width),k0=A2+Math.min(L.height,g.height,g.top+g.height));var j0=G[Object.keys(G)[0]],_2={x:j0.endX-j0.startX,y:j0.endY-j0.startY},d0=function($0){switch($0){case le:$2+_2.x>e0&&(_2.x=e0-$2);break;case ie:K+_2.x<N2&&(_2.x=N2-K);break;case U1:C2+_2.y<A2&&(_2.y=A2-C2);break;case Le:P2+_2.y>k0&&(_2.y=k0-P2)}};switch(e2){case Q3:K+=_2.x,C2+=_2.y;break;case le:if(_2.x>=0&&($2>=e0||a2&&(C2<=A2||P2>=k0))){o0=!1;break}d0(le),(m2+=_2.x)<0&&(e2=ie,K-=m2=-m2),a2&&(f2=m2/a2,C2+=(j.height-f2)/2);break;case U1:if(_2.y<=0&&(C2<=A2||a2&&(K<=N2||$2>=e0))){o0=!1;break}d0(U1),f2-=_2.y,C2+=_2.y,f2<0&&(e2=Le,C2-=f2=-f2),a2&&(m2=f2*a2,K+=(j.width-m2)/2);break;case ie:if(_2.x<=0&&(K<=N2||a2&&(C2<=A2||P2>=k0))){o0=!1;break}d0(ie),m2-=_2.x,K+=_2.x,m2<0&&(e2=le,K-=m2=-m2),a2&&(f2=m2/a2,C2+=(j.height-f2)/2);break;case Le:if(_2.y>=0&&(P2>=k0||a2&&(K<=N2||$2>=e0))){o0=!1;break}d0(Le),(f2+=_2.y)<0&&(e2=U1,C2-=f2=-f2),a2&&(m2=f2*a2,K+=(j.width-m2)/2);break;case u1:if(a2){if(_2.y<=0&&(C2<=A2||$2>=e0)){o0=!1;break}d0(U1),f2-=_2.y,C2+=_2.y,m2=f2*a2}else d0(U1),d0(le),_2.x>=0?$2<e0?m2+=_2.x:_2.y<=0&&C2<=A2&&(o0=!1):m2+=_2.x,_2.y<=0?C2>A2&&(f2-=_2.y,C2+=_2.y):(f2-=_2.y,C2+=_2.y);m2<0&&f2<0?(e2=t3,C2-=f2=-f2,K-=m2=-m2):m2<0?(e2=Je,K-=m2=-m2):f2<0&&(e2=e3,C2-=f2=-f2);break;case Je:if(a2){if(_2.y<=0&&(C2<=A2||K<=N2)){o0=!1;break}d0(U1),f2-=_2.y,C2+=_2.y,m2=f2*a2,K+=j.width-m2}else d0(U1),d0(ie),_2.x<=0?K>N2?(m2-=_2.x,K+=_2.x):_2.y<=0&&C2<=A2&&(o0=!1):(m2-=_2.x,K+=_2.x),_2.y<=0?C2>A2&&(f2-=_2.y,C2+=_2.y):(f2-=_2.y,C2+=_2.y);m2<0&&f2<0?(e2=e3,C2-=f2=-f2,K-=m2=-m2):m2<0?(e2=u1,K-=m2=-m2):f2<0&&(e2=t3,C2-=f2=-f2);break;case t3:if(a2){if(_2.x<=0&&(K<=N2||P2>=k0)){o0=!1;break}d0(ie),m2-=_2.x,K+=_2.x,f2=m2/a2}else d0(Le),d0(ie),_2.x<=0?K>N2?(m2-=_2.x,K+=_2.x):_2.y>=0&&P2>=k0&&(o0=!1):(m2-=_2.x,K+=_2.x),_2.y>=0?P2<k0&&(f2+=_2.y):f2+=_2.y;m2<0&&f2<0?(e2=u1,C2-=f2=-f2,K-=m2=-m2):m2<0?(e2=e3,K-=m2=-m2):f2<0&&(e2=Je,C2-=f2=-f2);break;case e3:if(a2){if(_2.x>=0&&($2>=e0||P2>=k0)){o0=!1;break}d0(le),f2=(m2+=_2.x)/a2}else d0(Le),d0(le),_2.x>=0?$2<e0?m2+=_2.x:_2.y>=0&&P2>=k0&&(o0=!1):m2+=_2.x,_2.y>=0?P2<k0&&(f2+=_2.y):f2+=_2.y;m2<0&&f2<0?(e2=Je,C2-=f2=-f2,K-=m2=-m2):m2<0?(e2=t3,K-=m2=-m2):f2<0&&(e2=u1,C2-=f2=-f2);break;case w1:this.move(_2.x,_2.y),o0=!1;break;case w3:this.zoom(function($0){var g1=d7({},$0),h1=0;return P0($0,function(t1,ve){delete g1[ve],P0(g1,function(I0){var o1=Math.abs(t1.startX-I0.startX),a3=Math.abs(t1.startY-I0.startY),D1=Math.abs(t1.endX-I0.endX),n1=Math.abs(t1.endY-I0.endY),O9=Math.sqrt(o1*o1+a3*a3),z9=(Math.sqrt(D1*D1+n1*n1)-O9)/O9;Math.abs(z9)>Math.abs(h1)&&(h1=z9)})}),h1}(G),s),o0=!1;break;case wt:if(!_2.x||!_2.y){o0=!1;break}u=f7(this.cropper),K=j0.startX-u.left,C2=j0.startY-u.top,m2=j.minWidth,f2=j.minHeight,_2.x>0?e2=_2.y>0?e3:u1:_2.x<0&&(K-=m2,e2=_2.y>0?t3:Je),_2.y<0&&(C2-=f2),this.cropped||(C1(this.cropBox,B2),this.cropped=!0,this.limited&&this.limitCropBox(!0,!0))}o0&&(j.width=m2,j.height=f2,j.left=K,j.top=C2,this.action=e2,this.renderCropBox()),P0(G,function($0){$0.startX=$0.endX,$0.startY=$0.endY})}}},lh={methods:{resize:function(){if(!this.disabled){var s,u,h=this.$props,g=this.container,L=this.containerData,j=g.offsetWidth/L.width,G=g.offsetHeight/L.height,e2=Math.abs(j-1)>Math.abs(G-1)?j:G;e2!==1&&(h.restore&&(s=this.getCanvasData(),u=this.getCropBoxData()),this.render(),h.restore&&(this.setCanvasData(P0(s,function(a2,K){s[K]=a2*e2})),this.setCropBoxData(P0(u,function(a2,K){u[K]=a2*e2}))))}},dblclick:function(){var s,u;this.disabled||this.dragMode==="none"||this.setDragMode((s=this.dragBox,u=J3,(s.classList?s.classList.contains(u):s.className.indexOf(u)>-1)?v1:q0))},wheel:function(s){var u=this,h=Number(this.wheelZoomRatio)||.1,g=1;this.disabled||(s.preventDefault(),this.wheeling||(this.wheeling=!0,setTimeout(function(){u.wheeling=!1},50),s.deltaY?g=s.deltaY>0?1:-1:s.wheelDelta?g=-s.wheelDelta/120:s.detail&&(g=s.detail>0?1:-1),this.zoom(-g*h,s)))},cropStart:function(s){var u=s.buttons,h=s.button;if(!(this.disabled||(s.type==="mousedown"||s.type==="pointerdown"&&s.pointerType==="mouse")&&(Y2(u)&&u!==1||Y2(h)&&h!==0||s.ctrlKey))){var g,L=this.$props,j=this.pointers;s.changedTouches?P0(s.changedTouches,function(G){j[G.identifier]=_t(G)}):j[s.pointerId||0]=_t(s),g=Object.keys(j).length>1&&L.zoomable&&L.zoomOnTouch?w3:a6(s.target,_0),RC.test(g)&&$9(this.element,t9,{originalEvent:s,action:g})!==!1&&(s.preventDefault(),this.action=g,this.cropping=!1,g===wt&&(this.cropping=!0,L0(this.dragBox,D2)))}},cropMove:function(s){var u=this.action;if(!this.disabled&&u){var h=this.pointers;s.preventDefault(),$9(this.element,e9,{originalEvent:s,action:u})!==!1&&(s.changedTouches?P0(s.changedTouches,function(g){f0(h[g.identifier]||{},_t(g,!0))}):f0(h[s.pointerId||0]||{},_t(s,!0)),this.change(s))}},cropEnd:function(s){if(!this.disabled){var u=this.action,h=this.pointers;s.changedTouches?P0(s.changedTouches,function(g){delete h[g.identifier]}):delete h[s.pointerId||0],u&&(s.preventDefault(),Object.keys(h).length||(this.action=""),this.cropping&&(this.cropping=!1,n9(this.dragBox,D2,this.cropped&&this.modal)),$9(this.element,z0,{originalEvent:s,action:u}))}}}},b7=(F9={name:"V3Cropper",render:function(){return A0("div",[A0("img",{src:this.src,id:"element",style:{display:"none"}})])},props:{src:{type:[String,Blob,null,File],default:""},viewMode:{type:Number,default:0},dragMode:{type:String,default:"crop"},initialAspectRatio:{type:Number,default:NaN},data:{type:Object,default:null},responsive:{type:Boolean,default:!0},restore:{type:Boolean,default:!0},checkCrossOrigin:{type:Boolean,default:!0},modal:{type:Boolean,default:!0},guides:{type:Boolean,default:!0},center:{type:Boolean,default:!0},highlight:{type:Boolean,default:!0},background:{type:Boolean,default:!0},autoCrop:{type:Boolean,default:!0},autoCropArea:{type:Number,default:.8},movable:{type:Boolean,default:!0},rotatable:{type:Boolean,default:!0},scalable:{type:Boolean,default:!0},zoomable:{type:Boolean,default:!0},zoomOnTouch:{type:Boolean,default:!0},zoomOnWheel:{type:Boolean,default:!0},wheelZoomRatio:{type:Number,default:.1},cropBoxMovable:{type:Boolean,default:!0},cropBoxResizable:{type:Boolean,default:!0},toggleDragModeOnDblclick:{type:Boolean,default:!0},minContainerWidth:{type:Number,default:200},minContainerHeight:{type:Number,default:100},minCanvasWidth:{type:Number,default:0},minCanvasHeight:{type:Number,default:0},minCropBoxWidth:{type:Number,default:0},minCropBoxHeight:{type:Number,default:0},maxImgSize:{type:[Number,String],default:2e3}},data:function(){return{element:{},cropped:!1,disabled:!1,pointers:{},ready:!1,reloading:!1,replaced:!1,sized:!1,sizing:!1,checkOrientation:!0,xhr:{},limited:"",isImg:!1,originalUrl:"",crossOriginUrl:"",url:"",sizingImage:"",image:{},imageData:{},initialImageData:{},container:{},cropper:{},canvas:{},dragBox:{},cropBox:{},viewBox:{},viewBoxImage:{},face:{},containerData:{},canvasData:{},initialCanvasData:{},initialCropBoxData:{},cropBoxData:{}}},mixins:[{methods:{initPreview:function(){var s=this.element,u=this.crossOrigin,h=this.preview,g=u?this.crossOriginUrl:this.url,L=s.alt||"The image to preview",j=document.createElement("img");if(u&&(j.crossOrigin=u),j.src=g,j.alt=L,this.viewBox.appendChild(j),this.viewBoxImage=j,h){var G=h;typeof h=="string"?G=s.ownerDocument.querySelectorAll(h):h.querySelector&&(G=[h]),this.previews=G,P0(G,function(e2){var a2=document.createElement("img");A9(e2,x0,{width:e2.offsetWidth,height:e2.offsetHeight,html:e2.innerHTML}),u&&(a2.crossOrigin=u),a2.src=g,a2.alt=L,a2.style.cssText='display:block;width:100%;height:auto;min-width:0!important;min-height:0!important;max-width:none!important;max-height:none!important;image-orientation:0deg!important;"',e2.innerHTML="",e2.appendChild(a2)})}},resetPreview:function(){P0(this.previews,function(s){var u=a6(s,x0);n3(s,{width:u.width,height:u.height}),s.innerHTML=u.html,function(h,g){if(v3(h[g]))try{delete h[g]}catch{h[g]=void 0}else if(h.dataset)try{delete h.dataset[g]}catch{h.dataset[g]=void 0}else h.removeAttribute("data-".concat(r6(g)))}(s,x0)})},preview:function(){var s=this.imageData,u=this.canvasData,h=this.cropBoxData,g=h.width,L=h.height,j=s.width,G=s.height,e2=h.left-u.left-s.left,a2=h.top-u.top-s.top;this.cropped&&!this.disabled&&(n3(this.viewBoxImage,f0({width:j,height:G},N9(f0({translateX:-e2,translateY:-a2},s)))),P0(this.previews,function(K){var C2=a6(K,x0),m2=C2.width,f2=C2.height,$2=m2,P2=f2,N2=1;g&&(P2=L*(N2=m2/g)),L&&P2>f2&&($2=g*(N2=f2/L),P2=f2),n3(K,{width:$2,height:P2}),n3(K.getElementsByTagName("img")[0],f0({width:j*N2,height:G*N2},N9(f0({translateX:-e2*N2,translateY:-a2*N2},s))))}))}}},oh,rh,{methods:{bind:function(){var s=this.element,u=this.$props,h=this.cropper;q1(s,t9,this.cropstart),q1(s,e9,this.cropmove),q1(s,z0,this.cropend),q1(s,we,this.cropping),q1(s,t6,this.zooming),q1(h,r7,this.onCropStart=this.cropStart.bind(this)),u.zoomable&&u.zoomOnWheel&&q1(h,s7,this.onWheel=this.wheel.bind(this),{passive:!1,capture:!0}),u.toggleDragModeOnDblclick&&q1(h,n7,this.onDblclick=this.dblclick.bind(this)),q1(s.ownerDocument,a7,this.onCropMove=this.cropMove.bind(this)),q1(s.ownerDocument,l7,this.onCropEnd=this.cropEnd.bind(this)),u.responsive&&q1(window,i7,this.onResize=this.resize.bind(this))},unbind:function(){var s=this.element,u=this.$props,h=this.cropper;o3(u.cropstart)&&W1(s,t9,u.cropstart),o3(u.cropmove)&&W1(s,e9,u.cropmove),o3(u.cropend)&&W1(s,z0,u.cropend),o3(u.crop)&&W1(s,we,u.crop),o3(u.zoom)&&W1(s,t6,u.zoom),W1(h,r7,this.onCropStart),u.zoomable&&u.zoomOnWheel&&W1(h,s7,this.onWheel,{passive:!1,capture:!0}),u.toggleDragModeOnDblclick&&W1(h,n7,this.onDblclick),W1(s.ownerDocument,a7,this.onCropMove),W1(s.ownerDocument,l7,this.onCropEnd),u.responsive&&W1(window,i7,this.onResize)}}},ah,lh,{methods:{onReady:function(){this.$emit("ready")},cropstart:function(s){this.$emit("cropStart",s)},cropmove:function(s){this.$emit("cropMove",s)},cropend:function(s){this.$emit("cropEnd",s)},cropping:function(s){this.$emit("crop",s)},zooming:function(s){this.$emit("zoom",s)}}},{watch:{dragMode:function(){this.setDragMode()},viewMode:function(){this.imageData=f0({},this.initialImageData),this.initCanvas(),this.reset()},src:function(s){var u=this.viewBox,h=this.canvas;u.removeChild(u.getElementsByTagName("img")[0]),h.removeChild(h.getElementsByTagName("img")[0]),s?this.loadImage(s):(this.clear(),this.unbind())},modal:function(s){s?L0(this.dragBox,D2):C1(this.dragBox,D2)},guides:function(s){s?L0(this.cropBox.getElementsByClassName("".concat(r0,"-dashed")),B2):C1(this.cropBox.getElementsByClassName("".concat(r0,"-dashed")),B2)},center:function(s){s?L0(this.cropBox.getElementsByClassName("".concat(r0,"-center")),B2):C1(this.cropBox.getElementsByClassName("".concat(r0,"-center")),B2)},highlight:function(s){s?L0(this.face,V2):C1(this.face,V2)},background:function(s){s?L0(this.cropper,"".concat(r0,"-bg")):C1(this.cropper,"".concat(r0,"-bg"))}}},{methods:{builder:function(){var s=this.element,u=this.$props,h=s.parentNode,g=document.createElement("div");g.innerHTML=`
|
|
4
|
+
<div class="cropper-container" touch-action="none">
|
|
5
|
+
<div class="cropper-wrap-box">
|
|
6
|
+
<div class="cropper-canvas">
|
|
7
|
+
</div>
|
|
8
|
+
</div>
|
|
9
|
+
<div class="cropper-drag-box"></div>
|
|
10
|
+
<div class="cropper-crop-box">
|
|
11
|
+
<span class="cropper-view-box">
|
|
12
|
+
</span>
|
|
13
|
+
<span class="cropper-dashed dashed-h"></span>
|
|
14
|
+
<span class="cropper-dashed dashed-v"></span>
|
|
15
|
+
<span class="cropper-center"></span>
|
|
16
|
+
<span class="cropper-face"></span>
|
|
17
|
+
<span class="cropper-line line-e" data-cropper-action="e"></span>
|
|
18
|
+
<span class="cropper-line line-n" data-cropper-action="n"></span>
|
|
19
|
+
<span class="cropper-line line-w" data-cropper-action="w"></span>
|
|
20
|
+
<span class="cropper-line line-s" data-cropper-action="s"></span>
|
|
21
|
+
<span class="cropper-point point-e" data-cropper-action="e"></span>
|
|
22
|
+
<span class="cropper-point point-n" data-cropper-action="n"></span>
|
|
23
|
+
<span class="cropper-point point-w" data-cropper-action="w"></span>
|
|
24
|
+
<span class="cropper-point point-s" data-cropper-action="s"></span>
|
|
25
|
+
<span class="cropper-point point-ne" data-cropper-action="ne"></span>
|
|
26
|
+
<span class="cropper-point point-nw" data-cropper-action="nw"></span>
|
|
27
|
+
<span class="cropper-point point-sw" data-cropper-action="sw"></span>
|
|
28
|
+
<span class="cropper-point point-se" data-cropper-action="se"></span>
|
|
29
|
+
</div>
|
|
30
|
+
</div>
|
|
31
|
+
`;var L=g.querySelector(".".concat(r0,"-container")),j=L.querySelector(".".concat(r0,"-canvas")),G=L.querySelector(".".concat(r0,"-drag-box")),e2=L.querySelector(".".concat(r0,"-crop-box")),a2=e2.querySelector(".".concat(r0,"-face"));this.container=h,this.cropper=L,this.canvas=j,this.dragBox=G,this.cropBox=e2,this.viewBox=L.querySelector(".".concat(r0,"-view-box")),this.face=a2,L0(s,B2),L0(e2,B2),u.guides||L0(e2.getElementsByClassName("".concat(r0,"-dashed")),B2),u.center||L0(e2.getElementsByClassName("".concat(r0,"-center")),B2),u.background&&L0(L,"".concat(r0,"-bg")),u.highlight||L0(a2,V2),u.cropBoxMovable&&(L0(a2,l0),A9(a2,_0,Q3)),u.cropBoxResizable||(L0(e2.getElementsByClassName("".concat(r0,"-line")),B2),L0(e2.getElementsByClassName("".concat(r0,"-point")),B2)),h.insertBefore(L,s.nextSibling),this.initContainer(),this.ready=!0,this.onReady(),this.setDragMode()}}}],mounted:function(){this.element=document.getElementById("element"),this.builder(),this.loadImage()},methods:{loadImage:function(s){var u=this.element;u.cropper=this,this.isImg=!0;var h=s||u.getAttribute("src");this.originalUrl=h,h&&this.load(h)},load:function(s){var u=this;if(s){this.url=s,this.imageData={};var h=this.element,g=this.$props;if(g.rotatable||g.scalable||(this.checkOrientation=!1),this.checkOrientation&&window.ArrayBuffer)if(IC.test(s))YC.test(s)?this.read((L=s.replace(th,""),j=atob(L),G=new ArrayBuffer(j.length),P0(e2=new Uint8Array(G),function(C2,m2){e2[m2]=j.charCodeAt(m2)}),G)):this.clone();else{var L,j,G,e2,a2=new XMLHttpRequest,K=this.clone.bind(this);this.reloading=!0,this.xhr=a2,a2.onabort=K,a2.onerror=K,a2.ontimeout=K,a2.onprogress=function(){a2.getResponseHeader("content-type")!==jC&&a2.abort()},a2.onload=function(){u.read(a2.response)},a2.onloadend=function(){u.reloading=!1,u.xhr=null},this.checkCrossOrigin&&k7(s)&&h.crossOrigin&&(s=y7(s)),a2.open("GET",s,!0),a2.responseType="arraybuffer",a2.withCredentials=h.crossOrigin==="use-credentials",a2.send()}else this.clone()}},read:function(s){var u=this.$props,h=this.imageData,g=function(a2){var K,C2=new DataView(a2);try{var m2,f2,$2;if(C2.getUint8(0)===255&&C2.getUint8(1)===216)for(var P2=C2.byteLength,N2=2;N2+1<P2;){if(C2.getUint8(N2)===255&&C2.getUint8(N2+1)===225){f2=N2;break}N2+=1}if(f2){var A2=f2+10;if(function(d0,$0,g1){var h1="";g1+=$0;for(var t1=$0;t1<g1;t1+=1)h1+=g7(d0.getUint8(t1));return h1}(C2,f2+4,4)==="Exif"){var e0=C2.getUint16(A2);if(((m2=e0===18761)||e0===19789)&&C2.getUint16(A2+2,m2)===42){var k0=C2.getUint32(A2+4,m2);k0>=8&&($2=A2+k0)}}}if($2){var o0,j0,_2=C2.getUint16($2,m2);for(j0=0;j0<_2;j0+=1)if(o0=$2+12*j0+2,C2.getUint16(o0,m2)===274){o0+=8,K=C2.getUint16(o0,m2),C2.setUint16(o0,1,m2);break}}}catch{K=1}return K}(s),L=0,j=1,G=1;if(g>1){this.url=function(a2,K){for(var C2=[],m2=new Uint8Array(a2);m2.length>0;)C2.push(g7.apply(null,h7(m2.subarray(0,8192)))),m2=m2.subarray(8192);return"data:".concat("image/jpeg",";base64,").concat(btoa(C2.join("")))}(s);var e2=function(a2){var K=0,C2=1,m2=1;switch(a2){case 2:C2=-1;break;case 3:K=-180;break;case 4:m2=-1;break;case 5:K=90,m2=-1;break;case 6:K=90;break;case 7:K=90,C2=-1;break;case 8:K=-90}return{rotate:K,scaleX:C2,scaleY:m2}}(g);L=e2.rotate,j=e2.scaleX,G=e2.scaleY}u.rotatable&&(h.rotate=L),u.scalable&&(h.scaleX=j,h.scaleY=G),this.clone()},clone:function(){var s=this.element,u=this.url,h=s.crossOrigin,g=u;this.checkCrossOrigin&&k7(u)&&(h||(h="anonymous"),g=y7(u)),this.crossOrigin=h,this.crossOriginUrl=g;var L=document.createElement("img");this.image=L,h&&(L.crossOrigin=h),L.src=g||u,L.alt=s.alt||"The image to crop",L.onload=this.start.bind(this),L.onerror=this.stop.bind(this),L0(L,q),s.parentNode.insertBefore(L,s.nextSibling)},start:function(){var s=this;return new Promise(function(u){var h=s.image;h.onload=null,h.onerror=null,s.sizing=!0;var g=Y1.navigator&&/(?:iPad|iPhone|iPod).*?AppleWebKit/i.test(Y1.navigator.userAgent),L=function(e2,a2){f0(s.imageData,{naturalWidth:e2,naturalHeight:a2,aspectRatio:e2/a2}),s.initialImageData=f0({},s.imageData),s.sizing=!1,s.sized=!0,s.build(),u()};if(!h.naturalWidth||g){var j=document.createElement("img"),G=document.body||document.documentElement;s.sizingImage=j,j.onload=function(){L(j.width,j.height),g||G.removeChild(j)},j.src=h.src,g||(j.style.cssText="left:0;max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important;opacity:0;position:absolute;top:0;z-index:-1;",G.appendChild(j))}else L(h.naturalWidth,h.naturalHeight)})},build:function(){if(this.sized){var s=this.$props;this.initPreview(),this.bind(),C1(this.image,B2),this.canvas.appendChild(this.image),this.render(),this.setDragMode(),this.autoCrop&&this.crop(),this.setData(s.data)}},stop:function(){var s=this.image;s.onload=null,s.onerror=null,s.parentNode.removeChild(s),this.image=null},unbuild:function(){this.ready&&(this.ready=!1,this.unbind(),this.resetPreview(),this.cropper.parentNode.removeChild(this.cropper),C1(this.element,B2))},uncreate:function(){this.ready?(this.unbuild(),this.ready=!1,this.cropped=!1):this.sizing?(this.sizingImage.onload=null,this.sizing=!1,this.sized=!1):this.reloading?(this.xhr.onabort=null,this.xhr.abort()):this.image&&this.stop()}}},B(F9)?{setup:F9,name:F9.name}:F9);var F9,ih="1.1.1";const sh=b7;return r})()})})(H6);var Lo=H6.exports;const wo=x1(Lo),vo={class:"mc-cropper"},Vo=e.defineComponent({__name:"McCropper",props:{imgSrc:{type:String,default:null}},emits:["crop","ready"],setup(t,{emit:o}){const n=o,r=t,a=e.ref(null),l=e.ref(null);e.watch(()=>r.imgSrc,C=>{i(C)});const i=C=>{a.value.replace(r.imgSrc||C)},d=C=>{p(),l.value=setTimeout(C,200)},c=C=>{var k,m;(m=(k=C.target)==null?void 0:k.cropper)==null||m.getCroppedCanvas({maxWidth:650,maxHeight:650}).toBlob(y=>{n("crop",y)}),p()},p=()=>{l.value&&clearTimeout(l.value)};return(C,k)=>(e.openBlock(),e.createElementBlock("section",vo,[e.createVNode(e.unref(wo),{ref_key:"cropper",ref:a,background:"",alt:"Avatar","aspect-ratio":1/1,"initial-aspect-ratio":1/1,highlight:!1,guides:!1,zoomable:!1,"view-mode":2,src:t.imgSrc,onReady:k[0]||(k[0]=m=>n("ready",m)),onCrop:k[1]||(k[1]=m=>d(()=>c(m)))},null,8,["src"])]))}});var B6={exports:{}};(function(t,o){(function(n,r){t.exports=r()})(p1,function(){var n=1e3,r=6e4,a=36e5,l="millisecond",i="second",d="minute",c="hour",p="day",C="week",k="month",m="quarter",y="year",b="date",f="Invalid Date",M=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,V=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,S={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(w){var T=["th","st","nd","rd"],H=w%100;return"["+w+(T[(H-20)%10]||T[H]||T[0])+"]"}},x=function(w,T,H){var I=String(w);return!I||I.length>=T?w:""+Array(T+1-I.length).join(H)+w},B={s:x,z:function(w){var T=-w.utcOffset(),H=Math.abs(T),I=Math.floor(H/60),t2=H%60;return(T<=0?"+":"-")+x(I,2,"0")+":"+x(t2,2,"0")},m:function w(T,H){if(T.date()<H.date())return-w(H,T);var I=12*(H.year()-T.year())+(H.month()-T.month()),t2=T.clone().add(I,k),P=H-t2<0,$=T.clone().add(I+(P?-1:1),k);return+(-(I+(H-t2)/(P?t2-$:$-t2))||0)},a:function(w){return w<0?Math.ceil(w)||0:Math.floor(w)},p:function(w){return{M:k,y,w:C,d:p,D:b,h:c,m:d,s:i,ms:l,Q:m}[w]||String(w||"").toLowerCase().replace(/s$/,"")},u:function(w){return w===void 0}},O="en",_={};_[O]=S;var N="$isDayjsObject",Z=function(w){return w instanceof W||!(!w||!w[N])},Y=function w(T,H,I){var t2;if(!T)return O;if(typeof T=="string"){var P=T.toLowerCase();_[P]&&(t2=P),H&&(_[P]=H,t2=P);var $=T.split("-");if(!t2&&$.length>1)return w($[0])}else{var o2=T.name;_[o2]=T,t2=o2}return!I&&t2&&(O=t2),t2||!I&&O},D=function(w,T){if(Z(w))return w.clone();var H=typeof T=="object"?T:{};return H.date=w,H.args=arguments,new W(H)},z=B;z.l=Y,z.i=Z,z.w=function(w,T){return D(w,{locale:T.$L,utc:T.$u,x:T.$x,$offset:T.$offset})};var W=function(){function w(H){this.$L=Y(H.locale,null,!0),this.parse(H),this.$x=this.$x||H.x||{},this[N]=!0}var T=w.prototype;return T.parse=function(H){this.$d=function(I){var t2=I.date,P=I.utc;if(t2===null)return new Date(NaN);if(z.u(t2))return new Date;if(t2 instanceof Date)return new Date(t2);if(typeof t2=="string"&&!/Z$/i.test(t2)){var $=t2.match(M);if($){var o2=$[2]-1||0,r2=($[7]||"0").substring(0,3);return P?new Date(Date.UTC($[1],o2,$[3]||1,$[4]||0,$[5]||0,$[6]||0,r2)):new Date($[1],o2,$[3]||1,$[4]||0,$[5]||0,$[6]||0,r2)}}return new Date(t2)}(H),this.init()},T.init=function(){var H=this.$d;this.$y=H.getFullYear(),this.$M=H.getMonth(),this.$D=H.getDate(),this.$W=H.getDay(),this.$H=H.getHours(),this.$m=H.getMinutes(),this.$s=H.getSeconds(),this.$ms=H.getMilliseconds()},T.$utils=function(){return z},T.isValid=function(){return this.$d.toString()!==f},T.isSame=function(H,I){var t2=D(H);return this.startOf(I)<=t2&&t2<=this.endOf(I)},T.isAfter=function(H,I){return D(H)<this.startOf(I)},T.isBefore=function(H,I){return this.endOf(I)<D(H)},T.$g=function(H,I,t2){return z.u(H)?this[I]:this.set(t2,H)},T.unix=function(){return Math.floor(this.valueOf()/1e3)},T.valueOf=function(){return this.$d.getTime()},T.startOf=function(H,I){var t2=this,P=!!z.u(I)||I,$=z.p(H),o2=function(k2,b2){var Q=z.w(t2.$u?Date.UTC(t2.$y,b2,k2):new Date(t2.$y,b2,k2),t2);return P?Q:Q.endOf(p)},r2=function(k2,b2){return z.w(t2.toDate()[k2].apply(t2.toDate("s"),(P?[0,0,0,0]:[23,59,59,999]).slice(b2)),t2)},X=this.$W,v=this.$M,U=this.$D,h2="set"+(this.$u?"UTC":"");switch($){case y:return P?o2(1,0):o2(31,11);case k:return P?o2(1,v):o2(0,v+1);case C:var F=this.$locale().weekStart||0,i2=(X<F?X+7:X)-F;return o2(P?U-i2:U+(6-i2),v);case p:case b:return r2(h2+"Hours",0);case c:return r2(h2+"Minutes",1);case d:return r2(h2+"Seconds",2);case i:return r2(h2+"Milliseconds",3);default:return this.clone()}},T.endOf=function(H){return this.startOf(H,!1)},T.$set=function(H,I){var t2,P=z.p(H),$="set"+(this.$u?"UTC":""),o2=(t2={},t2[p]=$+"Date",t2[b]=$+"Date",t2[k]=$+"Month",t2[y]=$+"FullYear",t2[c]=$+"Hours",t2[d]=$+"Minutes",t2[i]=$+"Seconds",t2[l]=$+"Milliseconds",t2)[P],r2=P===p?this.$D+(I-this.$W):I;if(P===k||P===y){var X=this.clone().set(b,1);X.$d[o2](r2),X.init(),this.$d=X.set(b,Math.min(this.$D,X.daysInMonth())).$d}else o2&&this.$d[o2](r2);return this.init(),this},T.set=function(H,I){return this.clone().$set(H,I)},T.get=function(H){return this[z.p(H)]()},T.add=function(H,I){var t2,P=this;H=Number(H);var $=z.p(I),o2=function(v){var U=D(P);return z.w(U.date(U.date()+Math.round(v*H)),P)};if($===k)return this.set(k,this.$M+H);if($===y)return this.set(y,this.$y+H);if($===p)return o2(1);if($===C)return o2(7);var r2=(t2={},t2[d]=r,t2[c]=a,t2[i]=n,t2)[$]||1,X=this.$d.getTime()+H*r2;return z.w(X,this)},T.subtract=function(H,I){return this.add(-1*H,I)},T.format=function(H){var I=this,t2=this.$locale();if(!this.isValid())return t2.invalidDate||f;var P=H||"YYYY-MM-DDTHH:mm:ssZ",$=z.z(this),o2=this.$H,r2=this.$m,X=this.$M,v=t2.weekdays,U=t2.months,h2=t2.meridiem,F=function(b2,Q,p2,E){return b2&&(b2[Q]||b2(I,P))||p2[Q].slice(0,E)},i2=function(b2){return z.s(o2%12||12,b2,"0")},k2=h2||function(b2,Q,p2){var E=b2<12?"AM":"PM";return p2?E.toLowerCase():E};return P.replace(V,function(b2,Q){return Q||function(p2){switch(p2){case"YY":return String(I.$y).slice(-2);case"YYYY":return z.s(I.$y,4,"0");case"M":return X+1;case"MM":return z.s(X+1,2,"0");case"MMM":return F(t2.monthsShort,X,U,3);case"MMMM":return F(U,X);case"D":return I.$D;case"DD":return z.s(I.$D,2,"0");case"d":return String(I.$W);case"dd":return F(t2.weekdaysMin,I.$W,v,2);case"ddd":return F(t2.weekdaysShort,I.$W,v,3);case"dddd":return v[I.$W];case"H":return String(o2);case"HH":return z.s(o2,2,"0");case"h":return i2(1);case"hh":return i2(2);case"a":return k2(o2,r2,!0);case"A":return k2(o2,r2,!1);case"m":return String(r2);case"mm":return z.s(r2,2,"0");case"s":return String(I.$s);case"ss":return z.s(I.$s,2,"0");case"SSS":return z.s(I.$ms,3,"0");case"Z":return $}return null}(b2)||$.replace(":","")})},T.utcOffset=function(){return 15*-Math.round(this.$d.getTimezoneOffset()/15)},T.diff=function(H,I,t2){var P,$=this,o2=z.p(I),r2=D(H),X=(r2.utcOffset()-this.utcOffset())*r,v=this-r2,U=function(){return z.m($,r2)};switch(o2){case y:P=U()/12;break;case k:P=U();break;case m:P=U()/3;break;case C:P=(v-X)/6048e5;break;case p:P=(v-X)/864e5;break;case c:P=v/a;break;case d:P=v/r;break;case i:P=v/n;break;default:P=v}return t2?P:z.a(P)},T.daysInMonth=function(){return this.endOf(k).$D},T.$locale=function(){return _[this.$L]},T.locale=function(H,I){if(!H)return this.$L;var t2=this.clone(),P=Y(H,I,!0);return P&&(t2.$L=P),t2},T.clone=function(){return z.w(this.$d,this)},T.toDate=function(){return new Date(this.valueOf())},T.toJSON=function(){return this.isValid()?this.toISOString():null},T.toISOString=function(){return this.$d.toISOString()},T.toString=function(){return this.$d.toUTCString()},w}(),u2=W.prototype;return D.prototype=u2,[["$ms",l],["$s",i],["$m",d],["$H",c],["$W",p],["$M",k],["$y",y],["$D",b]].forEach(function(w){u2[w[1]]=function(T){return this.$g(T,w[0],w[1])}}),D.extend=function(w,T){return w.$i||(w(T,W,D),w.$i=!0),D},D.locale=Y,D.isDayjs=Z,D.unix=function(w){return D(1e3*w)},D.en=_[O],D.Ls=_,D.p={},D})})(B6);var x3=B6.exports;const p0=x1(x3);var S6={exports:{}};(function(t,o){(function(n,r){t.exports=r()})(p1,function(){var n={year:0,month:1,day:2,hour:3,minute:4,second:5},r={};return function(a,l,i){var d,c=function(m,y,b){b===void 0&&(b={});var f=new Date(m),M=function(V,S){S===void 0&&(S={});var x=S.timeZoneName||"short",B=V+"|"+x,O=r[B];return O||(O=new Intl.DateTimeFormat("en-US",{hour12:!1,timeZone:V,year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit",timeZoneName:x}),r[B]=O),O}(y,b);return M.formatToParts(f)},p=function(m,y){for(var b=c(m,y),f=[],M=0;M<b.length;M+=1){var V=b[M],S=V.type,x=V.value,B=n[S];B>=0&&(f[B]=parseInt(x,10))}var O=f[3],_=O===24?0:O,N=f[0]+"-"+f[1]+"-"+f[2]+" "+_+":"+f[4]+":"+f[5]+":000",Z=+m;return(i.utc(N).valueOf()-(Z-=Z%1e3))/6e4},C=l.prototype;C.tz=function(m,y){m===void 0&&(m=d);var b,f=this.utcOffset(),M=this.toDate(),V=M.toLocaleString("en-US",{timeZone:m}),S=Math.round((M-new Date(V))/1e3/60),x=15*-Math.round(M.getTimezoneOffset()/15)-S;if(!Number(x))b=this.utcOffset(0,y);else if(b=i(V,{locale:this.$L}).$set("millisecond",this.$ms).utcOffset(x,!0),y){var B=b.utcOffset();b=b.add(f-B,"minute")}return b.$x.$timezone=m,b},C.offsetName=function(m){var y=this.$x.$timezone||i.tz.guess(),b=c(this.valueOf(),y,{timeZoneName:m}).find(function(f){return f.type.toLowerCase()==="timezonename"});return b&&b.value};var k=C.startOf;C.startOf=function(m,y){if(!this.$x||!this.$x.$timezone)return k.call(this,m,y);var b=i(this.format("YYYY-MM-DD HH:mm:ss:SSS"),{locale:this.$L});return k.call(b,m,y).tz(this.$x.$timezone,!0)},i.tz=function(m,y,b){var f=b&&y,M=b||y||d,V=p(+i(),M);if(typeof m!="string")return i(m).tz(M);var S=function(_,N,Z){var Y=_-60*N*1e3,D=p(Y,Z);if(N===D)return[Y,N];var z=p(Y-=60*(D-N)*1e3,Z);return D===z?[Y,D]:[_-60*Math.min(D,z)*1e3,Math.max(D,z)]}(i.utc(m,f).valueOf(),V,M),x=S[0],B=S[1],O=i(x).utcOffset(B);return O.$x.$timezone=M,O},i.tz.guess=function(){return Intl.DateTimeFormat().resolvedOptions().timeZone},i.tz.setDefault=function(m){d=m}}})})(S6);var _o=S6.exports;const xo=x1(_o);var E6={exports:{}};(function(t,o){(function(n,r){t.exports=r()})(p1,function(){var n="minute",r=/[+-]\d\d(?::?\d\d)?/g,a=/([+-]|\d\d)/g;return function(l,i,d){var c=i.prototype;d.utc=function(f){var M={date:f,utc:!0,args:arguments};return new i(M)},c.utc=function(f){var M=d(this.toDate(),{locale:this.$L,utc:!0});return f?M.add(this.utcOffset(),n):M},c.local=function(){return d(this.toDate(),{locale:this.$L,utc:!1})};var p=c.parse;c.parse=function(f){f.utc&&(this.$u=!0),this.$utils().u(f.$offset)||(this.$offset=f.$offset),p.call(this,f)};var C=c.init;c.init=function(){if(this.$u){var f=this.$d;this.$y=f.getUTCFullYear(),this.$M=f.getUTCMonth(),this.$D=f.getUTCDate(),this.$W=f.getUTCDay(),this.$H=f.getUTCHours(),this.$m=f.getUTCMinutes(),this.$s=f.getUTCSeconds(),this.$ms=f.getUTCMilliseconds()}else C.call(this)};var k=c.utcOffset;c.utcOffset=function(f,M){var V=this.$utils().u;if(V(f))return this.$u?0:V(this.$offset)?k.call(this):this.$offset;if(typeof f=="string"&&(f=function(O){O===void 0&&(O="");var _=O.match(r);if(!_)return null;var N=(""+_[0]).match(a)||["-",0,0],Z=N[0],Y=60*+N[1]+ +N[2];return Y===0?0:Z==="+"?Y:-Y}(f),f===null))return this;var S=Math.abs(f)<=16?60*f:f,x=this;if(M)return x.$offset=S,x.$u=f===0,x;if(f!==0){var B=this.$u?this.toDate().getTimezoneOffset():-1*this.utcOffset();(x=this.local().add(S+B,n)).$offset=S,x.$x.$localOffset=B}else x=this.utc();return x};var m=c.format;c.format=function(f){var M=f||(this.$u?"YYYY-MM-DDTHH:mm:ss[Z]":"");return m.call(this,M)},c.valueOf=function(){var f=this.$utils().u(this.$offset)?0:this.$offset+(this.$x.$localOffset||this.$d.getTimezoneOffset());return this.$d.valueOf()-6e4*f},c.isUTC=function(){return!!this.$u},c.toISOString=function(){return this.toDate().toISOString()},c.toString=function(){return this.toDate().toUTCString()};var y=c.toDate;c.toDate=function(f){return f==="s"&&this.$offset?d(this.format("YYYY-MM-DD HH:mm:ss:SSS")).toDate():y.call(this)};var b=c.diff;c.diff=function(f,M,V){if(f&&this.$u===f.$u)return b.call(this,f,M,V);var S=this.local(),x=d(f).local();return b.call(S,x,M,V)}}})})(E6);var Ho=E6.exports;const Bo=x1(Ho);var D6={exports:{}};(function(t,o){(function(n,r){t.exports=r()})(p1,function(){var n={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},r=/(\[[^[]*\])|([-_:/.,()\s]+)|(A|a|Q|YYYY|YY?|ww?|MM?M?M?|Do|DD?|hh?|HH?|mm?|ss?|S{1,3}|z|ZZ?)/g,a=/\d/,l=/\d\d/,i=/\d\d?/,d=/\d*[^-_:/,()\s\d]+/,c={},p=function(M){return(M=+M)+(M>68?1900:2e3)},C=function(M){return function(V){this[M]=+V}},k=[/[+-]\d\d:?(\d\d)?|Z/,function(M){(this.zone||(this.zone={})).offset=function(V){if(!V||V==="Z")return 0;var S=V.match(/([+-]|\d\d)/g),x=60*S[1]+(+S[2]||0);return x===0?0:S[0]==="+"?-x:x}(M)}],m=function(M){var V=c[M];return V&&(V.indexOf?V:V.s.concat(V.f))},y=function(M,V){var S,x=c.meridiem;if(x){for(var B=1;B<=24;B+=1)if(M.indexOf(x(B,0,V))>-1){S=B>12;break}}else S=M===(V?"pm":"PM");return S},b={A:[d,function(M){this.afternoon=y(M,!1)}],a:[d,function(M){this.afternoon=y(M,!0)}],Q:[a,function(M){this.month=3*(M-1)+1}],S:[a,function(M){this.milliseconds=100*+M}],SS:[l,function(M){this.milliseconds=10*+M}],SSS:[/\d{3}/,function(M){this.milliseconds=+M}],s:[i,C("seconds")],ss:[i,C("seconds")],m:[i,C("minutes")],mm:[i,C("minutes")],H:[i,C("hours")],h:[i,C("hours")],HH:[i,C("hours")],hh:[i,C("hours")],D:[i,C("day")],DD:[l,C("day")],Do:[d,function(M){var V=c.ordinal,S=M.match(/\d+/);if(this.day=S[0],V)for(var x=1;x<=31;x+=1)V(x).replace(/\[|\]/g,"")===M&&(this.day=x)}],w:[i,C("week")],ww:[l,C("week")],M:[i,C("month")],MM:[l,C("month")],MMM:[d,function(M){var V=m("months"),S=(m("monthsShort")||V.map(function(x){return x.slice(0,3)})).indexOf(M)+1;if(S<1)throw new Error;this.month=S%12||S}],MMMM:[d,function(M){var V=m("months").indexOf(M)+1;if(V<1)throw new Error;this.month=V%12||V}],Y:[/[+-]?\d+/,C("year")],YY:[l,function(M){this.year=p(M)}],YYYY:[/\d{4}/,C("year")],Z:k,ZZ:k};function f(M){var V,S;V=M,S=c&&c.formats;for(var x=(M=V.replace(/(\[[^\]]+])|(LTS?|l{1,4}|L{1,4})/g,function(D,z,W){var u2=W&&W.toUpperCase();return z||S[W]||n[W]||S[u2].replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g,function(w,T,H){return T||H.slice(1)})})).match(r),B=x.length,O=0;O<B;O+=1){var _=x[O],N=b[_],Z=N&&N[0],Y=N&&N[1];x[O]=Y?{regex:Z,parser:Y}:_.replace(/^\[|\]$/g,"")}return function(D){for(var z={},W=0,u2=0;W<B;W+=1){var w=x[W];if(typeof w=="string")u2+=w.length;else{var T=w.regex,H=w.parser,I=D.slice(u2),t2=T.exec(I)[0];H.call(z,t2),D=D.replace(t2,"")}}return function(P){var $=P.afternoon;if($!==void 0){var o2=P.hours;$?o2<12&&(P.hours+=12):o2===12&&(P.hours=0),delete P.afternoon}}(z),z}}return function(M,V,S){S.p.customParseFormat=!0,M&&M.parseTwoDigitYear&&(p=M.parseTwoDigitYear);var x=V.prototype,B=x.parse;x.parse=function(O){var _=O.date,N=O.utc,Z=O.args;this.$u=N;var Y=Z[1];if(typeof Y=="string"){var D=Z[2]===!0,z=Z[3]===!0,W=D||z,u2=Z[2];z&&(u2=Z[2]),c=this.$locale(),!D&&u2&&(c=S.Ls[u2]),this.$d=function(I,t2,P,$){try{if(["x","X"].indexOf(t2)>-1)return new Date((t2==="X"?1e3:1)*I);var o2=f(t2)(I),r2=o2.year,X=o2.month,v=o2.day,U=o2.hours,h2=o2.minutes,F=o2.seconds,i2=o2.milliseconds,k2=o2.zone,b2=o2.week,Q=new Date,p2=v||(r2||X?1:Q.getDate()),E=r2||Q.getFullYear(),c2=0;r2&&!X||(c2=X>0?X-1:Q.getMonth());var y2,d2=U||0,S2=h2||0,A=F||0,R=i2||0;return k2?new Date(Date.UTC(E,c2,p2,d2,S2,A,R+60*k2.offset*1e3)):P?new Date(Date.UTC(E,c2,p2,d2,S2,A,R)):(y2=new Date(E,c2,p2,d2,S2,A,R),b2&&(y2=$(y2).week(b2).toDate()),y2)}catch{return new Date("")}}(_,Y,N,S),this.init(),u2&&u2!==!0&&(this.$L=this.locale(u2).$L),W&&_!=this.format(Y)&&(this.$d=new Date("")),c={}}else if(Y instanceof Array)for(var w=Y.length,T=1;T<=w;T+=1){Z[1]=Y[T-1];var H=S.apply(this,Z);if(H.isValid()){this.$d=H.$d,this.$L=H.$L,this.init();break}T===w&&(this.$d=new Date(""))}else B.call(this,O)}}})})(D6);var So=D6.exports;const Eo=x1(So);var Do={exports:{}};(function(t,o){(function(n,r){t.exports=r()})(p1,function(){return{name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(n){var r=["th","st","nd","rd"],a=n%100;return"["+n+(r[(a-20)%10]||r[a]||r[0])+"]"}}})})(Do);const K9={en:()=>Promise.resolve(),es:()=>Promise.resolve().then(()=>NC),pt:()=>Promise.resolve().then(()=>FC),th:()=>Promise.resolve().then(()=>OC),ru:()=>Promise.resolve().then(()=>zC),vi:()=>Promise.resolve().then(()=>PC)};p0.extend(xo),p0.extend(Bo),p0.extend(Eo);function T2(t){const o=Object.prototype.toString.call(t);return t instanceof Date||typeof t=="object"&&o==="[object Date]"?new t.constructor(+t):typeof t=="number"||o==="[object Number]"||typeof t=="string"||o==="[object String]"?new Date(t):new Date(NaN)}function Q2(t,o){return t instanceof Date?new t.constructor(o):new Date(o)}function Z1(t,o){const n=T2(t);return isNaN(o)?Q2(t,NaN):(o&&n.setDate(n.getDate()+o),n)}function A1(t,o){const n=T2(t);if(isNaN(o))return Q2(t,NaN);if(!o)return n;const r=n.getDate(),a=Q2(t,n.getTime());a.setMonth(n.getMonth()+o+1,0);const l=a.getDate();return r>=l?a:(n.setFullYear(a.getFullYear(),a.getMonth(),r),n)}function T6(t,o){const{years:n=0,months:r=0,weeks:a=0,days:l=0,hours:i=0,minutes:d=0,seconds:c=0}=o,p=T2(t),C=r||n?A1(p,r+n*12):p,k=l||a?Z1(C,l+a*7):C,m=d+i*60,b=(c+m*60)*1e3;return Q2(t,k.getTime()+b)}function To(t,o){const n=+T2(t);return Q2(t,n+o)}const Z6=6048e5,Zo=864e5,Ao=6e4,A6=36e5,$o=1e3;function No(t,o){return To(t,o*A6)}let Fo={};function i3(){return Fo}function $1(t,o){var d,c,p,C;const n=i3(),r=(o==null?void 0:o.weekStartsOn)??((c=(d=o==null?void 0:o.locale)==null?void 0:d.options)==null?void 0:c.weekStartsOn)??n.weekStartsOn??((C=(p=n.locale)==null?void 0:p.options)==null?void 0:C.weekStartsOn)??0,a=T2(t),l=a.getDay(),i=(l<r?7:0)+l-r;return a.setDate(a.getDate()-i),a.setHours(0,0,0,0),a}function H3(t){return $1(t,{weekStartsOn:1})}function $6(t){const o=T2(t),n=o.getFullYear(),r=Q2(t,0);r.setFullYear(n+1,0,4),r.setHours(0,0,0,0);const a=H3(r),l=Q2(t,0);l.setFullYear(n,0,4),l.setHours(0,0,0,0);const i=H3(l);return o.getTime()>=a.getTime()?n+1:o.getTime()>=i.getTime()?n:n-1}function N6(t){const o=T2(t);return o.setHours(0,0,0,0),o}function Q9(t){const o=T2(t),n=new Date(Date.UTC(o.getFullYear(),o.getMonth(),o.getDate(),o.getHours(),o.getMinutes(),o.getSeconds(),o.getMilliseconds()));return n.setUTCFullYear(o.getFullYear()),+t-+n}function F6(t,o){const n=N6(t),r=N6(o),a=+n-Q9(n),l=+r-Q9(r);return Math.round((a-l)/Zo)}function Oo(t){const o=$6(t),n=Q2(t,0);return n.setFullYear(o,0,4),n.setHours(0,0,0,0),H3(n)}function zo(t,o){const n=o*3;return A1(t,n)}function Jt(t,o){return A1(t,o*12)}function O6(t,o){const n=T2(t),r=T2(o),a=n.getTime()-r.getTime();return a<0?-1:a>0?1:a}function z6(t){return t instanceof Date||typeof t=="object"&&Object.prototype.toString.call(t)==="[object Date]"}function u9(t){if(!z6(t)&&typeof t!="number")return!1;const o=T2(t);return!isNaN(Number(o))}function P6(t){const o=T2(t);return Math.trunc(o.getMonth()/3)+1}function Po(t,o){const n=T2(t),r=T2(o);return n.getFullYear()-r.getFullYear()}function jo(t,o){const n=T2(t),r=T2(o),a=O6(n,r),l=Math.abs(Po(n,r));n.setFullYear(1584),r.setFullYear(1584);const i=O6(n,r)===-a,d=a*(l-+i);return d===0?0:d}function j6(t,o){const n=T2(t.start),r=T2(t.end);let a=+n>+r;const l=a?+n:+r,i=a?r:n;i.setHours(0,0,0,0);let d=1;const c=[];for(;+i<=l;)c.push(T2(i)),i.setDate(i.getDate()+d),i.setHours(0,0,0,0);return a?c.reverse():c}function s3(t){const o=T2(t),n=o.getMonth(),r=n-n%3;return o.setMonth(r,1),o.setHours(0,0,0,0),o}function Ro(t,o){const n=T2(t.start),r=T2(t.end);let a=+n>+r;const l=a?+s3(n):+s3(r);let i=s3(a?r:n),d=1;const c=[];for(;+i<=l;)c.push(T2(i)),i=zo(i,d);return a?c.reverse():c}function Io(t){const o=T2(t);return o.setDate(1),o.setHours(0,0,0,0),o}function R6(t){const o=T2(t),n=o.getFullYear();return o.setFullYear(n+1,0,0),o.setHours(23,59,59,999),o}function C9(t){const o=T2(t),n=Q2(t,0);return n.setFullYear(o.getFullYear(),0,1),n.setHours(0,0,0,0),n}function I6(t,o){var d,c,p,C;const n=i3(),r=(o==null?void 0:o.weekStartsOn)??((c=(d=o==null?void 0:o.locale)==null?void 0:d.options)==null?void 0:c.weekStartsOn)??n.weekStartsOn??((C=(p=n.locale)==null?void 0:p.options)==null?void 0:C.weekStartsOn)??0,a=T2(t),l=a.getDay(),i=(l<r?-7:0)+6-(l-r);return a.setDate(a.getDate()+i),a.setHours(23,59,59,999),a}function Y6(t){const o=T2(t),n=o.getMonth(),r=n-n%3+3;return o.setMonth(r,0),o.setHours(23,59,59,999),o}const Yo={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}},Uo=(t,o,n)=>{let r;const a=Yo[t];return typeof a=="string"?r=a:o===1?r=a.one:r=a.other.replace("{{count}}",o.toString()),n!=null&&n.addSuffix?n.comparison&&n.comparison>0?"in "+r:r+" ago":r};function e5(t){return(o={})=>{const n=o.width?String(o.width):t.defaultWidth;return t.formats[n]||t.formats[t.defaultWidth]}}const Wo={full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},qo={full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},Go={full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},Xo={date:e5({formats:Wo,defaultWidth:"full"}),time:e5({formats:qo,defaultWidth:"full"}),dateTime:e5({formats:Go,defaultWidth:"full"})},Ko={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"},Qo=(t,o,n,r)=>Ko[t];function h9(t){return(o,n)=>{const r=n!=null&&n.context?String(n.context):"standalone";let a;if(r==="formatting"&&t.formattingValues){const i=t.defaultFormattingWidth||t.defaultWidth,d=n!=null&&n.width?String(n.width):i;a=t.formattingValues[d]||t.formattingValues[i]}else{const i=t.defaultWidth,d=n!=null&&n.width?String(n.width):t.defaultWidth;a=t.values[d]||t.values[i]}const l=t.argumentCallback?t.argumentCallback(o):o;return a[l]}}const Jo={narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},en={narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},tn={narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},on={narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},nn={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},rn={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},an={ordinalNumber:(t,o)=>{const n=Number(t),r=n%100;if(r>20||r<10)switch(r%10){case 1:return n+"st";case 2:return n+"nd";case 3:return n+"rd"}return n+"th"},era:h9({values:Jo,defaultWidth:"wide"}),quarter:h9({values:en,defaultWidth:"wide",argumentCallback:t=>t-1}),month:h9({values:tn,defaultWidth:"wide"}),day:h9({values:on,defaultWidth:"wide"}),dayPeriod:h9({values:nn,defaultWidth:"wide",formattingValues:rn,defaultFormattingWidth:"wide"})};function p9(t){return(o,n={})=>{const r=n.width,a=r&&t.matchPatterns[r]||t.matchPatterns[t.defaultMatchWidth],l=o.match(a);if(!l)return null;const i=l[0],d=r&&t.parsePatterns[r]||t.parsePatterns[t.defaultParseWidth],c=Array.isArray(d)?sn(d,k=>k.test(i)):ln(d,k=>k.test(i));let p;p=t.valueCallback?t.valueCallback(c):c,p=n.valueCallback?n.valueCallback(p):p;const C=o.slice(i.length);return{value:p,rest:C}}}function ln(t,o){for(const n in t)if(Object.prototype.hasOwnProperty.call(t,n)&&o(t[n]))return n}function sn(t,o){for(let n=0;n<t.length;n++)if(o(t[n]))return n}function cn(t){return(o,n={})=>{const r=o.match(t.matchPattern);if(!r)return null;const a=r[0],l=o.match(t.parsePattern);if(!l)return null;let i=t.valueCallback?t.valueCallback(l[0]):l[0];i=n.valueCallback?n.valueCallback(i):i;const d=o.slice(a.length);return{value:i,rest:d}}}const dn=/^(\d+)(th|st|nd|rd)?/i,un=/\d+/i,Cn={narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},hn={any:[/^b/i,/^(a|c)/i]},pn={narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},mn={any:[/1/i,/2/i,/3/i,/4/i]},fn={narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},kn={narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},yn={narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},gn={narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},bn={narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},Mn={any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},Ln={ordinalNumber:cn({matchPattern:dn,parsePattern:un,valueCallback:t=>parseInt(t,10)}),era:p9({matchPatterns:Cn,defaultMatchWidth:"wide",parsePatterns:hn,defaultParseWidth:"any"}),quarter:p9({matchPatterns:pn,defaultMatchWidth:"wide",parsePatterns:mn,defaultParseWidth:"any",valueCallback:t=>t+1}),month:p9({matchPatterns:fn,defaultMatchWidth:"wide",parsePatterns:kn,defaultParseWidth:"any"}),day:p9({matchPatterns:yn,defaultMatchWidth:"wide",parsePatterns:gn,defaultParseWidth:"any"}),dayPeriod:p9({matchPatterns:bn,defaultMatchWidth:"any",parsePatterns:Mn,defaultParseWidth:"any"})},U6={code:"en-US",formatDistance:Uo,formatLong:Xo,formatRelative:Qo,localize:an,match:Ln,options:{weekStartsOn:0,firstWeekContainsDate:1}};function wn(t){const o=T2(t);return F6(o,C9(o))+1}function t5(t){const o=T2(t),n=+H3(o)-+Oo(o);return Math.round(n/Z6)+1}function o5(t,o){var C,k,m,y;const n=T2(t),r=n.getFullYear(),a=i3(),l=(o==null?void 0:o.firstWeekContainsDate)??((k=(C=o==null?void 0:o.locale)==null?void 0:C.options)==null?void 0:k.firstWeekContainsDate)??a.firstWeekContainsDate??((y=(m=a.locale)==null?void 0:m.options)==null?void 0:y.firstWeekContainsDate)??1,i=Q2(t,0);i.setFullYear(r+1,0,l),i.setHours(0,0,0,0);const d=$1(i,o),c=Q2(t,0);c.setFullYear(r,0,l),c.setHours(0,0,0,0);const p=$1(c,o);return n.getTime()>=d.getTime()?r+1:n.getTime()>=p.getTime()?r:r-1}function vn(t,o){var d,c,p,C;const n=i3(),r=(o==null?void 0:o.firstWeekContainsDate)??((c=(d=o==null?void 0:o.locale)==null?void 0:d.options)==null?void 0:c.firstWeekContainsDate)??n.firstWeekContainsDate??((C=(p=n.locale)==null?void 0:p.options)==null?void 0:C.firstWeekContainsDate)??1,a=o5(t,o),l=Q2(t,0);return l.setFullYear(a,0,r),l.setHours(0,0,0,0),$1(l,o)}function n5(t,o){const n=T2(t),r=+$1(n,o)-+vn(n,o);return Math.round(r/Z6)+1}function n0(t,o){const n=t<0?"-":"",r=Math.abs(t).toString().padStart(o,"0");return n+r}const De={y(t,o){const n=t.getFullYear(),r=n>0?n:1-n;return n0(o==="yy"?r%100:r,o.length)},M(t,o){const n=t.getMonth();return o==="M"?String(n+1):n0(n+1,2)},d(t,o){return n0(t.getDate(),o.length)},a(t,o){const n=t.getHours()/12>=1?"pm":"am";switch(o){case"a":case"aa":return n.toUpperCase();case"aaa":return n;case"aaaaa":return n[0];case"aaaa":default:return n==="am"?"a.m.":"p.m."}},h(t,o){return n0(t.getHours()%12||12,o.length)},H(t,o){return n0(t.getHours(),o.length)},m(t,o){return n0(t.getMinutes(),o.length)},s(t,o){return n0(t.getSeconds(),o.length)},S(t,o){const n=o.length,r=t.getMilliseconds(),a=Math.trunc(r*Math.pow(10,n-3));return n0(a,o.length)}},B3={am:"am",pm:"pm",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},W6={G:function(t,o,n){const r=t.getFullYear()>0?1:0;switch(o){case"G":case"GG":case"GGG":return n.era(r,{width:"abbreviated"});case"GGGGG":return n.era(r,{width:"narrow"});case"GGGG":default:return n.era(r,{width:"wide"})}},y:function(t,o,n){if(o==="yo"){const r=t.getFullYear(),a=r>0?r:1-r;return n.ordinalNumber(a,{unit:"year"})}return De.y(t,o)},Y:function(t,o,n,r){const a=o5(t,r),l=a>0?a:1-a;if(o==="YY"){const i=l%100;return n0(i,2)}return o==="Yo"?n.ordinalNumber(l,{unit:"year"}):n0(l,o.length)},R:function(t,o){const n=$6(t);return n0(n,o.length)},u:function(t,o){const n=t.getFullYear();return n0(n,o.length)},Q:function(t,o,n){const r=Math.ceil((t.getMonth()+1)/3);switch(o){case"Q":return String(r);case"QQ":return n0(r,2);case"Qo":return n.ordinalNumber(r,{unit:"quarter"});case"QQQ":return n.quarter(r,{width:"abbreviated",context:"formatting"});case"QQQQQ":return n.quarter(r,{width:"narrow",context:"formatting"});case"QQQQ":default:return n.quarter(r,{width:"wide",context:"formatting"})}},q:function(t,o,n){const r=Math.ceil((t.getMonth()+1)/3);switch(o){case"q":return String(r);case"qq":return n0(r,2);case"qo":return n.ordinalNumber(r,{unit:"quarter"});case"qqq":return n.quarter(r,{width:"abbreviated",context:"standalone"});case"qqqqq":return n.quarter(r,{width:"narrow",context:"standalone"});case"qqqq":default:return n.quarter(r,{width:"wide",context:"standalone"})}},M:function(t,o,n){const r=t.getMonth();switch(o){case"M":case"MM":return De.M(t,o);case"Mo":return n.ordinalNumber(r+1,{unit:"month"});case"MMM":return n.month(r,{width:"abbreviated",context:"formatting"});case"MMMMM":return n.month(r,{width:"narrow",context:"formatting"});case"MMMM":default:return n.month(r,{width:"wide",context:"formatting"})}},L:function(t,o,n){const r=t.getMonth();switch(o){case"L":return String(r+1);case"LL":return n0(r+1,2);case"Lo":return n.ordinalNumber(r+1,{unit:"month"});case"LLL":return n.month(r,{width:"abbreviated",context:"standalone"});case"LLLLL":return n.month(r,{width:"narrow",context:"standalone"});case"LLLL":default:return n.month(r,{width:"wide",context:"standalone"})}},w:function(t,o,n,r){const a=n5(t,r);return o==="wo"?n.ordinalNumber(a,{unit:"week"}):n0(a,o.length)},I:function(t,o,n){const r=t5(t);return o==="Io"?n.ordinalNumber(r,{unit:"week"}):n0(r,o.length)},d:function(t,o,n){return o==="do"?n.ordinalNumber(t.getDate(),{unit:"date"}):De.d(t,o)},D:function(t,o,n){const r=wn(t);return o==="Do"?n.ordinalNumber(r,{unit:"dayOfYear"}):n0(r,o.length)},E:function(t,o,n){const r=t.getDay();switch(o){case"E":case"EE":case"EEE":return n.day(r,{width:"abbreviated",context:"formatting"});case"EEEEE":return n.day(r,{width:"narrow",context:"formatting"});case"EEEEEE":return n.day(r,{width:"short",context:"formatting"});case"EEEE":default:return n.day(r,{width:"wide",context:"formatting"})}},e:function(t,o,n,r){const a=t.getDay(),l=(a-r.weekStartsOn+8)%7||7;switch(o){case"e":return String(l);case"ee":return n0(l,2);case"eo":return n.ordinalNumber(l,{unit:"day"});case"eee":return n.day(a,{width:"abbreviated",context:"formatting"});case"eeeee":return n.day(a,{width:"narrow",context:"formatting"});case"eeeeee":return n.day(a,{width:"short",context:"formatting"});case"eeee":default:return n.day(a,{width:"wide",context:"formatting"})}},c:function(t,o,n,r){const a=t.getDay(),l=(a-r.weekStartsOn+8)%7||7;switch(o){case"c":return String(l);case"cc":return n0(l,o.length);case"co":return n.ordinalNumber(l,{unit:"day"});case"ccc":return n.day(a,{width:"abbreviated",context:"standalone"});case"ccccc":return n.day(a,{width:"narrow",context:"standalone"});case"cccccc":return n.day(a,{width:"short",context:"standalone"});case"cccc":default:return n.day(a,{width:"wide",context:"standalone"})}},i:function(t,o,n){const r=t.getDay(),a=r===0?7:r;switch(o){case"i":return String(a);case"ii":return n0(a,o.length);case"io":return n.ordinalNumber(a,{unit:"day"});case"iii":return n.day(r,{width:"abbreviated",context:"formatting"});case"iiiii":return n.day(r,{width:"narrow",context:"formatting"});case"iiiiii":return n.day(r,{width:"short",context:"formatting"});case"iiii":default:return n.day(r,{width:"wide",context:"formatting"})}},a:function(t,o,n){const a=t.getHours()/12>=1?"pm":"am";switch(o){case"a":case"aa":return n.dayPeriod(a,{width:"abbreviated",context:"formatting"});case"aaa":return n.dayPeriod(a,{width:"abbreviated",context:"formatting"}).toLowerCase();case"aaaaa":return n.dayPeriod(a,{width:"narrow",context:"formatting"});case"aaaa":default:return n.dayPeriod(a,{width:"wide",context:"formatting"})}},b:function(t,o,n){const r=t.getHours();let a;switch(r===12?a=B3.noon:r===0?a=B3.midnight:a=r/12>=1?"pm":"am",o){case"b":case"bb":return n.dayPeriod(a,{width:"abbreviated",context:"formatting"});case"bbb":return n.dayPeriod(a,{width:"abbreviated",context:"formatting"}).toLowerCase();case"bbbbb":return n.dayPeriod(a,{width:"narrow",context:"formatting"});case"bbbb":default:return n.dayPeriod(a,{width:"wide",context:"formatting"})}},B:function(t,o,n){const r=t.getHours();let a;switch(r>=17?a=B3.evening:r>=12?a=B3.afternoon:r>=4?a=B3.morning:a=B3.night,o){case"B":case"BB":case"BBB":return n.dayPeriod(a,{width:"abbreviated",context:"formatting"});case"BBBBB":return n.dayPeriod(a,{width:"narrow",context:"formatting"});case"BBBB":default:return n.dayPeriod(a,{width:"wide",context:"formatting"})}},h:function(t,o,n){if(o==="ho"){let r=t.getHours()%12;return r===0&&(r=12),n.ordinalNumber(r,{unit:"hour"})}return De.h(t,o)},H:function(t,o,n){return o==="Ho"?n.ordinalNumber(t.getHours(),{unit:"hour"}):De.H(t,o)},K:function(t,o,n){const r=t.getHours()%12;return o==="Ko"?n.ordinalNumber(r,{unit:"hour"}):n0(r,o.length)},k:function(t,o,n){let r=t.getHours();return r===0&&(r=24),o==="ko"?n.ordinalNumber(r,{unit:"hour"}):n0(r,o.length)},m:function(t,o,n){return o==="mo"?n.ordinalNumber(t.getMinutes(),{unit:"minute"}):De.m(t,o)},s:function(t,o,n){return o==="so"?n.ordinalNumber(t.getSeconds(),{unit:"second"}):De.s(t,o)},S:function(t,o){return De.S(t,o)},X:function(t,o,n){const r=t.getTimezoneOffset();if(r===0)return"Z";switch(o){case"X":return G6(r);case"XXXX":case"XX":return c3(r);case"XXXXX":case"XXX":default:return c3(r,":")}},x:function(t,o,n){const r=t.getTimezoneOffset();switch(o){case"x":return G6(r);case"xxxx":case"xx":return c3(r);case"xxxxx":case"xxx":default:return c3(r,":")}},O:function(t,o,n){const r=t.getTimezoneOffset();switch(o){case"O":case"OO":case"OOO":return"GMT"+q6(r,":");case"OOOO":default:return"GMT"+c3(r,":")}},z:function(t,o,n){const r=t.getTimezoneOffset();switch(o){case"z":case"zz":case"zzz":return"GMT"+q6(r,":");case"zzzz":default:return"GMT"+c3(r,":")}},t:function(t,o,n){const r=Math.trunc(t.getTime()/1e3);return n0(r,o.length)},T:function(t,o,n){const r=t.getTime();return n0(r,o.length)}};function q6(t,o=""){const n=t>0?"-":"+",r=Math.abs(t),a=Math.trunc(r/60),l=r%60;return l===0?n+String(a):n+String(a)+o+n0(l,2)}function G6(t,o){return t%60===0?(t>0?"-":"+")+n0(Math.abs(t)/60,2):c3(t,o)}function c3(t,o=""){const n=t>0?"-":"+",r=Math.abs(t),a=n0(Math.trunc(r/60),2),l=n0(r%60,2);return n+a+o+l}const X6=(t,o)=>{switch(t){case"P":return o.date({width:"short"});case"PP":return o.date({width:"medium"});case"PPP":return o.date({width:"long"});case"PPPP":default:return o.date({width:"full"})}},K6=(t,o)=>{switch(t){case"p":return o.time({width:"short"});case"pp":return o.time({width:"medium"});case"ppp":return o.time({width:"long"});case"pppp":default:return o.time({width:"full"})}},r5={p:K6,P:(t,o)=>{const n=t.match(/(P+)(p+)?/)||[],r=n[1],a=n[2];if(!a)return X6(t,o);let l;switch(r){case"P":l=o.dateTime({width:"short"});break;case"PP":l=o.dateTime({width:"medium"});break;case"PPP":l=o.dateTime({width:"long"});break;case"PPPP":default:l=o.dateTime({width:"full"});break}return l.replace("{{date}}",X6(r,o)).replace("{{time}}",K6(a,o))}},Vn=/^D+$/,_n=/^Y+$/,xn=["D","DD","YY","YYYY"];function Q6(t){return Vn.test(t)}function J6(t){return _n.test(t)}function a5(t,o,n){const r=Hn(t,o,n);if(console.warn(r),xn.includes(t))throw new RangeError(r)}function Hn(t,o,n){const r=t[0]==="Y"?"years":"days of the month";return`Use \`${t.toLowerCase()}\` instead of \`${t}\` (in \`${o}\`) for formatting ${r} to the input \`${n}\`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`}const Bn=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,Sn=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,En=/^'([^]*?)'?$/,Dn=/''/g,Tn=/[a-zA-Z]/;function X1(t,o,n){var C,k,m,y,b,f,M,V;const r=i3(),a=(n==null?void 0:n.locale)??r.locale??U6,l=(n==null?void 0:n.firstWeekContainsDate)??((k=(C=n==null?void 0:n.locale)==null?void 0:C.options)==null?void 0:k.firstWeekContainsDate)??r.firstWeekContainsDate??((y=(m=r.locale)==null?void 0:m.options)==null?void 0:y.firstWeekContainsDate)??1,i=(n==null?void 0:n.weekStartsOn)??((f=(b=n==null?void 0:n.locale)==null?void 0:b.options)==null?void 0:f.weekStartsOn)??r.weekStartsOn??((V=(M=r.locale)==null?void 0:M.options)==null?void 0:V.weekStartsOn)??0,d=T2(t);if(!u9(d))throw new RangeError("Invalid time value");let c=o.match(Sn).map(S=>{const x=S[0];if(x==="p"||x==="P"){const B=r5[x];return B(S,a.formatLong)}return S}).join("").match(Bn).map(S=>{if(S==="''")return{isToken:!1,value:"'"};const x=S[0];if(x==="'")return{isToken:!1,value:Zn(S)};if(W6[x])return{isToken:!0,value:S};if(x.match(Tn))throw new RangeError("Format string contains an unescaped latin alphabet character `"+x+"`");return{isToken:!1,value:S}});a.localize.preprocessor&&(c=a.localize.preprocessor(d,c));const p={firstWeekContainsDate:l,weekStartsOn:i,locale:a};return c.map(S=>{if(!S.isToken)return S.value;const x=S.value;(!(n!=null&&n.useAdditionalWeekYearTokens)&&J6(x)||!(n!=null&&n.useAdditionalDayOfYearTokens)&&Q6(x))&&a5(x,o,String(t));const B=W6[x[0]];return B(d,x,a.localize,p)}).join("")}function Zn(t){const o=t.match(En);return o?o[1].replace(Dn,"'"):t}function An(t){return T2(t).getDay()}function $n(t){const o=T2(t),n=o.getFullYear(),r=o.getMonth(),a=Q2(t,0);return a.setFullYear(n,r+1,0),a.setHours(0,0,0,0),a.getDate()}function Nn(){return Object.assign({},i3())}function de(t){return T2(t).getHours()}function Fn(t){let n=T2(t).getDay();return n===0&&(n=7),n}function Te(t){return T2(t).getMinutes()}function R2(t){return T2(t).getMonth()}function S3(t){return T2(t).getSeconds()}function F2(t){return T2(t).getFullYear()}function E3(t,o){const n=T2(t),r=T2(o);return n.getTime()>r.getTime()}function m9(t,o){const n=T2(t),r=T2(o);return+n<+r}function D3(t,o){const n=T2(t),r=T2(o);return+n==+r}function On(t,o){const n=o instanceof Date?Q2(o,0):new o(0);return n.setFullYear(t.getFullYear(),t.getMonth(),t.getDate()),n.setHours(t.getHours(),t.getMinutes(),t.getSeconds(),t.getMilliseconds()),n}const zn=10;class e4{constructor(){x2(this,"subPriority",0)}validate(o,n){return!0}}class Pn extends e4{constructor(o,n,r,a,l){super(),this.value=o,this.validateValue=n,this.setValue=r,this.priority=a,l&&(this.subPriority=l)}validate(o,n){return this.validateValue(o,this.value,n)}set(o,n,r){return this.setValue(o,n,this.value,r)}}class jn extends e4{constructor(){super(...arguments);x2(this,"priority",zn);x2(this,"subPriority",-1)}set(n,r){return r.timestampIsSet?n:Q2(n,On(n,Date))}}class J2{run(o,n,r,a){const l=this.parse(o,n,r,a);return l?{setter:new Pn(l.value,this.validate,this.set,this.priority,this.subPriority),rest:l.rest}:null}validate(o,n,r){return!0}}class Rn extends J2{constructor(){super(...arguments);x2(this,"priority",140);x2(this,"incompatibleTokens",["R","u","t","T"])}parse(n,r,a){switch(r){case"G":case"GG":case"GGG":return a.era(n,{width:"abbreviated"})||a.era(n,{width:"narrow"});case"GGGGG":return a.era(n,{width:"narrow"});case"GGGG":default:return a.era(n,{width:"wide"})||a.era(n,{width:"abbreviated"})||a.era(n,{width:"narrow"})}}set(n,r,a){return r.era=a,n.setFullYear(a,0,1),n.setHours(0,0,0,0),n}}const B0={month:/^(1[0-2]|0?\d)/,date:/^(3[0-1]|[0-2]?\d)/,dayOfYear:/^(36[0-6]|3[0-5]\d|[0-2]?\d?\d)/,week:/^(5[0-3]|[0-4]?\d)/,hour23h:/^(2[0-3]|[0-1]?\d)/,hour24h:/^(2[0-4]|[0-1]?\d)/,hour11h:/^(1[0-1]|0?\d)/,hour12h:/^(1[0-2]|0?\d)/,minute:/^[0-5]?\d/,second:/^[0-5]?\d/,singleDigit:/^\d/,twoDigits:/^\d{1,2}/,threeDigits:/^\d{1,3}/,fourDigits:/^\d{1,4}/,anyDigitsSigned:/^-?\d+/,singleDigitSigned:/^-?\d/,twoDigitsSigned:/^-?\d{1,2}/,threeDigitsSigned:/^-?\d{1,3}/,fourDigitsSigned:/^-?\d{1,4}/},K1={basicOptionalMinutes:/^([+-])(\d{2})(\d{2})?|Z/,basic:/^([+-])(\d{2})(\d{2})|Z/,basicOptionalSeconds:/^([+-])(\d{2})(\d{2})((\d{2}))?|Z/,extended:/^([+-])(\d{2}):(\d{2})|Z/,extendedOptionalSeconds:/^([+-])(\d{2}):(\d{2})(:(\d{2}))?|Z/};function S0(t,o){return t&&{value:o(t.value),rest:t.rest}}function g0(t,o){const n=o.match(t);return n?{value:parseInt(n[0],10),rest:o.slice(n[0].length)}:null}function Q1(t,o){const n=o.match(t);if(!n)return null;if(n[0]==="Z")return{value:0,rest:o.slice(1)};const r=n[1]==="+"?1:-1,a=n[2]?parseInt(n[2],10):0,l=n[3]?parseInt(n[3],10):0,i=n[5]?parseInt(n[5],10):0;return{value:r*(a*A6+l*Ao+i*$o),rest:o.slice(n[0].length)}}function t4(t){return g0(B0.anyDigitsSigned,t)}function v0(t,o){switch(t){case 1:return g0(B0.singleDigit,o);case 2:return g0(B0.twoDigits,o);case 3:return g0(B0.threeDigits,o);case 4:return g0(B0.fourDigits,o);default:return g0(new RegExp("^\\d{1,"+t+"}"),o)}}function J9(t,o){switch(t){case 1:return g0(B0.singleDigitSigned,o);case 2:return g0(B0.twoDigitsSigned,o);case 3:return g0(B0.threeDigitsSigned,o);case 4:return g0(B0.fourDigitsSigned,o);default:return g0(new RegExp("^-?\\d{1,"+t+"}"),o)}}function l5(t){switch(t){case"morning":return 4;case"evening":return 17;case"pm":case"noon":case"afternoon":return 12;case"am":case"midnight":case"night":default:return 0}}function o4(t,o){const n=o>0,r=n?o:1-o;let a;if(r<=50)a=t||100;else{const l=r+50,i=Math.trunc(l/100)*100,d=t>=l%100;a=t+i-(d?100:0)}return n?a:1-a}function n4(t){return t%400===0||t%4===0&&t%100!==0}class In extends J2{constructor(){super(...arguments);x2(this,"priority",130);x2(this,"incompatibleTokens",["Y","R","u","w","I","i","e","c","t","T"])}parse(n,r,a){const l=i=>({year:i,isTwoDigitYear:r==="yy"});switch(r){case"y":return S0(v0(4,n),l);case"yo":return S0(a.ordinalNumber(n,{unit:"year"}),l);default:return S0(v0(r.length,n),l)}}validate(n,r){return r.isTwoDigitYear||r.year>0}set(n,r,a){const l=n.getFullYear();if(a.isTwoDigitYear){const d=o4(a.year,l);return n.setFullYear(d,0,1),n.setHours(0,0,0,0),n}const i=!("era"in r)||r.era===1?a.year:1-a.year;return n.setFullYear(i,0,1),n.setHours(0,0,0,0),n}}class Yn extends J2{constructor(){super(...arguments);x2(this,"priority",130);x2(this,"incompatibleTokens",["y","R","u","Q","q","M","L","I","d","D","i","t","T"])}parse(n,r,a){const l=i=>({year:i,isTwoDigitYear:r==="YY"});switch(r){case"Y":return S0(v0(4,n),l);case"Yo":return S0(a.ordinalNumber(n,{unit:"year"}),l);default:return S0(v0(r.length,n),l)}}validate(n,r){return r.isTwoDigitYear||r.year>0}set(n,r,a,l){const i=o5(n,l);if(a.isTwoDigitYear){const c=o4(a.year,i);return n.setFullYear(c,0,l.firstWeekContainsDate),n.setHours(0,0,0,0),$1(n,l)}const d=!("era"in r)||r.era===1?a.year:1-a.year;return n.setFullYear(d,0,l.firstWeekContainsDate),n.setHours(0,0,0,0),$1(n,l)}}class Un extends J2{constructor(){super(...arguments);x2(this,"priority",130);x2(this,"incompatibleTokens",["G","y","Y","u","Q","q","M","L","w","d","D","e","c","t","T"])}parse(n,r){return J9(r==="R"?4:r.length,n)}set(n,r,a){const l=Q2(n,0);return l.setFullYear(a,0,4),l.setHours(0,0,0,0),H3(l)}}class Wn extends J2{constructor(){super(...arguments);x2(this,"priority",130);x2(this,"incompatibleTokens",["G","y","Y","R","w","I","i","e","c","t","T"])}parse(n,r){return J9(r==="u"?4:r.length,n)}set(n,r,a){return n.setFullYear(a,0,1),n.setHours(0,0,0,0),n}}class qn extends J2{constructor(){super(...arguments);x2(this,"priority",120);x2(this,"incompatibleTokens",["Y","R","q","M","L","w","I","d","D","i","e","c","t","T"])}parse(n,r,a){switch(r){case"Q":case"QQ":return v0(r.length,n);case"Qo":return a.ordinalNumber(n,{unit:"quarter"});case"QQQ":return a.quarter(n,{width:"abbreviated",context:"formatting"})||a.quarter(n,{width:"narrow",context:"formatting"});case"QQQQQ":return a.quarter(n,{width:"narrow",context:"formatting"});case"QQQQ":default:return a.quarter(n,{width:"wide",context:"formatting"})||a.quarter(n,{width:"abbreviated",context:"formatting"})||a.quarter(n,{width:"narrow",context:"formatting"})}}validate(n,r){return r>=1&&r<=4}set(n,r,a){return n.setMonth((a-1)*3,1),n.setHours(0,0,0,0),n}}class Gn extends J2{constructor(){super(...arguments);x2(this,"priority",120);x2(this,"incompatibleTokens",["Y","R","Q","M","L","w","I","d","D","i","e","c","t","T"])}parse(n,r,a){switch(r){case"q":case"qq":return v0(r.length,n);case"qo":return a.ordinalNumber(n,{unit:"quarter"});case"qqq":return a.quarter(n,{width:"abbreviated",context:"standalone"})||a.quarter(n,{width:"narrow",context:"standalone"});case"qqqqq":return a.quarter(n,{width:"narrow",context:"standalone"});case"qqqq":default:return a.quarter(n,{width:"wide",context:"standalone"})||a.quarter(n,{width:"abbreviated",context:"standalone"})||a.quarter(n,{width:"narrow",context:"standalone"})}}validate(n,r){return r>=1&&r<=4}set(n,r,a){return n.setMonth((a-1)*3,1),n.setHours(0,0,0,0),n}}class Xn extends J2{constructor(){super(...arguments);x2(this,"incompatibleTokens",["Y","R","q","Q","L","w","I","D","i","e","c","t","T"]);x2(this,"priority",110)}parse(n,r,a){const l=i=>i-1;switch(r){case"M":return S0(g0(B0.month,n),l);case"MM":return S0(v0(2,n),l);case"Mo":return S0(a.ordinalNumber(n,{unit:"month"}),l);case"MMM":return a.month(n,{width:"abbreviated",context:"formatting"})||a.month(n,{width:"narrow",context:"formatting"});case"MMMMM":return a.month(n,{width:"narrow",context:"formatting"});case"MMMM":default:return a.month(n,{width:"wide",context:"formatting"})||a.month(n,{width:"abbreviated",context:"formatting"})||a.month(n,{width:"narrow",context:"formatting"})}}validate(n,r){return r>=0&&r<=11}set(n,r,a){return n.setMonth(a,1),n.setHours(0,0,0,0),n}}class Kn extends J2{constructor(){super(...arguments);x2(this,"priority",110);x2(this,"incompatibleTokens",["Y","R","q","Q","M","w","I","D","i","e","c","t","T"])}parse(n,r,a){const l=i=>i-1;switch(r){case"L":return S0(g0(B0.month,n),l);case"LL":return S0(v0(2,n),l);case"Lo":return S0(a.ordinalNumber(n,{unit:"month"}),l);case"LLL":return a.month(n,{width:"abbreviated",context:"standalone"})||a.month(n,{width:"narrow",context:"standalone"});case"LLLLL":return a.month(n,{width:"narrow",context:"standalone"});case"LLLL":default:return a.month(n,{width:"wide",context:"standalone"})||a.month(n,{width:"abbreviated",context:"standalone"})||a.month(n,{width:"narrow",context:"standalone"})}}validate(n,r){return r>=0&&r<=11}set(n,r,a){return n.setMonth(a,1),n.setHours(0,0,0,0),n}}function Qn(t,o,n){const r=T2(t),a=n5(r,n)-o;return r.setDate(r.getDate()-a*7),r}class Jn extends J2{constructor(){super(...arguments);x2(this,"priority",100);x2(this,"incompatibleTokens",["y","R","u","q","Q","M","L","I","d","D","i","t","T"])}parse(n,r,a){switch(r){case"w":return g0(B0.week,n);case"wo":return a.ordinalNumber(n,{unit:"week"});default:return v0(r.length,n)}}validate(n,r){return r>=1&&r<=53}set(n,r,a,l){return $1(Qn(n,a,l),l)}}function er(t,o){const n=T2(t),r=t5(n)-o;return n.setDate(n.getDate()-r*7),n}class tr extends J2{constructor(){super(...arguments);x2(this,"priority",100);x2(this,"incompatibleTokens",["y","Y","u","q","Q","M","L","w","d","D","e","c","t","T"])}parse(n,r,a){switch(r){case"I":return g0(B0.week,n);case"Io":return a.ordinalNumber(n,{unit:"week"});default:return v0(r.length,n)}}validate(n,r){return r>=1&&r<=53}set(n,r,a){return H3(er(n,a))}}const or=[31,28,31,30,31,30,31,31,30,31,30,31],nr=[31,29,31,30,31,30,31,31,30,31,30,31];class rr extends J2{constructor(){super(...arguments);x2(this,"priority",90);x2(this,"subPriority",1);x2(this,"incompatibleTokens",["Y","R","q","Q","w","I","D","i","e","c","t","T"])}parse(n,r,a){switch(r){case"d":return g0(B0.date,n);case"do":return a.ordinalNumber(n,{unit:"date"});default:return v0(r.length,n)}}validate(n,r){const a=n.getFullYear(),l=n4(a),i=n.getMonth();return l?r>=1&&r<=nr[i]:r>=1&&r<=or[i]}set(n,r,a){return n.setDate(a),n.setHours(0,0,0,0),n}}class ar extends J2{constructor(){super(...arguments);x2(this,"priority",90);x2(this,"subpriority",1);x2(this,"incompatibleTokens",["Y","R","q","Q","M","L","w","I","d","E","i","e","c","t","T"])}parse(n,r,a){switch(r){case"D":case"DD":return g0(B0.dayOfYear,n);case"Do":return a.ordinalNumber(n,{unit:"date"});default:return v0(r.length,n)}}validate(n,r){const a=n.getFullYear();return n4(a)?r>=1&&r<=366:r>=1&&r<=365}set(n,r,a){return n.setMonth(0,a),n.setHours(0,0,0,0),n}}function i5(t,o,n){var k,m,y,b;const r=i3(),a=(n==null?void 0:n.weekStartsOn)??((m=(k=n==null?void 0:n.locale)==null?void 0:k.options)==null?void 0:m.weekStartsOn)??r.weekStartsOn??((b=(y=r.locale)==null?void 0:y.options)==null?void 0:b.weekStartsOn)??0,l=T2(t),i=l.getDay(),c=(o%7+7)%7,p=7-a,C=o<0||o>6?o-(i+p)%7:(c+p)%7-(i+p)%7;return Z1(l,C)}class lr extends J2{constructor(){super(...arguments);x2(this,"priority",90);x2(this,"incompatibleTokens",["D","i","e","c","t","T"])}parse(n,r,a){switch(r){case"E":case"EE":case"EEE":return a.day(n,{width:"abbreviated",context:"formatting"})||a.day(n,{width:"short",context:"formatting"})||a.day(n,{width:"narrow",context:"formatting"});case"EEEEE":return a.day(n,{width:"narrow",context:"formatting"});case"EEEEEE":return a.day(n,{width:"short",context:"formatting"})||a.day(n,{width:"narrow",context:"formatting"});case"EEEE":default:return a.day(n,{width:"wide",context:"formatting"})||a.day(n,{width:"abbreviated",context:"formatting"})||a.day(n,{width:"short",context:"formatting"})||a.day(n,{width:"narrow",context:"formatting"})}}validate(n,r){return r>=0&&r<=6}set(n,r,a,l){return n=i5(n,a,l),n.setHours(0,0,0,0),n}}class ir extends J2{constructor(){super(...arguments);x2(this,"priority",90);x2(this,"incompatibleTokens",["y","R","u","q","Q","M","L","I","d","D","E","i","c","t","T"])}parse(n,r,a,l){const i=d=>{const c=Math.floor((d-1)/7)*7;return(d+l.weekStartsOn+6)%7+c};switch(r){case"e":case"ee":return S0(v0(r.length,n),i);case"eo":return S0(a.ordinalNumber(n,{unit:"day"}),i);case"eee":return a.day(n,{width:"abbreviated",context:"formatting"})||a.day(n,{width:"short",context:"formatting"})||a.day(n,{width:"narrow",context:"formatting"});case"eeeee":return a.day(n,{width:"narrow",context:"formatting"});case"eeeeee":return a.day(n,{width:"short",context:"formatting"})||a.day(n,{width:"narrow",context:"formatting"});case"eeee":default:return a.day(n,{width:"wide",context:"formatting"})||a.day(n,{width:"abbreviated",context:"formatting"})||a.day(n,{width:"short",context:"formatting"})||a.day(n,{width:"narrow",context:"formatting"})}}validate(n,r){return r>=0&&r<=6}set(n,r,a,l){return n=i5(n,a,l),n.setHours(0,0,0,0),n}}class sr extends J2{constructor(){super(...arguments);x2(this,"priority",90);x2(this,"incompatibleTokens",["y","R","u","q","Q","M","L","I","d","D","E","i","e","t","T"])}parse(n,r,a,l){const i=d=>{const c=Math.floor((d-1)/7)*7;return(d+l.weekStartsOn+6)%7+c};switch(r){case"c":case"cc":return S0(v0(r.length,n),i);case"co":return S0(a.ordinalNumber(n,{unit:"day"}),i);case"ccc":return a.day(n,{width:"abbreviated",context:"standalone"})||a.day(n,{width:"short",context:"standalone"})||a.day(n,{width:"narrow",context:"standalone"});case"ccccc":return a.day(n,{width:"narrow",context:"standalone"});case"cccccc":return a.day(n,{width:"short",context:"standalone"})||a.day(n,{width:"narrow",context:"standalone"});case"cccc":default:return a.day(n,{width:"wide",context:"standalone"})||a.day(n,{width:"abbreviated",context:"standalone"})||a.day(n,{width:"short",context:"standalone"})||a.day(n,{width:"narrow",context:"standalone"})}}validate(n,r){return r>=0&&r<=6}set(n,r,a,l){return n=i5(n,a,l),n.setHours(0,0,0,0),n}}function cr(t,o){const n=T2(t),r=Fn(n),a=o-r;return Z1(n,a)}class dr extends J2{constructor(){super(...arguments);x2(this,"priority",90);x2(this,"incompatibleTokens",["y","Y","u","q","Q","M","L","w","d","D","E","e","c","t","T"])}parse(n,r,a){const l=i=>i===0?7:i;switch(r){case"i":case"ii":return v0(r.length,n);case"io":return a.ordinalNumber(n,{unit:"day"});case"iii":return S0(a.day(n,{width:"abbreviated",context:"formatting"})||a.day(n,{width:"short",context:"formatting"})||a.day(n,{width:"narrow",context:"formatting"}),l);case"iiiii":return S0(a.day(n,{width:"narrow",context:"formatting"}),l);case"iiiiii":return S0(a.day(n,{width:"short",context:"formatting"})||a.day(n,{width:"narrow",context:"formatting"}),l);case"iiii":default:return S0(a.day(n,{width:"wide",context:"formatting"})||a.day(n,{width:"abbreviated",context:"formatting"})||a.day(n,{width:"short",context:"formatting"})||a.day(n,{width:"narrow",context:"formatting"}),l)}}validate(n,r){return r>=1&&r<=7}set(n,r,a){return n=cr(n,a),n.setHours(0,0,0,0),n}}class ur extends J2{constructor(){super(...arguments);x2(this,"priority",80);x2(this,"incompatibleTokens",["b","B","H","k","t","T"])}parse(n,r,a){switch(r){case"a":case"aa":case"aaa":return a.dayPeriod(n,{width:"abbreviated",context:"formatting"})||a.dayPeriod(n,{width:"narrow",context:"formatting"});case"aaaaa":return a.dayPeriod(n,{width:"narrow",context:"formatting"});case"aaaa":default:return a.dayPeriod(n,{width:"wide",context:"formatting"})||a.dayPeriod(n,{width:"abbreviated",context:"formatting"})||a.dayPeriod(n,{width:"narrow",context:"formatting"})}}set(n,r,a){return n.setHours(l5(a),0,0,0),n}}class Cr extends J2{constructor(){super(...arguments);x2(this,"priority",80);x2(this,"incompatibleTokens",["a","B","H","k","t","T"])}parse(n,r,a){switch(r){case"b":case"bb":case"bbb":return a.dayPeriod(n,{width:"abbreviated",context:"formatting"})||a.dayPeriod(n,{width:"narrow",context:"formatting"});case"bbbbb":return a.dayPeriod(n,{width:"narrow",context:"formatting"});case"bbbb":default:return a.dayPeriod(n,{width:"wide",context:"formatting"})||a.dayPeriod(n,{width:"abbreviated",context:"formatting"})||a.dayPeriod(n,{width:"narrow",context:"formatting"})}}set(n,r,a){return n.setHours(l5(a),0,0,0),n}}class hr extends J2{constructor(){super(...arguments);x2(this,"priority",80);x2(this,"incompatibleTokens",["a","b","t","T"])}parse(n,r,a){switch(r){case"B":case"BB":case"BBB":return a.dayPeriod(n,{width:"abbreviated",context:"formatting"})||a.dayPeriod(n,{width:"narrow",context:"formatting"});case"BBBBB":return a.dayPeriod(n,{width:"narrow",context:"formatting"});case"BBBB":default:return a.dayPeriod(n,{width:"wide",context:"formatting"})||a.dayPeriod(n,{width:"abbreviated",context:"formatting"})||a.dayPeriod(n,{width:"narrow",context:"formatting"})}}set(n,r,a){return n.setHours(l5(a),0,0,0),n}}class pr extends J2{constructor(){super(...arguments);x2(this,"priority",70);x2(this,"incompatibleTokens",["H","K","k","t","T"])}parse(n,r,a){switch(r){case"h":return g0(B0.hour12h,n);case"ho":return a.ordinalNumber(n,{unit:"hour"});default:return v0(r.length,n)}}validate(n,r){return r>=1&&r<=12}set(n,r,a){const l=n.getHours()>=12;return l&&a<12?n.setHours(a+12,0,0,0):!l&&a===12?n.setHours(0,0,0,0):n.setHours(a,0,0,0),n}}class mr extends J2{constructor(){super(...arguments);x2(this,"priority",70);x2(this,"incompatibleTokens",["a","b","h","K","k","t","T"])}parse(n,r,a){switch(r){case"H":return g0(B0.hour23h,n);case"Ho":return a.ordinalNumber(n,{unit:"hour"});default:return v0(r.length,n)}}validate(n,r){return r>=0&&r<=23}set(n,r,a){return n.setHours(a,0,0,0),n}}class fr extends J2{constructor(){super(...arguments);x2(this,"priority",70);x2(this,"incompatibleTokens",["h","H","k","t","T"])}parse(n,r,a){switch(r){case"K":return g0(B0.hour11h,n);case"Ko":return a.ordinalNumber(n,{unit:"hour"});default:return v0(r.length,n)}}validate(n,r){return r>=0&&r<=11}set(n,r,a){return n.getHours()>=12&&a<12?n.setHours(a+12,0,0,0):n.setHours(a,0,0,0),n}}class kr extends J2{constructor(){super(...arguments);x2(this,"priority",70);x2(this,"incompatibleTokens",["a","b","h","H","K","t","T"])}parse(n,r,a){switch(r){case"k":return g0(B0.hour24h,n);case"ko":return a.ordinalNumber(n,{unit:"hour"});default:return v0(r.length,n)}}validate(n,r){return r>=1&&r<=24}set(n,r,a){const l=a<=24?a%24:a;return n.setHours(l,0,0,0),n}}class yr extends J2{constructor(){super(...arguments);x2(this,"priority",60);x2(this,"incompatibleTokens",["t","T"])}parse(n,r,a){switch(r){case"m":return g0(B0.minute,n);case"mo":return a.ordinalNumber(n,{unit:"minute"});default:return v0(r.length,n)}}validate(n,r){return r>=0&&r<=59}set(n,r,a){return n.setMinutes(a,0,0),n}}class gr extends J2{constructor(){super(...arguments);x2(this,"priority",50);x2(this,"incompatibleTokens",["t","T"])}parse(n,r,a){switch(r){case"s":return g0(B0.second,n);case"so":return a.ordinalNumber(n,{unit:"second"});default:return v0(r.length,n)}}validate(n,r){return r>=0&&r<=59}set(n,r,a){return n.setSeconds(a,0),n}}class br extends J2{constructor(){super(...arguments);x2(this,"priority",30);x2(this,"incompatibleTokens",["t","T"])}parse(n,r){const a=l=>Math.trunc(l*Math.pow(10,-r.length+3));return S0(v0(r.length,n),a)}set(n,r,a){return n.setMilliseconds(a),n}}class Mr extends J2{constructor(){super(...arguments);x2(this,"priority",10);x2(this,"incompatibleTokens",["t","T","x"])}parse(n,r){switch(r){case"X":return Q1(K1.basicOptionalMinutes,n);case"XX":return Q1(K1.basic,n);case"XXXX":return Q1(K1.basicOptionalSeconds,n);case"XXXXX":return Q1(K1.extendedOptionalSeconds,n);case"XXX":default:return Q1(K1.extended,n)}}set(n,r,a){return r.timestampIsSet?n:Q2(n,n.getTime()-Q9(n)-a)}}class Lr extends J2{constructor(){super(...arguments);x2(this,"priority",10);x2(this,"incompatibleTokens",["t","T","X"])}parse(n,r){switch(r){case"x":return Q1(K1.basicOptionalMinutes,n);case"xx":return Q1(K1.basic,n);case"xxxx":return Q1(K1.basicOptionalSeconds,n);case"xxxxx":return Q1(K1.extendedOptionalSeconds,n);case"xxx":default:return Q1(K1.extended,n)}}set(n,r,a){return r.timestampIsSet?n:Q2(n,n.getTime()-Q9(n)-a)}}class wr extends J2{constructor(){super(...arguments);x2(this,"priority",40);x2(this,"incompatibleTokens","*")}parse(n){return t4(n)}set(n,r,a){return[Q2(n,a*1e3),{timestampIsSet:!0}]}}class vr extends J2{constructor(){super(...arguments);x2(this,"priority",20);x2(this,"incompatibleTokens","*")}parse(n){return t4(n)}set(n,r,a){return[Q2(n,a),{timestampIsSet:!0}]}}const Vr={G:new Rn,y:new In,Y:new Yn,R:new Un,u:new Wn,Q:new qn,q:new Gn,M:new Xn,L:new Kn,w:new Jn,I:new tr,d:new rr,D:new ar,E:new lr,e:new ir,c:new sr,i:new dr,a:new ur,b:new Cr,B:new hr,h:new pr,H:new mr,K:new fr,k:new kr,m:new yr,s:new gr,S:new br,X:new Mr,x:new Lr,t:new wr,T:new vr},_r=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,xr=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,Hr=/^'([^]*?)'?$/,Br=/''/g,Sr=/\S/,Er=/[a-zA-Z]/;function s5(t,o,n,r){var f,M,V,S,x,B,O,_;const a=Nn(),l=(r==null?void 0:r.locale)??a.locale??U6,i=(r==null?void 0:r.firstWeekContainsDate)??((M=(f=r==null?void 0:r.locale)==null?void 0:f.options)==null?void 0:M.firstWeekContainsDate)??a.firstWeekContainsDate??((S=(V=a.locale)==null?void 0:V.options)==null?void 0:S.firstWeekContainsDate)??1,d=(r==null?void 0:r.weekStartsOn)??((B=(x=r==null?void 0:r.locale)==null?void 0:x.options)==null?void 0:B.weekStartsOn)??a.weekStartsOn??((_=(O=a.locale)==null?void 0:O.options)==null?void 0:_.weekStartsOn)??0;if(o==="")return t===""?T2(n):Q2(n,NaN);const c={firstWeekContainsDate:i,weekStartsOn:d,locale:l},p=[new jn],C=o.match(xr).map(N=>{const Z=N[0];if(Z in r5){const Y=r5[Z];return Y(N,l.formatLong)}return N}).join("").match(_r),k=[];for(let N of C){!(r!=null&&r.useAdditionalWeekYearTokens)&&J6(N)&&a5(N,o,t),!(r!=null&&r.useAdditionalDayOfYearTokens)&&Q6(N)&&a5(N,o,t);const Z=N[0],Y=Vr[Z];if(Y){const{incompatibleTokens:D}=Y;if(Array.isArray(D)){const W=k.find(u2=>D.includes(u2.token)||u2.token===Z);if(W)throw new RangeError(`The format string mustn't contain \`${W.fullToken}\` and \`${N}\` at the same time`)}else if(Y.incompatibleTokens==="*"&&k.length>0)throw new RangeError(`The format string mustn't contain \`${N}\` and any other token at the same time`);k.push({token:Z,fullToken:N});const z=Y.run(t,N,l.match,c);if(!z)return Q2(n,NaN);p.push(z.setter),t=z.rest}else{if(Z.match(Er))throw new RangeError("Format string contains an unescaped latin alphabet character `"+Z+"`");if(N==="''"?N="'":Z==="'"&&(N=Dr(N)),t.indexOf(N)===0)t=t.slice(N.length);else return Q2(n,NaN)}}if(t.length>0&&Sr.test(t))return Q2(n,NaN);const m=p.map(N=>N.priority).sort((N,Z)=>Z-N).filter((N,Z,Y)=>Y.indexOf(N)===Z).map(N=>p.filter(Z=>Z.priority===N).sort((Z,Y)=>Y.subPriority-Z.subPriority)).map(N=>N[0]);let y=T2(n);if(isNaN(y.getTime()))return Q2(n,NaN);const b={};for(const N of m){if(!N.validate(y,c))return Q2(n,NaN);const Z=N.set(y,b,c);Array.isArray(Z)?(y=Z[0],Object.assign(b,Z[1])):y=Z}return Q2(n,y)}function Dr(t){return t.match(Hr)[1].replace(Br,"'")}function r4(t,o){const n=s3(t),r=s3(o);return+n==+r}function Tr(t,o){return Z1(t,-o)}function a4(t,o){const n=T2(t),r=n.getFullYear(),a=n.getDate(),l=Q2(t,0);l.setFullYear(r,o,15),l.setHours(0,0,0,0);const i=$n(l);return n.setMonth(o,Math.min(a,i)),n}function s0(t,o){let n=T2(t);return isNaN(+n)?Q2(t,NaN):(o.year!=null&&n.setFullYear(o.year),o.month!=null&&(n=a4(n,o.month)),o.date!=null&&n.setDate(o.date),o.hours!=null&&n.setHours(o.hours),o.minutes!=null&&n.setMinutes(o.minutes),o.seconds!=null&&n.setSeconds(o.seconds),o.milliseconds!=null&&n.setMilliseconds(o.milliseconds),n)}function Zr(t,o){const n=T2(t);return n.setHours(o),n}function l4(t,o){const n=T2(t);return n.setMilliseconds(o),n}function Ar(t,o){const n=T2(t);return n.setMinutes(o),n}function i4(t,o){const n=T2(t);return n.setSeconds(o),n}function J1(t,o){const n=T2(t);return isNaN(+n)?Q2(t,NaN):(n.setFullYear(o),n)}function T3(t,o){return A1(t,-o)}function $r(t,o){const{years:n=0,months:r=0,weeks:a=0,days:l=0,hours:i=0,minutes:d=0,seconds:c=0}=o,p=T3(t,r+n*12),C=Tr(p,l+a*7),k=d+i*60,y=(c+k*60)*1e3;return Q2(t,C.getTime()-y)}function s4(t,o){return Jt(t,-o)}function Z3(){const t=e.useAttrs();return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor","aria-hidden":"true",class:"dp__icon",role:"img",...t},[e.createElementVNode("path",{d:"M29.333 8c0-2.208-1.792-4-4-4h-18.667c-2.208 0-4 1.792-4 4v18.667c0 2.208 1.792 4 4 4h18.667c2.208 0 4-1.792 4-4v-18.667zM26.667 8v18.667c0 0.736-0.597 1.333-1.333 1.333 0 0-18.667 0-18.667 0-0.736 0-1.333-0.597-1.333-1.333 0 0 0-18.667 0-18.667 0-0.736 0.597-1.333 1.333-1.333 0 0 18.667 0 18.667 0 0.736 0 1.333 0.597 1.333 1.333z"}),e.createElementVNode("path",{d:"M20 2.667v5.333c0 0.736 0.597 1.333 1.333 1.333s1.333-0.597 1.333-1.333v-5.333c0-0.736-0.597-1.333-1.333-1.333s-1.333 0.597-1.333 1.333z"}),e.createElementVNode("path",{d:"M9.333 2.667v5.333c0 0.736 0.597 1.333 1.333 1.333s1.333-0.597 1.333-1.333v-5.333c0-0.736-0.597-1.333-1.333-1.333s-1.333 0.597-1.333 1.333z"}),e.createElementVNode("path",{d:"M4 14.667h24c0.736 0 1.333-0.597 1.333-1.333s-0.597-1.333-1.333-1.333h-24c-0.736 0-1.333 0.597-1.333 1.333s0.597 1.333 1.333 1.333z"})])}Z3.compatConfig={MODE:3};function c4(){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor","aria-hidden":"true",class:"dp__icon",role:"img"},[e.createElementVNode("path",{d:"M23.057 7.057l-16 16c-0.52 0.52-0.52 1.365 0 1.885s1.365 0.52 1.885 0l16-16c0.52-0.52 0.52-1.365 0-1.885s-1.365-0.52-1.885 0z"}),e.createElementVNode("path",{d:"M7.057 8.943l16 16c0.52 0.52 1.365 0.52 1.885 0s0.52-1.365 0-1.885l-16-16c-0.52-0.52-1.365-0.52-1.885 0s-0.52 1.365 0 1.885z"})])}c4.compatConfig={MODE:3};function c5(){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor","aria-hidden":"true",class:"dp__icon",role:"img"},[e.createElementVNode("path",{d:"M20.943 23.057l-7.057-7.057c0 0 7.057-7.057 7.057-7.057 0.52-0.52 0.52-1.365 0-1.885s-1.365-0.52-1.885 0l-8 8c-0.521 0.521-0.521 1.365 0 1.885l8 8c0.52 0.52 1.365 0.52 1.885 0s0.52-1.365 0-1.885z"})])}c5.compatConfig={MODE:3};function d5(){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor","aria-hidden":"true",class:"dp__icon",role:"img"},[e.createElementVNode("path",{d:"M12.943 24.943l8-8c0.521-0.521 0.521-1.365 0-1.885l-8-8c-0.52-0.52-1.365-0.52-1.885 0s-0.52 1.365 0 1.885l7.057 7.057c0 0-7.057 7.057-7.057 7.057-0.52 0.52-0.52 1.365 0 1.885s1.365 0.52 1.885 0z"})])}d5.compatConfig={MODE:3};function u5(){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor","aria-hidden":"true",class:"dp__icon",role:"img"},[e.createElementVNode("path",{d:"M16 1.333c-8.095 0-14.667 6.572-14.667 14.667s6.572 14.667 14.667 14.667c8.095 0 14.667-6.572 14.667-14.667s-6.572-14.667-14.667-14.667zM16 4c6.623 0 12 5.377 12 12s-5.377 12-12 12c-6.623 0-12-5.377-12-12s5.377-12 12-12z"}),e.createElementVNode("path",{d:"M14.667 8v8c0 0.505 0.285 0.967 0.737 1.193l5.333 2.667c0.658 0.329 1.46 0.062 1.789-0.596s0.062-1.46-0.596-1.789l-4.596-2.298c0 0 0-7.176 0-7.176 0-0.736-0.597-1.333-1.333-1.333s-1.333 0.597-1.333 1.333z"})])}u5.compatConfig={MODE:3};function C5(){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor","aria-hidden":"true",class:"dp__icon",role:"img"},[e.createElementVNode("path",{d:"M24.943 19.057l-8-8c-0.521-0.521-1.365-0.521-1.885 0l-8 8c-0.52 0.52-0.52 1.365 0 1.885s1.365 0.52 1.885 0l7.057-7.057c0 0 7.057 7.057 7.057 7.057 0.52 0.52 1.365 0.52 1.885 0s0.52-1.365 0-1.885z"})])}C5.compatConfig={MODE:3};function h5(){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor","aria-hidden":"true",class:"dp__icon",role:"img"},[e.createElementVNode("path",{d:"M7.057 12.943l8 8c0.521 0.521 1.365 0.521 1.885 0l8-8c0.52-0.52 0.52-1.365 0-1.885s-1.365-0.52-1.885 0l-7.057 7.057c0 0-7.057-7.057-7.057-7.057-0.52-0.52-1.365-0.52-1.885 0s-0.52 1.365 0 1.885z"})])}h5.compatConfig={MODE:3};const m1=(t,o)=>o?new Date(t.toLocaleString("en-US",{timeZone:o})):new Date(t),p5=(t,o,n)=>m5(t,o,n)||M2(),Nr=(t,o,n)=>{const r=o.dateInTz?m1(new Date(t),o.dateInTz):M2(t);return n?s1(r,!0):r},m5=(t,o,n)=>{if(!t)return null;const r=n?s1(M2(t),!0):M2(t);return o?o.exactMatch?Nr(t,o,n):m1(r,o.timezone):r},Fr=t=>{if(!t)return 0;const o=new Date,n=new Date(o.toLocaleString("en-US",{timeZone:"UTC"})),r=new Date(o.toLocaleString("en-US",{timeZone:t})),a=r.getTimezoneOffset()/60;return(+n-+r)/(1e3*60*60)-a};var N1=(t=>(t.month="month",t.year="year",t))(N1||{}),d3=(t=>(t.top="top",t.bottom="bottom",t))(d3||{}),u3=(t=>(t.header="header",t.calendar="calendar",t.timePicker="timePicker",t))(u3||{}),K0=(t=>(t.month="month",t.year="year",t.calendar="calendar",t.time="time",t.minutes="minutes",t.hours="hours",t.seconds="seconds",t))(K0||{});const Or=["timestamp","date","iso"];var l1=(t=>(t.up="up",t.down="down",t.left="left",t.right="right",t))(l1||{}),u0=(t=>(t.arrowUp="ArrowUp",t.arrowDown="ArrowDown",t.arrowLeft="ArrowLeft",t.arrowRight="ArrowRight",t.enter="Enter",t.space=" ",t.esc="Escape",t.tab="Tab",t.home="Home",t.end="End",t.pageUp="PageUp",t.pageDown="PageDown",t))(u0||{});function d4(t){return o=>new Intl.DateTimeFormat(t,{weekday:"short",timeZone:"UTC"}).format(new Date(`2017-01-0${o}T00:00:00+00:00`)).slice(0,2)}function zr(t){return o=>X1(m1(new Date(`2017-01-0${o}T00:00:00+00:00`),"UTC"),"EEEEEE",{locale:t})}const Pr=(t,o,n)=>{const r=[1,2,3,4,5,6,7];let a;if(t!==null)try{a=r.map(zr(t))}catch{a=r.map(d4(o))}else a=r.map(d4(o));const l=a.slice(0,n),i=a.slice(n+1,a.length);return[a[n]].concat(...i).concat(...l)},f5=(t,o,n)=>{const r=[];for(let a=+t[0];a<=+t[1];a++)r.push({value:+a,text:f4(a,o)});return n?r.reverse():r},u4=(t,o,n)=>{const r=[1,2,3,4,5,6,7,8,9,10,11,12].map(l=>{const i=l<10?`0${l}`:l;return new Date(`2017-${i}-01T00:00:00+00:00`)});if(t!==null)try{const l=n==="long"?"LLLL":"LLL";return r.map((i,d)=>{const c=X1(m1(i,"UTC"),l,{locale:t});return{text:c.charAt(0).toUpperCase()+c.substring(1),value:d}})}catch{}const a=new Intl.DateTimeFormat(o,{month:n,timeZone:"UTC"});return r.map((l,i)=>{const d=a.format(l);return{text:d.charAt(0).toUpperCase()+d.substring(1),value:i}})},jr=t=>[12,1,2,3,4,5,6,7,8,9,10,11,12,1,2,3,4,5,6,7,8,9,10,11][t],N0=t=>{const o=e.unref(t);return o!=null&&o.$el?o==null?void 0:o.$el:o},Rr=t=>({type:"dot",...t??{}}),C4=t=>Array.isArray(t)?!!t[0]&&!!t[1]:!1,k5={prop:t=>`"${t}" prop must be enabled!`,dateArr:t=>`You need to use array as "model-value" binding in order to support "${t}"`},R0=t=>t,h4=t=>t===0?t:!t||isNaN(+t)?null:+t,p4=t=>t===null,m4=t=>{if(t)return[...t.querySelectorAll("input, button, select, textarea, a[href]")][0]},Ir=t=>{const o=[],n=r=>r.filter(a=>a);for(let r=0;r<t.length;r+=3){const a=[t[r],t[r+1],t[r+2]];o.push(n(a))}return o},f9=(t,o,n)=>{const r=n!=null,a=o!=null;if(!r&&!a)return!1;const l=+n,i=+o;return r&&a?+t>l||+t<i:r?+t>l:a?+t<i:!1},A3=(t,o)=>Ir(t).map(n=>n.map(r=>{const{active:a,disabled:l,isBetween:i,highlighted:d}=o(r);return{...r,active:a,disabled:l,className:{dp__overlay_cell_active:a,dp__overlay_cell:!a,dp__overlay_cell_disabled:l,dp__overlay_cell_pad:!0,dp__overlay_cell_active_disabled:l&&a,dp__cell_in_between:i,"dp--highlighted":d}}})),Ze=(t,o,n=!1)=>{t&&o.allowStopPropagation&&(n&&t.stopImmediatePropagation(),t.stopPropagation())},Yr=()=>["a[href]","area[href]","input:not([disabled]):not([type='hidden'])","select:not([disabled])","textarea:not([disabled])","button:not([disabled])","[tabindex]:not([tabindex='-1'])","[data-datepicker-instance]"].join(", ");function Ur(t,o){let n=[...document.querySelectorAll(Yr())];n=n.filter(a=>!t.contains(a)||a.hasAttribute("data-datepicker-instance"));const r=n.indexOf(t);if(r>=0&&(o?r-1>=0:r+1<=n.length))return n[r+(o?-1:1)]}const y5=(t,o)=>t==null?void 0:t.querySelector(`[data-dp-element="${o}"]`),f4=(t,o)=>new Intl.NumberFormat(o,{useGrouping:!1,style:"decimal"}).format(t),g5=t=>X1(t,"dd-MM-yyyy"),b5=t=>Array.isArray(t),et=(t,o)=>o.get(g5(t)),Wr=(t,o)=>t?o?o instanceof Map?!!et(t,o):o(M2(t)):!1:!0,i1=(t,o,n=!1,r)=>{if(t.key===u0.enter||t.key===u0.space)return n&&t.preventDefault(),o();if(r)return r(t)},k4=()=>["iPad Simulator","iPhone Simulator","iPod Simulator","iPad","iPhone","iPod"].some(t=>navigator.userAgent.includes(t))||navigator.userAgent.includes("Mac")&&"ontouchend"in document,y4=(t,o,n,r,a,l)=>{const i=s5(t,o.slice(0,t.length),new Date,{locale:l});return u9(i)&&z6(i)?r||a?i:s0(i,{hours:+n.hours,minutes:+(n==null?void 0:n.minutes),seconds:+(n==null?void 0:n.seconds),milliseconds:0}):null},qr=(t,o,n,r,a,l)=>{const i=Array.isArray(n)?n[0]:n;if(typeof o=="string")return y4(t,o,i,r,a,l);if(Array.isArray(o)){let d=null;for(const c of o)if(d=y4(t,c,i,r,a,l),d)break;return d}return typeof o=="function"?o(t):null},M2=t=>t?new Date(t):new Date,Gr=(t,o,n)=>{if(o){const a=(t.getMonth()+1).toString().padStart(2,"0"),l=t.getDate().toString().padStart(2,"0"),i=t.getHours().toString().padStart(2,"0"),d=t.getMinutes().toString().padStart(2,"0"),c=n?t.getSeconds().toString().padStart(2,"0"):"00";return`${t.getFullYear()}-${a}-${l}T${i}:${d}:${c}.000Z`}const r=Date.UTC(t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate(),t.getUTCHours(),t.getUTCMinutes(),t.getUTCSeconds());return new Date(r).toISOString()},s1=(t,o)=>{const n=M2(JSON.parse(JSON.stringify(t))),r=s0(n,{hours:0,minutes:0,seconds:0,milliseconds:0});return o?Io(r):r},Ae=(t,o,n,r)=>{let a=t?M2(t):M2();return(o||o===0)&&(a=Zr(a,+o)),(n||n===0)&&(a=Ar(a,+n)),(r||r===0)&&(a=i4(a,+r)),l4(a,0)},V0=(t,o)=>!t||!o?!1:m9(s1(t),s1(o)),I2=(t,o)=>!t||!o?!1:D3(s1(t),s1(o)),E0=(t,o)=>!t||!o?!1:E3(s1(t),s1(o)),tt=(t,o,n)=>t!=null&&t[0]&&t!=null&&t[1]?E0(n,t[0])&&V0(n,t[1]):t!=null&&t[0]&&o?E0(n,t[0])&&V0(n,o)||V0(n,t[0])&&E0(n,o):!1,F1=t=>{const o=s0(new Date(t),{date:1});return s1(o)},M5=(t,o,n)=>o&&(n||n===0)?Object.fromEntries(["hours","minutes","seconds"].map(r=>r===o?[r,n]:[r,isNaN(+t[r])?void 0:+t[r]])):{hours:isNaN(+t.hours)?void 0:+t.hours,minutes:isNaN(+t.minutes)?void 0:+t.minutes,seconds:isNaN(+t.seconds)?void 0:+t.seconds},C3=t=>({hours:de(t),minutes:Te(t),seconds:S3(t)}),g4=(t,o)=>{if(o){const n=F2(M2(o));if(n>t)return 12;if(n===t)return R2(M2(o))}},b4=(t,o)=>{if(o){const n=F2(M2(o));return n<t?-1:n===t?R2(M2(o)):void 0}},$3=t=>{if(t)return F2(M2(t))},M4=(t,o)=>{const n=E0(t,o)?o:t,r=E0(o,t)?o:t;return j6({start:n,end:r})},Xr=t=>{const o=A1(t,1);return{month:R2(o),year:F2(o)}},ue=(t,o)=>{const n=$1(t,{weekStartsOn:+o}),r=I6(t,{weekStartsOn:+o});return[n,r]},L4=(t,o)=>{const n={hours:de(M2()),minutes:Te(M2()),seconds:o?S3(M2()):0};return Object.assign(n,t)},$e=(t,o,n)=>[s0(M2(t),{date:1}),s0(M2(),{month:o,year:n,date:1})],Ce=(t,o,n)=>{let r=t?M2(t):M2();return(o||o===0)&&(r=a4(r,o)),n&&(r=J1(r,n)),r},w4=(t,o,n,r,a)=>{if(!r||a&&!o||!a&&!n)return!1;const l=a?A1(t,1):T3(t,1),i=[R2(l),F2(l)];return a?!Qr(...i,o):!Kr(...i,n)},Kr=(t,o,n)=>V0(...$e(n,t,o))||I2(...$e(n,t,o)),Qr=(t,o,n)=>E0(...$e(n,t,o))||I2(...$e(n,t,o)),v4=(t,o,n,r,a,l,i)=>{if(typeof o=="function"&&!i)return o(t);const d=n?{locale:n}:void 0;return Array.isArray(t)?`${X1(t[0],l,d)}${a&&!t[1]?"":r}${t[1]?X1(t[1],l,d):""}`:X1(t,l,d)},N3=t=>{if(t)return null;throw new Error(k5.prop("partial-range"))},ot=(t,o)=>{if(o)return t();throw new Error(k5.prop("range"))},L5=t=>Array.isArray(t)?u9(t[0])&&(t[1]?u9(t[1]):!0):t?u9(t):!1,Jr=(t,o)=>s0(o??M2(),{hours:+t.hours||0,minutes:+t.minutes||0,seconds:+t.seconds||0}),w5=(t,o,n,r)=>{if(!t)return!0;if(r){const a=n==="max"?m9(t,o):E3(t,o),l={seconds:0,milliseconds:0};return a||D3(s0(t,l),s0(o,l))}return n==="max"?t.getTime()<=o.getTime():t.getTime()>=o.getTime()},v5=(t,o,n)=>t?Jr(t,o):M2(n??o),V4=(t,o,n,r,a)=>{if(Array.isArray(r)){const i=v5(t,r[0],o),d=v5(t,r[1],o);return w5(r[0],i,n,!!o)&&w5(r[1],d,n,!!o)&&a}const l=v5(t,r,o);return w5(r,l,n,!!o)&&a},V5=t=>s0(M2(),C3(t)),ea=(t,o)=>t instanceof Map?Array.from(t.values()).filter(n=>F2(M2(n))===o).map(n=>R2(n)):[],_4=(t,o,n)=>typeof t=="function"?t({month:o,year:n}):!!t.months.find(r=>r.month===o&&r.year===n),_5=(t,o)=>typeof t=="function"?t(o):t.years.includes(o),x4=t=>X1(t,"yyyy-MM-dd"),k9=e.reactive({menuFocused:!1,shiftKeyInMenu:!1}),H4=()=>{const t=n=>{k9.menuFocused=n},o=n=>{k9.shiftKeyInMenu!==n&&(k9.shiftKeyInMenu=n)};return{control:e.computed(()=>({shiftKeyInMenu:k9.shiftKeyInMenu,menuFocused:k9.menuFocused})),setMenuFocused:t,setShiftKey:o}},C0=e.reactive({monthYear:[],calendar:[],time:[],actionRow:[],selectionGrid:[],timePicker:{0:[],1:[]},monthPicker:[]}),x5=e.ref(null),nt=e.ref(!1),H5=e.ref(!1),B5=e.ref(!1),S5=e.ref(!1),Q0=e.ref(0),D0=e.ref(0),Ne=()=>{const t=e.computed(()=>nt.value?[...C0.selectionGrid,C0.actionRow].filter(k=>k.length):H5.value?[...C0.timePicker[0],...C0.timePicker[1],S5.value?[]:[x5.value],C0.actionRow].filter(k=>k.length):B5.value?[...C0.monthPicker,C0.actionRow]:[C0.monthYear,...C0.calendar,C0.time,C0.actionRow].filter(k=>k.length)),o=k=>{Q0.value=k?Q0.value+1:Q0.value-1;let m=null;t.value[D0.value]&&(m=t.value[D0.value][Q0.value]),!m&&t.value[D0.value+(k?1:-1)]?(D0.value=D0.value+(k?1:-1),Q0.value=k?0:t.value[D0.value].length-1):m||(Q0.value=k?Q0.value-1:Q0.value+1)},n=k=>{D0.value===0&&!k||D0.value===t.value.length&&k||(D0.value=k?D0.value+1:D0.value-1,t.value[D0.value]?t.value[D0.value]&&!t.value[D0.value][Q0.value]&&Q0.value!==0&&(Q0.value=t.value[D0.value].length-1):D0.value=k?D0.value-1:D0.value+1)},r=k=>{let m=null;t.value[D0.value]&&(m=t.value[D0.value][Q0.value]),m?m.focus({preventScroll:!nt.value}):Q0.value=k?Q0.value-1:Q0.value+1},a=()=>{o(!0),r(!0)},l=()=>{o(!1),r(!1)},i=()=>{n(!1),r(!0)},d=()=>{n(!0),r(!0)},c=(k,m)=>{C0[m]=k},p=(k,m)=>{C0[m]=k},C=()=>{Q0.value=0,D0.value=0};return{buildMatrix:c,buildMultiLevelMatrix:p,setTimePickerBackRef:k=>{x5.value=k},setSelectionGrid:k=>{nt.value=k,C(),k||(C0.selectionGrid=[])},setTimePicker:(k,m=!1)=>{H5.value=k,S5.value=m,C(),k||(C0.timePicker[0]=[],C0.timePicker[1]=[])},setTimePickerElements:(k,m=0)=>{C0.timePicker[m]=k},arrowRight:a,arrowLeft:l,arrowUp:i,arrowDown:d,clearArrowNav:()=>{C0.monthYear=[],C0.calendar=[],C0.time=[],C0.actionRow=[],C0.selectionGrid=[],C0.timePicker[0]=[],C0.timePicker[1]=[],nt.value=!1,H5.value=!1,S5.value=!1,B5.value=!1,C(),x5.value=null},setMonthPicker:k=>{B5.value=k,C()},refSets:C0}},B4=t=>({menuAppearTop:"dp-menu-appear-top",menuAppearBottom:"dp-menu-appear-bottom",open:"dp-slide-down",close:"dp-slide-up",next:"calendar-next",previous:"calendar-prev",vNext:"dp-slide-up",vPrevious:"dp-slide-down",...t??{}}),ta=t=>({toggleOverlay:"Toggle overlay",menu:"Datepicker menu",input:"Datepicker input",openTimePicker:"Open time picker",closeTimePicker:"Close time Picker",incrementValue:o=>`Increment ${o}`,decrementValue:o=>`Decrement ${o}`,openTpOverlay:o=>`Open ${o} overlay`,amPmButton:"Switch AM/PM mode",openYearsOverlay:"Open years overlay",openMonthsOverlay:"Open months overlay",nextMonth:"Next month",prevMonth:"Previous month",nextYear:"Next year",prevYear:"Previous year",day:void 0,weekDay:void 0,clearInput:"Clear value",calendarIcon:"Calendar icon",timePicker:"Time picker",monthPicker:o=>`Month picker${o?" overlay":""}`,yearPicker:o=>`Year picker${o?" overlay":""}`,timeOverlay:o=>`${o} overlay`,...t??{}}),S4=t=>t?typeof t=="boolean"?t?2:0:+t>=2?+t:2:0,oa=t=>{const o=typeof t=="object"&&t,n={static:!0,solo:!1};if(!t)return{...n,count:S4(!1)};const r=o?t:{},a=o?r.count??!0:t,l=S4(a);return Object.assign(n,r,{count:l})},na=(t,o,n)=>t||(typeof n=="string"?n:o),ra=t=>typeof t=="boolean"?t?B4({}):!1:B4(t),aa=t=>{const o={enterSubmit:!0,tabSubmit:!0,openMenu:"open",selectOnFocus:!1,rangeSeparator:" - "};return typeof t=="object"?{...o,...t??{},enabled:!0}:{...o,enabled:t}},la=t=>({months:[],years:[],times:{hours:[],minutes:[],seconds:[]},...t??{}}),ia=t=>({showSelect:!0,showCancel:!0,showNow:!1,showPreview:!0,...t??{}}),sa=t=>{const o={input:!1};return typeof t=="object"?{...o,...t??{},enabled:!0}:{enabled:t,...o}},ca=t=>({allowStopPropagation:!0,closeOnScroll:!1,modeHeight:255,allowPreventDefault:!1,closeOnClearValue:!0,closeOnAutoApply:!0,noSwipe:!1,keepActionRow:!1,onClickOutside:void 0,tabOutClosesMenu:!0,arrowLeft:void 0,keepViewOnOffsetClick:!1,timeArrowHoldThreshold:0,shadowDom:!1,...t??{}}),da=t=>{const o={dates:Array.isArray(t)?t.map(n=>M2(n)):[],years:[],months:[],quarters:[],weeks:[],weekdays:[],options:{highlightDisabled:!1}};return typeof t=="function"?t:{...o,...t??{}}},ua=t=>typeof t=="object"?{type:(t==null?void 0:t.type)??"local",hideOnOffsetDates:(t==null?void 0:t.hideOnOffsetDates)??!1}:{type:t,hideOnOffsetDates:!1},Ca=t=>{const o={noDisabledRange:!1,showLastInRange:!0,minMaxRawRange:!1,partialRange:!0,disableTimeRangeValidation:!1,maxRange:void 0,minRange:void 0,autoRange:void 0,fixedStart:!1,fixedEnd:!1};return typeof t=="object"?{enabled:!0,...o,...t}:{enabled:t,...o}},ha=t=>t?typeof t=="string"?{timezone:t,exactMatch:!1,dateInTz:void 0,emitTimezone:void 0,convertModel:!0}:{timezone:t.timezone,exactMatch:t.exactMatch??!1,dateInTz:t.dateInTz??void 0,emitTimezone:t.emitTimezone??void 0,convertModel:t.convertModel??!0}:{timezone:void 0,exactMatch:!1,emitTimezone:void 0},E5=(t,o,n)=>new Map(t.map(r=>{const a=p5(r,o,n);return[g5(a),a]})),pa=(t,o)=>t.length?new Map(t.map(n=>{const r=p5(n.date,o);return[g5(r),n]})):null,ma=t=>{var o;return{minDate:m5(t.minDate,t.timezone,t.isSpecific),maxDate:m5(t.maxDate,t.timezone,t.isSpecific),disabledDates:b5(t.disabledDates)?E5(t.disabledDates,t.timezone,t.isSpecific):t.disabledDates,allowedDates:b5(t.allowedDates)?E5(t.allowedDates,t.timezone,t.isSpecific):null,highlight:typeof t.highlight=="object"&&b5((o=t.highlight)==null?void 0:o.dates)?E5(t.highlight.dates,t.timezone):t.highlight,markers:pa(t.markers,t.timezone)}},fa=t=>typeof t=="boolean"?{enabled:t,dragSelect:!0,limit:null}:{enabled:!!t,limit:t.limit?+t.limit:null,dragSelect:t.dragSelect??!0},ka=t=>({...Object.fromEntries(Object.keys(t).map(o=>{const n=o,r=t[n],a=typeof t[n]=="string"?{[r]:!0}:Object.fromEntries(r.map(l=>[l,!0]));return[o,a]}))}),m0=t=>{const o=()=>{const _=t.enableSeconds?":ss":"",N=t.enableMinutes?":mm":"";return t.is24?`HH${N}${_}`:`hh${N}${_} aa`},n=()=>{var _;return t.format?t.format:t.monthPicker?"MM/yyyy":t.timePicker?o():t.weekPicker?`${((_=M.value)==null?void 0:_.type)==="iso"?"RR":"ww"}-yyyy`:t.yearPicker?"yyyy":t.quarterPicker?"QQQ/yyyy":t.enableTimePicker?`MM/dd/yyyy, ${o()}`:"MM/dd/yyyy"},r=_=>L4(_,t.enableSeconds),a=()=>B.value.enabled?t.startTime&&Array.isArray(t.startTime)?[r(t.startTime[0]),r(t.startTime[1])]:null:t.startTime&&!Array.isArray(t.startTime)?r(t.startTime):null,l=e.computed(()=>oa(t.multiCalendars)),i=e.computed(()=>a()),d=e.computed(()=>ta(t.ariaLabels)),c=e.computed(()=>la(t.filters)),p=e.computed(()=>ra(t.transitions)),C=e.computed(()=>ia(t.actionRow)),k=e.computed(()=>na(t.previewFormat,t.format,n())),m=e.computed(()=>aa(t.textInput)),y=e.computed(()=>sa(t.inline)),b=e.computed(()=>ca(t.config)),f=e.computed(()=>da(t.highlight)),M=e.computed(()=>ua(t.weekNumbers)),V=e.computed(()=>ha(t.timezone)),S=e.computed(()=>fa(t.multiDates)),x=e.computed(()=>ma({minDate:t.minDate,maxDate:t.maxDate,disabledDates:t.disabledDates,allowedDates:t.allowedDates,highlight:f.value,markers:t.markers,timezone:V.value,isSpecific:t.monthPicker||t.yearPicker||t.quarterPicker})),B=e.computed(()=>Ca(t.range)),O=e.computed(()=>ka(t.ui));return{defaultedTransitions:p,defaultedMultiCalendars:l,defaultedStartTime:i,defaultedAriaLabels:d,defaultedFilters:c,defaultedActionRow:C,defaultedPreviewFormat:k,defaultedTextInput:m,defaultedInline:y,defaultedConfig:b,defaultedHighlight:f,defaultedWeekNumbers:M,defaultedRange:B,propDates:x,defaultedTz:V,defaultedMultiDates:S,defaultedUI:O,getDefaultPattern:n,getDefaultStartTime:a}},ya=(t,o,n)=>{const r=e.ref(),{defaultedTextInput:a,defaultedRange:l,defaultedTz:i,defaultedMultiDates:d,getDefaultPattern:c}=m0(o),p=e.ref(""),C=e.toRef(o,"format"),k=e.toRef(o,"formatLocale");e.watch(r,()=>{typeof o.onInternalModelChange=="function"&&t("internal-model-change",r.value,h2(!0))},{deep:!0}),e.watch(l,(F,i2)=>{F.enabled!==i2.enabled&&(r.value=null)}),e.watch(C,()=>{t2()});const m=F=>i.value.timezone&&i.value.convertModel?m1(F,i.value.timezone):F,y=F=>{if(i.value.timezone&&i.value.convertModel){const i2=Fr(i.value.timezone);return No(F,i2)}return F},b=(F,i2,k2=!1)=>v4(F,o.format,o.formatLocale,a.value.rangeSeparator,o.modelAuto,i2??c(),k2),f=F=>F?o.modelType?$(F):{hours:de(F),minutes:Te(F),seconds:o.enableSeconds?S3(F):0}:null,M=F=>o.modelType?$(F):{month:R2(F),year:F2(F)},V=F=>Array.isArray(F)?d.value.enabled?F.map(i2=>S(i2,J1(M2(),i2))):ot(()=>[J1(M2(),F[0]),F[1]?J1(M2(),F[1]):N3(l.value.partialRange)],l.value.enabled):J1(M2(),+F),S=(F,i2)=>(typeof F=="string"||typeof F=="number")&&o.modelType?P(F):i2,x=F=>Array.isArray(F)?[S(F[0],Ae(null,+F[0].hours,+F[0].minutes,F[0].seconds)),S(F[1],Ae(null,+F[1].hours,+F[1].minutes,F[1].seconds))]:S(F,Ae(null,F.hours,F.minutes,F.seconds)),B=F=>{const i2=s0(M2(),{date:1});return Array.isArray(F)?d.value.enabled?F.map(k2=>S(k2,Ce(i2,+k2.month,+k2.year))):ot(()=>[S(F[0],Ce(i2,+F[0].month,+F[0].year)),S(F[1],F[1]?Ce(i2,+F[1].month,+F[1].year):N3(l.value.partialRange))],l.value.enabled):S(F,Ce(i2,+F.month,+F.year))},O=F=>{if(Array.isArray(F))return F.map(i2=>P(i2));throw new Error(k5.dateArr("multi-dates"))},_=F=>{if(Array.isArray(F)&&l.value.enabled){const i2=F[0],k2=F[1];return[M2(Array.isArray(i2)?i2[0]:null),Array.isArray(k2)&&k2.length?M2(k2[0]):null]}return M2(F[0])},N=F=>o.modelAuto?Array.isArray(F)?[P(F[0]),P(F[1])]:o.autoApply?[P(F)]:[P(F),null]:Array.isArray(F)?ot(()=>F[1]?[P(F[0]),F[1]?P(F[1]):N3(l.value.partialRange)]:[P(F[0])],l.value.enabled):P(F),Z=()=>{Array.isArray(r.value)&&l.value.enabled&&r.value.length===1&&r.value.push(N3(l.value.partialRange))},Y=()=>{const F=r.value;return[$(F[0]),F[1]?$(F[1]):N3(l.value.partialRange)]},D=()=>r.value[1]?Y():$(R0(r.value[0])),z=()=>(r.value||[]).map(F=>$(F)),W=(F=!1)=>(F||Z(),o.modelAuto?D():d.value.enabled?z():Array.isArray(r.value)?ot(()=>Y(),l.value.enabled):$(R0(r.value))),u2=F=>!F||Array.isArray(F)&&!F.length?null:o.timePicker?x(R0(F)):o.monthPicker?B(R0(F)):o.yearPicker?V(R0(F)):d.value.enabled?O(R0(F)):o.weekPicker?_(R0(F)):N(R0(F)),w=F=>{const i2=u2(F);L5(R0(i2))?(r.value=R0(i2),t2()):(r.value=null,p.value="")},T=()=>{const F=i2=>X1(i2,a.value.format);return`${F(r.value[0])} ${a.value.rangeSeparator} ${r.value[1]?F(r.value[1]):""}`},H=()=>n.value&&r.value?Array.isArray(r.value)?T():X1(r.value,a.value.format):b(r.value),I=()=>r.value?d.value.enabled?r.value.map(F=>b(F)).join("; "):a.value.enabled&&typeof a.value.format=="string"?H():b(r.value):"",t2=()=>{!o.format||typeof o.format=="string"||a.value.enabled&&typeof a.value.format=="string"?p.value=I():p.value=o.format(r.value)},P=F=>{if(o.utc){const i2=new Date(F);return o.utc==="preserve"?new Date(i2.getTime()+i2.getTimezoneOffset()*6e4):i2}return o.modelType?Or.includes(o.modelType)?m(new Date(F)):o.modelType==="format"&&(typeof o.format=="string"||!o.format)?m(s5(F,c(),new Date,{locale:k.value})):m(s5(F,o.modelType,new Date,{locale:k.value})):m(new Date(F))},$=F=>F?o.utc?Gr(F,o.utc==="preserve",o.enableSeconds):o.modelType?o.modelType==="timestamp"?+y(F):o.modelType==="iso"?y(F).toISOString():o.modelType==="format"&&(typeof o.format=="string"||!o.format)?b(y(F)):b(y(F),o.modelType,!0):y(F):"",o2=(F,i2=!1,k2=!1)=>{if(k2)return F;if(t("update:model-value",F),i.value.emitTimezone&&i2){const b2=Array.isArray(F)?F.map(Q=>m1(R0(Q),i.value.emitTimezone)):m1(R0(F),i.value.emitTimezone);t("update:model-timezone-value",b2)}},r2=F=>Array.isArray(r.value)?d.value.enabled?r.value.map(i2=>F(i2)):[F(r.value[0]),r.value[1]?F(r.value[1]):N3(l.value.partialRange)]:F(R0(r.value)),X=()=>{if(Array.isArray(r.value)){const F=ue(r.value[0],o.weekStart),i2=r.value[1]?ue(r.value[1],o.weekStart):[];return[F.map(k2=>M2(k2)),i2.map(k2=>M2(k2))]}return ue(r.value,o.weekStart).map(F=>M2(F))},v=(F,i2)=>o2(R0(r2(F)),!1,i2),U=F=>{const i2=X();return F?i2:t("update:model-value",X())},h2=(F=!1)=>(F||t2(),o.monthPicker?v(M,F):o.timePicker?v(f,F):o.yearPicker?v(F2,F):o.weekPicker?U(F):o2(W(F),!0,F));return{inputValue:p,internalModelValue:r,checkBeforeEmit:()=>r.value?l.value.enabled?l.value.partialRange?r.value.length>=1:r.value.length===2:!!r.value:!1,parseExternalModelValue:w,formatInputValue:t2,emitModelValue:h2}},ga=(t,o)=>{const{defaultedFilters:n,propDates:r}=m0(t),{validateMonthYearInRange:a}=Oe(t),l=(C,k)=>{let m=C;return n.value.months.includes(R2(m))?(m=k?A1(C,1):T3(C,1),l(m,k)):m},i=(C,k)=>{let m=C;return n.value.years.includes(F2(m))?(m=k?Jt(C,1):s4(C,1),i(m,k)):m},d=(C,k=!1)=>{const m=s0(M2(),{month:t.month,year:t.year});let y=C?A1(m,1):T3(m,1);t.disableYearSelect&&(y=J1(y,t.year));let b=R2(y),f=F2(y);n.value.months.includes(b)&&(y=l(y,C),b=R2(y),f=F2(y)),n.value.years.includes(f)&&(y=i(y,C),f=F2(y)),a(b,f,C,t.preventMinMaxNavigation)&&c(b,f,k)},c=(C,k,m)=>{o("update-month-year",{month:C,year:k,fromNav:m})},p=e.computed(()=>C=>w4(s0(M2(),{month:t.month,year:t.year}),r.value.maxDate,r.value.minDate,t.preventMinMaxNavigation,C));return{handleMonthYearChange:d,isDisabled:p,updateMonthYear:c}},rt={multiCalendars:{type:[Boolean,Number,String,Object],default:void 0},modelValue:{type:[String,Date,Array,Object,Number],default:null},modelType:{type:String,default:null},position:{type:String,default:"center"},dark:{type:Boolean,default:!1},format:{type:[String,Function],default:()=>null},autoPosition:{type:Boolean,default:!0},altPosition:{type:Function,default:null},transitions:{type:[Boolean,Object],default:!0},formatLocale:{type:Object,default:null},utc:{type:[Boolean,String],default:!1},ariaLabels:{type:Object,default:()=>({})},offset:{type:[Number,String],default:10},hideNavigation:{type:Array,default:()=>[]},timezone:{type:[String,Object],default:null},vertical:{type:Boolean,default:!1},disableMonthYearSelect:{type:Boolean,default:!1},disableYearSelect:{type:Boolean,default:!1},dayClass:{type:Function,default:null},yearRange:{type:Array,default:()=>[1900,2100]},enableTimePicker:{type:Boolean,default:!0},autoApply:{type:Boolean,default:!1},disabledDates:{type:[Array,Function],default:()=>[]},monthNameFormat:{type:String,default:"short"},startDate:{type:[Date,String],default:null},startTime:{type:[Object,Array],default:null},hideOffsetDates:{type:Boolean,default:!1},noToday:{type:Boolean,default:!1},disabledWeekDays:{type:Array,default:()=>[]},allowedDates:{type:Array,default:null},nowButtonLabel:{type:String,default:"Now"},markers:{type:Array,default:()=>[]},escClose:{type:Boolean,default:!0},spaceConfirm:{type:Boolean,default:!0},monthChangeOnArrows:{type:Boolean,default:!0},presetDates:{type:Array,default:()=>[]},flow:{type:Array,default:()=>[]},partialFlow:{type:Boolean,default:!1},preventMinMaxNavigation:{type:Boolean,default:!1},reverseYears:{type:Boolean,default:!1},weekPicker:{type:Boolean,default:!1},filters:{type:Object,default:()=>({})},arrowNavigation:{type:Boolean,default:!1},highlight:{type:[Function,Object],default:null},teleport:{type:[Boolean,String,Object],default:null},teleportCenter:{type:Boolean,default:!1},locale:{type:String,default:"en-Us"},weekNumName:{type:String,default:"W"},weekStart:{type:[Number,String],default:1},weekNumbers:{type:[String,Function,Object],default:null},monthChangeOnScroll:{type:[Boolean,String],default:!0},dayNames:{type:[Function,Array],default:null},monthPicker:{type:Boolean,default:!1},customProps:{type:Object,default:null},yearPicker:{type:Boolean,default:!1},modelAuto:{type:Boolean,default:!1},selectText:{type:String,default:"Select"},cancelText:{type:String,default:"Cancel"},previewFormat:{type:[String,Function],default:()=>""},multiDates:{type:[Object,Boolean],default:!1},ignoreTimeValidation:{type:Boolean,default:!1},minDate:{type:[Date,String],default:null},maxDate:{type:[Date,String],default:null},minTime:{type:Object,default:null},maxTime:{type:Object,default:null},name:{type:String,default:null},placeholder:{type:String,default:""},hideInputIcon:{type:Boolean,default:!1},clearable:{type:Boolean,default:!0},state:{type:Boolean,default:null},required:{type:Boolean,default:!1},autocomplete:{type:String,default:"off"},timePicker:{type:Boolean,default:!1},enableSeconds:{type:Boolean,default:!1},is24:{type:Boolean,default:!0},noHoursOverlay:{type:Boolean,default:!1},noMinutesOverlay:{type:Boolean,default:!1},noSecondsOverlay:{type:Boolean,default:!1},hoursGridIncrement:{type:[String,Number],default:1},minutesGridIncrement:{type:[String,Number],default:5},secondsGridIncrement:{type:[String,Number],default:5},hoursIncrement:{type:[Number,String],default:1},minutesIncrement:{type:[Number,String],default:1},secondsIncrement:{type:[Number,String],default:1},range:{type:[Boolean,Object],default:!1},uid:{type:String,default:null},disabled:{type:Boolean,default:!1},readonly:{type:Boolean,default:!1},inline:{type:[Boolean,Object],default:!1},textInput:{type:[Boolean,Object],default:!1},sixWeeks:{type:[Boolean,String],default:!1},actionRow:{type:Object,default:()=>({})},focusStartDate:{type:Boolean,default:!1},disabledTimes:{type:[Function,Array],default:void 0},timePickerInline:{type:Boolean,default:!1},calendar:{type:Function,default:null},config:{type:Object,default:void 0},quarterPicker:{type:Boolean,default:!1},yearFirst:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},onInternalModelChange:{type:[Function,Object],default:null},enableMinutes:{type:Boolean,default:!0},ui:{type:Object,default:()=>({})}},O1={...rt,shadow:{type:Boolean,default:!1},flowStep:{type:Number,default:0},internalModelValue:{type:[Date,Array],default:null},noOverlayFocus:{type:Boolean,default:!1},collapse:{type:Boolean,default:!1},menuWrapRef:{type:Object,default:null},getInputRect:{type:Function,default:()=>({})},isTextInputDate:{type:Boolean,default:!1}},ba=["title"],Ma=["disabled"],La=e.defineComponent({compatConfig:{MODE:3},__name:"ActionRow",props:{menuMount:{type:Boolean,default:!1},calendarWidth:{type:Number,default:0},...O1},emits:["close-picker","select-date","select-now","invalid-select"],setup(t,{emit:o}){const n=o,r=t,{defaultedActionRow:a,defaultedPreviewFormat:l,defaultedMultiCalendars:i,defaultedTextInput:d,defaultedInline:c,defaultedRange:p,defaultedMultiDates:C}=m0(r),{isTimeValid:k,isMonthValid:m}=Oe(r),{buildMatrix:y}=Ne(),b=e.ref(null),f=e.ref(null),M=e.ref(!1),V=e.ref({}),S=e.ref(null),x=e.ref(null);e.onMounted(()=>{r.arrowNavigation&&y([N0(b),N0(f)],"actionRow"),B(),window.addEventListener("resize",B)}),e.onUnmounted(()=>{window.removeEventListener("resize",B)});const B=()=>{M.value=!1,setTimeout(()=>{var w,T;const H=(w=S.value)==null?void 0:w.getBoundingClientRect(),I=(T=x.value)==null?void 0:T.getBoundingClientRect();H&&I&&(V.value.maxWidth=`${I.width-H.width-20}px`),M.value=!0},0)},O=e.computed(()=>p.value.enabled&&!p.value.partialRange&&r.internalModelValue?r.internalModelValue.length===2:!0),_=e.computed(()=>!k.value(r.internalModelValue)||!m.value(r.internalModelValue)||!O.value),N=()=>{const w=l.value;return r.timePicker||r.monthPicker,w(R0(r.internalModelValue))},Z=()=>{const w=r.internalModelValue;return i.value.count>0?`${Y(w[0])} - ${Y(w[1])}`:[Y(w[0]),Y(w[1])]},Y=w=>v4(w,l.value,r.formatLocale,d.value.rangeSeparator,r.modelAuto,l.value),D=e.computed(()=>!r.internalModelValue||!r.menuMount?"":typeof l.value=="string"?Array.isArray(r.internalModelValue)?r.internalModelValue.length===2&&r.internalModelValue[1]?Z():C.value.enabled?r.internalModelValue.map(w=>`${Y(w)}`):r.modelAuto?`${Y(r.internalModelValue[0])}`:`${Y(r.internalModelValue[0])} -`:Y(r.internalModelValue):N()),z=()=>C.value.enabled?"; ":" - ",W=e.computed(()=>Array.isArray(D.value)?D.value.join(z()):D.value),u2=()=>{k.value(r.internalModelValue)&&m.value(r.internalModelValue)&&O.value?n("select-date"):n("invalid-select")};return(w,T)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"actionRowRef",ref:x,class:"dp__action_row"},[w.$slots["action-row"]?e.renderSlot(w.$slots,"action-row",e.normalizeProps(e.mergeProps({key:0},{internalModelValue:w.internalModelValue,disabled:_.value,selectDate:()=>w.$emit("select-date"),closePicker:()=>w.$emit("close-picker")}))):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.unref(a).showPreview?(e.openBlock(),e.createElementBlock("div",{key:0,class:"dp__selection_preview",title:W.value,style:e.normalizeStyle(V.value)},[w.$slots["action-preview"]&&M.value?e.renderSlot(w.$slots,"action-preview",{key:0,value:w.internalModelValue}):e.createCommentVNode("",!0),!w.$slots["action-preview"]&&M.value?(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(W.value),1)],64)):e.createCommentVNode("",!0)],12,ba)):e.createCommentVNode("",!0),e.createElementVNode("div",{ref_key:"actionBtnContainer",ref:S,class:"dp__action_buttons","data-dp-element":"action-row"},[w.$slots["action-buttons"]?e.renderSlot(w.$slots,"action-buttons",{key:0,value:w.internalModelValue}):e.createCommentVNode("",!0),w.$slots["action-buttons"]?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[!e.unref(c).enabled&&e.unref(a).showCancel?(e.openBlock(),e.createElementBlock("button",{key:0,ref_key:"cancelButtonRef",ref:b,type:"button",class:"dp__action_button dp__action_cancel",onClick:T[0]||(T[0]=H=>w.$emit("close-picker")),onKeydown:T[1]||(T[1]=H=>e.unref(i1)(H,()=>w.$emit("close-picker")))},e.toDisplayString(w.cancelText),545)):e.createCommentVNode("",!0),e.unref(a).showNow?(e.openBlock(),e.createElementBlock("button",{key:1,type:"button",class:"dp__action_button dp__action_cancel",onClick:T[2]||(T[2]=H=>w.$emit("select-now")),onKeydown:T[3]||(T[3]=H=>e.unref(i1)(H,()=>w.$emit("select-now")))},e.toDisplayString(w.nowButtonLabel),33)):e.createCommentVNode("",!0),e.unref(a).showSelect?(e.openBlock(),e.createElementBlock("button",{key:2,ref_key:"selectButtonRef",ref:f,type:"button",class:"dp__action_button dp__action_select",disabled:_.value,"data-test":"select-button",onKeydown:T[4]||(T[4]=H=>e.unref(i1)(H,()=>u2())),onClick:u2},e.toDisplayString(w.selectText),41,Ma)):e.createCommentVNode("",!0)],64))],512)],64))],512))}}),wa=["role","aria-label","tabindex"],va={class:"dp__selection_grid_header"},Va=["aria-selected","aria-disabled","data-test","onClick","onKeydown","onMouseover"],_a=["aria-label"],y9=e.defineComponent({__name:"SelectionOverlay",props:{items:{},type:{},isLast:{type:Boolean},arrowNavigation:{type:Boolean},skipButtonRef:{type:Boolean},headerRefs:{},hideNavigation:{},escClose:{type:Boolean},useRelative:{type:Boolean},height:{},textInput:{type:[Boolean,Object]},config:{},noOverlayFocus:{type:Boolean},focusValue:{},menuWrapRef:{},ariaLabels:{},overlayLabel:{}},emits:["selected","toggle","reset-flow","hover-value"],setup(t,{expose:o,emit:n}){const{setSelectionGrid:r,buildMultiLevelMatrix:a,setMonthPicker:l}=Ne(),i=n,d=t,{defaultedAriaLabels:c,defaultedTextInput:p,defaultedConfig:C}=m0(d),{hideNavigationButtons:k}=it(),m=e.ref(!1),y=e.ref(null),b=e.ref(null),f=e.ref([]),M=e.ref(),V=e.ref(null),S=e.ref(0),x=e.ref(null);e.onBeforeUpdate(()=>{y.value=null}),e.onMounted(()=>{e.nextTick().then(()=>z()),d.noOverlayFocus||O(),B(!0)}),e.onUnmounted(()=>B(!1));const B=r2=>{var X;d.arrowNavigation&&((X=d.headerRefs)!=null&&X.length?l(r2):r(r2))},O=()=>{var r2;const X=N0(b);X&&(p.value.enabled||(y.value?(r2=y.value)==null||r2.focus({preventScroll:!0}):X.focus({preventScroll:!0})),m.value=X.clientHeight<X.scrollHeight)},_=e.computed(()=>({dp__overlay:!0,"dp--overlay-absolute":!d.useRelative,"dp--overlay-relative":d.useRelative})),N=e.computed(()=>d.useRelative?{height:`${d.height}px`,width:"var(--dp-menu-min-width)"}:void 0),Z=e.computed(()=>({dp__overlay_col:!0})),Y=e.computed(()=>({dp__btn:!0,dp__button:!0,dp__overlay_action:!0,dp__over_action_scroll:m.value,dp__button_bottom:d.isLast})),D=e.computed(()=>{var r2,X;return{dp__overlay_container:!0,dp__container_flex:((r2=d.items)==null?void 0:r2.length)<=6,dp__container_block:((X=d.items)==null?void 0:X.length)>6}});e.watch(()=>d.items,()=>z(!1),{deep:!0});const z=(r2=!0)=>{e.nextTick().then(()=>{const X=N0(y),v=N0(b),U=N0(V),h2=N0(x),F=U?U.getBoundingClientRect().height:0;v&&(v.getBoundingClientRect().height?S.value=v.getBoundingClientRect().height-F:S.value=C.value.modeHeight-F),X&&h2&&r2&&(h2.scrollTop=X.offsetTop-h2.offsetTop-(S.value/2-X.getBoundingClientRect().height)-F)})},W=r2=>{r2.disabled||i("selected",r2.value)},u2=()=>{i("toggle"),i("reset-flow")},w=()=>{d.escClose&&u2()},T=(r2,X,v,U)=>{r2&&((X.active||X.value===d.focusValue)&&(y.value=r2),d.arrowNavigation&&(Array.isArray(f.value[v])?f.value[v][U]=r2:f.value[v]=[r2],H()))},H=()=>{var r2,X;const v=(r2=d.headerRefs)!=null&&r2.length?[d.headerRefs].concat(f.value):f.value.concat([d.skipButtonRef?[]:[V.value]]);a(R0(v),(X=d.headerRefs)!=null&&X.length?"monthPicker":"selectionGrid")},I=r2=>{d.arrowNavigation||Ze(r2,C.value,!0)},t2=r2=>{M.value=r2,i("hover-value",r2)},P=()=>{if(u2(),!d.isLast){const r2=y5(d.menuWrapRef??null,"action-row");if(r2){const X=m4(r2);X==null||X.focus()}}},$=r2=>{switch(r2.key){case u0.esc:return w();case u0.arrowLeft:return I(r2);case u0.arrowRight:return I(r2);case u0.arrowUp:return I(r2);case u0.arrowDown:return I(r2);default:return}},o2=r2=>{if(r2.key===u0.enter)return u2();if(r2.key===u0.tab)return P()};return o({focusGrid:O}),(r2,X)=>{var v;return e.openBlock(),e.createElementBlock("div",{ref_key:"gridWrapRef",ref:b,class:e.normalizeClass(_.value),style:e.normalizeStyle(N.value),role:r2.useRelative?void 0:"dialog","aria-label":r2.overlayLabel,tabindex:r2.useRelative?void 0:"0",onKeydown:$,onClick:X[0]||(X[0]=e.withModifiers(()=>{},["prevent"]))},[e.createElementVNode("div",{ref_key:"containerRef",ref:x,class:e.normalizeClass(D.value),style:e.normalizeStyle({"--dp-overlay-height":`${S.value}px`}),role:"grid"},[e.createElementVNode("div",va,[e.renderSlot(r2.$slots,"header")]),r2.$slots.overlay?e.renderSlot(r2.$slots,"overlay",{key:0}):(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:1},e.renderList(r2.items,(U,h2)=>(e.openBlock(),e.createElementBlock("div",{key:h2,class:e.normalizeClass(["dp__overlay_row",{dp__flex_row:r2.items.length>=3}]),role:"row"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(U,(F,i2)=>(e.openBlock(),e.createElementBlock("div",{key:F.value,ref_for:!0,ref:k2=>T(k2,F,h2,i2),role:"gridcell",class:e.normalizeClass(Z.value),"aria-selected":F.active||void 0,"aria-disabled":F.disabled||void 0,tabindex:"0","data-test":F.text,onClick:e.withModifiers(k2=>W(F),["prevent"]),onKeydown:k2=>e.unref(i1)(k2,()=>W(F),!0),onMouseover:k2=>t2(F.value)},[e.createElementVNode("div",{class:e.normalizeClass(F.className)},[r2.$slots.item?e.renderSlot(r2.$slots,"item",{key:0,item:F}):e.createCommentVNode("",!0),r2.$slots.item?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(F.text),1)],64))],2)],42,Va))),128))],2))),128))],6),r2.$slots["button-icon"]?e.withDirectives((e.openBlock(),e.createElementBlock("button",{key:0,ref_key:"toggleButton",ref:V,type:"button","aria-label":(v=e.unref(c))==null?void 0:v.toggleOverlay,class:e.normalizeClass(Y.value),tabindex:"0",onClick:u2,onKeydown:o2},[e.renderSlot(r2.$slots,"button-icon")],42,_a)),[[e.vShow,!e.unref(k)(r2.hideNavigation,r2.type)]]):e.createCommentVNode("",!0)],46,wa)}}}),at=e.defineComponent({__name:"InstanceWrap",props:{multiCalendars:{},stretch:{type:Boolean},collapse:{type:Boolean}},setup(t){const o=t,n=e.computed(()=>o.multiCalendars>0?[...Array(o.multiCalendars).keys()]:[0]),r=e.computed(()=>({dp__instance_calendar:o.multiCalendars>0}));return(a,l)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass({dp__menu_inner:!a.stretch,"dp--menu--inner-stretched":a.stretch,dp__flex_display:a.multiCalendars>0,"dp--flex-display-collapsed":a.collapse})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.value,(i,d)=>(e.openBlock(),e.createElementBlock("div",{key:i,class:e.normalizeClass(r.value)},[e.renderSlot(a.$slots,"default",{instance:i,index:d})],2))),128))],2))}}),xa=["data-dp-element","aria-label","aria-disabled"],g9=e.defineComponent({compatConfig:{MODE:3},__name:"ArrowBtn",props:{ariaLabel:{},elName:{},disabled:{type:Boolean}},emits:["activate","set-ref"],setup(t,{emit:o}){const n=o,r=e.ref(null);return e.onMounted(()=>n("set-ref",r)),(a,l)=>(e.openBlock(),e.createElementBlock("button",{ref_key:"elRef",ref:r,type:"button","data-dp-element":a.elName,class:"dp__btn dp--arrow-btn-nav",tabindex:"0","aria-label":a.ariaLabel,"aria-disabled":a.disabled||void 0,onClick:l[0]||(l[0]=i=>a.$emit("activate")),onKeydown:l[1]||(l[1]=i=>e.unref(i1)(i,()=>a.$emit("activate"),!0))},[e.createElementVNode("span",{class:e.normalizeClass(["dp__inner_nav",{dp__inner_nav_disabled:a.disabled}])},[e.renderSlot(a.$slots,"default")],2)],40,xa))}}),Ha=["aria-label","data-test"],E4=e.defineComponent({__name:"YearModePicker",props:{...O1,showYearPicker:{type:Boolean,default:!1},items:{type:Array,default:()=>[]},instance:{type:Number,default:0},year:{type:Number,default:0},isDisabled:{type:Function,default:()=>!1}},emits:["toggle-year-picker","year-select","handle-year"],setup(t,{emit:o}){const n=o,r=t,{showRightIcon:a,showLeftIcon:l}=it(),{defaultedConfig:i,defaultedMultiCalendars:d,defaultedAriaLabels:c,defaultedTransitions:p,defaultedUI:C}=m0(r),{showTransition:k,transitionName:m}=b9(p),y=e.ref(!1),b=(V=!1,S)=>{y.value=!y.value,n("toggle-year-picker",{flow:V,show:S})},f=V=>{y.value=!1,n("year-select",V)},M=(V=!1)=>{n("handle-year",V)};return(V,S)=>{var x,B,O,_,N;return e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("div",{class:e.normalizeClass(["dp--year-mode-picker",{"dp--hidden-el":y.value}])},[e.unref(l)(e.unref(d),t.instance)?(e.openBlock(),e.createBlock(g9,{key:0,ref:"mpPrevIconRef","aria-label":(x=e.unref(c))==null?void 0:x.prevYear,disabled:t.isDisabled(!1),class:e.normalizeClass((B=e.unref(C))==null?void 0:B.navBtnPrev),onActivate:S[0]||(S[0]=Z=>M(!1))},{default:e.withCtx(()=>[V.$slots["arrow-left"]?e.renderSlot(V.$slots,"arrow-left",{key:0}):e.createCommentVNode("",!0),V.$slots["arrow-left"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(c5),{key:1}))]),_:3},8,["aria-label","disabled","class"])):e.createCommentVNode("",!0),e.createElementVNode("button",{ref:"mpYearButtonRef",class:"dp__btn dp--year-select",type:"button","aria-label":`${t.year}-${(O=e.unref(c))==null?void 0:O.openYearsOverlay}`,"data-test":`year-mode-btn-${t.instance}`,onClick:S[1]||(S[1]=()=>b(!1)),onKeydown:S[2]||(S[2]=e.withKeys(()=>b(!1),["enter"]))},[V.$slots.year?e.renderSlot(V.$slots,"year",{key:0,year:t.year}):e.createCommentVNode("",!0),V.$slots.year?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(t.year),1)],64))],40,Ha),e.unref(a)(e.unref(d),t.instance)?(e.openBlock(),e.createBlock(g9,{key:1,ref:"mpNextIconRef","aria-label":(_=e.unref(c))==null?void 0:_.nextYear,disabled:t.isDisabled(!0),class:e.normalizeClass((N=e.unref(C))==null?void 0:N.navBtnNext),onActivate:S[3]||(S[3]=Z=>M(!0))},{default:e.withCtx(()=>[V.$slots["arrow-right"]?e.renderSlot(V.$slots,"arrow-right",{key:0}):e.createCommentVNode("",!0),V.$slots["arrow-right"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(d5),{key:1}))]),_:3},8,["aria-label","disabled","class"])):e.createCommentVNode("",!0)],2),e.createVNode(e.Transition,{name:e.unref(m)(t.showYearPicker),css:e.unref(k)},{default:e.withCtx(()=>{var Z,Y;return[t.showYearPicker?(e.openBlock(),e.createBlock(y9,{key:0,items:t.items,"text-input":V.textInput,"esc-close":V.escClose,config:V.config,"is-last":V.autoApply&&!e.unref(i).keepActionRow,"hide-navigation":V.hideNavigation,"aria-labels":V.ariaLabels,"overlay-label":(Y=(Z=e.unref(c))==null?void 0:Z.yearPicker)==null?void 0:Y.call(Z,!0),type:"year",onToggle:b,onSelected:S[4]||(S[4]=D=>f(D))},e.createSlots({"button-icon":e.withCtx(()=>[V.$slots["calendar-icon"]?e.renderSlot(V.$slots,"calendar-icon",{key:0}):e.createCommentVNode("",!0),V.$slots["calendar-icon"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(Z3),{key:1}))]),_:2},[V.$slots["year-overlay-value"]?{name:"item",fn:e.withCtx(({item:D})=>[e.renderSlot(V.$slots,"year-overlay-value",{text:D.text,value:D.value})]),key:"0"}:void 0]),1032,["items","text-input","esc-close","config","is-last","hide-navigation","aria-labels","overlay-label"])):e.createCommentVNode("",!0)]}),_:3},8,["name","css"])],64)}}}),D5=(t,o,n)=>{if(o.value&&Array.isArray(o.value))if(o.value.some(r=>I2(t,r))){const r=o.value.filter(a=>!I2(a,t));o.value=r.length?r:null}else(n&&+n>o.value.length||!n)&&o.value.push(t);else o.value=[t]},T5=(t,o,n)=>{let r=t.value?t.value.slice():[];return r.length===2&&r[1]!==null&&(r=[]),r.length?V0(o,r[0])?(r.unshift(o),n("range-start",r[0]),n("range-start",r[1])):(r[1]=o,n("range-end",o)):(r=[o],n("range-start",o)),r},lt=(t,o,n,r)=>{t&&(t[0]&&t[1]&&n&&o("auto-apply"),t[0]&&!t[1]&&r&&n&&o("auto-apply"))},D4=t=>{Array.isArray(t.value)&&t.value.length<=2&&t.range?t.modelValue.value=t.value.map(o=>m1(M2(o),t.timezone)):Array.isArray(t.value)||(t.modelValue.value=m1(M2(t.value),t.timezone))},T4=(t,o,n,r)=>Array.isArray(o.value)&&(o.value.length===2||o.value.length===1&&r.value.partialRange)?r.value.fixedStart&&(E0(t,o.value[0])||I2(t,o.value[0]))?[o.value[0],t]:r.value.fixedEnd&&(V0(t,o.value[1])||I2(t,o.value[1]))?[t,o.value[1]]:(n("invalid-fixed-range",t),o.value):[],Z4=({multiCalendars:t,range:o,highlight:n,propDates:r,calendars:a,modelValue:l,props:i,filters:d,year:c,month:p,emit:C})=>{const k=e.computed(()=>f5(i.yearRange,i.locale,i.reverseYears)),m=e.ref([!1]),y=e.computed(()=>(D,z)=>{const W=s0(F1(new Date),{month:p.value(D),year:c.value(D)}),u2=z?R6(W):C9(W);return w4(u2,r.value.maxDate,r.value.minDate,i.preventMinMaxNavigation,z)}),b=()=>Array.isArray(l.value)&&t.value.solo&&l.value[1],f=()=>{for(let D=0;D<t.value.count;D++)if(D===0)a.value[D]=a.value[0];else if(D===t.value.count-1&&b())a.value[D]={month:R2(l.value[1]),year:F2(l.value[1])};else{const z=s0(M2(),a.value[D-1]);a.value[D]={month:R2(z),year:F2(Jt(z,1))}}},M=D=>{if(!D)return f();const z=s0(M2(),a.value[D]);return a.value[0].year=F2(s4(z,t.value.count-1)),f()},V=(D,z)=>{const W=jo(z,D);return o.value.showLastInRange&&W>1?z:D},S=D=>i.focusStartDate||t.value.solo?D[0]:D[1]?V(D[0],D[1]):D[0],x=()=>{if(l.value){const D=Array.isArray(l.value)?S(l.value):l.value;a.value[0]={month:R2(D),year:F2(D)}}},B=()=>{x(),t.value.count&&f()};e.watch(l,(D,z)=>{i.isTextInputDate&&JSON.stringify(D??{})!==JSON.stringify(z??{})&&B()}),e.onMounted(()=>{B()});const O=(D,z)=>{a.value[z].year=D,C("update-month-year",{instance:z,year:D,month:a.value[z].month}),t.value.count&&!t.value.solo&&M(z)},_=e.computed(()=>D=>A3(k.value,z=>{var W;const u2=c.value(D)===z.value,w=f9(z.value,$3(r.value.minDate),$3(r.value.maxDate))||((W=d.value.years)==null?void 0:W.includes(c.value(D))),T=_5(n.value,z.value);return{active:u2,disabled:w,highlighted:T}})),N=(D,z)=>{O(D,z),Y(z)},Z=(D,z=!1)=>{if(!y.value(D,z)){const W=z?c.value(D)+1:c.value(D)-1;O(W,D)}},Y=(D,z=!1,W)=>{z||C("reset-flow"),W!==void 0?m.value[D]=W:m.value[D]=!m.value[D],m.value[D]?C("overlay-toggle",{open:!0,overlay:K0.year}):(C("overlay-closed"),C("overlay-toggle",{open:!1,overlay:K0.year}))};return{isDisabled:y,groupedYears:_,showYearPicker:m,selectYear:O,toggleYearPicker:Y,handleYearSelect:N,handleYear:Z}},Ba=(t,o)=>{const{defaultedMultiCalendars:n,defaultedAriaLabels:r,defaultedTransitions:a,defaultedConfig:l,defaultedRange:i,defaultedHighlight:d,propDates:c,defaultedTz:p,defaultedFilters:C,defaultedMultiDates:k}=m0(t),m=()=>{t.isTextInputDate&&B(F2(M2(t.startDate)),0)},{modelValue:y,year:b,month:f,calendars:M}=M9(t,o,m),V=e.computed(()=>u4(t.formatLocale,t.locale,t.monthNameFormat)),S=e.ref(null),{checkMinMaxRange:x}=Oe(t),{selectYear:B,groupedYears:O,showYearPicker:_,toggleYearPicker:N,handleYearSelect:Z,handleYear:Y,isDisabled:D}=Z4({modelValue:y,multiCalendars:n,range:i,highlight:d,calendars:M,year:b,propDates:c,month:f,filters:C,props:t,emit:o});e.onMounted(()=>{t.startDate&&(y.value&&t.focusStartDate||!y.value)&&B(F2(M2(t.startDate)),0)});const z=v=>v?{month:R2(v),year:F2(v)}:{month:null,year:null},W=()=>y.value?Array.isArray(y.value)?y.value.map(v=>z(v)):z(y.value):z(),u2=(v,U)=>{const h2=M.value[v],F=W();return Array.isArray(F)?F.some(i2=>i2.year===(h2==null?void 0:h2.year)&&i2.month===U):(h2==null?void 0:h2.year)===F.year&&U===F.month},w=(v,U,h2)=>{var F,i2;const k2=W();return Array.isArray(k2)?b.value(U)===((F=k2[h2])==null?void 0:F.year)&&v===((i2=k2[h2])==null?void 0:i2.month):!1},T=(v,U)=>{if(i.value.enabled){const h2=W();if(Array.isArray(y.value)&&Array.isArray(h2)){const F=w(v,U,0)||w(v,U,1),i2=Ce(F1(M2()),v,b.value(U));return tt(y.value,S.value,i2)&&!F}return!1}return!1},H=e.computed(()=>v=>A3(V.value,U=>{var h2;const F=u2(v,U.value),i2=f9(U.value,g4(b.value(v),c.value.minDate),b4(b.value(v),c.value.maxDate))||ea(c.value.disabledDates,b.value(v)).includes(U.value)||((h2=C.value.months)==null?void 0:h2.includes(U.value)),k2=T(U.value,v),b2=_4(d.value,U.value,b.value(v));return{active:F,disabled:i2,isBetween:k2,highlighted:b2}})),I=(v,U)=>Ce(F1(M2()),v,b.value(U)),t2=(v,U)=>{const h2=y.value?y.value:F1(new Date);y.value=Ce(h2,v,b.value(U)),o("auto-apply"),o("update-flow-step")},P=(v,U)=>{const h2=I(v,U);i.value.fixedEnd||i.value.fixedStart?y.value=T4(h2,y,o,i):y.value?x(h2,y.value)&&(y.value=T5(y,I(v,U),o)):y.value=[I(v,U)],e.nextTick().then(()=>{lt(y.value,o,t.autoApply,t.modelAuto)})},$=(v,U)=>{D5(I(v,U),y,k.value.limit),o("auto-apply",!0)},o2=(v,U)=>(M.value[U].month=v,X(U,M.value[U].year,v),k.value.enabled?$(v,U):i.value.enabled?P(v,U):t2(v,U)),r2=(v,U)=>{B(v,U),X(U,v,null)},X=(v,U,h2)=>{let F=h2;if(!F&&F!==0){const i2=W();F=Array.isArray(i2)?i2[v].month:i2.month}o("update-month-year",{instance:v,year:U,month:F})};return{groupedMonths:H,groupedYears:O,year:b,isDisabled:D,defaultedMultiCalendars:n,defaultedAriaLabels:r,defaultedTransitions:a,defaultedConfig:l,showYearPicker:_,modelValue:y,presetDate:(v,U)=>{D4({value:v,modelValue:y,range:i.value.enabled,timezone:U?void 0:p.value.timezone}),o("auto-apply")},setHoverDate:(v,U)=>{S.value=I(v,U)},selectMonth:o2,selectYear:r2,toggleYearPicker:N,handleYearSelect:Z,handleYear:Y,getModelMonthYear:W}},Sa=e.defineComponent({compatConfig:{MODE:3},__name:"MonthPicker",props:{...O1},emits:["update:internal-model-value","overlay-closed","reset-flow","range-start","range-end","auto-apply","update-month-year","update-flow-step","mount","invalid-fixed-range","overlay-toggle"],setup(t,{expose:o,emit:n}){const r=n,a=e.useSlots(),l=b1(a,"yearMode"),i=t;e.onMounted(()=>{i.shadow||r("mount",null)});const{groupedMonths:d,groupedYears:c,year:p,isDisabled:C,defaultedMultiCalendars:k,defaultedConfig:m,showYearPicker:y,modelValue:b,presetDate:f,setHoverDate:M,selectMonth:V,selectYear:S,toggleYearPicker:x,handleYearSelect:B,handleYear:O,getModelMonthYear:_}=Ba(i,r);return o({getSidebarProps:()=>({modelValue:b,year:p,getModelMonthYear:_,selectMonth:V,selectYear:S,handleYear:O}),presetDate:f,toggleYearPicker:N=>x(0,N)}),(N,Z)=>(e.openBlock(),e.createBlock(at,{"multi-calendars":e.unref(k).count,collapse:N.collapse,stretch:""},{default:e.withCtx(({instance:Y})=>[N.$slots["top-extra"]?e.renderSlot(N.$slots,"top-extra",{key:0,value:N.internalModelValue}):e.createCommentVNode("",!0),N.$slots["month-year"]?e.renderSlot(N.$slots,"month-year",e.normalizeProps(e.mergeProps({key:1},{year:e.unref(p),months:e.unref(d)(Y),years:e.unref(c)(Y),selectMonth:e.unref(V),selectYear:e.unref(S),instance:Y}))):(e.openBlock(),e.createBlock(y9,{key:2,items:e.unref(d)(Y),"arrow-navigation":N.arrowNavigation,"is-last":N.autoApply&&!e.unref(m).keepActionRow,"esc-close":N.escClose,height:e.unref(m).modeHeight,config:N.config,"no-overlay-focus":!!(N.noOverlayFocus||N.textInput),"use-relative":"",type:"month",onSelected:D=>e.unref(V)(D,Y),onHoverValue:D=>e.unref(M)(D,Y)},e.createSlots({header:e.withCtx(()=>[e.createVNode(E4,e.mergeProps(N.$props,{items:e.unref(c)(Y),instance:Y,"show-year-picker":e.unref(y)[Y],year:e.unref(p)(Y),"is-disabled":D=>e.unref(C)(Y,D),onHandleYear:D=>e.unref(O)(Y,D),onYearSelect:D=>e.unref(B)(D,Y),onToggleYearPicker:D=>e.unref(x)(Y,D==null?void 0:D.flow,D==null?void 0:D.show)}),e.createSlots({_:2},[e.renderList(e.unref(l),(D,z)=>({name:D,fn:e.withCtx(W=>[e.renderSlot(N.$slots,D,e.normalizeProps(e.guardReactiveProps(W)))])}))]),1040,["items","instance","show-year-picker","year","is-disabled","onHandleYear","onYearSelect","onToggleYearPicker"])]),_:2},[N.$slots["month-overlay-value"]?{name:"item",fn:e.withCtx(({item:D})=>[e.renderSlot(N.$slots,"month-overlay-value",{text:D.text,value:D.value})]),key:"0"}:void 0]),1032,["items","arrow-navigation","is-last","esc-close","height","config","no-overlay-focus","onSelected","onHoverValue"]))]),_:3},8,["multi-calendars","collapse"]))}}),Ea=(t,o)=>{const n=()=>{t.isTextInputDate&&(C.value=F2(M2(t.startDate)))},{modelValue:r}=M9(t,o,n),a=e.ref(null),{defaultedHighlight:l,defaultedMultiDates:i,defaultedFilters:d,defaultedRange:c,propDates:p}=m0(t),C=e.ref();e.onMounted(()=>{t.startDate&&(r.value&&t.focusStartDate||!r.value)&&(C.value=F2(M2(t.startDate)))});const k=f=>Array.isArray(r.value)?r.value.some(M=>F2(M)===f):r.value?F2(r.value)===f:!1,m=f=>c.value.enabled&&Array.isArray(r.value)?tt(r.value,a.value,b(f)):!1,y=e.computed(()=>A3(f5(t.yearRange,t.locale,t.reverseYears),f=>{const M=k(f.value),V=f9(f.value,$3(p.value.minDate),$3(p.value.maxDate))||d.value.years.includes(f.value),S=m(f.value)&&!M,x=_5(l.value,f.value);return{active:M,disabled:V,isBetween:S,highlighted:x}})),b=f=>J1(F1(C9(new Date)),f);return{groupedYears:y,modelValue:r,focusYear:C,setHoverValue:f=>{a.value=J1(F1(new Date),f)},selectYear:f=>{var M;if(o("update-month-year",{instance:0,year:f}),i.value.enabled)return r.value?Array.isArray(r.value)&&(((M=r.value)==null?void 0:M.map(V=>F2(V))).includes(f)?r.value=r.value.filter(V=>F2(V)!==f):r.value.push(J1(s1(M2()),f))):r.value=[J1(s1(C9(M2())),f)],o("auto-apply",!0);c.value.enabled?(r.value=T5(r,b(f),o),e.nextTick().then(()=>{lt(r.value,o,t.autoApply,t.modelAuto)})):(r.value=b(f),o("auto-apply"))}}},Da=e.defineComponent({compatConfig:{MODE:3},__name:"YearPicker",props:{...O1},emits:["update:internal-model-value","reset-flow","range-start","range-end","auto-apply","update-month-year"],setup(t,{expose:o,emit:n}){const r=n,a=t,{groupedYears:l,modelValue:i,focusYear:d,selectYear:c,setHoverValue:p}=Ea(a,r),{defaultedConfig:C}=m0(a);return o({getSidebarProps:()=>({modelValue:i,selectYear:c})}),(k,m)=>(e.openBlock(),e.createElementBlock("div",null,[k.$slots["top-extra"]?e.renderSlot(k.$slots,"top-extra",{key:0,value:k.internalModelValue}):e.createCommentVNode("",!0),k.$slots["month-year"]?e.renderSlot(k.$slots,"month-year",e.normalizeProps(e.mergeProps({key:1},{years:e.unref(l),selectYear:e.unref(c)}))):(e.openBlock(),e.createBlock(y9,{key:2,items:e.unref(l),"is-last":k.autoApply&&!e.unref(C).keepActionRow,height:e.unref(C).modeHeight,config:k.config,"no-overlay-focus":!!(k.noOverlayFocus||k.textInput),"focus-value":e.unref(d),type:"year","use-relative":"",onSelected:e.unref(c),onHoverValue:e.unref(p)},e.createSlots({_:2},[k.$slots["year-overlay-value"]?{name:"item",fn:e.withCtx(({item:y})=>[e.renderSlot(k.$slots,"year-overlay-value",{text:y.text,value:y.value})]),key:"0"}:void 0]),1032,["items","is-last","height","config","no-overlay-focus","focus-value","onSelected","onHoverValue"]))]))}}),Ta={key:0,class:"dp__time_input"},Za=["data-test","aria-label","onKeydown","onClick","onMousedown"],Aa=["aria-label","disabled","data-test","onKeydown","onClick"],$a=["data-test","aria-label","onKeydown","onClick","onMousedown"],Na={key:0},Fa=["aria-label"],Oa=e.defineComponent({compatConfig:{MODE:3},__name:"TimeInput",props:{hours:{type:Number,default:0},minutes:{type:Number,default:0},seconds:{type:Number,default:0},closeTimePickerBtn:{type:Object,default:null},order:{type:Number,default:0},disabledTimesConfig:{type:Function,default:null},validateTime:{type:Function,default:()=>!1},...O1},emits:["set-hours","set-minutes","update:hours","update:minutes","update:seconds","reset-flow","mounted","overlay-closed","overlay-opened","am-pm-change"],setup(t,{expose:o,emit:n}){const r=n,a=t,{setTimePickerElements:l,setTimePickerBackRef:i}=Ne(),{defaultedAriaLabels:d,defaultedTransitions:c,defaultedFilters:p,defaultedConfig:C,defaultedRange:k}=m0(a),{transitionName:m,showTransition:y}=b9(c),b=e.reactive({hours:!1,minutes:!1,seconds:!1}),f=e.ref("AM"),M=e.ref(null),V=e.ref([]),S=e.ref(),x=e.ref(!1);e.onMounted(()=>{r("mounted")});const B=E=>s0(new Date,{hours:E.hours,minutes:E.minutes,seconds:a.enableSeconds?E.seconds:0,milliseconds:0}),O=e.computed(()=>E=>I(E,a[E])||N(E,a[E])),_=e.computed(()=>({hours:a.hours,minutes:a.minutes,seconds:a.seconds})),N=(E,c2)=>k.value.enabled&&!k.value.disableTimeRangeValidation?!a.validateTime(E,c2):!1,Z=(E,c2)=>{if(k.value.enabled&&!k.value.disableTimeRangeValidation){const y2=c2?+a[`${E}Increment`]:-+a[`${E}Increment`],d2=a[E]+y2;return!a.validateTime(E,d2)}return!1},Y=e.computed(()=>E=>!r2(+a[E]+ +a[`${E}Increment`],E)||Z(E,!0)),D=e.computed(()=>E=>!r2(+a[E]-+a[`${E}Increment`],E)||Z(E,!1)),z=(E,c2)=>T6(s0(M2(),E),c2),W=(E,c2)=>$r(s0(M2(),E),c2),u2=e.computed(()=>({dp__time_col:!0,dp__time_col_block:!a.timePickerInline,dp__time_col_reg_block:!a.enableSeconds&&a.is24&&!a.timePickerInline,dp__time_col_reg_inline:!a.enableSeconds&&a.is24&&a.timePickerInline,dp__time_col_reg_with_button:!a.enableSeconds&&!a.is24,dp__time_col_sec:a.enableSeconds&&a.is24,dp__time_col_sec_with_button:a.enableSeconds&&!a.is24})),w=e.computed(()=>{const E=[{type:"hours"}];return a.enableMinutes&&E.push({type:"",separator:!0},{type:"minutes"}),a.enableSeconds&&E.push({type:"",separator:!0},{type:"seconds"}),E}),T=e.computed(()=>w.value.filter(E=>!E.separator)),H=e.computed(()=>E=>{if(E==="hours"){const c2=i2(+a.hours);return{text:c2<10?`0${c2}`:`${c2}`,value:c2}}return{text:a[E]<10?`0${a[E]}`:`${a[E]}`,value:a[E]}}),I=(E,c2)=>{var y2;if(!a.disabledTimesConfig)return!1;const d2=a.disabledTimesConfig(a.order,E==="hours"?c2:void 0);return d2[E]?!!((y2=d2[E])!=null&&y2.includes(c2)):!0},t2=(E,c2)=>c2!=="hours"||f.value==="AM"?E:E+12,P=E=>{const c2=a.is24?24:12,y2=E==="hours"?c2:60,d2=+a[`${E}GridIncrement`],S2=E==="hours"&&!a.is24?d2:0,A=[];for(let R=S2;R<y2;R+=d2)A.push({value:a.is24?R:t2(R,E),text:R<10?`0${R}`:`${R}`});return E==="hours"&&!a.is24&&A.unshift({value:f.value==="PM"?12:0,text:"12"}),A3(A,R=>({active:!1,disabled:p.value.times[E].includes(R.value)||!r2(R.value,E)||I(E,R.value)||N(E,R.value)}))},$=E=>E>=0?E:59,o2=E=>E>=0?E:23,r2=(E,c2)=>{const y2=a.minTime?B(M5(a.minTime)):null,d2=a.maxTime?B(M5(a.maxTime)):null,S2=B(M5(_.value,c2,c2==="minutes"||c2==="seconds"?$(E):o2(E)));return y2&&d2?(m9(S2,d2)||D3(S2,d2))&&(E3(S2,y2)||D3(S2,y2)):y2?E3(S2,y2)||D3(S2,y2):d2?m9(S2,d2)||D3(S2,d2):!0},X=E=>a[`no${E[0].toUpperCase()+E.slice(1)}Overlay`],v=E=>{X(E)||(b[E]=!b[E],b[E]?(x.value=!0,r("overlay-opened",E)):(x.value=!1,r("overlay-closed",E)))},U=E=>E==="hours"?de:E==="minutes"?Te:S3,h2=()=>{S.value&&clearTimeout(S.value)},F=(E,c2=!0,y2)=>{const d2=c2?z:W,S2=c2?+a[`${E}Increment`]:-+a[`${E}Increment`];r2(+a[E]+S2,E)&&r(`update:${E}`,U(E)(d2({[E]:+a[E]},{[E]:+a[`${E}Increment`]}))),!(y2!=null&&y2.keyboard)&&C.value.timeArrowHoldThreshold&&(S.value=setTimeout(()=>{F(E,c2)},C.value.timeArrowHoldThreshold))},i2=E=>a.is24?E:(E>=12?f.value="PM":f.value="AM",jr(E)),k2=()=>{f.value==="PM"?(f.value="AM",r("update:hours",a.hours-12)):(f.value="PM",r("update:hours",a.hours+12)),r("am-pm-change",f.value)},b2=E=>{b[E]=!0},Q=(E,c2,y2)=>{if(E&&a.arrowNavigation){Array.isArray(V.value[c2])?V.value[c2][y2]=E:V.value[c2]=[E];const d2=V.value.reduce((S2,A)=>A.map((R,J)=>[...S2[J]||[],A[J]]),[]);i(a.closeTimePickerBtn),M.value&&(d2[1]=d2[1].concat(M.value)),l(d2,a.order)}},p2=(E,c2)=>(v(E),r(`update:${E}`,c2));return o({openChildCmp:b2}),(E,c2)=>{var y2;return E.disabled?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("div",Ta,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(w.value,(d2,S2)=>{var A,R,J;return e.openBlock(),e.createElementBlock("div",{key:S2,class:e.normalizeClass(u2.value)},[d2.separator?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[x.value?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createTextVNode(":")],64))],64)):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createElementVNode("button",{ref_for:!0,ref:g2=>Q(g2,S2,0),type:"button",class:e.normalizeClass({dp__btn:!0,dp__inc_dec_button:!E.timePickerInline,dp__inc_dec_button_inline:E.timePickerInline,dp__tp_inline_btn_top:E.timePickerInline,dp__inc_dec_button_disabled:Y.value(d2.type),"dp--hidden-el":x.value}),"data-test":`${d2.type}-time-inc-btn-${a.order}`,"aria-label":(A=e.unref(d))==null?void 0:A.incrementValue(d2.type),tabindex:"0",onKeydown:g2=>e.unref(i1)(g2,()=>F(d2.type,!0,{keyboard:!0}),!0),onClick:g2=>e.unref(C).timeArrowHoldThreshold?void 0:F(d2.type,!0),onMousedown:g2=>e.unref(C).timeArrowHoldThreshold?F(d2.type,!0):void 0,onMouseup:h2},[a.timePickerInline?(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[E.$slots["tp-inline-arrow-up"]?e.renderSlot(E.$slots,"tp-inline-arrow-up",{key:0}):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[c2[2]||(c2[2]=e.createElementVNode("span",{class:"dp__tp_inline_btn_bar dp__tp_btn_in_l"},null,-1)),c2[3]||(c2[3]=e.createElementVNode("span",{class:"dp__tp_inline_btn_bar dp__tp_btn_in_r"},null,-1))],64))],64)):(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[E.$slots["arrow-up"]?e.renderSlot(E.$slots,"arrow-up",{key:0}):e.createCommentVNode("",!0),E.$slots["arrow-up"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(C5),{key:1}))],64))],42,Za),e.createElementVNode("button",{ref_for:!0,ref:g2=>Q(g2,S2,1),type:"button","aria-label":`${H.value(d2.type).text}-${(R=e.unref(d))==null?void 0:R.openTpOverlay(d2.type)}`,class:e.normalizeClass({dp__time_display:!0,dp__time_display_block:!E.timePickerInline,dp__time_display_inline:E.timePickerInline,"dp--time-invalid":O.value(d2.type),"dp--time-overlay-btn":!O.value(d2.type),"dp--hidden-el":x.value}),disabled:X(d2.type),tabindex:"0","data-test":`${d2.type}-toggle-overlay-btn-${a.order}`,onKeydown:g2=>e.unref(i1)(g2,()=>v(d2.type),!0),onClick:g2=>v(d2.type)},[E.$slots[d2.type]?e.renderSlot(E.$slots,d2.type,{key:0,text:H.value(d2.type).text,value:H.value(d2.type).value}):e.createCommentVNode("",!0),E.$slots[d2.type]?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(H.value(d2.type).text),1)],64))],42,Aa),e.createElementVNode("button",{ref_for:!0,ref:g2=>Q(g2,S2,2),type:"button",class:e.normalizeClass({dp__btn:!0,dp__inc_dec_button:!E.timePickerInline,dp__inc_dec_button_inline:E.timePickerInline,dp__tp_inline_btn_bottom:E.timePickerInline,dp__inc_dec_button_disabled:D.value(d2.type),"dp--hidden-el":x.value}),"data-test":`${d2.type}-time-dec-btn-${a.order}`,"aria-label":(J=e.unref(d))==null?void 0:J.decrementValue(d2.type),tabindex:"0",onKeydown:g2=>e.unref(i1)(g2,()=>F(d2.type,!1,{keyboard:!0}),!0),onClick:g2=>e.unref(C).timeArrowHoldThreshold?void 0:F(d2.type,!1),onMousedown:g2=>e.unref(C).timeArrowHoldThreshold?F(d2.type,!1):void 0,onMouseup:h2},[a.timePickerInline?(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[E.$slots["tp-inline-arrow-down"]?e.renderSlot(E.$slots,"tp-inline-arrow-down",{key:0}):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[c2[4]||(c2[4]=e.createElementVNode("span",{class:"dp__tp_inline_btn_bar dp__tp_btn_in_l"},null,-1)),c2[5]||(c2[5]=e.createElementVNode("span",{class:"dp__tp_inline_btn_bar dp__tp_btn_in_r"},null,-1))],64))],64)):(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[E.$slots["arrow-down"]?e.renderSlot(E.$slots,"arrow-down",{key:0}):e.createCommentVNode("",!0),E.$slots["arrow-down"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(h5),{key:1}))],64))],42,$a)],64))],2)}),128)),E.is24?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("div",Na,[E.$slots["am-pm-button"]?e.renderSlot(E.$slots,"am-pm-button",{key:0,toggle:k2,value:f.value}):e.createCommentVNode("",!0),E.$slots["am-pm-button"]?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("button",{key:1,ref_key:"amPmButton",ref:M,type:"button",class:"dp__pm_am_button",role:"button","aria-label":(y2=e.unref(d))==null?void 0:y2.amPmButton,tabindex:"0",onClick:k2,onKeydown:c2[0]||(c2[0]=d2=>e.unref(i1)(d2,()=>k2(),!0))},e.toDisplayString(f.value),41,Fa))])),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(T.value,(d2,S2)=>(e.openBlock(),e.createBlock(e.Transition,{key:S2,name:e.unref(m)(b[d2.type]),css:e.unref(y)},{default:e.withCtx(()=>{var A,R;return[b[d2.type]?(e.openBlock(),e.createBlock(y9,{key:0,items:P(d2.type),"is-last":E.autoApply&&!e.unref(C).keepActionRow,"esc-close":E.escClose,type:d2.type,"text-input":E.textInput,config:E.config,"arrow-navigation":E.arrowNavigation,"aria-labels":E.ariaLabels,"overlay-label":(R=(A=e.unref(d)).timeOverlay)==null?void 0:R.call(A,d2.type),onSelected:J=>p2(d2.type,J),onToggle:J=>v(d2.type),onResetFlow:c2[1]||(c2[1]=J=>E.$emit("reset-flow"))},e.createSlots({"button-icon":e.withCtx(()=>[E.$slots["clock-icon"]?e.renderSlot(E.$slots,"clock-icon",{key:0}):e.createCommentVNode("",!0),E.$slots["clock-icon"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.resolveDynamicComponent(E.timePickerInline?e.unref(Z3):e.unref(u5)),{key:1}))]),_:2},[E.$slots[`${d2.type}-overlay-value`]?{name:"item",fn:e.withCtx(({item:J})=>[e.renderSlot(E.$slots,`${d2.type}-overlay-value`,{text:J.text,value:J.value})]),key:"0"}:void 0,E.$slots[`${d2.type}-overlay-header`]?{name:"header",fn:e.withCtx(()=>[e.renderSlot(E.$slots,`${d2.type}-overlay-header`,{toggle:()=>v(d2.type)})]),key:"1"}:void 0]),1032,["items","is-last","esc-close","type","text-input","config","arrow-navigation","aria-labels","overlay-label","onSelected","onToggle"])):e.createCommentVNode("",!0)]}),_:2},1032,["name","css"]))),128))]))}}}),za={class:"dp--tp-wrap"},Pa=["aria-label","tabindex"],ja=["role","aria-label","tabindex"],Ra=["aria-label"],A4=e.defineComponent({compatConfig:{MODE:3},__name:"TimePicker",props:{hours:{type:[Number,Array],default:0},minutes:{type:[Number,Array],default:0},seconds:{type:[Number,Array],default:0},disabledTimesConfig:{type:Function,default:null},validateTime:{type:Function,default:()=>!1},...O1},emits:["update:hours","update:minutes","update:seconds","mount","reset-flow","overlay-opened","overlay-closed","am-pm-change"],setup(t,{expose:o,emit:n}){const r=n,a=t,{buildMatrix:l,setTimePicker:i}=Ne(),d=e.useSlots(),{defaultedTransitions:c,defaultedAriaLabels:p,defaultedTextInput:C,defaultedConfig:k,defaultedRange:m}=m0(a),{transitionName:y,showTransition:b}=b9(c),{hideNavigationButtons:f}=it(),M=e.ref(null),V=e.ref(null),S=e.ref([]),x=e.ref(null),B=e.ref(!1);e.onMounted(()=>{r("mount"),!a.timePicker&&a.arrowNavigation?l([N0(M.value)],"time"):i(!0,a.timePicker)});const O=e.computed(()=>m.value.enabled&&a.modelAuto?C4(a.internalModelValue):!0),_=e.ref(!1),N=P=>({hours:Array.isArray(a.hours)?a.hours[P]:a.hours,minutes:Array.isArray(a.minutes)?a.minutes[P]:a.minutes,seconds:Array.isArray(a.seconds)?a.seconds[P]:a.seconds}),Z=e.computed(()=>{const P=[];if(m.value.enabled)for(let $=0;$<2;$++)P.push(N($));else P.push(N(0));return P}),Y=(P,$=!1,o2="")=>{$||r("reset-flow"),_.value=P,r(P?"overlay-opened":"overlay-closed",K0.time),a.arrowNavigation&&i(P),e.nextTick(()=>{o2!==""&&S.value[0]&&S.value[0].openChildCmp(o2)})},D=e.computed(()=>({dp__btn:!0,dp__button:!0,dp__button_bottom:a.autoApply&&!k.value.keepActionRow})),z=b1(d,"timePicker"),W=(P,$,o2)=>m.value.enabled?$===0?[P,Z.value[1][o2]]:[Z.value[0][o2],P]:P,u2=P=>{r("update:hours",P)},w=P=>{r("update:minutes",P)},T=P=>{r("update:seconds",P)},H=()=>{if(x.value&&!C.value.enabled&&!a.noOverlayFocus){const P=m4(x.value);P&&P.focus({preventScroll:!0})}},I=P=>{B.value=!1,r("overlay-closed",P)},t2=P=>{B.value=!0,r("overlay-opened",P)};return o({toggleTimePicker:Y}),(P,$)=>{var o2;return e.openBlock(),e.createElementBlock("div",za,[!P.timePicker&&!P.timePickerInline?e.withDirectives((e.openBlock(),e.createElementBlock("button",{key:0,ref_key:"openTimePickerBtn",ref:M,type:"button",class:e.normalizeClass({...D.value,"dp--hidden-el":_.value}),"aria-label":(o2=e.unref(p))==null?void 0:o2.openTimePicker,tabindex:P.noOverlayFocus?void 0:0,"data-test":"open-time-picker-btn",onKeydown:$[0]||($[0]=r2=>e.unref(i1)(r2,()=>Y(!0))),onClick:$[1]||($[1]=r2=>Y(!0))},[P.$slots["clock-icon"]?e.renderSlot(P.$slots,"clock-icon",{key:0}):e.createCommentVNode("",!0),P.$slots["clock-icon"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(u5),{key:1}))],42,Pa)),[[e.vShow,!e.unref(f)(P.hideNavigation,"time")]]):e.createCommentVNode("",!0),e.createVNode(e.Transition,{name:e.unref(y)(_.value),css:e.unref(b)&&!P.timePickerInline},{default:e.withCtx(()=>{var r2,X;return[_.value||P.timePicker||P.timePickerInline?(e.openBlock(),e.createElementBlock("div",{key:0,ref_key:"overlayRef",ref:x,role:P.timePickerInline?void 0:"dialog",class:e.normalizeClass({dp__overlay:!P.timePickerInline,"dp--overlay-absolute":!a.timePicker&&!P.timePickerInline,"dp--overlay-relative":a.timePicker}),style:e.normalizeStyle(P.timePicker?{height:`${e.unref(k).modeHeight}px`}:void 0),"aria-label":(r2=e.unref(p))==null?void 0:r2.timePicker,tabindex:P.timePickerInline?void 0:0},[e.createElementVNode("div",{class:e.normalizeClass(P.timePickerInline?"dp__time_picker_inline_container":"dp__overlay_container dp__container_flex dp__time_picker_overlay_container"),style:{display:"flex"}},[P.$slots["time-picker-overlay"]?e.renderSlot(P.$slots,"time-picker-overlay",{key:0,hours:t.hours,minutes:t.minutes,seconds:t.seconds,setHours:u2,setMinutes:w,setSeconds:T}):e.createCommentVNode("",!0),P.$slots["time-picker-overlay"]?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(P.timePickerInline?"dp__flex":"dp__overlay_row dp__flex_row")},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Z.value,(v,U)=>e.withDirectives((e.openBlock(),e.createBlock(Oa,e.mergeProps({key:U,ref_for:!0},{...P.$props,order:U,hours:v.hours,minutes:v.minutes,seconds:v.seconds,closeTimePickerBtn:V.value,disabledTimesConfig:t.disabledTimesConfig,disabled:U===0?e.unref(m).fixedStart:e.unref(m).fixedEnd},{ref_for:!0,ref_key:"timeInputRefs",ref:S,"validate-time":(h2,F)=>t.validateTime(h2,W(F,U,h2)),"onUpdate:hours":h2=>u2(W(h2,U,"hours")),"onUpdate:minutes":h2=>w(W(h2,U,"minutes")),"onUpdate:seconds":h2=>T(W(h2,U,"seconds")),onMounted:H,onOverlayClosed:I,onOverlayOpened:t2,onAmPmChange:$[2]||($[2]=h2=>P.$emit("am-pm-change",h2))}),e.createSlots({_:2},[e.renderList(e.unref(z),(h2,F)=>({name:h2,fn:e.withCtx(i2=>[e.renderSlot(P.$slots,h2,e.mergeProps({ref_for:!0},i2))])}))]),1040,["validate-time","onUpdate:hours","onUpdate:minutes","onUpdate:seconds"])),[[e.vShow,U===0?!0:O.value]])),128))],2)),!P.timePicker&&!P.timePickerInline?e.withDirectives((e.openBlock(),e.createElementBlock("button",{key:2,ref_key:"closeTimePickerBtn",ref:V,type:"button",class:e.normalizeClass({...D.value,"dp--hidden-el":B.value}),"aria-label":(X=e.unref(p))==null?void 0:X.closeTimePicker,tabindex:"0",onKeydown:$[3]||($[3]=v=>e.unref(i1)(v,()=>Y(!1))),onClick:$[4]||($[4]=v=>Y(!1))},[P.$slots["calendar-icon"]?e.renderSlot(P.$slots,"calendar-icon",{key:0}):e.createCommentVNode("",!0),P.$slots["calendar-icon"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(Z3),{key:1}))],42,Ra)),[[e.vShow,!e.unref(f)(P.hideNavigation,"time")]]):e.createCommentVNode("",!0)],2)],14,ja)):e.createCommentVNode("",!0)]}),_:3},8,["name","css"])])}}}),$4=(t,o,n,r)=>{const{defaultedRange:a}=m0(t),l=(x,B)=>Array.isArray(o[x])?o[x][B]:o[x],i=x=>t.enableSeconds?Array.isArray(o.seconds)?o.seconds[x]:o.seconds:0,d=(x,B)=>x?B!==void 0?Ae(x,l("hours",B),l("minutes",B),i(B)):Ae(x,o.hours,o.minutes,i()):i4(M2(),i(B)),c=(x,B)=>{o[x]=B},p=e.computed(()=>t.modelAuto&&a.value.enabled?Array.isArray(n.value)?n.value.length>1:!1:a.value.enabled),C=(x,B)=>{const O=Object.fromEntries(Object.keys(o).map(_=>_===x?[_,B]:[_,o[_]].slice()));if(p.value&&!a.value.disableTimeRangeValidation){const _=Z=>n.value?Ae(n.value[Z],O.hours[Z],O.minutes[Z],O.seconds[Z]):null,N=Z=>l4(n.value[Z],0);return!(I2(_(0),_(1))&&(E3(_(0),N(1))||m9(_(1),N(0))))}return!0},k=(x,B)=>{C(x,B)&&(c(x,B),r&&r())},m=x=>{k("hours",x)},y=x=>{k("minutes",x)},b=x=>{k("seconds",x)},f=(x,B,O,_)=>{B&&m(x),!B&&!O&&y(x),O&&b(x),n.value&&_(n.value)},M=x=>{if(x){const B=Array.isArray(x),O=B?[+x[0].hours,+x[1].hours]:+x.hours,_=B?[+x[0].minutes,+x[1].minutes]:+x.minutes,N=B?[+x[0].seconds,+x[1].seconds]:+x.seconds;c("hours",O),c("minutes",_),t.enableSeconds&&c("seconds",N)}},V=(x,B)=>{const O={hours:Array.isArray(o.hours)?o.hours[x]:o.hours,disabledArr:[]};return(B||B===0)&&(O.hours=B),Array.isArray(t.disabledTimes)&&(O.disabledArr=a.value.enabled&&Array.isArray(t.disabledTimes[x])?t.disabledTimes[x]:t.disabledTimes),O},S=e.computed(()=>(x,B)=>{var O;if(Array.isArray(t.disabledTimes)){const{disabledArr:_,hours:N}=V(x,B),Z=_.filter(Y=>+Y.hours===N);return((O=Z[0])==null?void 0:O.minutes)==="*"?{hours:[N],minutes:void 0,seconds:void 0}:{hours:[],minutes:(Z==null?void 0:Z.map(Y=>+Y.minutes))??[],seconds:(Z==null?void 0:Z.map(Y=>Y.seconds?+Y.seconds:void 0))??[]}}return{hours:[],minutes:[],seconds:[]}});return{setTime:c,updateHours:m,updateMinutes:y,updateSeconds:b,getSetDateTime:d,updateTimeValues:f,getSecondsValue:i,assignStartTime:M,validateTime:C,disabledTimesConfig:S}},Ia=(t,o)=>{const n=()=>{t.isTextInputDate&&B()},{modelValue:r,time:a}=M9(t,o,n),{defaultedStartTime:l,defaultedRange:i,defaultedTz:d}=m0(t),{updateTimeValues:c,getSetDateTime:p,setTime:C,assignStartTime:k,disabledTimesConfig:m,validateTime:y}=$4(t,a,r,b);function b(){o("update-flow-step")}const f=_=>{const{hours:N,minutes:Z,seconds:Y}=_;return{hours:+N,minutes:+Z,seconds:Y?+Y:0}},M=()=>{if(t.startTime){if(Array.isArray(t.startTime)){const N=f(t.startTime[0]),Z=f(t.startTime[1]);return[s0(M2(),N),s0(M2(),Z)]}const _=f(t.startTime);return s0(M2(),_)}return i.value.enabled?[null,null]:null},V=()=>{if(i.value.enabled){const[_,N]=M();r.value=[m1(p(_,0),d.value.timezone),m1(p(N,1),d.value.timezone)]}else r.value=m1(p(M()),d.value.timezone)},S=_=>Array.isArray(_)?[C3(M2(_[0])),C3(M2(_[1]))]:[C3(_??M2())],x=(_,N,Z)=>{C("hours",_),C("minutes",N),C("seconds",t.enableSeconds?Z:0)},B=()=>{const[_,N]=S(r.value);return i.value.enabled?x([_.hours,N.hours],[_.minutes,N.minutes],[_.seconds,N.seconds]):x(_.hours,_.minutes,_.seconds)};e.onMounted(()=>{if(!t.shadow)return k(l.value),r.value?B():V()});const O=()=>{Array.isArray(r.value)?r.value=r.value.map((_,N)=>_&&p(_,N)):r.value=p(r.value),o("time-update")};return{modelValue:r,time:a,disabledTimesConfig:m,updateTime:(_,N=!0,Z=!1)=>{c(_,N,Z,O)},validateTime:y}},Ya=e.defineComponent({compatConfig:{MODE:3},__name:"TimePickerSolo",props:{...O1},emits:["update:internal-model-value","time-update","am-pm-change","mount","reset-flow","update-flow-step","overlay-toggle"],setup(t,{expose:o,emit:n}){const r=n,a=t,l=e.useSlots(),i=b1(l,"timePicker"),d=e.ref(null),{time:c,modelValue:p,disabledTimesConfig:C,updateTime:k,validateTime:m}=Ia(a,r);return e.onMounted(()=>{a.shadow||r("mount",null)}),o({getSidebarProps:()=>({modelValue:p,time:c,updateTime:k}),toggleTimePicker:(y,b=!1,f="")=>{var M;(M=d.value)==null||M.toggleTimePicker(y,b,f)}}),(y,b)=>(e.openBlock(),e.createBlock(at,{"multi-calendars":0,stretch:""},{default:e.withCtx(()=>[e.createVNode(A4,e.mergeProps({ref_key:"tpRef",ref:d},y.$props,{hours:e.unref(c).hours,minutes:e.unref(c).minutes,seconds:e.unref(c).seconds,"internal-model-value":y.internalModelValue,"disabled-times-config":e.unref(C),"validate-time":e.unref(m),"onUpdate:hours":b[0]||(b[0]=f=>e.unref(k)(f)),"onUpdate:minutes":b[1]||(b[1]=f=>e.unref(k)(f,!1)),"onUpdate:seconds":b[2]||(b[2]=f=>e.unref(k)(f,!1,!0)),onAmPmChange:b[3]||(b[3]=f=>y.$emit("am-pm-change",f)),onResetFlow:b[4]||(b[4]=f=>y.$emit("reset-flow")),onOverlayClosed:b[5]||(b[5]=f=>y.$emit("overlay-toggle",{open:!1,overlay:f})),onOverlayOpened:b[6]||(b[6]=f=>y.$emit("overlay-toggle",{open:!0,overlay:f}))}),e.createSlots({_:2},[e.renderList(e.unref(i),(f,M)=>({name:f,fn:e.withCtx(V=>[e.renderSlot(y.$slots,f,e.normalizeProps(e.guardReactiveProps(V)))])}))]),1040,["hours","minutes","seconds","internal-model-value","disabled-times-config","validate-time"])]),_:3}))}}),Ua={class:"dp--header-wrap"},Wa={key:0,class:"dp__month_year_wrap"},qa={key:0},Ga={class:"dp__month_year_wrap"},Xa=["data-dp-element","aria-label","data-test","onClick","onKeydown"],Ka=e.defineComponent({compatConfig:{MODE:3},__name:"DpHeader",props:{month:{type:Number,default:0},year:{type:Number,default:0},instance:{type:Number,default:0},years:{type:Array,default:()=>[]},months:{type:Array,default:()=>[]},...O1},emits:["update-month-year","mount","reset-flow","overlay-closed","overlay-opened"],setup(t,{expose:o,emit:n}){const r=n,a=t,{defaultedTransitions:l,defaultedAriaLabels:i,defaultedMultiCalendars:d,defaultedFilters:c,defaultedConfig:p,defaultedHighlight:C,propDates:k,defaultedUI:m}=m0(a),{transitionName:y,showTransition:b}=b9(l),{buildMatrix:f}=Ne(),{handleMonthYearChange:M,isDisabled:V,updateMonthYear:S}=ga(a,r),{showLeftIcon:x,showRightIcon:B}=it(),O=e.ref(!1),_=e.ref(!1),N=e.ref(!1),Z=e.ref([null,null,null,null]);e.onMounted(()=>{r("mount")});const Y=X=>({get:()=>a[X],set:v=>{const U=X===N1.month?N1.year:N1.month;r("update-month-year",{[X]:v,[U]:a[U]}),X===N1.month?I(!0):t2(!0)}}),D=e.computed(Y(N1.month)),z=e.computed(Y(N1.year)),W=e.computed(()=>X=>({month:a.month,year:a.year,items:X===N1.month?a.months:a.years,instance:a.instance,updateMonthYear:S,toggle:X===N1.month?I:t2})),u2=e.computed(()=>a.months.find(v=>v.value===a.month)||{text:"",value:0}),w=e.computed(()=>A3(a.months,X=>{const v=a.month===X.value,U=f9(X.value,g4(a.year,k.value.minDate),b4(a.year,k.value.maxDate))||c.value.months.includes(X.value),h2=_4(C.value,X.value,a.year);return{active:v,disabled:U,highlighted:h2}})),T=e.computed(()=>A3(a.years,X=>{const v=a.year===X.value,U=f9(X.value,$3(k.value.minDate),$3(k.value.maxDate))||c.value.years.includes(X.value),h2=_5(C.value,X.value);return{active:v,disabled:U,highlighted:h2}})),H=(X,v,U)=>{U!==void 0?X.value=U:X.value=!X.value,X.value?(N.value=!0,r("overlay-opened",v)):(N.value=!1,r("overlay-closed",v))},I=(X=!1,v)=>{P(X),H(O,K0.month,v)},t2=(X=!1,v)=>{P(X),H(_,K0.year,v)},P=X=>{X||r("reset-flow")},$=(X,v)=>{a.arrowNavigation&&(Z.value[v]=N0(X),f(Z.value,"monthYear"))},o2=e.computed(()=>{var X,v,U,h2,F,i2;return[{type:N1.month,index:1,toggle:I,modelValue:D.value,updateModelValue:k2=>D.value=k2,text:u2.value.text,showSelectionGrid:O.value,items:w.value,ariaLabel:(X=i.value)==null?void 0:X.openMonthsOverlay,overlayLabel:((U=(v=i.value).monthPicker)==null?void 0:U.call(v,!0))??void 0},{type:N1.year,index:2,toggle:t2,modelValue:z.value,updateModelValue:k2=>z.value=k2,text:f4(a.year,a.locale),showSelectionGrid:_.value,items:T.value,ariaLabel:(h2=i.value)==null?void 0:h2.openYearsOverlay,overlayLabel:((i2=(F=i.value).yearPicker)==null?void 0:i2.call(F,!0))??void 0}]}),r2=e.computed(()=>a.disableYearSelect?[o2.value[0]]:a.yearFirst?[...o2.value].reverse():o2.value);return o({toggleMonthPicker:I,toggleYearPicker:t2,handleMonthYearChange:M}),(X,v)=>{var U,h2,F,i2,k2,b2;return e.openBlock(),e.createElementBlock("div",Ua,[X.$slots["month-year"]?(e.openBlock(),e.createElementBlock("div",Wa,[e.renderSlot(X.$slots,"month-year",e.normalizeProps(e.guardReactiveProps({month:t.month,year:t.year,months:t.months,years:t.years,updateMonthYear:e.unref(S),handleMonthYearChange:e.unref(M),instance:t.instance})))])):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[X.$slots["top-extra"]?(e.openBlock(),e.createElementBlock("div",qa,[e.renderSlot(X.$slots,"top-extra",{value:X.internalModelValue})])):e.createCommentVNode("",!0),e.createElementVNode("div",Ga,[e.unref(x)(e.unref(d),t.instance)&&!X.vertical?(e.openBlock(),e.createBlock(g9,{key:0,"aria-label":(U=e.unref(i))==null?void 0:U.prevMonth,disabled:e.unref(V)(!1),class:e.normalizeClass((h2=e.unref(m))==null?void 0:h2.navBtnPrev),"el-name":"action-prev",onActivate:v[0]||(v[0]=Q=>e.unref(M)(!1,!0)),onSetRef:v[1]||(v[1]=Q=>$(Q,0))},{default:e.withCtx(()=>[X.$slots["arrow-left"]?e.renderSlot(X.$slots,"arrow-left",{key:0}):e.createCommentVNode("",!0),X.$slots["arrow-left"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(c5),{key:1}))]),_:3},8,["aria-label","disabled","class"])):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["dp__month_year_wrap",{dp__year_disable_select:X.disableYearSelect}])},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r2.value,(Q,p2)=>(e.openBlock(),e.createElementBlock(e.Fragment,{key:Q.type},[e.createElementVNode("button",{ref_for:!0,ref:E=>$(E,p2+1),type:"button","data-dp-element":`overlay-${Q.type}`,class:e.normalizeClass(["dp__btn dp__month_year_select",{"dp--hidden-el":N.value}]),"aria-label":`${Q.text}-${Q.ariaLabel}`,"data-test":`${Q.type}-toggle-overlay-${t.instance}`,onClick:Q.toggle,onKeydown:E=>e.unref(i1)(E,()=>Q.toggle(),!0)},[X.$slots[Q.type]?e.renderSlot(X.$slots,Q.type,{key:0,text:Q.text,value:a[Q.type]}):e.createCommentVNode("",!0),X.$slots[Q.type]?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(Q.text),1)],64))],42,Xa),e.createVNode(e.Transition,{name:e.unref(y)(Q.showSelectionGrid),css:e.unref(b)},{default:e.withCtx(()=>[Q.showSelectionGrid?(e.openBlock(),e.createBlock(y9,{key:0,items:Q.items,"arrow-navigation":X.arrowNavigation,"hide-navigation":X.hideNavigation,"is-last":X.autoApply&&!e.unref(p).keepActionRow,"skip-button-ref":!1,config:X.config,type:Q.type,"header-refs":[],"esc-close":X.escClose,"menu-wrap-ref":X.menuWrapRef,"text-input":X.textInput,"aria-labels":X.ariaLabels,"overlay-label":Q.overlayLabel,onSelected:Q.updateModelValue,onToggle:Q.toggle},e.createSlots({"button-icon":e.withCtx(()=>[X.$slots["calendar-icon"]?e.renderSlot(X.$slots,"calendar-icon",{key:0}):e.createCommentVNode("",!0),X.$slots["calendar-icon"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(Z3),{key:1}))]),_:2},[X.$slots[`${Q.type}-overlay-value`]?{name:"item",fn:e.withCtx(({item:E})=>[e.renderSlot(X.$slots,`${Q.type}-overlay-value`,{text:E.text,value:E.value})]),key:"0"}:void 0,X.$slots[`${Q.type}-overlay`]?{name:"overlay",fn:e.withCtx(()=>[e.renderSlot(X.$slots,`${Q.type}-overlay`,e.mergeProps({ref_for:!0},W.value(Q.type)))]),key:"1"}:void 0,X.$slots[`${Q.type}-overlay-header`]?{name:"header",fn:e.withCtx(()=>[e.renderSlot(X.$slots,`${Q.type}-overlay-header`,{toggle:Q.toggle})]),key:"2"}:void 0]),1032,["items","arrow-navigation","hide-navigation","is-last","config","type","esc-close","menu-wrap-ref","text-input","aria-labels","overlay-label","onSelected","onToggle"])):e.createCommentVNode("",!0)]),_:2},1032,["name","css"])],64))),128))],2),e.unref(x)(e.unref(d),t.instance)&&X.vertical?(e.openBlock(),e.createBlock(g9,{key:1,"aria-label":(F=e.unref(i))==null?void 0:F.prevMonth,"el-name":"action-prev",disabled:e.unref(V)(!1),class:e.normalizeClass((i2=e.unref(m))==null?void 0:i2.navBtnPrev),onActivate:v[2]||(v[2]=Q=>e.unref(M)(!1,!0))},{default:e.withCtx(()=>[X.$slots["arrow-up"]?e.renderSlot(X.$slots,"arrow-up",{key:0}):e.createCommentVNode("",!0),X.$slots["arrow-up"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(C5),{key:1}))]),_:3},8,["aria-label","disabled","class"])):e.createCommentVNode("",!0),e.unref(B)(e.unref(d),t.instance)?(e.openBlock(),e.createBlock(g9,{key:2,ref:"rightIcon","el-name":"action-next",disabled:e.unref(V)(!0),"aria-label":(k2=e.unref(i))==null?void 0:k2.nextMonth,class:e.normalizeClass((b2=e.unref(m))==null?void 0:b2.navBtnNext),onActivate:v[3]||(v[3]=Q=>e.unref(M)(!0,!0)),onSetRef:v[4]||(v[4]=Q=>$(Q,X.disableYearSelect?2:3))},{default:e.withCtx(()=>[X.$slots[X.vertical?"arrow-down":"arrow-right"]?e.renderSlot(X.$slots,X.vertical?"arrow-down":"arrow-right",{key:0}):e.createCommentVNode("",!0),X.$slots[X.vertical?"arrow-down":"arrow-right"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.resolveDynamicComponent(X.vertical?e.unref(h5):e.unref(d5)),{key:1}))]),_:3},8,["disabled","aria-label","class"])):e.createCommentVNode("",!0)])],64))])}}}),Qa={class:"dp__calendar_header",role:"row"},Ja={key:0,class:"dp__calendar_header_item",role:"gridcell"},el=["aria-label"],tl={key:0,class:"dp__calendar_item dp__week_num",role:"gridcell"},ol={class:"dp__cell_inner"},nl=["id","aria-pressed","aria-disabled","aria-label","tabindex","data-test","onClick","onTouchend","onKeydown","onMouseenter","onMouseleave","onMousedown"],rl=e.defineComponent({compatConfig:{MODE:3},__name:"DpCalendar",props:{mappedDates:{type:Array,default:()=>[]},instance:{type:Number,default:0},month:{type:Number,default:0},year:{type:Number,default:0},...O1},emits:["select-date","set-hover-date","handle-scroll","mount","handle-swipe","handle-space","tooltip-open","tooltip-close"],setup(t,{expose:o,emit:n}){const r=n,a=t,{buildMultiLevelMatrix:l}=Ne(),{defaultedTransitions:i,defaultedConfig:d,defaultedAriaLabels:c,defaultedMultiCalendars:p,defaultedWeekNumbers:C,defaultedMultiDates:k,defaultedUI:m}=m0(a),y=e.ref(null),b=e.ref({bottom:"",left:"",transform:""}),f=e.ref([]),M=e.ref(null),V=e.ref(!0),S=e.ref(""),x=e.ref({startX:0,endX:0,startY:0,endY:0}),B=e.ref([]),O=e.ref({left:"50%"}),_=e.ref(!1),N=e.computed(()=>a.calendar?a.calendar(a.mappedDates):a.mappedDates),Z=e.computed(()=>a.dayNames?Array.isArray(a.dayNames)?a.dayNames:a.dayNames(a.locale,+a.weekStart):Pr(a.formatLocale,a.locale,+a.weekStart));e.onMounted(()=>{r("mount",{cmp:"calendar",refs:f}),d.value.noSwipe||M.value&&(M.value.addEventListener("touchstart",$,{passive:!1}),M.value.addEventListener("touchend",o2,{passive:!1}),M.value.addEventListener("touchmove",r2,{passive:!1})),a.monthChangeOnScroll&&M.value&&M.value.addEventListener("wheel",U,{passive:!1})});const Y=Q=>Q?a.vertical?"vNext":"next":a.vertical?"vPrevious":"previous",D=(Q,p2)=>{if(a.transitions){const E=s1(Ce(M2(),a.month,a.year));S.value=E0(s1(Ce(M2(),Q,p2)),E)?i.value[Y(!0)]:i.value[Y(!1)],V.value=!1,e.nextTick(()=>{V.value=!0})}},z=e.computed(()=>({...m.value.calendar??{}})),W=e.computed(()=>Q=>{const p2=Rr(Q);return{dp__marker_dot:p2.type==="dot",dp__marker_line:p2.type==="line"}}),u2=e.computed(()=>Q=>I2(Q,y.value)),w=e.computed(()=>({dp__calendar:!0,dp__calendar_next:p.value.count>0&&a.instance!==0})),T=e.computed(()=>Q=>a.hideOffsetDates?Q.current:!0),H=async(Q,p2)=>{const{width:E,height:c2}=Q.getBoundingClientRect();y.value=p2.value;let y2={left:`${E/2}px`},d2=-50;if(await e.nextTick(),B.value[0]){const{left:S2,width:A}=B.value[0].getBoundingClientRect();S2<0&&(y2={left:"0"},d2=0,O.value.left=`${E/2}px`),window.innerWidth<S2+A&&(y2={right:"0"},d2=0,O.value.left=`${A-E/2}px`)}b.value={bottom:`${c2}px`,...y2,transform:`translateX(${d2}%)`}},I=async(Q,p2,E)=>{var c2,y2,d2;const S2=N0(f.value[p2][E]);S2&&((c2=Q.marker)!=null&&c2.customPosition&&(d2=(y2=Q.marker)==null?void 0:y2.tooltip)!=null&&d2.length?b.value=Q.marker.customPosition(S2):await H(S2,Q),r("tooltip-open",Q.marker))},t2=async(Q,p2,E)=>{var c2,y2;if(_.value&&k.value.enabled&&k.value.dragSelect)return r("select-date",Q);r("set-hover-date",Q),(y2=(c2=Q.marker)==null?void 0:c2.tooltip)!=null&&y2.length&&await I(Q,p2,E)},P=Q=>{y.value&&(y.value=null,b.value=JSON.parse(JSON.stringify({bottom:"",left:"",transform:""})),r("tooltip-close",Q.marker))},$=Q=>{x.value.startX=Q.changedTouches[0].screenX,x.value.startY=Q.changedTouches[0].screenY},o2=Q=>{x.value.endX=Q.changedTouches[0].screenX,x.value.endY=Q.changedTouches[0].screenY,X()},r2=Q=>{a.vertical&&!a.inline&&Q.preventDefault()},X=()=>{const Q=a.vertical?"Y":"X";Math.abs(x.value[`start${Q}`]-x.value[`end${Q}`])>10&&r("handle-swipe",x.value[`start${Q}`]>x.value[`end${Q}`]?"right":"left")},v=(Q,p2,E)=>{Q&&(Array.isArray(f.value[p2])?f.value[p2][E]=Q:f.value[p2]=[Q]),a.arrowNavigation&&l(f.value,"calendar")},U=Q=>{a.monthChangeOnScroll&&(Q.preventDefault(),r("handle-scroll",Q))},h2=Q=>C.value.type==="local"?n5(Q.value,{weekStartsOn:+a.weekStart}):C.value.type==="iso"?t5(Q.value):typeof C.value.type=="function"?C.value.type(Q.value):"",F=Q=>{const p2=Q[0];return C.value.hideOnOffsetDates?Q.some(E=>E.current)?h2(p2):"":h2(p2)},i2=(Q,p2,E=!0)=>{E&&k4()||!E&&!k4()||k.value.enabled||(Ze(Q,d.value),r("select-date",p2))},k2=Q=>{Ze(Q,d.value)},b2=Q=>{k.value.enabled&&k.value.dragSelect?(_.value=!0,r("select-date",Q)):k.value.enabled&&r("select-date",Q)};return o({triggerTransition:D}),(Q,p2)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(w.value)},[e.createElementVNode("div",{ref_key:"calendarWrapRef",ref:M,class:e.normalizeClass(z.value),role:"grid"},[e.createElementVNode("div",Qa,[Q.weekNumbers?(e.openBlock(),e.createElementBlock("div",Ja,e.toDisplayString(Q.weekNumName),1)):e.createCommentVNode("",!0),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Z.value,(E,c2)=>{var y2,d2;return e.openBlock(),e.createElementBlock("div",{key:c2,class:"dp__calendar_header_item",role:"gridcell","data-test":"calendar-header","aria-label":(d2=(y2=e.unref(c))==null?void 0:y2.weekDay)==null?void 0:d2.call(y2,c2)},[Q.$slots["calendar-header"]?e.renderSlot(Q.$slots,"calendar-header",{key:0,day:E,index:c2}):e.createCommentVNode("",!0),Q.$slots["calendar-header"]?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(E),1)],64))],8,el)}),128))]),p2[2]||(p2[2]=e.createElementVNode("div",{class:"dp__calendar_header_separator"},null,-1)),e.createVNode(e.Transition,{name:S.value,css:!!Q.transitions},{default:e.withCtx(()=>[V.value?(e.openBlock(),e.createElementBlock("div",{key:0,class:"dp__calendar",role:"rowgroup",onMouseleave:p2[1]||(p2[1]=E=>_.value=!1)},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(N.value,(E,c2)=>(e.openBlock(),e.createElementBlock("div",{key:c2,class:"dp__calendar_row",role:"row"},[Q.weekNumbers?(e.openBlock(),e.createElementBlock("div",tl,[e.createElementVNode("div",ol,e.toDisplayString(F(E.days)),1)])):e.createCommentVNode("",!0),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(E.days,(y2,d2)=>{var S2,A,R;return e.openBlock(),e.createElementBlock("div",{id:e.unref(x4)(y2.value),ref_for:!0,ref:J=>v(J,c2,d2),key:d2+c2,role:"gridcell",class:"dp__calendar_item","aria-pressed":(y2.classData.dp__active_date||y2.classData.dp__range_start||y2.classData.dp__range_start)??void 0,"aria-disabled":y2.classData.dp__cell_disabled||void 0,"aria-label":(A=(S2=e.unref(c))==null?void 0:S2.day)==null?void 0:A.call(S2,y2),tabindex:!y2.current&&Q.hideOffsetDates?void 0:0,"data-test":y2.value,onClick:e.withModifiers(J=>i2(J,y2),["prevent"]),onTouchend:J=>i2(J,y2,!1),onKeydown:J=>e.unref(i1)(J,()=>Q.$emit("select-date",y2)),onMouseenter:J=>t2(y2,c2,d2),onMouseleave:J=>P(y2),onMousedown:J=>b2(y2),onMouseup:p2[0]||(p2[0]=J=>_.value=!1)},[e.createElementVNode("div",{class:e.normalizeClass(["dp__cell_inner",y2.classData])},[Q.$slots.day&&T.value(y2)?e.renderSlot(Q.$slots,"day",{key:0,day:+y2.text,date:y2.value}):e.createCommentVNode("",!0),Q.$slots.day?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(y2.text),1)],64)),y2.marker&&T.value(y2)?(e.openBlock(),e.createElementBlock(e.Fragment,{key:2},[Q.$slots.marker?e.renderSlot(Q.$slots,"marker",{key:0,marker:y2.marker,day:+y2.text,date:y2.value}):(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(W.value(y2.marker)),style:e.normalizeStyle(y2.marker.color?{backgroundColor:y2.marker.color}:{})},null,6))],64)):e.createCommentVNode("",!0),u2.value(y2.value)?(e.openBlock(),e.createElementBlock("div",{key:3,ref_for:!0,ref_key:"activeTooltip",ref:B,class:"dp__marker_tooltip",style:e.normalizeStyle(b.value)},[(R=y2.marker)!=null&&R.tooltip?(e.openBlock(),e.createElementBlock("div",{key:0,class:"dp__tooltip_content",onClick:k2},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(y2.marker.tooltip,(J,g2)=>(e.openBlock(),e.createElementBlock("div",{key:g2,class:"dp__tooltip_text"},[Q.$slots["marker-tooltip"]?e.renderSlot(Q.$slots,"marker-tooltip",{key:0,tooltip:J,day:y2.value}):e.createCommentVNode("",!0),Q.$slots["marker-tooltip"]?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createElementVNode("div",{class:"dp__tooltip_mark",style:e.normalizeStyle(J.color?{backgroundColor:J.color}:{})},null,4),e.createElementVNode("div",null,e.toDisplayString(J.text),1)],64))]))),128)),e.createElementVNode("div",{class:"dp__arrow_bottom_tp",style:e.normalizeStyle(O.value)},null,4)])):e.createCommentVNode("",!0)],4)):e.createCommentVNode("",!0)],2)],40,nl)}),128))]))),128))],32)):e.createCommentVNode("",!0)]),_:3},8,["name","css"])],2)],2))}}),N4=t=>Array.isArray(t),al=(t,o,n,r)=>{const a=e.ref([]),l=e.ref(new Date),i=e.ref(),d=()=>$(t.isTextInputDate),{modelValue:c,calendars:p,time:C,today:k}=M9(t,o,d),{defaultedMultiCalendars:m,defaultedStartTime:y,defaultedRange:b,defaultedConfig:f,defaultedTz:M,propDates:V,defaultedMultiDates:S}=m0(t),{validateMonthYearInRange:x,isDisabled:B,isDateRangeAllowed:O,checkMinMaxRange:_}=Oe(t),{updateTimeValues:N,getSetDateTime:Z,setTime:Y,assignStartTime:D,validateTime:z,disabledTimesConfig:W}=$4(t,C,c,r),u2=e.computed(()=>n2=>p.value[n2]?p.value[n2].month:0),w=e.computed(()=>n2=>p.value[n2]?p.value[n2].year:0),T=n2=>!f.value.keepViewOnOffsetClick||n2?!0:!i.value,H=(n2,v2,l2,w2=!1)=>{var H2,O0;T(w2)&&(p.value[n2]||(p.value[n2]={month:0,year:0}),p.value[n2].month=p4(v2)?(H2=p.value[n2])==null?void 0:H2.month:v2,p.value[n2].year=p4(l2)?(O0=p.value[n2])==null?void 0:O0.year:l2)},I=()=>{t.autoApply&&o("select-date")};e.onMounted(()=>{t.shadow||(c.value||(Q(),y.value&&D(y.value)),$(!0),t.focusStartDate&&t.startDate&&Q())});const t2=e.computed(()=>{var n2;return(n2=t.flow)!=null&&n2.length&&!t.partialFlow?t.flowStep===t.flow.length:!0}),P=()=>{t.autoApply&&t2.value&&o("auto-apply",t.partialFlow?t.flowStep!==t.flow.length:!1)},$=(n2=!1)=>{if(c.value)return Array.isArray(c.value)?(a.value=c.value,F(n2)):X(c.value,n2);if(m.value.count&&n2&&!t.startDate)return r2(M2(),n2)},o2=()=>Array.isArray(c.value)&&b.value.enabled?R2(c.value[0])===R2(c.value[1]??c.value[0]):!1,r2=(n2=new Date,v2=!1)=>{if((!m.value.count||!m.value.static||v2)&&H(0,R2(n2),F2(n2)),m.value.count&&(!m.value.solo||!c.value||o2()))for(let l2=1;l2<m.value.count;l2++){const w2=s0(M2(),{month:u2.value(l2-1),year:w.value(l2-1)}),H2=T6(w2,{months:1});p.value[l2]={month:R2(H2),year:F2(H2)}}},X=(n2,v2)=>{r2(n2),Y("hours",de(n2)),Y("minutes",Te(n2)),Y("seconds",S3(n2)),m.value.count&&v2&&b2()},v=n2=>{if(m.value.count){if(m.value.solo)return 0;const v2=R2(n2[0]),l2=R2(n2[1]);return Math.abs(l2-v2)<m.value.count?0:1}return 1},U=(n2,v2)=>{n2[1]&&b.value.showLastInRange?r2(n2[v(n2)],v2):r2(n2[0],v2);const l2=(w2,H2)=>[w2(n2[0]),n2[1]?w2(n2[1]):C[H2][1]];Y("hours",l2(de,"hours")),Y("minutes",l2(Te,"minutes")),Y("seconds",l2(S3,"seconds"))},h2=(n2,v2)=>{if((b.value.enabled||t.weekPicker)&&!S.value.enabled)return U(n2,v2);if(S.value.enabled&&v2){const l2=n2[n2.length-1];return X(l2,v2)}},F=n2=>{const v2=c.value;h2(v2,n2),m.value.count&&m.value.solo&&b2()},i2=(n2,v2)=>{const l2=s0(M2(),{month:u2.value(v2),year:w.value(v2)}),w2=n2<0?A1(l2,1):T3(l2,1);x(R2(w2),F2(w2),n2<0,t.preventMinMaxNavigation)&&(H(v2,R2(w2),F2(w2)),o("update-month-year",{instance:v2,month:R2(w2),year:F2(w2)}),m.value.count&&!m.value.solo&&k2(v2),n())},k2=n2=>{for(let v2=n2-1;v2>=0;v2--){const l2=T3(s0(M2(),{month:u2.value(v2+1),year:w.value(v2+1)}),1);H(v2,R2(l2),F2(l2))}for(let v2=n2+1;v2<=m.value.count-1;v2++){const l2=A1(s0(M2(),{month:u2.value(v2-1),year:w.value(v2-1)}),1);H(v2,R2(l2),F2(l2))}},b2=()=>{if(Array.isArray(c.value)&&c.value.length===2){const n2=M2(M2(c.value[1]?c.value[1]:A1(c.value[0],1))),[v2,l2]=[R2(c.value[0]),F2(c.value[0])],[w2,H2]=[R2(c.value[1]),F2(c.value[1])];(v2!==w2||v2===w2&&l2!==H2)&&m.value.solo&&H(1,R2(n2),F2(n2))}else c.value&&!Array.isArray(c.value)&&(H(0,R2(c.value),F2(c.value)),r2(M2()))},Q=()=>{t.startDate&&(H(0,R2(M2(t.startDate)),F2(M2(t.startDate))),m.value.count&&k2(0))},p2=(n2,v2)=>{if(t.monthChangeOnScroll){const l2=new Date().getTime()-l.value.getTime(),w2=Math.abs(n2.deltaY);let H2=500;w2>1&&(H2=100),w2>100&&(H2=0),l2>H2&&(l.value=new Date,i2(t.monthChangeOnScroll!=="inverse"?-n2.deltaY:n2.deltaY,v2))}},E=(n2,v2,l2=!1)=>{t.monthChangeOnArrows&&t.vertical===l2&&c2(n2,v2)},c2=(n2,v2)=>{i2(n2==="right"?-1:1,v2)},y2=n2=>{if(V.value.markers)return et(n2.value,V.value.markers)},d2=(n2,v2)=>{switch(t.sixWeeks===!0?"append":t.sixWeeks){case"prepend":return[!0,!1];case"center":return[n2==0,!0];case"fair":return[n2==0||v2>n2,!0];case"append":return[!1,!1];default:return[!1,!1]}},S2=(n2,v2,l2,w2)=>{if(t.sixWeeks&&n2.length<6){const H2=6-n2.length,O0=(v2.getDay()+7-w2)%7,W0=6-(l2.getDay()+7-w2)%7,[S1,fe]=d2(O0,W0);for(let Z0=1;Z0<=H2;Z0++)if(fe?!!(Z0%2)==S1:S1){const c1=n2[0].days[0],ne=A(Z1(c1.value,-7),R2(v2));n2.unshift({days:ne})}else{const c1=n2[n2.length-1],ne=c1.days[c1.days.length-1],c0=A(Z1(ne.value,1),R2(v2));n2.push({days:c0})}}return n2},A=(n2,v2)=>{const l2=M2(n2),w2=[];for(let H2=0;H2<7;H2++){const O0=Z1(l2,H2),W0=R2(O0)!==v2;w2.push({text:t.hideOffsetDates&&W0?"":O0.getDate(),value:O0,current:!W0,classData:{}})}return w2},R=(n2,v2)=>{const l2=[],w2=new Date(v2,n2),H2=new Date(v2,n2+1,0),O0=t.weekStart,W0=$1(w2,{weekStartsOn:O0}),S1=fe=>{const Z0=A(fe,n2);if(l2.push({days:Z0}),!l2[l2.length-1].days.some(c1=>I2(s1(c1.value),s1(H2)))){const c1=Z1(fe,7);S1(c1)}};return S1(W0),S2(l2,w2,H2,O0)},J=n2=>{const v2=Ae(M2(n2.value),C.hours,C.minutes,F0());o("date-update",v2),S.value.enabled?D5(v2,c,S.value.limit):c.value=v2,r(),e.nextTick().then(()=>{P()})},g2=n2=>b.value.noDisabledRange?M4(a.value[0],n2).some(v2=>B(v2)):!1,E2=()=>{a.value=c.value?c.value.slice():[],a.value.length===2&&!(b.value.fixedStart||b.value.fixedEnd)&&(a.value=[])},L2=(n2,v2)=>{const l2=[M2(n2.value),Z1(M2(n2.value),+b.value.autoRange)];O(l2)?(v2&&q2(n2.value),a.value=l2):o("invalid-date",n2.value)},q2=n2=>{const v2=R2(M2(n2)),l2=F2(M2(n2));if(H(0,v2,l2),m.value.count>0)for(let w2=1;w2<m.value.count;w2++){const H2=Xr(s0(M2(n2),{year:w.value(w2-1),month:u2.value(w2-1)}));H(w2,H2.month,H2.year)}},b0=n2=>{if(g2(n2.value)||!_(n2.value,c.value,b.value.fixedStart?0:1))return o("invalid-date",n2.value);a.value=T4(M2(n2.value),c,o,b)},H1=(n2,v2)=>{if(E2(),b.value.autoRange)return L2(n2,v2);if(b.value.fixedStart||b.value.fixedEnd)return b0(n2);a.value[0]?_(M2(n2.value),c.value)&&!g2(n2.value)?V0(M2(n2.value),M2(a.value[0]))?(a.value.unshift(M2(n2.value)),o("range-end",a.value[0])):(a.value[1]=M2(n2.value),o("range-end",a.value[1])):(t.autoApply&&o("auto-apply-invalid",n2.value),o("invalid-date",n2.value)):(a.value[0]=M2(n2.value),o("range-start",a.value[0]))},F0=(n2=!0)=>t.enableSeconds?Array.isArray(C.seconds)?n2?C.seconds[0]:C.seconds[1]:C.seconds:0,f1=n2=>{a.value[n2]=Ae(a.value[n2],C.hours[n2],C.minutes[n2],F0(n2!==1))},oe=()=>{var n2,v2;a.value[0]&&a.value[1]&&+((n2=a.value)==null?void 0:n2[0])>+((v2=a.value)==null?void 0:v2[1])&&(a.value.reverse(),o("range-start",a.value[0]),o("range-end",a.value[1]))},z1=()=>{a.value.length&&(a.value[0]&&!a.value[1]?f1(0):(f1(0),f1(1),r()),oe(),c.value=a.value.slice(),lt(a.value,o,t.autoApply,t.modelAuto))},k1=(n2,v2=!1)=>{if(B(n2.value)||!n2.current&&t.hideOffsetDates)return o("invalid-date",n2.value);if(i.value=JSON.parse(JSON.stringify(n2)),!b.value.enabled)return J(n2);N4(C.hours)&&N4(C.minutes)&&!S.value.enabled&&(H1(n2,v2),z1())},P1=(n2,v2)=>{var l2;H(n2,v2.month,v2.year,!0),m.value.count&&!m.value.solo&&k2(n2),o("update-month-year",{instance:n2,month:v2.month,year:v2.year}),n(m.value.solo?n2:void 0);const w2=(l2=t.flow)!=null&&l2.length?t.flow[t.flowStep]:void 0;!v2.fromNav&&(w2===K0.month||w2===K0.year)&&r()},B1=(n2,v2)=>{D4({value:n2,modelValue:c,range:b.value.enabled,timezone:v2?void 0:M.value.timezone}),I(),t.multiCalendars&&e.nextTick().then(()=>$(!0))},Ie=()=>{const n2=p5(M2(),M.value);b.value.enabled?c.value&&Array.isArray(c.value)&&c.value[0]?c.value=V0(n2,c.value[0])?[n2,c.value[0]]:[c.value[0],n2]:c.value=[n2]:c.value=n2,I()},Ye=()=>{if(Array.isArray(c.value))if(S.value.enabled){const n2=Ue();c.value[c.value.length-1]=Z(n2)}else c.value=c.value.map((n2,v2)=>n2&&Z(n2,v2));else c.value=Z(c.value);o("time-update")},Ue=()=>Array.isArray(c.value)&&c.value.length?c.value[c.value.length-1]:null;return{calendars:p,modelValue:c,month:u2,year:w,time:C,disabledTimesConfig:W,today:k,validateTime:z,getCalendarDays:R,getMarker:y2,handleScroll:p2,handleSwipe:c2,handleArrow:E,selectDate:k1,updateMonthYear:P1,presetDate:B1,selectCurrentDate:Ie,updateTime:(n2,v2=!0,l2=!1)=>{N(n2,v2,l2,Ye)},assignMonthAndYear:r2}},ll={key:0},il=e.defineComponent({__name:"DatePicker",props:{...O1},emits:["tooltip-open","tooltip-close","mount","update:internal-model-value","update-flow-step","reset-flow","auto-apply","focus-menu","select-date","range-start","range-end","invalid-fixed-range","time-update","am-pm-change","time-picker-open","time-picker-close","recalculate-position","update-month-year","auto-apply-invalid","date-update","invalid-date","overlay-toggle"],setup(t,{expose:o,emit:n}){const r=n,a=t,{calendars:l,month:i,year:d,modelValue:c,time:p,disabledTimesConfig:C,today:k,validateTime:m,getCalendarDays:y,getMarker:b,handleArrow:f,handleScroll:M,handleSwipe:V,selectDate:S,updateMonthYear:x,presetDate:B,selectCurrentDate:O,updateTime:_,assignMonthAndYear:N}=al(a,r,o2,r2),Z=e.useSlots(),{setHoverDate:Y,getDayClassData:D,clearHoverDate:z}=Ll(c,a),{defaultedMultiCalendars:W}=m0(a),u2=e.ref([]),w=e.ref([]),T=e.ref(null),H=b1(Z,"calendar"),I=b1(Z,"monthYear"),t2=b1(Z,"timePicker"),P=p2=>{a.shadow||r("mount",p2)};e.watch(l,()=>{a.shadow||setTimeout(()=>{r("recalculate-position")},0)},{deep:!0}),e.watch(W,(p2,E)=>{p2.count-E.count>0&&N()},{deep:!0});const $=e.computed(()=>p2=>y(i.value(p2),d.value(p2)).map(E=>({...E,days:E.days.map(c2=>(c2.marker=b(c2),c2.classData=D(c2),c2))})));function o2(p2){var E;p2||p2===0?(E=w.value[p2])==null||E.triggerTransition(i.value(p2),d.value(p2)):w.value.forEach((c2,y2)=>c2.triggerTransition(i.value(y2),d.value(y2)))}function r2(){r("update-flow-step")}const X=(p2,E=!1)=>{S(p2,E),a.spaceConfirm&&r("select-date")},v=(p2,E,c2=0)=>{var y2;(y2=u2.value[c2])==null||y2.toggleMonthPicker(p2,E)},U=(p2,E,c2=0)=>{var y2;(y2=u2.value[c2])==null||y2.toggleYearPicker(p2,E)},h2=(p2,E,c2)=>{var y2;(y2=T.value)==null||y2.toggleTimePicker(p2,E,c2)},F=(p2,E)=>{var c2;if(!a.range){const y2=c.value?c.value:k,d2=E?new Date(E):y2,S2=p2?$1(d2,{weekStartsOn:1}):I6(d2,{weekStartsOn:1});S({value:S2,current:R2(d2)===i.value(0),text:"",classData:{}}),(c2=document.getElementById(x4(S2)))==null||c2.focus()}},i2=p2=>{var E;(E=u2.value[0])==null||E.handleMonthYearChange(p2,!0)},k2=p2=>{x(0,{month:i.value(0),year:d.value(0)+(p2?1:-1),fromNav:!0})},b2=(p2,E)=>{p2===K0.time&&r(`time-picker-${E?"open":"close"}`),r("overlay-toggle",{open:E,overlay:p2})},Q=p2=>{r("overlay-toggle",{open:!1,overlay:p2}),r("focus-menu")};return o({clearHoverDate:z,presetDate:B,selectCurrentDate:O,toggleMonthPicker:v,toggleYearPicker:U,toggleTimePicker:h2,handleArrow:f,updateMonthYear:x,getSidebarProps:()=>({modelValue:c,month:i,year:d,time:p,updateTime:_,updateMonthYear:x,selectDate:S,presetDate:B}),changeMonth:i2,changeYear:k2,selectWeekDate:F}),(p2,E)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createVNode(at,{"multi-calendars":e.unref(W).count,collapse:p2.collapse},{default:e.withCtx(({instance:c2,index:y2})=>[p2.disableMonthYearSelect?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(Ka,e.mergeProps({key:0,ref:d2=>{d2&&(u2.value[y2]=d2)},months:e.unref(u4)(p2.formatLocale,p2.locale,p2.monthNameFormat),years:e.unref(f5)(p2.yearRange,p2.locale,p2.reverseYears),month:e.unref(i)(c2),year:e.unref(d)(c2),instance:c2},p2.$props,{onMount:E[0]||(E[0]=d2=>P(e.unref(u3).header)),onResetFlow:E[1]||(E[1]=d2=>p2.$emit("reset-flow")),onUpdateMonthYear:d2=>e.unref(x)(c2,d2),onOverlayClosed:Q,onOverlayOpened:E[2]||(E[2]=d2=>p2.$emit("overlay-toggle",{open:!0,overlay:d2}))}),e.createSlots({_:2},[e.renderList(e.unref(I),(d2,S2)=>({name:d2,fn:e.withCtx(A=>[e.renderSlot(p2.$slots,d2,e.normalizeProps(e.guardReactiveProps(A)))])}))]),1040,["months","years","month","year","instance","onUpdateMonthYear"])),e.createVNode(rl,e.mergeProps({ref:d2=>{d2&&(w.value[y2]=d2)},"mapped-dates":$.value(c2),month:e.unref(i)(c2),year:e.unref(d)(c2),instance:c2},p2.$props,{onSelectDate:d2=>e.unref(S)(d2,c2!==1),onHandleSpace:d2=>X(d2,c2!==1),onSetHoverDate:E[3]||(E[3]=d2=>e.unref(Y)(d2)),onHandleScroll:d2=>e.unref(M)(d2,c2),onHandleSwipe:d2=>e.unref(V)(d2,c2),onMount:E[4]||(E[4]=d2=>P(e.unref(u3).calendar)),onResetFlow:E[5]||(E[5]=d2=>p2.$emit("reset-flow")),onTooltipOpen:E[6]||(E[6]=d2=>p2.$emit("tooltip-open",d2)),onTooltipClose:E[7]||(E[7]=d2=>p2.$emit("tooltip-close",d2))}),e.createSlots({_:2},[e.renderList(e.unref(H),(d2,S2)=>({name:d2,fn:e.withCtx(A=>[e.renderSlot(p2.$slots,d2,e.normalizeProps(e.guardReactiveProps({...A})))])}))]),1040,["mapped-dates","month","year","instance","onSelectDate","onHandleSpace","onHandleScroll","onHandleSwipe"])]),_:3},8,["multi-calendars","collapse"]),p2.enableTimePicker?(e.openBlock(),e.createElementBlock("div",ll,[p2.$slots["time-picker"]?e.renderSlot(p2.$slots,"time-picker",e.normalizeProps(e.mergeProps({key:0},{time:e.unref(p),updateTime:e.unref(_)}))):(e.openBlock(),e.createBlock(A4,e.mergeProps({key:1,ref_key:"timePickerRef",ref:T},p2.$props,{hours:e.unref(p).hours,minutes:e.unref(p).minutes,seconds:e.unref(p).seconds,"internal-model-value":p2.internalModelValue,"disabled-times-config":e.unref(C),"validate-time":e.unref(m),onMount:E[8]||(E[8]=c2=>P(e.unref(u3).timePicker)),"onUpdate:hours":E[9]||(E[9]=c2=>e.unref(_)(c2)),"onUpdate:minutes":E[10]||(E[10]=c2=>e.unref(_)(c2,!1)),"onUpdate:seconds":E[11]||(E[11]=c2=>e.unref(_)(c2,!1,!0)),onResetFlow:E[12]||(E[12]=c2=>p2.$emit("reset-flow")),onOverlayClosed:E[13]||(E[13]=c2=>b2(c2,!1)),onOverlayOpened:E[14]||(E[14]=c2=>b2(c2,!0)),onAmPmChange:E[15]||(E[15]=c2=>p2.$emit("am-pm-change",c2))}),e.createSlots({_:2},[e.renderList(e.unref(t2),(c2,y2)=>({name:c2,fn:e.withCtx(d2=>[e.renderSlot(p2.$slots,c2,e.normalizeProps(e.guardReactiveProps(d2)))])}))]),1040,["hours","minutes","seconds","internal-model-value","disabled-times-config","validate-time"]))])):e.createCommentVNode("",!0)],64))}}),sl=(t,o)=>{const n=e.ref(),{defaultedMultiCalendars:r,defaultedConfig:a,defaultedHighlight:l,defaultedRange:i,propDates:d,defaultedFilters:c,defaultedMultiDates:p}=m0(t),{modelValue:C,year:k,month:m,calendars:y}=M9(t,o),{isDisabled:b}=Oe(t),{selectYear:f,groupedYears:M,showYearPicker:V,isDisabled:S,toggleYearPicker:x,handleYearSelect:B,handleYear:O}=Z4({modelValue:C,multiCalendars:r,range:i,highlight:l,calendars:y,propDates:d,month:m,year:k,filters:c,props:t,emit:o}),_=(T,H)=>[T,H].map(I=>X1(I,"MMMM",{locale:t.formatLocale})).join("-"),N=e.computed(()=>T=>C.value?Array.isArray(C.value)?C.value.some(H=>r4(T,H)):r4(C.value,T):!1),Z=T=>{if(i.value.enabled){if(Array.isArray(C.value)){const H=I2(T,C.value[0])||I2(T,C.value[1]);return tt(C.value,n.value,T)&&!H}return!1}return!1},Y=(T,H)=>T.quarter===P6(H)&&T.year===F2(H),D=T=>typeof l.value=="function"?l.value({quarter:P6(T),year:F2(T)}):!!l.value.quarters.find(H=>Y(H,T)),z=e.computed(()=>T=>{const H=s0(new Date,{year:k.value(T)});return Ro({start:C9(H),end:R6(H)}).map(I=>{const t2=s3(I),P=Y6(I),$=b(I),o2=Z(t2),r2=D(t2);return{text:_(t2,P),value:t2,active:N.value(t2),highlighted:r2,disabled:$,isBetween:o2}})}),W=T=>{D5(T,C,p.value.limit),o("auto-apply",!0)},u2=T=>{C.value=T5(C,T,o),lt(C.value,o,t.autoApply,t.modelAuto)},w=T=>{C.value=T,o("auto-apply")};return{defaultedConfig:a,defaultedMultiCalendars:r,groupedYears:M,year:k,isDisabled:S,quarters:z,showYearPicker:V,modelValue:C,setHoverDate:T=>{n.value=T},selectYear:f,selectQuarter:(T,H,I)=>{if(!I)return y.value[H].month=R2(Y6(T)),p.value.enabled?W(T):i.value.enabled?u2(T):w(T)},toggleYearPicker:x,handleYearSelect:B,handleYear:O}},cl={class:"dp--quarter-items"},dl=["data-test","disabled","onClick","onMouseover"],ul=e.defineComponent({compatConfig:{MODE:3},__name:"QuarterPicker",props:{...O1},emits:["update:internal-model-value","reset-flow","overlay-closed","auto-apply","range-start","range-end","overlay-toggle","update-month-year"],setup(t,{expose:o,emit:n}){const r=n,a=t,l=e.useSlots(),i=b1(l,"yearMode"),{defaultedMultiCalendars:d,defaultedConfig:c,groupedYears:p,year:C,isDisabled:k,quarters:m,modelValue:y,showYearPicker:b,setHoverDate:f,selectQuarter:M,toggleYearPicker:V,handleYearSelect:S,handleYear:x}=sl(a,r);return o({getSidebarProps:()=>({modelValue:y,year:C,selectQuarter:M,handleYearSelect:S,handleYear:x})}),(B,O)=>(e.openBlock(),e.createBlock(at,{"multi-calendars":e.unref(d).count,collapse:B.collapse,stretch:""},{default:e.withCtx(({instance:_})=>[e.createElementVNode("div",{class:"dp-quarter-picker-wrap",style:e.normalizeStyle({minHeight:`${e.unref(c).modeHeight}px`})},[B.$slots["top-extra"]?e.renderSlot(B.$slots,"top-extra",{key:0,value:B.internalModelValue}):e.createCommentVNode("",!0),e.createElementVNode("div",null,[e.createVNode(E4,e.mergeProps(B.$props,{items:e.unref(p)(_),instance:_,"show-year-picker":e.unref(b)[_],year:e.unref(C)(_),"is-disabled":N=>e.unref(k)(_,N),onHandleYear:N=>e.unref(x)(_,N),onYearSelect:N=>e.unref(S)(N,_),onToggleYearPicker:N=>e.unref(V)(_,N==null?void 0:N.flow,N==null?void 0:N.show)}),e.createSlots({_:2},[e.renderList(e.unref(i),(N,Z)=>({name:N,fn:e.withCtx(Y=>[e.renderSlot(B.$slots,N,e.normalizeProps(e.guardReactiveProps(Y)))])}))]),1040,["items","instance","show-year-picker","year","is-disabled","onHandleYear","onYearSelect","onToggleYearPicker"])]),e.createElementVNode("div",cl,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(m)(_),(N,Z)=>(e.openBlock(),e.createElementBlock("div",{key:Z},[e.createElementVNode("button",{type:"button",class:e.normalizeClass(["dp--qr-btn",{"dp--qr-btn-active":N.active,"dp--qr-btn-between":N.isBetween,"dp--qr-btn-disabled":N.disabled,"dp--highlighted":N.highlighted}]),"data-test":N.value,disabled:N.disabled,onClick:Y=>e.unref(M)(N.value,_,N.disabled),onMouseover:Y=>e.unref(f)(N.value)},[B.$slots.quarter?e.renderSlot(B.$slots,"quarter",{key:0,value:N.value,text:N.text}):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(N.text),1)],64))],42,dl)]))),128))])],4)]),_:3},8,["multi-calendars","collapse"]))}}),Cl=["id","tabindex","role","aria-label"],hl={key:0,class:"dp--menu-load-container"},pl={key:1,class:"dp--menu-header"},ml={key:0,class:"dp__sidebar_left"},fl=["data-test","onClick","onKeydown"],kl={key:2,class:"dp__sidebar_right"},yl={key:3,class:"dp__action_extra"},F4=e.defineComponent({compatConfig:{MODE:3},__name:"DatepickerMenu",props:{...rt,shadow:{type:Boolean,default:!1},openOnTop:{type:Boolean,default:!1},internalModelValue:{type:[Date,Array],default:null},noOverlayFocus:{type:Boolean,default:!1},collapse:{type:Boolean,default:!1},getInputRect:{type:Function,default:()=>({})},isTextInputDate:{type:Boolean,default:!1}},emits:["close-picker","select-date","auto-apply","time-update","flow-step","update-month-year","invalid-select","update:internal-model-value","recalculate-position","invalid-fixed-range","tooltip-open","tooltip-close","time-picker-open","time-picker-close","am-pm-change","range-start","range-end","auto-apply-invalid","date-update","invalid-date","overlay-toggle"],setup(t,{expose:o,emit:n}){const r=n,a=t,l=e.ref(null),i=e.computed(()=>{const{openOnTop:A,...R}=a;return{...R,flowStep:Y.value,collapse:a.collapse,noOverlayFocus:a.noOverlayFocus,menuWrapRef:l.value}}),{setMenuFocused:d,setShiftKey:c,control:p}=H4(),C=e.useSlots(),{defaultedTextInput:k,defaultedInline:m,defaultedConfig:y,defaultedUI:b}=m0(a),f=e.ref(null),M=e.ref(0),V=e.ref(null),S=e.ref(!1),x=e.ref(null);e.onMounted(()=>{if(!a.shadow){S.value=!0,B(),window.addEventListener("resize",B);const A=N0(l);if(A&&!k.value.enabled&&!m.value.enabled&&(d(!0),H()),A){const R=J=>{y.value.allowPreventDefault&&J.preventDefault(),Ze(J,y.value,!0)};A.addEventListener("pointerdown",R),A.addEventListener("mousedown",R)}}}),e.onUnmounted(()=>{window.removeEventListener("resize",B)});const B=()=>{const A=N0(V);A&&(M.value=A.getBoundingClientRect().width)},{arrowRight:O,arrowLeft:_,arrowDown:N,arrowUp:Z}=Ne(),{flowStep:Y,updateFlowStep:D,childMount:z,resetFlow:W,handleFlow:u2}=wl(a,r,x),w=e.computed(()=>a.monthPicker?Sa:a.yearPicker?Da:a.timePicker?Ya:a.quarterPicker?ul:il),T=e.computed(()=>{var A;if(y.value.arrowLeft)return y.value.arrowLeft;const R=(A=l.value)==null?void 0:A.getBoundingClientRect(),J=a.getInputRect();return(J==null?void 0:J.width)<(M==null?void 0:M.value)&&(J==null?void 0:J.left)<=((R==null?void 0:R.left)??0)?`${(J==null?void 0:J.width)/2}px`:(J==null?void 0:J.right)>=((R==null?void 0:R.right)??0)&&(J==null?void 0:J.width)<(M==null?void 0:M.value)?`${(M==null?void 0:M.value)-(J==null?void 0:J.width)/2}px`:"50%"}),H=()=>{const A=N0(l);A&&A.focus({preventScroll:!0})},I=e.computed(()=>{var A;return((A=x.value)==null?void 0:A.getSidebarProps())||{}}),t2=()=>{a.openOnTop&&r("recalculate-position")},P=b1(C,"action"),$=e.computed(()=>a.monthPicker||a.yearPicker?b1(C,"monthYear"):a.timePicker?b1(C,"timePicker"):b1(C,"shared")),o2=e.computed(()=>a.openOnTop?"dp__arrow_bottom":"dp__arrow_top"),r2=e.computed(()=>({dp__menu_disabled:a.disabled,dp__menu_readonly:a.readonly,"dp-menu-loading":a.loading})),X=e.computed(()=>({dp__menu:!0,dp__menu_index:!m.value.enabled,dp__relative:m.value.enabled,...b.value.menu??{}})),v=A=>{Ze(A,y.value,!0)},U=()=>{a.escClose&&r("close-picker")},h2=A=>{if(a.arrowNavigation){if(A===l1.up)return Z();if(A===l1.down)return N();if(A===l1.left)return _();if(A===l1.right)return O()}else A===l1.left||A===l1.up?Q("handleArrow",l1.left,0,A===l1.up):Q("handleArrow",l1.right,0,A===l1.down)},F=A=>{c(A.shiftKey),!a.disableMonthYearSelect&&A.code===u0.tab&&A.target.classList.contains("dp__menu")&&p.value.shiftKeyInMenu&&(A.preventDefault(),Ze(A,y.value,!0),r("close-picker"))},i2=()=>{H(),r("time-picker-close")},k2=A=>{var R,J,g2;(R=x.value)==null||R.toggleTimePicker(!1,!1),(J=x.value)==null||J.toggleMonthPicker(!1,!1,A),(g2=x.value)==null||g2.toggleYearPicker(!1,!1,A)},b2=(A,R=0)=>{var J,g2,E2;return A==="month"?(J=x.value)==null?void 0:J.toggleMonthPicker(!1,!0,R):A==="year"?(g2=x.value)==null?void 0:g2.toggleYearPicker(!1,!0,R):A==="time"?(E2=x.value)==null?void 0:E2.toggleTimePicker(!0,!1):k2(R)},Q=(A,...R)=>{var J,g2;(J=x.value)!=null&&J[A]&&((g2=x.value)==null||g2[A](...R))},p2=()=>{Q("selectCurrentDate")},E=(A,R)=>{Q("presetDate",A,R)},c2=()=>{Q("clearHoverDate")},y2=(A,R)=>{Q("updateMonthYear",A,R)},d2=(A,R)=>{A.preventDefault(),h2(R)},S2=A=>{var R,J,g2;if(F(A),A.key===u0.home||A.key===u0.end)return Q("selectWeekDate",A.key===u0.home,A.target.getAttribute("id"));switch((A.key===u0.pageUp||A.key===u0.pageDown)&&(A.shiftKey?(Q("changeYear",A.key===u0.pageUp),(R=y5(l.value,"overlay-year"))==null||R.focus()):(Q("changeMonth",A.key===u0.pageUp),(J=y5(l.value,A.key===u0.pageUp?"action-prev":"action-next"))==null||J.focus()),A.target.getAttribute("id")&&((g2=l.value)==null||g2.focus({preventScroll:!0}))),A.key){case u0.esc:return U();case u0.arrowLeft:return d2(A,l1.left);case u0.arrowRight:return d2(A,l1.right);case u0.arrowUp:return d2(A,l1.up);case u0.arrowDown:return d2(A,l1.down);default:return}};return o({updateMonthYear:y2,switchView:b2,handleFlow:u2}),(A,R)=>{var J,g2,E2;return e.openBlock(),e.createElementBlock("div",{id:A.uid?`dp-menu-${A.uid}`:void 0,ref_key:"dpMenuRef",ref:l,tabindex:e.unref(m).enabled?void 0:"0",role:e.unref(m).enabled?void 0:"dialog","aria-label":(J=A.ariaLabels)==null?void 0:J.menu,class:e.normalizeClass(X.value),style:e.normalizeStyle({"--dp-arrow-left":T.value}),onMouseleave:c2,onClick:v,onKeydown:S2},[(A.disabled||A.readonly)&&e.unref(m).enabled||A.loading?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(r2.value)},[A.loading?(e.openBlock(),e.createElementBlock("div",hl,R[19]||(R[19]=[e.createElementVNode("span",{class:"dp--menu-loader"},null,-1)]))):e.createCommentVNode("",!0)],2)):e.createCommentVNode("",!0),A.$slots["menu-header"]?(e.openBlock(),e.createElementBlock("div",pl,[e.renderSlot(A.$slots,"menu-header")])):e.createCommentVNode("",!0),!e.unref(m).enabled&&!A.teleportCenter?(e.openBlock(),e.createElementBlock("div",{key:2,class:e.normalizeClass(o2.value)},null,2)):e.createCommentVNode("",!0),e.createElementVNode("div",{ref_key:"innerMenuRef",ref:V,class:e.normalizeClass({dp__menu_content_wrapper:((g2=A.presetDates)==null?void 0:g2.length)||!!A.$slots["left-sidebar"]||!!A.$slots["right-sidebar"],"dp--menu-content-wrapper-collapsed":t.collapse&&(((E2=A.presetDates)==null?void 0:E2.length)||!!A.$slots["left-sidebar"]||!!A.$slots["right-sidebar"])}),style:e.normalizeStyle({"--dp-menu-width":`${M.value}px`})},[A.$slots["left-sidebar"]?(e.openBlock(),e.createElementBlock("div",ml,[e.renderSlot(A.$slots,"left-sidebar",e.normalizeProps(e.guardReactiveProps(I.value)))])):e.createCommentVNode("",!0),A.presetDates.length?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass({"dp--preset-dates-collapsed":t.collapse,"dp--preset-dates":!0})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(A.presetDates,(L2,q2)=>(e.openBlock(),e.createElementBlock(e.Fragment,{key:q2},[L2.slot?e.renderSlot(A.$slots,L2.slot,{key:0,presetDate:E,label:L2.label,value:L2.value}):(e.openBlock(),e.createElementBlock("button",{key:1,type:"button",style:e.normalizeStyle(L2.style||{}),class:e.normalizeClass(["dp__btn dp--preset-range",{"dp--preset-range-collapsed":t.collapse}]),"data-test":L2.testId??void 0,onClick:e.withModifiers(b0=>E(L2.value,L2.noTz),["prevent"]),onKeydown:b0=>e.unref(i1)(b0,()=>E(L2.value,L2.noTz),!0)},e.toDisplayString(L2.label),47,fl))],64))),128))],2)):e.createCommentVNode("",!0),e.createElementVNode("div",{ref_key:"calendarWrapperRef",ref:f,class:"dp__instance_calendar",role:"document"},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(w.value),e.mergeProps({ref_key:"dynCmpRef",ref:x},i.value,{"flow-step":e.unref(Y),onMount:e.unref(z),onUpdateFlowStep:e.unref(D),onResetFlow:e.unref(W),onFocusMenu:H,onSelectDate:R[0]||(R[0]=L2=>A.$emit("select-date")),onDateUpdate:R[1]||(R[1]=L2=>A.$emit("date-update",L2)),onTooltipOpen:R[2]||(R[2]=L2=>A.$emit("tooltip-open",L2)),onTooltipClose:R[3]||(R[3]=L2=>A.$emit("tooltip-close",L2)),onAutoApply:R[4]||(R[4]=L2=>A.$emit("auto-apply",L2)),onRangeStart:R[5]||(R[5]=L2=>A.$emit("range-start",L2)),onRangeEnd:R[6]||(R[6]=L2=>A.$emit("range-end",L2)),onInvalidFixedRange:R[7]||(R[7]=L2=>A.$emit("invalid-fixed-range",L2)),onTimeUpdate:R[8]||(R[8]=L2=>A.$emit("time-update")),onAmPmChange:R[9]||(R[9]=L2=>A.$emit("am-pm-change",L2)),onTimePickerOpen:R[10]||(R[10]=L2=>A.$emit("time-picker-open",L2)),onTimePickerClose:i2,onRecalculatePosition:t2,onUpdateMonthYear:R[11]||(R[11]=L2=>A.$emit("update-month-year",L2)),onAutoApplyInvalid:R[12]||(R[12]=L2=>A.$emit("auto-apply-invalid",L2)),onInvalidDate:R[13]||(R[13]=L2=>A.$emit("invalid-date",L2)),onOverlayToggle:R[14]||(R[14]=L2=>A.$emit("overlay-toggle",L2)),"onUpdate:internalModelValue":R[15]||(R[15]=L2=>A.$emit("update:internal-model-value",L2))}),e.createSlots({_:2},[e.renderList($.value,(L2,q2)=>({name:L2,fn:e.withCtx(b0=>[e.renderSlot(A.$slots,L2,e.normalizeProps(e.guardReactiveProps({...b0})))])}))]),1040,["flow-step","onMount","onUpdateFlowStep","onResetFlow"]))],512),A.$slots["right-sidebar"]?(e.openBlock(),e.createElementBlock("div",kl,[e.renderSlot(A.$slots,"right-sidebar",e.normalizeProps(e.guardReactiveProps(I.value)))])):e.createCommentVNode("",!0),A.$slots["action-extra"]?(e.openBlock(),e.createElementBlock("div",yl,[A.$slots["action-extra"]?e.renderSlot(A.$slots,"action-extra",{key:0,selectCurrentDate:p2}):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0)],6),!A.autoApply||e.unref(y).keepActionRow?(e.openBlock(),e.createBlock(La,e.mergeProps({key:3,"menu-mount":S.value},i.value,{"calendar-width":M.value,onClosePicker:R[16]||(R[16]=L2=>A.$emit("close-picker")),onSelectDate:R[17]||(R[17]=L2=>A.$emit("select-date")),onInvalidSelect:R[18]||(R[18]=L2=>A.$emit("invalid-select")),onSelectNow:p2}),e.createSlots({_:2},[e.renderList(e.unref(P),(L2,q2)=>({name:L2,fn:e.withCtx(b0=>[e.renderSlot(A.$slots,L2,e.normalizeProps(e.guardReactiveProps({...b0})))])}))]),1040,["menu-mount","calendar-width"])):e.createCommentVNode("",!0)],46,Cl)}}});var F3=(t=>(t.center="center",t.left="left",t.right="right",t))(F3||{});const gl=({menuRef:t,menuRefInner:o,inputRef:n,pickerWrapperRef:r,inline:a,emit:l,props:i,slots:d})=>{const{defaultedConfig:c}=m0(i),p=e.ref({}),C=e.ref(!1),k=e.ref({top:"0",left:"0"}),m=e.ref(!1),y=e.toRef(i,"teleportCenter");e.watch(y,()=>{k.value=JSON.parse(JSON.stringify({})),O()});const b=H=>{if(i.teleport){const I=H.getBoundingClientRect();return{left:I.left+window.scrollX,top:I.top+window.scrollY}}return{top:0,left:0}},f=(H,I)=>{k.value.left=`${H+I-p.value.width}px`},M=H=>{k.value.left=`${H}px`},V=(H,I)=>{i.position===F3.left&&M(H),i.position===F3.right&&f(H,I),i.position===F3.center&&(k.value.left=`${H+I/2-p.value.width/2}px`)},S=H=>{const{width:I,height:t2}=H.getBoundingClientRect(),{top:P,left:$}=i.altPosition?i.altPosition(H):b(H);return{top:+P,left:+$,width:I,height:t2}},x=()=>{k.value.left="50%",k.value.top="50%",k.value.transform="translate(-50%, -50%)",k.value.position="fixed",delete k.value.opacity},B=()=>{const H=N0(n),{top:I,left:t2,transform:P}=i.altPosition(H);k.value={top:`${I}px`,left:`${t2}px`,transform:P??""}},O=(H=!0)=>{var I;if(!a.value.enabled){if(y.value)return x();if(i.altPosition!==null)return B();if(H){const t2=i.teleport?(I=o.value)==null?void 0:I.$el:t.value;t2&&(p.value=t2.getBoundingClientRect()),l("recalculate-position")}return W()}},_=({inputEl:H,left:I,width:t2})=>{window.screen.width>768&&!C.value&&V(I,t2),Y(H)},N=H=>{const{top:I,left:t2,height:P,width:$}=S(H);k.value.top=`${P+I+ +i.offset}px`,m.value=!1,C.value||(k.value.left=`${t2+$/2-p.value.width/2}px`),_({inputEl:H,left:t2,width:$})},Z=H=>{const{top:I,left:t2,width:P}=S(H);k.value.top=`${I-+i.offset-p.value.height}px`,m.value=!0,_({inputEl:H,left:t2,width:P})},Y=H=>{if(i.autoPosition){const{left:I,width:t2}=S(H),{left:P,right:$}=p.value;if(!C.value){if(Math.abs(P)!==Math.abs($)){if(P<=0)return C.value=!0,M(I);if($>=document.documentElement.clientWidth)return C.value=!0,f(I,t2)}return V(I,t2)}}},D=()=>{const H=N0(n);if(H){const{height:I}=p.value,{top:t2,height:P}=H.getBoundingClientRect(),$=window.innerHeight-t2-P,o2=t2;return I<=$?d3.bottom:I>$&&I<=o2?d3.top:$>=o2?d3.bottom:d3.top}return d3.bottom},z=H=>D()===d3.bottom?N(H):Z(H),W=()=>{const H=N0(n);if(H)return i.autoPosition?z(H):N(H)},u2=function(H){if(H){const I=H.scrollHeight>H.clientHeight,t2=window.getComputedStyle(H).overflowY.indexOf("hidden")!==-1;return I&&!t2}return!0},w=function(H){return!H||H===document.body||H.nodeType===Node.DOCUMENT_FRAGMENT_NODE?window:u2(H)?H:w(H.assignedSlot&&c.value.shadowDom?H.assignedSlot.parentNode:H.parentNode)},T=H=>{if(H)switch(i.position){case F3.left:return{left:0,transform:"translateX(0)"};case F3.right:return{left:`${H.width}px`,transform:"translateX(-100%)"};default:return{left:`${H.width/2}px`,transform:"translateX(-50%)"}}return{}};return{openOnTop:m,menuStyle:k,xCorrect:C,setMenuPosition:O,getScrollableParent:w,shadowRender:(H,I)=>{var t2,P,$;const o2=document.createElement("div"),r2=(t2=N0(n))==null?void 0:t2.getBoundingClientRect();o2.setAttribute("id","dp--temp-container");const X=(P=r.value)!=null&&P.clientWidth?r.value:document.body;X.append(o2);const v=T(r2),U=c.value.shadowDom?Object.keys(d).filter(F=>["right-sidebar","left-sidebar","top-extra","action-extra"].includes(F)):Object.keys(d),h2=e.h(H,{...I,shadow:!0,style:{opacity:0,position:"absolute",...v}},Object.fromEntries(U.map(F=>[F,d[F]])));e.render(h2,o2),p.value=($=h2.el)==null?void 0:$.getBoundingClientRect(),e.render(null,o2),X.removeChild(o2)}}},Fe=[{name:"clock-icon",use:["time","calendar","shared"]},{name:"arrow-left",use:["month-year","calendar","shared","year-mode"]},{name:"arrow-right",use:["month-year","calendar","shared","year-mode"]},{name:"arrow-up",use:["time","calendar","month-year","shared"]},{name:"arrow-down",use:["time","calendar","month-year","shared"]},{name:"calendar-icon",use:["month-year","time","calendar","shared","year-mode"]},{name:"day",use:["calendar","shared"]},{name:"month-overlay-value",use:["calendar","month-year","shared"]},{name:"year-overlay-value",use:["calendar","month-year","shared","year-mode"]},{name:"year-overlay",use:["month-year","shared"]},{name:"month-overlay",use:["month-year","shared"]},{name:"month-overlay-header",use:["month-year","shared"]},{name:"year-overlay-header",use:["month-year","shared"]},{name:"hours-overlay-value",use:["calendar","time","shared"]},{name:"hours-overlay-header",use:["calendar","time","shared"]},{name:"minutes-overlay-value",use:["calendar","time","shared"]},{name:"minutes-overlay-header",use:["calendar","time","shared"]},{name:"seconds-overlay-value",use:["calendar","time","shared"]},{name:"seconds-overlay-header",use:["calendar","time","shared"]},{name:"hours",use:["calendar","time","shared"]},{name:"minutes",use:["calendar","time","shared"]},{name:"month",use:["calendar","month-year","shared"]},{name:"year",use:["calendar","month-year","shared","year-mode"]},{name:"action-buttons",use:["action"]},{name:"action-preview",use:["action"]},{name:"calendar-header",use:["calendar","shared"]},{name:"marker-tooltip",use:["calendar","shared"]},{name:"action-extra",use:["menu"]},{name:"time-picker-overlay",use:["calendar","time","shared"]},{name:"am-pm-button",use:["calendar","time","shared"]},{name:"left-sidebar",use:["menu"]},{name:"right-sidebar",use:["menu"]},{name:"month-year",use:["month-year","shared"]},{name:"time-picker",use:["menu","shared"]},{name:"action-row",use:["action"]},{name:"marker",use:["calendar","shared"]},{name:"quarter",use:["shared"]},{name:"top-extra",use:["shared","month-year"]},{name:"tp-inline-arrow-up",use:["shared","time"]},{name:"tp-inline-arrow-down",use:["shared","time"]},{name:"menu-header",use:["menu"]}],bl=[{name:"trigger"},{name:"input-icon"},{name:"clear-icon"},{name:"dp-input"}],Ml={all:()=>Fe,monthYear:()=>Fe.filter(t=>t.use.includes("month-year")),input:()=>bl,timePicker:()=>Fe.filter(t=>t.use.includes("time")),action:()=>Fe.filter(t=>t.use.includes("action")),calendar:()=>Fe.filter(t=>t.use.includes("calendar")),menu:()=>Fe.filter(t=>t.use.includes("menu")),shared:()=>Fe.filter(t=>t.use.includes("shared")),yearMode:()=>Fe.filter(t=>t.use.includes("year-mode"))},b1=(t,o,n)=>{const r=[];return Ml[o]().forEach(a=>{t[a.name]&&r.push(a.name)}),n!=null&&n.length&&n.forEach(a=>{a.slot&&r.push(a.slot)}),r},b9=t=>{const o=e.computed(()=>r=>t.value?r?t.value.open:t.value.close:""),n=e.computed(()=>r=>t.value?r?t.value.menuAppearTop:t.value.menuAppearBottom:"");return{transitionName:o,showTransition:!!t.value,menuTransition:n}},M9=(t,o,n)=>{const{defaultedRange:r,defaultedTz:a}=m0(t),l=M2(m1(M2(),a.value.timezone)),i=e.ref([{month:R2(l),year:F2(l)}]),d=m=>{const y={hours:de(l),minutes:Te(l),seconds:0};return r.value.enabled?[y[m],y[m]]:y[m]},c=e.reactive({hours:d("hours"),minutes:d("minutes"),seconds:d("seconds")});e.watch(r,(m,y)=>{m.enabled!==y.enabled&&(c.hours=d("hours"),c.minutes=d("minutes"),c.seconds=d("seconds"))},{deep:!0});const p=e.computed({get:()=>t.internalModelValue,set:m=>{!t.readonly&&!t.disabled&&o("update:internal-model-value",m)}}),C=e.computed(()=>m=>i.value[m]?i.value[m].month:0),k=e.computed(()=>m=>i.value[m]?i.value[m].year:0);return e.watch(p,(m,y)=>{n&&JSON.stringify(m??{})!==JSON.stringify(y??{})&&n()},{deep:!0}),{calendars:i,time:c,modelValue:p,month:C,year:k,today:l}},Ll=(t,o)=>{const{defaultedMultiCalendars:n,defaultedMultiDates:r,defaultedUI:a,defaultedHighlight:l,defaultedTz:i,propDates:d,defaultedRange:c}=m0(o),{isDisabled:p}=Oe(o),C=e.ref(null),k=e.ref(m1(new Date,i.value.timezone)),m=v=>{!v.current&&o.hideOffsetDates||(C.value=v.value)},y=()=>{C.value=null},b=v=>Array.isArray(t.value)&&c.value.enabled&&t.value[0]&&C.value?v?E0(C.value,t.value[0]):V0(C.value,t.value[0]):!0,f=(v,U)=>{const h2=()=>t.value?U?t.value[0]||null:t.value[1]:null,F=t.value&&Array.isArray(t.value)?h2():null;return I2(M2(v.value),F)},M=v=>{const U=Array.isArray(t.value)?t.value[0]:null;return v?!V0(C.value??null,U):!0},V=(v,U=!0)=>(c.value.enabled||o.weekPicker)&&Array.isArray(t.value)&&t.value.length===2?o.hideOffsetDates&&!v.current?!1:I2(M2(v.value),t.value[U?0:1]):c.value.enabled?f(v,U)&&M(U)||I2(v.value,Array.isArray(t.value)?t.value[0]:null)&&b(U):!1,S=(v,U)=>{if(Array.isArray(t.value)&&t.value[0]&&t.value.length===1){const h2=I2(v.value,C.value);return U?E0(t.value[0],v.value)&&h2:V0(t.value[0],v.value)&&h2}return!1},x=v=>!t.value||o.hideOffsetDates&&!v.current?!1:c.value.enabled?o.modelAuto&&Array.isArray(t.value)?I2(v.value,t.value[0]?t.value[0]:k.value):!1:r.value.enabled&&Array.isArray(t.value)?t.value.some(U=>I2(U,v.value)):I2(v.value,t.value?t.value:k.value),B=v=>{if(c.value.autoRange||o.weekPicker){if(C.value){if(o.hideOffsetDates&&!v.current)return!1;const U=Z1(C.value,+c.value.autoRange),h2=ue(M2(C.value),o.weekStart);return o.weekPicker?I2(h2[1],M2(v.value)):I2(U,M2(v.value))}return!1}return!1},O=v=>{if(c.value.autoRange||o.weekPicker){if(C.value){const U=Z1(C.value,+c.value.autoRange);if(o.hideOffsetDates&&!v.current)return!1;const h2=ue(M2(C.value),o.weekStart);return o.weekPicker?E0(v.value,h2[0])&&V0(v.value,h2[1]):E0(v.value,C.value)&&V0(v.value,U)}return!1}return!1},_=v=>{if(c.value.autoRange||o.weekPicker){if(C.value){if(o.hideOffsetDates&&!v.current)return!1;const U=ue(M2(C.value),o.weekStart);return o.weekPicker?I2(U[0],v.value):I2(C.value,v.value)}return!1}return!1},N=v=>tt(t.value,C.value,v.value),Z=()=>o.modelAuto&&Array.isArray(o.internalModelValue)?!!o.internalModelValue[0]:!1,Y=()=>o.modelAuto?C4(o.internalModelValue):!0,D=v=>{if(o.weekPicker)return!1;const U=c.value.enabled?!V(v)&&!V(v,!1):!0;return!p(v.value)&&!x(v)&&!(!v.current&&o.hideOffsetDates)&&U},z=v=>c.value.enabled?o.modelAuto?Z()&&x(v):!1:x(v),W=v=>l.value?Wr(v.value,d.value.highlight):!1,u2=v=>{const U=p(v.value);return U&&(typeof l.value=="function"?!l.value(v.value,U):!l.value.options.highlightDisabled)},w=v=>{var U;return typeof l.value=="function"?l.value(v.value):(U=l.value.weekdays)==null?void 0:U.includes(v.value.getDay())},T=v=>(c.value.enabled||o.weekPicker)&&(!(n.value.count>0)||v.current)&&Y()&&!(!v.current&&o.hideOffsetDates)&&!x(v)?N(v):!1,H=v=>{const{isRangeStart:U,isRangeEnd:h2}=$(v),F=c.value.enabled?U||h2:!1;return{dp__cell_offset:!v.current,dp__pointer:!o.disabled&&!(!v.current&&o.hideOffsetDates)&&!p(v.value),dp__cell_disabled:p(v.value),dp__cell_highlight:!u2(v)&&(W(v)||w(v))&&!z(v)&&!F&&!_(v)&&!(T(v)&&o.weekPicker)&&!h2,dp__cell_highlight_active:!u2(v)&&(W(v)||w(v))&&z(v),dp__today:!o.noToday&&I2(v.value,k.value)&&v.current,"dp--past":V0(v.value,k.value),"dp--future":E0(v.value,k.value)}},I=v=>({dp__active_date:z(v),dp__date_hover:D(v)}),t2=v=>{if(t.value&&!Array.isArray(t.value)){const U=ue(t.value,o.weekStart);return{...r2(v),dp__range_start:I2(U[0],v.value),dp__range_end:I2(U[1],v.value),dp__range_between_week:E0(v.value,U[0])&&V0(v.value,U[1])}}return{...r2(v)}},P=v=>{if(t.value&&Array.isArray(t.value)){const U=ue(t.value[0],o.weekStart),h2=t.value[1]?ue(t.value[1],o.weekStart):[];return{...r2(v),dp__range_start:I2(U[0],v.value)||I2(h2[0],v.value),dp__range_end:I2(U[1],v.value)||I2(h2[1],v.value),dp__range_between_week:E0(v.value,U[0])&&V0(v.value,U[1])||E0(v.value,h2[0])&&V0(v.value,h2[1]),dp__range_between:E0(v.value,U[1])&&V0(v.value,h2[0])}}return{...r2(v)}},$=v=>{const U=n.value.count>0?v.current&&V(v)&&Y():V(v)&&Y(),h2=n.value.count>0?v.current&&V(v,!1)&&Y():V(v,!1)&&Y();return{isRangeStart:U,isRangeEnd:h2}},o2=v=>{const{isRangeStart:U,isRangeEnd:h2}=$(v);return{dp__range_start:U,dp__range_end:h2,dp__range_between:T(v),dp__date_hover:I2(v.value,C.value)&&!U&&!h2&&!o.weekPicker,dp__date_hover_start:S(v,!0),dp__date_hover_end:S(v,!1)}},r2=v=>({...o2(v),dp__cell_auto_range:O(v),dp__cell_auto_range_start:_(v),dp__cell_auto_range_end:B(v)}),X=v=>c.value.enabled?c.value.autoRange?r2(v):o.modelAuto?{...I(v),...o2(v)}:o.weekPicker?P(v):o2(v):o.weekPicker?t2(v):I(v);return{setHoverDate:m,clearHoverDate:y,getDayClassData:v=>o.hideOffsetDates&&!v.current?{}:{...H(v),...X(v),[o.dayClass?o.dayClass(v.value,o.internalModelValue):""]:!0,...a.value.calendarCell??{}}}},Oe=t=>{const{defaultedFilters:o,defaultedRange:n,propDates:r,defaultedMultiDates:a}=m0(t),l=w=>r.value.disabledDates?typeof r.value.disabledDates=="function"?r.value.disabledDates(M2(w)):!!et(w,r.value.disabledDates):!1,i=w=>r.value.maxDate?t.yearPicker?F2(w)>F2(r.value.maxDate):E0(w,r.value.maxDate):!1,d=w=>r.value.minDate?t.yearPicker?F2(w)<F2(r.value.minDate):V0(w,r.value.minDate):!1,c=w=>{const T=i(w),H=d(w),I=l(w),t2=o.value.months.map(X=>+X).includes(R2(w)),P=t.disabledWeekDays.length?t.disabledWeekDays.some(X=>+X===An(w)):!1,$=y(w),o2=F2(w),r2=o2<+t.yearRange[0]||o2>+t.yearRange[1];return!(T||H||I||t2||r2||P||$)},p=(w,T)=>V0(...$e(r.value.minDate,w,T))||I2(...$e(r.value.minDate,w,T)),C=(w,T)=>E0(...$e(r.value.maxDate,w,T))||I2(...$e(r.value.maxDate,w,T)),k=(w,T,H)=>{let I=!1;return r.value.maxDate&&H&&C(w,T)&&(I=!0),r.value.minDate&&!H&&p(w,T)&&(I=!0),I},m=(w,T,H,I)=>{let t2=!1;return I&&(r.value.minDate||r.value.maxDate)?r.value.minDate&&r.value.maxDate?t2=k(w,T,H):(r.value.minDate&&p(w,T)||r.value.maxDate&&C(w,T))&&(t2=!0):t2=!0,t2},y=w=>Array.isArray(r.value.allowedDates)&&!r.value.allowedDates.length?!0:r.value.allowedDates?!et(w,r.value.allowedDates):!1,b=w=>!c(w),f=w=>n.value.noDisabledRange?!j6({start:w[0],end:w[1]}).some(T=>b(T)):!0,M=w=>{if(w){const T=F2(w);return T>=+t.yearRange[0]&&T<=t.yearRange[1]}return!0},V=(w,T)=>!!(Array.isArray(w)&&w[T]&&(n.value.maxRange||n.value.minRange)&&M(w[T])),S=(w,T,H=0)=>{if(V(T,H)&&M(w)){const I=F6(w,T[H]),t2=M4(T[H],w),P=t2.length===1?0:t2.filter(o2=>b(o2)).length,$=Math.abs(I)-(n.value.minMaxRawRange?0:P);if(n.value.minRange&&n.value.maxRange)return $>=+n.value.minRange&&$<=+n.value.maxRange;if(n.value.minRange)return $>=+n.value.minRange;if(n.value.maxRange)return $<=+n.value.maxRange}return!0},x=()=>!t.enableTimePicker||t.monthPicker||t.yearPicker||t.ignoreTimeValidation,B=w=>Array.isArray(w)?[w[0]?V5(w[0]):null,w[1]?V5(w[1]):null]:V5(w),O=(w,T,H)=>w.find(I=>+I.hours===de(T)&&I.minutes==="*"?!0:+I.minutes===Te(T)&&+I.hours===de(T))&&H,_=(w,T,H)=>{const[I,t2]=w,[P,$]=T;return!O(I,P,H)&&!O(t2,$,H)&&H},N=(w,T)=>{const H=Array.isArray(T)?T:[T];return Array.isArray(t.disabledTimes)?Array.isArray(t.disabledTimes[0])?_(t.disabledTimes,H,w):!H.some(I=>O(t.disabledTimes,I,w)):w},Z=(w,T)=>{const H=Array.isArray(T)?[C3(T[0]),T[1]?C3(T[1]):void 0]:C3(T),I=!t.disabledTimes(H);return w&&I},Y=(w,T)=>t.disabledTimes?Array.isArray(t.disabledTimes)?N(T,w):Z(T,w):T,D=w=>{let T=!0;if(!w||x())return!0;const H=!r.value.minDate&&!r.value.maxDate?B(w):w;return(t.maxTime||r.value.maxDate)&&(T=V4(t.maxTime,r.value.maxDate,"max",R0(H),T)),(t.minTime||r.value.minDate)&&(T=V4(t.minTime,r.value.minDate,"min",R0(H),T)),Y(w,T)},z=w=>{if(!t.monthPicker)return!0;let T=!0;const H=M2(F1(w));if(r.value.minDate&&r.value.maxDate){const I=M2(F1(r.value.minDate)),t2=M2(F1(r.value.maxDate));return E0(H,I)&&V0(H,t2)||I2(H,I)||I2(H,t2)}if(r.value.minDate){const I=M2(F1(r.value.minDate));T=E0(H,I)||I2(H,I)}if(r.value.maxDate){const I=M2(F1(r.value.maxDate));T=V0(H,I)||I2(H,I)}return T},W=e.computed(()=>w=>!t.enableTimePicker||t.ignoreTimeValidation?!0:D(w)),u2=e.computed(()=>w=>t.monthPicker?Array.isArray(w)&&(n.value.enabled||a.value.enabled)?!w.filter(T=>!z(T)).length:z(w):!0);return{isDisabled:b,validateDate:c,validateMonthYearInRange:m,isDateRangeAllowed:f,checkMinMaxRange:S,isValidTime:D,isTimeValid:W,isMonthValid:u2}},it=()=>{const t=e.computed(()=>(r,a)=>r==null?void 0:r.includes(a)),o=e.computed(()=>(r,a)=>r.count?r.solo?!0:a===0:!0),n=e.computed(()=>(r,a)=>r.count?r.solo?!0:a===r.count-1:!0);return{hideNavigationButtons:t,showLeftIcon:o,showRightIcon:n}},wl=(t,o,n)=>{const r=e.ref(0),a=e.reactive({[u3.timePicker]:!t.enableTimePicker||t.timePicker||t.monthPicker,[u3.calendar]:!1,[u3.header]:!1}),l=e.computed(()=>t.monthPicker||t.timePicker),i=k=>{var m;if((m=t.flow)!=null&&m.length){if(!k&&l.value)return C();a[k]=!0,Object.keys(a).filter(y=>!a[y]).length||C()}},d=()=>{var k,m;(k=t.flow)!=null&&k.length&&r.value!==-1&&(r.value+=1,o("flow-step",r.value),C()),((m=t.flow)==null?void 0:m.length)===r.value&&e.nextTick().then(()=>c())},c=()=>{r.value=-1},p=(k,m,...y)=>{var b,f;t.flow[r.value]===k&&n.value&&((f=(b=n.value)[m])==null||f.call(b,...y))},C=(k=0)=>{k&&(r.value+=k),p(K0.month,"toggleMonthPicker",!0),p(K0.year,"toggleYearPicker",!0),p(K0.calendar,"toggleTimePicker",!1,!0),p(K0.time,"toggleTimePicker",!0,!0);const m=t.flow[r.value];(m===K0.hours||m===K0.minutes||m===K0.seconds)&&p(m,"toggleTimePicker",!0,!0,m)};return{childMount:i,updateFlowStep:d,resetFlow:c,handleFlow:C,flowStep:r}},vl={key:1,class:"dp__input_wrap"},Vl=["id","name","inputmode","placeholder","disabled","readonly","required","value","autocomplete","aria-label","aria-disabled","aria-invalid"],_l={key:2,class:"dp--clear-btn"},xl=["aria-label"],Hl=e.defineComponent({compatConfig:{MODE:3},__name:"DatepickerInput",props:{isMenuOpen:{type:Boolean,default:!1},inputValue:{type:String,default:""},...rt},emits:["clear","open","update:input-value","set-input-date","close","select-date","set-empty-date","toggle","focus-prev","focus","blur","real-blur","text-input"],setup(t,{expose:o,emit:n}){const r=n,a=t,{defaultedTextInput:l,defaultedAriaLabels:i,defaultedInline:d,defaultedConfig:c,defaultedRange:p,defaultedMultiDates:C,defaultedUI:k,getDefaultPattern:m,getDefaultStartTime:y}=m0(a),{checkMinMaxRange:b}=Oe(a),f=e.ref(),M=e.ref(null),V=e.ref(!1),S=e.ref(!1),x=e.computed(()=>({dp__pointer:!a.disabled&&!a.readonly&&!l.value.enabled,dp__disabled:a.disabled,dp__input_readonly:!l.value.enabled,dp__input:!0,dp__input_icon_pad:!a.hideInputIcon,dp__input_valid:typeof a.state=="boolean"?a.state:!1,dp__input_invalid:typeof a.state=="boolean"?!a.state:!1,dp__input_focus:V.value||a.isMenuOpen,dp__input_reg:!l.value.enabled,...k.value.input??{}})),B=()=>{r("set-input-date",null),a.clearable&&a.autoApply&&(r("set-empty-date"),f.value=null)},O=$=>{const o2=y();return qr($,l.value.format??m(),o2??L4({},a.enableSeconds),a.inputValue,S.value,a.formatLocale)},_=$=>{const{rangeSeparator:o2}=l.value,[r2,X]=$.split(`${o2}`);if(r2){const v=O(r2.trim()),U=X?O(X.trim()):null;if(E3(v,U))return;const h2=v&&U?[v,U]:[v];b(U,h2,0)&&(f.value=v?h2:null)}},N=()=>{S.value=!0},Z=$=>{if(p.value.enabled)_($);else if(C.value.enabled){const o2=$.split(";");f.value=o2.map(r2=>O(r2.trim())).filter(r2=>r2)}else f.value=O($)},Y=$=>{var o2;const r2=typeof $=="string"?$:(o2=$.target)==null?void 0:o2.value;r2!==""?(l.value.openMenu&&!a.isMenuOpen&&r("open"),Z(r2),r("set-input-date",f.value)):B(),S.value=!1,r("update:input-value",r2),r("text-input",$,f.value)},D=$=>{l.value.enabled?(Z($.target.value),l.value.enterSubmit&&L5(f.value)&&a.inputValue!==""?(r("set-input-date",f.value,!0),f.value=null):l.value.enterSubmit&&a.inputValue===""&&(f.value=null,r("clear"))):u2($)},z=($,o2)=>{l.value.enabled&&l.value.tabSubmit&&!o2&&Z($.target.value),l.value.tabSubmit&&L5(f.value)&&a.inputValue!==""?(r("set-input-date",f.value,!0,!0),f.value=null):l.value.tabSubmit&&a.inputValue===""&&(f.value=null,r("clear",!0))},W=()=>{V.value=!0,r("focus"),e.nextTick().then(()=>{var $;l.value.enabled&&l.value.selectOnFocus&&(($=M.value)==null||$.select())})},u2=$=>{if(Ze($,c.value,!0),l.value.enabled&&l.value.openMenu&&!d.value.input){if(l.value.openMenu==="open"&&!a.isMenuOpen)return r("open");if(l.value.openMenu==="toggle")return r("toggle")}else l.value.enabled||r("toggle")},w=()=>{r("real-blur"),V.value=!1,(!a.isMenuOpen||d.value.enabled&&d.value.input)&&r("blur"),a.autoApply&&l.value.enabled&&f.value&&!a.isMenuOpen&&(r("set-input-date",f.value),r("select-date"),f.value=null)},T=$=>{Ze($,c.value,!0),r("clear")},H=$=>{if($.key==="Tab"&&z($),$.key==="Enter"&&D($),!l.value.enabled){if($.code==="Tab")return;$.preventDefault()}},I=()=>{var $;($=M.value)==null||$.focus({preventScroll:!0})},t2=$=>{f.value=$},P=$=>{$.key===u0.tab&&z($,!0)};return o({focusInput:I,setParsedDate:t2}),($,o2)=>{var r2,X,v;return e.openBlock(),e.createElementBlock("div",{onClick:u2},[$.$slots.trigger&&!$.$slots["dp-input"]&&!e.unref(d).enabled?e.renderSlot($.$slots,"trigger",{key:0}):e.createCommentVNode("",!0),!$.$slots.trigger&&(!e.unref(d).enabled||e.unref(d).input)?(e.openBlock(),e.createElementBlock("div",vl,[$.$slots["dp-input"]&&!$.$slots.trigger&&(!e.unref(d).enabled||e.unref(d).enabled&&e.unref(d).input)?e.renderSlot($.$slots,"dp-input",{key:0,value:t.inputValue,isMenuOpen:t.isMenuOpen,onInput:Y,onEnter:D,onTab:z,onClear:T,onBlur:w,onKeypress:H,onPaste:N,onFocus:W,openMenu:()=>$.$emit("open"),closeMenu:()=>$.$emit("close"),toggleMenu:()=>$.$emit("toggle")}):e.createCommentVNode("",!0),$.$slots["dp-input"]?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("input",{key:1,id:$.uid?`dp-input-${$.uid}`:void 0,ref_key:"inputRef",ref:M,"data-test":"dp-input",name:$.name,class:e.normalizeClass(x.value),inputmode:e.unref(l).enabled?"text":"none",placeholder:$.placeholder,disabled:$.disabled,readonly:$.readonly,required:$.required,value:t.inputValue,autocomplete:$.autocomplete,"aria-label":(r2=e.unref(i))==null?void 0:r2.input,"aria-disabled":$.disabled||void 0,"aria-invalid":$.state===!1?!0:void 0,onInput:Y,onBlur:w,onFocus:W,onKeypress:H,onKeydown:o2[0]||(o2[0]=U=>H(U)),onPaste:N},null,42,Vl)),e.createElementVNode("div",{onClick:o2[3]||(o2[3]=U=>r("toggle"))},[$.$slots["input-icon"]&&!$.hideInputIcon?(e.openBlock(),e.createElementBlock("span",{key:0,class:"dp__input_icon",onClick:o2[1]||(o2[1]=U=>r("toggle"))},[e.renderSlot($.$slots,"input-icon")])):e.createCommentVNode("",!0),!$.$slots["input-icon"]&&!$.hideInputIcon&&!$.$slots["dp-input"]?(e.openBlock(),e.createBlock(e.unref(Z3),{key:1,"aria-label":(X=e.unref(i))==null?void 0:X.calendarIcon,class:"dp__input_icon dp__input_icons",onClick:o2[2]||(o2[2]=U=>r("toggle"))},null,8,["aria-label"])):e.createCommentVNode("",!0)]),$.$slots["clear-icon"]&&t.inputValue&&$.clearable&&!$.disabled&&!$.readonly?(e.openBlock(),e.createElementBlock("span",_l,[e.renderSlot($.$slots,"clear-icon",{clear:T})])):e.createCommentVNode("",!0),$.clearable&&!$.$slots["clear-icon"]&&t.inputValue&&!$.disabled&&!$.readonly?(e.openBlock(),e.createElementBlock("button",{key:3,"aria-label":(v=e.unref(i))==null?void 0:v.clearInput,class:"dp--clear-btn",type:"button",onKeydown:o2[4]||(o2[4]=U=>e.unref(i1)(U,()=>T(U),!0,P)),onClick:o2[5]||(o2[5]=e.withModifiers(U=>T(U),["prevent"]))},[e.createVNode(e.unref(c4),{class:"dp__input_icons","data-test":"clear-icon"})],40,xl)):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0)])}}}),Bl=typeof window<"u"?window:void 0,Z5=()=>{},Sl=t=>e.getCurrentScope()?(e.onScopeDispose(t),!0):!1,El=(t,o,n,r)=>{if(!t)return Z5;let a=Z5;const l=e.watch(()=>e.unref(t),d=>{a(),d&&(d.addEventListener(o,n,r),a=()=>{d.removeEventListener(o,n,r),a=Z5})},{immediate:!0,flush:"post"}),i=()=>{l(),a()};return Sl(i),i},Dl=(t,o,n,r={})=>{const{window:a=Bl,event:l="pointerdown"}=r;return a?El(a,l,i=>{const d=N0(t),c=N0(o);!d||!c||d===i.target||i.composedPath().includes(d)||i.composedPath().includes(c)||n(i)},{passive:!0}):void 0},Tl=e.defineComponent({compatConfig:{MODE:3},__name:"VueDatePicker",props:{...rt},emits:["update:model-value","update:model-timezone-value","text-submit","closed","cleared","open","focus","blur","internal-model-change","recalculate-position","flow-step","update-month-year","invalid-select","invalid-fixed-range","tooltip-open","tooltip-close","time-picker-open","time-picker-close","am-pm-change","range-start","range-end","date-update","invalid-date","overlay-toggle","text-input"],setup(t,{expose:o,emit:n}){const r=n,a=t,l=e.useSlots(),i=e.ref(!1),d=e.toRef(a,"modelValue"),c=e.toRef(a,"timezone"),p=e.ref(null),C=e.ref(null),k=e.ref(null),m=e.ref(!1),y=e.ref(null),b=e.ref(!1),f=e.ref(!1),M=e.ref(!1),V=e.ref(!1),{setMenuFocused:S,setShiftKey:x}=H4(),{clearArrowNav:B}=Ne(),{validateDate:O,isValidTime:_}=Oe(a),{defaultedTransitions:N,defaultedTextInput:Z,defaultedInline:Y,defaultedConfig:D,defaultedRange:z,defaultedMultiDates:W}=m0(a),{menuTransition:u2,showTransition:w}=b9(N);e.onMounted(()=>{U(a.modelValue),e.nextTick().then(()=>{if(!Y.value.enabled){const l2=o2(y.value);l2==null||l2.addEventListener("scroll",y2),window==null||window.addEventListener("resize",d2)}}),Y.value.enabled&&(i.value=!0),window==null||window.addEventListener("keyup",S2),window==null||window.addEventListener("keydown",A)}),e.onUnmounted(()=>{if(!Y.value.enabled){const l2=o2(y.value);l2==null||l2.removeEventListener("scroll",y2),window==null||window.removeEventListener("resize",d2)}window==null||window.removeEventListener("keyup",S2),window==null||window.removeEventListener("keydown",A)});const T=b1(l,"all",a.presetDates),H=b1(l,"input");e.watch([d,c],()=>{U(d.value)},{deep:!0});const{openOnTop:I,menuStyle:t2,xCorrect:P,setMenuPosition:$,getScrollableParent:o2,shadowRender:r2}=gl({menuRef:p,menuRefInner:C,inputRef:k,pickerWrapperRef:y,inline:Y,emit:r,props:a,slots:l}),{inputValue:X,internalModelValue:v,parseExternalModelValue:U,emitModelValue:h2,formatInputValue:F,checkBeforeEmit:i2}=ya(r,a,m),k2=e.computed(()=>({dp__main:!0,dp__theme_dark:a.dark,dp__theme_light:!a.dark,dp__flex_display:Y.value.enabled,"dp--flex-display-collapsed":M.value,dp__flex_display_with_input:Y.value.input})),b2=e.computed(()=>a.dark?"dp__theme_dark":"dp__theme_light"),Q=e.computed(()=>a.teleport?{to:typeof a.teleport=="boolean"?"body":a.teleport,disabled:!a.teleport||Y.value.enabled}:{}),p2=e.computed(()=>({class:"dp__outer_menu_wrap"})),E=e.computed(()=>Y.value.enabled&&(a.timePicker||a.monthPicker||a.yearPicker||a.quarterPicker)),c2=()=>{var l2,w2;return(w2=(l2=k.value)==null?void 0:l2.$el)==null?void 0:w2.getBoundingClientRect()},y2=()=>{i.value&&(D.value.closeOnScroll?F0():$())},d2=()=>{var l2;i.value&&$();const w2=(l2=C.value)==null?void 0:l2.$el.getBoundingClientRect().width;M.value=document.body.offsetWidth<=w2},S2=l2=>{l2.key==="Tab"&&!Y.value.enabled&&!a.teleport&&D.value.tabOutClosesMenu&&(y.value.contains(document.activeElement)||F0()),f.value=l2.shiftKey},A=l2=>{f.value=l2.shiftKey},R=()=>{!a.disabled&&!a.readonly&&(r2(F4,a),$(!1),i.value=!0,i.value&&r("open"),i.value||H1(),U(a.modelValue))},J=()=>{var l2;X.value="",H1(),(l2=k.value)==null||l2.setParsedDate(null),r("update:model-value",null),r("update:model-timezone-value",null),r("cleared"),D.value.closeOnClearValue&&F0()},g2=()=>{const l2=v.value;return!l2||!Array.isArray(l2)&&O(l2)?!0:Array.isArray(l2)?W.value.enabled||l2.length===2&&O(l2[0])&&O(l2[1])?!0:z.value.partialRange&&!a.timePicker?O(l2[0]):!1:!1},E2=()=>{i2()&&g2()?(h2(),F0()):r("invalid-select",v.value)},L2=l2=>{q2(),h2(),D.value.closeOnAutoApply&&!l2&&F0()},q2=()=>{k.value&&Z.value.enabled&&k.value.setParsedDate(v.value)},b0=(l2=!1)=>{a.autoApply&&_(v.value)&&g2()&&(z.value.enabled&&Array.isArray(v.value)?(z.value.partialRange||v.value.length===2)&&L2(l2):L2(l2))},H1=()=>{Z.value.enabled||(v.value=null)},F0=()=>{Y.value.enabled||(i.value&&(i.value=!1,P.value=!1,S(!1),x(!1),B(),r("closed"),X.value&&U(d.value)),H1(),r("blur"))},f1=(l2,w2,H2=!1)=>{if(!l2){v.value=null;return}const O0=Array.isArray(l2)?!l2.some(S1=>!O(S1)):O(l2),W0=_(l2);O0&&W0?(V.value=!0,v.value=l2,w2&&(b.value=H2,E2(),r("text-submit")),e.nextTick().then(()=>{V.value=!1})):r("invalid-date",l2)},oe=()=>{a.autoApply&&_(v.value)&&h2(),q2()},z1=()=>i.value?F0():R(),k1=l2=>{v.value=l2},P1=()=>{Z.value.enabled&&(m.value=!0,F()),r("focus")},B1=()=>{if(Z.value.enabled&&(m.value=!1,U(a.modelValue),b.value)){const l2=Ur(y.value,f.value);l2==null||l2.focus()}r("blur")},Ie=l2=>{C.value&&C.value.updateMonthYear(0,{month:h4(l2.month),year:h4(l2.year)})},Ye=l2=>{U(l2??a.modelValue)},Ue=(l2,w2)=>{var H2;(H2=C.value)==null||H2.switchView(l2,w2)},n2=l2=>D.value.onClickOutside?D.value.onClickOutside(l2):F0(),v2=(l2=0)=>{var w2;(w2=C.value)==null||w2.handleFlow(l2)};return Dl(p,k,()=>n2(g2)),o({closeMenu:F0,selectDate:E2,clearValue:J,openMenu:R,onScroll:y2,formatInputValue:F,updateInternalModelValue:k1,setMonthYear:Ie,parseModel:Ye,switchView:Ue,toggleMenu:z1,handleFlow:v2,dpWrapMenuRef:p}),(l2,w2)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"pickerWrapperRef",ref:y,class:e.normalizeClass(k2.value),"data-datepicker-instance":""},[e.createVNode(Hl,e.mergeProps({ref_key:"inputRef",ref:k,"input-value":e.unref(X),"onUpdate:inputValue":w2[0]||(w2[0]=H2=>e.isRef(X)?X.value=H2:null),"is-menu-open":i.value},l2.$props,{onClear:J,onOpen:R,onSetInputDate:f1,onSetEmptyDate:e.unref(h2),onSelectDate:E2,onToggle:z1,onClose:F0,onFocus:P1,onBlur:B1,onRealBlur:w2[1]||(w2[1]=H2=>m.value=!1),onTextInput:w2[2]||(w2[2]=H2=>l2.$emit("text-input",H2))}),e.createSlots({_:2},[e.renderList(e.unref(H),(H2,O0)=>({name:H2,fn:e.withCtx(W0=>[e.renderSlot(l2.$slots,H2,e.normalizeProps(e.guardReactiveProps(W0)))])}))]),1040,["input-value","is-menu-open","onSetEmptyDate"]),(e.openBlock(),e.createBlock(e.resolveDynamicComponent(l2.teleport?e.Teleport:"div"),e.normalizeProps(e.guardReactiveProps(Q.value)),{default:e.withCtx(()=>[e.createVNode(e.Transition,{name:e.unref(u2)(e.unref(I)),css:e.unref(w)&&!e.unref(Y).enabled},{default:e.withCtx(()=>[i.value?(e.openBlock(),e.createElementBlock("div",e.mergeProps({key:0,ref_key:"dpWrapMenuRef",ref:p},p2.value,{class:{"dp--menu-wrapper":!e.unref(Y).enabled},style:e.unref(Y).enabled?void 0:e.unref(t2)}),[e.createVNode(F4,e.mergeProps({ref_key:"dpMenuRef",ref:C},l2.$props,{"internal-model-value":e.unref(v),"onUpdate:internalModelValue":w2[3]||(w2[3]=H2=>e.isRef(v)?v.value=H2:null),class:{[b2.value]:!0,"dp--menu-wrapper":l2.teleport},"open-on-top":e.unref(I),"no-overlay-focus":E.value,collapse:M.value,"get-input-rect":c2,"is-text-input-date":V.value,onClosePicker:F0,onSelectDate:E2,onAutoApply:b0,onTimeUpdate:oe,onFlowStep:w2[4]||(w2[4]=H2=>l2.$emit("flow-step",H2)),onUpdateMonthYear:w2[5]||(w2[5]=H2=>l2.$emit("update-month-year",H2)),onInvalidSelect:w2[6]||(w2[6]=H2=>l2.$emit("invalid-select",e.unref(v))),onAutoApplyInvalid:w2[7]||(w2[7]=H2=>l2.$emit("invalid-select",H2)),onInvalidFixedRange:w2[8]||(w2[8]=H2=>l2.$emit("invalid-fixed-range",H2)),onRecalculatePosition:e.unref($),onTooltipOpen:w2[9]||(w2[9]=H2=>l2.$emit("tooltip-open",H2)),onTooltipClose:w2[10]||(w2[10]=H2=>l2.$emit("tooltip-close",H2)),onTimePickerOpen:w2[11]||(w2[11]=H2=>l2.$emit("time-picker-open",H2)),onTimePickerClose:w2[12]||(w2[12]=H2=>l2.$emit("time-picker-close",H2)),onAmPmChange:w2[13]||(w2[13]=H2=>l2.$emit("am-pm-change",H2)),onRangeStart:w2[14]||(w2[14]=H2=>l2.$emit("range-start",H2)),onRangeEnd:w2[15]||(w2[15]=H2=>l2.$emit("range-end",H2)),onDateUpdate:w2[16]||(w2[16]=H2=>l2.$emit("date-update",H2)),onInvalidDate:w2[17]||(w2[17]=H2=>l2.$emit("invalid-date",H2)),onOverlayToggle:w2[18]||(w2[18]=H2=>l2.$emit("overlay-toggle",H2))}),e.createSlots({_:2},[e.renderList(e.unref(T),(H2,O0)=>({name:H2,fn:e.withCtx(W0=>[e.renderSlot(l2.$slots,H2,e.normalizeProps(e.guardReactiveProps({...W0})))])}))]),1040,["internal-model-value","class","open-on-top","no-overlay-focus","collapse","is-text-input-date","onRecalculatePosition"])],16)):e.createCommentVNode("",!0)]),_:3},8,["name","css"])]),_:3},16))],2))}}),A5=(()=>{const t=Tl;return t.install=o=>{o.component("Vue3DatePicker",t)},t})();Object.entries(Object.freeze(Object.defineProperty({__proto__:null,default:A5},Symbol.toStringTag,{value:"Module"}))).forEach(([t,o])=>{t!=="default"&&(A5[t]=o)});function Zl(t,o,n){var r=-1,a=t.length;o<0&&(o=-o>a?0:a+o),n=n>a?a:n,n<0&&(n+=a),a=o>n?0:n-o>>>0,o>>>=0;for(var l=Array(a);++r<a;)l[r]=t[r+o];return l}var Al=Zl,$l=Al;function Nl(t,o,n){var r=t.length;return n=n===void 0?r:n,!o&&n>=r?t:$l(t,o,n)}var Fl=Nl,Ol="\\ud800-\\udfff",zl="\\u0300-\\u036f",Pl="\\ufe20-\\ufe2f",jl="\\u20d0-\\u20ff",Rl=zl+Pl+jl,Il="\\ufe0e\\ufe0f",Yl="\\u200d",Ul=RegExp("["+Yl+Ol+Rl+Il+"]");function Wl(t){return Ul.test(t)}var O4=Wl;function ql(t){return t.split("")}var Gl=ql,z4="\\ud800-\\udfff",Xl="\\u0300-\\u036f",Kl="\\ufe20-\\ufe2f",Ql="\\u20d0-\\u20ff",Jl=Xl+Kl+Ql,ei="\\ufe0e\\ufe0f",ti="["+z4+"]",$5="["+Jl+"]",N5="\\ud83c[\\udffb-\\udfff]",oi="(?:"+$5+"|"+N5+")",P4="[^"+z4+"]",j4="(?:\\ud83c[\\udde6-\\uddff]){2}",R4="[\\ud800-\\udbff][\\udc00-\\udfff]",ni="\\u200d",I4=oi+"?",Y4="["+ei+"]?",ri="(?:"+ni+"(?:"+[P4,j4,R4].join("|")+")"+Y4+I4+")*",ai=Y4+I4+ri,li="(?:"+[P4+$5+"?",$5,j4,R4,ti].join("|")+")",ii=RegExp(N5+"(?="+N5+")|"+li+ai,"g");function si(t){return t.match(ii)||[]}var ci=si,di=Gl,ui=O4,Ci=ci;function hi(t){return ui(t)?Ci(t):di(t)}var pi=hi,mi=typeof p1=="object"&&p1&&p1.Object===Object&&p1,fi=mi,ki=fi,yi=typeof self=="object"&&self&&self.Object===Object&&self,gi=ki||yi||Function("return this")(),bi=gi,Mi=bi,Li=Mi.Symbol,F5=Li;function wi(t,o){for(var n=-1,r=t==null?0:t.length,a=Array(r);++n<r;)a[n]=o(t[n],n,t);return a}var vi=wi,Vi=Array.isArray,_i=Vi,U4=F5,W4=Object.prototype,xi=W4.hasOwnProperty,Hi=W4.toString,L9=U4?U4.toStringTag:void 0;function Bi(t){var o=xi.call(t,L9),n=t[L9];try{t[L9]=void 0;var r=!0}catch{}var a=Hi.call(t);return r&&(o?t[L9]=n:delete t[L9]),a}var Si=Bi,Ei=Object.prototype,Di=Ei.toString;function Ti(t){return Di.call(t)}var Zi=Ti,q4=F5,Ai=Si,$i=Zi,Ni="[object Null]",Fi="[object Undefined]",G4=q4?q4.toStringTag:void 0;function Oi(t){return t==null?t===void 0?Fi:Ni:G4&&G4 in Object(t)?Ai(t):$i(t)}var zi=Oi;function Pi(t){return t!=null&&typeof t=="object"}var ji=Pi,Ri=zi,Ii=ji,Yi="[object Symbol]";function Ui(t){return typeof t=="symbol"||Ii(t)&&Ri(t)==Yi}var Wi=Ui,X4=F5,qi=vi,Gi=_i,Xi=Wi,Ki=1/0,K4=X4?X4.prototype:void 0,Q4=K4?K4.toString:void 0;function J4(t){if(typeof t=="string")return t;if(Gi(t))return qi(t,J4)+"";if(Xi(t))return Q4?Q4.call(t):"";var o=t+"";return o=="0"&&1/t==-Ki?"-0":o}var Qi=J4,Ji=Qi;function es(t){return t==null?"":Ji(t)}var ts=es,os=Fl,ns=O4,rs=pi,as=ts;function ls(t){return function(o){o=as(o);var n=ns(o)?rs(o):void 0,r=n?n[0]:o.charAt(0),a=n?os(n,1).join(""):o.slice(1);return r[t]()+a}}var is=ls,ss=is,cs=ss("toUpperCase"),ds=cs;const e8=x1(ds);/*! @license DOMPurify 3.2.1 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.2.1/LICENSE */var O5,t8;function o8(){if(t8)return O5;t8=1;const{entries:t,setPrototypeOf:o,isFrozen:n,getPrototypeOf:r,getOwnPropertyDescriptor:a}=Object;let{freeze:l,seal:i,create:d}=Object,{apply:c,construct:p}=typeof Reflect<"u"&&Reflect;l||(l=function(J){return J}),i||(i=function(J){return J}),c||(c=function(J,g2,E2){return J.apply(g2,E2)}),p||(p=function(J,g2){return new J(...g2)});const C=_(Array.prototype.forEach),k=_(Array.prototype.pop),m=_(Array.prototype.push),y=_(String.prototype.toLowerCase),b=_(String.prototype.toString),f=_(String.prototype.match),M=_(String.prototype.replace),V=_(String.prototype.indexOf),S=_(String.prototype.trim),x=_(Object.prototype.hasOwnProperty),B=_(RegExp.prototype.test),O=N(TypeError);function _(R){return function(J){for(var g2=arguments.length,E2=new Array(g2>1?g2-1:0),L2=1;L2<g2;L2++)E2[L2-1]=arguments[L2];return c(R,J,E2)}}function N(R){return function(){for(var J=arguments.length,g2=new Array(J),E2=0;E2<J;E2++)g2[E2]=arguments[E2];return p(R,g2)}}function Z(R,J){let g2=arguments.length>2&&arguments[2]!==void 0?arguments[2]:y;o&&o(R,null);let E2=J.length;for(;E2--;){let L2=J[E2];if(typeof L2=="string"){const q2=g2(L2);q2!==L2&&(n(J)||(J[E2]=q2),L2=q2)}R[L2]=!0}return R}function Y(R){for(let J=0;J<R.length;J++)x(R,J)||(R[J]=null);return R}function D(R){const J=d(null);for(const[g2,E2]of t(R))x(R,g2)&&(Array.isArray(E2)?J[g2]=Y(E2):E2&&typeof E2=="object"&&E2.constructor===Object?J[g2]=D(E2):J[g2]=E2);return J}function z(R,J){for(;R!==null;){const E2=a(R,J);if(E2){if(E2.get)return _(E2.get);if(typeof E2.value=="function")return _(E2.value)}R=r(R)}function g2(){return null}return g2}const W=l(["a","abbr","acronym","address","area","article","aside","audio","b","bdi","bdo","big","blink","blockquote","body","br","button","canvas","caption","center","cite","code","col","colgroup","content","data","datalist","dd","decorator","del","details","dfn","dialog","dir","div","dl","dt","element","em","fieldset","figcaption","figure","font","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","img","input","ins","kbd","label","legend","li","main","map","mark","marquee","menu","menuitem","meter","nav","nobr","ol","optgroup","option","output","p","picture","pre","progress","q","rp","rt","ruby","s","samp","section","select","shadow","small","source","spacer","span","strike","strong","style","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","time","tr","track","tt","u","ul","var","video","wbr"]),u2=l(["svg","a","altglyph","altglyphdef","altglyphitem","animatecolor","animatemotion","animatetransform","circle","clippath","defs","desc","ellipse","filter","font","g","glyph","glyphref","hkern","image","line","lineargradient","marker","mask","metadata","mpath","path","pattern","polygon","polyline","radialgradient","rect","stop","style","switch","symbol","text","textpath","title","tref","tspan","view","vkern"]),w=l(["feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence"]),T=l(["animate","color-profile","cursor","discard","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","foreignobject","hatch","hatchpath","mesh","meshgradient","meshpatch","meshrow","missing-glyph","script","set","solidcolor","unknown","use"]),H=l(["math","menclose","merror","mfenced","mfrac","mglyph","mi","mlabeledtr","mmultiscripts","mn","mo","mover","mpadded","mphantom","mroot","mrow","ms","mspace","msqrt","mstyle","msub","msup","msubsup","mtable","mtd","mtext","mtr","munder","munderover","mprescripts"]),I=l(["maction","maligngroup","malignmark","mlongdiv","mscarries","mscarry","msgroup","mstack","msline","msrow","semantics","annotation","annotation-xml","mprescripts","none"]),t2=l(["#text"]),P=l(["accept","action","align","alt","autocapitalize","autocomplete","autopictureinpicture","autoplay","background","bgcolor","border","capture","cellpadding","cellspacing","checked","cite","class","clear","color","cols","colspan","controls","controlslist","coords","crossorigin","datetime","decoding","default","dir","disabled","disablepictureinpicture","disableremoteplayback","download","draggable","enctype","enterkeyhint","face","for","headers","height","hidden","high","href","hreflang","id","inputmode","integrity","ismap","kind","label","lang","list","loading","loop","low","max","maxlength","media","method","min","minlength","multiple","muted","name","nonce","noshade","novalidate","nowrap","open","optimum","pattern","placeholder","playsinline","popover","popovertarget","popovertargetaction","poster","preload","pubdate","radiogroup","readonly","rel","required","rev","reversed","role","rows","rowspan","spellcheck","scope","selected","shape","size","sizes","span","srclang","start","src","srcset","step","style","summary","tabindex","title","translate","type","usemap","valign","value","width","wrap","xmlns","slot"]),$=l(["accent-height","accumulate","additive","alignment-baseline","amplitude","ascent","attributename","attributetype","azimuth","basefrequency","baseline-shift","begin","bias","by","class","clip","clippathunits","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","cx","cy","d","dx","dy","diffuseconstant","direction","display","divisor","dur","edgemode","elevation","end","exponent","fill","fill-opacity","fill-rule","filter","filterunits","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","fx","fy","g1","g2","glyph-name","glyphref","gradientunits","gradienttransform","height","href","id","image-rendering","in","in2","intercept","k","k1","k2","k3","k4","kerning","keypoints","keysplines","keytimes","lang","lengthadjust","letter-spacing","kernelmatrix","kernelunitlength","lighting-color","local","marker-end","marker-mid","marker-start","markerheight","markerunits","markerwidth","maskcontentunits","maskunits","max","mask","media","method","mode","min","name","numoctaves","offset","operator","opacity","order","orient","orientation","origin","overflow","paint-order","path","pathlength","patterncontentunits","patterntransform","patternunits","points","preservealpha","preserveaspectratio","primitiveunits","r","rx","ry","radius","refx","refy","repeatcount","repeatdur","restart","result","rotate","scale","seed","shape-rendering","slope","specularconstant","specularexponent","spreadmethod","startoffset","stddeviation","stitchtiles","stop-color","stop-opacity","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke","stroke-width","style","surfacescale","systemlanguage","tabindex","tablevalues","targetx","targety","transform","transform-origin","text-anchor","text-decoration","text-rendering","textlength","type","u1","u2","unicode","values","viewbox","visibility","version","vert-adv-y","vert-origin-x","vert-origin-y","width","word-spacing","wrap","writing-mode","xchannelselector","ychannelselector","x","x1","x2","xmlns","y","y1","y2","z","zoomandpan"]),o2=l(["accent","accentunder","align","bevelled","close","columnsalign","columnlines","columnspan","denomalign","depth","dir","display","displaystyle","encoding","fence","frame","height","href","id","largeop","length","linethickness","lspace","lquote","mathbackground","mathcolor","mathsize","mathvariant","maxsize","minsize","movablelimits","notation","numalign","open","rowalign","rowlines","rowspacing","rowspan","rspace","rquote","scriptlevel","scriptminsize","scriptsizemultiplier","selection","separator","separators","stretchy","subscriptshift","supscriptshift","symmetric","voffset","width","xmlns"]),r2=l(["xlink:href","xml:id","xlink:title","xml:space","xmlns:xlink"]),X=i(/\{\{[\w\W]*|[\w\W]*\}\}/gm),v=i(/<%[\w\W]*|[\w\W]*%>/gm),U=i(/\${[\w\W]*}/gm),h2=i(/^data-[\-\w.\u00B7-\uFFFF]/),F=i(/^aria-[\-\w]+$/),i2=i(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),k2=i(/^(?:\w+script|data):/i),b2=i(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),Q=i(/^html$/i),p2=i(/^[a-z][.\w]*(-[.\w]+)+$/i);var E=Object.freeze({__proto__:null,ARIA_ATTR:F,ATTR_WHITESPACE:b2,CUSTOM_ELEMENT:p2,DATA_ATTR:h2,DOCTYPE_NAME:Q,ERB_EXPR:v,IS_ALLOWED_URI:i2,IS_SCRIPT_OR_DATA:k2,MUSTACHE_EXPR:X,TMPLIT_EXPR:U});const c2={element:1,attribute:2,text:3,cdataSection:4,entityReference:5,entityNode:6,progressingInstruction:7,comment:8,document:9,documentType:10,documentFragment:11,notation:12},y2=function(){return typeof window>"u"?null:window},d2=function(J,g2){if(typeof J!="object"||typeof J.createPolicy!="function")return null;let E2=null;const L2="data-tt-policy-suffix";g2&&g2.hasAttribute(L2)&&(E2=g2.getAttribute(L2));const q2="dompurify"+(E2?"#"+E2:"");try{return J.createPolicy(q2,{createHTML(b0){return b0},createScriptURL(b0){return b0}})}catch{return console.warn("TrustedTypes policy "+q2+" could not be created."),null}};function S2(){let R=arguments.length>0&&arguments[0]!==void 0?arguments[0]:y2();const J=B2=>S2(B2);if(J.version="3.2.1",J.removed=[],!R||!R.document||R.document.nodeType!==c2.document)return J.isSupported=!1,J;let{document:g2}=R;const E2=g2,L2=E2.currentScript,{DocumentFragment:q2,HTMLTemplateElement:b0,Node:H1,Element:F0,NodeFilter:f1,NamedNodeMap:oe=R.NamedNodeMap||R.MozNamedAttrMap,HTMLFormElement:z1,DOMParser:k1,trustedTypes:P1}=R,B1=F0.prototype,Ie=z(B1,"cloneNode"),Ye=z(B1,"remove"),Ue=z(B1,"nextSibling"),n2=z(B1,"childNodes"),v2=z(B1,"parentNode");if(typeof b0=="function"){const B2=g2.createElement("template");B2.content&&B2.content.ownerDocument&&(g2=B2.content.ownerDocument)}let l2,w2="";const{implementation:H2,createNodeIterator:O0,createDocumentFragment:W0,getElementsByTagName:S1}=g2,{importNode:fe}=E2;let Z0={};J.isSupported=typeof t=="function"&&typeof v2=="function"&&H2&&H2.createHTMLDocument!==void 0;const{MUSTACHE_EXPR:c1,ERB_EXPR:ne,TMPLIT_EXPR:c0,DATA_ATTR:ke,ARIA_ATTR:We,IS_SCRIPT_OR_DATA:H9,ATTR_WHITESPACE:B9,CUSTOM_ELEMENT:P3}=E;let{IS_ALLOWED_URI:j3}=E,t0=null;const j1=Z({},[...W,...u2,...w,...H,...t2]);let M0=null;const qe=Z({},[...P,...$,...o2,...r2]);let a0=Object.seal(d(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),R1=null,E1=null,ye=!0,R3=!0,I3=!1,Y3=!0,Ge=!1,U3=!0,re=!1,W3=!1,ae=!1,ge=!1,q3=!1,f3=!1,G3=!0,X3=!1;const yt="user-content-";let S9=!0,k3=!1,L1={},be=null;const gt=Z({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","style","svg","template","thead","title","video","xmp"]);let E9=null;const D9=Z({},["audio","video","img","source","image","track"]);let y3=null;const g3=Z({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),b3="http://www.w3.org/1998/Math/MathML",M3="http://www.w3.org/2000/svg",y1="http://www.w3.org/1999/xhtml";let d1=y1,Xe=!1,T9=null;const bt=Z({},[b3,M3,y1],b);let Ke=Z({},["mi","mo","mn","ms","mtext"]),Me=Z({},["annotation-xml"]);const Z9=Z({},["title","style","font","a","script"]);let Qe=null;const Mt=["application/xhtml+xml","text/html"],Lt="text/html";let A0=null,I1=null;const Y1=g2.createElement("form"),K3=function(q){return q instanceof RegExp||q instanceof Function},L3=function(){let q=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};if(!(I1&&I1===q)){if((!q||typeof q!="object")&&(q={}),q=D(q),Qe=Mt.indexOf(q.PARSER_MEDIA_TYPE)===-1?Lt:q.PARSER_MEDIA_TYPE,A0=Qe==="application/xhtml+xml"?b:y,t0=x(q,"ALLOWED_TAGS")?Z({},q.ALLOWED_TAGS,A0):j1,M0=x(q,"ALLOWED_ATTR")?Z({},q.ALLOWED_ATTR,A0):qe,T9=x(q,"ALLOWED_NAMESPACES")?Z({},q.ALLOWED_NAMESPACES,b):bt,y3=x(q,"ADD_URI_SAFE_ATTR")?Z(D(g3),q.ADD_URI_SAFE_ATTR,A0):g3,E9=x(q,"ADD_DATA_URI_TAGS")?Z(D(D9),q.ADD_DATA_URI_TAGS,A0):D9,be=x(q,"FORBID_CONTENTS")?Z({},q.FORBID_CONTENTS,A0):gt,R1=x(q,"FORBID_TAGS")?Z({},q.FORBID_TAGS,A0):{},E1=x(q,"FORBID_ATTR")?Z({},q.FORBID_ATTR,A0):{},L1=x(q,"USE_PROFILES")?q.USE_PROFILES:!1,ye=q.ALLOW_ARIA_ATTR!==!1,R3=q.ALLOW_DATA_ATTR!==!1,I3=q.ALLOW_UNKNOWN_PROTOCOLS||!1,Y3=q.ALLOW_SELF_CLOSE_IN_ATTR!==!1,Ge=q.SAFE_FOR_TEMPLATES||!1,U3=q.SAFE_FOR_XML!==!1,re=q.WHOLE_DOCUMENT||!1,ge=q.RETURN_DOM||!1,q3=q.RETURN_DOM_FRAGMENT||!1,f3=q.RETURN_TRUSTED_TYPE||!1,ae=q.FORCE_BODY||!1,G3=q.SANITIZE_DOM!==!1,X3=q.SANITIZE_NAMED_PROPS||!1,S9=q.KEEP_CONTENT!==!1,k3=q.IN_PLACE||!1,j3=q.ALLOWED_URI_REGEXP||i2,d1=q.NAMESPACE||y1,Ke=q.MATHML_TEXT_INTEGRATION_POINTS||Ke,Me=q.HTML_INTEGRATION_POINTS||Me,a0=q.CUSTOM_ELEMENT_HANDLING||{},q.CUSTOM_ELEMENT_HANDLING&&K3(q.CUSTOM_ELEMENT_HANDLING.tagNameCheck)&&(a0.tagNameCheck=q.CUSTOM_ELEMENT_HANDLING.tagNameCheck),q.CUSTOM_ELEMENT_HANDLING&&K3(q.CUSTOM_ELEMENT_HANDLING.attributeNameCheck)&&(a0.attributeNameCheck=q.CUSTOM_ELEMENT_HANDLING.attributeNameCheck),q.CUSTOM_ELEMENT_HANDLING&&typeof q.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements=="boolean"&&(a0.allowCustomizedBuiltInElements=q.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements),Ge&&(R3=!1),q3&&(ge=!0),L1&&(t0=Z({},t2),M0=[],L1.html===!0&&(Z(t0,W),Z(M0,P)),L1.svg===!0&&(Z(t0,u2),Z(M0,$),Z(M0,r2)),L1.svgFilters===!0&&(Z(t0,w),Z(M0,$),Z(M0,r2)),L1.mathMl===!0&&(Z(t0,H),Z(M0,o2),Z(M0,r2))),q.ADD_TAGS&&(t0===j1&&(t0=D(t0)),Z(t0,q.ADD_TAGS,A0)),q.ADD_ATTR&&(M0===qe&&(M0=D(M0)),Z(M0,q.ADD_ATTR,A0)),q.ADD_URI_SAFE_ATTR&&Z(y3,q.ADD_URI_SAFE_ATTR,A0),q.FORBID_CONTENTS&&(be===gt&&(be=D(be)),Z(be,q.FORBID_CONTENTS,A0)),S9&&(t0["#text"]=!0),re&&Z(t0,["html","head","body"]),t0.table&&(Z(t0,["tbody"]),delete R1.tbody),q.TRUSTED_TYPES_POLICY){if(typeof q.TRUSTED_TYPES_POLICY.createHTML!="function")throw O('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if(typeof q.TRUSTED_TYPES_POLICY.createScriptURL!="function")throw O('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');l2=q.TRUSTED_TYPES_POLICY,w2=l2.createHTML("")}else l2===void 0&&(l2=d2(P1,L2)),l2!==null&&typeof w2=="string"&&(w2=l2.createHTML(""));l&&l(q),I1=q}},r0=Z({},[...u2,...w,...T]),Q3=Z({},[...H,...I]),wt=function(q){let V2=v2(q);(!V2||!V2.tagName)&&(V2={namespaceURI:d1,tagName:"template"});const D2=y(q.tagName),l0=y(V2.tagName);return T9[q.namespaceURI]?q.namespaceURI===M3?V2.namespaceURI===y1?D2==="svg":V2.namespaceURI===b3?D2==="svg"&&(l0==="annotation-xml"||Ke[l0]):!!r0[D2]:q.namespaceURI===b3?V2.namespaceURI===y1?D2==="math":V2.namespaceURI===M3?D2==="math"&&Me[l0]:!!Q3[D2]:q.namespaceURI===y1?V2.namespaceURI===M3&&!Me[l0]||V2.namespaceURI===b3&&!Ke[l0]?!1:!Q3[D2]&&(Z9[D2]||!r0[D2]):!!(Qe==="application/xhtml+xml"&&T9[q.namespaceURI]):!1},w1=function(q){m(J.removed,{element:q});try{v2(q).removeChild(q)}catch{Ye(q)}},w3=function(q,V2){try{m(J.removed,{attribute:V2.getAttributeNode(q),from:V2})}catch{m(J.removed,{attribute:null,from:V2})}if(V2.removeAttribute(q),q==="is"&&!M0[q])if(ge||q3)try{w1(V2)}catch{}else try{V2.setAttribute(q,"")}catch{}},le=function(q){let V2=null,D2=null;if(ae)q="<remove></remove>"+q;else{const x0=f(q,/^[\r\n\t ]+/);D2=x0&&x0[0]}Qe==="application/xhtml+xml"&&d1===y1&&(q='<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>'+q+"</body></html>");const l0=l2?l2.createHTML(q):q;if(d1===y1)try{V2=new k1().parseFromString(l0,Qe)}catch{}if(!V2||!V2.documentElement){V2=H2.createDocument(d1,"template",null);try{V2.documentElement.innerHTML=Xe?w2:l0}catch{}}const _0=V2.body||V2.documentElement;return q&&D2&&_0.insertBefore(g2.createTextNode(D2),_0.childNodes[0]||null),d1===y1?S1.call(V2,re?"html":"body")[0]:re?V2.documentElement:_0},ie=function(q){return O0.call(q.ownerDocument||q,q,f1.SHOW_ELEMENT|f1.SHOW_COMMENT|f1.SHOW_TEXT|f1.SHOW_PROCESSING_INSTRUCTION|f1.SHOW_CDATA_SECTION,null)},Le=function(q){return q instanceof z1&&(typeof q.nodeName!="string"||typeof q.textContent!="string"||typeof q.removeChild!="function"||!(q.attributes instanceof oe)||typeof q.removeAttribute!="function"||typeof q.setAttribute!="function"||typeof q.namespaceURI!="string"||typeof q.insertBefore!="function"||typeof q.hasChildNodes!="function")},U1=function(q){return typeof H1=="function"&&q instanceof H1};function u1(B2,q,V2){Z0[B2]&&C(Z0[B2],D2=>{D2.call(J,q,V2,I1)})}const Je=function(q){let V2=null;if(u1("beforeSanitizeElements",q,null),Le(q))return w1(q),!0;const D2=A0(q.nodeName);if(u1("uponSanitizeElement",q,{tagName:D2,allowedTags:t0}),q.hasChildNodes()&&!U1(q.firstElementChild)&&B(/<[/\w]/g,q.innerHTML)&&B(/<[/\w]/g,q.textContent)||q.nodeType===c2.progressingInstruction||U3&&q.nodeType===c2.comment&&B(/<[/\w]/g,q.data))return w1(q),!0;if(!t0[D2]||R1[D2]){if(!R1[D2]&&t3(D2)&&(a0.tagNameCheck instanceof RegExp&&B(a0.tagNameCheck,D2)||a0.tagNameCheck instanceof Function&&a0.tagNameCheck(D2)))return!1;if(S9&&!be[D2]){const l0=v2(q)||q.parentNode,_0=n2(q)||q.childNodes;if(_0&&l0){const x0=_0.length;for(let q0=x0-1;q0>=0;--q0){const v1=Ie(_0[q0],!0);v1.__removalCount=(q.__removalCount||0)+1,l0.insertBefore(v1,Ue(q))}}}return w1(q),!0}return q instanceof F0&&!wt(q)||(D2==="noscript"||D2==="noembed"||D2==="noframes")&&B(/<\/no(script|embed|frames)/i,q.innerHTML)?(w1(q),!0):(Ge&&q.nodeType===c2.text&&(V2=q.textContent,C([c1,ne,c0],l0=>{V2=M(V2,l0," ")}),q.textContent!==V2&&(m(J.removed,{element:q.cloneNode()}),q.textContent=V2)),u1("afterSanitizeElements",q,null),!1)},e3=function(q,V2,D2){if(G3&&(V2==="id"||V2==="name")&&(D2 in g2||D2 in Y1))return!1;if(!(R3&&!E1[V2]&&B(ke,V2))){if(!(ye&&B(We,V2))){if(!M0[V2]||E1[V2]){if(!(t3(q)&&(a0.tagNameCheck instanceof RegExp&&B(a0.tagNameCheck,q)||a0.tagNameCheck instanceof Function&&a0.tagNameCheck(q))&&(a0.attributeNameCheck instanceof RegExp&&B(a0.attributeNameCheck,V2)||a0.attributeNameCheck instanceof Function&&a0.attributeNameCheck(V2))||V2==="is"&&a0.allowCustomizedBuiltInElements&&(a0.tagNameCheck instanceof RegExp&&B(a0.tagNameCheck,D2)||a0.tagNameCheck instanceof Function&&a0.tagNameCheck(D2))))return!1}else if(!y3[V2]){if(!B(j3,M(D2,B9,""))){if(!((V2==="src"||V2==="xlink:href"||V2==="href")&&q!=="script"&&V(D2,"data:")===0&&E9[q])){if(!(I3&&!B(H9,M(D2,B9,"")))){if(D2)return!1}}}}}}return!0},t3=function(q){return q!=="annotation-xml"&&f(q,P3)},J3=function(q){u1("beforeSanitizeAttributes",q,null);const{attributes:V2}=q;if(!V2)return;const D2={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:M0,forceKeepAttr:void 0};let l0=V2.length;for(;l0--;){const _0=V2[l0],{name:x0,namespaceURI:q0,value:v1}=_0,we=A0(x0);let z0=x0==="value"?v1:S(v1);if(D2.attrName=we,D2.attrValue=z0,D2.keepAttr=!0,D2.forceKeepAttr=void 0,u1("uponSanitizeAttribute",q,D2),z0=D2.attrValue,X3&&(we==="id"||we==="name")&&(w3(x0,q),z0=yt+z0),U3&&B(/((--!?|])>)|<\/(style|title)/i,z0)){w3(x0,q);continue}if(D2.forceKeepAttr||(w3(x0,q),!D2.keepAttr))continue;if(!Y3&&B(/\/>/i,z0)){w3(x0,q);continue}Ge&&C([c1,ne,c0],t9=>{z0=M(z0,t9," ")});const e9=A0(q.nodeName);if(e3(e9,we,z0)){if(l2&&typeof P1=="object"&&typeof P1.getAttributeType=="function"&&!q0)switch(P1.getAttributeType(e9,we)){case"TrustedHTML":{z0=l2.createHTML(z0);break}case"TrustedScriptURL":{z0=l2.createScriptURL(z0);break}}try{q0?q.setAttributeNS(q0,x0,z0):q.setAttribute(x0,z0),Le(q)?w1(q):k(J.removed)}catch{}}}u1("afterSanitizeAttributes",q,null)},vt=function B2(q){let V2=null;const D2=ie(q);for(u1("beforeSanitizeShadowDOM",q,null);V2=D2.nextNode();)u1("uponSanitizeShadowNode",V2,null),!Je(V2)&&(V2.content instanceof q2&&B2(V2.content),J3(V2));u1("afterSanitizeShadowDOM",q,null)};return J.sanitize=function(B2){let q=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},V2=null,D2=null,l0=null,_0=null;if(Xe=!B2,Xe&&(B2="<!-->"),typeof B2!="string"&&!U1(B2))if(typeof B2.toString=="function"){if(B2=B2.toString(),typeof B2!="string")throw O("dirty is not a string, aborting")}else throw O("toString is not a function");if(!J.isSupported)return B2;if(W3||L3(q),J.removed=[],typeof B2=="string"&&(k3=!1),k3){if(B2.nodeName){const v1=A0(B2.nodeName);if(!t0[v1]||R1[v1])throw O("root node is forbidden and cannot be sanitized in-place")}}else if(B2 instanceof H1)V2=le("<!---->"),D2=V2.ownerDocument.importNode(B2,!0),D2.nodeType===c2.element&&D2.nodeName==="BODY"||D2.nodeName==="HTML"?V2=D2:V2.appendChild(D2);else{if(!ge&&!Ge&&!re&&B2.indexOf("<")===-1)return l2&&f3?l2.createHTML(B2):B2;if(V2=le(B2),!V2)return ge?null:f3?w2:""}V2&&ae&&w1(V2.firstChild);const x0=ie(k3?B2:V2);for(;l0=x0.nextNode();)Je(l0)||(l0.content instanceof q2&&vt(l0.content),J3(l0));if(k3)return B2;if(ge){if(q3)for(_0=W0.call(V2.ownerDocument);V2.firstChild;)_0.appendChild(V2.firstChild);else _0=V2;return(M0.shadowroot||M0.shadowrootmode)&&(_0=fe.call(E2,_0,!0)),_0}let q0=re?V2.outerHTML:V2.innerHTML;return re&&t0["!doctype"]&&V2.ownerDocument&&V2.ownerDocument.doctype&&V2.ownerDocument.doctype.name&&B(Q,V2.ownerDocument.doctype.name)&&(q0="<!DOCTYPE "+V2.ownerDocument.doctype.name+`>
|
|
32
|
+
`+q0),Ge&&C([c1,ne,c0],v1=>{q0=M(q0,v1," ")}),l2&&f3?l2.createHTML(q0):q0},J.setConfig=function(){let B2=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};L3(B2),W3=!0},J.clearConfig=function(){I1=null,W3=!1},J.isValidAttribute=function(B2,q,V2){I1||L3({});const D2=A0(B2),l0=A0(q);return e3(D2,l0,V2)},J.addHook=function(B2,q){typeof q=="function"&&(Z0[B2]=Z0[B2]||[],m(Z0[B2],q))},J.removeHook=function(B2){if(Z0[B2])return k(Z0[B2])},J.removeHooks=function(B2){Z0[B2]&&(Z0[B2]=[])},J.removeAllHooks=function(){Z0={}},J}var A=S2();return O5=A,O5}var us=window.DOMPurify||(window.DOMPurify=o8().default||o8());const Cs=x1(us),n8=["variation","weight"],r8=Object.values(Pt),a8={};n8.forEach(t=>{r8.forEach(o=>{a8[`${t}-${o}`]={type:String}})});const hs=a8,ps=["id"],ms=["innerHTML"],z2=e.defineComponent({__name:"McTitle",props:{...hs,variation:{type:String,default:"body"},ellipsis:{type:Boolean,default:!1},tagName:{type:String,default:"div"},uppercase:{type:Boolean,default:!1},color:{type:String,default:"black"},textAlign:{type:String,default:"left"},lineHeight:{type:String,default:""},weight:{type:String,default:""},maxWidth:{type:String,default:"100%"},preLine:{type:Boolean,default:!1},nowrap:{type:Boolean,default:!1},plainText:{type:Boolean,default:!1},htmlData:{type:String,default:""}},setup(t){const o=e.useAttrs(),n=t,r=e.computed(()=>o.id),a=e.computed(()=>{const c={};return c[`mc-title--variation-${n.variation}`]=!!n.variation,n8.forEach(p=>{r8.forEach(C=>{const k=n[`${p}${e8(C)}`];c[`mc-title--${p}-${C}-${k}`]=!!k})}),c}),l=e.computed(()=>({"mc-title":!0,"mc-title--ellipsis":n.ellipsis,[`mc-title--text-align-${n.textAlign}`]:!!n.textAlign,"mc-title--pre-line":n.preLine,"mc-title--nowrap":n.nowrap,"mc-title--uppercase":n.uppercase,"mc-title--line-height":!!n.lineHeight,"mc-title--weight":!!n.weight,"mc-title--plain-text":n.plainText,...a.value})),i=e.computed(()=>{let c={};return n.color&&(c["--mc-title-color"]=X2[n.color]),n.weight&&(c["--mc-title-weight"]=Et[n.weight]),n.lineHeight&&(c["--mc-title-line-height"]=P9[n.lineHeight]),c}),d=e.computed(()=>({"max-width":n.maxWidth}));return(c,p)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(l.value),style:e.normalizeStyle(i.value),id:r.value},[e.renderSlot(c.$slots,"icon-prepend"),n.htmlData?(e.openBlock(),e.createElementBlock("div",{key:0,class:"mc-title__text",style:e.normalizeStyle(d.value),innerHTML:e.unref(Cs).sanitize(n.htmlData)},null,12,ms)):(e.openBlock(),e.createElementBlock("div",{key:1,class:"mc-title__text",style:e.normalizeStyle(d.value)},[e.renderSlot(c.$slots,"default")],4)),e.renderSlot(c.$slots,"icon-append")],14,ps))}});function ee(t){const o=e.ref(!0),n=e.computed(()=>{var a;return t===null||!(t!=null&&t.length)||!o.value?null:(a=t.join(", "))==null?void 0:a.replace(/-/gm,"‑")});return e.watch(()=>t,()=>{o.value=!1}),{is_error_visible:o,errorText:n,toggleErrorVisible:()=>{o.value=!1}}}const fs=["for"],ks={class:"mc-date-picker__inner"},ys={class:"mc-datepicker__footer-popup"},gs={class:"mc-datepicker__footer-popup-periods"},bs={key:1,class:"mc-date-picker__footer"},Ms={key:1},l8=e.defineComponent({__name:"McDatepicker",props:{modelValue:{type:[String,Array]},type:{type:String,default:y0.DatePicker},title:{type:String,default:""},helpText:{type:String,default:""},editable:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},placeholder:{type:String,default:null},name:{type:String,required:!0},lang:{type:String,default:"en"},errors:{type:Array,default:()=>[]},toIsoFormat:{type:Boolean,default:!1},placeholders:{type:Object,default:()=>({week:"Week",month:"Month",quarter:"Quarter",year:"Year",confirm:"Confirm"})},customPresets:{type:Array,default:()=>[]},range:{type:Boolean,default:!1},inline:{type:Boolean,default:!1},minDate:{type:[Date,String]},maxDate:{type:[String,Date]},disabledDates:{type:[Array,Function]},allowedDates:{type:[Array,Function]},disabledTime:{type:[Array,Function]},minWidth:{type:String,default:"240px"},hours:{type:Array,default:()=>[]},minutes:{type:Array,default:()=>[]},seconds:{type:Array,default:()=>[]},timezone:{type:String,default:p0.tz.guess()},useTimezone:{type:Boolean,default:!1},clearable:{type:Boolean,default:!0},loading:{type:Boolean,default:!1},setDefaultToday:{type:Boolean,default:!0},markers:{type:Array,default:()=>[]}},emits:["update:modelValue"],setup(t,{emit:o}){const n=e.useAttrs(),r=o,a=t,l=ee(a.errors),i=e.ref(null),d=e.ref(null),c=e.computed(()=>({"mc-date-picker--error":!!l.errorText.value,"mc-date-picker--disabled":a.disabled})),p=e.reactive({[y0.TimePicker]:{[H0.Picker]:Ve.TimePicker,[H0.Dayjs]:_e.TimePicker,[H0.Output]:xe.TimePicker},[y0.DatePicker]:{[H0.Picker]:Ve.DatePicker,[H0.Dayjs]:_e.DatePicker,[H0.Output]:xe.DatePicker},[y0.DateTimePicker]:{[H0.Picker]:Ve.DateTimePicker,[H0.Dayjs]:_e.DateTimePicker,[H0.Output]:xe.DateTimePicker},[y0.WeekPicker]:{[H0.Picker]:Ve.WeekPicker,[H0.Dayjs]:_e.WeekPicker,[H0.Output]:xe.WeekPicker},[y0.MonthPicker]:{[H0.Picker]:Ve.MonthPicker,[H0.Dayjs]:_e.MonthPicker,[H0.Output]:xe.MonthPicker},[y0.YearPicker]:{[H0.Picker]:Ve.YearPicker,[H0.Dayjs]:_e.YearPicker,[H0.Output]:xe.YearPicker}}),C=e.computed(()=>a.type||y0.DatePicker),k=e.reactive(p[C.value]),m=e.computed(()=>C.value===y0.TimePicker),y=e.computed(()=>C.value===y0.DateTimePicker),b=e.computed(()=>C.value===y0.WeekPicker),f=e.computed(()=>C.value===y0.MonthPicker),M=e.computed(()=>C.value===y0.YearPicker),V=e.computed(()=>({[y0.TimePicker]:C.value===y0.TimePicker,[y0.WeekPicker]:C.value===y0.WeekPicker,[y0.MonthPicker]:C.value===y0.MonthPicker,[y0.YearPicker]:C.value===y0.YearPicker})),S=e.computed(()=>!m.value&&!y.value&&!Z.value),x=e.computed(()=>b.value?"local":null),B=e.computed(()=>a.toIsoFormat&&!a.useTimezone?"iso":"format"),O=e.computed(()=>a.hours&&a.hours.length?{"hour-options":a.hours}:{}),_=e.computed(()=>a.minutes&&a.minutes.length?{"minute-options":a.minutes}:{}),N=e.computed(()=>a.seconds&&a.seconds.length?{"second-options":a.seconds}:{}),Z=e.computed(()=>{var P;return a.range&&(((P=a.customPresets)==null?void 0:P.length)||!!a.placeholders)&&!m.value&&!M.value&&!f.value}),Y=e.computed({get(){return u2(a.modelValue)},set(P){P||(P=a.range?[]:null);const $=w(P);l.toggleErrorVisible(),r("update:modelValue",$)}});e.onMounted(()=>{D()});const D=()=>{a.setDefaultToday&&W()},z=P=>{const[$,o2]=P;d.value&&(d.value.currentValue=p0?[p0($).toDate(),p0(o2).toDate()]:P)},W=()=>{var $;if(b.value)return;if(!(a.range?(($=Y.value)==null?void 0:$.length)&&Array.isArray(Y.value)&&Y.value.every(o2=>p0(o2).isValid()):p0(Y.value).isValid())){let o2=a.toIsoFormat?p0().toISOString():p0().format(k[H0.Output]);Y.value=a.range?u2([o2,o2]):u2(o2)}},u2=P=>{if(b.value)return P;let $=a.range?Array.isArray(P)?P:[]:[P];a.toIsoFormat||($=$.map(X=>p0(X,k.output).format(k.dayjs)));const[o2,r2]=$;return a.range?[o2,r2].filter(Boolean):o2},w=P=>{if(b.value)return P;let $=a.range?Array.isArray(P)?P.map(X=>String(X)):[]:[String(P)];a.toIsoFormat||($=$.map(X=>p0(X,k.dayjs).format(k.output)));const[o2,r2]=$.map(X=>X==="Invalid Date"?null:X);return a.range?[o2,r2].filter(Boolean):o2},T=async()=>{var $;const P=a.lang!=="ar"&&Object.keys(K9).includes(a.lang)?a.lang:"en";await(($=K9[P])==null?void 0:$.call(K9)),p0.locale(P)},H=P=>{let $=p0();const o2=i.value?p0(i.value):p0();switch(P){case"week":$=p0(o2).subtract(7,"days");break;case"month":$=p0(o2).subtract(1,"months");break;case"quarter":$=p0(o2).subtract(3,"months");break;case"year":$=p0(o2).subtract(1,"years");break}d.value.updateInternalModelValue([$.toDate(),o2.toDate()])},I=P=>{i.value=P},t2=()=>{d.value.selectDate(),d.value.closeMenu()};return e.watch(()=>a.lang,()=>{T()},{immediate:!0}),(P,$)=>(e.openBlock(),e.createElementBlock("div",{ref:"field",class:e.normalizeClass(["mc-date-picker",c.value])},[P.$slots.header||a.title?(e.openBlock(),e.createElementBlock("label",{key:0,for:t.name,class:"mc-date-picker__header"},[e.renderSlot(P.$slots,"title",{},()=>[a.title?(e.openBlock(),e.createBlock(z2,{key:0,weight:e.unref(Y0).Medium},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.title),1)]),_:1},8,["weight"])):e.createCommentVNode("",!0)])],8,fs)):e.createCommentVNode("",!0),e.createElementVNode("div",ks,[e.createElementVNode("div",{class:"mc-date-picker__input-wrapper",style:e.normalizeStyle({minWidth:t.minWidth})},[e.createVNode(e.unref(A5),e.mergeProps({modelValue:Y.value,"onUpdate:modelValue":$[4]||($[4]=o2=>Y.value=o2),ref_key:"input",ref:d,type:t.type},{...e.unref(n),...V.value,...O.value,..._.value,...N.value},{class:"mc-date-picker__date-picker",range:a.range,"multi-calendars":a.range,"month-change-on-scroll":!1,timezone:t.timezone,format:k.picker,"model-type":B.value,"auto-apply":S.value,"partial-flow":m.value||y.value,"enable-time-picker":m.value||y.value,clearable:t.clearable,inline:t.inline,locale:t.lang,markers:t.markers,"action-row":{},loading:t.loading,"week-numbers":x.value,placeholder:t.placeholder,editable:t.editable,disabled:t.disabled,"disabled-dates":t.disabledDates,"allowed-dates":t.allowedDates,"min-date":t.minDate,"max-date":t.maxDate,"disabled-times":t.disabledTime,onRangeStart:I}),e.createSlots({"input-icon":e.withCtx(()=>[e.createVNode(W2,{name:"calendar",size:"300",color:a.disabled?"outline-gray":"black"},null,8,["color"])]),"icon-calendar":e.withCtx(()=>[e.createVNode(W2,{class:"mc-date-picker__icon",name:"calendar"})]),_:2},[Z.value?{name:"action-row",fn:e.withCtx(()=>[e.createElementVNode("div",ys,[e.createElementVNode("div",gs,[t.customPresets&&t.customPresets.length?(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:0},e.renderList(t.customPresets,o2=>(e.openBlock(),e.createBlock(i0,{key:o2.title,variation:"black-link","secondary-color":"purple",onClick:r2=>z(o2.period)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(o2.title),1)]),_:2},1032,["onClick"]))),128)):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[t.placeholders.week?(e.openBlock(),e.createBlock(i0,{key:0,variation:"black-link","secondary-color":"purple",onClick:$[0]||($[0]=o2=>H("week"))},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.placeholders.week),1)]),_:1})):e.createCommentVNode("",!0),t.placeholders.month?(e.openBlock(),e.createBlock(i0,{key:1,variation:"black-link","secondary-color":"purple",onClick:$[1]||($[1]=o2=>H("month"))},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.placeholders.month),1)]),_:1})):e.createCommentVNode("",!0),t.placeholders.quarter?(e.openBlock(),e.createBlock(i0,{key:2,variation:"black-link","secondary-color":"purple",onClick:$[2]||($[2]=o2=>H("quarter"))},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.placeholders.quarter),1)]),_:1})):e.createCommentVNode("",!0),t.placeholders.year?(e.openBlock(),e.createBlock(i0,{key:3,variation:"black-link","secondary-color":"purple",onClick:$[3]||($[3]=o2=>H("year"))},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.placeholders.year),1)]),_:1})):e.createCommentVNode("",!0)],64))]),t.placeholders.confirm?(e.openBlock(),e.createBlock(i0,{key:0,variation:"purple-outline",size:e.unref(X0).Xs,onClick:t2},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.placeholders.confirm),1)]),_:1},8,["size"])):e.createCommentVNode("",!0)])]),key:"0"}:void 0,P.$slots.header?{name:"header",fn:e.withCtx(()=>[e.createElementVNode("div",null,[e.renderSlot(P.$slots,"header")])]),key:"1"}:void 0,P.$slots.sidebar?{name:"sidebar",fn:e.withCtx(()=>[e.createElementVNode("div",null,[e.renderSlot(P.$slots,"sidebar")])]),key:"2"}:void 0]),1040,["modelValue","type","range","multi-calendars","timezone","format","model-type","auto-apply","partial-flow","enable-time-picker","clearable","inline","locale","markers","loading","week-numbers","placeholder","editable","disabled","disabled-dates","allowed-dates","min-date","max-date","disabled-times"])],4)]),e.unref(l).errorText.value||a.helpText||P.$slots.bottom?(e.openBlock(),e.createElementBlock("div",bs,[e.unref(l).errorText.value?(e.openBlock(),e.createBlock(z2,{key:0,"tag-name":"div",color:"red",variation:e.unref(h0).Overline},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(l).errorText.value),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0),e.unref(l).errorText.value&&(a.helpText||P.$slots.bottom)?(e.openBlock(),e.createElementBlock("br",Ms)):e.createCommentVNode("",!0),e.renderSlot(P.$slots,"bottom",{},()=>[a.helpText?(e.openBlock(),e.createBlock(z2,{key:0,"tag-name":"div",variation:e.unref(h0).Overline},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.helpText),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0)],2))}}),Ls={key:0,class:"mc-preview__left"},ws={class:"mc-preview__center"},vs={class:"mc-preview__top"},Vs={key:0,class:"mc-preview__bottom"},_s={key:1,class:"mc-preview__right"},h3=e.defineComponent({__name:"McPreview",props:{size:{type:String,default:"m"}},setup(t){const o=t,n=e.computed(()=>({"mc-preview":!0,[`mc-preview--size-${o.size}`]:!!o.size}));return(r,a)=>(e.openBlock(),e.createElementBlock("section",{class:e.normalizeClass(n.value)},[r.$slots.left?(e.openBlock(),e.createElementBlock("div",Ls,[e.renderSlot(r.$slots,"left")])):e.createCommentVNode("",!0),e.createElementVNode("div",ws,[e.createElementVNode("div",vs,[e.renderSlot(r.$slots,"top")]),r.$slots.bottom?(e.openBlock(),e.createElementBlock("div",Vs,[e.renderSlot(r.$slots,"bottom")])):e.createCommentVNode("",!0)]),r.$slots.right?(e.openBlock(),e.createElementBlock("div",_s,[e.renderSlot(r.$slots,"right")])):e.createCommentVNode("",!0)],2))}}),xs=e.defineComponent({__name:"McDraggable",props:{variation:{type:String,default:"purple"},initial:{type:Object,default:()=>({x:0,y:0})},cardId:{type:[String,Number]},savePosition:{type:Boolean,default:!1},storageType:{type:String,default:"session"}},setup(t){const o=L6("McDraggable",{}),n=J7("McDraggable",{}),r=e.ref(null),a=U9(f=>{f()},100),l=t,i=e.computed(()=>l.cardId),d=e.computed(()=>l.storageType==="session"),c=e.computed(()=>l.storageType==="local"),p=e.computed(()=>{let f=l.initial.x||0,M=l.initial.y||0;if(l.savePosition&&!i.value&&console.warn("cardId prop required, if savePosition = true"),!i.value||!l.savePosition)return{x:f,y:M};if(d.value){const{x:V,y:S}=n.value[i.value]||{};f=V,M=S}if(c.value){const{x:V,y:S}=o.value[i.value]||{};f=V,M=S}return{x:f||0,y:M||0}}),{x:C,y:k,style:m}=K7(r,{initialValue:{x:p.value.x,y:p.value.y}}),y=e.computed(()=>({"--mc-draggable-color":X2[l.variation]})),b=()=>{i.value&&(d.value&&(n.value={...n.value,[i.value]:{x:C.value,y:k.value}}),c.value&&(o.value={...o.value,[i.value]:{x:C.value,y:k.value}}))};return e.watch(()=>m.value,()=>{l.savePosition&&a(b)}),(f,M)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"draggable_el",ref:r,class:"mc-draggable",style:e.normalizeStyle([e.unref(m),{position:"fixed"}])},[e.createElementVNode("div",{class:"mc-draggable__inner",style:e.normalizeStyle(y.value)},[e.createVNode(h3,null,{left:e.withCtx(()=>[e.renderSlot(f.$slots,"left")]),top:e.withCtx(()=>[e.renderSlot(f.$slots,"top")]),bottom:e.withCtx(()=>[e.renderSlot(f.$slots,"bottom")]),right:e.withCtx(()=>[e.renderSlot(f.$slots,"right")]),_:3})],4)],4))}}),Hs=["dir"],Bs={key:0,class:"mc-field-text__header"},Ss={class:"mc-field-checkbox__input-wrap"},Es={class:"mc-field-checkbox__name"},Ds={key:0,class:"mc-field-checkbox__name-text"},Ts={class:"mc-field-checkbox__footer"},Zs={key:1},As=e.defineComponent({__name:"McFieldCheckbox",props:{modelValue:{type:[Boolean,String,Number,Array],validator(t,o){return o.multiple?Array.isArray(t):!0}},name:{type:String,default:null},checkedValue:{type:[String,Boolean,Number],default:!0},uncheckedValue:{type:[String,Boolean,Number],default:!1},errors:{type:Array,default:null},helpText:{type:String,default:null},mainText:{type:String,default:null},title:{type:String,default:null},disabled:{type:Boolean,default:!1},multiple:{type:Boolean,default:!1},checkboxSize:{type:String,default:"250"},tabindex:{type:[String,Number]},dir:{type:String,default:_1.Ltr}},emits:["update:modelValue"],setup(t,{emit:o}){const n=o,r=e.useSlots(),a=t,l=ee(a.errors),i=e.computed(()=>a.dir===_1.Rtl),d=e.computed(()=>({"mc-field-checkbox":!0,"mc-field-checkbox--error":a.errors,"mc-field-checkbox--disabled":a.disabled,"mc-field-checkbox--empty":!a.mainText&&!r.default,"mc-field-checkbox--rtl":i.value})),c=e.computed(()=>({"--mc-field-checkbox-size":se[a.checkboxSize]})),p=e.computed(()=>a.multiple&&a.modelValue?a.modelValue.includes(a.checkedValue):a.modelValue===a.checkedValue),C=e.computed(()=>({disabled:a.disabled,name:a.name,checked:p.value,tabindex:a.tabindex,type:"checkbox",class:"mc-field-checkbox__input"})),k=m=>{l.toggleErrorVisible();const y=a.multiple&&a.modelValue?a.modelValue.includes(a.checkedValue)?a.modelValue.filter(b=>b!==a.checkedValue):[...a.modelValue,a.checkedValue]:m.target&&m.target.checked?a.checkedValue:a.uncheckedValue;n("update:modelValue",y)};return(m,y)=>(e.openBlock(),e.createElementBlock("div",{dir:a.dir,class:e.normalizeClass(d.value),style:e.normalizeStyle(c.value)},[a.title||m.$slots.header?(e.openBlock(),e.createElementBlock("div",Bs,[e.renderSlot(m.$slots,"header",{},()=>[e.createVNode(z2,{weight:e.unref(Y0).Medium},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.title),1)]),_:1},8,["weight"])])])):e.createCommentVNode("",!0),e.createElementVNode("div",Ss,[e.createElementVNode("label",Es,[e.createVNode(W2,{class:"mc-field-checkbox__icon",name:p.value?"checkbox--checked":"checkbox",color:p.value?"purple":"gray",size:a.checkboxSize},null,8,["name","color","size"]),e.createElementVNode("input",e.mergeProps(C.value,{onChange:k}),null,16),a.mainText||m.$slots.default?(e.openBlock(),e.createElementBlock("span",Ds,[e.renderSlot(m.$slots,"default",{},()=>[e.createVNode(z2,{"tag-name":"div"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.mainText),1)]),_:1})])])):e.createCommentVNode("",!0)]),e.createElementVNode("div",Ts,[e.unref(l).errorText.value?(e.openBlock(),e.createBlock(z2,{key:0,"tag-name":"div",color:"red",variation:e.unref(h0).Overline,"max-width":"100%"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(l).errorText.value),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0),e.unref(l).errorText.value?(e.openBlock(),e.createElementBlock("br",Zs)):e.createCommentVNode("",!0),e.renderSlot(m.$slots,"footer",{},()=>[a.helpText?(e.openBlock(),e.createBlock(z2,{key:0,"tag-name":"div",variation:e.unref(h0).Overline,color:"gray","max-width":"100%"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.helpText),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0)])])])],14,Hs))}}),$s=["dir"],Ns={class:"mc-field-radio-button__icon_wrapper"},Fs={key:0,class:"mc-field-radio-button__text"},Os={key:1},i8=e.defineComponent({__name:"McFieldRadio",props:{modelValue:{default:null},value:{default:null},name:{type:String,required:!0},label:{type:[String,Number],default:null},helpText:{type:String,default:null},errors:{type:Array,default:null},disabled:{type:Boolean,default:!1},tabindex:{type:[String,Number]},variation:{type:String,default:"circle"},color:{type:String,default:"purple"},iconSize:{type:String,default:"250"},dir:{type:String,default:_1.Ltr}},emits:["update:modelValue"],setup(t,{emit:o}){const n=e.useSlots(),r=o,a=t,l=ee(a.errors),i=e.computed(()=>({"mc-field-radio-button--disabled":a.disabled,"mc-field-radio-button--empty":!a.label&&!n.default,"mc-field-radio-button--rtl":d.value})),d=e.computed(()=>a.dir===_1.Rtl),c=e.computed(()=>{switch(a.variation){case"checkmark":return"check_circle_solid";default:return"radio--checked"}}),p=e.computed(()=>{switch(!0){case a.disabled:return"outline-gray";case C.value.checked:return a.color;default:return"gray"}}),C=e.computed(()=>({disabled:a.disabled,value:a.modelValue,name:a.name,checked:a.value&&a.value===a.modelValue,tabindex:a.tabindex,class:"mc-field-radio-button__input",type:"radio"}));e.watch(()=>a.modelValue,()=>{l.toggleErrorVisible()});const k=()=>{r("update:modelValue",a.value)};return(m,y)=>(e.openBlock(),e.createElementBlock("label",{dir:a.dir,class:e.normalizeClass(["mc-field-radio-button",i.value])},[e.createElementVNode("input",e.mergeProps({checked:""},C.value,{onChange:k}),null,16),e.createElementVNode("span",Ns,[e.createVNode(W2,{name:C.value.checked?c.value:"circle",color:p.value,size:a.iconSize,class:"mc-field-radio-button__icon"},null,8,["name","color","size"])]),t.label||m.$slots.default?(e.openBlock(),e.createElementBlock("span",Fs,[e.renderSlot(m.$slots,"default",{},()=>[e.createVNode(z2,null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.label),1)]),_:1})]),e.unref(l).errorText.value?(e.openBlock(),e.createBlock(z2,{key:0,"tag-name":"div",color:"red",variation:e.unref(h0).Overline,"max-width":"100%"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(l).errorText.value),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0),e.unref(l).errorText.value?(e.openBlock(),e.createElementBlock("br",Os)):e.createCommentVNode("",!0),e.renderSlot(m.$slots,"footer",{},()=>[a.helpText?(e.openBlock(),e.createBlock(z2,{key:0,"tag-name":"div",variation:e.unref(h0).Overline,color:"gray","max-width":"100%"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.helpText),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0)],10,$s))}}),zs=["dir"],Ps={class:"mc-field-radio-group__header"},js={class:"mc-field-radio-group__buttons"},Rs={key:0,class:"mc-field-radio-group__footer"},Is={key:1},Ys=e.defineComponent({__name:"McFieldRadioGroup",props:{modelValue:[String,Number],options:{type:[Array],default:()=>[]},title:{type:String,default:""},helpText:{type:String,default:""},errors:{type:Array,default:()=>[]},name:{type:String,required:!0},disabled:{type:Boolean,default:!1},radioClassName:{type:String,default:""},direction:{type:String,default:Ot.Column},dir:{type:String,default:_1.Ltr},variation:{type:String,default:"circle"}},emits:["update:modelValue","change"],setup(t,{emit:o}){const n=o,r=t,a=ee(r.errors),l=e.computed(()=>r.options.length?r.options.map((c,p)=>{const C=typeof c=="object"?c:{label:c,value:c};return{id:Date.now()+p,...C,disabled:r.disabled||C.disabled,value:C.value,modelValue:r.modelValue,class:r.radioClassName,dir:r.dir,variation:r.variation}}):[]),i=e.computed(()=>({[`mc-field-radio-group--direction-${r.direction}`]:!!r.direction})),d=c=>{a.toggleErrorVisible(),n("update:modelValue",c),n("change",c)};return(c,p)=>(e.openBlock(),e.createElementBlock("div",{dir:r.dir,class:e.normalizeClass(["mc-field-radio-group",i.value])},[e.createElementVNode("div",Ps,[e.renderSlot(c.$slots,"header",{},()=>[r.title?(e.openBlock(),e.createBlock(z2,{key:0},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(r.title),1)]),_:1})):e.createCommentVNode("",!0)])]),e.createElementVNode("div",js,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.value,C=>(e.openBlock(),e.createBlock(i8,e.mergeProps({key:C.id,ref_for:!0},C,{name:r.name,"onUpdate:modelValue":d}),null,16,["name"]))),128))]),e.unref(a).errorText.value||r.helpText||c.$slots.footer?(e.openBlock(),e.createElementBlock("div",Rs,[e.unref(a).errorText.value?(e.openBlock(),e.createBlock(z2,{key:0,"tag-name":"div",color:"red",variation:e.unref(h0).Overline,"max-width":"100%"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(a).errorText.value),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0),e.unref(a).errorText.value?(e.openBlock(),e.createElementBlock("br",Is)):e.createCommentVNode("",!0),e.renderSlot(c.$slots,"footer",{},()=>[r.helpText?(e.openBlock(),e.createBlock(z2,{key:0,"tag-name":"div",variation:e.unref(h0).Overline,color:"gray","max-width":"100%"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(r.helpText),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0)],10,zs))}});(function(){try{if(typeof document<"u"){var t=document.createElement("style");t.appendChild(document.createTextNode('.vue-slider-dot{position:absolute;transition:all 0s;z-index:5}.vue-slider-dot:focus{outline:none}.vue-slider-dot-tooltip{position:absolute;visibility:hidden}.vue-slider-dot-hover:hover .vue-slider-dot-tooltip,.vue-slider-dot-tooltip-show{visibility:visible}.vue-slider-dot-tooltip-top{top:-10px;left:50%;transform:translate(-50%,-100%)}.vue-slider-dot-tooltip-bottom{bottom:-10px;left:50%;transform:translate(-50%,100%)}.vue-slider-dot-tooltip-left{left:-10px;top:50%;transform:translate(-100%,-50%)}.vue-slider-dot-tooltip-right{right:-10px;top:50%;transform:translate(100%,-50%)}.vue-slider-marks{position:relative;width:100%;height:100%}.vue-slider-mark{position:absolute;z-index:1}.vue-slider-ltr .vue-slider-mark,.vue-slider-rtl .vue-slider-mark{width:0;height:100%;top:50%}.vue-slider-ltr .vue-slider-mark-step,.vue-slider-rtl .vue-slider-mark-step{top:0}.vue-slider-ltr .vue-slider-mark-label,.vue-slider-rtl .vue-slider-mark-label{top:100%;margin-top:10px}.vue-slider-ltr .vue-slider-mark{transform:translate(-50%,-50%)}.vue-slider-ltr .vue-slider-mark-step{left:0}.vue-slider-ltr .vue-slider-mark-label{left:50%;transform:translate(-50%)}.vue-slider-rtl .vue-slider-mark{transform:translate(50%,-50%)}.vue-slider-rtl .vue-slider-mark-step{right:0}.vue-slider-rtl .vue-slider-mark-label{right:50%;transform:translate(50%)}.vue-slider-ttb .vue-slider-mark,.vue-slider-btt .vue-slider-mark{width:100%;height:0;left:50%}.vue-slider-ttb .vue-slider-mark-step,.vue-slider-btt .vue-slider-mark-step{left:0}.vue-slider-ttb .vue-slider-mark-label,.vue-slider-btt .vue-slider-mark-label{left:100%;margin-left:10px}.vue-slider-btt .vue-slider-mark{transform:translate(-50%,50%)}.vue-slider-btt .vue-slider-mark-step{top:0}.vue-slider-btt .vue-slider-mark-label{top:50%;transform:translateY(-50%)}.vue-slider-ttb .vue-slider-mark{transform:translate(-50%,-50%)}.vue-slider-ttb .vue-slider-mark-step{bottom:0}.vue-slider-ttb .vue-slider-mark-label{bottom:50%;transform:translateY(50%)}.vue-slider-mark-step,.vue-slider-mark-label{position:absolute}.vue-slider-disabled{opacity:.5;cursor:not-allowed}.vue-slider-rail{background-color:#ccc;border-radius:15px}.vue-slider-process{background-color:#3498db;border-radius:15px}.vue-slider-mark{z-index:4}.vue-slider-mark:first-child .vue-slider-mark-step,.vue-slider-mark:last-child .vue-slider-mark-step{display:none}.vue-slider-mark-step{width:100%;height:100%;border-radius:50%;background-color:#00000029}.vue-slider-mark-label{font-size:14px;white-space:nowrap}.vue-slider-dot-handle{cursor:pointer;width:100%;height:100%;border-radius:50%;background-color:#fff;box-sizing:border-box;box-shadow:.5px .5px 2px 1px #00000052}.vue-slider-dot-handle-focus{box-shadow:0 0 1px 2px #3498db5c}.vue-slider-dot-handle-disabled{cursor:not-allowed;background-color:#ccc}.vue-slider-dot-tooltip-inner{font-size:14px;white-space:nowrap;padding:2px 5px;min-width:20px;text-align:center;color:#fff;border-radius:5px;border-color:#3498db;background-color:#3498db;box-sizing:content-box}.vue-slider-dot-tooltip-inner:after{content:"";position:absolute}.vue-slider-dot-tooltip-inner-top:after{top:100%;left:50%;transform:translate(-50%);height:0;width:0;border-color:transparent;border-style:solid;border-width:5px;border-top-color:inherit}.vue-slider-dot-tooltip-inner-bottom:after{bottom:100%;left:50%;transform:translate(-50%);height:0;width:0;border-color:transparent;border-style:solid;border-width:5px;border-bottom-color:inherit}.vue-slider-dot-tooltip-inner-left:after{left:100%;top:50%;transform:translateY(-50%);height:0;width:0;border-color:transparent;border-style:solid;border-width:5px;border-left-color:inherit}.vue-slider-dot-tooltip-inner-right:after{right:100%;top:50%;transform:translateY(-50%);height:0;width:0;border-color:transparent;border-style:solid;border-width:5px;border-right-color:inherit}.vue-slider-dot-tooltip-wrapper{opacity:0;transition:all .3s}.vue-slider-dot-tooltip-wrapper-show{opacity:1}.vue-slider{position:relative;box-sizing:content-box;-webkit-user-select:none;user-select:none;display:block;-webkit-tap-highlight-color:rgba(0,0,0,0)}.vue-slider-rail{position:relative;width:100%;height:100%;transition-property:width,height,left,right,top,bottom}.vue-slider-process{position:absolute;z-index:1}')),document.head.appendChild(t)}}catch(o){console.error("vite-plugin-css-injected-by-js",o)}})();var Us=Object.defineProperty,Ws=(t,o,n)=>o in t?Us(t,o,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[o]=n,T0=(t,o,n)=>(Ws(t,typeof o!="symbol"?o+"":o,n),n);const z5=(t,o)=>{const n=t.__vccOpts||t;for(const[r,a]of o)n[r]=a;return n},qs={emits:["drag-start"],props:{value:{type:[Number,String],default:0},tooltip:{type:String,required:!0},dotStyle:{type:Array,default:()=>({})},tooltipStyle:{type:Array,default:()=>({})},tooltipPlacement:{type:String,required:!0},tooltipFormatter:{type:[String,Array,Object,Function],default:void 0},focus:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},computed:{dotClasses(){return["vue-slider-dot",{"vue-slider-dot-hover":this.tooltip==="hover"||this.tooltip==="active","vue-slider-dot-disabled":this.disabled,"vue-slider-dot-focus":this.focus}]},handleClasses(){return["vue-slider-dot-handle",{"vue-slider-dot-handle-disabled":this.disabled,"vue-slider-dot-handle-focus":this.focus}]},tooltipClasses(){return["vue-slider-dot-tooltip",[`vue-slider-dot-tooltip-${this.tooltipPlacement}`],{"vue-slider-dot-tooltip-show":this.showTooltip}]},tooltipInnerClasses(){return["vue-slider-dot-tooltip-inner",[`vue-slider-dot-tooltip-inner-${this.tooltipPlacement}`],{"vue-slider-dot-tooltip-inner-disabled":this.disabled,"vue-slider-dot-tooltip-inner-focus":this.focus}]},showTooltip(){switch(this.tooltip){case"always":return!0;case"none":return!1;case"focus":case"active":return!!this.focus;default:return!1}},tooltipValue(){return this.tooltipFormatter?typeof this.tooltipFormatter=="string"?this.tooltipFormatter.replace(/\{value\}/,String(this.value)):this.tooltipFormatter(this.value):this.value}},methods:{dragStart(t){if(this.disabled)return!1;this.$emit("drag-start")}}},Gs=["aria-valuetext"],Xs={class:"vue-slider-dot-tooltip-text"};function Ks(t,o,n,r,a,l){return e.openBlock(),e.createElementBlock("div",{ref:"dot",class:e.normalizeClass(l.dotClasses),"aria-valuetext":l.tooltipValue,onMousedown:o[0]||(o[0]=(...i)=>l.dragStart&&l.dragStart(...i)),onTouchstartPassive:o[1]||(o[1]=(...i)=>l.dragStart&&l.dragStart(...i))},[e.renderSlot(t.$slots,"dot",{},()=>[e.createElementVNode("div",{class:e.normalizeClass(l.handleClasses),style:e.normalizeStyle(n.dotStyle)},null,6)]),n.tooltip!=="none"?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(l.tooltipClasses)},[e.renderSlot(t.$slots,"tooltip",{},()=>[e.createElementVNode("div",{class:e.normalizeClass(l.tooltipInnerClasses),style:e.normalizeStyle(n.tooltipStyle)},[e.createElementVNode("span",Xs,e.toDisplayString(l.tooltipValue),1)],6)])],2)):e.createCommentVNode("",!0)],42,Gs)}const s8=z5(qs,[["render",Ks]]),Qs={props:{mark:{type:Object,required:!0},hideLabel:{type:Boolean,default:!1},stepStyle:{type:Object,default:void 0},stepActiveStyle:{type:Object,default:void 0},labelStyle:{type:Object,default:void 0},labelActiveStyle:{type:Object,default:void 0}},computed:{marksClasses(){return["vue-slider-mark",{"vue-slider-mark-active":this.mark.active}]},stepClasses(){return["vue-slider-mark-step",{"vue-slider-mark-step-active":this.mark.active}]},labelClasses(){return["vue-slider-mark-label",{"vue-slider-mark-label-active":this.mark.active}]}},methods:{labelClickHandle(t){t.stopPropagation(),this.$emit("pressLabel",this.mark.pos)}}};function Js(t,o,n,r,a,l){return e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(l.marksClasses)},[e.renderSlot(t.$slots,"step",{},()=>[e.createElementVNode("div",{class:e.normalizeClass(l.stepClasses),style:e.normalizeStyle([n.stepStyle,n.mark.style,n.mark.active?n.stepActiveStyle:null,n.mark.active?n.mark.activeStyle:null])},null,6)]),n.hideLabel?e.createCommentVNode("",!0):e.renderSlot(t.$slots,"label",{key:0},()=>[e.createElementVNode("div",{class:e.normalizeClass(l.labelClasses),style:e.normalizeStyle([n.labelStyle,n.mark.labelStyle,n.mark.active?n.labelActiveStyle:null,n.mark.active?n.mark.labelActiveStyle:null]),onClick:o[0]||(o[0]=(...i)=>l.labelClickHandle&&l.labelClickHandle(...i))},e.toDisplayString(n.mark.label),7)])],2)}const c8=z5(Qs,[["render",Js]]),w9=t=>typeof t=="number"?`${t}px`:t,ec=t=>{const o=document.documentElement,n=document.body,r=t.getBoundingClientRect();return{y:r.top+(window.pageYOffset||o.scrollTop)-(o.clientTop||n.clientTop||0),x:r.left+(window.pageXOffset||o.scrollLeft)-(o.clientLeft||n.clientLeft||0)}},tc=(t,o,n)=>{const r="targetTouches"in t?t.targetTouches[0]:t,a=ec(o),l={x:r.pageX-a.x,y:r.pageY-a.y};return{x:n?o.offsetWidth-l.x:l.x,y:n?o.offsetHeight-l.y:l.y}},oc=(t,o)=>{if(o.hook){const n=o.hook(t);if(typeof n=="function")return n;if(!n)return null}switch(t.keyCode){case 38:return n=>o.direction==="ttb"?n-1:n+1;case 39:return n=>o.direction==="rtl"?n-1:n+1;case 40:return n=>o.direction==="ttb"?n+1:n-1;case 37:return n=>o.direction==="rtl"?n+1:n-1;case 35:return()=>o.max;case 36:return()=>o.min;case 33:return n=>n+10;case 34:return n=>n-10;default:return null}};class he{constructor(o){T0(this,"num"),this.num=o}decimal(o,n){const r=this.num,a=this.getDecimalLen(r),l=this.getDecimalLen(o);let i=0;switch(n){case"+":i=this.getExponent(a,l),this.num=(this.safeRoundUp(r,i)+this.safeRoundUp(o,i))/i;break;case"-":i=this.getExponent(a,l),this.num=(this.safeRoundUp(r,i)-this.safeRoundUp(o,i))/i;break;case"*":this.num=this.safeRoundUp(this.safeRoundUp(r,this.getExponent(a)),this.safeRoundUp(o,this.getExponent(l)))/this.getExponent(a+l);break;case"/":i=this.getExponent(a,l),this.num=this.safeRoundUp(r,i)/this.safeRoundUp(o,i);break;case"%":i=this.getExponent(a,l),this.num=this.safeRoundUp(r,i)%this.safeRoundUp(o,i)/i;break}return this}plus(o){return this.decimal(o,"+")}minus(o){return this.decimal(o,"-")}multiply(o){return this.decimal(o,"*")}divide(o){return this.decimal(o,"/")}remainder(o){return this.decimal(o,"%")}toNumber(){return this.num}getDecimalLen(o){const n=`${o}`.split("e");return(`${n[0]}`.split(".")[1]||"").length-(n[1]?+n[1]:0)}getExponent(o,n){return Math.pow(10,n!==void 0?Math.max(o,n):o)}safeRoundUp(o,n){return Math.round(o*n)}}const nc={1:'The type of the "value" is illegal',2:'The prop "interval" is invalid, "(max - min)" must be divisible by "interval"',3:'The "value" must be greater than or equal to the "min".',4:'The "value" must be less than or equal to the "max".',5:'When "order" is false, the parameters "minRange", "maxRange", "fixed", "enabled" are invalid.'};class rc{constructor(o){T0(this,"dotsPos",[]),T0(this,"dotsValue",[]),T0(this,"data"),T0(this,"enableCross"),T0(this,"fixed"),T0(this,"max"),T0(this,"min"),T0(this,"interval"),T0(this,"minRange"),T0(this,"maxRange"),T0(this,"order"),T0(this,"marks"),T0(this,"included"),T0(this,"process"),T0(this,"adsorb"),T0(this,"dotOptions"),T0(this,"onError"),T0(this,"cacheRangeDir",{}),this.data=o.data,this.max=o.max,this.min=o.min,this.interval=o.interval,this.order=o.order,this.marks=o.marks,this.included=o.included,this.process=o.process,this.adsorb=o.adsorb,this.dotOptions=o.dotOptions,this.onError=o.onError,this.order?(this.minRange=o.minRange||0,this.maxRange=o.maxRange||0,this.enableCross=o.enableCross,this.fixed=o.fixed):((o.minRange||o.maxRange||!o.enableCross||o.fixed)&&this.emitError(5),this.minRange=0,this.maxRange=0,this.enableCross=!0,this.fixed=!1),this.setValue(o.value)}setValue(o){this.setDotsValue(Array.isArray(o)?this.order?[...o].sort((n,r)=>this.getIndexByValue(n)-this.getIndexByValue(r)):[...o]:[o],!0)}setDotsValue(o,n){this.dotsValue=o,n&&this.syncDotsPos()}setDotsPos(o){const n=this.order?[...o].sort((r,a)=>r-a):o;this.dotsPos=n,this.setDotsValue(n.map(r=>this.getValueByPos(r)),this.adsorb)}getValueByPos(o){let n=this.parsePos(o);if(this.included){let r=100;this.markList.forEach(a=>{const l=Math.abs(a.pos-o);l<r&&(r=l,n=a.value)})}return n}syncDotsPos(){this.dotsPos=this.dotsValue.map(o=>this.parseValue(o))}get markList(){if(!this.marks)return[];const o=(n,r)=>{const a=this.parseValue(n);return{pos:a,value:n,label:n,active:this.isActiveByPos(a),...r}};return this.marks===!0?this.getValues().map(n=>o(n)):Object.prototype.toString.call(this.marks)==="[object Object]"?Object.keys(this.marks).sort((n,r)=>+n-+r).map(n=>{const r=this.marks[n];return o(n,typeof r!="string"?r:{label:r})}):Array.isArray(this.marks)?this.marks.map(n=>o(n)):typeof this.marks=="function"?this.getValues().map(n=>({value:n,result:this.marks(n)})).filter(({result:n})=>!!n).map(({value:n,result:r})=>o(n,r)):[]}getRecentDot(o){const n=this.dotsPos.filter((r,a)=>!(this.getDotOption(a)&&this.getDotOption(a).disabled)).map(r=>Math.abs(r-o));return n.indexOf(Math.min(...n))}getIndexByValue(o){return this.data?this.data.indexOf(o):new he(+o).minus(this.min).divide(this.interval).toNumber()}getValueByIndex(o){return o<0?o=0:o>this.total&&(o=this.total),this.data?this.data[o]:new he(o).multiply(this.interval).plus(this.min).toNumber()}setDotPos(o,n){o=this.getValidPos(o,n).pos;const r=o-this.dotsPos[n];if(!r)return;let a=new Array(this.dotsPos.length);this.fixed?a=this.getFixedChangePosArr(r,n):this.minRange||this.maxRange?a=this.getLimitRangeChangePosArr(o,r,n):a[n]=r,this.setDotsPos(this.dotsPos.map((l,i)=>l+(a[i]||0)))}getFixedChangePosArr(o,n){return this.dotsPos.forEach((r,a)=>{if(a!==n){const{pos:l,inRange:i}=this.getValidPos(r+o,a);i||(o=Math.min(Math.abs(l-r),Math.abs(o))*(o<0?-1:1))}}),this.dotsPos.map(r=>o)}getLimitRangeChangePosArr(o,n,r){const a=[{index:r,changePos:n}],l=n;return[this.minRange,this.maxRange].forEach((i,d)=>{if(!i)return!1;const c=d===0,p=n>0;let C=0;c?C=p?1:-1:C=p?-1:1;const k=(f,M)=>{const V=Math.abs(f-M);return c?V<this.minRangeDir:V>this.maxRangeDir};let m=r+C,y=this.dotsPos[m],b=o;for(;this.isPos(y)&&k(y,b);){const{pos:f}=this.getValidPos(y+l,m);a.push({index:m,changePos:f-y}),m=m+C,b=f,y=this.dotsPos[m]}}),this.dotsPos.map((i,d)=>{const c=a.filter(p=>p.index===d);return c.length?c[0].changePos:0})}isPos(o){return typeof o=="number"}getValidPos(o,n){const r=this.valuePosRange[n];let a=!0;return o<r[0]?(o=r[0],a=!1):o>r[1]&&(o=r[1],a=!1),{pos:o,inRange:a}}parseValue(o){if(this.data)o=this.data.indexOf(o);else if(typeof o=="number"||typeof o=="string"){if(o=+o,o<this.min)return this.emitError(3),0;if(o>this.max)return this.emitError(4),0;if(typeof o!="number"||o!==o)return this.emitError(1),0;o=new he(o).minus(this.min).divide(this.interval).toNumber()}const n=new he(o).multiply(this.gap).toNumber();return n<0?0:n>100?100:n}parsePos(o){const n=Math.round(o/this.gap);return this.getValueByIndex(n)}isActiveByPos(o){return this.processArray.some(([n,r])=>o>=n&&o<=r)}getValues(){if(this.data)return this.data;{const o=[];for(let n=0;n<=this.total;n++)o.push(new he(n).multiply(this.interval).plus(this.min).toNumber());return o}}getRangeDir(o){return o?new he(o).divide(new he(this.data?this.data.length-1:this.max).minus(this.data?0:this.min).toNumber()).multiply(100).toNumber():100}emitError(o){this.onError&&this.onError(o,nc[o])}get processArray(){if(this.process){if(typeof this.process=="function")return this.process(this.dotsPos);if(this.dotsPos.length===1)return[[0,this.dotsPos[0]]];if(this.dotsPos.length>1)return[[Math.min(...this.dotsPos),Math.max(...this.dotsPos)]]}return[]}get total(){let o=0;return this.data?o=this.data.length-1:o=new he(this.max).minus(this.min).divide(this.interval).toNumber(),o-Math.floor(o)!==0?(this.emitError(2),0):o}get gap(){return 100/this.total}get minRangeDir(){return this.cacheRangeDir[this.minRange]?this.cacheRangeDir[this.minRange]:this.cacheRangeDir[this.minRange]=this.getRangeDir(this.minRange)}get maxRangeDir(){return this.cacheRangeDir[this.maxRange]?this.cacheRangeDir[this.maxRange]:this.cacheRangeDir[this.maxRange]=this.getRangeDir(this.maxRange)}getDotOption(o){return Array.isArray(this.dotOptions)?this.dotOptions[o]:this.dotOptions}getDotRange(o,n,r){if(!this.dotOptions)return r;const a=this.getDotOption(o);return a&&a[n]!==void 0?this.parseValue(a[n]):r}get valuePosRange(){const o=this.dotsPos,n=[];return o.forEach((r,a)=>{n.push([Math.max(this.minRange?this.minRangeDir*a:0,this.enableCross?0:o[a-1]||0,this.getDotRange(a,"min",0)),Math.min(this.minRange?100-this.minRangeDir*(o.length-1-a):100,this.enableCross?100:o[a+1]||100,this.getDotRange(a,"max",100))])}),n}get dotsIndex(){return this.dotsValue.map(o=>this.getIndexByValue(o))}}class ac{constructor(o){T0(this,"map"),T0(this,"states",0),this.map=o}add(o){this.states|=o}delete(o){this.states&=~o}toggle(o){this.has(o)?this.delete(o):this.add(o)}has(o){return!!(this.states&o)}}const P5=4,U0={None:0,Drag:2,Focus:4},lc={emits:["update:modelValue","change","drag-start","drag-end","dragging","error"],components:{VueSliderDot:s8,VueSliderMark:c8},props:{modelValue:{type:[Number,String,Array],default:0},silent:{type:Boolean,default:!1},direction:{type:String,default:"ltr",validator:t=>["ltr","rtl","ttb","btt"].indexOf(t)>-1},width:{type:[Number,String],default:void 0},height:{type:[Number,String],default:void 0},dotSize:{type:[Array,Number],default:14},contained:{type:Boolean,default:!1},min:{type:Number,default:0},max:{type:Number,default:100},interval:{type:Number,default:1},disabled:{type:Boolean,default:!1},clickable:{type:Boolean,default:!0},dragOnClick:{type:Boolean,default:!0},duration:{type:Number,default:.5},data:{type:[Object,Array],default:void 0},dataValue:{type:String,default:"value"},dataLabel:{type:String,default:"label"},lazy:{type:Boolean,default:!1},tooltip:{type:String,default:"active",validator:t=>["none","always","focus","hover","active"].indexOf(t)>-1},tooltipPlacement:{type:[String,Array],default:void 0,validator:t=>(Array.isArray(t)?t:[t]).every(o=>["top","right","bottom","left"].indexOf(o)>-1)},tooltipFormatter:{type:[String,Array,Function],default:""},useKeyboard:{type:Boolean,default:!0},keydownHook:{type:[Boolean,Function],default:void 0},enableCross:{type:Boolean,default:!0},fixed:{type:Boolean,default:!1},order:{type:Boolean,default:!0},minRange:{type:Number,default:void 0},maxRange:{type:Number,default:void 0},marks:{type:[Boolean,Object,Array,Function],default:!1},process:{type:[Boolean,Function],default:!0},zoom:{type:[Number],default:void 0},included:{type:[Boolean],default:!1},adsorb:{type:[Boolean],default:!1},hideLabel:{type:[Boolean],default:!1},dotOptions:{type:Object,default:void 0},dotAttrs:{type:Object,default:void 0},railStyle:{type:Object,default:null},processStyle:{type:Object,default:null},dotStyle:{type:Object,default:null},tooltipStyle:{type:Object,default:null},stepStyle:{type:Object,default:null},stepActiveStyle:{type:Object,default:null},labelStyle:{type:Object,default:null},labelActiveStyle:{type:Object,default:null}},data(){return{control:null,states:new ac(U0),scale:1,focusDotIndex:0}},computed:{tailSize(){return w9((this.isHorizontal?this.height:this.width)||P5)},containerClasses(){return["vue-slider",[`vue-slider-${this.direction}`],{"vue-slider-disabled":this.disabled}]},containerStyles(){const[t,o]=Array.isArray(this.dotSize)?this.dotSize:[this.dotSize,this.dotSize],n=this.width?w9(this.width):this.isHorizontal?"auto":w9(P5),r=this.height?w9(this.height):this.isHorizontal?w9(P5):"auto";return{padding:this.contained?`${o/2}px ${t/2}px`:this.isHorizontal?`${o/2}px 0`:`0 ${t/2}px`,width:n,height:r}},processArray(){return this.control.processArray.map(([t,o,n],r)=>{t>o&&([t,o]=[o,t]);const a=this.isHorizontal?"width":"height";return{start:t,end:o,index:r,style:{[this.isHorizontal?"height":"width"]:"100%",[this.isHorizontal?"top":"left"]:0,[this.mainDirection]:`${t}%`,[a]:`${o-t}%`,transitionProperty:`${a},${this.mainDirection}`,transitionDuration:`${this.animateTime}s`,...this.processStyle,...n}}})},dotBaseStyle(){const[t,o]=Array.isArray(this.dotSize)?this.dotSize:[this.dotSize,this.dotSize];let n;return this.isHorizontal?n={transform:`translate(${this.isReverse?"50%":"-50%"}, -50%)`,"-WebkitTransform":`translate(${this.isReverse?"50%":"-50%"}, -50%)`,top:"50%",[this.direction==="ltr"?"left":"right"]:"0"}:n={transform:`translate(-50%, ${this.isReverse?"50%":"-50%"})`,"-WebkitTransform":`translate(-50%, ${this.isReverse?"50%":"-50%"})`,left:"50%",[this.direction==="btt"?"bottom":"top"]:"0"},{width:`${t}px`,height:`${o}px`,...n}},mainDirection(){switch(this.direction){case"ltr":return"left";case"rtl":return"right";case"btt":return"bottom";case"ttb":return"top"}},isHorizontal(){return this.direction==="ltr"||this.direction==="rtl"},isReverse(){return this.direction==="rtl"||this.direction==="btt"},tooltipDirections(){const t=this.tooltipPlacement||(this.isHorizontal?"top":"left");return Array.isArray(t)?t:this.dots.map(()=>t)},dots(){return this.control.dotsPos.map((t,o)=>({pos:t,index:o,value:this.control.dotsValue[o],focus:this.states.has(U0.Focus)&&this.focusDotIndex===o,disabled:this.disabled,style:this.dotStyle,...(Array.isArray(this.dotOptions)?this.dotOptions[o]:this.dotOptions)||{}}))},animateTime(){return this.states.has(U0.Drag)?0:this.duration},canSort(){return this.order&&!this.minRange&&!this.maxRange&&!this.fixed&&this.enableCross},sliderData(){return this.isObjectArrayData(this.data)?this.data.map(t=>t[this.dataValue]):this.isObjectData(this.data)?Object.keys(this.data):this.data},sliderMarks(){if(this.marks)return this.marks;if(this.isObjectArrayData(this.data))return t=>{const o={label:t};return this.data.some(n=>n[this.dataValue]===t?(o.label=n[this.dataLabel],!0):!1),o};if(this.isObjectData(this.data))return this.data},sliderTooltipFormatter(){if(this.tooltipFormatter)return this.tooltipFormatter;if(this.isObjectArrayData(this.data))return t=>{let o=""+t;return this.data.some(n=>n[this.dataValue]===t?(o=n[this.dataLabel],!0):!1),o};if(this.isObjectData(this.data)){const t=this.data;return o=>t[o]}},isNotSync(){const t=this.control.dotsValue;return Array.isArray(this.modelValue)?this.modelValue.length!==t.length||this.modelValue.some((o,n)=>o!==t[n]):this.modelValue!==t[0]},dragRange(){const t=this.dots[this.focusDotIndex-1],o=this.dots[this.focusDotIndex+1];return[t?t.pos:-1/0,o?o.pos:1/0]}},created(){this.initControl()},mounted(){this.bindEvent()},beforeUnmount(){this.unbindEvent()},methods:{isObjectData(t){return!!t&&Object.prototype.toString.call(t)==="[object Object]"},isObjectArrayData(t){return!!t&&Array.isArray(t)&&t.length>0&&typeof t[0]=="object"},bindEvent(){document.addEventListener("touchmove",this.dragMove,{passive:!1}),document.addEventListener("touchend",this.dragEnd,{passive:!1}),document.addEventListener("mousedown",this.blurHandle),document.addEventListener("mousemove",this.dragMove,{passive:!1}),document.addEventListener("mouseup",this.dragEnd),document.addEventListener("mouseleave",this.dragEnd),document.addEventListener("keydown",this.keydownHandle)},unbindEvent(){document.removeEventListener("touchmove",this.dragMove),document.removeEventListener("touchend",this.dragEnd),document.removeEventListener("mousedown",this.blurHandle),document.removeEventListener("mousemove",this.dragMove),document.removeEventListener("mouseup",this.dragEnd),document.removeEventListener("mouseleave",this.dragEnd),document.removeEventListener("keydown",this.keydownHandle)},setScale(){const t=new he(Math.floor(this.isHorizontal?this.$refs.rail.offsetWidth:this.$refs.rail.offsetHeight));this.zoom!==void 0&&t.multiply(this.zoom),t.divide(100),this.scale=t.toNumber()},initControl(){this.control=new rc({value:this.modelValue,data:this.sliderData,enableCross:this.enableCross,fixed:this.fixed,max:this.max,min:this.min,interval:this.interval,minRange:this.minRange,maxRange:this.maxRange,order:this.order,marks:this.sliderMarks,included:this.included,process:this.process,adsorb:this.adsorb,dotOptions:this.dotOptions,onError:this.emitError}),this.syncValueByPos(),["data","enableCross","fixed","max","min","interval","minRange","maxRange","order","marks","process","adsorb","included","dotOptions"].forEach(t=>{this.$watch(t,o=>{if(t==="data"&&Array.isArray(this.control.data)&&Array.isArray(o)&&this.control.data.length===o.length&&o.every((n,r)=>n===this.control.data[r]))return!1;switch(t){case"data":case"dataLabel":case"dataValue":this.control.data=this.sliderData;break;case"mark":this.control.marks=this.sliderMarks;break;default:this.control[t]=o}["data","max","min","interval"].indexOf(t)>-1&&this.control.syncDotsPos()})})},syncValueByPos(){const t=this.control.dotsValue;if(this.isDiff(t,Array.isArray(this.modelValue)?this.modelValue:[this.modelValue])){const o=t.length===1?t[0]:[...t];this.$emit("change",o,this.focusDotIndex),this.$emit("update:modelValue",o,this.focusDotIndex)}},isDiff(t,o){return t.length!==o.length||t.some((n,r)=>n!==o[r])},emitError(t,o){this.silent||console.error(`[VueSlider error]: ${o}`),this.$emit("error",t,o)},dragStartOnProcess(t){if(this.dragOnClick){this.setScale();const o=this.getPosByEvent(t),n=this.control.getRecentDot(o);if(this.dots[n].disabled)return;this.dragStart(n),this.control.setDotPos(o,this.focusDotIndex),this.lazy||this.syncValueByPos()}},dragStart(t){this.focusDotIndex=t,this.setScale(),this.states.add(U0.Drag),this.states.add(U0.Focus),this.$emit("drag-start",this.focusDotIndex)},dragMove(t){if(!this.states.has(U0.Drag))return!1;t.preventDefault();const o=this.getPosByEvent(t);this.isCrossDot(o),this.control.setDotPos(o,this.focusDotIndex),this.lazy||this.syncValueByPos();const n=this.control.dotsValue;this.$emit("dragging",n.length===1?n[0]:[...n],this.focusDotIndex)},isCrossDot(t){if(this.canSort){const o=this.focusDotIndex;let n=t;if(n>this.dragRange[1]?(n=this.dragRange[1],this.focusDotIndex++):n<this.dragRange[0]&&(n=this.dragRange[0],this.focusDotIndex--),o!==this.focusDotIndex){const r=this.$refs[`dot-${this.focusDotIndex}`];r&&r.$el&&r.$el.focus(),this.control.setDotPos(n,o)}}},dragEnd(t){if(!this.states.has(U0.Drag))return!1;setTimeout(()=>{this.lazy&&this.syncValueByPos(),this.included&&this.isNotSync?this.control.setValue(this.modelValue):this.control.syncDotsPos(),this.states.delete(U0.Drag),(!this.useKeyboard||"targetTouches"in t)&&this.states.delete(U0.Focus),this.$emit("drag-end",this.focusDotIndex)})},blurHandle(t){if(!this.states.has(U0.Focus)||!this.$refs.container||this.$refs.container.contains(t.target))return!1;this.states.delete(U0.Focus)},clickHandle(t){if(!this.clickable||this.disabled)return!1;if(this.states.has(U0.Drag))return;this.setScale();const o=this.getPosByEvent(t);this.setValueByPos(o)},focus(t=0){this.states.add(U0.Focus),this.focusDotIndex=t},blur(){this.states.delete(U0.Focus)},getValue(){const t=this.control.dotsValue;return t.length===1?t[0]:t},getIndex(){const t=this.control.dotsIndex;return t.length===1?t[0]:t},setValue(t){this.control.setValue(Array.isArray(t)?[...t]:[t]),this.syncValueByPos()},setIndex(t){const o=Array.isArray(t)?t.map(n=>this.control.getValueByIndex(n)):this.control.getValueByIndex(t);this.setValue(o)},setValueByPos(t){const o=this.control.getRecentDot(t);if(this.disabled||this.dots[o].disabled)return!1;this.focusDotIndex=o,this.control.setDotPos(t,o),this.syncValueByPos(),this.useKeyboard&&this.states.add(U0.Focus),setTimeout(()=>{this.included&&this.isNotSync?this.control.setValue(this.modelValue):this.control.syncDotsPos()})},keydownHandle(t){if(!this.useKeyboard||!this.states.has(U0.Focus))return!1;const o=this.included&&this.marks,n=oc(t,{direction:this.direction,max:o?this.control.markList.length-1:this.control.total,min:0,hook:this.keydownHook});if(n){t.preventDefault();let r=-1,a=0;o?(this.control.markList.some((l,i)=>l.value===this.control.dotsValue[this.focusDotIndex]?(r=n(i),!0):!1),r<0?r=0:r>this.control.markList.length-1&&(r=this.control.markList.length-1),a=this.control.markList[r].pos):(r=n(this.control.getIndexByValue(this.control.dotsValue[this.focusDotIndex])),a=this.control.parseValue(this.control.getValueByIndex(r))),this.isCrossDot(a),this.control.setDotPos(a,this.focusDotIndex),this.syncValueByPos()}},getPosByEvent(t){return tc(t,this.$refs.rail,this.isReverse)[this.isHorizontal?"x":"y"]/this.scale}},watch:{modelValue:{handler(){this.control&&!this.states.has(U0.Drag)&&this.isNotSync&&(this.control.setValue(this.modelValue),this.syncValueByPos())},deep:!0}}},ic={key:0,class:"vue-slider-marks"};function sc(t,o,n,r,a,l){const i=e.resolveComponent("VueSliderMark"),d=e.resolveComponent("VueSliderDot");return e.openBlock(),e.createElementBlock("div",e.mergeProps({ref:"container",class:l.containerClasses,style:l.containerStyles,onClick:o[0]||(o[0]=(...c)=>l.clickHandle&&l.clickHandle(...c)),onTouchstartPassive:o[1]||(o[1]=(...c)=>l.dragStartOnProcess&&l.dragStartOnProcess(...c)),onMousedown:o[2]||(o[2]=(...c)=>l.dragStartOnProcess&&l.dragStartOnProcess(...c))},t.$attrs),[e.createElementVNode("div",{ref:"rail",class:"vue-slider-rail",style:e.normalizeStyle(n.railStyle)},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.processArray,(c,p)=>e.renderSlot(t.$slots,"process",e.mergeProps({ref_for:!0},{...c}),()=>[(e.openBlock(),e.createElementBlock("div",{class:"vue-slider-process",key:`process-${p}`,style:e.normalizeStyle(c.style)},null,4))])),256)),l.sliderMarks?(e.openBlock(),e.createElementBlock("div",ic,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.control.markList,(c,p)=>e.renderSlot(t.$slots,"mark",e.mergeProps({ref_for:!0},{...c}),()=>[(e.openBlock(),e.createBlock(i,{key:`mark-${p}`,mark:c,hideLabel:n.hideLabel,style:e.normalizeStyle({[l.isHorizontal?"height":"width"]:"100%",[l.isHorizontal?"width":"height"]:l.tailSize,[l.mainDirection]:`${c.pos}%`}),stepStyle:n.stepStyle,stepActiveStyle:n.stepActiveStyle,labelStyle:n.labelStyle,labelActiveStyle:n.labelActiveStyle,onPressLabel:C=>n.clickable&&l.setValueByPos(C)},{step:e.withCtx(()=>[e.renderSlot(t.$slots,"step",e.mergeProps({ref_for:!0},{...c}))]),label:e.withCtx(()=>[e.renderSlot(t.$slots,"label",e.mergeProps({ref_for:!0},{...c}))]),_:2},1032,["mark","hideLabel","style","stepStyle","stepActiveStyle","labelStyle","labelActiveStyle","onPressLabel"]))])),256))])):e.createCommentVNode("",!0),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.dots,(c,p)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createVNode(d,e.mergeProps({ref_for:!0,ref:`dot-${p}`,value:c.value,disabled:c.disabled,focus:c.focus,"dot-style":[c.style,c.disabled?c.disabledStyle:null,c.focus?c.focusStyle:null],tooltip:c.tooltip||n.tooltip,"tooltip-style":[n.tooltipStyle,c.tooltipStyle,c.disabled?c.tooltipDisabledStyle:null,c.focus?c.tooltipFocusStyle:null],"tooltip-formatter":Array.isArray(l.sliderTooltipFormatter)?l.sliderTooltipFormatter[p]:l.sliderTooltipFormatter,"tooltip-placement":l.tooltipDirections[p],style:[l.dotBaseStyle,{[l.mainDirection]:`${c.pos}%`,transition:`${l.mainDirection} ${l.animateTime}s`}],"onDrag-start":()=>l.dragStart(p),role:"slider","aria-valuenow":c.value,"aria-valuemin":this.min,"aria-valuemax":this.max,"aria-orientation":this.isHorizontal?"horizontal":"vertical",tabindex:"0",nativeOnFocus:()=>!c.disabled&&l.focus(p),nativeOnBlur:()=>l.blur()},{...n.dotAttrs}),{dot:e.withCtx(()=>[e.renderSlot(t.$slots,"dot",e.mergeProps({ref_for:!0},{...c}))]),tooltip:e.withCtx(()=>[e.renderSlot(t.$slots,"tooltip",e.mergeProps({ref_for:!0},{...c}))]),_:2},1040,["value","disabled","focus","dot-style","tooltip","tooltip-style","tooltip-formatter","tooltip-placement","style","onDrag-start","aria-valuenow","aria-valuemin","aria-valuemax","aria-orientation","nativeOnFocus","nativeOnBlur"]),e.renderSlot(t.$slots,"default",e.mergeProps({ref_for:!0},{value:l.getValue()}))],64))),256))],4)],16)}const j5=z5(lc,[["render",sc]]);j5.VueSliderMark=c8,j5.VueSliderDot=s8;const cc={class:"mc-field-range__header"},dc={key:0},uc={key:1,class:"mc-field-range__footer"},Cc=e.defineComponent({__name:"McFieldRange",props:{modelValue:{type:[Number,String,Array],required:!0},min:{type:[String,Number],default:0},max:{type:[String,Number],default:100},step:{type:[String,Number],default:1},title:{type:String,default:null},helpText:{type:String,default:null},color:{type:String,default:"purple"},lazy:{type:Boolean,default:!0},disabled:{type:Boolean,default:!1},tooltip:{type:String,default:"hover"},tooltipPlacement:{type:String,default:"top"},coloredTooltip:{type:Boolean,default:!1},smooth:{type:Boolean,default:!0},showLabels:{type:Boolean,default:!1},errors:{type:Array,default:()=>[]}},emits:["update:modelValue","dragging"],setup(t,{emit:o}){const n=o,r=t,a=ee(r.errors),l=m=>Number(m)!==m?m:(""+m).replace(/\B(?=(\d{3})+(?!\d))/g," "),i=e.computed({get(){return r.modelValue},set(m){C(m)}}),d=e.computed(()=>({"mc-range-slider":!0,[`mc-range-slider--color-${r.color}`]:!!r.color,"mc-range-slider--colored-tooltip":r.coloredTooltip})),c=e.computed(()=>({"--mc-range-slider-color":X2[r.color]})),p=e.reactive({style:c.value,interval:+r.step,min:+r.min,max:+r.max,disabled:r.disabled,lazy:r.lazy,tooltip:r.tooltip,marks:r.showLabels,adsorb:!r.smooth,"tooltip-placement":r.tooltipPlacement,"tooltip-formatter":l,"dot-size":20}),C=m=>{n("update:modelValue",m)},k=m=>{n("dragging",m)};return(m,y)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(d.value)},[e.createElementVNode("div",cc,[e.renderSlot(m.$slots,"header",{},()=>[r.title?(e.openBlock(),e.createBlock(z2,{key:0,weight:e.unref(Y0).Medium},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(r.title),1)]),_:1},8,["weight"])):e.createCommentVNode("",!0)])]),e.createVNode(e.unref(j5),e.mergeProps({modelValue:i.value,"onUpdate:modelValue":y[0]||(y[0]=b=>i.value=b)},p,{onChange:C,onDragging:k}),null,16,["modelValue"]),(e.unref(a).errorText.value||r.helpText||m.$slots.footer)&&r.showLabels?(e.openBlock(),e.createElementBlock("br",dc)):e.createCommentVNode("",!0),e.unref(a).errorText.value||r.helpText||m.$slots.footer?(e.openBlock(),e.createElementBlock("div",uc,[e.unref(a).errorText.value?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createVNode(z2,{"tag-name":"div",color:"red",variation:e.unref(h0).Overline,class:"mc-field-range__error-text","html-data":e.unref(a).errorText.value},null,8,["variation","html-data"]),y[1]||(y[1]=e.createElementVNode("br",null,null,-1))],64)):e.createCommentVNode("",!0),e.renderSlot(m.$slots,"footer",{},()=>[r.helpText?(e.openBlock(),e.createBlock(z2,{key:0,"tag-name":"div",variation:e.unref(h0).Overline,color:"gray","max-width":"100%"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.helpText),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0)],2))}});function R5(t){return t===0?!1:Array.isArray(t)&&t.length===0?!0:!t}function hc(t){return(...o)=>!t(...o)}function pc(t,o){return t===void 0&&(t="undefined"),t===null&&(t="null"),t===!1&&(t="false"),t.toString().toLowerCase().indexOf(o.trim())!==-1}function d8(t,o,n,r){return o?t.filter(a=>pc(r(a,n),o)).sort((a,l)=>r(a,n).length-r(l,n).length):t}function mc(t){return t.filter(o=>!o.$isLabel)}function I5(t,o){return n=>n.reduce((r,a)=>a[t]&&a[t].length?(r.push({$groupLabel:a[o],$isLabel:!0}),r.concat(a[t])):r,[])}function fc(t,o,n,r,a){return l=>l.map(i=>{if(!i[n])return console.warn("Options passed to vue-multiselect do not contain groups, despite the config."),[];const d=d8(i[n],t,o,a);return d.length?{[r]:i[r],[n]:d}:[]})}const u8=(...t)=>o=>t.reduce((n,r)=>r(n),o);var kc={data(){return{search:"",isOpen:!1,preferredOpenDirection:"below",optimizedHeight:this.maxHeight}},props:{internalSearch:{type:Boolean,default:!0},options:{type:Array,required:!0},multiple:{type:Boolean,default:!1},trackBy:{type:String},label:{type:String},searchable:{type:Boolean,default:!0},clearOnSelect:{type:Boolean,default:!0},hideSelected:{type:Boolean,default:!1},placeholder:{type:String,default:"Select option"},allowEmpty:{type:Boolean,default:!0},resetAfter:{type:Boolean,default:!1},closeOnSelect:{type:Boolean,default:!0},customLabel:{type:Function,default(t,o){return R5(t)?"":o?t[o]:t}},taggable:{type:Boolean,default:!1},tagPlaceholder:{type:String,default:"Press enter to create a tag"},tagPosition:{type:String,default:"top"},max:{type:[Number,Boolean],default:!1},id:{default:null},optionsLimit:{type:Number,default:1e3},groupValues:{type:String},groupLabel:{type:String},groupSelect:{type:Boolean,default:!1},blockKeys:{type:Array,default(){return[]}},preserveSearch:{type:Boolean,default:!1},preselectFirst:{type:Boolean,default:!1},preventAutofocus:{type:Boolean,default:!1}},mounted(){!this.multiple&&this.max&&console.warn("[Vue-Multiselect warn]: Max prop should not be used when prop Multiple equals false."),this.preselectFirst&&!this.internalValue.length&&this.options.length&&this.select(this.filteredOptions[0])},computed:{internalValue(){return this.modelValue||this.modelValue===0?Array.isArray(this.modelValue)?this.modelValue:[this.modelValue]:[]},filteredOptions(){const t=this.search||"",o=t.toLowerCase().trim();let n=this.options.concat();return this.internalSearch?n=this.groupValues?this.filterAndFlat(n,o,this.label):d8(n,o,this.label,this.customLabel):n=this.groupValues?I5(this.groupValues,this.groupLabel)(n):n,n=this.hideSelected?n.filter(hc(this.isSelected)):n,this.taggable&&o.length&&!this.isExistingOption(o)&&(this.tagPosition==="bottom"?n.push({isTag:!0,label:t}):n.unshift({isTag:!0,label:t})),n.slice(0,this.optionsLimit)},valueKeys(){return this.trackBy?this.internalValue.map(t=>t[this.trackBy]):this.internalValue},optionKeys(){return(this.groupValues?this.flatAndStrip(this.options):this.options).map(o=>this.customLabel(o,this.label).toString().toLowerCase())},currentOptionLabel(){return this.multiple?this.searchable?"":this.placeholder:this.internalValue.length?this.getOptionLabel(this.internalValue[0]):this.searchable?"":this.placeholder}},watch:{internalValue:{handler(){this.resetAfter&&this.internalValue.length&&(this.search="",this.$emit("update:modelValue",this.multiple?[]:null))},deep:!0},search(){this.$emit("search-change",this.search)}},emits:["open","search-change","close","select","update:modelValue","remove","tag"],methods:{getValue(){return this.multiple?this.internalValue:this.internalValue.length===0?null:this.internalValue[0]},filterAndFlat(t,o,n){return u8(fc(o,n,this.groupValues,this.groupLabel,this.customLabel),I5(this.groupValues,this.groupLabel))(t)},flatAndStrip(t){return u8(I5(this.groupValues,this.groupLabel),mc)(t)},updateSearch(t){this.search=t},isExistingOption(t){return this.options?this.optionKeys.indexOf(t)>-1:!1},isSelected(t){const o=this.trackBy?t[this.trackBy]:t;return this.valueKeys.indexOf(o)>-1},isOptionDisabled(t){return!!t.$isDisabled},getOptionLabel(t){if(R5(t))return"";if(t.isTag)return t.label;if(t.$isLabel)return t.$groupLabel;const o=this.customLabel(t,this.label);return R5(o)?"":o},select(t,o){if(t.$isLabel&&this.groupSelect){this.selectGroup(t);return}if(!(this.blockKeys.indexOf(o)!==-1||this.disabled||t.$isDisabled||t.$isLabel)&&!(this.max&&this.multiple&&this.internalValue.length===this.max)&&!(o==="Tab"&&!this.pointerDirty)){if(t.isTag)this.$emit("tag",t.label,this.id),this.search="",this.closeOnSelect&&!this.multiple&&this.deactivate();else{if(this.isSelected(t)){o!=="Tab"&&this.removeElement(t);return}this.multiple?this.$emit("update:modelValue",this.internalValue.concat([t])):this.$emit("update:modelValue",t),this.$emit("select",t,this.id),this.clearOnSelect&&(this.search="")}this.closeOnSelect&&this.deactivate()}},selectGroup(t){const o=this.options.find(n=>n[this.groupLabel]===t.$groupLabel);if(o){if(this.wholeGroupSelected(o)){this.$emit("remove",o[this.groupValues],this.id);const n=this.trackBy?o[this.groupValues].map(a=>a[this.trackBy]):o[this.groupValues],r=this.internalValue.filter(a=>n.indexOf(this.trackBy?a[this.trackBy]:a)===-1);this.$emit("update:modelValue",r)}else{let n=o[this.groupValues].filter(r=>!(this.isOptionDisabled(r)||this.isSelected(r)));this.max&&n.splice(this.max-this.internalValue.length),this.$emit("select",n,this.id),this.$emit("update:modelValue",this.internalValue.concat(n))}this.closeOnSelect&&this.deactivate()}},wholeGroupSelected(t){return t[this.groupValues].every(o=>this.isSelected(o)||this.isOptionDisabled(o))},wholeGroupDisabled(t){return t[this.groupValues].every(this.isOptionDisabled)},removeElement(t,o=!0){if(this.disabled||t.$isDisabled)return;if(!this.allowEmpty&&this.internalValue.length<=1){this.deactivate();return}const n=typeof t=="object"?this.valueKeys.indexOf(t[this.trackBy]):this.valueKeys.indexOf(t);if(this.multiple){const r=this.internalValue.slice(0,n).concat(this.internalValue.slice(n+1));this.$emit("update:modelValue",r)}else this.$emit("update:modelValue",null);this.$emit("remove",t,this.id),this.closeOnSelect&&o&&this.deactivate()},removeLastElement(){this.blockKeys.indexOf("Delete")===-1&&this.search.length===0&&Array.isArray(this.internalValue)&&this.internalValue.length&&this.removeElement(this.internalValue[this.internalValue.length-1],!1)},activate(){this.isOpen||this.disabled||(this.adjustPosition(),this.groupValues&&this.pointer===0&&this.filteredOptions.length&&(this.pointer=1),this.isOpen=!0,this.searchable?(this.preserveSearch||(this.search=""),this.preventAutofocus||this.$nextTick(()=>this.$refs.search&&this.$refs.search.focus())):this.preventAutofocus||typeof this.$el<"u"&&this.$el.focus(),this.$emit("open",this.id))},deactivate(){this.isOpen&&(this.isOpen=!1,this.searchable?this.$refs.search!==null&&typeof this.$refs.search<"u"&&this.$refs.search.blur():typeof this.$el<"u"&&this.$el.blur(),this.preserveSearch||(this.search=""),this.$emit("close",this.getValue(),this.id))},toggle(){this.isOpen?this.deactivate():this.activate()},adjustPosition(){if(typeof window>"u")return;const t=this.$el.getBoundingClientRect().top,o=window.innerHeight-this.$el.getBoundingClientRect().bottom;o>this.maxHeight||o>t||this.openDirection==="below"||this.openDirection==="bottom"?(this.preferredOpenDirection="below",this.optimizedHeight=Math.min(o-40,this.maxHeight)):(this.preferredOpenDirection="above",this.optimizedHeight=Math.min(t-40,this.maxHeight))}}},yc={data(){return{pointer:0,pointerDirty:!1}},props:{showPointer:{type:Boolean,default:!0},optionHeight:{type:Number,default:40}},computed:{pointerPosition(){return this.pointer*this.optionHeight},visibleElements(){return this.optimizedHeight/this.optionHeight}},watch:{filteredOptions(){this.pointerAdjust()},isOpen(){this.pointerDirty=!1},pointer(){this.$refs.search&&this.$refs.search.setAttribute("aria-activedescendant",this.id+"-"+this.pointer.toString())}},methods:{optionHighlight(t,o){return{"multiselect__option--highlight":t===this.pointer&&this.showPointer,"multiselect__option--selected":this.isSelected(o)}},groupHighlight(t,o){if(!this.groupSelect)return["multiselect__option--disabled",{"multiselect__option--group":o.$isLabel}];const n=this.options.find(r=>r[this.groupLabel]===o.$groupLabel);return n&&!this.wholeGroupDisabled(n)?["multiselect__option--group",{"multiselect__option--highlight":t===this.pointer&&this.showPointer},{"multiselect__option--group-selected":this.wholeGroupSelected(n)}]:"multiselect__option--disabled"},addPointerElement({key:t}="Enter"){this.filteredOptions.length>0&&this.select(this.filteredOptions[this.pointer],t),this.pointerReset()},pointerForward(){this.pointer<this.filteredOptions.length-1&&(this.pointer++,this.$refs.list.scrollTop<=this.pointerPosition-(this.visibleElements-1)*this.optionHeight&&(this.$refs.list.scrollTop=this.pointerPosition-(this.visibleElements-1)*this.optionHeight),this.filteredOptions[this.pointer]&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerForward()),this.pointerDirty=!0},pointerBackward(){this.pointer>0?(this.pointer--,this.$refs.list.scrollTop>=this.pointerPosition&&(this.$refs.list.scrollTop=this.pointerPosition),this.filteredOptions[this.pointer]&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerBackward()):this.filteredOptions[this.pointer]&&this.filteredOptions[0].$isLabel&&!this.groupSelect&&this.pointerForward(),this.pointerDirty=!0},pointerReset(){this.closeOnSelect&&(this.pointer=0,this.$refs.list&&(this.$refs.list.scrollTop=0))},pointerAdjust(){this.pointer>=this.filteredOptions.length-1&&(this.pointer=this.filteredOptions.length?this.filteredOptions.length-1:0),this.filteredOptions.length>0&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerForward()},pointerSet(t){this.pointer=t,this.pointerDirty=!0}}},C8={name:"vue-multiselect",mixins:[kc,yc],compatConfig:{MODE:3,ATTR_ENUMERATED_COERCION:!1},props:{name:{type:String,default:""},modelValue:{type:null,default(){return[]}},selectLabel:{type:String,default:"Press enter to select"},selectGroupLabel:{type:String,default:"Press enter to select group"},selectedLabel:{type:String,default:"Selected"},deselectLabel:{type:String,default:"Press enter to remove"},deselectGroupLabel:{type:String,default:"Press enter to deselect group"},showLabels:{type:Boolean,default:!0},limit:{type:Number,default:99999},maxHeight:{type:Number,default:300},limitText:{type:Function,default:t=>`and ${t} more`},loading:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},spellcheck:{type:Boolean,default:!1},openDirection:{type:String,default:""},showNoOptions:{type:Boolean,default:!0},showNoResults:{type:Boolean,default:!0},tabindex:{type:Number,default:0},required:{type:Boolean,default:!1}},computed:{hasOptionGroup(){return this.groupValues&&this.groupLabel&&this.groupSelect},isSingleLabelVisible(){return(this.singleValue||this.singleValue===0)&&(!this.isOpen||!this.searchable)&&!this.visibleValues.length},isPlaceholderVisible(){return!this.internalValue.length&&(!this.searchable||!this.isOpen)},visibleValues(){return this.multiple?this.internalValue.slice(0,this.limit):[]},singleValue(){return this.internalValue[0]},deselectLabelText(){return this.showLabels?this.deselectLabel:""},deselectGroupLabelText(){return this.showLabels?this.deselectGroupLabel:""},selectLabelText(){return this.showLabels?this.selectLabel:""},selectGroupLabelText(){return this.showLabels?this.selectGroupLabel:""},selectedLabelText(){return this.showLabels?this.selectedLabel:""},inputStyle(){return this.searchable||this.multiple&&this.modelValue&&this.modelValue.length?this.isOpen?{width:"100%"}:{width:"0",position:"absolute",padding:"0"}:""},contentStyle(){return this.options.length?{display:"inline-block"}:{display:"block"}},isAbove(){return this.openDirection==="above"||this.openDirection==="top"?!0:this.openDirection==="below"||this.openDirection==="bottom"?!1:this.preferredOpenDirection==="above"},showSearchInput(){return this.searchable&&(this.hasSingleSelectedSlot&&(this.visibleSingleValue||this.visibleSingleValue===0)?this.isOpen:!0)}}};const gc={ref:"tags",class:"multiselect__tags"},bc={class:"multiselect__tags-wrap"},Mc={class:"multiselect__spinner"},Lc={key:0},wc={class:"multiselect__option"},vc={class:"multiselect__option"},Vc=e.createTextVNode("No elements found. Consider changing the search query."),_c={class:"multiselect__option"},xc=e.createTextVNode("List is empty.");function Hc(t,o,n,r,a,l){return e.openBlock(),e.createBlock("div",{tabindex:t.searchable?-1:n.tabindex,class:[{"multiselect--active":t.isOpen,"multiselect--disabled":n.disabled,"multiselect--above":l.isAbove,"multiselect--has-options-group":l.hasOptionGroup},"multiselect"],onFocus:o[14]||(o[14]=i=>t.activate()),onBlur:o[15]||(o[15]=i=>t.searchable?!1:t.deactivate()),onKeydown:[o[16]||(o[16]=e.withKeys(e.withModifiers(i=>t.pointerForward(),["self","prevent"]),["down"])),o[17]||(o[17]=e.withKeys(e.withModifiers(i=>t.pointerBackward(),["self","prevent"]),["up"]))],onKeypress:o[18]||(o[18]=e.withKeys(e.withModifiers(i=>t.addPointerElement(i),["stop","self"]),["enter","tab"])),onKeyup:o[19]||(o[19]=e.withKeys(i=>t.deactivate(),["esc"])),role:"combobox","aria-owns":"listbox-"+t.id},[e.renderSlot(t.$slots,"caret",{toggle:t.toggle},()=>[e.createVNode("div",{onMousedown:o[1]||(o[1]=e.withModifiers(i=>t.toggle(),["prevent","stop"])),class:"multiselect__select"},null,32)]),e.renderSlot(t.$slots,"clear",{search:t.search}),e.createVNode("div",gc,[e.renderSlot(t.$slots,"selection",{search:t.search,remove:t.removeElement,values:l.visibleValues,isOpen:t.isOpen},()=>[e.withDirectives(e.createVNode("div",bc,[(e.openBlock(!0),e.createBlock(e.Fragment,null,e.renderList(l.visibleValues,(i,d)=>e.renderSlot(t.$slots,"tag",{option:i,search:t.search,remove:t.removeElement},()=>[(e.openBlock(),e.createBlock("span",{class:"multiselect__tag",key:d},[e.createVNode("span",{textContent:e.toDisplayString(t.getOptionLabel(i))},null,8,["textContent"]),e.createVNode("i",{tabindex:"1",onKeypress:e.withKeys(e.withModifiers(c=>t.removeElement(i),["prevent"]),["enter"]),onMousedown:e.withModifiers(c=>t.removeElement(i),["prevent"]),class:"multiselect__tag-icon"},null,40,["onKeypress","onMousedown"])]))])),256))],512),[[e.vShow,l.visibleValues.length>0]]),t.internalValue&&t.internalValue.length>n.limit?e.renderSlot(t.$slots,"limit",{key:0},()=>[e.createVNode("strong",{class:"multiselect__strong",textContent:e.toDisplayString(n.limitText(t.internalValue.length-n.limit))},null,8,["textContent"])]):e.createCommentVNode("v-if",!0)]),e.createVNode(e.Transition,{name:"multiselect__loading"},{default:e.withCtx(()=>[e.renderSlot(t.$slots,"loading",{},()=>[e.withDirectives(e.createVNode("div",Mc,null,512),[[e.vShow,n.loading]])])]),_:3}),t.searchable?(e.openBlock(),e.createBlock("input",{key:0,ref:"search",name:n.name,id:t.id,type:"text",autocomplete:"off",spellcheck:n.spellcheck,placeholder:t.placeholder,required:n.required,style:l.inputStyle,value:t.search,disabled:n.disabled,tabindex:n.tabindex,onInput:o[2]||(o[2]=i=>t.updateSearch(i.target.value)),onFocus:o[3]||(o[3]=e.withModifiers(i=>t.activate(),["prevent"])),onBlur:o[4]||(o[4]=e.withModifiers(i=>t.deactivate(),["prevent"])),onKeyup:o[5]||(o[5]=e.withKeys(i=>t.deactivate(),["esc"])),onKeydown:[o[6]||(o[6]=e.withKeys(e.withModifiers(i=>t.pointerForward(),["prevent"]),["down"])),o[7]||(o[7]=e.withKeys(e.withModifiers(i=>t.pointerBackward(),["prevent"]),["up"])),o[9]||(o[9]=e.withKeys(e.withModifiers(i=>t.removeLastElement(),["stop"]),["delete"]))],onKeypress:o[8]||(o[8]=e.withKeys(e.withModifiers(i=>t.addPointerElement(i),["prevent","stop","self"]),["enter"])),class:"multiselect__input","aria-controls":"listbox-"+t.id},null,44,["name","id","spellcheck","placeholder","required","value","disabled","tabindex","aria-controls"])):e.createCommentVNode("v-if",!0),l.isSingleLabelVisible?(e.openBlock(),e.createBlock("span",{key:1,class:"multiselect__single",onMousedown:o[10]||(o[10]=e.withModifiers((...i)=>t.toggle&&t.toggle(...i),["prevent"]))},[e.renderSlot(t.$slots,"singleLabel",{option:l.singleValue},()=>[e.createTextVNode(e.toDisplayString(t.currentOptionLabel),1)])],32)):e.createCommentVNode("v-if",!0),l.isPlaceholderVisible?(e.openBlock(),e.createBlock("span",{key:2,class:"multiselect__placeholder",onMousedown:o[11]||(o[11]=e.withModifiers((...i)=>t.toggle&&t.toggle(...i),["prevent"]))},[e.renderSlot(t.$slots,"placeholder",{},()=>[e.createTextVNode(e.toDisplayString(t.placeholder),1)])],32)):e.createCommentVNode("v-if",!0)],512),e.createVNode(e.Transition,{name:"multiselect"},{default:e.withCtx(()=>[e.withDirectives(e.createVNode("div",{class:"multiselect__content-wrapper",onFocus:o[12]||(o[12]=(...i)=>t.activate&&t.activate(...i)),tabindex:"-1",onMousedown:o[13]||(o[13]=e.withModifiers(()=>{},["prevent"])),style:{maxHeight:t.optimizedHeight+"px"},ref:"list"},[e.createVNode("ul",{class:"multiselect__content",style:l.contentStyle,role:"listbox",id:"listbox-"+t.id,"aria-multiselectable":t.multiple},[e.renderSlot(t.$slots,"beforeList"),t.multiple&&t.max===t.internalValue.length?(e.openBlock(),e.createBlock("li",Lc,[e.createVNode("span",wc,[e.renderSlot(t.$slots,"maxElements",{},()=>[e.createTextVNode("Maximum of "+e.toDisplayString(t.max)+" options selected. First remove a selected option to select another.",1)])])])):e.createCommentVNode("v-if",!0),!t.max||t.internalValue.length<t.max?(e.openBlock(!0),e.createBlock(e.Fragment,{key:1},e.renderList(t.filteredOptions,(i,d)=>(e.openBlock(),e.createBlock("li",{class:"multiselect__element",key:d,"aria-selected":t.isSelected(i),id:t.id+"-"+d,role:i&&(i.$isLabel||i.$isDisabled)?null:"option"},[i&&(i.$isLabel||i.$isDisabled)?e.createCommentVNode("v-if",!0):(e.openBlock(),e.createBlock("span",{key:0,class:[t.optionHighlight(d,i),"multiselect__option"],onClick:e.withModifiers(c=>t.select(i),["stop"]),onMouseenter:e.withModifiers(c=>t.pointerSet(d),["self"]),"data-select":i&&i.isTag?t.tagPlaceholder:l.selectLabelText,"data-selected":l.selectedLabelText,"data-deselect":l.deselectLabelText},[e.renderSlot(t.$slots,"option",{option:i,search:t.search,index:d},()=>[e.createVNode("span",null,e.toDisplayString(t.getOptionLabel(i)),1)])],42,["onClick","onMouseenter","data-select","data-selected","data-deselect"])),i&&(i.$isLabel||i.$isDisabled)?(e.openBlock(),e.createBlock("span",{key:1,"data-select":t.groupSelect&&l.selectGroupLabelText,"data-deselect":t.groupSelect&&l.deselectGroupLabelText,class:[t.groupHighlight(d,i),"multiselect__option"],onMouseenter:e.withModifiers(c=>t.groupSelect&&t.pointerSet(d),["self"]),onMousedown:e.withModifiers(c=>t.selectGroup(i),["prevent"])},[e.renderSlot(t.$slots,"option",{option:i,search:t.search,index:d},()=>[e.createVNode("span",null,e.toDisplayString(t.getOptionLabel(i)),1)])],42,["data-select","data-deselect","onMouseenter","onMousedown"])):e.createCommentVNode("v-if",!0)],8,["aria-selected","id","role"]))),128)):e.createCommentVNode("v-if",!0),e.withDirectives(e.createVNode("li",null,[e.createVNode("span",vc,[e.renderSlot(t.$slots,"noResult",{search:t.search},()=>[Vc])])],512),[[e.vShow,n.showNoResults&&t.filteredOptions.length===0&&t.search&&!n.loading]]),e.withDirectives(e.createVNode("li",null,[e.createVNode("span",_c,[e.renderSlot(t.$slots,"noOptions",{},()=>[xc])])],512),[[e.vShow,n.showNoOptions&&(t.options.length===0||l.hasOptionGroup===!0&&t.filteredOptions.length===0)&&!t.search&&!n.loading]]),e.renderSlot(t.$slots,"afterList")],12,["id","aria-multiselectable"])],36),[[e.vShow,t.isOpen]])]),_:3})],42,["tabindex","aria-owns"])}C8.render=Hc;const Bc={class:"mc-tooltip-target"},p3=e.defineComponent({__name:"McTooltip",props:{content:{type:String,required:!0},placement:{type:String,default:a1.Top},color:{type:String,default:X2.black},textColor:{type:String,default:X2.white},size:{type:String,default:ce.S},arrowVisible:{type:Boolean,default:!0}},setup(t){const o=Qt(),n=t,r=e.computed(()=>({content:n.content,size:n.size,placement:n.placement,arrow:n.arrowVisible,color:n.color,textColor:n.textColor}));return(a,l)=>e.withDirectives((e.openBlock(),e.createElementBlock("div",Bc,[e.renderSlot(a.$slots,"default")])),[[e.unref(o),r.value]])}}),Sc=["dir"],Ec={class:"mc-field-select__header"},Dc={class:"mc-field-select__main"},Tc={key:1,class:"mc-field-select__single-label"},Zc={key:0,class:"mc-field-select__prepend"},Ac={key:0,class:"mc-field-select__footer"},$c={key:1},Y5=e.defineComponent({__name:"McFieldSelect",props:{modelValue:{type:[Array,String,Number]},title:{type:String,default:null},helpText:{type:String,default:null},options:{type:Array,default:()=>[]},searchable:{type:Boolean,default:!0},multiple:{type:Boolean,default:!1},hideSelected:{type:Boolean,default:!0},allowEmpty:{type:Boolean,default:!0},disabled:{type:Boolean,default:!1},avatar:{type:String,default:null},icon:{type:String,default:null},backgroundColor:{type:String,default:null},placeholder:{type:String,default:""},openDirection:{type:String,default:"auto"},taggable:{type:Boolean,default:!1},showLabels:{type:Boolean,default:!1},internalSearch:{type:Boolean,default:!0},errors:{type:Array,default:null},name:{type:String,required:!0},optionsTooltip:{type:Boolean,default:!1},groupSelect:{type:Boolean,default:!1},required:{type:Boolean,default:!1},optionWithPreview:{type:Boolean,default:!1},tabindex:{type:[String,Number],default:null},maxHeight:{type:String,default:null},renderAbsoluteList:{type:Boolean,default:!1},locale:{type:String,default:null},noResultsText:{type:String,default:"No results"},loading:{type:Boolean,default:!1},dir:{type:String,default:_1.Ltr},titleField:{type:String,default:"name"},valueField:{type:String,default:"value"}},emits:["original-input","tag","search-change","update:modelValue","handle-open","handle-close"],setup(t,{emit:o}){const n=o,r=t,a=ee(r.errors),l=e.ref(null),i=e.ref(null),d=e.ref(null),c=e.ref([]),p=e.computed(()=>r.options.some(W=>Object.prototype.hasOwnProperty.call(W,Be.Label)&&Object.prototype.hasOwnProperty.call(W,Be.Values)&&Array.isArray(W[Be.Values]))),C=e.computed(()=>!!r.title),k=e.computed(()=>r.avatar||r.icon),m=e.computed(()=>r.multiple),y=e.computed(()=>({label:r.titleField,trackBy:r.valueField,loading:r.loading,options:b.value,searchable:r.searchable,showLabels:r.showLabels,multiple:r.multiple,hideSelected:r.hideSelected,allowEmpty:r.allowEmpty,openDirection:r.openDirection,id:r.name,taggable:r.taggable,tagPlaceholder:"",placeholder:r.placeholder,disabled:r.disabled,internalSearch:r.internalSearch,tabindex:+r.tabindex,groupSelect:r.groupSelect&&r.multiple,...p.value?{groupLabel:Be.Label}:{},...p.value?{groupValues:Be.Values}:{}})),b=e.computed(()=>p.value?r.options:[...r.options,...c.value].filter((W,u2,w)=>w.findIndex(T=>T[r.valueField]===W[r.valueField])===u2)),f=e.computed(()=>r.dir===_1.Rtl),M=e.computed(()=>({"mc-field-select":!0,"mc-field-select--error":!!a.errorText.value,"mc-field-select--disabled":r.disabled,[`mc-field-select--bg-${r.backgroundColor}`]:!!r.backgroundColor,"mc-field-select--is-empty-options-list":x.value||r.loading,"mc-field-select--with-preview":r.optionWithPreview,"mc-field-select--max-height":!!r.maxHeight,"mc-field-select--rtl":f.value})),V=e.computed(()=>`${r.title}${r.required?" *":""}`),S=e.computed(()=>{const W=["gray","dark-gray","black"],u2=["white"];let w="gray",T=r.backgroundColor,H=r.backgroundColor,I="black";return(!r.backgroundColor||u2.includes(r.backgroundColor))&&(T="purple"),W.includes(r.backgroundColor)&&(I="white",w="white",T="black"),r.disabled&&!r.backgroundColor&&(H="hover-gray"),{"--mc-field-select-max-height":r.maxHeight,"--mc-field-select-color":H&&X2[H],"--mc-field-select-border-color":T&&X2[T],"--mc-field-select-label-color":X2[I],"--mc-field-select-placeholder-color":X2[w]}}),x=e.computed(()=>{var W;return r.hideSelected&&!l.value||!r.options.length?r.multiple?p.value?!1:Array.isArray(r.modelValue)&&r.options.length===r.modelValue.length:!!r.modelValue&&((W=b.value)==null?void 0:W.length)===1&&!l.value:r.options.length===0?!r.options.length:!1}),B=e.computed({get(){let W=m.value?r.modelValue||[]:[r.modelValue].filter(Boolean);W=W.map(w=>{const H=(p.value?b.value.map(I=>I[Be.Values]).flat():b.value).find(I=>String(I[r.valueField])===String(w));return{[r.titleField]:H==null?void 0:H[r.titleField],[r.valueField]:H==null?void 0:H[r.valueField],text:H==null?void 0:H.text,icon:H==null?void 0:H.icon}});const[u2]=W;return m.value?W:u2},set(W){let u2=m.value?Array.isArray(W)?W:[]:[W];u2=u2.filter(Boolean).map(T=>T[r.valueField]);const[w]=u2;Y(W),Z(m.value?u2:w)}}),O=()=>{c.value=c.value.filter(W=>{var u2;return((u2=r.modelValue)==null?void 0:u2.constructor)===Array?r.modelValue.map(w=>String(w)).includes(String(W[r.valueField])):String(W[r.valueField])===String(r.modelValue)}),c.value=c.value.filter((W,u2,w)=>w.findIndex(T=>String(T[r.valueField])===String(W[r.valueField]))===u2)},_=W=>{const u2={[r.titleField]:W,[r.valueField]:W};c.value.push(u2),B.value=m.value?[...B.value,u2]:u2,n("tag",W)},N=W=>{l.value=W,n("search-change",W)},Z=W=>{a.toggleErrorVisible(),n("update:modelValue",W)},Y=W=>{n("original-input",W)},D=()=>{n("handle-open")},z=()=>{n("handle-close")};return e.watch(()=>r.options,W=>{c.value.push(...W),O()},{immediate:!0}),e.watch(()=>r.modelValue,()=>{O()},{immediate:!0,deep:!0}),(W,u2)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"field_select_wrapper_ref",ref:d,dir:t.dir,class:e.normalizeClass(M.value),style:e.normalizeStyle(S.value)},[e.createElementVNode("div",Ec,[e.renderSlot(W.$slots,"header",{},()=>[C.value?(e.openBlock(),e.createBlock(z2,{key:0,"max-width":"100%",weight:e.unref(Y0).Medium},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(V.value),1)]),_:1},8,["weight"])):e.createCommentVNode("",!0)])]),e.createElementVNode("div",Dc,[e.createVNode(e.unref(C8),e.mergeProps({ref_key:"field_select_ref",ref:i,modelValue:B.value,"onUpdate:modelValue":u2[0]||(u2[0]=w=>B.value=w)},y.value,{onTag:_,onSearchChange:N,onOpen:D,onClose:z}),e.createSlots({singleLabel:e.withCtx(({option:w})=>[r.optionWithPreview?(e.openBlock(),e.createBlock(h3,{key:0,class:"option__desc",size:e.unref(Y9).L},e.createSlots({top:e.withCtx(()=>[e.createVNode(z2,{weight:e.unref(Y0).SemiBold,"html-data":w[r.titleField]},null,8,["weight","html-data"])]),right:e.withCtx(()=>[e.renderSlot(W.$slots,"arrow")]),_:2},[w.icon?{name:"left",fn:e.withCtx(()=>[e.createVNode(W2,{name:w.icon,size:"400"},null,8,["name"])]),key:"0"}:void 0,w.text?{name:"bottom",fn:e.withCtx(()=>[e.createVNode(z2,{color:"gray"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(w.text),1)]),_:2},1024)]),key:"1"}:void 0]),1032,["size"])):(e.openBlock(),e.createElementBlock("div",Tc,[k.value?(e.openBlock(),e.createElementBlock("div",Zc,[t.avatar?(e.openBlock(),e.createBlock(It,{key:0,src:t.avatar},null,8,["src"])):(e.openBlock(),e.createBlock(W2,{key:1,name:r.icon},null,8,["name"]))])):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["mc-field-select__label-text",k.value?"mc-field-select__label-text--indent-left":""])},e.toDisplayString(w?w[r.titleField]:t.placeholder),3)]))]),noResult:e.withCtx(()=>[e.renderSlot(W.$slots,"noResult",{},()=>[e.createElementVNode("span",null,e.toDisplayString(r.noResultsText),1)])]),_:2},[t.optionsTooltip||r.optionWithPreview?{name:"option",fn:e.withCtx(({option:w})=>[r.optionWithPreview?(e.openBlock(),e.createBlock(h3,{key:0,class:"option__desc",size:e.unref(Y9).L},e.createSlots({top:e.withCtx(()=>[e.createVNode(z2,{weight:e.unref(Y0).SemiBold,"html-data":w[r.titleField]},null,8,["weight","html-data"])]),_:2},[w.icon?{name:"left",fn:e.withCtx(()=>[e.createVNode(W2,{name:w.icon,size:"400"},null,8,["name"])]),key:"0"}:void 0,w.text?{name:"bottom",fn:e.withCtx(()=>[e.createVNode(z2,{color:"gray"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(w.text),1)]),_:2},1024)]),key:"1"}:void 0]),1032,["size"])):(e.openBlock(),e.createBlock(p3,{key:1,class:"mc-field-select__options-tooltip-target","max-width":"m",color:"black",placement:e.unref(a1).Top,content:w[r.titleField]},{default:e.withCtx(()=>[e.createElementVNode("span",null,e.toDisplayString(w[r.titleField]),1)]),_:2},1032,["placement","content"]))]),key:"0"}:void 0]),1040,["modelValue"])]),e.unref(a).errorText.value||r.helpText||W.$slots.footer?(e.openBlock(),e.createElementBlock("div",Ac,[e.unref(a).errorText.value?(e.openBlock(),e.createBlock(z2,{key:0,"tag-name":"div",color:"red",variation:e.unref(h0).Overline,"max-width":"100%"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(a).errorText.value),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0),e.unref(a).errorText.value?(e.openBlock(),e.createElementBlock("br",$c)):e.createCommentVNode("",!0),e.renderSlot(W.$slots,"footer",{},()=>[r.helpText?(e.openBlock(),e.createBlock(z2,{key:0,"tag-name":"div",variation:e.unref(h0).Overline,color:"gray","max-width":"100%"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(r.helpText),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0)],14,Sc))}});function ze(t){return typeof t=="string"||t instanceof String}function h8(t){var o;return typeof t=="object"&&t!=null&&(t==null||(o=t.constructor)==null?void 0:o.name)==="Object"}function p8(t,o){return Array.isArray(o)?p8(t,(n,r)=>o.includes(r)):Object.entries(t).reduce((n,r)=>{let[a,l]=r;return o(l,a)&&(n[a]=l),n},{})}const Z2={NONE:"NONE",LEFT:"LEFT",FORCE_LEFT:"FORCE_LEFT",RIGHT:"RIGHT",FORCE_RIGHT:"FORCE_RIGHT"};function Nc(t){switch(t){case Z2.LEFT:return Z2.FORCE_LEFT;case Z2.RIGHT:return Z2.FORCE_RIGHT;default:return t}}function U5(t){return t.replace(/([.*+?^=!:${}()|[\]/\\])/g,"\\$1")}function st(t,o){if(o===t)return!0;const n=Array.isArray(o),r=Array.isArray(t);let a;if(n&&r){if(o.length!=t.length)return!1;for(a=0;a<o.length;a++)if(!st(o[a],t[a]))return!1;return!0}if(n!=r)return!1;if(o&&t&&typeof o=="object"&&typeof t=="object"){const l=o instanceof Date,i=t instanceof Date;if(l&&i)return o.getTime()==t.getTime();if(l!=i)return!1;const d=o instanceof RegExp,c=t instanceof RegExp;if(d&&c)return o.toString()==t.toString();if(d!=c)return!1;const p=Object.keys(o);for(a=0;a<p.length;a++)if(!Object.prototype.hasOwnProperty.call(t,p[a]))return!1;for(a=0;a<p.length;a++)if(!st(t[p[a]],o[p[a]]))return!1;return!0}else if(o&&t&&typeof o=="function"&&typeof t=="function")return o.toString()===t.toString();return!1}class Fc{constructor(o){for(Object.assign(this,o);this.value.slice(0,this.startChangePos)!==this.oldValue.slice(0,this.startChangePos);)--this.oldSelection.start;if(this.insertedCount)for(;this.value.slice(this.cursorPos)!==this.oldValue.slice(this.oldSelection.end);)this.value.length-this.cursorPos<this.oldValue.length-this.oldSelection.end?++this.oldSelection.end:++this.cursorPos}get startChangePos(){return Math.min(this.cursorPos,this.oldSelection.start)}get insertedCount(){return this.cursorPos-this.startChangePos}get inserted(){return this.value.substr(this.startChangePos,this.insertedCount)}get removedCount(){return Math.max(this.oldSelection.end-this.startChangePos||this.oldValue.length-this.value.length,0)}get removed(){return this.oldValue.substr(this.startChangePos,this.removedCount)}get head(){return this.value.substring(0,this.startChangePos)}get tail(){return this.value.substring(this.startChangePos+this.insertedCount)}get removeDirection(){return!this.removedCount||this.insertedCount?Z2.NONE:(this.oldSelection.end===this.cursorPos||this.oldSelection.start===this.cursorPos)&&this.oldSelection.end===this.oldSelection.start?Z2.RIGHT:Z2.LEFT}}function O2(t,o){return new O2.InputMask(t,o)}function m8(t){if(t==null)throw new Error("mask property should be defined");return t instanceof RegExp?O2.MaskedRegExp:ze(t)?O2.MaskedPattern:t===Date?O2.MaskedDate:t===Number?O2.MaskedNumber:Array.isArray(t)||t===Array?O2.MaskedDynamic:O2.Masked&&t.prototype instanceof O2.Masked?t:O2.Masked&&t instanceof O2.Masked?t.constructor:t instanceof Function?O2.MaskedFunction:(console.warn("Mask not found for mask",t),O2.Masked)}function v9(t){if(!t)throw new Error("Options in not defined");if(O2.Masked){if(t.prototype instanceof O2.Masked)return{mask:t};const{mask:o=void 0,...n}=t instanceof O2.Masked?{mask:t}:h8(t)&&t.mask instanceof O2.Masked?t:{};if(o){const r=o.mask;return{...p8(o,(a,l)=>!l.startsWith("_")),mask:o.constructor,_mask:r,...n}}}return h8(t)?{...t}:{mask:t}}function pe(t){if(O2.Masked&&t instanceof O2.Masked)return t;const o=v9(t),n=m8(o.mask);if(!n)throw new Error("Masked class is not found for provided mask "+o.mask+", appropriate module needs to be imported manually before creating mask.");return o.mask===n&&delete o.mask,o._mask&&(o.mask=o._mask,delete o._mask),new n(o)}O2.createMask=pe;class W5{get selectionStart(){let o;try{o=this._unsafeSelectionStart}catch{}return o??this.value.length}get selectionEnd(){let o;try{o=this._unsafeSelectionEnd}catch{}return o??this.value.length}select(o,n){if(!(o==null||n==null||o===this.selectionStart&&n===this.selectionEnd))try{this._unsafeSelect(o,n)}catch{}}get isActive(){return!1}}O2.MaskElement=W5;const f8=90,Oc=89;class ct extends W5{constructor(o){super(),this.input=o,this._onKeydown=this._onKeydown.bind(this),this._onInput=this._onInput.bind(this),this._onBeforeinput=this._onBeforeinput.bind(this),this._onCompositionEnd=this._onCompositionEnd.bind(this)}get rootElement(){var o,n,r;return(o=(n=(r=this.input).getRootNode)==null?void 0:n.call(r))!=null?o:document}get isActive(){return this.input===this.rootElement.activeElement}bindEvents(o){this.input.addEventListener("keydown",this._onKeydown),this.input.addEventListener("input",this._onInput),this.input.addEventListener("beforeinput",this._onBeforeinput),this.input.addEventListener("compositionend",this._onCompositionEnd),this.input.addEventListener("drop",o.drop),this.input.addEventListener("click",o.click),this.input.addEventListener("focus",o.focus),this.input.addEventListener("blur",o.commit),this._handlers=o}_onKeydown(o){if(this._handlers.redo&&(o.keyCode===f8&&o.shiftKey&&(o.metaKey||o.ctrlKey)||o.keyCode===Oc&&o.ctrlKey))return o.preventDefault(),this._handlers.redo(o);if(this._handlers.undo&&o.keyCode===f8&&(o.metaKey||o.ctrlKey))return o.preventDefault(),this._handlers.undo(o);o.isComposing||this._handlers.selectionChange(o)}_onBeforeinput(o){if(o.inputType==="historyUndo"&&this._handlers.undo)return o.preventDefault(),this._handlers.undo(o);if(o.inputType==="historyRedo"&&this._handlers.redo)return o.preventDefault(),this._handlers.redo(o)}_onCompositionEnd(o){this._handlers.input(o)}_onInput(o){o.isComposing||this._handlers.input(o)}unbindEvents(){this.input.removeEventListener("keydown",this._onKeydown),this.input.removeEventListener("input",this._onInput),this.input.removeEventListener("beforeinput",this._onBeforeinput),this.input.removeEventListener("compositionend",this._onCompositionEnd),this.input.removeEventListener("drop",this._handlers.drop),this.input.removeEventListener("click",this._handlers.click),this.input.removeEventListener("focus",this._handlers.focus),this.input.removeEventListener("blur",this._handlers.commit),this._handlers={}}}O2.HTMLMaskElement=ct;class zc extends ct{constructor(o){super(o),this.input=o}get _unsafeSelectionStart(){return this.input.selectionStart!=null?this.input.selectionStart:this.value.length}get _unsafeSelectionEnd(){return this.input.selectionEnd}_unsafeSelect(o,n){this.input.setSelectionRange(o,n)}get value(){return this.input.value}set value(o){this.input.value=o}}O2.HTMLMaskElement=ct;class k8 extends ct{get _unsafeSelectionStart(){const o=this.rootElement,n=o.getSelection&&o.getSelection(),r=n&&n.anchorOffset,a=n&&n.focusOffset;return a==null||r==null||r<a?r:a}get _unsafeSelectionEnd(){const o=this.rootElement,n=o.getSelection&&o.getSelection(),r=n&&n.anchorOffset,a=n&&n.focusOffset;return a==null||r==null||r>a?r:a}_unsafeSelect(o,n){if(!this.rootElement.createRange)return;const r=this.rootElement.createRange();r.setStart(this.input.firstChild||this.input,o),r.setEnd(this.input.lastChild||this.input,n);const a=this.rootElement,l=a.getSelection&&a.getSelection();l&&(l.removeAllRanges(),l.addRange(r))}get value(){return this.input.textContent||""}set value(o){this.input.textContent=o}}O2.HTMLContenteditableMaskElement=k8;class dt{constructor(){this.states=[],this.currentIndex=0}get currentState(){return this.states[this.currentIndex]}get isEmpty(){return this.states.length===0}push(o){this.currentIndex<this.states.length-1&&(this.states.length=this.currentIndex+1),this.states.push(o),this.states.length>dt.MAX_LENGTH&&this.states.shift(),this.currentIndex=this.states.length-1}go(o){return this.currentIndex=Math.min(Math.max(this.currentIndex+o,0),this.states.length-1),this.currentState}undo(){return this.go(-1)}redo(){return this.go(1)}clear(){this.states.length=0,this.currentIndex=0}}dt.MAX_LENGTH=100;class Pc{constructor(o,n){this.el=o instanceof W5?o:o.isContentEditable&&o.tagName!=="INPUT"&&o.tagName!=="TEXTAREA"?new k8(o):new zc(o),this.masked=pe(n),this._listeners={},this._value="",this._unmaskedValue="",this._rawInputValue="",this.history=new dt,this._saveSelection=this._saveSelection.bind(this),this._onInput=this._onInput.bind(this),this._onChange=this._onChange.bind(this),this._onDrop=this._onDrop.bind(this),this._onFocus=this._onFocus.bind(this),this._onClick=this._onClick.bind(this),this._onUndo=this._onUndo.bind(this),this._onRedo=this._onRedo.bind(this),this.alignCursor=this.alignCursor.bind(this),this.alignCursorFriendly=this.alignCursorFriendly.bind(this),this._bindEvents(),this.updateValue(),this._onChange()}maskEquals(o){var n;return o==null||((n=this.masked)==null?void 0:n.maskEquals(o))}get mask(){return this.masked.mask}set mask(o){if(this.maskEquals(o))return;if(!(o instanceof O2.Masked)&&this.masked.constructor===m8(o)){this.masked.updateOptions({mask:o});return}const n=o instanceof O2.Masked?o:pe({mask:o});n.unmaskedValue=this.masked.unmaskedValue,this.masked=n}get value(){return this._value}set value(o){this.value!==o&&(this.masked.value=o,this.updateControl("auto"))}get unmaskedValue(){return this._unmaskedValue}set unmaskedValue(o){this.unmaskedValue!==o&&(this.masked.unmaskedValue=o,this.updateControl("auto"))}get rawInputValue(){return this._rawInputValue}set rawInputValue(o){this.rawInputValue!==o&&(this.masked.rawInputValue=o,this.updateControl(),this.alignCursor())}get typedValue(){return this.masked.typedValue}set typedValue(o){this.masked.typedValueEquals(o)||(this.masked.typedValue=o,this.updateControl("auto"))}get displayValue(){return this.masked.displayValue}_bindEvents(){this.el.bindEvents({selectionChange:this._saveSelection,input:this._onInput,drop:this._onDrop,click:this._onClick,focus:this._onFocus,commit:this._onChange,undo:this._onUndo,redo:this._onRedo})}_unbindEvents(){this.el&&this.el.unbindEvents()}_fireEvent(o,n){const r=this._listeners[o];r&&r.forEach(a=>a(n))}get selectionStart(){return this._cursorChanging?this._changingCursorPos:this.el.selectionStart}get cursorPos(){return this._cursorChanging?this._changingCursorPos:this.el.selectionEnd}set cursorPos(o){!this.el||!this.el.isActive||(this.el.select(o,o),this._saveSelection())}_saveSelection(){this.displayValue!==this.el.value&&console.warn("Element value was changed outside of mask. Syncronize mask using `mask.updateValue()` to work properly."),this._selection={start:this.selectionStart,end:this.cursorPos}}updateValue(){this.masked.value=this.el.value,this._value=this.masked.value,this._unmaskedValue=this.masked.unmaskedValue,this._rawInputValue=this.masked.rawInputValue}updateControl(o){const n=this.masked.unmaskedValue,r=this.masked.value,a=this.masked.rawInputValue,l=this.displayValue,i=this.unmaskedValue!==n||this.value!==r||this._rawInputValue!==a;this._unmaskedValue=n,this._value=r,this._rawInputValue=a,this.el.value!==l&&(this.el.value=l),o==="auto"?this.alignCursor():o!=null&&(this.cursorPos=o),i&&this._fireChangeEvents(),!this._historyChanging&&(i||this.history.isEmpty)&&this.history.push({unmaskedValue:n,selection:{start:this.selectionStart,end:this.cursorPos}})}updateOptions(o){const{mask:n,...r}=o,a=!this.maskEquals(n),l=this.masked.optionsIsChanged(r);a&&(this.mask=n),l&&this.masked.updateOptions(r),(a||l)&&this.updateControl()}updateCursor(o){o!=null&&(this.cursorPos=o,this._delayUpdateCursor(o))}_delayUpdateCursor(o){this._abortUpdateCursor(),this._changingCursorPos=o,this._cursorChanging=setTimeout(()=>{this.el&&(this.cursorPos=this._changingCursorPos,this._abortUpdateCursor())},10)}_fireChangeEvents(){this._fireEvent("accept",this._inputEvent),this.masked.isComplete&&this._fireEvent("complete",this._inputEvent)}_abortUpdateCursor(){this._cursorChanging&&(clearTimeout(this._cursorChanging),delete this._cursorChanging)}alignCursor(){this.cursorPos=this.masked.nearestInputPos(this.masked.nearestInputPos(this.cursorPos,Z2.LEFT))}alignCursorFriendly(){this.selectionStart===this.cursorPos&&this.alignCursor()}on(o,n){return this._listeners[o]||(this._listeners[o]=[]),this._listeners[o].push(n),this}off(o,n){if(!this._listeners[o])return this;if(!n)return delete this._listeners[o],this;const r=this._listeners[o].indexOf(n);return r>=0&&this._listeners[o].splice(r,1),this}_onInput(o){this._inputEvent=o,this._abortUpdateCursor();const n=new Fc({value:this.el.value,cursorPos:this.cursorPos,oldValue:this.displayValue,oldSelection:this._selection}),r=this.masked.rawInputValue,a=this.masked.splice(n.startChangePos,n.removed.length,n.inserted,n.removeDirection,{input:!0,raw:!0}).offset,l=r===this.masked.rawInputValue?n.removeDirection:Z2.NONE;let i=this.masked.nearestInputPos(n.startChangePos+a,l);l!==Z2.NONE&&(i=this.masked.nearestInputPos(i,Z2.NONE)),this.updateControl(i),delete this._inputEvent}_onChange(){this.displayValue!==this.el.value&&this.updateValue(),this.masked.doCommit(),this.updateControl(),this._saveSelection()}_onDrop(o){o.preventDefault(),o.stopPropagation()}_onFocus(o){this.alignCursorFriendly()}_onClick(o){this.alignCursorFriendly()}_onUndo(){this._applyHistoryState(this.history.undo())}_onRedo(){this._applyHistoryState(this.history.redo())}_applyHistoryState(o){o&&(this._historyChanging=!0,this.unmaskedValue=o.unmaskedValue,this.el.select(o.selection.start,o.selection.end),this._saveSelection(),this._historyChanging=!1)}destroy(){this._unbindEvents(),this._listeners.length=0,delete this.el}}O2.InputMask=Pc;class j2{static normalize(o){return Array.isArray(o)?o:[o,new j2]}constructor(o){Object.assign(this,{inserted:"",rawInserted:"",tailShift:0,skip:!1},o)}aggregate(o){return this.inserted+=o.inserted,this.rawInserted+=o.rawInserted,this.tailShift+=o.tailShift,this.skip=this.skip||o.skip,this}get offset(){return this.tailShift+this.inserted.length}get consumed(){return!!this.rawInserted||this.skip}equals(o){return this.inserted===o.inserted&&this.tailShift===o.tailShift&&this.rawInserted===o.rawInserted&&this.skip===o.skip}}O2.ChangeDetails=j2;class te{constructor(o,n,r){o===void 0&&(o=""),n===void 0&&(n=0),this.value=o,this.from=n,this.stop=r}toString(){return this.value}extend(o){this.value+=String(o)}appendTo(o){return o.append(this.toString(),{tail:!0}).aggregate(o._appendPlaceholder())}get state(){return{value:this.value,from:this.from,stop:this.stop}}set state(o){Object.assign(this,o)}unshift(o){if(!this.value.length||o!=null&&this.from>=o)return"";const n=this.value[0];return this.value=this.value.slice(1),n}shift(){if(!this.value.length)return"";const o=this.value[this.value.length-1];return this.value=this.value.slice(0,-1),o}}class J0{constructor(o){this._value="",this._update({...J0.DEFAULTS,...o}),this._initialized=!0}updateOptions(o){this.optionsIsChanged(o)&&this.withValueRefresh(this._update.bind(this,o))}_update(o){Object.assign(this,o)}get state(){return{_value:this.value,_rawInputValue:this.rawInputValue}}set state(o){this._value=o._value}reset(){this._value=""}get value(){return this._value}set value(o){this.resolve(o,{input:!0})}resolve(o,n){n===void 0&&(n={input:!0}),this.reset(),this.append(o,n,""),this.doCommit()}get unmaskedValue(){return this.value}set unmaskedValue(o){this.resolve(o,{})}get typedValue(){return this.parse?this.parse(this.value,this):this.unmaskedValue}set typedValue(o){this.format?this.value=this.format(o,this):this.unmaskedValue=String(o)}get rawInputValue(){return this.extractInput(0,this.displayValue.length,{raw:!0})}set rawInputValue(o){this.resolve(o,{raw:!0})}get displayValue(){return this.value}get isComplete(){return!0}get isFilled(){return this.isComplete}nearestInputPos(o,n){return o}totalInputPositions(o,n){return o===void 0&&(o=0),n===void 0&&(n=this.displayValue.length),Math.min(this.displayValue.length,n-o)}extractInput(o,n,r){return o===void 0&&(o=0),n===void 0&&(n=this.displayValue.length),this.displayValue.slice(o,n)}extractTail(o,n){return o===void 0&&(o=0),n===void 0&&(n=this.displayValue.length),new te(this.extractInput(o,n),o)}appendTail(o){return ze(o)&&(o=new te(String(o))),o.appendTo(this)}_appendCharRaw(o,n){return o?(this._value+=o,new j2({inserted:o,rawInserted:o})):new j2}_appendChar(o,n,r){n===void 0&&(n={});const a=this.state;let l;if([o,l]=this.doPrepareChar(o,n),o&&(l=l.aggregate(this._appendCharRaw(o,n)),!l.rawInserted&&this.autofix==="pad")){const i=this.state;this.state=a;let d=this.pad(n);const c=this._appendCharRaw(o,n);d=d.aggregate(c),c.rawInserted||d.equals(l)?l=d:this.state=i}if(l.inserted){let i,d=this.doValidate(n)!==!1;if(d&&r!=null){const c=this.state;if(this.overwrite===!0){i=r.state;for(let C=0;C<l.rawInserted.length;++C)r.unshift(this.displayValue.length-l.tailShift)}let p=this.appendTail(r);if(d=p.rawInserted.length===r.toString().length,!(d&&p.inserted)&&this.overwrite==="shift"){this.state=c,i=r.state;for(let C=0;C<l.rawInserted.length;++C)r.shift();p=this.appendTail(r),d=p.rawInserted.length===r.toString().length}d&&p.inserted&&(this.state=c)}d||(l=new j2,this.state=a,r&&i&&(r.state=i))}return l}_appendPlaceholder(){return new j2}_appendEager(){return new j2}append(o,n,r){if(!ze(o))throw new Error("value should be string");const a=ze(r)?new te(String(r)):r;n!=null&&n.tail&&(n._beforeTailState=this.state);let l;[o,l]=this.doPrepare(o,n);for(let i=0;i<o.length;++i){const d=this._appendChar(o[i],n,a);if(!d.rawInserted&&!this.doSkipInvalid(o[i],n,a))break;l.aggregate(d)}return(this.eager===!0||this.eager==="append")&&n!=null&&n.input&&o&&l.aggregate(this._appendEager()),a!=null&&(l.tailShift+=this.appendTail(a).tailShift),l}remove(o,n){return o===void 0&&(o=0),n===void 0&&(n=this.displayValue.length),this._value=this.displayValue.slice(0,o)+this.displayValue.slice(n),new j2}withValueRefresh(o){if(this._refreshing||!this._initialized)return o();this._refreshing=!0;const n=this.rawInputValue,r=this.value,a=o();return this.rawInputValue=n,this.value&&this.value!==r&&r.indexOf(this.value)===0&&(this.append(r.slice(this.displayValue.length),{},""),this.doCommit()),delete this._refreshing,a}runIsolated(o){if(this._isolated||!this._initialized)return o(this);this._isolated=!0;const n=this.state,r=o(this);return this.state=n,delete this._isolated,r}doSkipInvalid(o,n,r){return!!this.skipInvalid}doPrepare(o,n){return n===void 0&&(n={}),j2.normalize(this.prepare?this.prepare(o,this,n):o)}doPrepareChar(o,n){return n===void 0&&(n={}),j2.normalize(this.prepareChar?this.prepareChar(o,this,n):o)}doValidate(o){return(!this.validate||this.validate(this.value,this,o))&&(!this.parent||this.parent.doValidate(o))}doCommit(){this.commit&&this.commit(this.value,this)}splice(o,n,r,a,l){r===void 0&&(r=""),a===void 0&&(a=Z2.NONE),l===void 0&&(l={input:!0});const i=o+n,d=this.extractTail(i),c=this.eager===!0||this.eager==="remove";let p;c&&(a=Nc(a),p=this.extractInput(0,i,{raw:!0}));let C=o;const k=new j2;if(a!==Z2.NONE&&(C=this.nearestInputPos(o,n>1&&o!==0&&!c?Z2.NONE:a),k.tailShift=C-o),k.aggregate(this.remove(C)),c&&a!==Z2.NONE&&p===this.rawInputValue)if(a===Z2.FORCE_LEFT){let m;for(;p===this.rawInputValue&&(m=this.displayValue.length);)k.aggregate(new j2({tailShift:-1})).aggregate(this.remove(m-1))}else a===Z2.FORCE_RIGHT&&d.unshift();return k.aggregate(this.append(r,l,d))}maskEquals(o){return this.mask===o}optionsIsChanged(o){return!st(this,o)}typedValueEquals(o){const n=this.typedValue;return o===n||J0.EMPTY_VALUES.includes(o)&&J0.EMPTY_VALUES.includes(n)||(this.format?this.format(o,this)===this.format(this.typedValue,this):!1)}pad(o){return new j2}}J0.DEFAULTS={skipInvalid:!0},J0.EMPTY_VALUES=[void 0,null,""],O2.Masked=J0;class m3{constructor(o,n){o===void 0&&(o=[]),n===void 0&&(n=0),this.chunks=o,this.from=n}toString(){return this.chunks.map(String).join("")}extend(o){if(!String(o))return;o=ze(o)?new te(String(o)):o;const n=this.chunks[this.chunks.length-1],r=n&&(n.stop===o.stop||o.stop==null)&&o.from===n.from+n.toString().length;if(o instanceof te)r?n.extend(o.toString()):this.chunks.push(o);else if(o instanceof m3){if(o.stop==null){let a;for(;o.chunks.length&&o.chunks[0].stop==null;)a=o.chunks.shift(),a.from+=o.from,this.extend(a)}o.toString()&&(o.stop=o.blockIndex,this.chunks.push(o))}}appendTo(o){if(!(o instanceof O2.MaskedPattern))return new te(this.toString()).appendTo(o);const n=new j2;for(let r=0;r<this.chunks.length;++r){const a=this.chunks[r],l=o._mapPosToBlock(o.displayValue.length),i=a.stop;let d;if(i!=null&&(!l||l.index<=i)&&((a instanceof m3||o._stops.indexOf(i)>=0)&&n.aggregate(o._appendPlaceholder(i)),d=a instanceof m3&&o._blocks[i]),d){const c=d.appendTail(a);n.aggregate(c);const p=a.toString().slice(c.rawInserted.length);p&&n.aggregate(o.append(p,{tail:!0}))}else n.aggregate(o.append(a.toString(),{tail:!0}))}return n}get state(){return{chunks:this.chunks.map(o=>o.state),from:this.from,stop:this.stop,blockIndex:this.blockIndex}}set state(o){const{chunks:n,...r}=o;Object.assign(this,r),this.chunks=n.map(a=>{const l="chunks"in a?new m3:new te;return l.state=a,l})}unshift(o){if(!this.chunks.length||o!=null&&this.from>=o)return"";const n=o!=null?o-this.from:o;let r=0;for(;r<this.chunks.length;){const a=this.chunks[r],l=a.unshift(n);if(a.toString()){if(!l)break;++r}else this.chunks.splice(r,1);if(l)return l}return""}shift(){if(!this.chunks.length)return"";let o=this.chunks.length-1;for(;0<=o;){const n=this.chunks[o],r=n.shift();if(n.toString()){if(!r)break;--o}else this.chunks.splice(o,1);if(r)return r}return""}}class jc{constructor(o,n){this.masked=o,this._log=[];const{offset:r,index:a}=o._mapPosToBlock(n)||(n<0?{index:0,offset:0}:{index:this.masked._blocks.length,offset:0});this.offset=r,this.index=a,this.ok=!1}get block(){return this.masked._blocks[this.index]}get pos(){return this.masked._blockStartPos(this.index)+this.offset}get state(){return{index:this.index,offset:this.offset,ok:this.ok}}set state(o){Object.assign(this,o)}pushState(){this._log.push(this.state)}popState(){const o=this._log.pop();return o&&(this.state=o),o}bindBlock(){this.block||(this.index<0&&(this.index=0,this.offset=0),this.index>=this.masked._blocks.length&&(this.index=this.masked._blocks.length-1,this.offset=this.block.displayValue.length))}_pushLeft(o){for(this.pushState(),this.bindBlock();0<=this.index;--this.index,this.offset=((n=this.block)==null?void 0:n.displayValue.length)||0){var n;if(o())return this.ok=!0}return this.ok=!1}_pushRight(o){for(this.pushState(),this.bindBlock();this.index<this.masked._blocks.length;++this.index,this.offset=0)if(o())return this.ok=!0;return this.ok=!1}pushLeftBeforeFilled(){return this._pushLeft(()=>{if(!(this.block.isFixed||!this.block.value)&&(this.offset=this.block.nearestInputPos(this.offset,Z2.FORCE_LEFT),this.offset!==0))return!0})}pushLeftBeforeInput(){return this._pushLeft(()=>{if(!this.block.isFixed)return this.offset=this.block.nearestInputPos(this.offset,Z2.LEFT),!0})}pushLeftBeforeRequired(){return this._pushLeft(()=>{if(!(this.block.isFixed||this.block.isOptional&&!this.block.value))return this.offset=this.block.nearestInputPos(this.offset,Z2.LEFT),!0})}pushRightBeforeFilled(){return this._pushRight(()=>{if(!(this.block.isFixed||!this.block.value)&&(this.offset=this.block.nearestInputPos(this.offset,Z2.FORCE_RIGHT),this.offset!==this.block.value.length))return!0})}pushRightBeforeInput(){return this._pushRight(()=>{if(!this.block.isFixed)return this.offset=this.block.nearestInputPos(this.offset,Z2.NONE),!0})}pushRightBeforeRequired(){return this._pushRight(()=>{if(!(this.block.isFixed||this.block.isOptional&&!this.block.value))return this.offset=this.block.nearestInputPos(this.offset,Z2.NONE),!0})}}class y8{constructor(o){Object.assign(this,o),this._value="",this.isFixed=!0}get value(){return this._value}get unmaskedValue(){return this.isUnmasking?this.value:""}get rawInputValue(){return this._isRawInput?this.value:""}get displayValue(){return this.value}reset(){this._isRawInput=!1,this._value=""}remove(o,n){return o===void 0&&(o=0),n===void 0&&(n=this._value.length),this._value=this._value.slice(0,o)+this._value.slice(n),this._value||(this._isRawInput=!1),new j2}nearestInputPos(o,n){n===void 0&&(n=Z2.NONE);const r=0,a=this._value.length;switch(n){case Z2.LEFT:case Z2.FORCE_LEFT:return r;case Z2.NONE:case Z2.RIGHT:case Z2.FORCE_RIGHT:default:return a}}totalInputPositions(o,n){return o===void 0&&(o=0),n===void 0&&(n=this._value.length),this._isRawInput?n-o:0}extractInput(o,n,r){return o===void 0&&(o=0),n===void 0&&(n=this._value.length),r===void 0&&(r={}),r.raw&&this._isRawInput&&this._value.slice(o,n)||""}get isComplete(){return!0}get isFilled(){return!!this._value}_appendChar(o,n){if(n===void 0&&(n={}),this.isFilled)return new j2;const r=this.eager===!0||this.eager==="append",l=this.char===o&&(this.isUnmasking||n.input||n.raw)&&(!n.raw||!r)&&!n.tail,i=new j2({inserted:this.char,rawInserted:l?this.char:""});return this._value=this.char,this._isRawInput=l&&(n.raw||n.input),i}_appendEager(){return this._appendChar(this.char,{tail:!0})}_appendPlaceholder(){const o=new j2;return this.isFilled||(this._value=o.inserted=this.char),o}extractTail(){return new te("")}appendTail(o){return ze(o)&&(o=new te(String(o))),o.appendTo(this)}append(o,n,r){const a=this._appendChar(o[0],n);return r!=null&&(a.tailShift+=this.appendTail(r).tailShift),a}doCommit(){}get state(){return{_value:this._value,_rawInputValue:this.rawInputValue}}set state(o){this._value=o._value,this._isRawInput=!!o._rawInputValue}pad(o){return this._appendPlaceholder()}}class ut{constructor(o){const{parent:n,isOptional:r,placeholderChar:a,displayChar:l,lazy:i,eager:d,...c}=o;this.masked=pe(c),Object.assign(this,{parent:n,isOptional:r,placeholderChar:a,displayChar:l,lazy:i,eager:d})}reset(){this.isFilled=!1,this.masked.reset()}remove(o,n){return o===void 0&&(o=0),n===void 0&&(n=this.value.length),o===0&&n>=1?(this.isFilled=!1,this.masked.remove(o,n)):new j2}get value(){return this.masked.value||(this.isFilled&&!this.isOptional?this.placeholderChar:"")}get unmaskedValue(){return this.masked.unmaskedValue}get rawInputValue(){return this.masked.rawInputValue}get displayValue(){return this.masked.value&&this.displayChar||this.value}get isComplete(){return!!this.masked.value||this.isOptional}_appendChar(o,n){if(n===void 0&&(n={}),this.isFilled)return new j2;const r=this.masked.state;let a=this.masked._appendChar(o,this.currentMaskFlags(n));return a.inserted&&this.doValidate(n)===!1&&(a=new j2,this.masked.state=r),!a.inserted&&!this.isOptional&&!this.lazy&&!n.input&&(a.inserted=this.placeholderChar),a.skip=!a.inserted&&!this.isOptional,this.isFilled=!!a.inserted,a}append(o,n,r){return this.masked.append(o,this.currentMaskFlags(n),r)}_appendPlaceholder(){return this.isFilled||this.isOptional?new j2:(this.isFilled=!0,new j2({inserted:this.placeholderChar}))}_appendEager(){return new j2}extractTail(o,n){return this.masked.extractTail(o,n)}appendTail(o){return this.masked.appendTail(o)}extractInput(o,n,r){return o===void 0&&(o=0),n===void 0&&(n=this.value.length),this.masked.extractInput(o,n,r)}nearestInputPos(o,n){n===void 0&&(n=Z2.NONE);const r=0,a=this.value.length,l=Math.min(Math.max(o,r),a);switch(n){case Z2.LEFT:case Z2.FORCE_LEFT:return this.isComplete?l:r;case Z2.RIGHT:case Z2.FORCE_RIGHT:return this.isComplete?l:a;case Z2.NONE:default:return l}}totalInputPositions(o,n){return o===void 0&&(o=0),n===void 0&&(n=this.value.length),this.value.slice(o,n).length}doValidate(o){return this.masked.doValidate(this.currentMaskFlags(o))&&(!this.parent||this.parent.doValidate(this.currentMaskFlags(o)))}doCommit(){this.masked.doCommit()}get state(){return{_value:this.value,_rawInputValue:this.rawInputValue,masked:this.masked.state,isFilled:this.isFilled}}set state(o){this.masked.state=o.masked,this.isFilled=o.isFilled}currentMaskFlags(o){var n;return{...o,_beforeTailState:(o==null||(n=o._beforeTailState)==null?void 0:n.masked)||(o==null?void 0:o._beforeTailState)}}pad(o){return new j2}}ut.DEFAULT_DEFINITIONS={0:/\d/,a:/[\u0041-\u005A\u0061-\u007A\u00AA\u00B5\u00BA\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0\u08A2-\u08AC\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097F\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191C\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA697\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA80-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]/,"*":/./};class Rc extends J0{updateOptions(o){super.updateOptions(o)}_update(o){const n=o.mask;n&&(o.validate=r=>r.search(n)>=0),super._update(o)}}O2.MaskedRegExp=Rc;class e1 extends J0{constructor(o){super({...e1.DEFAULTS,...o,definitions:Object.assign({},ut.DEFAULT_DEFINITIONS,o==null?void 0:o.definitions)})}updateOptions(o){super.updateOptions(o)}_update(o){o.definitions=Object.assign({},this.definitions,o.definitions),super._update(o),this._rebuildMask()}_rebuildMask(){const o=this.definitions;this._blocks=[],this.exposeBlock=void 0,this._stops=[],this._maskedBlocks={};const n=this.mask;if(!n||!o)return;let r=!1,a=!1;for(let l=0;l<n.length;++l){if(this.blocks){const p=n.slice(l),C=Object.keys(this.blocks).filter(m=>p.indexOf(m)===0);C.sort((m,y)=>y.length-m.length);const k=C[0];if(k){const{expose:m,repeat:y,...b}=v9(this.blocks[k]),f={lazy:this.lazy,eager:this.eager,placeholderChar:this.placeholderChar,displayChar:this.displayChar,overwrite:this.overwrite,autofix:this.autofix,...b,repeat:y,parent:this},M=y!=null?new O2.RepeatBlock(f):pe(f);M&&(this._blocks.push(M),m&&(this.exposeBlock=M),this._maskedBlocks[k]||(this._maskedBlocks[k]=[]),this._maskedBlocks[k].push(this._blocks.length-1)),l+=k.length-1;continue}}let i=n[l],d=i in o;if(i===e1.STOP_CHAR){this._stops.push(this._blocks.length);continue}if(i==="{"||i==="}"){r=!r;continue}if(i==="["||i==="]"){a=!a;continue}if(i===e1.ESCAPE_CHAR){if(++l,i=n[l],!i)break;d=!1}const c=d?new ut({isOptional:a,lazy:this.lazy,eager:this.eager,placeholderChar:this.placeholderChar,displayChar:this.displayChar,...v9(o[i]),parent:this}):new y8({char:i,eager:this.eager,isUnmasking:r});this._blocks.push(c)}}get state(){return{...super.state,_blocks:this._blocks.map(o=>o.state)}}set state(o){if(!o){this.reset();return}const{_blocks:n,...r}=o;this._blocks.forEach((a,l)=>a.state=n[l]),super.state=r}reset(){super.reset(),this._blocks.forEach(o=>o.reset())}get isComplete(){return this.exposeBlock?this.exposeBlock.isComplete:this._blocks.every(o=>o.isComplete)}get isFilled(){return this._blocks.every(o=>o.isFilled)}get isFixed(){return this._blocks.every(o=>o.isFixed)}get isOptional(){return this._blocks.every(o=>o.isOptional)}doCommit(){this._blocks.forEach(o=>o.doCommit()),super.doCommit()}get unmaskedValue(){return this.exposeBlock?this.exposeBlock.unmaskedValue:this._blocks.reduce((o,n)=>o+=n.unmaskedValue,"")}set unmaskedValue(o){if(this.exposeBlock){const n=this.extractTail(this._blockStartPos(this._blocks.indexOf(this.exposeBlock))+this.exposeBlock.displayValue.length);this.exposeBlock.unmaskedValue=o,this.appendTail(n),this.doCommit()}else super.unmaskedValue=o}get value(){return this.exposeBlock?this.exposeBlock.value:this._blocks.reduce((o,n)=>o+=n.value,"")}set value(o){if(this.exposeBlock){const n=this.extractTail(this._blockStartPos(this._blocks.indexOf(this.exposeBlock))+this.exposeBlock.displayValue.length);this.exposeBlock.value=o,this.appendTail(n),this.doCommit()}else super.value=o}get typedValue(){return this.exposeBlock?this.exposeBlock.typedValue:super.typedValue}set typedValue(o){if(this.exposeBlock){const n=this.extractTail(this._blockStartPos(this._blocks.indexOf(this.exposeBlock))+this.exposeBlock.displayValue.length);this.exposeBlock.typedValue=o,this.appendTail(n),this.doCommit()}else super.typedValue=o}get displayValue(){return this._blocks.reduce((o,n)=>o+=n.displayValue,"")}appendTail(o){return super.appendTail(o).aggregate(this._appendPlaceholder())}_appendEager(){var o;const n=new j2;let r=(o=this._mapPosToBlock(this.displayValue.length))==null?void 0:o.index;if(r==null)return n;this._blocks[r].isFilled&&++r;for(let a=r;a<this._blocks.length;++a){const l=this._blocks[a]._appendEager();if(!l.inserted)break;n.aggregate(l)}return n}_appendCharRaw(o,n){n===void 0&&(n={});const r=this._mapPosToBlock(this.displayValue.length),a=new j2;if(!r)return a;for(let i=r.index,d;d=this._blocks[i];++i){var l;const c=d._appendChar(o,{...n,_beforeTailState:(l=n._beforeTailState)==null||(l=l._blocks)==null?void 0:l[i]});if(a.aggregate(c),c.consumed)break}return a}extractTail(o,n){o===void 0&&(o=0),n===void 0&&(n=this.displayValue.length);const r=new m3;return o===n||this._forEachBlocksInRange(o,n,(a,l,i,d)=>{const c=a.extractTail(i,d);c.stop=this._findStopBefore(l),c.from=this._blockStartPos(l),c instanceof m3&&(c.blockIndex=l),r.extend(c)}),r}extractInput(o,n,r){if(o===void 0&&(o=0),n===void 0&&(n=this.displayValue.length),r===void 0&&(r={}),o===n)return"";let a="";return this._forEachBlocksInRange(o,n,(l,i,d,c)=>{a+=l.extractInput(d,c,r)}),a}_findStopBefore(o){let n;for(let r=0;r<this._stops.length;++r){const a=this._stops[r];if(a<=o)n=a;else break}return n}_appendPlaceholder(o){const n=new j2;if(this.lazy&&o==null)return n;const r=this._mapPosToBlock(this.displayValue.length);if(!r)return n;const a=r.index,l=o??this._blocks.length;return this._blocks.slice(a,l).forEach(i=>{if(!i.lazy||o!=null){var d;n.aggregate(i._appendPlaceholder((d=i._blocks)==null?void 0:d.length))}}),n}_mapPosToBlock(o){let n="";for(let r=0;r<this._blocks.length;++r){const a=this._blocks[r],l=n.length;if(n+=a.displayValue,o<=n.length)return{index:r,offset:o-l}}}_blockStartPos(o){return this._blocks.slice(0,o).reduce((n,r)=>n+=r.displayValue.length,0)}_forEachBlocksInRange(o,n,r){n===void 0&&(n=this.displayValue.length);const a=this._mapPosToBlock(o);if(a){const l=this._mapPosToBlock(n),i=l&&a.index===l.index,d=a.offset,c=l&&i?l.offset:this._blocks[a.index].displayValue.length;if(r(this._blocks[a.index],a.index,d,c),l&&!i){for(let p=a.index+1;p<l.index;++p)r(this._blocks[p],p,0,this._blocks[p].displayValue.length);r(this._blocks[l.index],l.index,0,l.offset)}}}remove(o,n){o===void 0&&(o=0),n===void 0&&(n=this.displayValue.length);const r=super.remove(o,n);return this._forEachBlocksInRange(o,n,(a,l,i,d)=>{r.aggregate(a.remove(i,d))}),r}nearestInputPos(o,n){if(n===void 0&&(n=Z2.NONE),!this._blocks.length)return 0;const r=new jc(this,o);if(n===Z2.NONE)return r.pushRightBeforeInput()||(r.popState(),r.pushLeftBeforeInput())?r.pos:this.displayValue.length;if(n===Z2.LEFT||n===Z2.FORCE_LEFT){if(n===Z2.LEFT){if(r.pushRightBeforeFilled(),r.ok&&r.pos===o)return o;r.popState()}if(r.pushLeftBeforeInput(),r.pushLeftBeforeRequired(),r.pushLeftBeforeFilled(),n===Z2.LEFT){if(r.pushRightBeforeInput(),r.pushRightBeforeRequired(),r.ok&&r.pos<=o||(r.popState(),r.ok&&r.pos<=o))return r.pos;r.popState()}return r.ok?r.pos:n===Z2.FORCE_LEFT?0:(r.popState(),r.ok||(r.popState(),r.ok)?r.pos:0)}return n===Z2.RIGHT||n===Z2.FORCE_RIGHT?(r.pushRightBeforeInput(),r.pushRightBeforeRequired(),r.pushRightBeforeFilled()?r.pos:n===Z2.FORCE_RIGHT?this.displayValue.length:(r.popState(),r.ok||(r.popState(),r.ok)?r.pos:this.nearestInputPos(o,Z2.LEFT))):o}totalInputPositions(o,n){o===void 0&&(o=0),n===void 0&&(n=this.displayValue.length);let r=0;return this._forEachBlocksInRange(o,n,(a,l,i,d)=>{r+=a.totalInputPositions(i,d)}),r}maskedBlock(o){return this.maskedBlocks(o)[0]}maskedBlocks(o){const n=this._maskedBlocks[o];return n?n.map(r=>this._blocks[r]):[]}pad(o){const n=new j2;return this._forEachBlocksInRange(0,this.displayValue.length,r=>n.aggregate(r.pad(o))),n}}e1.DEFAULTS={...J0.DEFAULTS,lazy:!0,placeholderChar:"_"},e1.STOP_CHAR="`",e1.ESCAPE_CHAR="\\",e1.InputDefinition=ut,e1.FixedDefinition=y8,O2.MaskedPattern=e1;class Ct extends e1{get _matchFrom(){return this.maxLength-String(this.from).length}constructor(o){super(o)}updateOptions(o){super.updateOptions(o)}_update(o){const{to:n=this.to||0,from:r=this.from||0,maxLength:a=this.maxLength||0,autofix:l=this.autofix,...i}=o;this.to=n,this.from=r,this.maxLength=Math.max(String(n).length,a),this.autofix=l;const d=String(this.from).padStart(this.maxLength,"0"),c=String(this.to).padStart(this.maxLength,"0");let p=0;for(;p<c.length&&c[p]===d[p];)++p;i.mask=c.slice(0,p).replace(/0/g,"\\0")+"0".repeat(this.maxLength-p),super._update(i)}get isComplete(){return super.isComplete&&!!this.value}boundaries(o){let n="",r="";const[,a,l]=o.match(/^(\D*)(\d*)(\D*)/)||[];return l&&(n="0".repeat(a.length)+l,r="9".repeat(a.length)+l),n=n.padEnd(this.maxLength,"0"),r=r.padEnd(this.maxLength,"9"),[n,r]}doPrepareChar(o,n){n===void 0&&(n={});let r;return[o,r]=super.doPrepareChar(o.replace(/\D/g,""),n),o||(r.skip=!this.isComplete),[o,r]}_appendCharRaw(o,n){if(n===void 0&&(n={}),!this.autofix||this.value.length+1>this.maxLength)return super._appendCharRaw(o,n);const r=String(this.from).padStart(this.maxLength,"0"),a=String(this.to).padStart(this.maxLength,"0"),[l,i]=this.boundaries(this.value+o);return Number(i)<this.from?super._appendCharRaw(r[this.value.length],n):Number(l)>this.to?!n.tail&&this.autofix==="pad"&&this.value.length+1<this.maxLength?super._appendCharRaw(r[this.value.length],n).aggregate(this._appendCharRaw(o,n)):super._appendCharRaw(a[this.value.length],n):super._appendCharRaw(o,n)}doValidate(o){const n=this.value;if(n.search(/[^0]/)===-1&&n.length<=this._matchFrom)return!0;const[a,l]=this.boundaries(n);return this.from<=Number(l)&&Number(a)<=this.to&&super.doValidate(o)}pad(o){const n=new j2;if(this.value.length===this.maxLength)return n;const r=this.value,a=this.maxLength-this.value.length;if(a){this.reset();for(let l=0;l<a;++l)n.aggregate(super._appendCharRaw("0",o));r.split("").forEach(l=>this._appendCharRaw(l))}return n}}O2.MaskedRange=Ct;const Ic="d{.}`m{.}`Y";class me extends e1{static extractPatternOptions(o){const{mask:n,pattern:r,...a}=o;return{...a,mask:ze(n)?n:r}}constructor(o){super(me.extractPatternOptions({...me.DEFAULTS,...o}))}updateOptions(o){super.updateOptions(o)}_update(o){const{mask:n,pattern:r,blocks:a,...l}={...me.DEFAULTS,...o},i=Object.assign({},me.GET_DEFAULT_BLOCKS());o.min&&(i.Y.from=o.min.getFullYear()),o.max&&(i.Y.to=o.max.getFullYear()),o.min&&o.max&&i.Y.from===i.Y.to&&(i.m.from=o.min.getMonth()+1,i.m.to=o.max.getMonth()+1,i.m.from===i.m.to&&(i.d.from=o.min.getDate(),i.d.to=o.max.getDate())),Object.assign(i,this.blocks,a),super._update({...l,mask:ze(n)?n:r,blocks:i})}doValidate(o){const n=this.date;return super.doValidate(o)&&(!this.isComplete||this.isDateExist(this.value)&&n!=null&&(this.min==null||this.min<=n)&&(this.max==null||n<=this.max))}isDateExist(o){return this.format(this.parse(o,this),this).indexOf(o)>=0}get date(){return this.typedValue}set date(o){this.typedValue=o}get typedValue(){return this.isComplete?super.typedValue:null}set typedValue(o){super.typedValue=o}maskEquals(o){return o===Date||super.maskEquals(o)}optionsIsChanged(o){return super.optionsIsChanged(me.extractPatternOptions(o))}}me.GET_DEFAULT_BLOCKS=()=>({d:{mask:Ct,from:1,to:31,maxLength:2},m:{mask:Ct,from:1,to:12,maxLength:2},Y:{mask:Ct,from:1900,to:9999}}),me.DEFAULTS={...e1.DEFAULTS,mask:Date,pattern:Ic,format:(t,o)=>{if(!t)return"";const n=String(t.getDate()).padStart(2,"0"),r=String(t.getMonth()+1).padStart(2,"0"),a=t.getFullYear();return[n,r,a].join(".")},parse:(t,o)=>{const[n,r,a]=t.split(".").map(Number);return new Date(a,r-1,n)}},O2.MaskedDate=me;class ht extends J0{constructor(o){super({...ht.DEFAULTS,...o}),this.currentMask=void 0}updateOptions(o){super.updateOptions(o)}_update(o){super._update(o),"mask"in o&&(this.exposeMask=void 0,this.compiledMasks=Array.isArray(o.mask)?o.mask.map(n=>{const{expose:r,...a}=v9(n),l=pe({overwrite:this._overwrite,eager:this._eager,skipInvalid:this._skipInvalid,...a});return r&&(this.exposeMask=l),l}):[])}_appendCharRaw(o,n){n===void 0&&(n={});const r=this._applyDispatch(o,n);return this.currentMask&&r.aggregate(this.currentMask._appendChar(o,this.currentMaskFlags(n))),r}_applyDispatch(o,n,r){o===void 0&&(o=""),n===void 0&&(n={}),r===void 0&&(r="");const a=n.tail&&n._beforeTailState!=null?n._beforeTailState._value:this.value,l=this.rawInputValue,i=n.tail&&n._beforeTailState!=null?n._beforeTailState._rawInputValue:l,d=l.slice(i.length),c=this.currentMask,p=new j2,C=c==null?void 0:c.state;return this.currentMask=this.doDispatch(o,{...n},r),this.currentMask&&(this.currentMask!==c?(this.currentMask.reset(),i&&(this.currentMask.append(i,{raw:!0}),p.tailShift=this.currentMask.value.length-a.length),d&&(p.tailShift+=this.currentMask.append(d,{raw:!0,tail:!0}).tailShift)):C&&(this.currentMask.state=C)),p}_appendPlaceholder(){const o=this._applyDispatch();return this.currentMask&&o.aggregate(this.currentMask._appendPlaceholder()),o}_appendEager(){const o=this._applyDispatch();return this.currentMask&&o.aggregate(this.currentMask._appendEager()),o}appendTail(o){const n=new j2;return o&&n.aggregate(this._applyDispatch("",{},o)),n.aggregate(this.currentMask?this.currentMask.appendTail(o):super.appendTail(o))}currentMaskFlags(o){var n,r;return{...o,_beforeTailState:((n=o._beforeTailState)==null?void 0:n.currentMaskRef)===this.currentMask&&((r=o._beforeTailState)==null?void 0:r.currentMask)||o._beforeTailState}}doDispatch(o,n,r){return n===void 0&&(n={}),r===void 0&&(r=""),this.dispatch(o,this,n,r)}doValidate(o){return super.doValidate(o)&&(!this.currentMask||this.currentMask.doValidate(this.currentMaskFlags(o)))}doPrepare(o,n){n===void 0&&(n={});let[r,a]=super.doPrepare(o,n);if(this.currentMask){let l;[r,l]=super.doPrepare(r,this.currentMaskFlags(n)),a=a.aggregate(l)}return[r,a]}doPrepareChar(o,n){n===void 0&&(n={});let[r,a]=super.doPrepareChar(o,n);if(this.currentMask){let l;[r,l]=super.doPrepareChar(r,this.currentMaskFlags(n)),a=a.aggregate(l)}return[r,a]}reset(){var o;(o=this.currentMask)==null||o.reset(),this.compiledMasks.forEach(n=>n.reset())}get value(){return this.exposeMask?this.exposeMask.value:this.currentMask?this.currentMask.value:""}set value(o){this.exposeMask?(this.exposeMask.value=o,this.currentMask=this.exposeMask,this._applyDispatch()):super.value=o}get unmaskedValue(){return this.exposeMask?this.exposeMask.unmaskedValue:this.currentMask?this.currentMask.unmaskedValue:""}set unmaskedValue(o){this.exposeMask?(this.exposeMask.unmaskedValue=o,this.currentMask=this.exposeMask,this._applyDispatch()):super.unmaskedValue=o}get typedValue(){return this.exposeMask?this.exposeMask.typedValue:this.currentMask?this.currentMask.typedValue:""}set typedValue(o){if(this.exposeMask){this.exposeMask.typedValue=o,this.currentMask=this.exposeMask,this._applyDispatch();return}let n=String(o);this.currentMask&&(this.currentMask.typedValue=o,n=this.currentMask.unmaskedValue),this.unmaskedValue=n}get displayValue(){return this.currentMask?this.currentMask.displayValue:""}get isComplete(){var o;return!!((o=this.currentMask)!=null&&o.isComplete)}get isFilled(){var o;return!!((o=this.currentMask)!=null&&o.isFilled)}remove(o,n){const r=new j2;return this.currentMask&&r.aggregate(this.currentMask.remove(o,n)).aggregate(this._applyDispatch()),r}get state(){var o;return{...super.state,_rawInputValue:this.rawInputValue,compiledMasks:this.compiledMasks.map(n=>n.state),currentMaskRef:this.currentMask,currentMask:(o=this.currentMask)==null?void 0:o.state}}set state(o){const{compiledMasks:n,currentMaskRef:r,currentMask:a,...l}=o;n&&this.compiledMasks.forEach((i,d)=>i.state=n[d]),r!=null&&(this.currentMask=r,this.currentMask.state=a),super.state=l}extractInput(o,n,r){return this.currentMask?this.currentMask.extractInput(o,n,r):""}extractTail(o,n){return this.currentMask?this.currentMask.extractTail(o,n):super.extractTail(o,n)}doCommit(){this.currentMask&&this.currentMask.doCommit(),super.doCommit()}nearestInputPos(o,n){return this.currentMask?this.currentMask.nearestInputPos(o,n):super.nearestInputPos(o,n)}get overwrite(){return this.currentMask?this.currentMask.overwrite:this._overwrite}set overwrite(o){this._overwrite=o}get eager(){return this.currentMask?this.currentMask.eager:this._eager}set eager(o){this._eager=o}get skipInvalid(){return this.currentMask?this.currentMask.skipInvalid:this._skipInvalid}set skipInvalid(o){this._skipInvalid=o}get autofix(){return this.currentMask?this.currentMask.autofix:this._autofix}set autofix(o){this._autofix=o}maskEquals(o){return Array.isArray(o)?this.compiledMasks.every((n,r)=>{if(!o[r])return;const{mask:a,...l}=o[r];return st(n,l)&&n.maskEquals(a)}):super.maskEquals(o)}typedValueEquals(o){var n;return!!((n=this.currentMask)!=null&&n.typedValueEquals(o))}}ht.DEFAULTS={...J0.DEFAULTS,dispatch:(t,o,n,r)=>{if(!o.compiledMasks.length)return;const a=o.rawInputValue,l=o.compiledMasks.map((i,d)=>{const c=o.currentMask===i,p=c?i.displayValue.length:i.nearestInputPos(i.displayValue.length,Z2.FORCE_LEFT);return i.rawInputValue!==a?(i.reset(),i.append(a,{raw:!0})):c||i.remove(p),i.append(t,o.currentMaskFlags(n)),i.appendTail(r),{index:d,weight:i.rawInputValue.length,totalInputPositions:i.totalInputPositions(0,Math.max(p,i.nearestInputPos(i.displayValue.length,Z2.FORCE_LEFT)))}});return l.sort((i,d)=>d.weight-i.weight||d.totalInputPositions-i.totalInputPositions),o.compiledMasks[l[0].index]}},O2.MaskedDynamic=ht;class pt extends e1{constructor(o){super({...pt.DEFAULTS,...o})}updateOptions(o){super.updateOptions(o)}_update(o){const{enum:n,...r}=o;if(n){const a=n.map(d=>d.length),l=Math.min(...a),i=Math.max(...a)-l;r.mask="*".repeat(l),i&&(r.mask+="["+"*".repeat(i)+"]"),this.enum=n}super._update(r)}_appendCharRaw(o,n){n===void 0&&(n={});const r=Math.min(this.nearestInputPos(0,Z2.FORCE_RIGHT),this.value.length),a=this.enum.filter(l=>this.matchValue(l,this.unmaskedValue+o,r));if(a.length){a.length===1&&this._forEachBlocksInRange(0,this.value.length,(i,d)=>{const c=a[0][d];d>=this.value.length||c===i.value||(i.reset(),i._appendChar(c,n))});const l=super._appendCharRaw(a[0][this.value.length],n);return a.length===1&&a[0].slice(this.unmaskedValue.length).split("").forEach(i=>l.aggregate(super._appendCharRaw(i))),l}return new j2({skip:!this.isComplete})}extractTail(o,n){return o===void 0&&(o=0),n===void 0&&(n=this.displayValue.length),new te("",o)}remove(o,n){if(o===void 0&&(o=0),n===void 0&&(n=this.displayValue.length),o===n)return new j2;const r=Math.min(super.nearestInputPos(0,Z2.FORCE_RIGHT),this.value.length);let a;for(a=o;a>=0&&!(this.enum.filter(d=>this.matchValue(d,this.value.slice(r,a),r)).length>1);--a);const l=super.remove(a,n);return l.tailShift+=a-o,l}get isComplete(){return this.enum.indexOf(this.value)>=0}}pt.DEFAULTS={...e1.DEFAULTS,matchValue:(t,o,n)=>t.indexOf(o,n)===n},O2.MaskedEnum=pt;class Yc extends J0{updateOptions(o){super.updateOptions(o)}_update(o){super._update({...o,validate:o.mask})}}O2.MaskedFunction=Yc;var g8;class M1 extends J0{constructor(o){super({...M1.DEFAULTS,...o})}updateOptions(o){super.updateOptions(o)}_update(o){super._update(o),this._updateRegExps()}_updateRegExps(){const o="^"+(this.allowNegative?"[+|\\-]?":""),n="\\d*",r=(this.scale?"("+U5(this.radix)+"\\d{0,"+this.scale+"})?":"")+"$";this._numberRegExp=new RegExp(o+n+r),this._mapToRadixRegExp=new RegExp("["+this.mapToRadix.map(U5).join("")+"]","g"),this._thousandsSeparatorRegExp=new RegExp(U5(this.thousandsSeparator),"g")}_removeThousandsSeparators(o){return o.replace(this._thousandsSeparatorRegExp,"")}_insertThousandsSeparators(o){const n=o.split(this.radix);return n[0]=n[0].replace(/\B(?=(\d{3})+(?!\d))/g,this.thousandsSeparator),n.join(this.radix)}doPrepareChar(o,n){n===void 0&&(n={});const[r,a]=super.doPrepareChar(this._removeThousandsSeparators(this.scale&&this.mapToRadix.length&&(n.input&&n.raw||!n.input&&!n.raw)?o.replace(this._mapToRadixRegExp,this.radix):o),n);return o&&!r&&(a.skip=!0),r&&!this.allowPositive&&!this.value&&r!=="-"&&a.aggregate(this._appendChar("-")),[r,a]}_separatorsCount(o,n){n===void 0&&(n=!1);let r=0;for(let a=0;a<o;++a)this._value.indexOf(this.thousandsSeparator,a)===a&&(++r,n&&(o+=this.thousandsSeparator.length));return r}_separatorsCountFromSlice(o){return o===void 0&&(o=this._value),this._separatorsCount(this._removeThousandsSeparators(o).length,!0)}extractInput(o,n,r){return o===void 0&&(o=0),n===void 0&&(n=this.displayValue.length),[o,n]=this._adjustRangeWithSeparators(o,n),this._removeThousandsSeparators(super.extractInput(o,n,r))}_appendCharRaw(o,n){n===void 0&&(n={});const r=n.tail&&n._beforeTailState?n._beforeTailState._value:this._value,a=this._separatorsCountFromSlice(r);this._value=this._removeThousandsSeparators(this.value);const l=this._value;this._value+=o;const i=this.number;let d=!isNaN(i),c=!1;if(d){let m;this.min!=null&&this.min<0&&this.number<this.min&&(m=this.min),this.max!=null&&this.max>0&&this.number>this.max&&(m=this.max),m!=null&&(this.autofix?(this._value=this.format(m,this).replace(M1.UNMASKED_RADIX,this.radix),c||(c=l===this._value&&!n.tail)):d=!1),d&&(d=!!this._value.match(this._numberRegExp))}let p;d?p=new j2({inserted:this._value.slice(l.length),rawInserted:c?"":o,skip:c}):(this._value=l,p=new j2),this._value=this._insertThousandsSeparators(this._value);const C=n.tail&&n._beforeTailState?n._beforeTailState._value:this._value,k=this._separatorsCountFromSlice(C);return p.tailShift+=(k-a)*this.thousandsSeparator.length,p}_findSeparatorAround(o){if(this.thousandsSeparator){const n=o-this.thousandsSeparator.length+1,r=this.value.indexOf(this.thousandsSeparator,n);if(r<=o)return r}return-1}_adjustRangeWithSeparators(o,n){const r=this._findSeparatorAround(o);r>=0&&(o=r);const a=this._findSeparatorAround(n);return a>=0&&(n=a+this.thousandsSeparator.length),[o,n]}remove(o,n){o===void 0&&(o=0),n===void 0&&(n=this.displayValue.length),[o,n]=this._adjustRangeWithSeparators(o,n);const r=this.value.slice(0,o),a=this.value.slice(n),l=this._separatorsCount(r.length);this._value=this._insertThousandsSeparators(this._removeThousandsSeparators(r+a));const i=this._separatorsCountFromSlice(r);return new j2({tailShift:(i-l)*this.thousandsSeparator.length})}nearestInputPos(o,n){if(!this.thousandsSeparator)return o;switch(n){case Z2.NONE:case Z2.LEFT:case Z2.FORCE_LEFT:{const r=this._findSeparatorAround(o-1);if(r>=0){const a=r+this.thousandsSeparator.length;if(o<a||this.value.length<=a||n===Z2.FORCE_LEFT)return r}break}case Z2.RIGHT:case Z2.FORCE_RIGHT:{const r=this._findSeparatorAround(o);if(r>=0)return r+this.thousandsSeparator.length}}return o}doCommit(){if(this.value){const o=this.number;let n=o;this.min!=null&&(n=Math.max(n,this.min)),this.max!=null&&(n=Math.min(n,this.max)),n!==o&&(this.unmaskedValue=this.format(n,this));let r=this.value;this.normalizeZeros&&(r=this._normalizeZeros(r)),this.padFractionalZeros&&this.scale>0&&(r=this._padFractionalZeros(r)),this._value=r}super.doCommit()}_normalizeZeros(o){const n=this._removeThousandsSeparators(o).split(this.radix);return n[0]=n[0].replace(/^(\D*)(0*)(\d*)/,(r,a,l,i)=>a+i),o.length&&!/\d$/.test(n[0])&&(n[0]=n[0]+"0"),n.length>1&&(n[1]=n[1].replace(/0*$/,""),n[1].length||(n.length=1)),this._insertThousandsSeparators(n.join(this.radix))}_padFractionalZeros(o){if(!o)return o;const n=o.split(this.radix);return n.length<2&&n.push(""),n[1]=n[1].padEnd(this.scale,"0"),n.join(this.radix)}doSkipInvalid(o,n,r){n===void 0&&(n={});const a=this.scale===0&&o!==this.thousandsSeparator&&(o===this.radix||o===M1.UNMASKED_RADIX||this.mapToRadix.includes(o));return super.doSkipInvalid(o,n,r)&&!a}get unmaskedValue(){return this._removeThousandsSeparators(this._normalizeZeros(this.value)).replace(this.radix,M1.UNMASKED_RADIX)}set unmaskedValue(o){super.unmaskedValue=o}get typedValue(){return this.parse(this.unmaskedValue,this)}set typedValue(o){this.rawInputValue=this.format(o,this).replace(M1.UNMASKED_RADIX,this.radix)}get number(){return this.typedValue}set number(o){this.typedValue=o}get allowNegative(){return this.min!=null&&this.min<0||this.max!=null&&this.max<0}get allowPositive(){return this.min!=null&&this.min>0||this.max!=null&&this.max>0}typedValueEquals(o){return(super.typedValueEquals(o)||M1.EMPTY_VALUES.includes(o)&&M1.EMPTY_VALUES.includes(this.typedValue))&&!(o===0&&this.value==="")}}g8=M1,M1.UNMASKED_RADIX=".",M1.EMPTY_VALUES=[...J0.EMPTY_VALUES,0],M1.DEFAULTS={...J0.DEFAULTS,mask:Number,radix:",",thousandsSeparator:"",mapToRadix:[g8.UNMASKED_RADIX],min:Number.MIN_SAFE_INTEGER,max:Number.MAX_SAFE_INTEGER,scale:2,normalizeZeros:!0,padFractionalZeros:!1,parse:Number,format:t=>t.toLocaleString("en-US",{useGrouping:!1,maximumFractionDigits:20})},O2.MaskedNumber=M1;const q5={MASKED:"value",UNMASKED:"unmaskedValue",TYPED:"typedValue"};function b8(t,o,n){o===void 0&&(o=q5.MASKED),n===void 0&&(n=q5.MASKED);const r=pe(t);return a=>r.runIsolated(l=>(l[o]=a,l[n]))}function Uc(t,o,n,r){return b8(o,n,r)(t)}O2.PIPE_TYPE=q5,O2.createPipe=b8,O2.pipe=Uc;class Wc extends e1{get repeatFrom(){var o;return(o=Array.isArray(this.repeat)?this.repeat[0]:this.repeat===1/0?0:this.repeat)!=null?o:0}get repeatTo(){var o;return(o=Array.isArray(this.repeat)?this.repeat[1]:this.repeat)!=null?o:1/0}constructor(o){super(o)}updateOptions(o){super.updateOptions(o)}_update(o){var n,r,a;const{repeat:l,...i}=v9(o);this._blockOpts=Object.assign({},this._blockOpts,i);const d=pe(this._blockOpts);this.repeat=(n=(r=l??d.repeat)!=null?r:this.repeat)!=null?n:1/0,super._update({mask:"m".repeat(Math.max(this.repeatTo===1/0&&((a=this._blocks)==null?void 0:a.length)||0,this.repeatFrom)),blocks:{m:d},eager:d.eager,overwrite:d.overwrite,skipInvalid:d.skipInvalid,lazy:d.lazy,placeholderChar:d.placeholderChar,displayChar:d.displayChar})}_allocateBlock(o){if(o<this._blocks.length)return this._blocks[o];if(this.repeatTo===1/0||this._blocks.length<this.repeatTo)return this._blocks.push(pe(this._blockOpts)),this.mask+="m",this._blocks[this._blocks.length-1]}_appendCharRaw(o,n){n===void 0&&(n={});const r=new j2;for(let c=(a=(l=this._mapPosToBlock(this.displayValue.length))==null?void 0:l.index)!=null?a:Math.max(this._blocks.length-1,0),p,C;p=(i=this._blocks[c])!=null?i:C=!C&&this._allocateBlock(c);++c){var a,l,i,d;const k=p._appendChar(o,{...n,_beforeTailState:(d=n._beforeTailState)==null||(d=d._blocks)==null?void 0:d[c]});if(k.skip&&C){this._blocks.pop(),this.mask=this.mask.slice(1);break}if(r.aggregate(k),k.consumed)break}return r}_trimEmptyTail(o,n){var r,a;o===void 0&&(o=0);const l=Math.max(((r=this._mapPosToBlock(o))==null?void 0:r.index)||0,this.repeatFrom,0);let i;n!=null&&(i=(a=this._mapPosToBlock(n))==null?void 0:a.index),i==null&&(i=this._blocks.length-1);let d=0;for(let c=i;l<=c&&!this._blocks[c].unmaskedValue;--c,++d);d&&(this._blocks.splice(i-d+1,d),this.mask=this.mask.slice(d))}reset(){super.reset(),this._trimEmptyTail()}remove(o,n){o===void 0&&(o=0),n===void 0&&(n=this.displayValue.length);const r=super.remove(o,n);return this._trimEmptyTail(o,n),r}totalInputPositions(o,n){return o===void 0&&(o=0),n==null&&this.repeatTo===1/0?1/0:super.totalInputPositions(o,n)}get state(){return super.state}set state(o){this._blocks.length=o._blocks.length,this.mask=this.mask.slice(0,this._blocks.length),super.state=o}}O2.RepeatBlock=Wc;try{globalThis.IMask=O2}catch{}var qc={mask:void 0,prepare:Function,prepareChar:Function,validate:Function,commit:Function,overwrite:{type:Boolean,required:!1,default:void 0},eager:{required:!1,default:void 0,validator:t=>["append","remove"].includes(t)||typeof t=="boolean"},skipInvalid:{type:Boolean,required:!1,default:void 0},placeholderChar:String,displayChar:String,lazy:{type:Boolean,required:!1,default:void 0},definitions:Object,blocks:Object,enum:Array,maxLength:Number,from:Number,to:Number,pattern:String,format:Function,parse:Function,autofix:{required:!1,default:void 0,validator:t=>t==="pad"||typeof t=="boolean"},radix:String,thousandsSeparator:String,mapToRadix:Array,scale:Number,normalizeZeros:{type:Boolean,required:!1,default:void 0},padFractionalZeros:{type:Boolean,required:!1,default:void 0},min:[Number,Date],max:[Number,Date],dispatch:Function};function Gc(t,o){let{emit:n,onAccept:r,onComplete:a,defaultValue:l,defaultUnmaskedValue:i,defaultTypedValue:d}=o===void 0?{}:o;const c=e.isRef(t)?t:e.ref(t),p=e.ref(),C=e.ref(),k=e.ref(""),m=e.ref(""),y=e.ref();let b,f=k.value,M=m.value,V=y.value;function S(){V=y.value=C.value.typedValue,M=m.value=C.value.unmaskedValue,f=k.value=C.value.value}function x(D){S(),n&&(n("accept",k.value,D),n("accept:masked",k.value,D),n("accept:typed",y.value,D),n("accept:unmasked",m.value,D)),r==null||r(D)}function B(D){n&&(n("complete",C.value.value,D),n("complete:masked",C.value.value,D),n("complete:typed",C.value.typedValue,D),n("complete:unmasked",C.value.unmaskedValue,D)),a==null||a(D)}const O=()=>{!C.value||m.value===void 0||(M!==m.value&&(C.value.unmaskedValue=m.value,C.value.unmaskedValue!==m.value&&x()),M=void 0)};e.watch(m,O);const _=()=>{!C.value||k.value===void 0||(f!==k.value&&(C.value.value=k.value,C.value.value!==k.value&&x()),f=void 0)};e.watch(k,_);const N=()=>{!C.value||y.value===void 0||(V!==y.value&&(C.value.typedValue=y.value,C.value.masked.typedValueEquals(y.value)||x()),V=void 0)};e.watch(y,N);function Z(){b=p.value;const D=c.value;!b||!(D!=null&&D.mask)||(C.value=O2(b,D),l!==void 0&&(k.value=l),i!==void 0&&(m.value=i),d!==void 0&&(y.value=d),O(),_(),N(),S(),C.value.on("accept",x).on("complete",B))}function Y(){var D;(D=C.value)==null||D.destroy(),C.value=void 0}return e.onMounted(Z),e.onUnmounted(Y),e.watch([p,c],()=>{const D=p.value,z=c.value;(!(z!=null&&z.mask)||D!==b)&&Y(),D&&(C.value?C.value.updateOptions(z):Z())}),{el:p,mask:e.readonly(C),masked:k,unmasked:m,typed:y}}function Xc(t,o){return t={...t},Object.keys(t).forEach(n=>{(t[n]===void 0||o.includes(n))&&delete t[n]}),t}const Kc=["typed","unmasked","value","modelValue"];var Qc=e.defineComponent({name:"imask-input",inheritAttrs:!1,props:{modelValue:String,value:String,unmasked:String,typed:{validator:()=>!0},...qc},emits:["update:modelValue","update:masked","update:value","update:unmasked","update:typed","accept","accept:value","accept:masked","accept:unmasked","accept:typed","complete","complete:value","complete:masked","complete:unmasked","complete:typed"],setup(t,o){let{attrs:n,emit:r}=o;const{el:a,mask:l,masked:i,unmasked:d,typed:c}=Gc(Xc(t,Kc),{emit:r,onAccept:y=>{const b=i.value;r("accept:value",b,y),r("update:value",b,y),r("update:masked",b,y),r("update:modelValue",b,y),r("update:unmasked",d.value,y),r("update:typed",c.value,y)},onComplete:y=>{r("complete:value",i.value,y)}}),p=e.toRef(t,"value"),C=e.toRef(t,"modelValue"),k=e.toRef(t,"unmasked"),m=e.toRef(t,"typed");return i.value=C.value||p.value||"",d.value=k.value||"",c.value=m.value,e.watch(p,y=>i.value=y),e.watch(C,y=>i.value=y),e.watch(k,y=>d.value=y),e.watch(m,y=>c.value=y),()=>{const y={...n,value:t.value!=null?t.value:t.modelValue!=null?t.modelValue:l.value?l.value.displayValue:"",ref:a};return t.mask||(y.onInput=b=>{r("update:modelValue",b.target.value),r("update:value",b.target.value)}),e.h("input",y)}}}),Jc=Qc;const ed=["dir"],td=["for"],od={class:"mc-field-text__inner"},nd={class:"mc-field-text__main"},rd={key:0,class:"mc-field-text__prepend"},ad={class:"mc-field-text__input-wrapper"},ld=["value","maxlength"],id=["value"],sd=["value","type","readonly","maxlength"],cd={key:0,class:"mc-field-text__right"},dd={key:0,class:"mc-field-text__footer"},ud={key:1},O3=e.defineComponent({__name:"McFieldText",props:{modelValue:{type:[String,Number],default:null},type:{type:String,default:w0.Text},title:{type:String,default:null},mask:{type:String,default:null},helpText:{type:String,default:null},disabled:{type:Boolean,default:!1},errors:{type:Array,default:null},placeholder:{type:String,default:null},name:{type:String,required:!0},dateMaskPlaceholder:{type:Object,default:()=>({})},maxLength:{type:Number,default:null},copy:{type:Boolean,default:!1},autocomplete:{type:String,default:Ft.On},readOnly:{type:Boolean,default:!1},tabindex:{type:[String,Number]},passwordTooltip:{type:String,default:"Show/Hide"},passwordHideTooltip:{type:String,default:null},clearOutput:{type:Boolean,default:!1},maskOptions:{type:Object,default:null},required:{type:Boolean,default:!1},locale:{type:String,default:null},isMobile:{type:Boolean,default:!1},maxDecimals:{type:Number,default:2},dir:{type:String,default:_1.Ltr}},emits:["update:modelValue","keydown","copy"],setup(t,{emit:o}){const{textarea:n}=eo(),r=o,a=e.useSlots(),l=e.useAttrs(),i=t,d=e.ref(0),c=e.ref(0),p=e.ref(i.type),C=ee(i.errors),k=e.computed(()=>i.dir===_1.Rtl),m=e.computed(()=>({"mc-field-text":!0,"mc-field-text--error":!!C.errorText.value,"mc-field-text--textarea":M.value,"mc-field-text--textarea-autosize":V.value,"mc-field-text--disabled":i.disabled,"mc-field-text--copy":i.copy,"mc-field-text--rtl":k.value})),y=e.computed(()=>`${i.title}${i.required?" *":""}`),b=e.computed(()=>p.value===w0.Date),f=e.computed(()=>!!i.mask||!!i.maskOptions||b.value),M=e.computed(()=>i.type===w0.Textarea),V=e.computed(()=>i.type===w0.TextareaAutosize),S=e.computed(()=>i.type===w0.Password),x=e.computed(()=>i.type===w0.AmountFormat),B=e.computed(()=>!!i.maxLength&&(M.value||V.value)),O=e.computed(()=>p.value===w0.Password),_=e.computed(()=>O.value?"visibility":"visibility_off"),N=e.computed(()=>i.modelValue?String(i.modelValue).length:0),Z=e.computed(()=>`${N.value}/${i.maxLength}`),Y=e.computed(()=>i.maxLength<+N.value?"red":"dark-gray"),D=e.computed(()=>({mask:Date,autofix:!0,blocks:{d:{mask:O2.MaskedRange,placeholderChar:i.dateMaskPlaceholder.date||"d",from:1,to:31,maxLength:2},m:{mask:O2.MaskedRange,placeholderChar:i.dateMaskPlaceholder.month||"m",from:1,to:12,maxLength:2},Y:{mask:O2.MaskedRange,placeholderChar:i.dateMaskPlaceholder.year||"y",from:1900,to:2999,maxLength:4}}})),z=e.computed(()=>({...w.value,mask:i.mask,lazy:!1,overwrite:!1,unmask:i.clearOutput,definitions:{"#":/./},readonly:i.readOnly,maxlength:i.maxLength,type:"tel",...l,...i.maskOptions??{},...b.value?D.value:{}})),W=e.computed({get(){return x.value&&!k.value?X(String(i.modelValue)):i.modelValue},set(i2){C.toggleErrorVisible(),r("update:modelValue",i2)}}),u2=i2=>{W.value=t2(i2)},w=e.computed(()=>({style:T.value,placeholder:i.placeholder,disabled:i.disabled,name:i.name,id:i.name,autocomplete:i.autocomplete,tabindex:i.tabindex,...l,class:["mc-field-text__input",l.class||""].join(" ")})),T=e.computed(()=>{const i2=parseInt(r1[150]);let k2={};if(M.value||V.value){const b2=B.value?"400":"150";k2={paddingBottom:`${+r1[b2].replace("px","")-1}px`}}return{paddingInlineStart:d.value&&`${d.value+i2}px`,paddingInlineEnd:c.value&&`${c.value+i2}px`,...!M.value&&!V.value?{boxSizing:"border-box"}:{},...k2}});e.onMounted(()=>{v()});const H=i2=>{if(i2&&i.maxDecimals){const[k2,b2]=i2.split(".");if((b2==null?void 0:b2.length)>i.maxDecimals)return`${k2}.${b2.slice(0,i.maxDecimals)}`}return i2},I=i2=>{let k2=i2;const[b2]=i2||[];return i2.length>1&&+b2==0&&i2.indexOf(".")===-1&&(k2=i2.slice(1)),k2},t2=i2=>{var E,c2,y2,d2;const k2=i2.target;let b2=b.value&&k2&&k2.value?(E=k2.value)==null?void 0:E.substring(0,10):k2.value,Q=(c2=r2(k2))==null?void 0:c2.start,p2=$(b2);switch(i.type){case w0.Num:{let[S2]=/-?\d*[\.]?\d*/.exec(String(b2))||[];S2=H(S2),S2=I(S2),b2=S2,k2.value=S2;break}case w0.Int:{let[S2]=/-?\d*/.exec(String(k2.value))||[];S2=I(S2),b2=S2,k2.value=S2;break}case w0.AmountFormat:{b2=H(b2),b2=I(b2),p2=$(b2);const S2=parseFloat(p2),A=p2.replace(/ /gm,"");b2=p2?String(S2)===A?S2:A||S2||p2:null;const R=X(p2);k2.value=k.value?R.replace(/ /gm,""):R;const J=((d2=(y2=k2.value)==null?void 0:y2.slice(0,Q).replace(/[^ ]/gm,""))==null?void 0:d2.length)||0;o2(k2,Q+J,Q+J);break}case w0.Uppercase:{b2=b2==null?void 0:b2.toUpperCase(),k2.value=b2,o2(k2,Q,Q);break}case w0.Lowercase:{b2=b2==null?void 0:b2.toLowerCase(),k2.value=b2,o2(k2,Q,Q);break}case w0.Password:b2=b2==null?void 0:b2.replace(/ /gm,""),k2.value=b2,o2(k2,Q,Q);break;case w0.PhoneNumber:b2.length===0&&(b2="+"),b2.charAt(0)!=="+"&&(b2="+"+b2),b2=b2.replace(/(?!^)\D/g,""),k2.value=b2;break}return b2},P=i2=>{var k2;switch(i.type){case w0.AmountFormat:case w0.Num:{i2.key==="."&&typeof i.modelValue=="string"&&((k2=i.modelValue)!=null&&k2.includes("."))&&i2.preventDefault();break}}r("keydown",i2)},$=i2=>{var b2,Q;if(!i2)return i2;const[k2]=/-?\d*[\.]?\d*/.exec((Q=(b2=String(i2))==null?void 0:b2.replace(/ /gm,""))==null?void 0:Q.trim())||[];return k2},o2=(i2,k2,b2)=>{i2.setSelectionRange&&(i2.focus(),i2.setSelectionRange(k2,b2))},r2=i2=>i2.selectionStart||i2.selectionStart===0?{start:i2.selectionStart,end:i2.selectionEnd}:{start:0,end:0},X=i2=>{var c2;const k2=$(i2),b2=!!((c2=String(k2))!=null&&c2.match(/\./)),[Q,p2]=String(k2).replace(/[^\d\.-]/g,"").replace(/\B(?=(?:\d{3})+(?!\d))/g," ").split("."),E=[Q,(p2==null?void 0:p2.replace(/ /gm,""))||""];return b2?E.join("."):E.filter(y2=>!!y2).join(".")},v=()=>{d.value=+U("prepend"),c.value=+U("append")},U=i2=>{const k2=parseInt(r1[50]);let b2=a[i2]?(a[i2]||[]).reduce(p2=>p2+k2,0)+k2:k2;if(i2==="prepend")return b2;const Q=parseInt(r1[300]);return b2=b2?b2+k2:k2,i.copy&&(b2+=Q),S.value&&(b2+=Q),b2},h2=()=>{r("copy",i.modelValue)},F=()=>{p.value=O.value?w0.Text:w0.Password};return(i2,k2)=>(e.openBlock(),e.createElementBlock("div",{ref:"field",dir:i.dir,class:e.normalizeClass(m.value)},[e.createElementVNode("label",{for:t.name,class:"mc-field-text__header"},[e.renderSlot(i2.$slots,"header",{},()=>[t.title?(e.openBlock(),e.createBlock(z2,{key:0,"max-width":"100%",weight:e.unref(Y0).Medium},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(y.value),1)]),_:1},8,["weight"])):e.createCommentVNode("",!0)])],8,td),e.createElementVNode("div",od,[e.createElementVNode("div",nd,[i2.$slots.prepend?(e.openBlock(),e.createElementBlock("div",rd,[e.renderSlot(i2.$slots,"prepend")])):e.createCommentVNode("",!0),e.createElementVNode("label",ad,[M.value?(e.openBlock(),e.createElementBlock("textarea",e.mergeProps({key:0,value:W.value},w.value,{maxlength:t.maxLength,rows:"1",onInput:u2}),null,16,ld)):V.value?(e.openBlock(),e.createElementBlock("textarea",e.mergeProps({key:1,value:W.value,ref_key:"textarea",ref:n},w.value,{onInput:u2}),null,16,id)):(e.openBlock(),e.createElementBlock(e.Fragment,{key:2},[f.value?(e.openBlock(),e.createBlock(e.unref(Jc),e.mergeProps({key:0,value:W.value},z.value,{onInput:u2}),null,16,["value"])):(e.openBlock(),e.createElementBlock("input",e.mergeProps({key:1,value:W.value,ref:"input"},w.value,{type:p.value,readonly:i.readOnly,maxlength:t.maxLength,onKeydown:P,onInput:u2}),null,16,sd))],64))]),i2.$slots.append||t.copy||S.value?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(["mc-field-text__append",{"mc-field-text__append--indent-bottom":B.value}])},[e.renderSlot(i2.$slots,"append"),t.copy?(e.openBlock(),e.createBlock(i0,{key:0,variation:"black-link",size:e.unref(X0).MCompact,onClick:e.withModifiers(h2,["prevent"])},{"icon-append":e.withCtx(()=>[e.createVNode(W2,{name:"copy"})]),_:1},8,["size"])):e.createCommentVNode("",!0),S.value?(e.openBlock(),e.createBlock(p3,{key:1,content:O.value?i.passwordTooltip:i.passwordHideTooltip||i.passwordTooltip},{default:e.withCtx(()=>[e.createVNode(i0,{variation:"black-link",size:e.unref(X0).MCompact,tabindex:"-1",type:e.unref(jt).Button,onClick:e.withModifiers(F,["prevent"])},{"icon-append":e.withCtx(()=>[e.createVNode(W2,{name:_.value},null,8,["name"])]),_:1},8,["size","type"])]),_:1},8,["content"])):e.createCommentVNode("",!0)],2)):e.createCommentVNode("",!0),B.value?(e.openBlock(),e.createBlock(z2,{key:2,class:"mc-field-text__char-counter",variation:e.unref(h0).Overline,"text-align":e.unref(Se).Right,color:Y.value},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(Z.value),1)]),_:1},8,["variation","text-align","color"])):e.createCommentVNode("",!0)]),i2.$slots.right?(e.openBlock(),e.createElementBlock("div",cd,[e.renderSlot(i2.$slots,"right")])):e.createCommentVNode("",!0)]),e.unref(C).errorText.value||i.helpText||i2.$slots.footer?(e.openBlock(),e.createElementBlock("div",dd,[e.unref(C).errorText.value?(e.openBlock(),e.createBlock(z2,{key:0,"tag-name":"div",color:"red",variation:e.unref(h0).Overline,class:"mc-field-text__error-text","html-data":e.unref(C).errorText.value},null,8,["variation","html-data"])):e.createCommentVNode("",!0),e.unref(C).errorText.value?(e.openBlock(),e.createElementBlock("br",ud)):e.createCommentVNode("",!0),e.renderSlot(i2.$slots,"footer",{},()=>[i.helpText?(e.openBlock(),e.createBlock(z2,{key:0,"tag-name":"div",variation:e.unref(h0).Overline,color:"gray","max-width":"100%"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(i.helpText),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0)],10,ed))}}),Cd={class:"mc-field-toggle__content"},hd={class:"mc-field-toggle__text"},pd={class:"mc-field-toggle__wrapper"},md=e.defineComponent({__name:"McFieldToggle",props:{modelValue:{type:[Boolean,String,Number],default:null},checkedValue:{type:[Boolean,String,Number],default:!0},uncheckedValue:{type:[Boolean,String,Number],default:!1},coloredText:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},textPosition:{type:String,default:"left"},color:{type:String,default:"purple"},errors:{type:Array,default:()=>[]},tabindex:{type:[String,Number]}},emits:["update:modelValue"],setup(t,{emit:o}){const n=o,r=t,a=ee(r.errors),l=e.computed(()=>r.modelValue===r.checkedValue),i=e.computed(()=>({"mc-field-toggle":!0,"mc-field-toggle--checked":l.value,"mc-field-toggle--disabled":r.disabled,"mc-field-toggle--colored-text":r.coloredText,[`mc-field-toggle--text-position-${r.textPosition}`]:!!r.textPosition})),d=e.computed(()=>{let C,k="initial";switch(r.color){case"purple":{C="light-purple";break}default:C=r.color,k="50%"}return{"--mc-field-toggle-color":r.color&&X2[r.color],"--mc-field-toggle-disabled-color":C&&X2[C],"--mc-field-toggle-saturate-value":k}}),c=e.computed(()=>({checked:l.value,disabled:r.disabled,tabindex:r.tabindex,class:"mc-field-toggle__field",type:"checkbox"})),p=C=>{const m=C.target.checked;a.toggleErrorVisible(),n("update:modelValue",m?r.checkedValue:r.uncheckedValue)};return(C,k)=>(e.openBlock(),e.createElementBlock("div",Cd,[e.createElementVNode("label",{class:e.normalizeClass(i.value),style:e.normalizeStyle(d.value)},[e.createElementVNode("span",hd,[e.renderSlot(C.$slots,"default")]),e.createElementVNode("span",pd,[e.createElementVNode("input",e.mergeProps(c.value,{onInput:p}),null,16),k[0]||(k[0]=e.createElementVNode("span",{class:"mc-field-toggle__slider"},null,-1))])],6),e.unref(a).errorText.value?(e.openBlock(),e.createBlock(z2,{key:0,"tag-name":"div",color:"red",variation:e.unref(h0).Overline,"max-width":"100%"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(a).errorText.value),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0)]))}}),fd={class:"el-infinity-loading__wrapper"},kd=["id"],M8=e.defineComponent({__name:"McInfinityLoadingTrigger",props:{overlap:{type:Number,default:100},active:{type:Boolean,default:!1},root:{type:String,default:null}},emits:["loading","hide"],setup(t,{emit:o}){const n=o,r=t,a=e.ref(),l=e.ref(),i=e.ref(`indicator_${Date.now()}`);e.onMounted(()=>{d()}),e.onBeforeUnmount(()=>{c()});const d=()=>{var p;l.value=document.getElementById(i.value),a.value=new IntersectionObserver(([C])=>(C.intersectionRatio===1||C.isIntersecting)&&r.active?n("loading"):n("hide"),{...r.root?{root:(p=l.value)==null?void 0:p.closest(r.root)}:{},rootMargin:`${r.overlap}px`,threshold:.1}),l.value&&a.value.observe(l.value)},c=()=>{a.value&&a.value.disconnect(),a.value=null};return e.watch(()=>r.active,p=>{c(),p&&d()}),(p,C)=>(e.openBlock(),e.createElementBlock("section",fd,[e.createElementVNode("div",{id:i.value,class:"el-infinity-loading"},null,8,kd)]))}}),yd={class:"mc-no-data__wrapper"},gd=["src"],bd={key:3,class:"mc-no-data__text"},Md={key:4,class:"mc-no-data__actions"},L8=e.defineComponent({__name:"McNoData",props:{img:{type:String,default:"/no_table_data.png"},icon:{type:String,default:null},title:{type:String,default:""},text:{type:String,default:""},href:{type:String,default:""},btnName:{type:String,default:""},noAction:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},variation:{type:String,default:"small"}},emits:["click"],setup(t,{emit:o}){const n=o,r=t,a=e.computed(()=>({class:"mt-200",loading:r.loading,...r.href?{href:r.href}:{}})),l=e.computed(()=>r.href?{}:{click:()=>c()}),i=e.computed(()=>r.variation==="large"?{variation:h0.Subtitle,weight:Y0.SemiBold}:{}),d=e.computed(()=>({"mc-no-data":!0,[`mc-no-data--variation-${r.variation}`]:!!r.variation})),c=()=>{n("click")};return(p,C)=>(e.openBlock(),e.createElementBlock("div",yd,[e.createElementVNode("section",{class:e.normalizeClass(d.value)},[r.icon?(e.openBlock(),e.createBlock(W2,{key:0,weight:.5,name:r.icon,size:"1000",color:"outline-gray"},null,8,["name"])):e.createCommentVNode("",!0),r.img?(e.openBlock(),e.createElementBlock("img",{key:1,src:r.img,alt:"no_entity"},null,8,gd)):e.createCommentVNode("",!0),t.title||p.$slots.title?e.renderSlot(p.$slots,"title",{key:2},()=>[r.title?(e.openBlock(),e.createBlock(z2,e.mergeProps({key:0},i.value,{color:"gray","text-align":e.unref(Se).Center,"html-data":r.title}),null,16,["text-align","html-data"])):e.createCommentVNode("",!0)]):e.createCommentVNode("",!0),t.text||p.$slots.text?(e.openBlock(),e.createElementBlock("div",bd,[e.renderSlot(p.$slots,"text",{},()=>[e.createVNode(z2,{color:"gray",variation:e.unref(h0).Article,"text-align":e.unref(Se).Center,"html-data":t.text},null,8,["variation","text-align","html-data"])])])):e.createCommentVNode("",!0),t.btnName&&!t.noAction||p.$slots.action?(e.openBlock(),e.createElementBlock("div",Md,[e.renderSlot(p.$slots,"action",{},()=>[e.createVNode(i0,e.mergeProps(a.value,e.toHandlers(l.value)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.btnName),1)]),_:1},16)])])):e.createCommentVNode("",!0)],2)]))}}),Ld={class:"mc-notification__inner"},wd={class:"mc-notification__text"},vd=e.defineComponent({__name:"McNotification",props:{variation:{type:String,default:"purple"},title:{type:String},content:{type:String,default:null},buttonVisible:{type:Boolean,default:!1},buttonText:{type:String,default:""},iconName:{type:String,default:"info"},iconVisible:{type:Boolean,default:!0}},emits:["click"],setup(t,{emit:o}){const n=o,r=t,a=e.computed(()=>({"--mc-notification-color":X2[r.variation]})),l=i=>{n("click",i)};return(i,d)=>(e.openBlock(),e.createElementBlock("div",{class:"mc-notification",style:e.normalizeStyle(a.value)},[e.createElementVNode("div",Ld,[e.createVNode(h3,null,e.createSlots({_:2},[r.iconVisible&&(i.$slots.left||r.iconName)?{name:"left",fn:e.withCtx(()=>[e.renderSlot(i.$slots,"left",{},()=>[e.createVNode(W2,{name:r.iconName,size:"300"},null,8,["name"])])]),key:"0"}:void 0,i.$slots.header||r.title?{name:"top",fn:e.withCtx(()=>[e.renderSlot(i.$slots,"header",{},()=>[r.title?(e.openBlock(),e.createBlock(z2,{key:0,color:r.variation,weight:e.unref(Y0).SemiBold,class:"mc-notification__title"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(r.title),1)]),_:1},8,["color","weight"])):e.createCommentVNode("",!0)])]),key:"1"}:void 0,r.content||i.$slots.default?{name:"bottom",fn:e.withCtx(()=>[e.createElementVNode("div",wd,[e.renderSlot(i.$slots,"default",{},()=>[e.createVNode(z2,{color:r.variation},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(r.content),1)]),_:1},8,["color"])])])]),key:"2"}:void 0,i.$slots.right||r.buttonVisible?{name:"right",fn:e.withCtx(()=>[e.renderSlot(i.$slots,"right",{},()=>[r.buttonVisible?(e.openBlock(),e.createBlock(i0,{key:0,variation:r.variation,class:"mc-notification__button",onClick:l},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(r.buttonText),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0)])]),key:"3"}:void 0]),1024)])],4))}}),Vd={class:"mc-progress__wrapper-line"},_d={key:0,class:"mc-progress__errors-container"},xd=e.defineComponent({__name:"McProgress",props:{percent:{type:Number,default:0},amount:{type:[String,Number,Boolean],default:null},color:{type:String,default:"dark-gray"},helpTextColor:{type:String,default:"gray"},helpText:{type:String,default:""},errors:{type:Array,default:()=>[]},reverseHeaders:{type:Boolean,default:!1},monospaceNumbers:{type:Boolean,default:!1}},setup(t){const o=t,n=ee(o.errors),r=e.computed(()=>({"mc-progress":!0,"mc-progress--error":n.errorText.value})),a=e.computed(()=>({"mc-progress__top":!0,"mc-progress__top--reverse-headers":o.reverseHeaders})),l=e.computed(()=>({"mc-progress__percent":!0,"mc-progress__percent--monospace":o.monospaceNumbers})),i=e.computed(()=>({"mc-progress__line":!0})),d=e.computed(()=>({"--mc-progress-color":X2[o.color]})),c=e.computed(()=>({"--mc-progress-help-text-color":X2[o.helpTextColor]})),p=e.computed(()=>({width:`${n.errorText.value?2:Math.sign(o.percent)>0?o.percent:0}%`})),C=e.computed(()=>n.errorText.value?0:o.amount??`${o.percent}%`);return(k,m)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(r.value),style:e.normalizeStyle(d.value)},[e.createElementVNode("div",{class:e.normalizeClass(a.value)},[e.createElementVNode("div",{class:e.normalizeClass(l.value)},e.toDisplayString(C.value),3),o.helpText?(e.openBlock(),e.createElementBlock("div",{key:0,class:"mc-progress__help-text",style:e.normalizeStyle(c.value)},e.toDisplayString(o.helpText),5)):e.createCommentVNode("",!0)],2),e.createElementVNode("div",Vd,[e.createElementVNode("div",{class:e.normalizeClass(i.value),style:e.normalizeStyle(p.value)},null,6)]),e.unref(n).errorText.value?(e.openBlock(),e.createElementBlock("div",_d,e.toDisplayString(e.unref(n).errorText.value),1)):e.createCommentVNode("",!0)],6))}}),Hd={class:"mc-separator__wrapper"},G5=e.defineComponent({__name:"McSeparator",props:{weight:{type:String,default:"s"},color:{type:String,default:"outline-gray"},indentX:{type:String,default:""},indentY:{type:String,default:""},indentTop:{type:String,default:""},indentBottom:{type:String,default:""},indentLeft:{type:String,default:""},indentRight:{type:String,default:""}},setup(t){const o=t,n=e.computed(()=>({top:o.indentTop||o.indentY,bottom:o.indentBottom||o.indentY,left:o.indentLeft||o.indentX,right:o.indentRight||o.indentX})),r=e.computed(()=>({"mc-separator":!0})),a=e.computed(()=>{let l={};o.color&&(l["--mc-separator-color"]=X2[o.color]),n.value.top&&(l["--mc-separator-indent-top"]=r1[n.value.top]),n.value.bottom&&(l["--mc-separator-indent-bottom"]=r1[n.value.bottom]),n.value.left&&(l["--mc-separator-indent-left"]=r1[n.value.left]),n.value.right&&(l["--mc-separator-indent-right"]=r1[n.value.right]);let i;switch(o.weight){case"s":{i="1px";break}case"m":i="2px"}return i&&(l["--mc-separator-weight"]=i),l});return(l,i)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(r.value),style:e.normalizeStyle(a.value)},[e.createElementVNode("div",Hd,[e.renderSlot(l.$slots,"default")])],6))}}),X5=e.defineComponent({__name:"McSlideUpDown",props:{active:{type:Boolean,default:!1},duration:{type:Number,default:300},type:{type:String,default:"ease-out"},tag:{type:String,default:"div"},useHidden:{type:Boolean,default:!0}},emits:["slide-open-start","slide-close-start","slide-open-end","slide-close-end"],setup(t,{emit:o}){const n=o,r=t,a=e.ref(r.active),l=e.ref(!1),i=e.ref(null),d=e.ref();e.onMounted(()=>{c()});const c=()=>{d.value&&!a.value&&(d.value.style.height="0")},p=()=>{if(!d.value||l.value)return;l.value=!0;const b={contentHeight:d.value.scrollHeight};i.value&&i.value.cancel(),a.value?k(b):m(b)},C=()=>{a.value=!a.value},k=({contentHeight:y})=>{n("slide-close-start",a.value),d.value&&(i.value=d.value.animate([{height:`${y}px`},{height:"0"}],{duration:r.duration,easing:r.type,fill:"forwards"}),i.value.onfinish=()=>{n("slide-close-end",a.value),l.value=!1,C()})},m=({contentHeight:y})=>{n("slide-open-start",a.value),d.value&&(i.value=d.value.animate([{height:"0"},{height:`${y}px`}],{duration:r.duration,easing:r.type,fill:"forwards"}),i.value.onfinish=()=>{n("slide-open-end",a.value),l.value=!1,C()})};return e.watch(()=>r.active,()=>{p()}),(y,b)=>(e.openBlock(),e.createBlock(e.resolveDynamicComponent(r.tag),{ref_key:"container",ref:d,class:"mc-slide-up-down"},{default:e.withCtx(()=>[e.renderSlot(y.$slots,"default")]),_:3},512))}}),Bd={ref:"content",class:"mc-stack__content"},Sd={key:0,class:"mc-stack__more-label"},Ed=e.defineComponent({__name:"McStack",props:{visibleCount:{type:Number,default:1/0},collapsed:{type:Boolean,default:!1}},setup(t){var p;const o=t,n=e.useSlots(),r=e.ref(null),a=(n.default&&((p=n.default()[0].children)!=null&&p.length)?n.default()[0].children:n.default())||[],l=e.ref(a||[]),i=e.ref(0),d=e.computed(()=>({"mc-stack":!0,"mc-stack--collapsed":o.collapsed})),c=()=>{if(!r.value)return;let C=0;const k=[];let m=0;i.value=0;const y=document.createElement("div");y.style.position="absolute",y.style.visibility="hidden",y.style.whiteSpace="nowrap",document.body.appendChild(y);for(const b of a){const f=e.h(b),M=document.createElement("div");y.appendChild(M);const V=e.createApp({render:()=>f});V.mount(M);const S=o.collapsed?M.getBoundingClientRect().width+6:M.getBoundingClientRect().width;V.unmount(),M.remove();const x=+r1[300].replace("px",""),B=o.collapsed?-r1[200].replace("px",""):+r1[150].replace("px","");if(C+(S+B)<=r.value.clientWidth-x&&m<o.visibleCount)C+=S+B,k.push(b),m++;else{i.value=a.length-k.length;break}}document.body.removeChild(y),l.value=k};return e.onMounted(()=>{const C=new ResizeObserver(c);r.value&&C.observe(r.value),c(),e.onUnmounted(()=>{C.disconnect()})}),(C,k)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"container",ref:r,class:e.normalizeClass(d.value)},[e.createElementVNode("div",Bd,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.value,(m,y)=>(e.openBlock(),e.createBlock(e.resolveDynamicComponent(m),{key:`mc-stack-item-${y}`}))),128)),i.value>0?(e.openBlock(),e.createElementBlock("span",Sd,"+"+e.toDisplayString(i.value),1)):e.createCommentVNode("",!0)],512)],2))}}),Dd={class:"mc-accordion"},Td=e.defineComponent({__name:"McAccordion",props:{isSingleOpen:{type:Boolean,default:!0},defaultOpenIndex:{type:Number}},setup(t){const o=U9(d=>{d()},50),n=t,r=e.ref([]),a=({value:d,component:c})=>{d&&r.value.forEach(p=>{p.id!==c.id&&p.close()})},l=(d,{value:c,component:p})=>{n.isSingleOpen&&a({value:c,component:p})},i=d=>{r.value.push(d);const c=n.defaultOpenIndex;o(()=>{(c||c===0)&&r.value[c]&&r.value[c].open()})};return e.provide("selfRegisterCollapseMethod",i),e.provide("accordionTriggerMethod",l),(d,c)=>(e.openBlock(),e.createElementBlock("div",Dd,[e.renderSlot(d.$slots,"default")]))}}),Zd={class:"mc-cell__title"},Ad={class:"mc-cell__content"},$d=e.defineComponent({__name:"McCell",props:{title:{type:String,default:""},size:{type:String,default:$t.M},uppercase:{type:Boolean,default:!0},ellipsis:{type:Boolean,default:!0}},setup(t){const o=t,n=e.computed(()=>({[`mc-cell--size-${o.size}`]:!!o.size}));return(r,a)=>(e.openBlock(),e.createElementBlock("section",{class:e.normalizeClass(["mc-cell",n.value])},[e.createElementVNode("div",Zd,[e.renderSlot(r.$slots,"title",{},()=>[e.createVNode(z2,{variation:e.unref(h0).Overline,uppercase:o.uppercase,ellipsis:o.ellipsis},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(o.title),1)]),_:1},8,["variation","uppercase","ellipsis"])])]),e.createElementVNode("div",Ad,[e.renderSlot(r.$slots,"default")])],2))}}),Nd={class:"mc-collapse__body-inner"},Fd={key:0,class:"mc-collapse__bottom"},Od=e.defineComponent({__name:"McCollapse",props:{isDisabled:{type:Boolean,default:!1},border:{type:Boolean,default:!1},icon:{type:Boolean,default:!1}},emits:["toggle","open","close","collapse-open-start","collapse-open-end","collapse-close-start","collapse-close-end"],setup(t,{emit:o}){const n=c9(),r=e.inject("selfRegisterCollapseMethod",()=>{}),a=e.inject("accordionTriggerMethod",()=>{}),l=e.useSlots(),i=o,d=t,c=e.ref(n.timestamp(5)),p=e.ref(!1),C=e.ref(!1),k=e.computed(()=>({"mc-collapse--is-open":p.value,"mc-collapse--is-disabled":d.isDisabled,"mc-collapse--is-empty":m.value,"mc-collapse--has-icon":d.icon,"mc-collapse--border":d.border})),m=e.computed(()=>!l.body),y=e.computed(()=>({isDisabled:d.isDisabled,border:d.border,icon:d.icon,id:c.value,isCollapsed:p.value,open:b,close:f,toggle:M}));e.onMounted(()=>{if(r){const O=y.value;r(O)}}),e.watch(()=>p.value,O=>{const _={value:O,component:y.value};i("toggle",_),i(O?"open":"close",_),a&&a(O?"open":"close",_)});const b=()=>{d.isDisabled||C.value||(p.value=!0)},f=()=>{d.isDisabled||C.value||(p.value=!1)},M=()=>{d.isDisabled||C.value||(p.value=!p.value)},V=O=>{C.value=!0;const _={value:O,component:y.value};i("collapse-open-start",_)},S=O=>{C.value=!1;const _={value:O,component:y.value};i("collapse-open-end",_)},x=O=>{C.value=!0;const _={value:O,component:y.value};i("collapse-close-start",_)},B=O=>{C.value=!1;const _={value:O,component:y.value};i("collapse-close-end",_)};return(O,_)=>(e.openBlock(),e.createElementBlock("section",{class:e.normalizeClass(["mc-collapse",k.value])},[e.createElementVNode("div",{class:"mc-collapse__header",tabindex:"0",onKeyup:e.withKeys(f,["esc"])},[t.icon&&!m.value?(e.openBlock(),e.createBlock(W2,{key:0,class:"mc-collapse__icon",name:"arrow_drop_down",color:t.isDisabled?"outline-gray":"black"},null,8,["color"])):e.createCommentVNode("",!0),e.unref(l).activator?(e.openBlock(),e.createElementBlock("div",{key:1,onClick:M},[e.renderSlot(O.$slots,"activator")])):e.createCommentVNode("",!0),e.unref(l).body?(e.openBlock(),e.createElementBlock("a",{key:2,class:"mc-collapse__link",href:"#",onClick:e.withModifiers(M,["prevent"])})):e.createCommentVNode("",!0)],32),e.createVNode(X5,{class:"mc-collapse__body",active:p.value,duration:300,onSlideOpenStart:V,onSlideOpenEnd:S,onSlideCloseStart:x,onSlideCloseEnd:B},{default:e.withCtx(()=>[e.createElementVNode("div",Nd,[e.renderSlot(O.$slots,"body")])]),_:3},8,["active"]),e.unref(l).bottom?(e.openBlock(),e.createElementBlock("div",Fd,[e.renderSlot(O.$slots,"bottom")])):e.createCommentVNode("",!0)],2))}});/*!
|
|
33
|
+
* vue-router v4.4.5
|
|
34
|
+
* (c) 2024 Eduardo San Martin Morote
|
|
35
|
+
* @license MIT
|
|
36
|
+
*/var w8;(function(t){t.pop="pop",t.push="push"})(w8||(w8={}));var v8;(function(t){t.back="back",t.forward="forward",t.unknown=""})(v8||(v8={})),Symbol(process.env.NODE_ENV!=="production"?"navigation failure":"");var V8;(function(t){t[t.aborted=4]="aborted",t[t.cancelled=8]="cancelled",t[t.duplicated=16]="duplicated"})(V8||(V8={})),Symbol(process.env.NODE_ENV!=="production"?"router view location matched":""),Symbol(process.env.NODE_ENV!=="production"?"router view depth":"");const zd=Symbol(process.env.NODE_ENV!=="production"?"router":""),Pd=Symbol(process.env.NODE_ENV!=="production"?"route location":"");Symbol(process.env.NODE_ENV!=="production"?"router view location":"");function jd(){return e.inject(zd)}function _8(t){return e.inject(Pd)}const x8=e.defineComponent({__name:"McDropdownPanel",props:{maxHeight:{type:Number,default:300}},setup(t){const o=t,n=e.computed(()=>({"--panel-max-height":`${o.maxHeight}px`}));return(r,a)=>(e.openBlock(),e.createElementBlock("section",{class:"mc-dropdown-panel",style:e.normalizeStyle(n.value)},[e.renderSlot(r.$slots,"default")],4))}}),Rd=["onClick"],H8="dropdown-element-id",mt=e.defineComponent({__name:"McDropdown",props:{modelValue:{type:Boolean,default:!1},items:{type:Array,default:()=>[]},position:{type:String,default:He.Left},listPosition:{type:String,default:_3.Bottom},listMinWidth:{type:String,default:"inherit"},listMaxHeight:{type:Number,default:300},hideOnSelect:{type:Boolean,default:!0}},emits:["update:modelValue","select"],setup(t,{emit:o}){const n=g6(B=>{B()},200),r=e.ref(null),a=e.ref(null),l=e.ref(null),i=e.ref(null),d=e.ref(!1),c=_8(),p=o,C=t,k=e.computed(()=>({[`mc-dropdown--position-${a.value}`]:!!a.value,[`mc-dropdown--list-position-${r.value}`]:!!r.value,"mc-dropdown--is-open":d.value})),m=e.computed(()=>({"--dropdown-body-min-width":C.listMinWidth}));e.onMounted(()=>{window.addEventListener("resize",x),window.addEventListener("transitionrun",x)}),e.onBeforeUnmount(()=>{window.removeEventListener("resize",x),window.removeEventListener("transitionrun",x)});const y=()=>{M(!d.value)},b=B=>{const O=B.target;d.value&&!O.closest(`#${H8}`)&&f()},f=()=>{M(!1)},M=B=>{d.value=B,p("update:modelValue",B),d.value?document.addEventListener("click",b):document.removeEventListener("click",b)},V=B=>{p("select",B),C.hideOnSelect&&f()},S=()=>{var z;if(!l.value)return;const B=(z=i.value)==null?void 0:z.getBoundingClientRect();if(!B)return;const O=window.innerHeight-B.bottom,_=window.innerWidth-B.left,{offsetHeight:N,offsetWidth:Z}=l.value,Y=O<N?_3.Top:_3.Bottom,D=_>Z?He.Left:He.Right;r.value=C.listPosition===_3.Auto?Y:C.listPosition,a.value=C.position===He.Auto?D:C.position},x=()=>n(()=>S());return e.watch(()=>c,f),e.watch(()=>C.modelValue,B=>{d.value!==B&&M(B),e.nextTick(()=>{S()})},{immediate:!0}),(B,O)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["mc-dropdown",k.value]),id:H8,style:e.normalizeStyle(m.value)},[e.createElementVNode("div",{class:"mc-dropdown__toggle",ref_key:"activator",ref:i,tabindex:"0",onKeyup:e.withKeys(f,["esc"]),onClick:e.withModifiers(y,["prevent","stop"])},[e.renderSlot(B.$slots,"activator")],544),e.createElementVNode("div",{ref_key:"dropdown_body",ref:l,class:"mc-dropdown__body"},[e.createVNode(x8,{"max-height":t.listMaxHeight},{default:e.withCtx(()=>[e.renderSlot(B.$slots,"default",{},()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.items,(_,N)=>(e.openBlock(),e.createElementBlock("div",{key:`dropdown-list-item-${_.id||_.key||N}`,class:"mc-dropdown-panel__item",onClick:Z=>V(_)},[e.renderSlot(B.$slots,"item",{item:_})],8,Rd))),128))])]),_:3},8,["max-height"])],512)],6))}}),V9=e.defineComponent({__name:"McGridRow",props:{gutterX:{type:Number,default:0},gutterY:{type:Number,default:0},justify:{type:String,default:R9.Left},align:{type:String,default:I9.Top},stretch:{type:Boolean,default:!1},wrap:{type:Boolean,default:!0}},setup(t){const o=t;e.provide("provideData",{gutterX:o.gutterX,gutterY:o.gutterY});const n=e.computed(()=>({[`mc-grid-row--justify-${o.justify}`]:!!o.justify,[`mc-grid-row--align-${o.align}`]:!!o.align,"mc-grid-row--stretch":!!o.stretch})),r=e.computed(()=>{let a={};o.gutterX!==0&&(a["margin-left"]=`${-o.gutterX/2}px`,a["margin-right"]=`${-o.gutterX/2}px`),o.gutterY!==0&&(a["margin-top"]=`${-o.gutterY/2}px`,a["margin-bottom"]=`${-o.gutterY/2}px`),o.wrap&&(a["flex-wrap"]="wrap");let l;switch(o.justify){case"left":l="flex-start";break;case"right":l="flex-end";break;case"center":l="center";break;case"around":l="space-around";break;case"between":l="space-between";break}let i;switch(o.align){case"top":i="flex-start";break;case"middle":i="center";break;case"bottom":i="flex-end";break;case"stretch":i="stretch";break}return i&&(a["--mc-grid-row-align"]=i),l&&(a["--mc-grid-row-justify"]=l),a});return(a,l)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["mc-grid-row",n.value]),style:e.normalizeStyle(r.value)},[e.renderSlot(a.$slots,"default")],6))}}),B8=["span","order","offset","push","pull"],S8=Object.values(Nt),E8={};B8.forEach(t=>{S8.forEach(o=>{E8[`${t}-${o}`]={type:String}})});const Id=E8,ft=e.defineComponent({__name:"McGridCol",props:{...Id,span:{type:[String]},order:{type:Number},offset:{type:Number},push:{type:Number},pull:{type:Number},stretchSelf:{type:Boolean,default:!1},basis:{type:String,default:"auto"}},setup(t){const o=e.inject("provideData",{gutterX:0,gutterY:0}),n=t,r=e.computed(()=>{const l={};return B8.forEach(i=>{l[`mc-grid-col--${i}-${n[i]}`]=!!n[i],S8.forEach(d=>{const c=n[`${i}${e8(d)}`];l[`mc-grid-col--${i}-${d}-${c}`]=!!c})}),l}),a=e.computed(()=>{let l={};return o.gutterX!==0&&(l["padding-left"]=`${o.gutterX/2}px`,l["padding-right"]=`${o.gutterX/2}px`),o.gutterY!==0&&(l["padding-top"]=`${o.gutterY/2}px`,l["padding-bottom"]=`${o.gutterY/2}px`),n.stretchSelf?l.flex=`1 0 ${n.basis}`:n.basis!=="auto"&&(l.flex=`0 0 ${n.basis}`),n.order?{...l,order:n.order}:l});return(l,i)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass([r.value,"mc-grid-col"]),style:e.normalizeStyle(a.value)},[e.renderSlot(l.$slots,"default")],6))}}),kt=e.defineComponent({__name:"McFilterChip",props:{tag:{type:Object,required:!0},closable:{type:Boolean,default:!1},isActive:{type:Boolean,default:!1}},emits:["close"],setup(t,{emit:o}){const n=o,r=t,a=e.computed(()=>{const c=r.tag.title?":":"";return`${r.tag.categoryName}${c}`}),l=e.computed(()=>r.closable?"purple-invert":"hover-gray"),i=e.computed(()=>({"mc-filter-chip":!0,"mc-filter-chip--closable":r.closable,"mc-filter-chip--is-active":r.isActive})),d=c=>{c.stopPropagation(),n("close")};return(c,p)=>(e.openBlock(),e.createBlock(d9,{closable:t.closable,variation:l.value,class:e.normalizeClass(i.value),size:e.unref(l9).S,onClose:d},{default:e.withCtx(()=>[t.tag.categoryName?(e.openBlock(),e.createBlock(z2,{key:0,weight:e.unref(Y0).SemiBold},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.value),1)]),_:1},8,["weight"])):e.createCommentVNode("",!0),p[0]||(p[0]=e.createTextVNode(" ")),t.tag.title?(e.openBlock(),e.createBlock(z2,{key:1},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.tag.title),1)]),_:1})):e.createCommentVNode("",!0)]),_:1},8,["closable","variation","class","size"]))}}),Yd={class:"mc-filter-tags"},Ud={class:"mc-filter-tags__body"},Wd={class:"mc-filter-tags__body-left"},qd={class:"mc-filter-tags__body-right"},D8=e.defineComponent({__name:"McFilterTags",props:{modelValue:{type:Object,default:()=>({})},filters:{type:Array,required:!0,default:()=>[]},placeholders:{type:Object,required:!0},activeTag:{type:Object,default:()=>({})},useTimezone:{type:Boolean,default:!0}},emits:["tag-click","tag-change","clear"],setup(t,{emit:o}){const n=Ee(),r=c9(),a=o,l=t,i=e.ref({}),d=e.ref({}),c=e.ref(null),p=e.computed(()=>k.value.filter(_=>_&&_.type===K2.Fast)),C=e.computed(()=>k.value.filter(_=>_&&_.type!==K2.Fast)),k=e.computed(()=>{const _=[];return!n.isEmpty(i.value)&&Object.entries(i.value).forEach(([N,Z])=>{const Y=N;let D=Z;const z=l.filters.find(W=>W.value===Y)||{};if(z&&z.type===K2.Fast)_.push({id:r.timestamp(5),categoryName:z==null?void 0:z.name,category:Y,type:K2.Fast});else if(z){D=Z;const W=D.more?`${l.placeholders.from} ${x(D.more,z)}`:"",u2=D.less?`${l.placeholders.to} ${x(z.type===K2.Date?l.useTimezone?p0(D.less).subtract(1,"days").format():p0(D.less).format():D.less,z)}`:"",T=typeof Z=="object"?`${W}${W&&u2?" ":""}${u2}`.toLowerCase():Z;_.push({id:r.timestamp(5),categoryName:z==null?void 0:z.name,title:T,value:Z,category:Y})}}),_}),m=e.computed(()=>{let _=[];return n.isEmpty(d.value)||(_=Object.entries(d.value).map(([N,Z])=>{var u2;const Y=N,D=Z;if(N===G2.Exists){const w=Object.keys(D).map(H=>{const I=l.filters.find(t2=>t2.value===H);return{id:r.timestamp(5),categoryName:I==null?void 0:I.name,value:H,category:H,relationKey:N,closable:!0}});return[{id:r.timestamp(5),categoryName:l.placeholders.actions.empty,relationKey:G2.Exists},...w]}const z=[];return Object.entries(D).forEach(([w,T])=>{const H=w,I=T,t2=l.filters.find(P=>P.value===H)||{};Object.entries(I).forEach(([P,$])=>{z.push({id:r.timestamp(5),categoryName:t2==null?void 0:t2.name,title:$,value:P,category:H,relationKey:N,closable:!0})})}),[{id:r.timestamp(5),categoryName:(u2=l.placeholders.actions)==null?void 0:u2[Y],relationKey:N},...z]})),_.filter(N=>N.length>1)}),y=e.computed(()=>m.value.length||k.value.length),b=_=>{i.value={},d.value={},!n.isEmpty(_)&&f(_)},f=(_,N)=>{const Z=[G2.Is,G2.IsNot,G2.Exists];for(let[Y,D]of Object.entries(_)){if(Z.includes(Y)){d.value[Y]={...d.value[Y]||{},...N?{[N]:D}:{}};continue}if(D.constructor!==Object&&N){i.value[N]=_;continue}const z=l.filters.find(W=>W.value===Y);if(z&&z.type===K2.Fast){i.value[Y]={value:Y};continue}D&&f(D,Y)}},M=_=>{c.value=n.isEqual(c.value,_)?null:_,a("tag-click",_)},V=(_,N)=>{const Z=n.cloneDeep(l.modelValue);switch(N){case G2.Exists:delete Z[_.category][N];break;case G2.Is:case G2.IsNot:delete Z[_.category][N][_.value],n.isEmpty(Z[_.category][N])&&delete Z[_.category][N];break;default:delete Z[_.category];break}n.isEmpty(Z[_.category])&&delete Z[_.category],a("tag-change",Z)},S=()=>{a("clear")},x=(_,N)=>{switch(N.type){case K2.Date:return p0(_).format("DD.MM.YYYY");case K2.Range:return B(_);default:return _}},B=_=>_,O=_=>n.isEqual(c.value,_);return e.watch(()=>l.modelValue,_=>{b(_)},{deep:!0,immediate:!0}),e.watch(()=>l.activeTag,_=>{c.value=_},{immediate:!0}),(_,N)=>(e.openBlock(),e.createElementBlock("div",Yd,[e.createVNode(z2,null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(l.placeholders.added_filters),1)]),_:1}),e.createElementVNode("div",Ud,[e.createElementVNode("div",Wd,[C.value.length?(e.openBlock(),e.createBlock(V9,{key:0,"gutter-x":4,"gutter-y":8},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(C.value,Z=>(e.openBlock(),e.createBlock(ft,{key:Z.id},{default:e.withCtx(()=>[e.createVNode(kt,{tag:Z,"is-active":O(Z),closable:"",onClick:()=>M(Z),onClose:()=>V(Z)},null,8,["tag","is-active","onClick","onClose"])]),_:2},1024))),128))]),_:1})):e.createCommentVNode("",!0),m.value.length?(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:1},e.renderList(m.value,(Z,Y)=>(e.openBlock(),e.createBlock(V9,{key:Y,"gutter-x":4,"gutter-y":8},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Z,D=>(e.openBlock(),e.createBlock(ft,{key:D.id},{default:e.withCtx(()=>[e.createVNode(kt,{tag:D,"is-active":O(D),closable:D.closable,onClick:()=>M(D),onClose:()=>V(D,Z[0].relationKey)},null,8,["tag","is-active","closable","onClick","onClose"])]),_:2},1024))),128))]),_:2},1024))),128)):e.createCommentVNode("",!0),p.value.length?(e.openBlock(),e.createBlock(V9,{key:2,"gutter-x":4,"gutter-y":8},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(p.value,Z=>(e.openBlock(),e.createBlock(ft,{key:Z.id},{default:e.withCtx(()=>[e.createVNode(p3,{content:Z.description||"",placement:e.unref(a1).Top,size:e.unref(ce).S},{default:e.withCtx(()=>[e.createVNode(kt,{tag:Z,closable:"",onClose:()=>V(Z)},null,8,["tag","onClose"])]),_:2},1032,["content","placement","size"])]),_:2},1024))),128))]),_:1})):e.createCommentVNode("",!0)]),e.createElementVNode("div",qd,[y.value?(e.openBlock(),e.createBlock(i0,{key:0,variation:"dark-gray-outline",onClick:S},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.placeholders.actions.clear),1)]),_:1})):e.createCommentVNode("",!0)])])]))}}),Gd={class:"mc-filter-type-range"},T8=e.defineComponent({__name:"McFilterTypeRange",props:{modelValue:{type:Object,default:()=>({more:null,less:null})},filter:{type:Object,default:()=>({})},placeholders:{type:Object,required:!0}},emits:["update:modelValue"],setup(t,{emit:o}){const n=o,r=t,a=e.ref(null),l=e.ref(null),i=e.computed({get(){var C;return(C=r.modelValue)==null?void 0:C.more},set(C){a.value=C||null,p()}}),d=e.computed({get(){var C;return(C=r.modelValue)==null?void 0:C.less},set(C){l.value=C||null,p()}});e.watch(()=>r.modelValue,C=>{C&&(a.value=r.modelValue.more||null,l.value=r.modelValue.less||null)},{deep:!0});const c=C=>C||Number.isInteger(C),p=()=>{const C=c(a.value),k=c(l.value),m=r.filter.min&&c(r.filter.min),y=r.filter.max&&c(r.filter.max);let b=C?Number(a.value):null,f=k?Number(l.value):null;r.filter.min&&b&&b<r.filter.min&&m&&(b=r.filter.min),r.filter.max&&f&&f>r.filter.max&&y&&(f=r.filter.max),r.filter.max&&b&&b>r.filter.max&&y&&(b=r.filter.max),r.filter.min&&f&&f<r.filter.min&&m&&(f=r.filter.min);const M={more:b||null,less:f||null};l.value=f,a.value=b,n("update:modelValue",{value:M})};return(C,k)=>(e.openBlock(),e.createElementBlock("div",Gd,[e.createVNode(O3,{modelValue:i.value,"onUpdate:modelValue":k[0]||(k[0]=m=>i.value=m),placeholder:t.placeholders.from.toLowerCase(),type:e.unref(w0).AmountFormat,name:"range_more"},null,8,["modelValue","placeholder","type"]),e.createVNode(O3,{modelValue:d.value,"onUpdate:modelValue":k[1]||(k[1]=m=>d.value=m),placeholder:t.placeholders.to.toLowerCase(),type:e.unref(w0).AmountFormat,name:"range_less"},null,8,["modelValue","placeholder","type"])]))}}),Z8=e.defineComponent({__name:"McFilterTypeDate",props:{modelValue:{type:Object,default:()=>({})},filter:{type:Object,default:()=>({})},placeholders:{type:Object,required:!0},useTimezone:{type:Boolean,default:!0}},emits:["update:modelValue"],setup(t,{emit:o}){const n=o,r=t,a=e.computed({get(){return r.modelValue?[r.modelValue.more,r.modelValue.less]:[]},set(l){const i={more:l==null?void 0:l[0],less:l==null?void 0:l[1]};n("update:modelValue",{value:i})}});return(l,i)=>(e.openBlock(),e.createBlock(l8,{modelValue:a.value,"onUpdate:modelValue":i[0]||(i[0]=d=>a.value=d),placeholders:t.placeholders.calendar,placeholder:t.filter.placeholder||t.placeholders.choose,"use-timezone":r.useTimezone,name:"condition_dates",class:"mc-filter-type-date",range:""},null,8,["modelValue","placeholders","placeholder","use-timezone"]))}}),A8=e.defineComponent({__name:"McFilterTypeText",props:{modelValue:{type:[String,Number],default:null},filter:{type:Object,default:()=>({})},placeholders:{type:Object,required:!0}},emits:["update:modelValue"],setup(t,{emit:o}){const n=o,r=t,a=e.computed({get(){return r.modelValue},set(l){n("update:modelValue",{value:l})}});return(l,i)=>(e.openBlock(),e.createBlock(O3,{modelValue:a.value,"onUpdate:modelValue":i[0]||(i[0]=d=>a.value=d),placeholder:t.filter.placeholder||t.placeholders.enter,class:"mc-filter-type-text",name:"mc_filter_type_text"},null,8,["modelValue","placeholder"]))}}),Xd={class:"mc-filter-type-relation__header"},Kd={class:"mc-filter-type-relation__buttons"},$8=e.defineComponent({__name:"McFilterTypeRelation",props:{modelValue:{type:Object,default:()=>({})},filter:{type:Object,default:()=>({})},placeholders:{type:Object,required:!0},currentValues:{type:Object,default:()=>({})}},emits:["update:modelValue"],setup(t,{emit:o}){const n=Ee(),r=o,a=t,l=U9(B=>{B()},100),i=e.ref(Object.values(G2)),d=e.ref(G2.Is),c=e.ref([]),p=e.ref(!1),C=e.computed(()=>a.filter.is_text?O3:Y5),k=e.computed(()=>a.filter.placeholder||a.filter.is_text?a.placeholders.enter:a.placeholders.choose),m=e.computed(()=>{var B;return((B=a.filter.getAjaxOptions)==null?void 0:B.constructor)===Function}),y=e.computed(()=>{let B=m.value?c.value:a.filter.options||[];if(a.currentValues[a.filter.value]){const O=a.currentValues[a.filter.value]||{};let _=[];for(let[N,Z]of Object.entries(O)){if(N===G2.Exists)return[];_=[..._,...Array.isArray(Z)?Z:[[Z]]]}B=B.filter(N=>!_.includes(String(N.value)))}return B}),b=e.computed({get(){let B=a.modelValue;if(B){for(let[O,_]of Object.entries(a.modelValue)){let N=O,Z=_;N===G2.Exists?B="":B=(Z==null?void 0:Z[0])||""}m.value&&B&&V(B)}return B},set(B){d.value!==G2.Exists&&x(B)}}),f=B=>{d.value!==B&&(d.value=B,x(b.value))},M=async B=>{p.value=!0,c.value=a.filter.getAjaxOptions&&await a.filter.getAjaxOptions(B),p.value=!1},V=async B=>{const O=a.filter.getAjaxOne&&await a.filter.getAjaxOne(B);c.value=n.uniqWith([...c.value,O],n.isEqual)},S=B=>{!m.value||!B||l(()=>M(B))},x=B=>{var Y;let O=null,_=null;const N=B||Number.isInteger(B);if(d.value!==G2.Exists&&N){const D=a.filter.is_text?B:(Y=y.value.find(z=>String(z.value)===String(B)))==null?void 0:Y.name;O={[d.value]:[String(B)]},_={[d.value]:{[String(B)]:D}}}d.value===G2.Exists&&!a.currentValues[a.filter.value]&&(O={[G2.Exists]:0},_={[G2.Exists]:null}),r("update:modelValue",{value:O,valueName:_})};return e.watch(()=>a.modelValue,B=>{if(B)for(let O of Object.keys(B))d.value=O},{immediate:!0}),e.watch(()=>a.filter,()=>{d.value=G2.Is,e.nextTick(()=>c.value=[])}),(B,O)=>(e.openBlock(),e.createBlock(e.resolveDynamicComponent(C.value),{modelValue:b.value,"onUpdate:modelValue":O[0]||(O[0]=_=>b.value=_),options:y.value,"internal-search":!m.value,placeholder:k.value,loading:p.value,disabled:d.value===e.unref(G2).Exists,"hide-selected":"",class:"mc-filter-type-relation",name:`relation_${a.filter.type}`,onSearchChange:O[1]||(O[1]=_=>S(_))},{header:e.withCtx(()=>[e.createElementVNode("div",Xd,[e.createVNode(z2,null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.placeholders.condition),1)]),_:1}),e.createElementVNode("div",Kd,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(i.value,_=>(e.openBlock(),e.createBlock(i0,{key:_,variation:d.value===_?"purple":"dark-gray-outline",onClick:()=>f(_)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.placeholders.actions[`${_===e.unref(G2).Exists?"empty":_}`]),1)]),_:2},1032,["variation","onClick"]))),128))])])]),_:1},40,["modelValue","options","internal-search","placeholder","loading","disabled","name"]))}});K2.Text,K2.Relation,K2.Relation,K2.Range,K2.Date,K2.Relation,K2.Fast,G2.Exists;const Qd={main_tooltip:"Click to open/close",value:"Value",condition:"Condition",create_preset:"Create new preset",fast_filters:"Fast filters",added_filters:"Added filters",enter_preset_name:"Enter preset name",enter_preset_tooltip:"Сохранение выбранных параметров фильтра в пользовательский пресет",from:"From",to:"To",enter:"Enter",choose:"Choose",actions:{add:"Add",save:"Save",clear:"Clear",create:"Create",delete_preset:"Delete preset",is:"This",is_not:"Is not",empty:"Empty",confirm:"Confirm"},calendar:{week:"Week",month:"Month",quarter:"Quarter",year:"Year",confirm:"Confirm"},messages:{same_filter:"Уже есть фильтр с таким параметром",same_preset_name:"Уже есть фильтр с таким именем",accidentally_cleared:"Случайно очистили?",accidentally_deleted:"Случайно удалили?",more_than:'Значение "от" не может быть больше значения "до"'}};class _9{static encode(o){if(o.constructor!==Object)return o;try{return btoa(encodeURI(JSON.stringify(o)))}catch(n){return console.error(n),o}}static decode(o){if(!o)return o;try{return JSON.parse(decodeURI(atob(o)))}catch(n){return console.error(n),o}}}const Jd={class:"mc-filter"},eu={class:"mc-filter__header"},tu={key:0,class:"mc-filter__presets"},ou={class:"mc-filter__presets-inner"},nu={class:"mc-filter__body"},ru={class:"mc-filter__body-top"},au={class:"mc-filter__body-top-left"},lu={class:"mc-filter__body-fast-tags-wrapper"},iu={class:"mc-filter__body-bottom"},su={class:"mc-filter__body-bottom-left"},cu={class:"mc-filter__body-bottom-right"},du=e.defineComponent({__name:"McFilter",props:{name:{type:String,required:!0},modelValue:{type:Object,required:!0,default:()=>({filter:null,filter_name:null})},filters:{type:Array,required:!0,default:()=>[]},buttonConfirmIsLoading:{type:Boolean,default:!1},useTeleport:{type:Boolean,default:!1},disabledOpen:{type:Boolean,default:!1},useTimezone:{type:Boolean,default:!1},placeholders:{type:Object,default:()=>({})}},emits:["error","clear","delete-preset","update:modelValue","confirm"],setup(t,{emit:o}){const n=Ee(),r=o,a=t,l=e.ref(!1),i=e.ref({}),d=e.ref({}),c=e.ref({}),p=e.ref({}),C=e.ref({}),k=e.ref({}),m=e.ref(null),y=e.ref(null),b=e.reactive(n.deepMerge(Qd,a.placeholders)),f=e.computed(()=>n.isEqual(O.value.filter,i.value)),M=e.ref(""),V=e.ref(null),S=e.ref(null),x=L6("mcFilterPresets",{}),B=e.ref([]),O=e.computed({get(){const{filter:A=null,filter_name:R=null}=a.modelValue||{};return{filter:A,filter_name:_9.decode(R)}},set(A){const{filter:R=null,filter_name:J={}}=A||{},g2={filter:R,filter_name:_9.encode(J)};r("update:modelValue",g2)}}),_=e.computed(()=>a.filters.find(A=>String(A.value)===String(m.value))||{}),N=e.computed(()=>{var A;return((A=_.value)==null?void 0:A.type)===K2.Relation}),Z=e.computed(()=>{var A;return((A=_.value)==null?void 0:A.type)===K2.Date}),Y=e.computed(()=>{var A;return((A=_.value)==null?void 0:A.type)===K2.Text}),D=e.computed(()=>{var A;return((A=_.value)==null?void 0:A.type)===K2.Range}),z=e.computed(()=>{const A=i.value&&Object.keys(i.value)||[];return a.filters.filter(R=>R.type===K2.Fast&&!A.includes(R.value))}),W=e.computed(()=>a.filters.filter(A=>A.type!==K2.Fast)),u2=e.computed(()=>l.value||!f.value?"purple-invert":"black-flat"),w=e.computed(()=>!n.isEmpty(C.value)&&!!_.value&&_.value.type!==K2.Fast),T=e.computed(()=>!M.value.trim()),H=()=>{c.value=O.value.filter,p.value=O.value.filter_name,i.value=O.value.filter,d.value=O.value.filter_name};e.onMounted(()=>{I(),window.addEventListener("storage",I),H()}),e.onBeforeUnmount(()=>{window.removeEventListener("storage",I)});const I=()=>{B.value=x.value[a.name]||[]},t2=A=>{const{relation:R,value:J}=A,g2=R?{[R]:A.default}:A.default;m.value=J,P({value:g2,valueName:A.name}),$()},P=({value:A,valueName:R})=>{C.value=A,k.value=R||""},$=()=>{y.value?o2():r2()},o2=()=>{var A;switch((A=_.value)==null?void 0:A.type){case K2.Relation:{X();break}default:{i2();break}}y.value=null},r2=()=>{var A;switch((A=_.value)==null?void 0:A.type){case K2.Relation:{v();break}default:{i2();break}}y.value=null},X=()=>{var J,g2;if(y.value){const E2=y.value.relationKey===G2.Exists?[0]:[y.value.value],L2={[y.value.category]:{[y.value.relationKey]:E2}},q2={[m.value]:n.cloneDeep(C.value)};if(n.isEqual(q2,L2)){r("error",b.messages.same_filter);return}}const{category:A,categoryName:R}=U();if(y.value)if(y.value.relationKey===G2.Exists)delete A[y.value.relationKey],delete R[y.value.relationKey];else{const E2=A[y.value.relationKey],L2=(E2==null?void 0:E2.indexOf(String(y.value.value)))??-1;L2!==-1&&((J=A==null?void 0:A[y.value.relationKey])==null||J.splice(L2,1),n.isEmpty(A[y.value.relationKey])&&delete A[y.value.relationKey],(g2=R==null?void 0:R[y.value.relationKey])==null||delete g2[y.value.value],n.isEmpty(R[y.value.relationKey])&&delete R[y.value.relationKey])}h2(A,R)},v=()=>{const{category:A,categoryName:R}=U();h2(A,R)},U=()=>{const A=Object.keys(C.value),R=n.cloneDeep(i.value),J=n.cloneDeep(d.value),g2=R[m.value],E2=J[m.value];return g2&&A.forEach(L2=>{if(L2===G2.Exists)g2[G2.Exists]=0,E2[G2.Exists]=null;else{const q2=C.value[L2],b0=k.value[L2];L2 in g2?(g2[L2]=n.uniqWith([...g2[L2],...q2],n.isEqual),E2[L2]={...E2[L2],...b0}):(g2[L2]=q2,E2[L2]=b0)}}),{category:g2,categoryName:E2}},h2=(A,R)=>{const J={...i.value,[m.value]:A||C.value};if(n.isEqual(i.value,J)){r("error",b.messages.same_filter);return}i.value=J,d.value={...d.value,[m.value]:R||k.value},F()},F=()=>{var A;switch((A=_.value)==null?void 0:A.type){case K2.Text:case K2.Relation:P({value:""});break;case K2.Range:case K2.Date:P({value:{}});break}},i2=()=>{var A;if(((A=_.value)==null?void 0:A.type)===K2.Range&&Object.keys(C.value||{}).length===2){const R=C.value;if(R.more&&R.less&&R.more>R.less){r("error",b.messages.more_than);return}}h2(C.value,C.value)},k2=A=>{if(y.value=null,n.isEmpty(A)){i.value={},d.value={};return}d.value=n.cloneDeep(A),Q(A)},b2=()=>{c.value={},p.value={},i.value={},d.value={},r("clear",b.messages.accidentally_cleared)},Q=A=>{const R=n.cloneDeep(A),J=[G2.Is,G2.IsNot];for(let[g2,E2]of Object.entries(A))if(E2.constructor===Object)for(let[L2,q2]of Object.entries(E2))J.includes(L2)&&(q2==null?void 0:q2.constructor)===Object&&(R[g2][L2]=[...Object.keys(q2)]);i.value=R},p2=A=>{var g2;if(y.value=n.isEqual(y.value,A)?null:A,!y.value){F();return}let R=null,J=null;A.relationKey?(R={[A.relationKey]:A.relationKey===G2.Exists?[0]:[String(A.value)]},J={[A.relationKey]:A.relationKey===G2.Exists?[0]:{[A.value]:A.title}}):(R=((g2=A.value)==null?void 0:g2.constructor)===Object?A.value:String(A.value),J=A.value),m.value=A.category,e.nextTick(()=>{C.value=R,k.value=J})},E=()=>{O.value={filter:i.value,filter_name:d.value};const A={filter:i.value,filter_name:_9.encode(d.value)};r("confirm",A)},c2=A=>{V.value&&V.value.name===A.name?(V.value=null,i.value={},d.value={}):(V.value=A,i.value=n.cloneDeep(A.filter),d.value=n.cloneDeep(A.filter_name)),l.value||E()},y2=A=>{var J;const R=(J=x.value[a.name])==null?void 0:J.filter(g2=>A&&g2.name!==A.name);x.value[a.name]=[...R],S.value=n.cloneDeep(V.value),V.value=null,i.value={},d.value={},r("delete-preset",b.messages.accidentally_deleted)},d2=()=>{var J;if(x.value[a.name]&&x.value[a.name].find(g2=>{var E2,L2;return((E2=g2.name)==null?void 0:E2.trim())===((L2=M.value)==null?void 0:L2.trim())})){r("error",b.messages.same_preset_name);return}const A={name:(J=M.value)==null?void 0:J.trim(),filter:n.cloneDeep(i.value),filter_name:n.cloneDeep(d.value)},R=x.value[a.name];R?x.value[a.name]=[A,...R]:x.value[a.name]=[A],M.value="",V.value={...A}},S2=A=>V.value&&V.value.name===A.name?"purple-invert":"gray-outline";return e.watch(()=>a.modelValue,A=>{const R=A||{filter:null,filter_name:null};if(i.value={...R.filter},R.filter_name)try{d.value=_9.decode(R.filter_name)}catch{console.error("Can't parse filters")}},{deep:!0}),e.watch(()=>_.value,()=>{P({value:""})},{deep:!0}),e.watch(()=>i.value,()=>{if(V.value){const A=x.value[a.name].map(R=>V.value&&R.name===V.value.name?{name:R.name,filter:n.cloneDeep(i.value),filter_name:n.cloneDeep(d.value)}:R);x.value[a.name]=[...A]}}),(A,R)=>(e.openBlock(),e.createElementBlock("div",Jd,[e.createElementVNode("div",eu,[e.createVNode(p3,{content:b.main_tooltip,placement:e.unref(a1).Top,size:e.unref(ce).S},{default:e.withCtx(()=>[e.createVNode(i0,{variation:u2.value,disabled:t.disabledOpen,"bg-flat":l.value,size:e.unref(X0).MCompact,onClick:R[0]||(R[0]=J=>l.value=!l.value)},{"icon-prepend":e.withCtx(()=>[e.createVNode(W2,{name:"filter_list"})]),_:1},8,["variation","disabled","bg-flat","size"])]),_:1},8,["content","placement","size"]),B.value?(e.openBlock(),e.createElementBlock("div",tu,[e.createElementVNode("div",ou,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(B.value,J=>(e.openBlock(),e.createBlock(i0,{key:J.name,variation:S2(J),"secondary-color":"purple",onMouseup:()=>c2(J)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(J.name),1)]),_:2},1032,["variation","onMouseup"]))),128))])])):e.createCommentVNode("",!0)]),l.value?(e.openBlock(),e.createBlock(e.resolveDynamicComponent(t.useTeleport?e.Teleport:"div"),{key:0,to:"#filterTeleportTarget"},{default:e.withCtx(()=>[e.createElementVNode("div",nu,[e.createElementVNode("div",ru,[e.createElementVNode("div",au,[e.createVNode(Y5,{modelValue:m.value,"onUpdate:modelValue":R[1]||(R[1]=J=>m.value=J),title:b.value,options:W.value,placeholder:b.choose,"hide-selected":!1,class:"mc-filter__main-select",name:"filter_value_name"},null,8,["modelValue","title","options","placeholder"]),_.value?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[N.value?(e.openBlock(),e.createBlock($8,{key:0,"model-value":C.value,filter:_.value,placeholders:b,"current-values":y.value?{}:i.value,"use-timezone":a.useTimezone,"onUpdate:modelValue":P},null,8,["model-value","filter","placeholders","current-values","use-timezone"])):Z.value?(e.openBlock(),e.createBlock(Z8,{key:1,"model-value":C.value,filter:_.value,placeholders:b,"current-values":y.value?{}:i.value,"use-timezone":a.useTimezone,"onUpdate:modelValue":P},null,8,["model-value","filter","placeholders","current-values","use-timezone"])):Y.value?(e.openBlock(),e.createBlock(A8,{key:2,"model-value":C.value,filter:_.value,placeholders:b,"current-values":y.value?{}:i.value,"use-timezone":a.useTimezone,"onUpdate:modelValue":P},null,8,["model-value","filter","placeholders","current-values","use-timezone"])):D.value?(e.openBlock(),e.createBlock(T8,{key:3,"model-value":C.value,filter:_.value,placeholders:b,"current-values":y.value?{}:i.value,"use-timezone":a.useTimezone,"onUpdate:modelValue":P},null,8,["model-value","filter","placeholders","current-values","use-timezone"])):e.createCommentVNode("",!0),w.value?(e.openBlock(),e.createBlock(i0,{key:4,variation:"purple-outline",onClick:$},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(b.actions[y.value?"save":"add"]),1)]),_:1})):e.createCommentVNode("",!0)],64)):e.createCommentVNode("",!0)])]),e.createVNode(D8,{"model-value":d.value,filters:t.filters,placeholders:b,"active-tag":y.value,"use-timezone":a.useTimezone,onTagChange:R[2]||(R[2]=J=>k2(J)),onTagClick:R[3]||(R[3]=J=>p2(J)),onClear:b2},null,8,["model-value","filters","placeholders","active-tag","use-timezone"]),e.createElementVNode("section",lu,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(z.value,(J,g2)=>(e.openBlock(),e.createBlock(p3,{key:g2,content:J.description||"",placement:e.unref(a1).Top,size:e.unref(ce).S},{default:e.withCtx(()=>[e.createVNode(d9,{variation:"gray-outline","text-color":"black",size:e.unref(l9).S,onClick:E2=>t2(J)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(J.name),1)]),_:2},1032,["size","onClick"])]),_:2},1032,["content","placement","size"]))),128))]),e.createElementVNode("div",iu,[e.createElementVNode("div",su,[e.createVNode(i0,{disabled:f.value,loading:t.buttonConfirmIsLoading,size:e.unref(X0).S,onClick:E},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(b.actions.confirm),1)]),_:1},8,["disabled","loading","size"]),V.value?(e.openBlock(),e.createBlock(i0,{key:0,variation:"red-outline",size:e.unref(X0).S,onClick:R[4]||(R[4]=()=>y2(V.value))},{"icon-append":e.withCtx(()=>[e.createVNode(W2,{name:"delete",size:"250",color:"red"})]),default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(b.actions.delete_preset)+" ",1)]),_:1},8,["size"])):e.createCommentVNode("",!0)]),e.createElementVNode("div",cu,[e.createVNode(z2,{class:"mc-filter__preset-input-title"},{"icon-append":e.withCtx(()=>[e.createVNode(p3,{content:b.enter_preset_tooltip,placement:e.unref(a1).Top,size:e.unref(ce).S},{default:e.withCtx(()=>[e.createVNode(W2,{name:"help_solid",size:"250",color:"outline-gray"})]),_:1},8,["content","placement","size"])]),default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(b.create_preset)+" ",1)]),_:1}),e.createVNode(O3,{modelValue:M.value,"onUpdate:modelValue":R[5]||(R[5]=J=>M.value=J),placeholder:b.enter_preset_name,"max-length":20,class:"mc-filter__preset-input",name:"preset_name"},null,8,["modelValue","placeholder"]),e.createVNode(i0,{disabled:T.value,variation:"purple-outline",size:e.unref(X0).S,onClick:d2},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(b.actions.create),1)]),_:1},8,["disabled","size"])])])])]),_:1})):e.createCommentVNode("",!0)]))}}),N8=e.defineComponent({__name:"McOverlay",props:{size:{type:String,default:"500"},backgroundColor:{type:String,default:"white"}},setup(t){const o=t,n=e.computed(()=>({"--mc-overlay-color":o.backgroundColor&&X2[o.backgroundColor],"--mc-overlay-spinner-size":o.size&&se[o.size]}));return(r,a)=>(e.openBlock(),e.createElementBlock("section",{ref:"overlay",class:"mc-overlay",style:e.normalizeStyle(n.value)},a[0]||(a[0]=[e.createElementVNode("div",{class:"mc-overlay__background"},null,-1),e.createElementVNode("section",{class:"mc-overlay__spinner"},null,-1)]),4))}}),uu=Object.freeze(Object.defineProperty({__proto__:null,default:N8},Symbol.toStringTag,{value:"Module"})),z3={[V1.Black]:{mode:V1.Black,className:"mc-side-bar--color-theme-black",dropdownActivator:"white",mainMenuLinks:{variable:"gray-flat",secondaryColor:"white"},closeButton:{variable:"gray-link",secondaryColor:"white"}},[V1.White]:{mode:V1.White,className:"mc-side-bar--color-theme-white",dropdownActivator:"black",mainMenuLinks:{variable:"black-flat",secondaryColor:"purple"},closeButton:{variable:"black-link",secondaryColor:"purple"}}},Cu=["src","alt"],hu=["src","alt"],pu=["src"],F8=e.defineComponent({__name:"McSideBarTop",props:{menuApps:{type:Array,default:()=>[]},logoTitle:{type:String,default:"Dashboard"},logoTitleVariation:{type:String,default:h0.Subtitle},logoSrc:{type:String,default:""},logoIcon:{type:String,default:""},dropdownPosition:{type:String,default:He.Left},compact:{type:Boolean,default:!1}},setup(t){const o=Ee(),n=e.inject("provideData",{}),r=t,a=e.ref(!1),l=e.computed(()=>n.currentThemeConfig||z3[V1.Black]),i=e.computed(()=>o.isEmpty(r.menuApps)?null:r.menuApps.filter(d=>!Object.prototype.hasOwnProperty.call(d,"isVisible")||d.isVisible));return(d,c)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["mc-side-bar-top",`mc-side-bar-top--theme-${l.value.dropdownActivator}`])},[i.value?(e.openBlock(),e.createBlock(mt,{key:1,modelValue:a.value,"onUpdate:modelValue":c[0]||(c[0]=p=>a.value=p),position:t.dropdownPosition,items:i.value},{activator:e.withCtx(()=>[e.createVNode(h3,null,{left:e.withCtx(()=>[t.logoSrc?(e.openBlock(),e.createElementBlock("img",{key:0,class:"mc-side-bar-top__img",src:t.logoSrc,width:"24",height:"24",alt:t.logoTitle},null,8,hu)):t.logoIcon?(e.openBlock(),e.createBlock(W2,{key:1,class:"rotate",name:t.logoIcon},null,8,["name"])):e.createCommentVNode("",!0)]),top:e.withCtx(()=>[e.createVNode(i0,{variation:`${l.value.dropdownActivator}-link`,size:t.compact?e.unref(X0).LCompact:e.unref(X0).L,class:"mc-side-bar-top__activator-btn"},{"icon-append":e.withCtx(()=>[e.createVNode(W2,{class:"rotate",name:"arrow_drop_down",color:"gray"})]),default:e.withCtx(()=>[t.compact?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(z2,{key:0,weight:e.unref(Y0).SemiBold,variation:t.logoTitleVariation},{"icon-append":e.withCtx(()=>[e.renderSlot(d.$slots,"title-append")]),default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.logoTitle)+" ",1)]),_:3},8,["weight","variation"]))]),_:3},8,["variation","size"])]),_:3})]),item:e.withCtx(({item:p})=>[e.createVNode(i0,{"full-width":"","text-align":e.unref(Se).Left,variation:"black-flat",href:p.href,to:p.to,target:p.target,"is-active":p.isActive,exact:p.exact},{"icon-prepend":e.withCtx(()=>[p.icon?(e.openBlock(),e.createBlock(W2,{key:0,name:p.icon},null,8,["name"])):p.image?(e.openBlock(),e.createElementBlock("img",{key:1,src:p.image,width:"24",height:"24",alt:"service image"},null,8,pu)):e.createCommentVNode("",!0)]),default:e.withCtx(()=>[e.createTextVNode(" "+e.toDisplayString(p.name),1)]),_:2},1032,["text-align","href","to","target","is-active","exact"])]),_:3},8,["modelValue","position","items"])):(e.openBlock(),e.createBlock(h3,{key:0},e.createSlots({top:e.withCtx(()=>[t.compact?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(z2,{key:0,weight:e.unref(Y0).SemiBold,variation:t.logoTitleVariation},{"icon-append":e.withCtx(()=>[e.renderSlot(d.$slots,"title-append")]),default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.logoTitle)+" ",1)]),_:3},8,["weight","variation"]))]),_:2},[t.logoSrc?{name:"left",fn:e.withCtx(()=>[e.createElementVNode("img",{class:"mc-side-bar-top__img",src:t.logoSrc,width:"24",height:"24",alt:t.logoTitle},null,8,Cu)]),key:"0"}:void 0]),1024))],2))}}),mu={key:1,class:"mc-side-bar-button__dot"},x9=e.defineComponent({__name:"McSideBarButton",props:{to:{type:Object,default:null},href:{type:String,default:null},icon:{type:String,default:""},iconColor:{type:String,default:"currentColor"},title:{type:String,default:""},compact:{type:Boolean,default:!1},variation:{type:String},secondaryColor:{type:String},withTooltip:{type:Boolean,default:!1},withIndicator:{type:Boolean,default:!1},isActive:{type:Boolean,default:!1},info:{type:[String,Number],default:""},exact:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},setup(t){const o=e.useAttrs(),n=e.inject("provideData",{}),r=t,a=e.computed(()=>n.currentThemeConfig||z3[V1.Black]),l=e.computed(()=>({"mc-side-bar-button":!0,[`mc-side-bar--${a.value.mode||"black"}__button`]:!0,"purple-hover":!r.secondaryColor&&a.value.mainMenuLinks.variable==="black-flat",[o.class]:!!o.class})),i=e.computed(()=>({...o,variation:r.variation||a.value.mainMenuLinks.variable,secondaryColor:r.secondaryColor||a.value.mainMenuLinks.secondaryColor,textAlign:Se.Left,fullWidth:!0,size:r.compact?X0.SCompact:X0.S,href:r.href,to:r.to,exact:r.exact,disabled:r.disabled,isActive:r.isActive,tooltip:r.compact&&r.withTooltip?r.title:"",tooltipPlacement:a1.Right}));return(d,c)=>(e.openBlock(),e.createBlock(i0,e.mergeProps(i.value,{class:l.value}),e.createSlots({"icon-prepend":e.withCtx(()=>[t.icon?(e.openBlock(),e.createBlock(W2,{key:0,fill:t.iconColor,class:"mc-side-bar-button__icon",name:t.icon},null,8,["fill","name"])):e.createCommentVNode("",!0),t.icon&&t.compact&&(t.info||t.withIndicator)?(e.openBlock(),e.createElementBlock("span",mu)):e.createCommentVNode("",!0)]),default:e.withCtx(()=>[t.compact?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createTextVNode(e.toDisplayString(t.title),1)],64))]),_:2},[t.compact?void 0:{name:"icon-append",fn:e.withCtx(()=>[t.info||t.withIndicator?(e.openBlock(),e.createBlock(d9,{key:0,variation:"purple",class:e.normalizeClass(["mc-side-bar-button__chip",{indicator:t.withIndicator}])},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.withIndicator?"":t.info),1)]),_:1},8,["class"])):e.createCommentVNode("",!0)]),key:"0"}]),1040,["class"]))}}),fu={class:"mc-side-bar-center"},ku={key:1,class:"mc-side-bar-center__content"},O8=e.defineComponent({__name:"McSideBarCenter",props:{title:{type:String,default:""},menuMain:{type:Array,default:()=>[]},counts:{type:Object,default:()=>({})},chatraConfig:{type:Object,default:()=>({})},compact:{type:Boolean,default:!1}},emits:["open-side-bar","handlerChatraClick"],setup(t,{emit:o}){const n=_8(),r=c9(),a=e.inject("provideData",{}),l=o,i=t,d=e.ref(!0),c=e.ref([]),p=e.computed(()=>a.currentThemeConfig||z3[V1.Black]);e.onBeforeMount(()=>{m()}),e.watch(()=>i.menuMain,()=>{m()},{deep:!0}),e.watch(()=>i.compact,()=>{m()}),e.watch(()=>n,(y,b)=>{if(d.value=!0,b.path!==y.path){const f=c.value.find(M=>{var V;return M.to===y.path||((V=M.menu)==null?void 0:V.find(S=>S.to===y.path))});f!=null&&f.menu&&!i.compact&&(f.open=!0)}e.nextTick(()=>{c.value.forEach(f=>{const M=f.to===y.path,V=f.menu&&f.menu.some(S=>{var x,B;return((x=S.to)==null?void 0:x.match(y==null?void 0:y.path))||((B=y.path)==null?void 0:B.match(S.to))});M||V||(f.open=!1)}),d.value=!1})});const C=y=>({open:y.open,active:y.active(),"with-submenu":y.menu&&y.menu.length,[`mc-side-bar--${p.value.mode||"black"}__button`]:!0,"purple-hover":p.value.mainMenuLinks.variable==="black-flat",[`mc-button--variation-${p.value.mainMenuLinks.variable}`]:!!p.value.mainMenuLinks.variable,"mc-side-bar--black__button mc-button nuxt-link-active":y.menu&&y.menu.length&&!y.open&&y.active()}),k=()=>{i.compact&&l("open-side-bar")},m=()=>{d.value=!0,c.value=i.menuMain.map(y=>{const b=()=>{var f;return y.menu&&y.menu.some(M=>{var V;return(V=n==null?void 0:n.path)==null?void 0:V.match(M.to)})||!!((f=n==null?void 0:n.path)!=null&&f.match(y.to))};return{id:r.timestamp(5),...y,active:b,indicator:()=>y.menu&&y.menu.some(f=>{var M;return!!((M=i.counts)!=null&&M[f.count_key])}),open:!i.compact&&b()}}),d.value=!1};return(y,b)=>(e.openBlock(),e.createElementBlock("div",fu,[t.title?(e.openBlock(),e.createBlock(z2,{key:0,class:"mc-side-bar-center__title",color:t.compact?"transparent":"dark-gray"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.title),1)]),_:1},8,["color"])):e.createCommentVNode("",!0),c.value&&c.value.length?e.withDirectives((e.openBlock(),e.createElementBlock("div",ku,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,f=>(e.openBlock(),e.createElementBlock("div",{key:f.id,class:e.normalizeClass([{"item-active":f.active()},"mc-side-bar-center__content-item item"])},[e.createElementVNode("div",{class:e.normalizeClass(["item__head",C(f)]),onClick:k},[e.createVNode(x9,{info:f.menu&&f.menu.length?null:f.info||i.counts[f.count_key]||null,href:f.href,to:f.to,icon:f.icon,"icon-color":f.iconColor,title:f.name,compact:t.compact,"is-active":f.active(),"with-submenu":f.menu&&!!f.menu.length,"with-indicator":f.indicator()&&!f.open,"with-tooltip":"",class:"item__head-button--no-hover"},null,8,["info","href","to","icon","icon-color","title","compact","is-active","with-submenu","with-indicator"]),f.menu&&f.menu.length&&!t.compact?(e.openBlock(),e.createBlock(i0,{key:0,variation:f.active()?"white-link":"gray-link",size:e.unref(X0).MCompact,class:e.normalizeClass(["item__head-arrow",{rotate:f.active()?f.active()&&f.open:f.open}]),onClick:M=>f.open=!f.open},{"icon-prepend":e.withCtx(()=>[e.createVNode(W2,{name:"arrow_forward"})]),_:2},1032,["variation","size","class","onClick"])):e.createCommentVNode("",!0)],2),f.menu&&f.menu.length?(e.openBlock(),e.createBlock(X5,{key:0,class:"item__submenu",active:f.active()?f.active()&&f.open:f.open},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(f.menu,(M,V)=>(e.openBlock(),e.createBlock(x9,{key:V,info:t.counts[M.count_key],href:M.href,to:M.to,icon:M.icon,"icon-color":M.iconColor,title:M.name,compact:t.compact,"with-tooltip":""},null,8,["info","href","to","icon","icon-color","title","compact"]))),128))]),_:2},1032,["active"])):e.createCommentVNode("",!0)],2))),128))],512)),[[e.vShow,!d.value]]):e.createCommentVNode("",!0),t.chatraConfig.title?(e.openBlock(),e.createBlock(G5,{key:2,color:"dark-gray","indent-top":"150","indent-bottom":"150","indent-left":t.compact?"50":"100","indent-right":t.compact?"50":"100"},null,8,["indent-left","indent-right"])):e.createCommentVNode("",!0),t.chatraConfig.title?(e.openBlock(),e.createBlock(x9,{key:3,icon:"chat_messages",title:t.chatraConfig.title,compact:t.compact,"with-tooltip":"",onClick:b[0]||(b[0]=f=>l("handlerChatraClick"))},null,8,["title","compact"])):e.createCommentVNode("",!0)]))}}),z8=e.defineComponent({__name:"McSideBarBottom",props:{hideText:{type:String,default:""},compact:{type:Boolean,default:!1},hiddenMode:{type:Boolean,default:!1},sidebarWidth:{type:String,default:null}},emits:["toggle-size"],setup(t,{emit:o}){const n=e.inject("provideData",{}),r=o,a=t,l=e.computed(()=>n.currentThemeConfig||z3[V1.Black]),i=e.computed(()=>{var C;return(C=l.value)==null?void 0:C.closeButton}),d=e.computed(()=>({"mc-side-bar-bottom--compact":a.compact})),c=e.computed(()=>({minWidth:a.sidebarWidth})),p=()=>{r("toggle-size",!a.compact)};return(C,k)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["mc-side-bar-bottom",d.value])},[!t.compact&&C.$slots["bottom-message"]?(e.openBlock(),e.createElementBlock("div",{key:0,class:"mc-side-bar-bottom__slot-message",style:e.normalizeStyle(c.value)},[e.renderSlot(C.$slots,"bottom-message")],4)):e.createCommentVNode("",!0),t.hiddenMode?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(x9,{key:1,class:"mc-side-bar-bottom__hide-button",icon:"arrow_backward",title:t.hideText,compact:t.compact,variation:i.value.variable,"secondary-color":i.value.secondaryColor,onClick:e.withModifiers(p,["stop","prevent"])},null,8,["title","compact","variation","secondary-color"]))],2))}}),yu={class:"mc-side-bar__scrollable-container"},gu=e.defineComponent({__name:"McSideBar",props:{logoTitle:{type:String,default:"Dashboard"},logoTitleVariation:{type:String,default:h0.Subtitle},logoSrc:{type:String,default:""},logoIcon:{type:String,default:""},menuMainTitle:{type:String,default:""},menuMain:{type:Array,default:()=>[]},counts:{type:Object,default:()=>({})},menuApps:{type:Array,default:()=>[]},chatraConfig:{type:Object,default:()=>({})},hideText:{type:String,default:""},compact:{type:Boolean,default:!1},variable:{type:String,default:V1.Black},width:{type:String,default:"216px"},compactWidth:{type:String,default:"56px"},absoluteBreakpoint:{type:Number,default:null},hiddenBreakpoint:{type:Number,default:null}},emits:["absolute-mode","hidden-mode","compact","chatraClick"],setup(t,{emit:o}){const n=o,r=t,a=e.ref(!1),l=e.ref(r.compact),i=e.ref(r.compact),d=e.ref(0),c=e.computed(()=>({"mc-side-bar--compact":i.value,[b.value.className]:!0})),p=e.computed(()=>({overflow:`${a.value?"hidden":"visible"}`,width:i.value?r.compactWidth:r.width})),C=e.computed(()=>{const x=y.value&&i.value?{position:"absolute",left:`-${r.compactWidth}`}:{};let B={width:i.value?r.compactWidth:r.width};return m.value&&(B.width=r.compactWidth),y.value&&(B.width="0px"),{...B,...x}}),k=e.computed(()=>({"mc-side-bar-wrapper__backdrop--full-width":!i.value&&d.value<r.absoluteBreakpoint})),m=e.computed(()=>!!r.absoluteBreakpoint&&d.value<r.absoluteBreakpoint),y=e.computed(()=>!!r.hiddenBreakpoint&&d.value<r.hiddenBreakpoint),b=e.computed(()=>f.value[r.variable]||f.value[V1.Black]),f=e.computed(()=>({black:z3.black,white:z3.white}));e.onMounted(()=>{(r.absoluteBreakpoint||r.hiddenBreakpoint&&window)&&(S(),window.addEventListener("resize",S))}),e.onBeforeUnmount(()=>{window.removeEventListener("resize",S)});const M=()=>{i.value=!i.value,n("compact",i.value)},V=()=>{i.value=!1,n("compact",i.value)},S=()=>{d.value=window.innerWidth};return e.watch(()=>i.value,x=>{x?setTimeout(()=>{l.value=x},280):l.value=x,a.value=!0,setTimeout(()=>{a.value=!1},280)}),e.watch(()=>r.compact,x=>{i.value=x}),e.watch(()=>m.value,x=>{n("absolute-mode",x)},{immediate:!0}),e.watch(()=>y.value,x=>{n("hidden-mode",x)},{immediate:!0}),e.provide("provideData",e.reactive({currentThemeConfig:b.value})),(x,B)=>(e.openBlock(),e.createElementBlock("article",{ref:"sidebar-wrapper",class:"mc-side-bar-wrapper",style:e.normalizeStyle(C.value)},[e.createElementVNode("section",{class:e.normalizeClass(["mc-side-bar-wrapper__backdrop",k.value]),onClick:e.withModifiers(M,["stop","prevent"])},[e.createElementVNode("div",{ref:"sidebar",class:e.normalizeClass(["mc-side-bar",c.value]),style:e.normalizeStyle(p.value),onClick:B[1]||(B[1]=e.withModifiers(()=>{},["stop"]))},[e.createVNode(F8,{"logo-title":t.logoTitle,"logo-title-variation":t.logoTitleVariation,"logo-src":t.logoSrc,"logo-icon":t.logoIcon,compact:l.value,"menu-apps":t.menuApps},{"title-append":e.withCtx(()=>[e.renderSlot(x.$slots,"title-append")]),_:3},8,["logo-title","logo-title-variation","logo-src","logo-icon","compact","menu-apps"]),e.createElementVNode("section",yu,[e.createVNode(O8,{title:t.menuMainTitle,"menu-main":t.menuMain,counts:t.counts,"chatra-config":t.chatraConfig,compact:l.value,onHandlerChatraClick:B[0]||(B[0]=O=>n("chatraClick")),onOpenSideBar:V},null,8,["title","menu-main","counts","chatra-config","compact"]),e.createVNode(z8,{"hide-text":t.hideText,compact:l.value,"hidden-mode":y.value,"sidebar-width":t.width,onToggleSize:M},{"bottom-message":e.withCtx(()=>[e.renderSlot(x.$slots,"bottom-message")]),_:3},8,["hide-text","compact","hidden-mode","sidebar-width"])])],6)],2)],4))}}),bu=["id","aria-hidden","href","to"],Mu=e.defineComponent({__name:"McTab",props:{id:{type:String,default:""},name:{type:String,required:!0,default:""},prefix:{type:String,default:""},suffix:{type:String,default:""},appendCount:{type:Number,default:null},appendCountColor:{type:String,default:"black"},isDisabled:{type:Boolean,default:!1},visible:{type:Boolean,default:!0},iconPrepend:{type:String,default:""},iconAppend:{type:String,default:""},iconPrependColor:{type:String,default:""},iconAppendColor:{type:String,default:""},to:{type:Object,default:null},href:{type:String,default:""}},setup(t){const o=e.inject("selfRegisterTabMethod",()=>{}),n=e.useAttrs(),r=t,a=e.ref(!1),l=e.ref(!0),i=e.computed(()=>r.id?r.id:r.name.toLowerCase().replace(/ /g,"-")),d=e.computed(()=>r.isDisabled?"#":`#${i.value}`),c=e.computed(()=>!!r.appendCount||r.appendCount===0),p=e.computed(()=>`--mc-tab-append-count-color: ${X2[r.appendCountColor]}`),C=e.computed(()=>[r.prefix,r.name,r.suffix].filter(Boolean).join("")),k=e.computed(()=>r.visible?C.value:""),m=()=>{a.value=!0},y=()=>{a.value=!1};return e.onMounted(()=>{if(o){const b={isActive:a.value,isVisible:l.value,computedId:i.value,hash:d.value,hasAppendCount:c.value,appendCountStyles:p.value,header:k.value,id:r.id,name:r.name,to:r.to,href:r.href,iconAppendColor:r.iconAppendColor,iconPrependColor:r.iconPrependColor,iconAppend:r.iconAppend,iconPrepend:r.iconPrepend,visible:r.visible,isDisabled:r.isDisabled,appendCountColor:r.appendCountColor,appendCount:r.appendCount,suffix:r.suffix,prefix:r.prefix,showTab:m,hideTab:y,onClick:n.onClick,...n};o(b)}}),(b,f)=>e.withDirectives((e.openBlock(),e.createElementBlock("section",{id:t.id,"aria-hidden":!a.value,class:"tabs-component-panel",role:"tabpanel",href:t.href,to:t.to},[t.visible?e.renderSlot(b.$slots,"default",{key:0}):e.createCommentVNode("",!0)],8,bu)),[[e.vShow,a.value]])}}),P8=e.defineComponent({__name:"McWrapScroll",props:{wrap:{type:Boolean,default:!1},gutterY:{type:Number,default:0},gutterX:{type:Number,default:0},justify:{type:String,default:R9.Left},scrollable:{type:Boolean,default:!0},gutterBottom:{type:String,default:null},hasScroll:{type:Boolean,default:!1},withBlur:{type:Boolean,default:!1},moreSpace:{type:Boolean,default:!1},rtl:{type:Boolean,default:!1},scrollSpeed:{type:Number,default:1},tagName:{type:String,default:"div"}},emits:["content-scrolled"],setup(t,{emit:o}){const n=o,r=t,a=e.reactive({scroll_pos:0,start_client_pos:0,distance:0,is_drag:!1,mouse_is_down:!1}),l=e.ref(!1),i=e.ref(!1),d=e.ref(null),c=e.ref(null),p=e.computed(()=>({wrap:r.wrap,align:I9.Top,gutterY:r.gutterY,gutterX:r.gutterX,justify:r.justify})),C=e.computed(()=>({"mc-wrap-scroll":!0,"mc-wrap-scroll--scrollable":r.scrollable,"mc-wrap-scroll--no-scrollbar":!r.hasScroll,"mc-wrap-scroll--more-space":r.moreSpace})),k=e.computed(()=>({"--mc-wrap-scroll-bottom":r1[r.gutterBottom]})),m=e.computed(()=>({"mc-wrap-scroll__wrapper--left-blur":r.withBlur&&l.value,"mc-wrap-scroll__wrapper--right-blur":r.withBlur&&i.value,"mc-wrap-scroll__wrapper--more-space":r.moreSpace}));e.onMounted(()=>{window.addEventListener("mousemove",V),window.addEventListener("mouseup",S),y(),setTimeout(()=>b(),10)}),e.onBeforeUnmount(()=>{window.removeEventListener("mousemove",V),window.removeEventListener("mouseup",S),c.value&&c.value.removeEventListener("scroll",b),d.value&&d.value.disconnect()});const y=()=>{c.value&&(c.value.addEventListener("scroll",b),r.withBlur&&f())},b=()=>{var x;if(n("content-scrolled"),!!r.withBlur&&c.value)try{const B=Math.ceil((x=c.value.getBoundingClientRect())==null?void 0:x.width),O=Math.ceil(c.value.scrollWidth),_=Math.ceil(c.value.scrollLeft);l.value=r.rtl?O>B&&O-10>Math.abs(_)+B:!!_,i.value=r.rtl?Math.abs(_)>1:O>B&&O>Math.abs(_)+B}catch{l.value=!1,i.value=!1}},f=()=>{if(c.value)try{d.value=new MutationObserver(b);const x={attributes:!0,childList:!0,subtree:!0};d.value.observe(c.value,x)}catch{console.error("Error when try to create observer in McWrapScroll")}else console.error("Error when try to create observer in McWrapScroll")},M=x=>{if(c.value){const B=a;if(B.start_client_pos=x.clientX,B.mouse_is_down=!0,B.scroll_pos=c.value.scrollLeft,window.getSelection){let O=window.getSelection();O==null||O.removeAllRanges()}}},V=x=>{if(c.value){const B=a;if(!B.mouse_is_down)return;B.distance=x.clientX-B.start_client_pos,Math.abs(B.distance)>2&&!B.is_drag&&(B.is_drag=!0),B.is_drag&&c.value.scrollTo({left:B.scroll_pos-B.distance*r.scrollSpeed})}},S=()=>{a.is_drag&&(a.is_drag=!1),a.mouse_is_down=!1};return(x,B)=>(e.openBlock(),e.createBlock(e.resolveDynamicComponent(r.tagName),{class:e.normalizeClass([m.value,"mc-wrap-scroll__wrapper"])},{default:e.withCtx(()=>[e.createElementVNode("div",{ref_key:"scrollContainer",ref:c,class:e.normalizeClass(C.value),style:e.normalizeStyle(k.value),onMousedown:M},[e.createVNode(V9,e.mergeProps(p.value,{style:{"pointer-events":a.is_drag?"none":"auto"},class:"mc-wrap-scroll__row"}),{default:e.withCtx(()=>[e.renderSlot(x.$slots,"default")]),_:3},16,["style"])],38)]),_:3},8,["class"]))}}),Lu={class:"tabs-component"},wu=["aria-controls","aria-selected","href","onClick"],vu={class:"tabs-component-tab__tab-name"},Vu={class:"tabs-component-panels"},_u=e.defineComponent({__name:"McTabs",props:{modelValue:{type:String,default:null},tabVariation:{type:String,default:zt.Captions},color:{type:String,default:"black"},accentColor:{type:String,default:"purple"},uppercase:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},sticky:{type:Boolean,default:!1}},emits:["update:modelValue","tab-changed","clicked"],setup(t,{emit:o}){const n=o,r=jd(),a=t,l=e.ref([]),i=e.computed(()=>({"mc-tabs":!0,[`mc-tabs--tab-variation-${a.tabVariation}`]:!!a.tabVariation,"mc-tabs--uppercase":!!a.uppercase,"mc-tabs--sticky":!!a.sticky})),d=e.computed(()=>({"--mc-tabs-color":X2[a.color],"--mc-tabs-accent-color":X2[a.accentColor]})),c=e.computed({get(){return a.modelValue},set(M){n("update:modelValue",M)}}),p=e.computed(()=>l.value.filter(M=>M.visible&&!M.isDisabled));e.onMounted(()=>{m()}),e.onUpdated(()=>{setTimeout(()=>{b()},10)});const C=M=>{l.value.forEach(V=>{V.isActive=V.computedId===M,V.isActive?V.showTab():V.hideTab()})},k=M=>{l.value.push(M)},m=()=>{let[M]=p.value;const V=l.value.find(S=>S.computedId===a.modelValue);V&&!V.isDisabled&&(M=V),M&&f(M)},y=M=>{n("tab-changed",{tab:M})},b=()=>{var S;if(a.loading)return;const M=(S=l.value)==null?void 0:S.find(x=>x.isActive);if(!(M!=null&&M.isDisabled))return;const[V]=p.value;f(V)},f=(M,V)=>{if(V==null||V.preventDefault(),!M.isDisabled){if(M.onClick&&typeof M.onClick=="function")return M.onClick(M);if(M.href){window.open(M.href,"_blank");return}if(M.to&&r){r.push(M.to);return}y(M),C(M.computedId),c.value=M.computedId}};return e.watch(()=>a.loading,(M,V)=>{!M&&V&&e.nextTick(()=>{m()})}),e.provide("selfRegisterTabMethod",k),(M,V)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(i.value),style:e.normalizeStyle(d.value)},[e.createElementVNode("div",Lu,[e.createVNode(P8,{"tag-name":"ul",role:"tablist",scrollable:"",class:"tabs-component-tabs"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.value,(S,x)=>e.withDirectives((e.openBlock(),e.createElementBlock("li",{key:x,class:e.normalizeClass([{"is-active":S.isActive,"is-disabled":S.isDisabled},"tabs-component-tab"]),role:"presentation"},[e.createElementVNode("a",{"aria-controls":S.hash,"aria-selected":S.isActive,href:S.href||S.hash||"javascript:void(0)",class:"tabs-component-tab-a",role:"tab",onClick:B=>f(S,B)},[e.createElementVNode("span",vu,[S.iconPrepend?(e.openBlock(),e.createBlock(W2,{key:0,name:S.iconPrepend,color:S.iconPrependColor},null,8,["name","color"])):e.createCommentVNode("",!0),e.createElementVNode("span",null,e.toDisplayString(S.header),1),S.iconAppend?(e.openBlock(),e.createBlock(W2,{key:1,name:S.iconAppend,color:S.iconAppendColor},null,8,["name","color"])):e.createCommentVNode("",!0)])],8,wu)],2)),[[e.vShow,S.isVisible]])),128))]),_:1}),e.createElementVNode("div",Vu,[e.renderSlot(M.$slots,"default")])])],6))}}),j8=e.defineComponent({__name:"McDrawer",props:{modelValue:{type:Boolean,default:!1},duration:{type:Number,default:300},position:{type:String,default:V3.Right},closeVisible:{type:Boolean,default:!0},showOverlay:{type:Boolean,default:!0},iconClose:{type:String,default:"close"},width:{type:Number,default:300}},emits:["toggle","open","close","update:modelValue"],setup(t,{emit:o}){const n=o,r=t,a=e.ref(0),l=e.ref(100),i=e.computed(()=>r.position===V3.Right),d=e.computed(()=>i.value?100:-100),c=e.computed(()=>({[i.value?V3.Right:V3.Left]:0})),p=e.ref(a.value),C=e.ref(d.value),k=Xt(C,{duration:r.duration,transition:qt.easeOutQuart}),m=Xt(p,{duration:r.duration,transition:qt.easeOutQuart}),y=e.computed(()=>({visibility:m.value?"visible":"hidden",zIndex:m.value?1:-1})),b=e.computed(()=>({transform:`translateX(${k.value}%)`,width:`${r.width}px`,[r.position]:0,...c.value})),f=e.computed(()=>({"mc-drawer__overlay":!0,"mc-drawer__overlay--hidden":!r.showOverlay})),M=()=>{p.value=l.value,C.value=p.value===0?100:0,r.modelValue||(n("update:modelValue",!0),n("open"))},V=()=>{p.value=a.value,C.value=p.value===0?i.value?100:-100:0,r.modelValue&&(n("update:modelValue",!1),n("close"))},S=()=>{r.showOverlay&&V()};return e.watch(()=>r.modelValue,x=>{x?M():V()},{immediate:!0}),(x,B)=>(e.openBlock(),e.createElementBlock("div",{class:"mc-drawer__wrapper",style:e.normalizeStyle(y.value)},[e.createElementVNode("div",{class:e.normalizeClass(f.value),style:e.normalizeStyle(y.value),onClick:e.withModifiers(S,["stop"])},null,6),e.createElementVNode("div",{class:"mc-drawer",style:e.normalizeStyle(b.value),onClick:B[0]||(B[0]=e.withModifiers(()=>{},["stop"]))},[e.renderSlot(x.$slots,"default"),t.closeVisible?(e.openBlock(),e.createElementBlock("button",{key:0,type:"button",class:"mc-drawer__btn-close",onClick:e.withModifiers(V,["prevent"])},[e.createVNode(W2,{class:"mc-drawer__icon-close",name:t.iconClose},null,8,["name"]),e.createVNode(W2,{class:"mc-drawer__icon-close--small",name:t.iconClose,size:"200"},null,8,["name"])])):e.createCommentVNode("",!0)],4)],4))}}),R8=e.defineComponent({__name:"McDrawerContainer",props:{drawerServiceState:{type:Object,default:()=>({})},reactiveProps:{type:Object,default:()=>({})}},setup(t){const o=t,n=e.computed(()=>({zIndex:o.reactiveProps.drawers.length?99:-1,visibility:o.reactiveProps.drawers.length?"visible":"hidden"})),r=a=>{var l;a.close(),setTimeout(()=>{o.reactiveProps.drawers.every(i=>!i.modelValue)&&o.drawerServiceState.closeServiceState()},((l=a==null?void 0:a.drawerProps)==null?void 0:l.duration)||300)};return(a,l)=>(e.openBlock(),e.createElementBlock("div",{class:"mc-drawer-container",style:e.normalizeStyle(n.value)},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.reactiveProps.drawers,(i,d)=>(e.openBlock(),e.createBlock(j8,e.mergeProps({key:i.id,modelValue:i.modelValue,"onUpdate:modelValue":c=>i.modelValue=c,ref_for:!0},i.drawerProps,{"show-overlay":d+1===o.reactiveProps.drawers.length,onClose:()=>r(i)}),{default:e.withCtx(()=>[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(i.component),e.mergeProps({ref_for:!0},i.componentProps,{onCloseDrawer:()=>r(i)}),null,16,["onCloseDrawer"]))]),_:2},1040,["modelValue","onUpdate:modelValue","show-overlay","onClose"]))),128))],4))}}),xu={class:"mc-drawer-content-template"},Hu={key:0,class:"mc-drawer-content-template__header"},Bu={class:"mc-drawer-content-template__body"},Su={class:"mc-drawer-content-template__body-inner"},Eu={key:1,class:"mc-drawer-content-template__footer"},Du=e.defineComponent({__name:"McDrawerContentTemplate",props:{title:{type:String,default:""},titleEllipsis:{type:Boolean,default:!1}},setup(t){const o=t;return(n,r)=>(e.openBlock(),e.createElementBlock("div",xu,[n.$slots.title||o.title?(e.openBlock(),e.createElementBlock("div",Hu,[e.renderSlot(n.$slots,"title",{},()=>[e.createVNode(z2,{variation:e.unref(h0).Subtitle,ellipsis:o.titleEllipsis,weight:e.unref(Y0).SemiBold},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(o.title),1)]),_:1},8,["variation","ellipsis","weight"])])])):e.createCommentVNode("",!0),e.createElementVNode("div",Bu,[r[0]||(r[0]=e.createElementVNode("div",{class:"mc-drawer-content-template__tint"},null,-1)),e.createElementVNode("div",Su,[e.renderSlot(n.$slots,"default")])]),n.$slots.footer?(e.openBlock(),e.createElementBlock("div",Eu,[e.renderSlot(n.$slots,"footer")])):e.createCommentVNode("",!0)]))}}),Tu=["onClose"],I8=e.defineComponent({__name:"McModalContainer",props:{modalServiceState:{type:Object,default:()=>({})},reactiveProps:{type:Object,default:()=>({})}},setup(t){const o=t,n=e.computed(()=>({zIndex:o.reactiveProps.modals.length?99:-1,visibility:o.reactiveProps.modals.length?"visible":"hidden"})),r=a=>{a.close(),setTimeout(()=>{o.reactiveProps.modals.every(l=>!l.modelValue)&&o.modalServiceState.closeServiceState()},300)};return(a,l)=>(e.openBlock(),e.createElementBlock("div",{class:"mc-modal-container",style:e.normalizeStyle(n.value)},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.reactiveProps.modals,i=>(e.openBlock(),e.createElementBlock("div",{key:i.id,onClose:()=>r(i)},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(i.component),e.mergeProps({modelValue:i.modelValue,"onUpdate:modelValue":d=>i.modelValue=d,ref_for:!0},i.componentProps,{onClosed:()=>r(i)}),null,16,["modelValue","onUpdate:modelValue","onClosed"]))],40,Tu))),128))],4))}}),Zu={key:0,class:"mc-modal__wrapper"},Au={key:0,class:"mc-modal__header"},$u={class:"mc-modal__title"},Nu={class:"mc-modal__control"},Fu=e.defineComponent({__name:"McModal",props:{modelValue:{type:Boolean,default:!1},name:{type:String},maxWidth:{type:Number,default:510},duration:{type:Number,default:200},closeVisible:{type:Boolean,default:!0},showOverlay:{type:Boolean,default:!0},clickBackdropToClose:{type:Boolean,default:!0},arrowVisible:{type:Boolean,default:!1},secondaryModal:{type:Boolean,default:!1},scrollableContent:{type:Boolean,default:!0},separators:{type:Boolean,default:!0},headerAlign:{type:String,default:"center"},topPadding:{type:Boolean,default:!1},variation:{type:String,default:"default"}},emits:["before-open","before-close","opened","closed","back","update:modelValue"],setup(t,{emit:o}){const n=o,r=t,a=e.ref(0),l=Xt(a,{duration:r.duration||300,transition:qt.easeOutQuart}),i=e.ref(null),d=e.ref(null),c=e.reactive({scrolled_top:!1,scrolled_bottom:!1,resize_observer:{},small_indents:!1,can_shorten_modal:!1,modal_params:{},indent:{regular:"400",small:"150"},footer:{button:{regular:"600",small:"500"}},header:{title:{line_height:{regular:"300",small:"250"}}}}),p=e.computed(()=>({"mc-modal--arrow-visible":r.arrowVisible,"mc-modal--scrolled-top":c.scrolled_top,"mc-modal--scrolled-bottom":c.scrolled_bottom,"mc-modal--scrollable":r.scrollableContent,"mc-modal--top-padding":r.topPadding,"mc-modal--small-indents":c.small_indents,[`mc-modal--variation-${r.variation}`]:!!r.variation,[`mc-modal--header-align-${r.headerAlign}`]:(r.closeVisible||r.arrowVisible)&&!!r.headerAlign})),C=e.computed(()=>({"--mc-modal-padding":r1[c.indent.regular],"--mc-modal-padding-small":r1[c.indent.small],"--mc-modal-header-line-height":P9[c.header.title.line_height.regular],"--mc-modal-header-line-height-small":P9[c.header.title.line_height.small],"--mc-modal-button-height":se[c.footer.button.regular],"--mc-modal-button-height-small":se[c.footer.button.small],"--mc-modal-max-width":`${r.maxWidth+24}px`,"--mc-modal-state-number":l.value})),k=(O=!0)=>{O||(c.scrolled_top=!1,c.scrolled_bottom=!1,c.small_indents=!1),setTimeout(()=>{if(i.value){const{scrollTop:_,scrollHeight:N,clientHeight:Z}=i.value,Y=2;c.scrolled_top=_>Y,c.small_indents=c.scrolled_top&&c.can_shorten_modal,c.scrolled_bottom=_+Z<N-Y}},O?0:300)},m=()=>{n("before-close"),i.value&&(c.resize_observer&&c.resize_observer.unobserve(i.value),i.value.removeEventListener("scroll",()=>k()))},y=()=>{r.separators&&(f(),i.value&&(i.value.addEventListener("scroll",()=>k(),{passive:!0}),c.resize_observer=new ResizeObserver(()=>V()),c.resize_observer.observe(i.value)),k()),n("opened")},b=O=>{n("back",O)},f=()=>{try{d.value&&Object.keys(C.value).forEach(O=>{var N;const _=parseInt((N=getComputedStyle(d.value))==null?void 0:N.getPropertyValue(O));_&&(c.modal_params[O]=_)})}catch(O){console.error(O)}},M=()=>{var Y,D,z,W,u2,w,T,H,I;const O=(+((Y=c.modal_params)==null?void 0:Y["--mc-modal-padding"])-+((D=c.modal_params)==null?void 0:D["--mc-modal-padding-small"]))*3+ +((z=c.modal_params)==null?void 0:z["--mc-modal-padding-small"]),_=+((W=c.modal_params)==null?void 0:W["--mc-modal-header-line-height"])-+((u2=c.modal_params)==null?void 0:u2["--mc-modal-header-line-height-small"]),N=+((w=c.modal_params)==null?void 0:w["--mc-modal-button-height"])-+((T=c.modal_params)==null?void 0:T["--mc-modal-button-height-small"]),Z=O+_+N;!c.small_indents&&i.value&&(c.can_shorten_modal=((H=i.value)==null?void 0:H.scrollHeight)-((I=i.value)==null?void 0:I.clientHeight)>Z)},V=()=>{M(),k()},S=()=>{a.value=1,n("before-open"),n("update:modelValue",!0),e.nextTick(()=>y())},x=()=>{a.value=0,setTimeout(()=>{m(),n("update:modelValue",!1),n("closed")},r.duration||300)},B=()=>{r.clickBackdropToClose&&x()};return e.watch(()=>r.modelValue,O=>{O?S():x()},{immediate:!0}),(O,_)=>r.modelValue?(e.openBlock(),e.createElementBlock("div",Zu,[r.showOverlay?(e.openBlock(),e.createElementBlock("div",{key:0,class:"mc-modal__overlay",onClick:e.withModifiers(B,["stop"])})):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["mc-modal",p.value]),style:e.normalizeStyle(C.value)},[e.createElementVNode("div",{ref_key:"modalInner",ref:d,class:"mc-modal__inner"},[O.$slots.title?(e.openBlock(),e.createElementBlock("div",Au,[e.createElementVNode("div",$u,[e.renderSlot(O.$slots,"title")])])):e.createCommentVNode("",!0),e.createElementVNode("div",{ref_key:"mcModalBody",ref:i,class:"mc-modal__body"},[e.renderSlot(O.$slots,"default")],512),e.createElementVNode("div",Nu,[e.renderSlot(O.$slots,"footer"),_[0]||(_[0]=e.createElementVNode("div",{id:"mcModalFooter"},null,-1))])],512),t.arrowVisible?(e.openBlock(),e.createElementBlock("button",{key:0,type:"button",class:"mc-modal__btn-back",onClick:e.withModifiers(b,["prevent"])},[e.createVNode(W2,{name:"arrow_leftward",class:"mc-modal__icon-back"})])):e.createCommentVNode("",!0),t.closeVisible?(e.openBlock(),e.createElementBlock("button",{key:1,type:"button",class:"mc-modal__btn-close",onClick:e.withModifiers(x,["prevent"])},[e.createVNode(W2,{class:"mc-modal__icon-close",width:"24",height:"24",name:"close"})])):e.createCommentVNode("",!0)],6)])):e.createCommentVNode("",!0)}}),Pe={defaultHeaderHeight:40,defaultRowHeight:40,defaultFooterRowHeight:40,defaultTableFirstColWidth:251},Y8=e.defineComponent({__name:"McTableSort",props:{sort:{type:Object,default:()=>({})},column:{type:String,default:null}},emits:["change"],setup(t,{emit:o}){const n=o,r=t,a=e.computed(()=>r.column===r.sort.sort_column),l=e.computed(()=>{switch(!0){case(r.sort.sort_direction==="asc"&&a.value):return{direction:"asc",next_direction:"desc",icon:"arrow_downward"};case(r.sort.sort_direction==="desc"&&a.value):return{direction:"desc",next_direction:"asc",icon:"arrow_upward"};default:return{direction:null,next_direction:"asc",icon:"arrow_up_down"}}}),i=()=>{n("change",{sort_column:r.column,sort_direction:l.value.next_direction})};return(d,c)=>(e.openBlock(),e.createElementBlock("div",{class:"mc-table-sort",onClick:i},[e.createVNode(W2,{size:"200",name:l.value.icon,color:a.value?"black":"gray"},null,8,["name","color"])]))}}),Ou={class:"mc-table-skeleton-loading skeleton-load-wrapper"},zu={key:0,class:"mc-table-skeleton-loading__loader mc-table-skeleton-loading__loader--more-height"},Pu={key:2,class:"mc-table-skeleton-loading__loader"},U8=e.defineComponent({__name:"McTableSkeletonLoading",props:{columns:{type:Array,required:!0,default:()=>[]}},setup(t){const o=t,n=e.computed(()=>{const[r]=o.columns;return r.width});return(r,a)=>(e.openBlock(),e.createElementBlock("section",Ou,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.columns,(l,i)=>(e.openBlock(),e.createElementBlock("div",{style:e.normalizeStyle(l.style),class:"mc-table-skeleton-loading__col",key:`skeleton-col__${i}`},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(36,(d,c)=>e.createElementVNode("div",{key:`skeleton-cell-${c}`,class:"mc-table-skeleton-loading__cell"},[c?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("div",zu,a[0]||(a[0]=[e.createElementVNode("div",{class:"mc-table-skeleton-loading__loader_line"},null,-1)]))),i?(e.openBlock(),e.createElementBlock("div",Pu,a[2]||(a[2]=[e.createElementVNode("div",{class:"mc-table-skeleton-loading__loader_line"},null,-1)]))):(e.openBlock(),e.createElementBlock("div",{key:1,class:"mc-table-skeleton-loading__loader",style:e.normalizeStyle({minWidth:`${n.value}px`})},a[1]||(a[1]=[e.createElementVNode("div",{class:"mc-table-skeleton-loading__loader_avatar"},null,-1),e.createElementVNode("div",{class:"mc-table-skeleton-loading__loader_preview-content"},[e.createElementVNode("div",{class:"mc-table-skeleton-loading__loader_line"}),e.createElementVNode("div",{class:"mc-table-skeleton-loading__loader_line"})],-1)]),4))])),64))],4))),128))]))}}),ju={class:"mc-table__table"},Ru={class:"mc-table__table_header"},Iu={class:"mc-table__table_header-row"},Yu={class:"mc-table__table_header-cell_content"},Uu={class:"mc-table__table_header-cell_content-left"},Wu={class:"mc-table__table_header-cell_content-right"},qu={class:"mc-table__table_body"},Gu=["onClick"],Xu={class:"mc-table__table_body-cell_content"},Ku={class:"mc-table__table_body-cell_content-left"},Qu={key:0,class:"mc-table__table_body-cell_content-right"},Ju={key:0,class:"mc-table__table_footer"},eC={class:"mc-table__table_footer-row"},tC=e.defineComponent({__name:"McTable",props:{columns:{type:Array,required:!0,default:()=>[]},data:{type:Array,required:!0,default:()=>[]},totals:{type:Object,default:()=>({})},sort:{type:Object,default:()=>({})},fixedFirstColumn:{type:Boolean,default:!0},fixedLastColumn:{type:Boolean,default:!1},hasLoadMore:{type:Boolean,default:!0},height:{type:[Number,String],default:"auto"},headerRowHeight:{type:Number,default:Pe.defaultHeaderHeight},rowHeight:{type:Number,default:Pe.defaultRowHeight},footerRowHeight:{type:Number,default:Pe.defaultFooterRowHeight},skeletonLoading:{type:Boolean,default:!1},bottomLoading:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},placeholders:{type:Object,default:()=>({})},noDataIcon:{type:String,default:null},noDataImg:{type:String,default:"/no_table_data.png"},toTableCardProps:{type:Object,default:()=>({})}},emits:["loading","row-click","sort","table-card-opened"],setup(t,{emit:o}){const n=e.defineAsyncComponent(()=>Promise.resolve().then(()=>D7)),r=e.defineAsyncComponent(()=>Promise.resolve().then(()=>uu)),a={no_data:"No data",loading:"Loading...",all_loaded:"All loaded",total:"Total"},l=o,i=Ee(),d=e.useSlots(),c=t,p=e.ref({state:!1}),C=e.ref(null),k=e.computed(()=>!i.isEmpty(c.data)),m=e.computed(()=>!i.isEmpty(c.totals)),y=e.computed(()=>c.fixedFirstColumn||c.fixedLastColumn),b=e.reactive(i.deepMerge(a,c.placeholders)),f=e.reactive({firstColHasShadow:!1,lastColHasShadow:!1}),M=e.computed(()=>{const[z]=c.columns;return(p.value.state?[z]:c.columns).map((W,u2)=>{const w=c.fixedFirstColumn&&u2===0,T=c.fixedLastColumn&&u2===c.columns.length-1;return{...W,fixedFirst:w,fixedLast:T,style:{...W.width?{"--mc-table-cell-width":`${W.width}px`,"--mc-table-cell-max-width":`${W.width}px`,"--mc-table-cell-min-width":`${W.width}px`}:{"--mc-table-cell-min-width":W.minWidth&&`${W.minWidth}px`,"--mc-table-cell-width":"100%"}}}})}),V=e.computed(()=>M.value.map(z=>({...z,class:{"mc-table__table_header-cell":!0,"mc-table__table_header-cell--fixed-first":z.fixedFirst,"mc-table__table_header-cell--fixed-last":z.fixedLast,"mc-table__table_header-cell--shadow-first":z.fixedFirst&&f.firstColHasShadow,"mc-table__table_header-cell--shadow-last":z.fixedLast&&f.lastColHasShadow}}))),S=e.computed(()=>M.value.map(z=>({...z,class:{"mc-table__table_body-cell":!0,"mc-table__table_body-cell--fixed-first":z.fixedFirst,"mc-table__table_body-cell--fixed-last":z.fixedLast,"mc-table__table_body-cell--shadow-first":z.fixedFirst&&f.firstColHasShadow,"mc-table__table_body-cell--shadow-last":z.fixedLast&&f.lastColHasShadow}}))),x=e.computed(()=>M.value.map(z=>({...z,class:{"mc-table__table_footer-cell":!0,"mc-table__table_footer-cell--fixed-first":z.fixedFirst,"mc-table__table_footer-cell--fixed-last":z.fixedLast,"mc-table__table_footer-cell--shadow-first":z.fixedFirst&&f.firstColHasShadow,"mc-table__table_footer-cell--shadow-last":z.fixedLast&&f.lastColHasShadow}}))),B=e.computed(()=>({"--mc-table-height":typeof c.height=="number"?`${c.height}px`:c.height,"--mc-table-header-row-height":i.isNumber(c.headerRowHeight)?`${c.headerRowHeight}px`:"40px","--mc-table-row-height":i.isNumber(c.rowHeight)?`${c.rowHeight}px`:"40px","--mc-table-footer-row-height":i.isNumber(c.footerRowHeight)?`${c.footerRowHeight}px`:"40px"})),O=e.computed(()=>({tableColumns:c.columns,tableData:c.data,tableTotals:c.totals,tableSort:c.sort,tableHeaderRowHeight:c.headerRowHeight,tableFooterRowHeight:c.footerRowHeight,tableFixedFirstColumn:c.fixedFirstColumn,tableCardProps:c.toTableCardProps})),_=g6(()=>{if(C.value){const{scrollLeft:z,scrollWidth:W,clientWidth:u2}=C.value,w=c.fixedFirstColumn&&z>0,T=c.fixedLastColumn&&z+u2<W;f.firstColHasShadow!==w&&(f.firstColHasShadow=w),f.lastColHasShadow!==T&&(f.lastColHasShadow=T)}},10),N=()=>{y.value&&C.value&&(_(),C.value.addEventListener("scroll",_))},Z=()=>{y.value&&C.value&&C.value.removeEventListener("scroll",_)},Y=z=>{l("row-click",z)},D=z=>{p.value=z,l("table-card-opened",z)};return e.onMounted(()=>{N()}),e.onBeforeUnmount(()=>{Z()}),(z,W)=>{const u2=e.resolveComponent("router-view");return e.openBlock(),e.createElementBlock("div",{class:"mc-table__container",style:e.normalizeStyle(B.value)},[e.createElementVNode("div",{ref_key:"mcTable",ref:C,class:"mc-table"},[e.createElementVNode("div",ju,[e.createElementVNode("div",Ru,[e.createElementVNode("div",Iu,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(V.value,(w,T)=>(e.openBlock(),e.createElementBlock("div",{key:T,class:e.normalizeClass(w.class),style:e.normalizeStyle(w.style)},[e.createElementVNode("div",Yu,[e.createElementVNode("div",Uu,[w.sortable?(e.openBlock(),e.createBlock(Y8,{key:0,column:w.field,sort:t.sort,onChange:W[0]||(W[0]=H=>l("sort",H))},null,8,["column","sort"])):e.createCommentVNode("",!0),e.renderSlot(z.$slots,"header-cell",{column:w,cellIndex:T},()=>[e.createVNode(z2,{"text-align":w.align,weight:e.unref(Y0).SemiBold,"pre-line":""},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(w.header),1)]),_:2},1032,["text-align","weight"])])]),e.createElementVNode("div",Wu,[e.renderSlot(z.$slots,`${w.field}-header-right`,{column:w,cellIndex:T}),e.renderSlot(z.$slots,`${w.field}-total`,{column:w,cellIndex:T},()=>[w.total?(e.openBlock(),e.createBlock(d9,{key:0,title:w.total,variation:"hover-gray","text-color":"gray",size:e.unref(l9).S},null,8,["title","size"])):e.createCommentVNode("",!0)])])])],6))),128))])]),e.createElementVNode("div",qu,[c.skeletonLoading?(e.openBlock(),e.createBlock(U8,{key:0,columns:S.value},null,8,["columns"])):e.createCommentVNode("",!0),k.value?(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:1},e.renderList(t.data,(w,T)=>(e.openBlock(),e.createElementBlock("div",{key:T,class:e.normalizeClass(["mc-table__table_body-row",{"mc-table__table_body-row--active":String(p.value.id)===String(w.id)}]),onClick:()=>Y(w)},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(S.value,(H,I)=>(e.openBlock(),e.createElementBlock("div",{key:I,class:e.normalizeClass(H.class),style:e.normalizeStyle(H.style)},[e.createElementVNode("div",Xu,[e.createElementVNode("div",Ku,[e.renderSlot(z.$slots,H.field,{row:w,rowIndex:T,column:H,cellIndex:I,cellValue:w[H.field]},()=>[e.createVNode(z2,{"text-align":H.align,ellipsis:""},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(w[H.field]),1)]),_:2},1032,["text-align"])])]),e.unref(d)[`${H.field}-right`]?(e.openBlock(),e.createElementBlock("div",Qu,[e.renderSlot(z.$slots,`${H.field}-right`)])):e.createCommentVNode("",!0)])],6))),128))],10,Gu))),128)):e.createCommentVNode("",!0),e.createVNode(M8,{active:c.hasLoadMore,onLoading:W[1]||(W[1]=w=>l("loading"))},null,8,["active"])]),m.value?(e.openBlock(),e.createElementBlock("div",Ju,[e.createElementVNode("div",eC,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(x.value,(w,T)=>(e.openBlock(),e.createElementBlock("div",{key:T,class:e.normalizeClass(w.class),style:e.normalizeStyle(w.style)},[e.renderSlot(z.$slots,"footer-cell",{column:w,cellIndex:T,cellValue:t.totals[w.field]},()=>[e.createVNode(z2,{"text-align":w.align,weight:e.unref(Y0).SemiBold},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.totals[w.field]),1)]),_:2},1032,["text-align","weight"])])],6))),128))])])):e.createCommentVNode("",!0)])],512),e.renderSlot(z.$slots,"default",e.mergeProps(O.value,{onSetTableCardState:D}),()=>[e.createVNode(u2,e.mergeProps(O.value,{onSetTableCardState:D}),null,16)]),t.bottomLoading?(e.openBlock(),e.createBlock(e.unref(n),{key:0})):e.createCommentVNode("",!0),t.loading?(e.openBlock(),e.createBlock(e.unref(r),{key:1})):e.createCommentVNode("",!0),k.value?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(L8,{key:2,variation:"small",title:b.no_data,img:c.noDataImg,icon:c.noDataIcon},null,8,["title","img","icon"]))],4)}}}),oC={class:"mc-table-card-header"},nC={class:"mc-table-card-header__left"},rC={class:"mc-table-card-header__right"},aC=e.defineComponent({__name:"McTableCardHeader",props:{buttonBackText:{type:String,default:"Back"},backTo:{type:String,default:null}},setup(t){const o=t;return(n,r)=>(e.openBlock(),e.createElementBlock("section",oC,[e.createElementVNode("div",nC,[e.renderSlot(n.$slots,"default",{},()=>[e.createVNode(i0,{to:o.backTo,exact:"",variation:"purple-link",size:e.unref(X0).Xs},{"icon-prepend":e.withCtx(()=>[e.createVNode(W2,{name:"arrow_backward"})]),default:e.withCtx(()=>[e.createTextVNode(" "+e.toDisplayString(o.buttonBackText),1)]),_:1},8,["to","size"])])]),e.createElementVNode("div",rC,[e.renderSlot(n.$slots,"right")])]))}}),lC=()=>{K5.isOpen=!1,je.modals=[]},K5=e.reactive({isOpen:!1,closeServiceState:lC}),Q5=e.shallowRef({}),je=e.reactive({modals:[]}),iC=()=>{const t=document.createElement("div");t.id="modal-container",document.body.appendChild(t);const o=e.h(I8,{modalServiceState:K5,reactiveProps:je});e.render(o,t)},sC=()=>{document.getElementById("modal-container")||iC()},cC=(t,o={})=>{if(!Q5.value[t])return console.warn(`The component is not provided in Mediacube-ui DS
|
|
37
|
+
Check and add to app.use(MediacubeUI, { modalComponents: {...} })`);sC();const n=Date.now(),r={component:e.markRaw(Q5.value[t]),componentName:t,componentProps:o,modelValue:!0,id:n,close:()=>{const a=je.modals.findLast(l=>l.id===n);a&&(a.modelValue=!1),setTimeout(()=>{je.modals=je.modals.filter(l=>l.id!==(a==null?void 0:a.id))},300)}};je.modals.push(r),K5.isOpen=!0},dC=t=>{const o=je.modals.findLast(n=>n.componentName===t);o&&o.close()},uC=()=>{je.modals.forEach(t=>{t.close()})};function CC(){var o;const{proxy:t}=e.getCurrentInstance();return(o=t.$dsOptions)!=null&&o.modalComponents&&(Q5.value=t.$dsOptions.modalComponents),{showModal:cC,closeModal:dC,closeAllModals:uC}}const hC=()=>{J5.isOpen=!1,Re.drawers=[]},J5=e.reactive({isOpen:!1,closeServiceState:hC}),e6=e.shallowRef({}),Re=e.reactive({drawers:[]}),pC=()=>{const t=document.createElement("div");t.id="drawer-container",document.body.appendChild(t);const o=e.h(R8,{drawerServiceState:J5,reactiveProps:Re});e.render(o,t)},mC=()=>{document.getElementById("drawer-container")||pC()},fC=(t,o={},n={})=>{if(!e6.value[t])return console.warn(`The component is not provided in Mediacube-ui DS
|
|
38
|
+
Check and add to app.use(MediacubeUI, { drawerComponents: {...} })`);mC();const r=Date.now(),a={component:e.markRaw(e6.value[t]),componentName:t,drawerProps:o,componentProps:n,modelValue:!0,id:r,close:()=>{const l=Re.drawers.findLast(i=>i.id===r);l&&(l.modelValue=!1),setTimeout(()=>{Re.drawers=Re.drawers.filter(i=>i.id!==(l==null?void 0:l.id))},(o==null?void 0:o.duration)||300)}};Re.drawers.push(a),J5.isOpen=!0},kC=t=>{const o=Re.drawers.findLast(n=>n.componentName===t);o&&o.close()},yC=()=>{Re.drawers.forEach(t=>{t.close()})};function gC(){var o;const{proxy:t}=e.getCurrentInstance();return(o=t.$dsOptions)!=null&&o.drawerComponents&&(e6.value=t.$dsOptions.drawerComponents),{showDrawer:fC,closeDrawer:kC,closeAllDrawers:yC}}const bC={key:0,class:"mc-table-card__header"},MC=e.defineComponent({__name:"McTableCard",props:{id:{type:[String,Number]},tableColumns:{type:Array,default:()=>[]},tableData:{type:Array,default:()=>[]},tableTotals:{type:Object,default:()=>({})},tableSort:{type:Object,default:()=>({})},tableFixedFirstColumn:{type:Boolean,default:!0},tableHeaderRowHeight:{type:Number,default:Pe.defaultHeaderHeight},tableFooterRowHeight:{type:Number,default:Pe.defaultFooterRowHeight},tableCardProps:{type:Object,default:()=>({})},footerBlur:{type:Boolean,default:!1}},emits:["set-table-card-state","card-id-updated"],setup(t,{emit:o}){const n=e.useSlots(),r=o,a=t,l=Ee(),i=e.computed(()=>{const[b]=a.tableColumns;return b!=null&&b.width?b.width:Pe.defaultTableFirstColWidth}),d=e.ref(null),c=e.ref(!0),p=e.computed(()=>({"mc-table-card__footer":!!n.footer,"mc-table-card__footer--with-blur":a.footerBlur&&!c.value})),C=e.computed(()=>({"--table-card-header-height":l.isNumber(a.tableHeaderRowHeight)?`${a.tableHeaderRowHeight+-1}px`:`${Pe.defaultHeaderHeight}px`,"--table-card-footer-height":l.isNumber(a.tableFooterRowHeight)?`${a.tableFooterRowHeight+-1}px`:`${Pe.defaultFooterRowHeight}px`,marginLeft:`${i.value}px`})),k=()=>{try{c.value=!1,d.value&&d.value.addEventListener("scroll",m)}catch(b){console.error(b)}},m=()=>{try{if(d.value){const{offsetHeight:b,scrollTop:f,scrollHeight:M}=d.value;c.value=b+f===M}}catch(b){c.value=!0,console.error(b)}},y=b=>{r("set-table-card-state",b)};return e.onMounted(()=>{a.footerBlur&&k(),y({state:!0,id:a.id})}),e.onBeforeUnmount(()=>{d.value&&d.value.removeEventListener("scroll",m),y({state:!1})}),e.watch(()=>a.footerBlur,b=>{b?k():d.value&&d.value.removeEventListener("scroll",m)}),e.watch(()=>a.id,b=>{const f={state:!0,id:b};y(f),r("card-id-updated",f)}),(b,f)=>(e.openBlock(),e.createElementBlock("div",{class:"mc-table-card",style:e.normalizeStyle(C.value)},[b.$slots.header?(e.openBlock(),e.createElementBlock("div",bC,[e.renderSlot(b.$slots,"header")])):e.createCommentVNode("",!0),e.createElementVNode("div",{ref_key:"bodyEl",ref:d,class:"mc-table-card__body"},[e.renderSlot(b.$slots,"default",e.normalizeProps(e.guardReactiveProps(a)))],512),b.$slots.footer||t.footerBlur?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(p.value)},[e.renderSlot(b.$slots,"footer")],2)):e.createCommentVNode("",!0)],4))}}),LC={class:"mc-top-bar"},wC={class:"mc-top-bar__inner"},vC={key:0,class:"mc-top-bar__left"},VC={class:"mc-top-bar__right"},_C=e.defineComponent({__name:"McTopBar",props:{user:{type:Object,default:()=>({})},menuLangs:{type:Array,default:()=>[]},defaultLang:{type:String,default:"Выберите язык"},currentLang:{type:String,default:null}},setup(t){const o=t,n=e.ref(null),r=e.ref(!1),a=e.ref(!1);return(l,i)=>(e.openBlock(),e.createElementBlock("div",LC,[e.createElementVNode("div",wC,[l.$slots.left?(e.openBlock(),e.createElementBlock("div",vC,[e.renderSlot(l.$slots,"left")])):e.createCommentVNode("",!0),e.createElementVNode("div",VC,[e.renderSlot(l.$slots,"right"),t.menuLangs&&t.menuLangs.length?(e.openBlock(),e.createBlock(mt,{key:0,ref_key:"menuLangsDD",ref:n,items:t.menuLangs,modelValue:r.value,"onUpdate:modelValue":i[0]||(i[0]=d=>r.value=d),"list-min-width":"auto",class:"mc-top-bar__menu-langs"},{activator:e.withCtx(()=>[e.createVNode(i0,{variation:"black-link",uppercase:""},{"icon-append":e.withCtx(()=>[e.createVNode(W2,{class:"rotate",name:"arrow_drop_down"})]),default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.currentLang||t.defaultLang)+" ",1)]),_:1})]),item:e.withCtx(({item:d})=>[e.createVNode(i0,{to:d.to||d.href,exact:d.exact,variation:"black-flat","text-align":e.unref(Se).Left,"full-width":""},{"icon-prepend":e.withCtx(()=>[e.createVNode(W2,{name:`flag_${d.name.toLowerCase()}`},null,8,["name"])]),default:e.withCtx(()=>[e.createTextVNode(" "+e.toDisplayString(d.name),1)]),_:2},1032,["to","exact","text-align"])]),_:1},8,["items","modelValue"])):e.createCommentVNode("",!0),e.renderSlot(l.$slots,"user",{},()=>[o.user?(e.openBlock(),e.createBlock(mt,{key:0,modelValue:a.value,"onUpdate:modelValue":i[1]||(i[1]=d=>a.value=d),position:e.unref(He).Right},{activator:e.withCtx(()=>[e.createVNode(i0,{variation:"white-flat",size:e.unref(X0).MCompact},{"icon-prepend":e.withCtx(()=>[e.createVNode(It,{src:o.user.avatar,rounded:"",size:"400"},null,8,["src"])]),_:1},8,["size"])]),default:e.withCtx(()=>[e.renderSlot(l.$slots,"user-dropdown-panel")]),_:3},8,["modelValue","position"])):e.createCommentVNode("",!0)])])]),e.createVNode(G5,{color:"hover-gray","indent-top":"100"}),e.renderSlot(l.$slots,"bottom")]))}}),xC=e.defineComponent({__name:"McVirtualScroll",props:{items:{type:Array,default:()=>[],required:!0},containerHeight:{type:Number,required:!0},itemHeight:{type:Number,default:20,required:!0},buffer:{type:Number,default:1}},setup(t){const o=t,n=e.ref(null),r=e.ref(0),a=e.ref([]),l=e.ref(0),i=e.computed(()=>({height:`${o.containerHeight}px`,overflowY:"auto",position:"relative"})),d=()=>{l.value=o.items.length*o.itemHeight},c=()=>{var f;const C=((f=n.value)==null?void 0:f.clientHeight)||0,k=Math.floor(r.value/o.itemHeight),m=Math.min(o.items.length-1,Math.floor((r.value+C)/o.itemHeight)),y=o.buffer||5,b=[];for(let M=Math.max(0,k-y);M<=Math.min(m+y,o.items.length-1);M++)b.push({key:M,data:o.items[M],index:M,top:M*o.itemHeight});a.value=b},p=()=>{var C;r.value=((C=n.value)==null?void 0:C.scrollTop)||0,requestAnimationFrame(c)};return e.onMounted(()=>{d(),e.nextTick(c)}),e.watch(()=>o.items,()=>{d(),e.nextTick(c)}),(C,k)=>(e.openBlock(),e.createElementBlock("div",{class:"mc-virtual-scroll",ref_key:"containerRef",ref:n,onScroll:p,style:e.normalizeStyle(i.value)},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.value,m=>(e.openBlock(),e.createElementBlock("div",{key:`mc-virtual-scroll__item-${m.key}`,class:"mc-virtual-scroll__item",style:e.normalizeStyle({top:`${m.top}px`})},[e.renderSlot(C.$slots,"item",{item:m.data,index:m.index})],4))),128)),e.createElementVNode("div",{style:e.normalizeStyle({height:`${l.value}px`})},null,4)],36))}}),HC={"$animation-slide-up":"slide-up 0.3s","$animation-slide-up-with-margin":"slide-up-with-margin 0.3s","$animation-spinner":"rotate 1.2s infinite cubic-bezier(0.55, 0, 0.1, 1)","$animation-glow":"glow 1.5s ease-in-out infinite"},BC={"$shadow-xs":"0 2px 8px rgba(0, 0, 0, 0.16)","$shadow-s":"0 4px 12px rgba(0, 0, 0, 0.16)","$shadow-m":"0 12px 32px rgba(0, 0, 0, 0.24)","$shadow-l":"0 24px 40px rgba(0, 0, 0, 0.16)","$shadow-xs-blue":"0px 2px 8px rgba(51, 68, 153, 0.1)","$shadow-s-blue":"0 4px 12px rgba(51, 68, 153, 0.1)","$shadow-m-blue":"0 12px 32px rgba(51, 68, 153, 0.2)","$shadow-xs-purple":"0px 2px 8px rgba(91, 44, 205, 0.1)","$shadow-s-purple":"0 4px 12px rgba(91, 44, 205, 0.1)","$shadow-m-purple":"0 12px 32px rgba(91, 44, 205, 0.2)","$token-shadows":{xs:"0 2px 8px rgba(0, 0, 0, 0.16)",s:"0 4px 12px rgba(0, 0, 0, 0.16)",m:"0 12px 32px rgba(0, 0, 0, 0.24)",l:"0 24px 40px rgba(0, 0, 0, 0.16)","xs-blue":"0px 2px 8px rgba(51, 68, 153, 0.1)","s-blue":"0 4px 12px rgba(51, 68, 153, 0.1)","m-blue":"0 12px 32px rgba(51, 68, 153, 0.2)","xs-purple":"0px 2px 8px rgba(91, 44, 205, 0.1)","s-purple":"0 4px 12px rgba(91, 44, 205, 0.1)","m-purple":"0 12px 32px rgba(91, 44, 205, 0.2)"}},SC={"$easing-swift":"cubic-bezier(0.55, 0, 0.1, 1)"},EC={"$font-family-main":"'Inter', sans-serif","$font-family-additional":"'Source Serif Pro', serif"},DC={"$gradient-pink":"linear-gradient(180deg, #F5576C 0%, #F093FB 100%)","$gradient-violet":"linear-gradient(180deg, #E41AFE 0%, #8035F8 100%)","$gradient-blue":"linear-gradient(180deg, #1ADBFE 0%, #3580F8 100%)","$gradient-yellow":"linear-gradient(180deg, #FEE41A 0%, #F89B35 100%)","$gradient-green":"linear-gradient(180deg, #C9DD4C 0%, #63BE7E 100%)","$gradient-red":"linear-gradient(180deg, #F26567 0%, #F79440 100%)","$gradient-purple":"linear-gradient(270deg, #9a47ed 0%, #8446ff 100%)","$gradient-purple-pink":"linear-gradient(90deg, #722eff 2%, #fe6ffc 100%)","$gradient-blue-purple":"linear-gradient(90deg, #18bfe3 20%, #8756ff 70%)","$gradient-dark-blue":"linear-gradient(90deg, #5550EF 0%, #7F4EFF 100%)","$gradient-primary-radial":"radial-gradient(rgb(179, 211, 255), rgb(62, 132, 244))"},TC={"$letter-spacing-m":"0.4px","$letter-spacing-l":"1px"},ZC={"$opacity-disabled":"0.6","$opacity-active":"0.7","$opacity-hover":"0.8"},AC={"$z-index-sticky-tabs":"49","$z-index-dropdown":"100","$z-index-sticky":"100","$z-index-overlay-page":"7000","$z-index-modal":"8000","$z-index-top-line":"8000","$z-index-header":"10000","$z-index-notification":"10001","$z-index-overlay":"10002","$z-index-toasted":"10003"},$C={install(t,o={}){const n={drawerComponents:{},modalComponents:{}};t.config.globalProperties.$dsOptions={...n,...o}}};var W8={exports:{}};(function(t,o){(function(n,r){t.exports=r(x3)})(p1,function(n){function r(i){return i&&typeof i=="object"&&"default"in i?i:{default:i}}var a=r(n),l={name:"es",monthsShort:"ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),weekStart:1,formats:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},ordinal:function(i){return i+"º"}};return a.default.locale(l,null,!0),l})})(W8);var q8=W8.exports;const NC=G1({__proto__:null,default:x1(q8)},[q8]);var G8={exports:{}};(function(t,o){(function(n,r){t.exports=r(x3)})(p1,function(n){function r(i){return i&&typeof i=="object"&&"default"in i?i:{default:i}}var a=r(n),l={name:"pt",weekdays:"domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado".split("_"),weekdaysShort:"dom_seg_ter_qua_qui_sex_sab".split("_"),weekdaysMin:"Do_2ª_3ª_4ª_5ª_6ª_Sa".split("_"),months:"janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"),monthsShort:"jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"),ordinal:function(i){return i+"º"},weekStart:1,yearStart:4,formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [às] HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY [às] HH:mm"},relativeTime:{future:"em %s",past:"há %s",s:"alguns segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"}};return a.default.locale(l,null,!0),l})})(G8);var X8=G8.exports;const FC=G1({__proto__:null,default:x1(X8)},[X8]);var K8={exports:{}};(function(t,o){(function(n,r){t.exports=r(x3)})(p1,function(n){function r(i){return i&&typeof i=="object"&&"default"in i?i:{default:i}}var a=r(n),l={name:"th",weekdays:"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์".split("_"),weekdaysShort:"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์".split("_"),weekdaysMin:"อา._จ._อ._พ._พฤ._ศ._ส.".split("_"),months:"มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม".split("_"),monthsShort:"ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.".split("_"),formats:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY เวลา H:mm",LLLL:"วันddddที่ D MMMM YYYY เวลา H:mm"},relativeTime:{future:"อีก %s",past:"%sที่แล้ว",s:"ไม่กี่วินาที",m:"1 นาที",mm:"%d นาที",h:"1 ชั่วโมง",hh:"%d ชั่วโมง",d:"1 วัน",dd:"%d วัน",M:"1 เดือน",MM:"%d เดือน",y:"1 ปี",yy:"%d ปี"},ordinal:function(i){return i+"."}};return a.default.locale(l,null,!0),l})})(K8);var Q8=K8.exports;const OC=G1({__proto__:null,default:x1(Q8)},[Q8]);var J8={exports:{}};(function(t,o){(function(n,r){t.exports=r(x3)})(p1,function(n){function r(b){return b&&typeof b=="object"&&"default"in b?b:{default:b}}var a=r(n),l="января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря".split("_"),i="январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь".split("_"),d="янв._февр._мар._апр._мая_июня_июля_авг._сент._окт._нояб._дек.".split("_"),c="янв._февр._март_апр._май_июнь_июль_авг._сент._окт._нояб._дек.".split("_"),p=/D[oD]?(\[[^[\]]*\]|\s)+MMMM?/;function C(b,f,M){var V,S;return M==="m"?f?"минута":"минуту":b+" "+(V=+b,S={mm:f?"минута_минуты_минут":"минуту_минуты_минут",hh:"час_часа_часов",dd:"день_дня_дней",MM:"месяц_месяца_месяцев",yy:"год_года_лет"}[M].split("_"),V%10==1&&V%100!=11?S[0]:V%10>=2&&V%10<=4&&(V%100<10||V%100>=20)?S[1]:S[2])}var k=function(b,f){return p.test(f)?l[b.month()]:i[b.month()]};k.s=i,k.f=l;var m=function(b,f){return p.test(f)?d[b.month()]:c[b.month()]};m.s=c,m.f=d;var y={name:"ru",weekdays:"воскресенье_понедельник_вторник_среда_четверг_пятница_суббота".split("_"),weekdaysShort:"вск_пнд_втр_срд_чтв_птн_сбт".split("_"),weekdaysMin:"вс_пн_вт_ср_чт_пт_сб".split("_"),months:k,monthsShort:m,weekStart:1,yearStart:4,formats:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY г.",LLL:"D MMMM YYYY г., H:mm",LLLL:"dddd, D MMMM YYYY г., H:mm"},relativeTime:{future:"через %s",past:"%s назад",s:"несколько секунд",m:C,mm:C,h:"час",hh:C,d:"день",dd:C,M:"месяц",MM:C,y:"год",yy:C},ordinal:function(b){return b},meridiem:function(b){return b<4?"ночи":b<12?"утра":b<17?"дня":"вечера"}};return a.default.locale(y,null,!0),y})})(J8);var e7=J8.exports;const zC=G1({__proto__:null,default:x1(e7)},[e7]);var t7={exports:{}};(function(t,o){(function(n,r){t.exports=r(x3)})(p1,function(n){function r(i){return i&&typeof i=="object"&&"default"in i?i:{default:i}}var a=r(n),l={name:"vi",weekdays:"chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy".split("_"),months:"tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12".split("_"),weekStart:1,weekdaysShort:"CN_T2_T3_T4_T5_T6_T7".split("_"),monthsShort:"Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12".split("_"),weekdaysMin:"CN_T2_T3_T4_T5_T6_T7".split("_"),ordinal:function(i){return i},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [năm] YYYY",LLL:"D MMMM [năm] YYYY HH:mm",LLLL:"dddd, D MMMM [năm] YYYY HH:mm",l:"DD/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},relativeTime:{future:"%s tới",past:"%s trước",s:"vài giây",m:"một phút",mm:"%d phút",h:"một giờ",hh:"%d giờ",d:"một ngày",dd:"%d ngày",M:"một tháng",MM:"%d tháng",y:"một năm",yy:"%d năm"}};return a.default.locale(l,null,!0),l})})(t7);var o7=t7.exports;const PC=G1({__proto__:null,default:x1(o7)},[o7]);s2.Autocomplete=Ft,s2.AvatarSizes=d6,s2.ButtonModifiers=T1,s2.ButtonSize=X0,s2.ButtonType=jt,s2.CellSizes=$t,s2.ChipModifiers=j9,s2.ChipSize=l9,s2.Colors=X2,s2.ColumnAlignment=I9,s2.ColumnJustifyAlignment=R9,s2.ColumnSizes=Nt,s2.DatepickerFormat=Ve,s2.DatepickerFormatsVariations=H0,s2.DatepickerOutputFormat=xe,s2.DatepickerTypes=y0,s2.DayjsFormat=_e,s2.Directions=_1,s2.DrawerPositions=V3,s2.DropdownListPositions=_3,s2.DropdownPositions=He,s2.Durations=_7,s2.FilterRelations=G2,s2.FilterTypes=K2,s2.FontSizes=x7,s2.FontWeights=Et,s2.HorizontalAlignment=Se,s2.InputTypes=w0,s2.LineHeights=P9,s2.McAccordion=Td,s2.McAvatar=It,s2.McBadge=E7,s2.McBottomLoader=m6,s2.McButton=i0,s2.McCell=$d,s2.McChip=d9,s2.McCollapse=Od,s2.McCropper=Vo,s2.McDatepicker=l8,s2.McDraggable=xs,s2.McDrawer=j8,s2.McDrawerContainer=R8,s2.McDrawerContentTemplate=Du,s2.McDropdown=mt,s2.McDropdownPanel=x8,s2.McFieldCheckbox=As,s2.McFieldRadio=i8,s2.McFieldRadioGroup=Ys,s2.McFieldRange=Cc,s2.McFieldSelect=Y5,s2.McFieldText=O3,s2.McFieldToggle=md,s2.McFilter=du,s2.McFilterChip=kt,s2.McFilterTags=D8,s2.McFilterTypeDate=Z8,s2.McFilterTypeRange=T8,s2.McFilterTypeRelation=$8,s2.McFilterTypeText=A8,s2.McGridCol=ft,s2.McGridRow=V9,s2.McInfinityLoadingTrigger=M8,s2.McModal=Fu,s2.McModalContainer=I8,s2.McNoData=L8,s2.McNotification=vd,s2.McOverlay=N8,s2.McPreview=h3,s2.McProgress=xd,s2.McSeparator=G5,s2.McSideBar=gu,s2.McSideBarBottom=z8,s2.McSideBarButton=x9,s2.McSideBarCenter=O8,s2.McSideBarTop=F8,s2.McSlideUpDown=X5,s2.McStack=Ed,s2.McSvgIcon=W2,s2.McTab=Mu,s2.McTable=tC,s2.McTableCard=MC,s2.McTableCardHeader=aC,s2.McTableSkeletonLoading=U8,s2.McTableSort=Y8,s2.McTabs=_u,s2.McTitle=z2,s2.McTooltip=p3,s2.McTopBar=_C,s2.McVirtualScroll=xC,s2.McWrapScroll=P8,s2.MediaQueries=H7,s2.ModalVariation=C6,s2.PreviewSizes=Y9,s2.RadioGroupDirection=Ot,s2.RadioVariation=h6,s2.Radiuses=u6,s2.SelectGroupKeys=Be,s2.SelectListDirections=p6,s2.SidebarTheme=V1,s2.Sizes=se,s2.Spaces=r1,s2.TabVariations=zt,s2.TitleSizes=Pt,s2.TitleVariations=h0,s2.TooltipPositions=a1,s2.TooltipSizes=ce,s2.UseEncodeDecode=_9,s2.Weights=Y0,s2.animations=HC,s2.borderRadius=Zt,s2.boxShadows=BC,s2.colors=xt,s2.default=$C,s2.durations=Ht,s2.easings=SC,s2.fontFamilies=EC,s2.fontSizes=Bt,s2.fontWeights=St,s2.gradients=DC,s2.letterSpacings=TC,s2.lineHeights=Dt,s2.mediaQueries=Tt,s2.opacities=ZC,s2.sizes=a9,s2.spacings=At,s2.useDrawer=gC,s2.useFieldErrors=ee,s2.useHelper=Ee,s2.useModal=CC,s2.useRandomNumber=c9,s2.useTooltip=Qt,s2.zIndexes=AC,Object.defineProperties(s2,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})});
|