stone-kit 0.0.874 → 0.0.875

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (137) hide show
  1. package/dist/App.js +10 -0
  2. package/dist/ButtonState.module-DtW3aevR.js +8 -0
  3. package/dist/FilterWithSave-Bp6rH8Pe.js +2230 -0
  4. package/dist/Menu-CgCfinVZ.js +513 -0
  5. package/dist/Option-BVIm7wOW.js +83 -0
  6. package/dist/PinTrans-D6OZq76b.js +10 -0
  7. package/dist/Router.js +103 -0
  8. package/dist/SmallFilter-C-VKnbkP.js +10 -0
  9. package/dist/components/Button/index.js +4 -0
  10. package/dist/components/Button/ui/Button.js +94 -0
  11. package/dist/components/Button/ui/Button.types.js +15 -0
  12. package/dist/components/CheckBox/CheckBox.js +84 -0
  13. package/dist/components/CheckBox/CheckBox.types.js +1 -0
  14. package/dist/components/CheckBox/index.js +4 -0
  15. package/dist/components/CheckBoxNew/CheckBox.types.js +6 -0
  16. package/dist/components/CheckBoxNew/CheckBoxNew.js +44 -0
  17. package/dist/components/CheckboxSelect/index.js +4 -0
  18. package/dist/components/CheckboxSelect/ui/CheckboxSelect.js +51 -0
  19. package/dist/components/DestinationTab/index.js +4 -0
  20. package/dist/components/DestinationTab/ui/DestinationTab.js +75 -0
  21. package/dist/components/DestinationTab/ui/DestinationTab.types.js +6 -0
  22. package/dist/components/FieldInput/index.js +4 -0
  23. package/dist/components/FieldInput/ui/FieldInput.js +22 -0
  24. package/dist/components/FieldInput/ui/FieldInput.types.js +1 -0
  25. package/dist/components/FilterWithSave/hooks/useFilterWithSave.js +28 -0
  26. package/dist/components/FilterWithSave/ui/FilterWithSave.js +9 -0
  27. package/dist/components/Flex/index.js +4 -0
  28. package/dist/components/Flex/ui/Flex.js +68 -0
  29. package/dist/components/Flex/ui/Flex.types.js +1 -0
  30. package/dist/components/FormModal/ui/ModalForm.js +30 -0
  31. package/dist/components/FormModal/utils/reg.js +6 -0
  32. package/dist/components/GroupedInput/index.js +4 -0
  33. package/dist/components/GroupedInput/ui/GroupedInputs.js +8 -0
  34. package/dist/components/GroupedInput/ui/GroupedInputs.types.js +1 -0
  35. package/dist/components/Input/index.js +4 -0
  36. package/dist/components/Input/ui/Input.js +3346 -0
  37. package/dist/components/Input/ui/Input.types.js +1 -0
  38. package/dist/components/Logo/index.js +4 -0
  39. package/dist/components/Logo/ui/Logo.js +63 -0
  40. package/dist/components/Logo/ui/Logo.types.js +13 -0
  41. package/dist/components/LotCard/hooks/useLotCard.js +31 -0
  42. package/dist/components/LotCard/index.js +4 -0
  43. package/dist/components/LotCard/ui/LotCard.js +11 -0
  44. package/dist/components/LotCard/ui/LotCard.types.js +1 -0
  45. package/dist/components/LotCard/utils/checkBedroomsCount.js +20 -0
  46. package/dist/components/LotCard/utils/const.js +11 -0
  47. package/dist/components/LotCard/utils/formatPrice.js +11 -0
  48. package/dist/components/LotCard/utils/getTagsFeatures.js +13 -0
  49. package/dist/components/LotCard/utils/monthlyPayment.js +4 -0
  50. package/dist/components/LotCardSkeleton/index.js +4 -0
  51. package/dist/components/LotCardSkeleton/ui/LotCardSkeleton.js +83 -0
  52. package/dist/components/MetroLabel/ui/MetroLabel.js +44 -0
  53. package/dist/components/MetroLabel/ui/MetroLabel.types.js +1 -0
  54. package/dist/components/MetroTag/index.js +4 -0
  55. package/dist/components/MetroTag/ui/MetroTag.js +142 -0
  56. package/dist/components/MetroTag/ui/MetroTag.types.js +1 -0
  57. package/dist/components/Modal/index.js +4 -0
  58. package/dist/components/Modal/ui/Modal.js +77 -0
  59. package/dist/components/Modal/ui/Modal.types.js +1 -0
  60. package/dist/components/ModalSuccess/ModalSuccess.js +61 -0
  61. package/dist/components/ModalSuccess/ModalSuccess.types.js +1 -0
  62. package/dist/components/NewIcon/icons/PinTrans.js +6 -0
  63. package/dist/components/NewIcon/icons/SmallFilter.js +6 -0
  64. package/dist/components/NewIcon/index.js +4 -0
  65. package/dist/components/NewIcon/ui/NewIcon.js +314 -0
  66. package/dist/components/NewIcon/ui/NewIcon.types.js +1 -0
  67. package/dist/components/NewIcon/ui/iconTypes.js +60 -0
  68. package/dist/components/ProjectCardSkeleton/index.js +4 -0
  69. package/dist/components/ProjectCardSkeleton/ui/ProjectCardSkeleton.js +34 -0
  70. package/dist/components/RoundButton/index.js +4 -0
  71. package/dist/components/RoundButton/ui/RoundButton.js +73 -0
  72. package/dist/components/RoundButton/ui/RoundButton.types.js +16 -0
  73. package/dist/components/Select/index.js +4 -0
  74. package/dist/components/Select/model/selectMode.js +49 -0
  75. package/dist/components/Select/ui/Category.js +76 -0
  76. package/dist/components/Select/ui/Option.js +7 -0
  77. package/dist/components/Select/ui/Select.js +179 -0
  78. package/dist/components/Select/ui/Select.types.js +1 -0
  79. package/dist/components/SliderNavigation/index.js +4 -0
  80. package/dist/components/SliderNavigation/ui/SliderNavigation.js +65 -0
  81. package/dist/components/SliderNavigation/ui/SliderNavigation.types.js +1 -0
  82. package/dist/components/SortSelect/hooks/useSortSelect.js +6 -0
  83. package/dist/components/SortSelect/index.js +4 -0
  84. package/dist/components/SortSelect/ui/SortSelect.js +29 -0
  85. package/dist/components/SortSelect/ui/SortSelect.types.js +1 -0
  86. package/dist/components/SummarySelect/index.js +4 -0
  87. package/dist/components/SummarySelect/ui/SummarySelect.js +128 -0
  88. package/dist/components/Switcher/index.js +4 -0
  89. package/dist/components/Switcher/ui/Switcher.js +49 -0
  90. package/dist/components/Switcher/ui/Switcher.types.js +1 -0
  91. package/dist/components/TabSelect/index.js +4 -0
  92. package/dist/components/TabSelect/ui/TabSelect.js +49 -0
  93. package/dist/components/TabSelect/ui/TabSelect.types.js +1 -0
  94. package/dist/components/TabSwitcher/index.js +4 -0
  95. package/dist/components/TabSwitcher/ui/TabSwitcher.js +28 -0
  96. package/dist/components/TabSwitcher/ui/TabSwitcher.types.js +1 -0
  97. package/dist/components/Tag/index.js +4 -0
  98. package/dist/components/Tag/ui/Tag.js +79 -0
  99. package/dist/components/Tag/ui/Tag.types.js +20 -0
  100. package/dist/components/Text/index.js +4 -0
  101. package/dist/components/Text/ui/Text.js +22 -0
  102. package/dist/components/Text/ui/Text.types.js +1 -0
  103. package/dist/components/TextArea/TextArea.js +19 -0
  104. package/dist/components/TextArea/TextArea.types.js +1 -0
  105. package/dist/components/ZoomControls/index.js +4 -0
  106. package/dist/components/ZoomControls/ui/ZoomControls.js +31 -0
  107. package/dist/components/ZoomControls/ui/ZoomControls.types.js +1 -0
  108. package/dist/components/mobileButton/index.js +4 -0
  109. package/dist/components/mobileButton/ui/MobileButton.js +64 -0
  110. package/dist/components/mobileButton/ui/MobileButton.types.js +6 -0
  111. package/dist/index-DmANy9jd.js +890 -0
  112. package/dist/index-rKuIKazb.js +45 -0
  113. package/dist/layout/Layout.js +11 -0
  114. package/dist/layout/components/Header/Header.js +164 -0
  115. package/dist/layout/components/Menu.js +28 -0
  116. package/dist/main.d.ts +31 -3
  117. package/dist/main.js +64 -35
  118. package/dist/pages/ButtonsPage/ButtonState/ButtonState.js +121 -0
  119. package/dist/pages/ButtonsPage/Buttons.js +134 -0
  120. package/dist/pages/CheckboxPage/CheckboxPage.js +224 -0
  121. package/dist/pages/FormsPage/FormsPage.js +78 -0
  122. package/dist/pages/HomePage/HomePage.js +7 -0
  123. package/dist/pages/IconsPage/IconsPage.js +41 -0
  124. package/dist/pages/InputPage/InputPage.js +35 -0
  125. package/dist/pages/LogoPage/LogoPage.js +38 -0
  126. package/dist/pages/LotsPage/LotsPage.js +542 -0
  127. package/dist/pages/ModalsPage/ModalPage.js +130 -0
  128. package/dist/pages/SelectPage/SelectPage.js +192 -0
  129. package/dist/pages/SelectPage/const.js +35 -0
  130. package/dist/pages/TabsPage/TabsPage.js +175 -0
  131. package/dist/pages/TagsPage/TagsPage.js +75 -0
  132. package/dist/shared/checkLargeOffice.js +12 -0
  133. package/dist/shared/deepEqual.js +16 -0
  134. package/dist/shared/useClientWidth.js +14 -0
  135. package/dist/style.css +1 -1
  136. package/dist/useSortSelect-CjZXLFOG.js +80 -0
  137. package/package.json +1 -1
package/dist/main.js CHANGED
@@ -1,35 +1,64 @@
1
- (function(J,_){typeof exports=="object"&&typeof module<"u"?_(exports,require("react"),require("react/jsx-runtime"),require("react-dom")):typeof define=="function"&&define.amd?define(["exports","react","react/jsx-runtime","react-dom"],_):(J=typeof globalThis<"u"?globalThis:J||self,_(J.stone_kit={},J.React,J.jsxRuntime,J.reactDom))})(this,function(J,_,a,jt){"use strict";function Zt(r){const e=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(r){for(const t in r)if(t!=="default"){const s=Object.getOwnPropertyDescriptor(r,t);Object.defineProperty(e,t,s.get?s:{enumerable:!0,get:()=>r[t]})}}return e.default=r,Object.freeze(e)}const c=Zt(_);function re(r){return r&&r.__esModule&&Object.prototype.hasOwnProperty.call(r,"default")?r.default:r}var Le={exports:{}};/*!
2
- Copyright (c) 2018 Jed Watson.
3
- Licensed under the MIT License (MIT), see
4
- http://jedwatson.github.io/classnames
5
- */(function(r){(function(){var e={}.hasOwnProperty;function t(){for(var i="",o=0;o<arguments.length;o++){var l=arguments[o];l&&(i=n(i,s(l)))}return i}function s(i){if(typeof i=="string"||typeof i=="number")return i;if(typeof i!="object")return"";if(Array.isArray(i))return t.apply(null,i);if(i.toString!==Object.prototype.toString&&!i.toString.toString().includes("[native code]"))return i.toString();var o="";for(var l in i)e.call(i,l)&&i[l]&&(o=n(o,l));return o}function n(i,o){return o?i?i+" "+o:i+o:i}r.exports?(t.default=t,r.exports=t):window.classNames=t})()})(Le);var Ut=Le.exports;const g2=re(Ut),qt=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M11.9999 2V6.44444M19.071 4.92893L15.9283 8.07163M22 12.0002H17.5555M19.071 19.071L15.9283 15.9283M11.9999 17.5556V22M8.07154 15.9284L4.92883 19.0711M6.44446 12.0002H2",stroke:"currentColor",strokeLinecap:"round"})),Gt=_.forwardRef(qt),Xt=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("g",{clipPath:"url(#clip0_116_47)"},c.createElement("rect",{x:10.5078,y:3.5,width:5,height:5,rx:2.5,transform:"rotate(90 10.5078 3.5)",stroke:"currentColor"}),c.createElement("path",{d:"M3.00015 6H5.00015",stroke:"currentColor",strokeLinecap:"square"}),c.createElement("path",{d:"M10.5335 6L21 6",stroke:"currentColor",strokeLinecap:"square"}),c.createElement("rect",{x:13.4922,y:14.5,width:5,height:5,rx:2.5,transform:"rotate(-90 13.4922 14.5)",stroke:"currentColor"}),c.createElement("path",{d:"M21.0001 12L19.0001 12",stroke:"currentColor",strokeLinecap:"square"}),c.createElement("path",{d:"M13.4665 12L3 12",stroke:"currentColor",strokeLinecap:"square"}),c.createElement("rect",{x:10.5078,y:15.5001,width:5,height:5,rx:2.5,transform:"rotate(90 10.5078 15.5001)",stroke:"currentColor"}),c.createElement("path",{d:"M3.00013 18H5.00013",stroke:"currentColor",strokeLinecap:"square"}),c.createElement("path",{d:"M10.5335 18.0001L21 18.0001",stroke:"currentColor",strokeLinecap:"square"})),c.createElement("defs",null,c.createElement("clipPath",{id:"clip0_116_47"},c.createElement("rect",{width:24,height:24,fill:"none"})))),Yt=_.forwardRef(Xt),Rt=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M12 5H19V12",stroke:"currentColor"}),c.createElement("path",{d:"M12 19L5 19L5 12",stroke:"currentColor"})),Jt=_.forwardRef(Rt),Kt=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M7.42857 5L7.42857 19M7.42857 19L10.8571 15.2941M7.42857 19L4 15.2941",stroke:"currentColor"}),c.createElement("path",{d:"M16.5714 19L16.5714 5M16.5714 5L13.1429 8.70588M16.5714 5L20 8.70588",stroke:"currentColor"})),Qt=_.forwardRef(Kt),$t=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.9938 5.91615C10.1944 3.81913 7.19377 3.25504 4.93923 5.17528C2.68468 7.09552 2.36727 10.3061 4.13778 12.5771C5.60984 14.4654 10.0648 18.4478 11.5249 19.7368C11.6882 19.881 11.7699 19.9531 11.8652 19.9815C11.9483 20.0062 12.0393 20.0062 12.1225 19.9815C12.2178 19.9531 12.2994 19.881 12.4628 19.7368C13.9229 18.4478 18.3778 14.4654 19.8499 12.5771C21.6204 10.3061 21.3417 7.07532 19.0484 5.17528C16.7551 3.27524 13.7933 3.81913 11.9938 5.91615Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e1=_.forwardRef($t),t1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M12 4V13M16 10L12.7071 13.2929C12.3166 13.6834 11.6834 13.6834 11.2929 13.2929L8 10M20 20H4",stroke:"currentColor",strokeLinecap:"round"})),r1=_.forwardRef(t1),s1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",fill:"none",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{fill:"currentColor",d:"M11.86 11.648c1.271 0 2.373-.456 3.273-1.356.9-.9 1.357-2.002 1.357-3.274 0-1.272-.457-2.374-1.357-3.274-.9-.9-2.002-1.356-3.274-1.356-1.272 0-2.374.456-3.274 1.356-.9.9-1.356 2.002-1.356 3.274 0 1.272.456 2.374 1.356 3.274.9.9 2.002 1.356 3.274 1.356ZM19.961 17.17a11.42 11.42 0 0 0-.156-1.215 9.577 9.577 0 0 0-.298-1.22 6.027 6.027 0 0 0-.503-1.14 4.296 4.296 0 0 0-.757-.987 3.339 3.339 0 0 0-1.087-.683 3.758 3.758 0 0 0-1.389-.251c-.196 0-.386.08-.752.319-.226.147-.49.317-.784.505-.252.16-.593.311-1.014.447a4.03 4.03 0 0 1-1.241.2c-.412 0-.83-.067-1.24-.2-.422-.136-.763-.286-1.015-.446-.291-.187-.555-.357-.784-.506-.366-.239-.556-.32-.753-.32-.5 0-.966.085-1.388.252a3.336 3.336 0 0 0-1.088.684c-.285.273-.54.605-.756.986-.21.367-.378.75-.502 1.14-.12.375-.221.786-.3 1.22A11.4 11.4 0 0 0 4 17.172c-.025.368-.038.75-.038 1.135 0 1.003.319 1.816.948 2.415.621.591 1.443.891 2.443.891h9.257c1 0 1.821-.3 2.443-.89.629-.6.948-1.412.948-2.416 0-.388-.013-.77-.039-1.136Z"})),i1=_.forwardRef(s1),n1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M7.11 17H6v-6.832h2.072l1.998 5.67h.296l1.999-5.67h2.072V17h-1.11v-5.602h-.296L11.033 17H9.404l-1.998-5.602H7.11V17ZM15.522 10.988v-.684l2.072-1.981c.158-.146.271-.278.34-.396a.826.826 0 0 0 .104-.424.72.72 0 0 0-.222-.533c-.148-.146-.345-.218-.592-.218-.267 0-.484.072-.651.218-.158.137-.237.337-.237.601h-.888c0-.446.167-.82.503-1.12.335-.3.76-.451 1.273-.451.513 0 .922.141 1.228.424.316.273.474.633.474 1.08 0 .282-.06.518-.178.71-.108.182-.296.4-.562.656l-1.332 1.298v.068H19v.752h-3.478Z",fill:"currentColor"})),a1=_.forwardRef(n1),o1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round",d:"M19 7 9.667 17 5 12"})),l1=_.forwardRef(o1),c1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M5.99997 6L18 18.0001",stroke:"currentColor"}),c.createElement("path",{d:"M18.0001 6L6.00003 18.0001",stroke:"currentColor"})),u1=_.forwardRef(c1),d1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 80 80",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("rect",{x:.5,y:.5,width:79,height:79,rx:39.5,stroke:"currentColor"})),h1=_.forwardRef(d1),p1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"m16.25 10.366-4.06 2.043a.424.424 0 0 1-.38 0l-4.06-2.043m8.5 0 3.493-1.758a.427.427 0 0 0 0-.762l-7.552-3.8a.424.424 0 0 0-.382 0l-7.552 3.8a.427.427 0 0 0 0 .762l3.493 1.758m8.5 0 3.507 1.766a.41.41 0 0 1 0 .747l-3.507 1.766m-8.5-4.279-3.507 1.766a.41.41 0 0 0 0 .747l3.507 1.766m0 0L4.243 16.41a.41.41 0 0 0 0 .747l7.528 3.79a.516.516 0 0 0 .458 0l7.528-3.79a.41.41 0 0 0 0-.747l-3.507-1.765m-8.5 0 4.02 2.023a.515.515 0 0 0 .46 0l4.02-2.023",stroke:"currentColor"})),f1=_.forwardRef(p1),C1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"m18.989 11.293-6.99 4.097-6.99-4.097a.68.68 0 0 0-.504-.074.666.666 0 0 0-.41.297.638.638 0 0 0-.075.493.652.652 0 0 0 .304.4l7.333 4.298a.679.679 0 0 0 .686 0l7.333-4.298a.652.652 0 0 0 .304-.4.638.638 0 0 0-.075-.493.666.666 0 0 0-.41-.297.68.68 0 0 0-.505.074h-.001z",fill:"currentColor"}),c.createElement("path",{d:"m18.989 14.493-6.99 4.096-6.99-4.096a.677.677 0 0 0-.914.223.642.642 0 0 0 .229.894l7.333 4.297a.678.678 0 0 0 .686 0l7.333-4.297a.653.653 0 0 0 .304-.4.638.638 0 0 0-.075-.494.666.666 0 0 0-.41-.296.68.68 0 0 0-.505.073h-.001zM4.323 9.365l6.656 3.954a1.995 1.995 0 0 0 2.042 0l6.656-3.954A.663.663 0 0 0 20 8.8a.655.655 0 0 0-.323-.566L13.02 4.28a1.997 1.997 0 0 0-2.042 0L4.323 8.234A.663.663 0 0 0 4 8.8a.655.655 0 0 0 .323.565z",fill:"currentColor"})),_1=_.forwardRef(C1),m1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M5 12H19",stroke:"currentColor"})),g1=_.forwardRef(m1),v1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M20.0271 17.7683C19.4144 17.8984 18.7788 17.9669 18.1273 17.9669C13.1019 17.9669 9.02797 13.893 9.02797 8.86758C9.02797 6.63171 9.83439 4.58419 11.1722 3C7.05879 3.87373 3.97278 7.52682 3.97278 11.9007C3.97278 16.9261 8.04668 21 13.0721 21C15.8616 21 18.358 19.7447 20.0271 17.7683Z",stroke:"currentColor",fill:"currentColor",strokeLinejoin:"round"})),k1=_.forwardRef(v1),y1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M5 12.5C5 9.13823 5 7.45734 5.71653 6.49727C6.35659 5.63964 7.34765 5.0959 8.43174 5.00756C9.64533 4.90868 11.119 5.78102 14.0664 7.52571C16.8259 9.15915 18.2056 9.97587 18.6811 11.0259C19.1063 11.9649 19.1063 13.0351 18.6811 13.9741C18.2056 15.0241 16.8259 15.8409 14.0664 17.4743C11.119 19.219 9.64533 20.0913 8.43174 19.9924C7.34765 19.9041 6.35659 19.3604 5.71653 18.5027C5 17.5427 5 15.8618 5 12.5Z",fill:"currentColor"})),w1=_.forwardRef(y1),b1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M5 12H19",stroke:"currentColor"}),c.createElement("path",{d:"M12.0001 5L12.0001 19",stroke:"currentColor"})),E1=_.forwardRef(b1),x1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M9.52381 17.6V12.3111M9.52381 12.3111V6.40002H13.0444C14.6768 6.40002 16 7.72327 16 9.35558V9.35558C16 10.9879 14.6768 12.3111 13.0444 12.3111H9.52381ZM9.52381 12.3111H8",stroke:"currentColor"}),c.createElement("path",{d:"M8 15.2001L12.5714 15.2001",stroke:"currentColor"})),S1=_.forwardRef(x1),F1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M12 13.6875V4.0625M12 4.0625L8.5 7.45438M12 4.0625L15.5 7.45438",stroke:"currentColor"}),c.createElement("path",{d:"M7.25 7.5625L5 7.5625V18.9375H19V7.5625H16.8125",stroke:"currentColor"})),A1=_.forwardRef(F1),M1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M12 2V4M19.0711 4.92893L17.6569 6.34315M22 12H20M19.0711 19.0711L17.6569 17.6569M12 20V22M6.34314 17.6569L4.92893 19.0711M4.00008 12.0001H2.00008M6.34311 6.34322L4.92889 4.92901M16 12C16 14.2091 14.2091 16 12 16C9.79086 16 8 14.2091 8 12C8 9.79086 9.79086 8 12 8C14.2091 8 16 9.79086 16 12Z",stroke:"currentColor",fill:"#ffffff",strokeLinecap:"round"})),B1=_.forwardRef(M1),V1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M8 9V7C8 4.79086 9.79086 3 12 3C14.2091 3 16 4.79086 16 7V9M8.2 21H15.8C16.9201 21 17.4802 21 17.908 20.782C18.2843 20.5903 18.5903 20.2843 18.782 19.908C19 19.4802 19 18.9201 19 17.8V12.2C19 11.0799 19 10.5198 18.782 10.092C18.5903 9.71569 18.2843 9.40973 17.908 9.21799C17.4802 9 16.9201 9 15.8 9H8.2C7.0799 9 6.51984 9 6.09202 9.21799C5.71569 9.40973 5.40973 9.71569 5.21799 10.092C5 10.5198 5 11.0799 5 12.2V17.8C5 18.9201 5 19.4802 5.21799 19.908C5.40973 20.2843 5.71569 20.5903 6.09202 20.782C6.51984 21 7.07989 21 8.2 21Z",stroke:"currentColor",strokeLinecap:"round"})),T1=_.forwardRef(V1),L1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("g",{clipPath:"url(#a)"},c.createElement("path",{d:"m12 4.044 2.13 5.403.12.303.303.12L19.956 12l-5.403 2.13-.303.12-.12.303L12 19.956l-2.13-5.403-.12-.303-.303-.12L4.044 12l5.403-2.13.303-.12.12-.303L12 4.044z",stroke:"currentColor",strokeWidth:1.5})),c.createElement("defs",null,c.createElement("clipPath",{id:"a"},c.createElement("path",{fill:"#fff",d:"M0 0h24v24H0z"})))),D1=_.forwardRef(L1),I1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("g",{clipPath:"url(#a)"},c.createElement("path",{d:"m12 4.044 2.13 5.403.12.303.303.12L19.956 12l-5.403 2.13-.303.12-.12.303L12 19.956l-2.13-5.403-.12-.303-.303-.12L4.044 12l5.403-2.13.303-.12.12-.303L12 4.044z",fill:"currentColor",stroke:"currentColor",strokeWidth:1.5})),c.createElement("defs",null,c.createElement("clipPath",{id:"a"},c.createElement("path",{fill:"#fff",d:"M0 0h24v24H0z"})))),O1=_.forwardRef(I1),z1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M5 15h14M5 9h14",stroke:"currentColor",strokeWidth:1.5,strokeLinecap:"square"})),N1=_.forwardRef(z1),P1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M8.98 9.755a13.342 13.342 0 0 0 2.601 3.664 13.341 13.341 0 0 0 3.664 2.6c.114.055.17.083.243.104.256.075.57.02.788-.135a1.84 1.84 0 0 0 .217-.2c.32-.32.48-.479.64-.584a1.827 1.827 0 0 1 1.992 0c.16.105.32.265.64.584l.178.178c.486.486.728.729.86.99a1.827 1.827 0 0 1 0 1.649c-.132.26-.374.503-.86.989l-.144.144c-.484.484-.726.726-1.055.91a3.086 3.086 0 0 1-1.35.352c-.378-.001-.636-.074-1.151-.22a17.396 17.396 0 0 1-7.57-4.454 17.395 17.395 0 0 1-4.452-7.569C4.074 8.242 4 7.984 4 7.607a3.085 3.085 0 0 1 .351-1.351c.185-.33.427-.571.91-1.055l.145-.144c.486-.486.728-.728.99-.86a1.827 1.827 0 0 1 1.649 0c.26.132.503.374.989.86l.178.178c.32.32.479.48.583.64a1.827 1.827 0 0 1 0 1.992c-.104.16-.264.32-.583.64-.105.104-.157.156-.2.218a.956.956 0 0 0-.135.787c.021.072.049.13.103.243z",stroke:"currentColor",strokeWidth:1.5,strokeLinecap:"round",strokeLinejoin:"round"})),H1=_.forwardRef(P1),W1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{fill:"none",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M8.98 9.755a13.342 13.342 0 0 0 2.601 3.664 13.341 13.341 0 0 0 3.664 2.6c.114.055.17.083.243.104.256.075.57.02.788-.135a1.84 1.84 0 0 0 .217-.2c.32-.32.48-.479.64-.584a1.827 1.827 0 0 1 1.992 0c.16.105.32.265.64.584l.178.178c.486.486.728.729.86.99a1.827 1.827 0 0 1 0 1.649c-.132.26-.374.503-.86.989l-.144.144c-.484.484-.726.726-1.055.91a3.086 3.086 0 0 1-1.35.352c-.378-.001-.636-.074-1.151-.22a17.396 17.396 0 0 1-7.57-4.454 17.395 17.395 0 0 1-4.452-7.569C4.074 8.242 4 7.984 4 7.607a3.085 3.085 0 0 1 .351-1.351c.185-.33.427-.571.91-1.055l.145-.144c.486-.486.728-.728.99-.86a1.827 1.827 0 0 1 1.649 0c.26.132.503.374.989.86l.178.178c.32.32.479.48.583.64a1.827 1.827 0 0 1 0 1.992c-.104.16-.264.32-.583.64-.105.104-.157.156-.2.218a.956.956 0 0 0-.135.787c.021.072.049.13.103.243z",fill:"currentColor",stroke:"currentColor",strokeWidth:1.5,strokeLinecap:"round",strokeLinejoin:"round"})),j1=_.forwardRef(W1),Z1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("g",{clipPath:"url(#a)"},c.createElement("path",{fill:"#fff",d:"M3 5h18v14H3z"}),c.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.687 1.687C0 3.374 0 6.09 0 11.52v.96c0 5.43 0 8.146 1.687 9.833C3.374 24 6.09 24 11.52 24h.96c5.43 0 8.146 0 9.833-1.687C24 20.626 24 17.91 24 12.48v-.96c0-5.43 0-8.146-1.687-9.833C20.626 0 17.91 0 12.48 0h-.96C6.09 0 3.374 0 1.687 1.687z",fill:"url(#b)"}),c.createElement("path",{d:"m19.667 17.598-1.426 1.427s-3.749 1.548-9.25-3.954C3.49 9.57 5.038 5.821 5.038 5.821l1.426-1.426c.645-.645 1.733-.547 2.305.207l1.423 1.877c.468.617.423 1.466-.104 1.994l-1.2 1.2s.02 1.08 2.221 3.28c2.2 2.2 3.28 2.22 3.28 2.22l1.2-1.2c.528-.526 1.377-.57 1.994-.103l1.877 1.423c.754.572.852 1.66.207 2.305z",fill:"#fff"})),c.createElement("defs",null,c.createElement("linearGradient",{id:"b",x1:18,y1:0,x2:12,y2:24,gradientUnits:"userSpaceOnUse"},c.createElement("stop",{stopColor:"#5DFD7B"}),c.createElement("stop",{offset:1,stopColor:"#21AB32"})),c.createElement("clipPath",{id:"a"},c.createElement("path",{fill:"#fff",d:"M0 0h24v24H0z"})))),U1=_.forwardRef(Z1),q1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("g",{clipPath:"url(#a)"},c.createElement("path",{fill:"#fff",d:"M3 5h18v14H3z"}),c.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.687 1.687C0 3.374 0 6.09 0 11.52v.96c0 5.43 0 8.146 1.687 9.833C3.374 24 6.09 24 11.52 24h.96c5.43 0 8.146 0 9.833-1.687C24 20.626 24 17.91 24 12.48v-.96c0-5.43 0-8.146-1.687-9.833C20.626 0 17.91 0 12.48 0h-.96C6.09 0 3.374 0 1.687 1.687z",fill:"url(#b)"}),c.createElement("path",{d:"m17.407 18.123-1.31 1.31s-3.403 1.458-8.264-3.403c-4.86-4.861-3.402-8.264-3.402-8.264l1.31-1.31a1.375 1.375 0 0 1 2.071.147l1.25 1.667c.41.548.356 1.314-.127 1.797L7.833 11.17s0 .972 1.945 2.916c1.944 1.945 2.916 1.945 2.916 1.945l1.102-1.102a1.375 1.375 0 0 1 1.797-.127l1.667 1.25c.669.502.738 1.48.147 2.072z",fill:"#fff"}),c.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M18.643 5.22a.75.75 0 0 1 0 1.06L14.923 10h2.635a.75.75 0 0 1 0 1.5h-4.195a1 1 0 0 1-1-1V6.306a.75.75 0 0 1 1.5 0v2.633l3.72-3.72a.75.75 0 0 1 1.06 0z",fill:"#fff"})),c.createElement("defs",null,c.createElement("linearGradient",{id:"b",x1:9,y1:24,x2:15.5,y2:0,gradientUnits:"userSpaceOnUse"},c.createElement("stop",{stopColor:"#141416"}),c.createElement("stop",{offset:1,stopColor:"#4E556F"})),c.createElement("clipPath",{id:"a"},c.createElement("path",{fill:"#fff",d:"M0 0h24v24H0z"})))),G1=_.forwardRef(q1),X1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("g",{clipPath:"url(#a)"},c.createElement("path",{fill:"#fff",d:"M3 5h18v14H3z"}),c.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.687 1.687C0 3.374 0 6.09 0 11.52v.96c0 5.43 0 8.146 1.687 9.833C3.374 24 6.09 24 11.52 24h.96c5.43 0 8.146 0 9.833-1.687C24 20.626 24 17.91 24 12.48v-.96c0-5.43 0-8.146-1.687-9.833C20.626 0 17.91 0 12.48 0h-.96C6.09 0 3.374 0 1.687 1.687z",fill:"url(#b)"}),c.createElement("path",{d:"M7.688 13.578 4.3 12.418s-.404-.173-.274-.564c.027-.08.08-.15.243-.267.75-.55 13.893-5.513 13.893-5.513s.37-.131.59-.044c.054.018.103.05.14.094a.342.342 0 0 1 .078.156c.023.103.033.208.03.314-.002.091-.012.176-.02.309-.08 1.357-2.476 11.484-2.476 11.484s-.143.592-.657.613a.9.9 0 0 1-.37-.067.938.938 0 0 1-.315-.212c-1.008-.91-4.49-3.37-5.26-3.91a.152.152 0 0 1-.063-.11c-.01-.057.048-.128.048-.128s6.064-5.663 6.226-6.257c.012-.046-.035-.07-.098-.049-.403.156-7.385 4.788-8.156 5.3a.354.354 0 0 1-.171.01z",fill:"#fff"})),c.createElement("defs",null,c.createElement("linearGradient",{id:"b",x1:12,y1:24,x2:12,y2:0,gradientUnits:"userSpaceOnUse"},c.createElement("stop",{stopColor:"#1D93D2"}),c.createElement("stop",{offset:1,stopColor:"#38B0E3"})),c.createElement("clipPath",{id:"a"},c.createElement("path",{fill:"#fff",d:"M0 0h24v24H0z"})))),Y1=_.forwardRef(X1),R1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("g",{clipPath:"url(#a)"},c.createElement("path",{fill:"#fff",d:"M3 5h18v14H3z"}),c.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.687 1.687C0 3.374 0 6.09 0 11.52v.96c0 5.43 0 8.146 1.687 9.833C3.374 24 6.09 24 11.52 24h.96c5.43 0 8.146 0 9.833-1.687C24 20.626 24 17.91 24 12.48v-.96c0-5.43 0-8.146-1.687-9.833C20.626 0 17.91 0 12.48 0h-.96C6.09 0 3.374 0 1.687 1.687z",fill:"url(#b)"}),c.createElement("path",{d:"M17.692 6.348a7.993 7.993 0 0 0-12.806 9.248l-.848 4.117a.305.305 0 0 0 .049.24.308.308 0 0 0 .328.127l4.035-.957a7.992 7.992 0 0 0 9.242-12.775zm-1.258 10.043a6.26 6.26 0 0 1-7.21 1.172l-.563-.278-2.474.585.008-.03.512-2.49-.275-.544a6.258 6.258 0 1 1 10.002 1.585z",fill:"#fff"}),c.createElement("path",{d:"M16.214 14.564c-.303.478-.782 1.062-1.384 1.207-1.055.255-2.674.01-4.688-1.869l-.024-.022c-1.772-1.642-2.232-3.009-2.12-4.093.061-.615.574-1.171 1.006-1.535a.576.576 0 0 1 .901.207l.652 1.465a.572.572 0 0 1-.072.586l-.33.427a.567.567 0 0 0-.05.633c.184.324.626.8 1.117 1.24.55.499 1.162.954 1.548 1.11a.56.56 0 0 0 .614-.13l.382-.384a.585.585 0 0 1 .572-.147l1.548.44a.585.585 0 0 1 .328.865z",fill:"#fff"})),c.createElement("defs",null,c.createElement("linearGradient",{id:"b",x1:18,y1:0,x2:12,y2:24,gradientUnits:"userSpaceOnUse"},c.createElement("stop",{stopColor:"#5DFD7B"}),c.createElement("stop",{offset:1,stopColor:"#21AB32"})),c.createElement("clipPath",{id:"a"},c.createElement("path",{fill:"#fff",d:"M0 0h24v24H0z"})))),J1=_.forwardRef(R1),K1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"m18 10-6 6-6-6",stroke:"currentColor"})),Q1=_.forwardRef(K1),$1=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M12 5L12 19M12 19L18 13.4412M12 19L6 13.4412",stroke:"currentColor"})),er=_.forwardRef($1),tr=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"m6 6 12 12M18 6 6 18",stroke:"currentColor",strokeWidth:1.5})),rr=_.forwardRef(tr),sr=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M19.942 12.632c-.12-1.263-.318-1.509-.392-1.601-.172-.214-.447-.354-.737-.5a.116.116 0 0 1-.042-.034.109.109 0 0 1-.017-.1.112.112 0 0 1 .028-.044.468.468 0 0 0 .151-.392.497.497 0 0 0-.176-.33.563.563 0 0 0-.369-.131h-.52a.604.604 0 0 0-.067.004.296.296 0 0 0-.047-.015c-.308-.61-.73-1.446-1.604-1.853C14.855 7.03 12.466 7 12 7c-.467 0-2.855.031-4.15.635-.874.408-1.296 1.243-1.604 1.853l-.003.005a.23.23 0 0 0-.045.011.604.604 0 0 0-.066-.004H5.61a.564.564 0 0 0-.369.131.47.47 0 0 0-.023.72.106.106 0 0 1 .011.143.117.117 0 0 1-.042.035c-.29.147-.567.287-.737.5-.075.094-.272.338-.392 1.601-.067.71-.077 1.446-.025 1.92.11.984.316 1.58.324 1.604a.5.5 0 0 0 .168.23c.078.06.172.098.272.11v.006c0 .133.057.26.157.354.1.093.235.146.377.146h1.867a.552.552 0 0 0 .377-.146.485.485 0 0 0 .156-.354 2.7 2.7 0 0 0 .699-.1c.305-.077.618-.128.933-.153A31.838 31.838 0 0 1 12 16.125c.595 0 1.65.031 2.67.122.316.025.63.077.937.154.203.049.395.094.661.099 0 .132.056.26.156.353.1.094.236.147.378.147h1.867a.552.552 0 0 0 .377-.147c.1-.094.156-.22.156-.353v-.004a.55.55 0 0 0 .273-.11.5.5 0 0 0 .168-.23c.009-.024.215-.62.324-1.604.053-.474.043-1.208-.024-1.92zM7.21 9.916c.267-.531.572-1.133 1.115-1.386.785-.366 2.411-.531 3.675-.531 1.263 0 2.89.163 3.675.531.543.253.847.855 1.115 1.386l.033.068a.236.236 0 0 1-.018.243.26.26 0 0 1-.1.085.281.281 0 0 1-.13.029c-1.108-.028-3.442-.118-4.575-.118-1.134 0-3.467.092-4.577.12a.281.281 0 0 1-.13-.029.26.26 0 0 1-.1-.085.24.24 0 0 1-.018-.243l.035-.07zm.398 2.488c-.574.065-1.15.097-1.728.096-.354 0-.718-.094-.786-.389a.867.867 0 0 1-.016-.422c.02-.095.054-.165.22-.189.434-.063.677.016 1.386.212.47.13.81.302 1.003.44.097.067.046.243-.08.252zm7.38 2.563c-.438.047-1.316.03-2.978.03-1.662 0-2.54.017-2.978-.03-.453-.047-1.03-.449-.636-.806.262-.236.874-.412 1.69-.511.815-.1 1.16-.15 1.92-.15.761 0 1.071.031 1.921.15.85.12 1.493.298 1.69.511.36.383-.176.756-.629.808v-.002zm3.918-2.856c-.067.296-.434.389-.786.389a16.22 16.22 0 0 1-1.761-.096c-.102-.009-.15-.177-.047-.253.19-.14.534-.31 1.004-.44.71-.195 1.118-.274 1.47-.209.085.016.13.103.136.157.023.15.018.304-.016.452z",fill:"currentColor"})),ir=_.forwardRef(sr),nr=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"m8.066 9.058 2.797-1.956a1.789 1.789 0 0 1 1.085-.322 2.34 2.34 0 0 1 1.313.438c.38.274.66.655.805 1.09.162.49.31.821.445.993.406.522.933.945 1.538 1.236.354.17.73.293 1.115.365.456.086.836.454.836.918s-.377.845-.837.785a6.276 6.276 0 0 1-1.77-.506 6.07 6.07 0 0 1-2.107-1.579l-.608 3.322 1.798 1.453 1.625 4.297a.869.869 0 1 1-1.625.615l-1.48-3.914-2.96-2.39a1.684 1.684 0 0 1-.537-.718 1.62 1.62 0 0 1-.084-.88l.444-2.424-.59.413-1.357 1.797a.861.861 0 0 1-1.374-1.038l1.514-2.005.014.01zM13.2 6.36a1.78 1.78 0 0 1-1.234-.492 1.649 1.649 0 0 1-.511-1.188c0-.446.184-.873.511-1.188A1.78 1.78 0 0 1 13.2 3c.463 0 .907.177 1.235.492.327.315.51.742.51 1.188 0 .445-.183.873-.51 1.188a1.78 1.78 0 0 1-1.235.492zM10.607 17.43l-2.262 2.594a.858.858 0 1 1-1.294-1.128l2.011-2.307.651-1.83 1.563 1.26-.67 1.411z",fill:"currentColor"})),ar=_.forwardRef(nr),or=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M14.25 13.124a2.628 2.628 0 0 0-2.625-2.625h-6A2.628 2.628 0 0 0 3 13.124c0 1.044.616 1.94 1.5 2.362v1.763h-.75a.75.75 0 1 0 0 1.5h.75v1.5a.75.75 0 1 0 1.5 0v-1.5h5.25v1.5a.75.75 0 1 0 1.5 0v-1.5h.75a.75.75 0 1 0 0-1.5h-.75v-1.763a2.622 2.622 0 0 0 1.5-2.362zM6 17.25v-1.5h5.25v1.5H6zm14.657-6.629c.366.72.435 1.475.223 2.225-.392 1.386-1.757 2.287-3.24 2.138-.181-.018-.258.024-.3.06a.293.293 0 0 0-.09.227v4.98a.75.75 0 1 1-1.5 0v-7.126a4.108 4.108 0 0 0-3.173-4.014.751.751 0 0 1-.573-.816c.07-.615.5-1.203 1.277-1.745.204-.142.22-.39.22-.492a3.029 3.029 0 0 1 .229-1.207 2.958 2.958 0 0 1 1.977-1.748 3.122 3.122 0 0 1 1.608.006c.878.235 1.61.888 1.957 1.745.16.398.237.806.227 1.215-.002.12.023.344.22.483A2.988 2.988 0 0 1 21 9.001c0 .44-.104.882-.308 1.31-.078.164-.072.231-.072.231.003.012.024.052.038.079z",fill:"currentColor"})),lr=_.forwardRef(or),cr=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M15.446 6.052h-.151l-3.218 6.097L8.744 6 4.179 17.108H3V18h6.462v-.892H8.18l1.282-3.472L12.077 18l2.513-4.364 1.282 3.472H14.59V18H21v-.892h-1.11L15.446 6.052z",fill:"#EC5353"})),ur=_.forwardRef(cr),dr=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M19.819 18.875a.668.668 0 0 1-.972.915l-3.655-3.895c-.691.022-3.872.117-2.875-1.387a.656.656 0 0 1 .654-.17 5.368 5.368 0 0 0 2.305.194.837.837 0 0 1 .727.267l3.816 4.076zm-5.82-5.545a3.323 3.323 0 0 0 2.358-.975l3.447-3.45a.668.668 0 0 0-.942-.945l-3.448 3.45a2 2 0 0 1-2.27.384l4.66-4.663a.668.668 0 1 0-.942-.943L12.2 10.851a2.002 2.002 0 0 1 .384-2.272l3.449-3.449a.667.667 0 0 0-.943-.943l-3.447 3.45a3.342 3.342 0 0 0-.424 4.197L4.195 18.86a.667.667 0 0 0 .943.944l7.024-7.028c.545.36 1.184.553 1.838.553zm-6.364-.69c.552.52 1.062-.171 1.434-.541a1.334 1.334 0 0 0 .359-1.201c-.411-1.149.594-2.49-.238-3.413L6.22 4.374a1.308 1.308 0 0 0-2.22.92C4.158 8.37 5.29 9.94 7.635 12.64z",fill:"currentColor"})),hr=_.forwardRef(dr),pr=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M10 4H7.333A3.333 3.333 0 0 0 4 7.333v9.334A3.333 3.333 0 0 0 7.333 20h6V7.333A3.334 3.334 0 0 0 10 4zM7.333 16.667h-.666a.667.667 0 0 1 0-1.334h.666a.667.667 0 0 1 0 1.334zm0-2.667h-.666a.666.666 0 1 1 0-1.333h.666a.667.667 0 1 1 0 1.333zm0-2.667h-.666a.667.667 0 1 1 0-1.333h.666a.666.666 0 1 1 0 1.333zm0-2.666h-.666a.667.667 0 0 1 0-1.334h.666a.667.667 0 0 1 0 1.334zm3.334 8H10a.667.667 0 0 1 0-1.334h.667a.667.667 0 0 1 0 1.334zm0-2.667H10a.666.666 0 1 1 0-1.333h.667a.667.667 0 0 1 0 1.333zm0-2.667H10A.667.667 0 1 1 10 10h.667a.667.667 0 1 1 0 1.333zm0-2.666H10a.667.667 0 1 1 0-1.334h.667a.667.667 0 0 1 0 1.334zm6-1.334h-2V20h2A3.337 3.337 0 0 0 20 16.667v-6a3.338 3.338 0 0 0-3.333-3.334zm.666 9.334a.666.666 0 1 1 0-1.333.666.666 0 0 1 0 1.333zm0-2.667a.666.666 0 1 1 0-1.332.666.666 0 0 1 0 1.332zm0-2.667a.667.667 0 1 1 0-1.333.667.667 0 0 1 0 1.333z",fill:"currentColor"})),fr=_.forwardRef(pr),Cr=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M16.667 6.667h-.734A3.34 3.34 0 0 0 12.667 4h-1.334a3.34 3.34 0 0 0-3.266 2.667h-.734A3.337 3.337 0 0 0 4 10v2h16v-2a3.337 3.337 0 0 0-3.333-3.333zm-7.211 0a2 2 0 0 1 1.877-1.334h1.334a2 2 0 0 1 1.877 1.334H9.456zM12.667 14a.667.667 0 0 1-1.334 0v-.666H4v3.333A3.337 3.337 0 0 0 7.333 20h9.334A3.337 3.337 0 0 0 20 16.667v-3.334h-7.333V14z",fill:"currentColor"})),_r=_.forwardRef(Cr),mr=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M8.398 10.25h7.2v3.548h-7.2V10.25zM20.954 9.285h-.5v5.233h.5c.578 0 1.046-.469 1.046-1.046V10.33c0-.577-.469-1.045-1.046-1.045zM18.5 7.072h-1.984v9.905H18.5c.578-.001 1.046-.469 1.046-1.046V8.117c0-.577-.468-1.045-1.046-1.045zM4.46 8.117v7.814c0 .577.468 1.045 1.045 1.046h1.984V7.072H5.505c-.577 0-1.045.468-1.046 1.045zM1.998 10.33v3.142c0 .577.468 1.045 1.046 1.046h.5V9.285h-.5c-.578 0-1.046.468-1.046 1.045z",fill:"currentColor"})),gr=_.forwardRef(mr),vr=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M16.987 5c-.63 0-1.234.301-1.618.814l-2.354 3.35c-.25.335-.798.374-1.094.078l-.661-.661a1.353 1.353 0 0 0-.963-.4h-.09c-.364 0-.706.143-.963.4l-.967.967a.318.318 0 0 0 0 .45l5.728 5.728a.317.317 0 0 0 .45 0l.966-.968c.258-.257.4-.599.4-.963v-.09c0-.363-.142-.705-.4-.963l-.66-.66a.725.725 0 0 1 .07-1.088l3.365-2.367c.505-.378.806-.98.806-1.612A2.017 2.017 0 0 0 16.988 5Zm.106 2.545a.637.637 0 1 1 .002-1.274.637.637 0 0 1-.002 1.274ZM8.105 10.728a.318.318 0 0 0-.45 0L5.373 13.01c-.24.24-.373.56-.373.9 0 .34.132.66.373.9l.489.489c.1.1.255.122.38.053l1.12-.623-.622 1.122a.318.318 0 0 0 .053.379l2.398 2.398c.24.24.56.373.9.373.34 0 .66-.133.9-.373l2.282-2.282a.318.318 0 0 0 0-.45l-5.168-5.168Z",fill:"#B1B5C4"}),c.createElement("g",{clipPath:"url(#a)"},c.createElement("path",{d:"m4.222 4.222 15.556 15.556M1 12c0 6.075 4.925 11 11 11s11-4.925 11-11S18.075 1 12 1 1 5.925 1 12Z",stroke:"#777E91",strokeLinecap:"round"})),c.createElement("defs",null,c.createElement("clipPath",{id:"a"},c.createElement("path",{fill:"#fff",d:"M0 0h24v24H0z"})))),kr=_.forwardRef(vr),yr=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M18 12 8 18V6l10 6Z",fill:"currentColor"})),wr=_.forwardRef(yr),br=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("rect",{width:20,height:20,rx:4,fill:"#141416"}),c.createElement("path",{d:"m14.665 6.667-6.222 6.666L5.332 10",stroke:"#fff",strokeWidth:1.5,strokeLinecap:"square",strokeLinejoin:"round"})),Er=_.forwardRef(br),xr=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("rect",{x:.5,y:.5,width:19,height:19,rx:3.5,fill:"#E6E8EC",stroke:"#B1B5C4"})),Sr=_.forwardRef(xr),Fr=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"m18 10-6 6-6-6",stroke:"currentColor"})),Ar=_.forwardRef(Fr),Mr=({title:r,titleId:e,...t},s)=>c.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"white",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M 9 2 C 5.1458514 2 2 5.1458514 2 9 C 2 12.854149 5.1458514 16 9 16 C 10.747998 16 12.345009 15.348024 13.574219 14.28125 L 14 14.707031 L 14 16 L 20 22 L 22 20 L 16 14 L 14.707031 14 L 14.28125 13.574219 C 15.348024 12.345009 16 10.747998 16 9 C 16 5.1458514 12.854149 2 9 2 z M 9 4 C 11.773268 4 14 6.2267316 14 9 C 14 11.773268 11.773268 14 9 14 C 6.2267316 14 4 11.773268 4 9 C 4 6.2267316 6.2267316 4 9 4 z"})),Br=_.forwardRef(Mr),Vr=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("rect",{width:20,height:20,rx:4,fill:"#141416"}),c.createElement("path",{d:"M5.33203 10H14.6654",stroke:"white"})),Tr=_.forwardRef(Vr),Lr=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M10 6L16 12L10 18",stroke:"currentColor"})),Dr=_.forwardRef(Lr),Ir=({title:r,titleId:e,...t},s)=>c.createElement("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M19.0027 9.24264C18.1929 7.84012 15.9814 6.01912 14.4658 5.44866C12.9501 4.87819 11.2835 4.85092 9.74994 5.37149C8.21639 5.89206 6.9108 6.92825 6.0556 8.30353C5.2004 9.6788 4.84851 11.3081 5.0599 12.9137C5.27128 14.5193 6.03286 16.002 7.21487 17.109C8.39687 18.2161 9.92617 18.8791 11.5422 18.985C13.1582 19.0909 14.761 18.6332 16.0774 17.6899C17.3938 16.7466 18.3423 15.376 18.7615 13.8117M19.0027 9.24264H14.76M19.0027 9.24264V5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Or=_.forwardRef(Ir),zr=({title:r,titleId:e,...t},s)=>c.createElement("svg",{width:20,height:20,viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M9.99992 1.42859C8.23181 1.42859 6.53612 2.13097 5.28587 3.38121C4.03563 4.63145 3.33325 6.32715 3.33325 8.09525C3.33325 13.4921 9.99992 18.5714 9.99992 18.5714C9.99992 18.5714 16.6666 13.4921 16.6666 8.09525C16.6666 6.32715 15.9642 4.63145 14.714 3.38121C13.4637 2.13097 11.768 1.42859 9.99992 1.42859ZM9.99992 11.2699C9.37204 11.2699 8.75826 11.0837 8.2362 10.7348C7.71414 10.386 7.30725 9.89021 7.06697 9.31012C6.82669 8.73004 6.76382 8.09173 6.88631 7.47592C7.00881 6.86011 7.31116 6.29445 7.75514 5.85047C8.19911 5.4065 8.76477 5.10414 9.38058 4.98165C9.9964 4.85916 10.6347 4.92203 11.2148 5.1623C11.7949 5.40258 12.2907 5.80948 12.6395 6.33154C12.9883 6.8536 13.1745 7.46738 13.1745 8.09525C13.1745 8.93721 12.8401 9.74469 12.2447 10.34C11.6493 10.9354 10.8419 11.2699 9.99992 11.2699Z",fill:"#141416"})),Nr=_.forwardRef(zr),Pr=({title:r,titleId:e,...t},s)=>c.createElement("svg",{width:20,height:20,viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M16.0418 7.56663L16.8751 6.73329L14.4918 4.40829L13.6584 5.24163C12.8002 4.70323 11.8372 4.35381 10.8334 4.21663V3.33329H12.5001V1.66663H7.50009V3.33329H9.16676V4.21663C7.6413 4.39543 6.21496 5.06408 5.10174 6.12224C3.98851 7.1804 3.24844 8.57102 2.99255 10.0855C2.73666 11.5999 2.97876 13.1565 3.68252 14.5216C4.38628 15.8868 5.51376 16.987 6.89578 17.657C8.2778 18.3271 9.83984 18.531 11.3475 18.238C12.8552 17.9451 14.2273 17.1711 15.2578 16.0323C16.2884 14.8934 16.9218 13.4511 17.0632 11.9217C17.2045 10.3924 16.8461 8.85838 16.0418 7.54996V7.56663ZM10.0001 16.6666C8.56418 16.6644 7.18771 16.093 6.17236 15.0777C5.15702 14.0623 4.58563 12.6859 4.58342 11.25H10.0001V5.83329C11.4367 5.83329 12.8144 6.40398 13.8302 7.4198C14.8461 8.43562 15.4168 9.81337 15.4168 11.25C15.4168 12.6865 14.8461 14.0643 13.8302 15.0801C12.8144 16.0959 11.4367 16.6666 10.0001 16.6666Z",fill:"#141416"})),Hr=_.forwardRef(Pr),Wr=({title:r,titleId:e,...t},s)=>c.createElement("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M12.0004 2C9.34927 2.00287 6.8075 3.05704 4.93284 4.93121C3.05818 6.80539 2.00374 9.3465 2.00087 11.997C1.89588 19.9721 11.2996 24.8506 17.7502 20.1753C17.8429 20.1137 17.9223 20.0341 17.9837 19.9413C18.0451 19.8484 18.0873 19.7442 18.1078 19.6348C18.1282 19.5254 18.1266 19.413 18.1028 19.3043C18.0791 19.1955 18.0339 19.0926 17.9697 19.0017C17.9056 18.9107 17.8238 18.8335 17.7294 18.7746C17.6349 18.7158 17.5295 18.6764 17.4196 18.659C17.3096 18.6415 17.1973 18.6462 17.0892 18.6728C16.9811 18.6995 16.8794 18.7475 16.7902 18.8141C11.4171 22.7071 3.58414 18.6433 3.66747 11.997C4.12495 0.945319 19.8776 0.947818 20.3334 11.997V13.6631C20.3334 14.105 20.1578 14.5288 19.8453 14.8413C19.5327 15.1538 19.1088 15.3293 18.6668 15.3293C18.2248 15.3293 17.8009 15.1538 17.4884 14.8413C17.1758 14.5288 17.0002 14.105 17.0002 13.6631V11.997C16.7902 5.39148 7.20981 5.39231 7.00065 11.997C7.01035 13.01 7.32685 13.9963 7.90843 14.8259C8.49002 15.6555 9.30939 16.2895 10.2586 16.6443C11.2077 16.999 12.2421 17.0579 13.2255 16.8132C14.2088 16.5685 15.0949 16.0317 15.7669 15.2735C16.1284 15.9113 16.6902 16.4122 17.3653 16.6985C18.0403 16.9848 18.791 17.0405 19.5009 16.8571C20.2109 16.6737 20.8406 16.2613 21.2924 15.6839C21.7441 15.1065 21.9929 14.3962 22 13.6631V11.997C21.9971 9.3465 20.9427 6.80539 19.068 4.93121C17.1934 3.05704 14.6516 2.00287 12.0004 2ZM12.0004 15.3293C11.1164 15.3293 10.2686 14.9782 9.64352 14.3533C9.01842 13.7284 8.66725 12.8808 8.66725 11.997C8.66725 11.1132 9.01842 10.2656 9.64352 9.64067C10.2686 9.01574 11.1164 8.66465 12.0004 8.66465C12.8845 8.66465 13.7323 9.01574 14.3574 9.64067C14.9824 10.2656 15.3336 11.1132 15.3336 11.997C15.3336 12.8808 14.9824 13.7284 14.3574 14.3533C13.7323 14.9782 12.8845 15.3293 12.0004 15.3293Z",fill:"white"})),jr=_.forwardRef(Wr),Zr=({title:r,titleId:e,...t},s)=>c.createElement("svg",{width:16,height:16,viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M10.6667 6.66665C10.6667 8.13941 9.47284 9.33331 8.00008 9.33331C6.52732 9.33331 5.33341 8.13941 5.33341 6.66665C5.33341 5.19389 6.52732 3.99998 8.00008 3.99998C9.47284 3.99998 10.6667 5.19389 10.6667 6.66665Z",stroke:"#141416"}),c.createElement("path",{d:"M13.3334 6.66665C13.3334 9.61217 9.33341 14.6666 8.00008 14.6666C6.66675 14.6666 2.66675 9.61217 2.66675 6.66665C2.66675 3.72113 5.05456 1.33331 8.00008 1.33331C10.9456 1.33331 13.3334 3.72113 13.3334 6.66665Z",stroke:"#141416"})),Ur=_.forwardRef(Zr),qr=({title:r,titleId:e,...t},s)=>c.createElement("svg",{width:16,height:16,viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,"aria-labelledby":e,...t},r?c.createElement("title",{id:e},r):null,c.createElement("path",{d:"M2.66667 5.33331H10.6667M10.6667 5.33331C10.6667 6.43788 11.5621 7.33331 12.6667 7.33331C13.7712 7.33331 14.6667 6.43788 14.6667 5.33331C14.6667 4.22874 13.7712 3.33331 12.6667 3.33331C11.5621 3.33331 10.6667 4.22874 10.6667 5.33331ZM6 10.6666H13.3333M6 10.6666C6 11.7712 5.10457 12.6666 4 12.6666C2.89543 12.6666 2 11.7712 2 10.6666C2 9.56208 2.89543 8.66665 4 8.66665C5.10457 8.66665 6 9.56208 6 10.6666Z",stroke:"white",strokeLinecap:"round"})),Gr=_.forwardRef(qr),De={},Xr={arrowRight:()=>a.jsx(Dr,{}),loader:()=>a.jsx(Gt,{}),filter:()=>a.jsx(Yt,{}),lock:()=>a.jsx(T1,{}),fullscreen:()=>a.jsx(Jt,{}),twoArrows:()=>a.jsx(Qt,{}),heart:()=>a.jsx(e1,{}),download:()=>a.jsx(r1,{}),user:()=>a.jsx(i1,{}),squareMeter:()=>a.jsx(a1,{}),check:()=>a.jsx(l1,{}),minusCheck:()=>a.jsx(Tr,{}),close:()=>a.jsx(u1,{}),layers:()=>a.jsx(f1,{}),layersFilled:()=>a.jsx(_1,{}),minus:()=>a.jsx(g1,{}),moon:()=>a.jsx(k1,{}),play:()=>a.jsx(w1,{}),plus:()=>a.jsx(E1,{}),ruble:()=>a.jsx(S1,{}),share:()=>a.jsx(A1,{}),sun:()=>a.jsx(B1,{}),star:()=>a.jsx(D1,{}),starFilled:()=>a.jsx(O1,{}),burger:()=>a.jsx(N1,{}),phone:()=>a.jsx(H1,{}),phoneFilled:()=>a.jsx(j1,{}),call:()=>a.jsx(U1,{}),callback:()=>a.jsx(G1,{}),telegram:()=>a.jsx(Y1,{}),whatsapp:()=>a.jsx(J1,{}),directionDown:()=>a.jsx(Q1,{}),burgerClose:()=>a.jsx(rr,{}),arrowLong:()=>a.jsx(er,{}),auto:()=>a.jsx(ir,{}),pedestrian:()=>a.jsx(ar,{}),park:()=>a.jsx(lr,{}),metro:()=>a.jsx(ur,{}),food:()=>a.jsx(hr,{}),mail:()=>a.jsx(jr,{}),building:()=>a.jsx(fr,{}),case:()=>a.jsx(_r,{}),sport:()=>a.jsx(gr,{}),withoutDecor:()=>a.jsx(kr,{}),play2:()=>a.jsx(wr,{}),selectChecked:()=>a.jsx(Er,{}),selectUnchecked:()=>a.jsx(Sr,{}),arrowShort:()=>a.jsx(Ar,{}),search:()=>a.jsx(Br,{}),circle:()=>a.jsx(h1,{}),redo:()=>a.jsx(Or,{}),pin:()=>a.jsx(Nr,{}),timer:()=>a.jsx(Hr,{}),pinTrans:()=>a.jsx(Ur,{}),smallFilter:()=>a.jsx(Gr,{})},Yr=g2.bind(De),d2=({name:r,size:e="24",color:t,strokeWidth:s,additionalClass:n,deg:i})=>{const o=Xr[r];return o?a.jsx("div",{style:{width:e+"px",height:e+"px",minWidth:e+"px",minHeight:e+"px",transform:i?`rotate(${i}deg)`:void 0,color:t,display:"flex",strokeWidth:s},className:Yr(De.root,n),children:a.jsx(o,{width:e,height:e,fill:t,stroke:t,strokeWidth:s})}):(console.error(`Icon "${r}" not found in iconTypes`),null)},z2={btnCommon:"_btnCommon_f868m_1",btnLoading:"_btnLoading_f868m_20",isHidden:"_isHidden_f868m_24","auto-width":"_auto-width_f868m_28","full-width":"_full-width_f868m_32","tiny-size":"_tiny-size_f868m_36","small-size":"_small-size_f868m_44","medium-size":"_medium-size_f868m_52","large-size":"_large-size_f868m_60",blue:"_blue_f868m_68",lightBlue:"_lightBlue_f868m_82",sokolniki:"_sokolniki_f868m_97",black:"_black_f868m_111",gray:"_gray_f868m_125",whiteStroke:"_whiteStroke_f868m_139",whiteFilled:"_whiteFilled_f868m_151",shade:"_shade_f868m_165",transparent:"_transparent_f868m_171",volodiyaLight:"_volodiyaLight_f868m_192",loader:"_loader_f868m_198",LoaderSpin:"_LoaderSpin_f868m_1","tiny-size_m":"_tiny-size_m_f868m_204","small-size_m":"_small-size_m_f868m_211","medium-size_m":"_medium-size_m_f868m_218","large-size_m":"_large-size_m_f868m_225","tiny-size_l":"_tiny-size_l_f868m_234","small-size_l":"_small-size_l_f868m_241","medium-size_l":"_medium-size_l_f868m_248","large-size_l":"_large-size_l_f868m_255"},L0=g2.bind(z2),G2=({size:r="medium",size_m:e,size_l:t,onCLick:s,pre:n=!1,children:i="",post:o=!1,variant:l="blue",width:d="auto",additionalClass:h="",isLoading:f=!1,...p})=>{const m=L0(z2.btnCommon,z2[`${r}-size`],z2[`${e}-size_m`],z2[`${t}-size_l`],z2[`${l}`],{[z2.btnLoading]:f},{[z2.btnCommonInline]:n||o},z2[`${d}-width`],h),b=()=>a.jsxs(a.Fragment,{children:[f&&a.jsx(d2,{name:"loader",size:"24",color:"currentColor",additionalClass:z2.loader}),a.jsxs(a.Fragment,{children:[n&&a.jsx("div",{className:L0({[z2.isHidden]:f}),children:n}),a.jsx("div",{className:L0({[z2.isHidden]:f}),children:i}),o&&a.jsx("div",{className:L0({[z2.isHidden]:f}),children:o})]})]});return p.as==="link"?(delete p.as,a.jsx("a",{className:m,onClick:s,...p,children:b()})):(delete p.as,a.jsx("button",{className:m,onClick:s,...p,children:b()}))},U2={btnCommon:"_btnCommon_1act6_1","auto-width":"_auto-width_1act6_18","full-width":"_full-width_1act6_22","small-size":"_small-size_1act6_26",whiteFilled:"_whiteFilled_1act6_34"},Ie=g2.bind(U2),Rr=({size:r="small",pre:e=!1,children:t="",post:s=!1,variant:n="whiteFilled",width:i="auto",additionalClass:o="",...l})=>{if(l.as==="link"){const{as:f,...p}=l;return a.jsxs("a",{className:Ie(U2.btnCommon,U2[`${r}-size`],U2[`${n}`],{[U2.btnCommonInline]:e||s},U2[`${i}-width`],o),...p,children:[e&&a.jsx("div",{children:e}),t,s&&a.jsx("div",{children:s})]})}const{as:d,...h}=l;return a.jsxs("button",{className:Ie(U2.btnCommon,U2[`${r}-size`],U2[`${n}`],{[U2.btnCommonInline]:e||s},U2[`${i}-width`],o),...h,children:[e&&a.jsx("div",{children:e}),t,s&&a.jsx("div",{children:s})]})},X2={destination:"_destination_1c7de_1","auto-width":"_auto-width_1c7de_29","full-width":"_full-width_1c7de_33","medium-size":"_medium-size_1c7de_37",destinationName:"_destinationName_1c7de_40",routeText:"_routeText_1c7de_45","large-size":"_large-size_1c7de_51",whiteStroke:"_whiteStroke_1c7de_65",routeWrapper:"_routeWrapper_1c7de_78","medium-size_m":"_medium-size_m_1c7de_109","large-size_m":"_large-size_m_1c7de_122","medium-size_l":"_medium-size_l_1c7de_137","large-size_l":"_large-size_l_1c7de_150"},Jr=g2.bind(X2),Kr=({size:r="medium",size_m:e,size_l:t,destination:s={destName:"",color:""},variant:n="whiteStroke",width:i="auto",routes:o=[],checked:l,onChange:d,additionalClass:h="",...f})=>a.jsxs("label",{className:Jr(X2.destination,X2[`${r}-size`],X2[`${e}-size_m`],X2[`${t}-size_l`],X2[`${n}`],X2[`${i}-width`],h),...f,htmlFor:s.destName,children:[a.jsx("input",{id:s.destName,checked:l,onChange:d,type:"checkbox",name:s.destName,value:s.destName}),a.jsxs("div",{className:X2.destination,children:[(s==null?void 0:s.color)&&a.jsx("span",{style:{background:(s==null?void 0:s.color)??""}}),s.destName]}),o.map((p,m)=>a.jsxs("div",{className:X2.routeWrapper,children:[p.type,a.jsx("div",{className:X2.routeText,children:p.text})]},m))]}),h0={btnRound:"_btnRound_17364_1","tiny-size":"_tiny-size_17364_19","small-size":"_small-size_17364_25","medium-size":"_medium-size_17364_30","large-size":"_large-size_17364_36",whiteStroke:"_whiteStroke_17364_42",blackFill:"_blackFill_17364_47",blackStroke:"_blackStroke_17364_52",fullGray:"_fullGray_17364_60",blue:"_blue_17364_68","tiny-size_m":"_tiny-size_m_17364_74","small-size_m":"_small-size_m_17364_79","medium-size_m":"_medium-size_m_17364_83","large-size_m":"_large-size_m_17364_88","tiny-size_l":"_tiny-size_l_17364_109","small-size_l":"_small-size_l_17364_114","medium-size_l":"_medium-size_l_17364_118","large-size_l":"_large-size_l_17364_123"},w0={large:"24",medium:"20",small:"16",tiny:"12"},Qr=g2.bind(h0),b0=({size:r="small",size_m:e,size_l:t,children:s="",iconName:n="",variant:i="whiteStroke",additionalClass:o="",additionalClassIcon:l="",deg:d,...h})=>{const[f,p]=_.useState(w0.small),{color:m="#141416"}=h;return _.useEffect(()=>{const b=()=>{const y=window.innerWidth,S=y>1440&&t?w0[t]:y>=1024&&y<=1440&&e?w0[e]:w0[r]||w0.small;p(S)};return window.addEventListener("resize",b),b(),()=>{window.removeEventListener("resize",b)}},[r,e,t]),a.jsx("button",{className:Qr(h0.btnRound,h0[`${r}-size`],h0[`${e}-size_m`],h0[`${t}-size_l`],h0[`${i}`],o),...h,children:a.jsx(a.Fragment,{children:n?a.jsx(d2,{additionalClass:l,name:n,size:f,deg:d,color:m}):s})})},o0={tagCommon:"_tagCommon_2s5ss_1","auto-width":"_auto-width_2s5ss_20","full-width":"_full-width_2s5ss_24","medium-size":"_medium-size_2s5ss_28","mini-size":"_mini-size_2s5ss_36","tiny-size":"_tiny-size_2s5ss_44","small-size":"_small-size_2s5ss_52","preLarge-size":"_preLarge-size_2s5ss_60","large-size":"_large-size_2s5ss_68","tiny-7px-size":"_tiny-7px-size_2s5ss_76","tiny-10px-size":"_tiny-10px-size_2s5ss_84","small-10px-size":"_small-10px-size_2s5ss_92","small-13px-size":"_small-13px-size_2s5ss_100",red:"_red_2s5ss_108",gray:"_gray_2s5ss_114",shade:"_shade_2s5ss_120",blackGrey:"_blackGrey_2s5ss_126",chineseBlack:"_chineseBlack_2s5ss_132",white:"_white_2s5ss_139",fullWhite:"_fullWhite_2s5ss_146",shadeWhite:"_shadeWhite_2s5ss_153",transparent:"_transparent_2s5ss_161",transWhite:"_transWhite_2s5ss_168",whiteGrayStroke:"_whiteGrayStroke_2s5ss_176",whiteGray:"_whiteGray_2s5ss_176",lightGray:"_lightGray_2s5ss_190",blackStroke:"_blackStroke_2s5ss_196",lightBlue:"_lightBlue_2s5ss_203","mini-size_m":"_mini-size_m_2s5ss_210","tiny-size_m":"_tiny-size_m_2s5ss_217","medium-size_m":"_medium-size_m_2s5ss_224","small-size_m":"_small-size_m_2s5ss_231",preLarge_size_m:"_preLarge_size_m_2s5ss_238","large-size_m":"_large-size_m_2s5ss_245","tiny-7px-size_m":"_tiny-7px-size_m_2s5ss_252","tiny-10px-size_m":"_tiny-10px-size_m_2s5ss_259","small-10px-size_m":"_small-10px-size_m_2s5ss_266","small-13px-size_m":"_small-13px-size_m_2s5ss_273","mini-size_l":"_mini-size_l_2s5ss_282","tiny-size_l":"_tiny-size_l_2s5ss_289","medium-size_l":"_medium-size_l_2s5ss_296","small-size_l":"_small-size_l_2s5ss_303","preLarge-size_l":"_preLarge-size_l_2s5ss_310","large-size_l":"_large-size_l_2s5ss_317","tiny-7px-size_l":"_tiny-7px-size_l_2s5ss_324","tiny-10px-size_l":"_tiny-10px-size_l_2s5ss_331","small-10px-size_l":"_small-10px-size_l_2s5ss_338","small-13px-size_l":"_small-13px-size_l_2s5ss_345"},$r=g2.bind(o0),p0=({size:r="medium",size_m:e,size_l:t,children:s="",variant:n="gray",width:i="auto",additionalClass:o="",...l})=>a.jsx("div",{className:$r(o0.tagCommon,o0[`${r}-size`],o0[`${e}-size_m`],o0[`${t}-size_l`],o0[`${n}`],o0[`${i}-width`],o),...l,children:s}),Y2={switcherWrapper:"_switcherWrapper_1sffg_29",switcherWrapperReverse:"_switcherWrapperReverse_1sffg_40",switcherWrapperBetween:"_switcherWrapperBetween_1sffg_44",swiper:"_swiper_1sffg_48",swiperBackward:"_swiperBackward_1sffg_1",swiperActive:"_swiperActive_1sffg_63",swiperForward:"_swiperForward_1sffg_1",swiperInactive:"_swiperInactive_1sffg_68",swiperPoint:"_swiperPoint_1sffg_73",swiperPointActive:"_swiperPointActive_1sffg_85",swiperInitialize:"_swiperInitialize_1sffg_109"},se=g2.bind(Y2),es=({children:r,isActive:e,onClick:t,isReverse:s,isBetween:n})=>{const i=_.useRef(!0);return _.useEffect(()=>{i.current&&(i.current=!1)},[]),a.jsxs("div",{className:se(Y2.switcherWrapper,{[Y2.switcherWrapperReverse]:s},{[Y2.switcherWrapperBetween]:n}),children:[a.jsx("div",{className:se(Y2.swiper,{[Y2.swiperInitialize]:i.current},{[Y2.swiperActive]:e},{[Y2.swiperInactive]:!e&&!i.current}),onClick:t,children:a.jsx("div",{className:se(Y2.swiperPoint,{[Y2.swiperPointActive]:e})})}),r]})},ie={root:"_root_wkh0k_1"},Oe=g2.bind(ie),f0=({children:r,className:e,additionalClass:t="",html:s,...n})=>s?a.jsx("div",{className:Oe(ie.root,e,t),...n,dangerouslySetInnerHTML:{__html:s}}):a.jsx("div",{className:Oe(ie.root,e,t),...n,children:r}),l0={root:"_root_fi64k_1","gap-1":"_gap-1_fi64k_5","gap-2":"_gap-2_fi64k_9","gap-3":"_gap-3_fi64k_13","gap-4":"_gap-4_fi64k_17","gap-5":"_gap-5_fi64k_21","gap-6":"_gap-6_fi64k_25","gap-7":"_gap-7_fi64k_29","gap-8":"_gap-8_fi64k_33","gap-9":"_gap-9_fi64k_37","gap-10":"_gap-10_fi64k_41","gap-11":"_gap-11_fi64k_45","gap-12":"_gap-12_fi64k_49","gap-13":"_gap-13_fi64k_53","gap-14":"_gap-14_fi64k_57","gap-15":"_gap-15_fi64k_61","gap-16":"_gap-16_fi64k_65","fd-row":"_fd-row_fi64k_69","fd-row-reverse":"_fd-row-reverse_fi64k_73","fd-column":"_fd-column_fi64k_77","fd-column-reverse":"_fd-column-reverse_fi64k_81","w-nowrap":"_w-nowrap_fi64k_85","w-wrap":"_w-wrap_fi64k_89","w-wrap-reverse":"_w-wrap-reverse_fi64k_93","jc-flex-start":"_jc-flex-start_fi64k_97","jc-flex-end":"_jc-flex-end_fi64k_101","jc-center":"_jc-center_fi64k_105","jc-space-between":"_jc-space-between_fi64k_109","jc-space-around":"_jc-space-around_fi64k_113","jc-space-evenly":"_jc-space-evenly_fi64k_117","ai-stretch":"_ai-stretch_fi64k_121","ai-flex-start":"_ai-flex-start_fi64k_125","ai-flex-end":"_ai-flex-end_fi64k_129","ai-center":"_ai-center_fi64k_133","ai-baseline":"_ai-baseline_fi64k_137"},ts=g2.bind(l0),ze=({className:r,children:e,jc:t="start",ai:s="center",gap:n,fd:i="row",w:o="nowrap",additionalClass:l="",...d})=>a.jsx("div",{className:ts(l0.root,r,l0[`w-${o}`],l0[`jc-${t}`],l0[`ai-${s}`],l0[`gap-${n}`],l0[`fd-${i}`],l),...d,children:e}),k2={"auto-width":"_auto-width_1ln65_1","full-width":"_full-width_1ln65_6",inputWrapper:"_inputWrapper_1ln65_10",inputIMask:"_inputIMask_1ln65_37",inputWrapperPost:"_inputWrapperPost_1ln65_41",inputWrapperPre:"_inputWrapperPre_1ln65_42",light:"_light_1ln65_58",gray:"_gray_1ln65_96",dark:"_dark_1ln65_128",transparent:"_transparent_1ln65_169",inputWrapperError:"_inputWrapperError_1ln65_227",inputWrapperErrorWithoutBorder:"_inputWrapperErrorWithoutBorder_1ln65_241",inputWrapperErrorDark:"_inputWrapperErrorDark_1ln65_252",checkBox:"_checkBox_1ln65_266","tiny-size_s":"_tiny-size_s_1ln65_270","small-size_s":"_small-size_s_1ln65_278","medium-size_s":"_medium-size_s_1ln65_286","large-size_s":"_large-size_s_1ln65_294","tiny-size_m":"_tiny-size_m_1ln65_303","small-size_m":"_small-size_m_1ln65_310","medium-size_m":"_medium-size_m_1ln65_317","large-size_m":"_large-size_m_1ln65_324","tiny-size_l":"_tiny-size_l_1ln65_333","small-size_l":"_small-size_l_1ln65_340","medium-size_l":"_medium-size_l_1ln65_347","large-size_l":"_large-size_l_1ln65_354"};function r0(r){return typeof r=="string"||r instanceof String}function Ne(r){var e;return typeof r=="object"&&r!=null&&(r==null||(e=r.constructor)==null?void 0:e.name)==="Object"}function Pe(r,e){return Array.isArray(e)?Pe(r,(t,s)=>e.includes(s)):Object.entries(r).reduce((t,s)=>{let[n,i]=s;return e(i,n)&&(t[n]=i),t},{})}const O={NONE:"NONE",LEFT:"LEFT",FORCE_LEFT:"FORCE_LEFT",RIGHT:"RIGHT",FORCE_RIGHT:"FORCE_RIGHT"};function rs(r){switch(r){case O.LEFT:return O.FORCE_LEFT;case O.RIGHT:return O.FORCE_RIGHT;default:return r}}function ne(r){return r.replace(/([.*+?^=!:${}()|[\]/\\])/g,"\\$1")}function D0(r,e){if(e===r)return!0;const t=Array.isArray(e),s=Array.isArray(r);let n;if(t&&s){if(e.length!=r.length)return!1;for(n=0;n<e.length;n++)if(!D0(e[n],r[n]))return!1;return!0}if(t!=s)return!1;if(e&&r&&typeof e=="object"&&typeof r=="object"){const i=e instanceof Date,o=r instanceof Date;if(i&&o)return e.getTime()==r.getTime();if(i!=o)return!1;const l=e instanceof RegExp,d=r instanceof RegExp;if(l&&d)return e.toString()==r.toString();if(l!=d)return!1;const h=Object.keys(e);for(n=0;n<h.length;n++)if(!Object.prototype.hasOwnProperty.call(r,h[n]))return!1;for(n=0;n<h.length;n++)if(!D0(r[h[n]],e[h[n]]))return!1;return!0}else if(e&&r&&typeof e=="function"&&typeof r=="function")return e.toString()===r.toString();return!1}class ss{constructor(e){for(Object.assign(this,e);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?O.NONE:(this.oldSelection.end===this.cursorPos||this.oldSelection.start===this.cursorPos)&&this.oldSelection.end===this.oldSelection.start?O.RIGHT:O.LEFT}}function j(r,e){return new j.InputMask(r,e)}function He(r){if(r==null)throw new Error("mask property should be defined");return r instanceof RegExp?j.MaskedRegExp:r0(r)?j.MaskedPattern:r===Date?j.MaskedDate:r===Number?j.MaskedNumber:Array.isArray(r)||r===Array?j.MaskedDynamic:j.Masked&&r.prototype instanceof j.Masked?r:j.Masked&&r instanceof j.Masked?r.constructor:r instanceof Function?j.MaskedFunction:(console.warn("Mask not found for mask",r),j.Masked)}function E0(r){if(!r)throw new Error("Options in not defined");if(j.Masked){if(r.prototype instanceof j.Masked)return{mask:r};const{mask:e=void 0,...t}=r instanceof j.Masked?{mask:r}:Ne(r)&&r.mask instanceof j.Masked?r:{};if(e){const s=e.mask;return{...Pe(e,(n,i)=>!i.startsWith("_")),mask:e.constructor,_mask:s,...t}}}return Ne(r)?{...r}:{mask:r}}function $2(r){if(j.Masked&&r instanceof j.Masked)return r;const e=E0(r),t=He(e.mask);if(!t)throw new Error("Masked class is not found for provided mask "+e.mask+", appropriate module needs to be imported manually before creating mask.");return e.mask===t&&delete e.mask,e._mask&&(e.mask=e._mask,delete e._mask),new t(e)}j.createMask=$2;class ae{get selectionStart(){let e;try{e=this._unsafeSelectionStart}catch{}return e??this.value.length}get selectionEnd(){let e;try{e=this._unsafeSelectionEnd}catch{}return e??this.value.length}select(e,t){if(!(e==null||t==null||e===this.selectionStart&&t===this.selectionEnd))try{this._unsafeSelect(e,t)}catch{}}get isActive(){return!1}}j.MaskElement=ae;const We=90,is=89;class I0 extends ae{constructor(e){super(),this.input=e,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 e,t,s;return(e=(t=(s=this.input).getRootNode)==null?void 0:t.call(s))!=null?e:document}get isActive(){return this.input===this.rootElement.activeElement}bindEvents(e){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",e.drop),this.input.addEventListener("click",e.click),this.input.addEventListener("focus",e.focus),this.input.addEventListener("blur",e.commit),this._handlers=e}_onKeydown(e){if(this._handlers.redo&&(e.keyCode===We&&e.shiftKey&&(e.metaKey||e.ctrlKey)||e.keyCode===is&&e.ctrlKey))return e.preventDefault(),this._handlers.redo(e);if(this._handlers.undo&&e.keyCode===We&&(e.metaKey||e.ctrlKey))return e.preventDefault(),this._handlers.undo(e);e.isComposing||this._handlers.selectionChange(e)}_onBeforeinput(e){if(e.inputType==="historyUndo"&&this._handlers.undo)return e.preventDefault(),this._handlers.undo(e);if(e.inputType==="historyRedo"&&this._handlers.redo)return e.preventDefault(),this._handlers.redo(e)}_onCompositionEnd(e){this._handlers.input(e)}_onInput(e){e.isComposing||this._handlers.input(e)}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={}}}j.HTMLMaskElement=I0;class ns extends I0{constructor(e){super(e),this.input=e}get _unsafeSelectionStart(){return this.input.selectionStart!=null?this.input.selectionStart:this.value.length}get _unsafeSelectionEnd(){return this.input.selectionEnd}_unsafeSelect(e,t){this.input.setSelectionRange(e,t)}get value(){return this.input.value}set value(e){this.input.value=e}}j.HTMLMaskElement=I0;class je extends I0{get _unsafeSelectionStart(){const e=this.rootElement,t=e.getSelection&&e.getSelection(),s=t&&t.anchorOffset,n=t&&t.focusOffset;return n==null||s==null||s<n?s:n}get _unsafeSelectionEnd(){const e=this.rootElement,t=e.getSelection&&e.getSelection(),s=t&&t.anchorOffset,n=t&&t.focusOffset;return n==null||s==null||s>n?s:n}_unsafeSelect(e,t){if(!this.rootElement.createRange)return;const s=this.rootElement.createRange();s.setStart(this.input.firstChild||this.input,e),s.setEnd(this.input.lastChild||this.input,t);const n=this.rootElement,i=n.getSelection&&n.getSelection();i&&(i.removeAllRanges(),i.addRange(s))}get value(){return this.input.textContent||""}set value(e){this.input.textContent=e}}j.HTMLContenteditableMaskElement=je;class O0{constructor(){this.states=[],this.currentIndex=0}get currentState(){return this.states[this.currentIndex]}get isEmpty(){return this.states.length===0}push(e){this.currentIndex<this.states.length-1&&(this.states.length=this.currentIndex+1),this.states.push(e),this.states.length>O0.MAX_LENGTH&&this.states.shift(),this.currentIndex=this.states.length-1}go(e){return this.currentIndex=Math.min(Math.max(this.currentIndex+e,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}}O0.MAX_LENGTH=100;class as{constructor(e,t){this.el=e instanceof ae?e:e.isContentEditable&&e.tagName!=="INPUT"&&e.tagName!=="TEXTAREA"?new je(e):new ns(e),this.masked=$2(t),this._listeners={},this._value="",this._unmaskedValue="",this._rawInputValue="",this.history=new O0,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(e){var t;return e==null||((t=this.masked)==null?void 0:t.maskEquals(e))}get mask(){return this.masked.mask}set mask(e){if(this.maskEquals(e))return;if(!(e instanceof j.Masked)&&this.masked.constructor===He(e)){this.masked.updateOptions({mask:e});return}const t=e instanceof j.Masked?e:$2({mask:e});t.unmaskedValue=this.masked.unmaskedValue,this.masked=t}get value(){return this._value}set value(e){this.value!==e&&(this.masked.value=e,this.updateControl("auto"))}get unmaskedValue(){return this._unmaskedValue}set unmaskedValue(e){this.unmaskedValue!==e&&(this.masked.unmaskedValue=e,this.updateControl("auto"))}get rawInputValue(){return this._rawInputValue}set rawInputValue(e){this.rawInputValue!==e&&(this.masked.rawInputValue=e,this.updateControl(),this.alignCursor())}get typedValue(){return this.masked.typedValue}set typedValue(e){this.masked.typedValueEquals(e)||(this.masked.typedValue=e,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(e,t){const s=this._listeners[e];s&&s.forEach(n=>n(t))}get selectionStart(){return this._cursorChanging?this._changingCursorPos:this.el.selectionStart}get cursorPos(){return this._cursorChanging?this._changingCursorPos:this.el.selectionEnd}set cursorPos(e){!this.el||!this.el.isActive||(this.el.select(e,e),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(e){const t=this.masked.unmaskedValue,s=this.masked.value,n=this.masked.rawInputValue,i=this.displayValue,o=this.unmaskedValue!==t||this.value!==s||this._rawInputValue!==n;this._unmaskedValue=t,this._value=s,this._rawInputValue=n,this.el.value!==i&&(this.el.value=i),e==="auto"?this.alignCursor():e!=null&&(this.cursorPos=e),o&&this._fireChangeEvents(),!this._historyChanging&&(o||this.history.isEmpty)&&this.history.push({unmaskedValue:t,selection:{start:this.selectionStart,end:this.cursorPos}})}updateOptions(e){const{mask:t,...s}=e,n=!this.maskEquals(t),i=this.masked.optionsIsChanged(s);n&&(this.mask=t),i&&this.masked.updateOptions(s),(n||i)&&this.updateControl()}updateCursor(e){e!=null&&(this.cursorPos=e,this._delayUpdateCursor(e))}_delayUpdateCursor(e){this._abortUpdateCursor(),this._changingCursorPos=e,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,O.LEFT))}alignCursorFriendly(){this.selectionStart===this.cursorPos&&this.alignCursor()}on(e,t){return this._listeners[e]||(this._listeners[e]=[]),this._listeners[e].push(t),this}off(e,t){if(!this._listeners[e])return this;if(!t)return delete this._listeners[e],this;const s=this._listeners[e].indexOf(t);return s>=0&&this._listeners[e].splice(s,1),this}_onInput(e){this._inputEvent=e,this._abortUpdateCursor();const t=new ss({value:this.el.value,cursorPos:this.cursorPos,oldValue:this.displayValue,oldSelection:this._selection}),s=this.masked.rawInputValue,n=this.masked.splice(t.startChangePos,t.removed.length,t.inserted,t.removeDirection,{input:!0,raw:!0}).offset,i=s===this.masked.rawInputValue?t.removeDirection:O.NONE;let o=this.masked.nearestInputPos(t.startChangePos+n,i);i!==O.NONE&&(o=this.masked.nearestInputPos(o,O.NONE)),this.updateControl(o),delete this._inputEvent}_onChange(){this.displayValue!==this.el.value&&this.updateValue(),this.masked.doCommit(),this.updateControl(),this._saveSelection()}_onDrop(e){e.preventDefault(),e.stopPropagation()}_onFocus(e){this.alignCursorFriendly()}_onClick(e){this.alignCursorFriendly()}_onUndo(){this._applyHistoryState(this.history.undo())}_onRedo(){this._applyHistoryState(this.history.redo())}_applyHistoryState(e){e&&(this._historyChanging=!0,this.unmaskedValue=e.unmaskedValue,this.el.select(e.selection.start,e.selection.end),this._saveSelection(),this._historyChanging=!1)}destroy(){this._unbindEvents(),this._listeners.length=0,delete this.el}}j.InputMask=as;class K{static normalize(e){return Array.isArray(e)?e:[e,new K]}constructor(e){Object.assign(this,{inserted:"",rawInserted:"",tailShift:0,skip:!1},e)}aggregate(e){return this.inserted+=e.inserted,this.rawInserted+=e.rawInserted,this.tailShift+=e.tailShift,this.skip=this.skip||e.skip,this}get offset(){return this.tailShift+this.inserted.length}get consumed(){return!!this.rawInserted||this.skip}equals(e){return this.inserted===e.inserted&&this.tailShift===e.tailShift&&this.rawInserted===e.rawInserted&&this.skip===e.skip}}j.ChangeDetails=K;class R2{constructor(e,t,s){e===void 0&&(e=""),t===void 0&&(t=0),this.value=e,this.from=t,this.stop=s}toString(){return this.value}extend(e){this.value+=String(e)}appendTo(e){return e.append(this.toString(),{tail:!0}).aggregate(e._appendPlaceholder())}get state(){return{value:this.value,from:this.from,stop:this.stop}}set state(e){Object.assign(this,e)}unshift(e){if(!this.value.length||e!=null&&this.from>=e)return"";const t=this.value[0];return this.value=this.value.slice(1),t}shift(){if(!this.value.length)return"";const e=this.value[this.value.length-1];return this.value=this.value.slice(0,-1),e}}class B2{constructor(e){this._value="",this._update({...B2.DEFAULTS,...e}),this._initialized=!0}updateOptions(e){this.optionsIsChanged(e)&&this.withValueRefresh(this._update.bind(this,e))}_update(e){Object.assign(this,e)}get state(){return{_value:this.value,_rawInputValue:this.rawInputValue}}set state(e){this._value=e._value}reset(){this._value=""}get value(){return this._value}set value(e){this.resolve(e,{input:!0})}resolve(e,t){t===void 0&&(t={input:!0}),this.reset(),this.append(e,t,""),this.doCommit()}get unmaskedValue(){return this.value}set unmaskedValue(e){this.resolve(e,{})}get typedValue(){return this.parse?this.parse(this.value,this):this.unmaskedValue}set typedValue(e){this.format?this.value=this.format(e,this):this.unmaskedValue=String(e)}get rawInputValue(){return this.extractInput(0,this.displayValue.length,{raw:!0})}set rawInputValue(e){this.resolve(e,{raw:!0})}get displayValue(){return this.value}get isComplete(){return!0}get isFilled(){return this.isComplete}nearestInputPos(e,t){return e}totalInputPositions(e,t){return e===void 0&&(e=0),t===void 0&&(t=this.displayValue.length),Math.min(this.displayValue.length,t-e)}extractInput(e,t,s){return e===void 0&&(e=0),t===void 0&&(t=this.displayValue.length),this.displayValue.slice(e,t)}extractTail(e,t){return e===void 0&&(e=0),t===void 0&&(t=this.displayValue.length),new R2(this.extractInput(e,t),e)}appendTail(e){return r0(e)&&(e=new R2(String(e))),e.appendTo(this)}_appendCharRaw(e,t){return e?(this._value+=e,new K({inserted:e,rawInserted:e})):new K}_appendChar(e,t,s){t===void 0&&(t={});const n=this.state;let i;if([e,i]=this.doPrepareChar(e,t),e&&(i=i.aggregate(this._appendCharRaw(e,t)),!i.rawInserted&&this.autofix==="pad")){const o=this.state;this.state=n;let l=this.pad(t);const d=this._appendCharRaw(e,t);l=l.aggregate(d),d.rawInserted||l.equals(i)?i=l:this.state=o}if(i.inserted){let o,l=this.doValidate(t)!==!1;if(l&&s!=null){const d=this.state;if(this.overwrite===!0){o=s.state;for(let f=0;f<i.rawInserted.length;++f)s.unshift(this.displayValue.length-i.tailShift)}let h=this.appendTail(s);if(l=h.rawInserted.length===s.toString().length,!(l&&h.inserted)&&this.overwrite==="shift"){this.state=d,o=s.state;for(let f=0;f<i.rawInserted.length;++f)s.shift();h=this.appendTail(s),l=h.rawInserted.length===s.toString().length}l&&h.inserted&&(this.state=d)}l||(i=new K,this.state=n,s&&o&&(s.state=o))}return i}_appendPlaceholder(){return new K}_appendEager(){return new K}append(e,t,s){if(!r0(e))throw new Error("value should be string");const n=r0(s)?new R2(String(s)):s;t!=null&&t.tail&&(t._beforeTailState=this.state);let i;[e,i]=this.doPrepare(e,t);for(let o=0;o<e.length;++o){const l=this._appendChar(e[o],t,n);if(!l.rawInserted&&!this.doSkipInvalid(e[o],t,n))break;i.aggregate(l)}return(this.eager===!0||this.eager==="append")&&t!=null&&t.input&&e&&i.aggregate(this._appendEager()),n!=null&&(i.tailShift+=this.appendTail(n).tailShift),i}remove(e,t){return e===void 0&&(e=0),t===void 0&&(t=this.displayValue.length),this._value=this.displayValue.slice(0,e)+this.displayValue.slice(t),new K}withValueRefresh(e){if(this._refreshing||!this._initialized)return e();this._refreshing=!0;const t=this.rawInputValue,s=this.value,n=e();return this.rawInputValue=t,this.value&&this.value!==s&&s.indexOf(this.value)===0&&(this.append(s.slice(this.displayValue.length),{},""),this.doCommit()),delete this._refreshing,n}runIsolated(e){if(this._isolated||!this._initialized)return e(this);this._isolated=!0;const t=this.state,s=e(this);return this.state=t,delete this._isolated,s}doSkipInvalid(e,t,s){return!!this.skipInvalid}doPrepare(e,t){return t===void 0&&(t={}),K.normalize(this.prepare?this.prepare(e,this,t):e)}doPrepareChar(e,t){return t===void 0&&(t={}),K.normalize(this.prepareChar?this.prepareChar(e,this,t):e)}doValidate(e){return(!this.validate||this.validate(this.value,this,e))&&(!this.parent||this.parent.doValidate(e))}doCommit(){this.commit&&this.commit(this.value,this)}splice(e,t,s,n,i){s===void 0&&(s=""),n===void 0&&(n=O.NONE),i===void 0&&(i={input:!0});const o=e+t,l=this.extractTail(o),d=this.eager===!0||this.eager==="remove";let h;d&&(n=rs(n),h=this.extractInput(0,o,{raw:!0}));let f=e;const p=new K;if(n!==O.NONE&&(f=this.nearestInputPos(e,t>1&&e!==0&&!d?O.NONE:n),p.tailShift=f-e),p.aggregate(this.remove(f)),d&&n!==O.NONE&&h===this.rawInputValue)if(n===O.FORCE_LEFT){let m;for(;h===this.rawInputValue&&(m=this.displayValue.length);)p.aggregate(new K({tailShift:-1})).aggregate(this.remove(m-1))}else n===O.FORCE_RIGHT&&l.unshift();return p.aggregate(this.append(s,i,l))}maskEquals(e){return this.mask===e}optionsIsChanged(e){return!D0(this,e)}typedValueEquals(e){const t=this.typedValue;return e===t||B2.EMPTY_VALUES.includes(e)&&B2.EMPTY_VALUES.includes(t)||(this.format?this.format(e,this)===this.format(this.typedValue,this):!1)}pad(e){return new K}}B2.DEFAULTS={skipInvalid:!0},B2.EMPTY_VALUES=[void 0,null,""],j.Masked=B2;class c0{constructor(e,t){e===void 0&&(e=[]),t===void 0&&(t=0),this.chunks=e,this.from=t}toString(){return this.chunks.map(String).join("")}extend(e){if(!String(e))return;e=r0(e)?new R2(String(e)):e;const t=this.chunks[this.chunks.length-1],s=t&&(t.stop===e.stop||e.stop==null)&&e.from===t.from+t.toString().length;if(e instanceof R2)s?t.extend(e.toString()):this.chunks.push(e);else if(e instanceof c0){if(e.stop==null){let n;for(;e.chunks.length&&e.chunks[0].stop==null;)n=e.chunks.shift(),n.from+=e.from,this.extend(n)}e.toString()&&(e.stop=e.blockIndex,this.chunks.push(e))}}appendTo(e){if(!(e instanceof j.MaskedPattern))return new R2(this.toString()).appendTo(e);const t=new K;for(let s=0;s<this.chunks.length;++s){const n=this.chunks[s],i=e._mapPosToBlock(e.displayValue.length),o=n.stop;let l;if(o!=null&&(!i||i.index<=o)&&((n instanceof c0||e._stops.indexOf(o)>=0)&&t.aggregate(e._appendPlaceholder(o)),l=n instanceof c0&&e._blocks[o]),l){const d=l.appendTail(n);t.aggregate(d);const h=n.toString().slice(d.rawInserted.length);h&&t.aggregate(e.append(h,{tail:!0}))}else t.aggregate(e.append(n.toString(),{tail:!0}))}return t}get state(){return{chunks:this.chunks.map(e=>e.state),from:this.from,stop:this.stop,blockIndex:this.blockIndex}}set state(e){const{chunks:t,...s}=e;Object.assign(this,s),this.chunks=t.map(n=>{const i="chunks"in n?new c0:new R2;return i.state=n,i})}unshift(e){if(!this.chunks.length||e!=null&&this.from>=e)return"";const t=e!=null?e-this.from:e;let s=0;for(;s<this.chunks.length;){const n=this.chunks[s],i=n.unshift(t);if(n.toString()){if(!i)break;++s}else this.chunks.splice(s,1);if(i)return i}return""}shift(){if(!this.chunks.length)return"";let e=this.chunks.length-1;for(;0<=e;){const t=this.chunks[e],s=t.shift();if(t.toString()){if(!s)break;--e}else this.chunks.splice(e,1);if(s)return s}return""}}class os{constructor(e,t){this.masked=e,this._log=[];const{offset:s,index:n}=e._mapPosToBlock(t)||(t<0?{index:0,offset:0}:{index:this.masked._blocks.length,offset:0});this.offset=s,this.index=n,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(e){Object.assign(this,e)}pushState(){this._log.push(this.state)}popState(){const e=this._log.pop();return e&&(this.state=e),e}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(e){for(this.pushState(),this.bindBlock();0<=this.index;--this.index,this.offset=((t=this.block)==null?void 0:t.displayValue.length)||0){var t;if(e())return this.ok=!0}return this.ok=!1}_pushRight(e){for(this.pushState(),this.bindBlock();this.index<this.masked._blocks.length;++this.index,this.offset=0)if(e())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,O.FORCE_LEFT),this.offset!==0))return!0})}pushLeftBeforeInput(){return this._pushLeft(()=>{if(!this.block.isFixed)return this.offset=this.block.nearestInputPos(this.offset,O.LEFT),!0})}pushLeftBeforeRequired(){return this._pushLeft(()=>{if(!(this.block.isFixed||this.block.isOptional&&!this.block.value))return this.offset=this.block.nearestInputPos(this.offset,O.LEFT),!0})}pushRightBeforeFilled(){return this._pushRight(()=>{if(!(this.block.isFixed||!this.block.value)&&(this.offset=this.block.nearestInputPos(this.offset,O.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,O.NONE),!0})}pushRightBeforeRequired(){return this._pushRight(()=>{if(!(this.block.isFixed||this.block.isOptional&&!this.block.value))return this.offset=this.block.nearestInputPos(this.offset,O.NONE),!0})}}class Ze{constructor(e){Object.assign(this,e),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(e,t){return e===void 0&&(e=0),t===void 0&&(t=this._value.length),this._value=this._value.slice(0,e)+this._value.slice(t),this._value||(this._isRawInput=!1),new K}nearestInputPos(e,t){t===void 0&&(t=O.NONE);const s=0,n=this._value.length;switch(t){case O.LEFT:case O.FORCE_LEFT:return s;case O.NONE:case O.RIGHT:case O.FORCE_RIGHT:default:return n}}totalInputPositions(e,t){return e===void 0&&(e=0),t===void 0&&(t=this._value.length),this._isRawInput?t-e:0}extractInput(e,t,s){return e===void 0&&(e=0),t===void 0&&(t=this._value.length),s===void 0&&(s={}),s.raw&&this._isRawInput&&this._value.slice(e,t)||""}get isComplete(){return!0}get isFilled(){return!!this._value}_appendChar(e,t){if(t===void 0&&(t={}),this.isFilled)return new K;const s=this.eager===!0||this.eager==="append",i=this.char===e&&(this.isUnmasking||t.input||t.raw)&&(!t.raw||!s)&&!t.tail,o=new K({inserted:this.char,rawInserted:i?this.char:""});return this._value=this.char,this._isRawInput=i&&(t.raw||t.input),o}_appendEager(){return this._appendChar(this.char,{tail:!0})}_appendPlaceholder(){const e=new K;return this.isFilled||(this._value=e.inserted=this.char),e}extractTail(){return new R2("")}appendTail(e){return r0(e)&&(e=new R2(String(e))),e.appendTo(this)}append(e,t,s){const n=this._appendChar(e[0],t);return s!=null&&(n.tailShift+=this.appendTail(s).tailShift),n}doCommit(){}get state(){return{_value:this._value,_rawInputValue:this.rawInputValue}}set state(e){this._value=e._value,this._isRawInput=!!e._rawInputValue}pad(e){return this._appendPlaceholder()}}class z0{constructor(e){const{parent:t,isOptional:s,placeholderChar:n,displayChar:i,lazy:o,eager:l,...d}=e;this.masked=$2(d),Object.assign(this,{parent:t,isOptional:s,placeholderChar:n,displayChar:i,lazy:o,eager:l})}reset(){this.isFilled=!1,this.masked.reset()}remove(e,t){return e===void 0&&(e=0),t===void 0&&(t=this.value.length),e===0&&t>=1?(this.isFilled=!1,this.masked.remove(e,t)):new K}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(e,t){if(t===void 0&&(t={}),this.isFilled)return new K;const s=this.masked.state;let n=this.masked._appendChar(e,this.currentMaskFlags(t));return n.inserted&&this.doValidate(t)===!1&&(n=new K,this.masked.state=s),!n.inserted&&!this.isOptional&&!this.lazy&&!t.input&&(n.inserted=this.placeholderChar),n.skip=!n.inserted&&!this.isOptional,this.isFilled=!!n.inserted,n}append(e,t,s){return this.masked.append(e,this.currentMaskFlags(t),s)}_appendPlaceholder(){return this.isFilled||this.isOptional?new K:(this.isFilled=!0,new K({inserted:this.placeholderChar}))}_appendEager(){return new K}extractTail(e,t){return this.masked.extractTail(e,t)}appendTail(e){return this.masked.appendTail(e)}extractInput(e,t,s){return e===void 0&&(e=0),t===void 0&&(t=this.value.length),this.masked.extractInput(e,t,s)}nearestInputPos(e,t){t===void 0&&(t=O.NONE);const s=0,n=this.value.length,i=Math.min(Math.max(e,s),n);switch(t){case O.LEFT:case O.FORCE_LEFT:return this.isComplete?i:s;case O.RIGHT:case O.FORCE_RIGHT:return this.isComplete?i:n;case O.NONE:default:return i}}totalInputPositions(e,t){return e===void 0&&(e=0),t===void 0&&(t=this.value.length),this.value.slice(e,t).length}doValidate(e){return this.masked.doValidate(this.currentMaskFlags(e))&&(!this.parent||this.parent.doValidate(this.currentMaskFlags(e)))}doCommit(){this.masked.doCommit()}get state(){return{_value:this.value,_rawInputValue:this.rawInputValue,masked:this.masked.state,isFilled:this.isFilled}}set state(e){this.masked.state=e.masked,this.isFilled=e.isFilled}currentMaskFlags(e){var t;return{...e,_beforeTailState:(e==null||(t=e._beforeTailState)==null?void 0:t.masked)||(e==null?void 0:e._beforeTailState)}}pad(e){return new K}}z0.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 ls extends B2{updateOptions(e){super.updateOptions(e)}_update(e){const t=e.mask;t&&(e.validate=s=>s.search(t)>=0),super._update(e)}}j.MaskedRegExp=ls;class V2 extends B2{constructor(e){super({...V2.DEFAULTS,...e,definitions:Object.assign({},z0.DEFAULT_DEFINITIONS,e==null?void 0:e.definitions)})}updateOptions(e){super.updateOptions(e)}_update(e){e.definitions=Object.assign({},this.definitions,e.definitions),super._update(e),this._rebuildMask()}_rebuildMask(){const e=this.definitions;this._blocks=[],this.exposeBlock=void 0,this._stops=[],this._maskedBlocks={};const t=this.mask;if(!t||!e)return;let s=!1,n=!1;for(let i=0;i<t.length;++i){if(this.blocks){const h=t.slice(i),f=Object.keys(this.blocks).filter(m=>h.indexOf(m)===0);f.sort((m,b)=>b.length-m.length);const p=f[0];if(p){const{expose:m,repeat:b,...y}=E0(this.blocks[p]),S={lazy:this.lazy,eager:this.eager,placeholderChar:this.placeholderChar,displayChar:this.displayChar,overwrite:this.overwrite,autofix:this.autofix,...y,repeat:b,parent:this},E=b!=null?new j.RepeatBlock(S):$2(S);E&&(this._blocks.push(E),m&&(this.exposeBlock=E),this._maskedBlocks[p]||(this._maskedBlocks[p]=[]),this._maskedBlocks[p].push(this._blocks.length-1)),i+=p.length-1;continue}}let o=t[i],l=o in e;if(o===V2.STOP_CHAR){this._stops.push(this._blocks.length);continue}if(o==="{"||o==="}"){s=!s;continue}if(o==="["||o==="]"){n=!n;continue}if(o===V2.ESCAPE_CHAR){if(++i,o=t[i],!o)break;l=!1}const d=l?new z0({isOptional:n,lazy:this.lazy,eager:this.eager,placeholderChar:this.placeholderChar,displayChar:this.displayChar,...E0(e[o]),parent:this}):new Ze({char:o,eager:this.eager,isUnmasking:s});this._blocks.push(d)}}get state(){return{...super.state,_blocks:this._blocks.map(e=>e.state)}}set state(e){if(!e){this.reset();return}const{_blocks:t,...s}=e;this._blocks.forEach((n,i)=>n.state=t[i]),super.state=s}reset(){super.reset(),this._blocks.forEach(e=>e.reset())}get isComplete(){return this.exposeBlock?this.exposeBlock.isComplete:this._blocks.every(e=>e.isComplete)}get isFilled(){return this._blocks.every(e=>e.isFilled)}get isFixed(){return this._blocks.every(e=>e.isFixed)}get isOptional(){return this._blocks.every(e=>e.isOptional)}doCommit(){this._blocks.forEach(e=>e.doCommit()),super.doCommit()}get unmaskedValue(){return this.exposeBlock?this.exposeBlock.unmaskedValue:this._blocks.reduce((e,t)=>e+=t.unmaskedValue,"")}set unmaskedValue(e){if(this.exposeBlock){const t=this.extractTail(this._blockStartPos(this._blocks.indexOf(this.exposeBlock))+this.exposeBlock.displayValue.length);this.exposeBlock.unmaskedValue=e,this.appendTail(t),this.doCommit()}else super.unmaskedValue=e}get value(){return this.exposeBlock?this.exposeBlock.value:this._blocks.reduce((e,t)=>e+=t.value,"")}set value(e){if(this.exposeBlock){const t=this.extractTail(this._blockStartPos(this._blocks.indexOf(this.exposeBlock))+this.exposeBlock.displayValue.length);this.exposeBlock.value=e,this.appendTail(t),this.doCommit()}else super.value=e}get typedValue(){return this.exposeBlock?this.exposeBlock.typedValue:super.typedValue}set typedValue(e){if(this.exposeBlock){const t=this.extractTail(this._blockStartPos(this._blocks.indexOf(this.exposeBlock))+this.exposeBlock.displayValue.length);this.exposeBlock.typedValue=e,this.appendTail(t),this.doCommit()}else super.typedValue=e}get displayValue(){return this._blocks.reduce((e,t)=>e+=t.displayValue,"")}appendTail(e){return super.appendTail(e).aggregate(this._appendPlaceholder())}_appendEager(){var e;const t=new K;let s=(e=this._mapPosToBlock(this.displayValue.length))==null?void 0:e.index;if(s==null)return t;this._blocks[s].isFilled&&++s;for(let n=s;n<this._blocks.length;++n){const i=this._blocks[n]._appendEager();if(!i.inserted)break;t.aggregate(i)}return t}_appendCharRaw(e,t){t===void 0&&(t={});const s=this._mapPosToBlock(this.displayValue.length),n=new K;if(!s)return n;for(let o=s.index,l;l=this._blocks[o];++o){var i;const d=l._appendChar(e,{...t,_beforeTailState:(i=t._beforeTailState)==null||(i=i._blocks)==null?void 0:i[o]});if(n.aggregate(d),d.consumed)break}return n}extractTail(e,t){e===void 0&&(e=0),t===void 0&&(t=this.displayValue.length);const s=new c0;return e===t||this._forEachBlocksInRange(e,t,(n,i,o,l)=>{const d=n.extractTail(o,l);d.stop=this._findStopBefore(i),d.from=this._blockStartPos(i),d instanceof c0&&(d.blockIndex=i),s.extend(d)}),s}extractInput(e,t,s){if(e===void 0&&(e=0),t===void 0&&(t=this.displayValue.length),s===void 0&&(s={}),e===t)return"";let n="";return this._forEachBlocksInRange(e,t,(i,o,l,d)=>{n+=i.extractInput(l,d,s)}),n}_findStopBefore(e){let t;for(let s=0;s<this._stops.length;++s){const n=this._stops[s];if(n<=e)t=n;else break}return t}_appendPlaceholder(e){const t=new K;if(this.lazy&&e==null)return t;const s=this._mapPosToBlock(this.displayValue.length);if(!s)return t;const n=s.index,i=e??this._blocks.length;return this._blocks.slice(n,i).forEach(o=>{if(!o.lazy||e!=null){var l;t.aggregate(o._appendPlaceholder((l=o._blocks)==null?void 0:l.length))}}),t}_mapPosToBlock(e){let t="";for(let s=0;s<this._blocks.length;++s){const n=this._blocks[s],i=t.length;if(t+=n.displayValue,e<=t.length)return{index:s,offset:e-i}}}_blockStartPos(e){return this._blocks.slice(0,e).reduce((t,s)=>t+=s.displayValue.length,0)}_forEachBlocksInRange(e,t,s){t===void 0&&(t=this.displayValue.length);const n=this._mapPosToBlock(e);if(n){const i=this._mapPosToBlock(t),o=i&&n.index===i.index,l=n.offset,d=i&&o?i.offset:this._blocks[n.index].displayValue.length;if(s(this._blocks[n.index],n.index,l,d),i&&!o){for(let h=n.index+1;h<i.index;++h)s(this._blocks[h],h,0,this._blocks[h].displayValue.length);s(this._blocks[i.index],i.index,0,i.offset)}}}remove(e,t){e===void 0&&(e=0),t===void 0&&(t=this.displayValue.length);const s=super.remove(e,t);return this._forEachBlocksInRange(e,t,(n,i,o,l)=>{s.aggregate(n.remove(o,l))}),s}nearestInputPos(e,t){if(t===void 0&&(t=O.NONE),!this._blocks.length)return 0;const s=new os(this,e);if(t===O.NONE)return s.pushRightBeforeInput()||(s.popState(),s.pushLeftBeforeInput())?s.pos:this.displayValue.length;if(t===O.LEFT||t===O.FORCE_LEFT){if(t===O.LEFT){if(s.pushRightBeforeFilled(),s.ok&&s.pos===e)return e;s.popState()}if(s.pushLeftBeforeInput(),s.pushLeftBeforeRequired(),s.pushLeftBeforeFilled(),t===O.LEFT){if(s.pushRightBeforeInput(),s.pushRightBeforeRequired(),s.ok&&s.pos<=e||(s.popState(),s.ok&&s.pos<=e))return s.pos;s.popState()}return s.ok?s.pos:t===O.FORCE_LEFT?0:(s.popState(),s.ok||(s.popState(),s.ok)?s.pos:0)}return t===O.RIGHT||t===O.FORCE_RIGHT?(s.pushRightBeforeInput(),s.pushRightBeforeRequired(),s.pushRightBeforeFilled()?s.pos:t===O.FORCE_RIGHT?this.displayValue.length:(s.popState(),s.ok||(s.popState(),s.ok)?s.pos:this.nearestInputPos(e,O.LEFT))):e}totalInputPositions(e,t){e===void 0&&(e=0),t===void 0&&(t=this.displayValue.length);let s=0;return this._forEachBlocksInRange(e,t,(n,i,o,l)=>{s+=n.totalInputPositions(o,l)}),s}maskedBlock(e){return this.maskedBlocks(e)[0]}maskedBlocks(e){const t=this._maskedBlocks[e];return t?t.map(s=>this._blocks[s]):[]}pad(e){const t=new K;return this._forEachBlocksInRange(0,this.displayValue.length,s=>t.aggregate(s.pad(e))),t}}V2.DEFAULTS={...B2.DEFAULTS,lazy:!0,placeholderChar:"_"},V2.STOP_CHAR="`",V2.ESCAPE_CHAR="\\",V2.InputDefinition=z0,V2.FixedDefinition=Ze,j.MaskedPattern=V2;class N0 extends V2{get _matchFrom(){return this.maxLength-String(this.from).length}constructor(e){super(e)}updateOptions(e){super.updateOptions(e)}_update(e){const{to:t=this.to||0,from:s=this.from||0,maxLength:n=this.maxLength||0,autofix:i=this.autofix,...o}=e;this.to=t,this.from=s,this.maxLength=Math.max(String(t).length,n),this.autofix=i;const l=String(this.from).padStart(this.maxLength,"0"),d=String(this.to).padStart(this.maxLength,"0");let h=0;for(;h<d.length&&d[h]===l[h];)++h;o.mask=d.slice(0,h).replace(/0/g,"\\0")+"0".repeat(this.maxLength-h),super._update(o)}get isComplete(){return super.isComplete&&!!this.value}boundaries(e){let t="",s="";const[,n,i]=e.match(/^(\D*)(\d*)(\D*)/)||[];return i&&(t="0".repeat(n.length)+i,s="9".repeat(n.length)+i),t=t.padEnd(this.maxLength,"0"),s=s.padEnd(this.maxLength,"9"),[t,s]}doPrepareChar(e,t){t===void 0&&(t={});let s;return[e,s]=super.doPrepareChar(e.replace(/\D/g,""),t),e||(s.skip=!this.isComplete),[e,s]}_appendCharRaw(e,t){if(t===void 0&&(t={}),!this.autofix||this.value.length+1>this.maxLength)return super._appendCharRaw(e,t);const s=String(this.from).padStart(this.maxLength,"0"),n=String(this.to).padStart(this.maxLength,"0"),[i,o]=this.boundaries(this.value+e);return Number(o)<this.from?super._appendCharRaw(s[this.value.length],t):Number(i)>this.to?!t.tail&&this.autofix==="pad"&&this.value.length+1<this.maxLength?super._appendCharRaw(s[this.value.length],t).aggregate(this._appendCharRaw(e,t)):super._appendCharRaw(n[this.value.length],t):super._appendCharRaw(e,t)}doValidate(e){const t=this.value;if(t.search(/[^0]/)===-1&&t.length<=this._matchFrom)return!0;const[n,i]=this.boundaries(t);return this.from<=Number(i)&&Number(n)<=this.to&&super.doValidate(e)}pad(e){const t=new K;if(this.value.length===this.maxLength)return t;const s=this.value,n=this.maxLength-this.value.length;if(n){this.reset();for(let i=0;i<n;++i)t.aggregate(super._appendCharRaw("0",e));s.split("").forEach(i=>this._appendCharRaw(i))}return t}}j.MaskedRange=N0;const cs="d{.}`m{.}`Y";class e0 extends V2{static extractPatternOptions(e){const{mask:t,pattern:s,...n}=e;return{...n,mask:r0(t)?t:s}}constructor(e){super(e0.extractPatternOptions({...e0.DEFAULTS,...e}))}updateOptions(e){super.updateOptions(e)}_update(e){const{mask:t,pattern:s,blocks:n,...i}={...e0.DEFAULTS,...e},o=Object.assign({},e0.GET_DEFAULT_BLOCKS());e.min&&(o.Y.from=e.min.getFullYear()),e.max&&(o.Y.to=e.max.getFullYear()),e.min&&e.max&&o.Y.from===o.Y.to&&(o.m.from=e.min.getMonth()+1,o.m.to=e.max.getMonth()+1,o.m.from===o.m.to&&(o.d.from=e.min.getDate(),o.d.to=e.max.getDate())),Object.assign(o,this.blocks,n),super._update({...i,mask:r0(t)?t:s,blocks:o})}doValidate(e){const t=this.date;return super.doValidate(e)&&(!this.isComplete||this.isDateExist(this.value)&&t!=null&&(this.min==null||this.min<=t)&&(this.max==null||t<=this.max))}isDateExist(e){return this.format(this.parse(e,this),this).indexOf(e)>=0}get date(){return this.typedValue}set date(e){this.typedValue=e}get typedValue(){return this.isComplete?super.typedValue:null}set typedValue(e){super.typedValue=e}maskEquals(e){return e===Date||super.maskEquals(e)}optionsIsChanged(e){return super.optionsIsChanged(e0.extractPatternOptions(e))}}e0.GET_DEFAULT_BLOCKS=()=>({d:{mask:N0,from:1,to:31,maxLength:2},m:{mask:N0,from:1,to:12,maxLength:2},Y:{mask:N0,from:1900,to:9999}}),e0.DEFAULTS={...V2.DEFAULTS,mask:Date,pattern:cs,format:(r,e)=>{if(!r)return"";const t=String(r.getDate()).padStart(2,"0"),s=String(r.getMonth()+1).padStart(2,"0"),n=r.getFullYear();return[t,s,n].join(".")},parse:(r,e)=>{const[t,s,n]=r.split(".").map(Number);return new Date(n,s-1,t)}},j.MaskedDate=e0;class P0 extends B2{constructor(e){super({...P0.DEFAULTS,...e}),this.currentMask=void 0}updateOptions(e){super.updateOptions(e)}_update(e){super._update(e),"mask"in e&&(this.exposeMask=void 0,this.compiledMasks=Array.isArray(e.mask)?e.mask.map(t=>{const{expose:s,...n}=E0(t),i=$2({overwrite:this._overwrite,eager:this._eager,skipInvalid:this._skipInvalid,...n});return s&&(this.exposeMask=i),i}):[])}_appendCharRaw(e,t){t===void 0&&(t={});const s=this._applyDispatch(e,t);return this.currentMask&&s.aggregate(this.currentMask._appendChar(e,this.currentMaskFlags(t))),s}_applyDispatch(e,t,s){e===void 0&&(e=""),t===void 0&&(t={}),s===void 0&&(s="");const n=t.tail&&t._beforeTailState!=null?t._beforeTailState._value:this.value,i=this.rawInputValue,o=t.tail&&t._beforeTailState!=null?t._beforeTailState._rawInputValue:i,l=i.slice(o.length),d=this.currentMask,h=new K,f=d==null?void 0:d.state;return this.currentMask=this.doDispatch(e,{...t},s),this.currentMask&&(this.currentMask!==d?(this.currentMask.reset(),o&&(this.currentMask.append(o,{raw:!0}),h.tailShift=this.currentMask.value.length-n.length),l&&(h.tailShift+=this.currentMask.append(l,{raw:!0,tail:!0}).tailShift)):f&&(this.currentMask.state=f)),h}_appendPlaceholder(){const e=this._applyDispatch();return this.currentMask&&e.aggregate(this.currentMask._appendPlaceholder()),e}_appendEager(){const e=this._applyDispatch();return this.currentMask&&e.aggregate(this.currentMask._appendEager()),e}appendTail(e){const t=new K;return e&&t.aggregate(this._applyDispatch("",{},e)),t.aggregate(this.currentMask?this.currentMask.appendTail(e):super.appendTail(e))}currentMaskFlags(e){var t,s;return{...e,_beforeTailState:((t=e._beforeTailState)==null?void 0:t.currentMaskRef)===this.currentMask&&((s=e._beforeTailState)==null?void 0:s.currentMask)||e._beforeTailState}}doDispatch(e,t,s){return t===void 0&&(t={}),s===void 0&&(s=""),this.dispatch(e,this,t,s)}doValidate(e){return super.doValidate(e)&&(!this.currentMask||this.currentMask.doValidate(this.currentMaskFlags(e)))}doPrepare(e,t){t===void 0&&(t={});let[s,n]=super.doPrepare(e,t);if(this.currentMask){let i;[s,i]=super.doPrepare(s,this.currentMaskFlags(t)),n=n.aggregate(i)}return[s,n]}doPrepareChar(e,t){t===void 0&&(t={});let[s,n]=super.doPrepareChar(e,t);if(this.currentMask){let i;[s,i]=super.doPrepareChar(s,this.currentMaskFlags(t)),n=n.aggregate(i)}return[s,n]}reset(){var e;(e=this.currentMask)==null||e.reset(),this.compiledMasks.forEach(t=>t.reset())}get value(){return this.exposeMask?this.exposeMask.value:this.currentMask?this.currentMask.value:""}set value(e){this.exposeMask?(this.exposeMask.value=e,this.currentMask=this.exposeMask,this._applyDispatch()):super.value=e}get unmaskedValue(){return this.exposeMask?this.exposeMask.unmaskedValue:this.currentMask?this.currentMask.unmaskedValue:""}set unmaskedValue(e){this.exposeMask?(this.exposeMask.unmaskedValue=e,this.currentMask=this.exposeMask,this._applyDispatch()):super.unmaskedValue=e}get typedValue(){return this.exposeMask?this.exposeMask.typedValue:this.currentMask?this.currentMask.typedValue:""}set typedValue(e){if(this.exposeMask){this.exposeMask.typedValue=e,this.currentMask=this.exposeMask,this._applyDispatch();return}let t=String(e);this.currentMask&&(this.currentMask.typedValue=e,t=this.currentMask.unmaskedValue),this.unmaskedValue=t}get displayValue(){return this.currentMask?this.currentMask.displayValue:""}get isComplete(){var e;return!!((e=this.currentMask)!=null&&e.isComplete)}get isFilled(){var e;return!!((e=this.currentMask)!=null&&e.isFilled)}remove(e,t){const s=new K;return this.currentMask&&s.aggregate(this.currentMask.remove(e,t)).aggregate(this._applyDispatch()),s}get state(){var e;return{...super.state,_rawInputValue:this.rawInputValue,compiledMasks:this.compiledMasks.map(t=>t.state),currentMaskRef:this.currentMask,currentMask:(e=this.currentMask)==null?void 0:e.state}}set state(e){const{compiledMasks:t,currentMaskRef:s,currentMask:n,...i}=e;t&&this.compiledMasks.forEach((o,l)=>o.state=t[l]),s!=null&&(this.currentMask=s,this.currentMask.state=n),super.state=i}extractInput(e,t,s){return this.currentMask?this.currentMask.extractInput(e,t,s):""}extractTail(e,t){return this.currentMask?this.currentMask.extractTail(e,t):super.extractTail(e,t)}doCommit(){this.currentMask&&this.currentMask.doCommit(),super.doCommit()}nearestInputPos(e,t){return this.currentMask?this.currentMask.nearestInputPos(e,t):super.nearestInputPos(e,t)}get overwrite(){return this.currentMask?this.currentMask.overwrite:this._overwrite}set overwrite(e){this._overwrite=e}get eager(){return this.currentMask?this.currentMask.eager:this._eager}set eager(e){this._eager=e}get skipInvalid(){return this.currentMask?this.currentMask.skipInvalid:this._skipInvalid}set skipInvalid(e){this._skipInvalid=e}get autofix(){return this.currentMask?this.currentMask.autofix:this._autofix}set autofix(e){this._autofix=e}maskEquals(e){return Array.isArray(e)?this.compiledMasks.every((t,s)=>{if(!e[s])return;const{mask:n,...i}=e[s];return D0(t,i)&&t.maskEquals(n)}):super.maskEquals(e)}typedValueEquals(e){var t;return!!((t=this.currentMask)!=null&&t.typedValueEquals(e))}}P0.DEFAULTS={...B2.DEFAULTS,dispatch:(r,e,t,s)=>{if(!e.compiledMasks.length)return;const n=e.rawInputValue,i=e.compiledMasks.map((o,l)=>{const d=e.currentMask===o,h=d?o.displayValue.length:o.nearestInputPos(o.displayValue.length,O.FORCE_LEFT);return o.rawInputValue!==n?(o.reset(),o.append(n,{raw:!0})):d||o.remove(h),o.append(r,e.currentMaskFlags(t)),o.appendTail(s),{index:l,weight:o.rawInputValue.length,totalInputPositions:o.totalInputPositions(0,Math.max(h,o.nearestInputPos(o.displayValue.length,O.FORCE_LEFT)))}});return i.sort((o,l)=>l.weight-o.weight||l.totalInputPositions-o.totalInputPositions),e.compiledMasks[i[0].index]}},j.MaskedDynamic=P0;class H0 extends V2{constructor(e){super({...H0.DEFAULTS,...e})}updateOptions(e){super.updateOptions(e)}_update(e){const{enum:t,...s}=e;if(t){const n=t.map(l=>l.length),i=Math.min(...n),o=Math.max(...n)-i;s.mask="*".repeat(i),o&&(s.mask+="["+"*".repeat(o)+"]"),this.enum=t}super._update(s)}_appendCharRaw(e,t){t===void 0&&(t={});const s=Math.min(this.nearestInputPos(0,O.FORCE_RIGHT),this.value.length),n=this.enum.filter(i=>this.matchValue(i,this.unmaskedValue+e,s));if(n.length){n.length===1&&this._forEachBlocksInRange(0,this.value.length,(o,l)=>{const d=n[0][l];l>=this.value.length||d===o.value||(o.reset(),o._appendChar(d,t))});const i=super._appendCharRaw(n[0][this.value.length],t);return n.length===1&&n[0].slice(this.unmaskedValue.length).split("").forEach(o=>i.aggregate(super._appendCharRaw(o))),i}return new K({skip:!this.isComplete})}extractTail(e,t){return e===void 0&&(e=0),t===void 0&&(t=this.displayValue.length),new R2("",e)}remove(e,t){if(e===void 0&&(e=0),t===void 0&&(t=this.displayValue.length),e===t)return new K;const s=Math.min(super.nearestInputPos(0,O.FORCE_RIGHT),this.value.length);let n;for(n=e;n>=0&&!(this.enum.filter(l=>this.matchValue(l,this.value.slice(s,n),s)).length>1);--n);const i=super.remove(n,t);return i.tailShift+=n-e,i}get isComplete(){return this.enum.indexOf(this.value)>=0}}H0.DEFAULTS={...V2.DEFAULTS,matchValue:(r,e,t)=>r.indexOf(e,t)===t},j.MaskedEnum=H0;class us extends B2{updateOptions(e){super.updateOptions(e)}_update(e){super._update({...e,validate:e.mask})}}j.MaskedFunction=us;var Ue;class N2 extends B2{constructor(e){super({...N2.DEFAULTS,...e})}updateOptions(e){super.updateOptions(e)}_update(e){super._update(e),this._updateRegExps()}_updateRegExps(){const e="^"+(this.allowNegative?"[+|\\-]?":""),t="\\d*",s=(this.scale?"("+ne(this.radix)+"\\d{0,"+this.scale+"})?":"")+"$";this._numberRegExp=new RegExp(e+t+s),this._mapToRadixRegExp=new RegExp("["+this.mapToRadix.map(ne).join("")+"]","g"),this._thousandsSeparatorRegExp=new RegExp(ne(this.thousandsSeparator),"g")}_removeThousandsSeparators(e){return e.replace(this._thousandsSeparatorRegExp,"")}_insertThousandsSeparators(e){const t=e.split(this.radix);return t[0]=t[0].replace(/\B(?=(\d{3})+(?!\d))/g,this.thousandsSeparator),t.join(this.radix)}doPrepareChar(e,t){t===void 0&&(t={});const[s,n]=super.doPrepareChar(this._removeThousandsSeparators(this.scale&&this.mapToRadix.length&&(t.input&&t.raw||!t.input&&!t.raw)?e.replace(this._mapToRadixRegExp,this.radix):e),t);return e&&!s&&(n.skip=!0),s&&!this.allowPositive&&!this.value&&s!=="-"&&n.aggregate(this._appendChar("-")),[s,n]}_separatorsCount(e,t){t===void 0&&(t=!1);let s=0;for(let n=0;n<e;++n)this._value.indexOf(this.thousandsSeparator,n)===n&&(++s,t&&(e+=this.thousandsSeparator.length));return s}_separatorsCountFromSlice(e){return e===void 0&&(e=this._value),this._separatorsCount(this._removeThousandsSeparators(e).length,!0)}extractInput(e,t,s){return e===void 0&&(e=0),t===void 0&&(t=this.displayValue.length),[e,t]=this._adjustRangeWithSeparators(e,t),this._removeThousandsSeparators(super.extractInput(e,t,s))}_appendCharRaw(e,t){t===void 0&&(t={});const s=t.tail&&t._beforeTailState?t._beforeTailState._value:this._value,n=this._separatorsCountFromSlice(s);this._value=this._removeThousandsSeparators(this.value);const i=this._value;this._value+=e;const o=this.number;let l=!isNaN(o),d=!1;if(l){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(N2.UNMASKED_RADIX,this.radix),d||(d=i===this._value&&!t.tail)):l=!1),l&&(l=!!this._value.match(this._numberRegExp))}let h;l?h=new K({inserted:this._value.slice(i.length),rawInserted:d?"":e,skip:d}):(this._value=i,h=new K),this._value=this._insertThousandsSeparators(this._value);const f=t.tail&&t._beforeTailState?t._beforeTailState._value:this._value,p=this._separatorsCountFromSlice(f);return h.tailShift+=(p-n)*this.thousandsSeparator.length,h}_findSeparatorAround(e){if(this.thousandsSeparator){const t=e-this.thousandsSeparator.length+1,s=this.value.indexOf(this.thousandsSeparator,t);if(s<=e)return s}return-1}_adjustRangeWithSeparators(e,t){const s=this._findSeparatorAround(e);s>=0&&(e=s);const n=this._findSeparatorAround(t);return n>=0&&(t=n+this.thousandsSeparator.length),[e,t]}remove(e,t){e===void 0&&(e=0),t===void 0&&(t=this.displayValue.length),[e,t]=this._adjustRangeWithSeparators(e,t);const s=this.value.slice(0,e),n=this.value.slice(t),i=this._separatorsCount(s.length);this._value=this._insertThousandsSeparators(this._removeThousandsSeparators(s+n));const o=this._separatorsCountFromSlice(s);return new K({tailShift:(o-i)*this.thousandsSeparator.length})}nearestInputPos(e,t){if(!this.thousandsSeparator)return e;switch(t){case O.NONE:case O.LEFT:case O.FORCE_LEFT:{const s=this._findSeparatorAround(e-1);if(s>=0){const n=s+this.thousandsSeparator.length;if(e<n||this.value.length<=n||t===O.FORCE_LEFT)return s}break}case O.RIGHT:case O.FORCE_RIGHT:{const s=this._findSeparatorAround(e);if(s>=0)return s+this.thousandsSeparator.length}}return e}doCommit(){if(this.value){const e=this.number;let t=e;this.min!=null&&(t=Math.max(t,this.min)),this.max!=null&&(t=Math.min(t,this.max)),t!==e&&(this.unmaskedValue=this.format(t,this));let s=this.value;this.normalizeZeros&&(s=this._normalizeZeros(s)),this.padFractionalZeros&&this.scale>0&&(s=this._padFractionalZeros(s)),this._value=s}super.doCommit()}_normalizeZeros(e){const t=this._removeThousandsSeparators(e).split(this.radix);return t[0]=t[0].replace(/^(\D*)(0*)(\d*)/,(s,n,i,o)=>n+o),e.length&&!/\d$/.test(t[0])&&(t[0]=t[0]+"0"),t.length>1&&(t[1]=t[1].replace(/0*$/,""),t[1].length||(t.length=1)),this._insertThousandsSeparators(t.join(this.radix))}_padFractionalZeros(e){if(!e)return e;const t=e.split(this.radix);return t.length<2&&t.push(""),t[1]=t[1].padEnd(this.scale,"0"),t.join(this.radix)}doSkipInvalid(e,t,s){t===void 0&&(t={});const n=this.scale===0&&e!==this.thousandsSeparator&&(e===this.radix||e===N2.UNMASKED_RADIX||this.mapToRadix.includes(e));return super.doSkipInvalid(e,t,s)&&!n}get unmaskedValue(){return this._removeThousandsSeparators(this._normalizeZeros(this.value)).replace(this.radix,N2.UNMASKED_RADIX)}set unmaskedValue(e){super.unmaskedValue=e}get typedValue(){return this.parse(this.unmaskedValue,this)}set typedValue(e){this.rawInputValue=this.format(e,this).replace(N2.UNMASKED_RADIX,this.radix)}get number(){return this.typedValue}set number(e){this.typedValue=e}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(e){return(super.typedValueEquals(e)||N2.EMPTY_VALUES.includes(e)&&N2.EMPTY_VALUES.includes(this.typedValue))&&!(e===0&&this.value==="")}}Ue=N2,N2.UNMASKED_RADIX=".",N2.EMPTY_VALUES=[...B2.EMPTY_VALUES,0],N2.DEFAULTS={...B2.DEFAULTS,mask:Number,radix:",",thousandsSeparator:"",mapToRadix:[Ue.UNMASKED_RADIX],min:Number.MIN_SAFE_INTEGER,max:Number.MAX_SAFE_INTEGER,scale:2,normalizeZeros:!0,padFractionalZeros:!1,parse:Number,format:r=>r.toLocaleString("en-US",{useGrouping:!1,maximumFractionDigits:20})},j.MaskedNumber=N2;const oe={MASKED:"value",UNMASKED:"unmaskedValue",TYPED:"typedValue"};function qe(r,e,t){e===void 0&&(e=oe.MASKED),t===void 0&&(t=oe.MASKED);const s=$2(r);return n=>s.runIsolated(i=>(i[e]=n,i[t]))}function ds(r,e,t,s){return qe(e,t,s)(r)}j.PIPE_TYPE=oe,j.createPipe=qe,j.pipe=ds;class hs extends V2{get repeatFrom(){var e;return(e=Array.isArray(this.repeat)?this.repeat[0]:this.repeat===1/0?0:this.repeat)!=null?e:0}get repeatTo(){var e;return(e=Array.isArray(this.repeat)?this.repeat[1]:this.repeat)!=null?e:1/0}constructor(e){super(e)}updateOptions(e){super.updateOptions(e)}_update(e){var t,s,n;const{repeat:i,...o}=E0(e);this._blockOpts=Object.assign({},this._blockOpts,o);const l=$2(this._blockOpts);this.repeat=(t=(s=i??l.repeat)!=null?s:this.repeat)!=null?t:1/0,super._update({mask:"m".repeat(Math.max(this.repeatTo===1/0&&((n=this._blocks)==null?void 0:n.length)||0,this.repeatFrom)),blocks:{m:l},eager:l.eager,overwrite:l.overwrite,skipInvalid:l.skipInvalid,lazy:l.lazy,placeholderChar:l.placeholderChar,displayChar:l.displayChar})}_allocateBlock(e){if(e<this._blocks.length)return this._blocks[e];if(this.repeatTo===1/0||this._blocks.length<this.repeatTo)return this._blocks.push($2(this._blockOpts)),this.mask+="m",this._blocks[this._blocks.length-1]}_appendCharRaw(e,t){t===void 0&&(t={});const s=new K;for(let d=(n=(i=this._mapPosToBlock(this.displayValue.length))==null?void 0:i.index)!=null?n:Math.max(this._blocks.length-1,0),h,f;h=(o=this._blocks[d])!=null?o:f=!f&&this._allocateBlock(d);++d){var n,i,o,l;const p=h._appendChar(e,{...t,_beforeTailState:(l=t._beforeTailState)==null||(l=l._blocks)==null?void 0:l[d]});if(p.skip&&f){this._blocks.pop(),this.mask=this.mask.slice(1);break}if(s.aggregate(p),p.consumed)break}return s}_trimEmptyTail(e,t){var s,n;e===void 0&&(e=0);const i=Math.max(((s=this._mapPosToBlock(e))==null?void 0:s.index)||0,this.repeatFrom,0);let o;t!=null&&(o=(n=this._mapPosToBlock(t))==null?void 0:n.index),o==null&&(o=this._blocks.length-1);let l=0;for(let d=o;i<=d&&!this._blocks[d].unmaskedValue;--d,++l);l&&(this._blocks.splice(o-l+1,l),this.mask=this.mask.slice(l))}reset(){super.reset(),this._trimEmptyTail()}remove(e,t){e===void 0&&(e=0),t===void 0&&(t=this.displayValue.length);const s=super.remove(e,t);return this._trimEmptyTail(e,t),s}totalInputPositions(e,t){return e===void 0&&(e=0),t==null&&this.repeatTo===1/0?1/0:super.totalInputPositions(e,t)}get state(){return super.state}set state(e){this._blocks.length=e._blocks.length,this.mask=this.mask.slice(0,this._blocks.length),super.state=e}}j.RepeatBlock=hs;try{globalThis.IMask=j}catch{}var le={exports:{}},W0={exports:{}},h2={};/** @license React v16.13.1
6
- * react-is.production.min.js
7
- *
8
- * Copyright (c) Facebook, Inc. and its affiliates.
9
- *
10
- * This source code is licensed under the MIT license found in the
11
- * LICENSE file in the root directory of this source tree.
12
- */var Ge;function ps(){if(Ge)return h2;Ge=1;var r=typeof Symbol=="function"&&Symbol.for,e=r?Symbol.for("react.element"):60103,t=r?Symbol.for("react.portal"):60106,s=r?Symbol.for("react.fragment"):60107,n=r?Symbol.for("react.strict_mode"):60108,i=r?Symbol.for("react.profiler"):60114,o=r?Symbol.for("react.provider"):60109,l=r?Symbol.for("react.context"):60110,d=r?Symbol.for("react.async_mode"):60111,h=r?Symbol.for("react.concurrent_mode"):60111,f=r?Symbol.for("react.forward_ref"):60112,p=r?Symbol.for("react.suspense"):60113,m=r?Symbol.for("react.suspense_list"):60120,b=r?Symbol.for("react.memo"):60115,y=r?Symbol.for("react.lazy"):60116,S=r?Symbol.for("react.block"):60121,E=r?Symbol.for("react.fundamental"):60117,I=r?Symbol.for("react.responder"):60118,V=r?Symbol.for("react.scope"):60119;function z(v){if(typeof v=="object"&&v!==null){var G=v.$$typeof;switch(G){case e:switch(v=v.type,v){case d:case h:case s:case i:case n:case p:return v;default:switch(v=v&&v.$$typeof,v){case l:case f:case y:case b:case o:return v;default:return G}}case t:return G}}}function T(v){return z(v)===h}return h2.AsyncMode=d,h2.ConcurrentMode=h,h2.ContextConsumer=l,h2.ContextProvider=o,h2.Element=e,h2.ForwardRef=f,h2.Fragment=s,h2.Lazy=y,h2.Memo=b,h2.Portal=t,h2.Profiler=i,h2.StrictMode=n,h2.Suspense=p,h2.isAsyncMode=function(v){return T(v)||z(v)===d},h2.isConcurrentMode=T,h2.isContextConsumer=function(v){return z(v)===l},h2.isContextProvider=function(v){return z(v)===o},h2.isElement=function(v){return typeof v=="object"&&v!==null&&v.$$typeof===e},h2.isForwardRef=function(v){return z(v)===f},h2.isFragment=function(v){return z(v)===s},h2.isLazy=function(v){return z(v)===y},h2.isMemo=function(v){return z(v)===b},h2.isPortal=function(v){return z(v)===t},h2.isProfiler=function(v){return z(v)===i},h2.isStrictMode=function(v){return z(v)===n},h2.isSuspense=function(v){return z(v)===p},h2.isValidElementType=function(v){return typeof v=="string"||typeof v=="function"||v===s||v===h||v===i||v===n||v===p||v===m||typeof v=="object"&&v!==null&&(v.$$typeof===y||v.$$typeof===b||v.$$typeof===o||v.$$typeof===l||v.$$typeof===f||v.$$typeof===E||v.$$typeof===I||v.$$typeof===V||v.$$typeof===S)},h2.typeOf=z,h2}var p2={};/** @license React v16.13.1
13
- * react-is.development.js
14
- *
15
- * Copyright (c) Facebook, Inc. and its affiliates.
16
- *
17
- * This source code is licensed under the MIT license found in the
18
- * LICENSE file in the root directory of this source tree.
19
- */var Xe;function fs(){return Xe||(Xe=1,process.env.NODE_ENV!=="production"&&function(){var r=typeof Symbol=="function"&&Symbol.for,e=r?Symbol.for("react.element"):60103,t=r?Symbol.for("react.portal"):60106,s=r?Symbol.for("react.fragment"):60107,n=r?Symbol.for("react.strict_mode"):60108,i=r?Symbol.for("react.profiler"):60114,o=r?Symbol.for("react.provider"):60109,l=r?Symbol.for("react.context"):60110,d=r?Symbol.for("react.async_mode"):60111,h=r?Symbol.for("react.concurrent_mode"):60111,f=r?Symbol.for("react.forward_ref"):60112,p=r?Symbol.for("react.suspense"):60113,m=r?Symbol.for("react.suspense_list"):60120,b=r?Symbol.for("react.memo"):60115,y=r?Symbol.for("react.lazy"):60116,S=r?Symbol.for("react.block"):60121,E=r?Symbol.for("react.fundamental"):60117,I=r?Symbol.for("react.responder"):60118,V=r?Symbol.for("react.scope"):60119;function z(A){return typeof A=="string"||typeof A=="function"||A===s||A===h||A===i||A===n||A===p||A===m||typeof A=="object"&&A!==null&&(A.$$typeof===y||A.$$typeof===b||A.$$typeof===o||A.$$typeof===l||A.$$typeof===f||A.$$typeof===E||A.$$typeof===I||A.$$typeof===V||A.$$typeof===S)}function T(A){if(typeof A=="object"&&A!==null){var P2=A.$$typeof;switch(P2){case e:var d0=A.type;switch(d0){case d:case h:case s:case i:case n:case p:return d0;default:var Be=d0&&d0.$$typeof;switch(Be){case l:case f:case y:case b:case o:return Be;default:return P2}}case t:return P2}}}var v=d,G=h,_2=l,o2=o,Z=e,X=f,e2=s,L=y,H=b,W=t,Y=i,n2=n,U=p,u2=!1;function m2(A){return u2||(u2=!0,console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")),k(A)||T(A)===d}function k(A){return T(A)===h}function B(A){return T(A)===l}function Q(A){return T(A)===o}function R(A){return typeof A=="object"&&A!==null&&A.$$typeof===e}function P(A){return T(A)===f}function t2(A){return T(A)===s}function q(A){return T(A)===y}function $(A){return T(A)===b}function r2(A){return T(A)===t}function c2(A){return T(A)===i}function a2(A){return T(A)===n}function M2(A){return T(A)===p}p2.AsyncMode=v,p2.ConcurrentMode=G,p2.ContextConsumer=_2,p2.ContextProvider=o2,p2.Element=Z,p2.ForwardRef=X,p2.Fragment=e2,p2.Lazy=L,p2.Memo=H,p2.Portal=W,p2.Profiler=Y,p2.StrictMode=n2,p2.Suspense=U,p2.isAsyncMode=m2,p2.isConcurrentMode=k,p2.isContextConsumer=B,p2.isContextProvider=Q,p2.isElement=R,p2.isForwardRef=P,p2.isFragment=t2,p2.isLazy=q,p2.isMemo=$,p2.isPortal=r2,p2.isProfiler=c2,p2.isStrictMode=a2,p2.isSuspense=M2,p2.isValidElementType=z,p2.typeOf=T}()),p2}var Ye;function Re(){return Ye||(Ye=1,process.env.NODE_ENV==="production"?W0.exports=ps():W0.exports=fs()),W0.exports}/*
20
- object-assign
21
- (c) Sindre Sorhus
22
- @license MIT
23
- */var ce,Je;function Cs(){if(Je)return ce;Je=1;var r=Object.getOwnPropertySymbols,e=Object.prototype.hasOwnProperty,t=Object.prototype.propertyIsEnumerable;function s(i){if(i==null)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(i)}function n(){try{if(!Object.assign)return!1;var i=new String("abc");if(i[5]="de",Object.getOwnPropertyNames(i)[0]==="5")return!1;for(var o={},l=0;l<10;l++)o["_"+String.fromCharCode(l)]=l;var d=Object.getOwnPropertyNames(o).map(function(f){return o[f]});if(d.join("")!=="0123456789")return!1;var h={};return"abcdefghijklmnopqrst".split("").forEach(function(f){h[f]=f}),Object.keys(Object.assign({},h)).join("")==="abcdefghijklmnopqrst"}catch{return!1}}return ce=n()?Object.assign:function(i,o){for(var l,d=s(i),h,f=1;f<arguments.length;f++){l=Object(arguments[f]);for(var p in l)e.call(l,p)&&(d[p]=l[p]);if(r){h=r(l);for(var m=0;m<h.length;m++)t.call(l,h[m])&&(d[h[m]]=l[h[m]])}}return d},ce}var ue,Ke;function de(){if(Ke)return ue;Ke=1;var r="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED";return ue=r,ue}var he,Qe;function $e(){return Qe||(Qe=1,he=Function.call.bind(Object.prototype.hasOwnProperty)),he}var pe,et;function _s(){if(et)return pe;et=1;var r=function(){};if(process.env.NODE_ENV!=="production"){var e=de(),t={},s=$e();r=function(i){var o="Warning: "+i;typeof console<"u"&&console.error(o);try{throw new Error(o)}catch{}}}function n(i,o,l,d,h){if(process.env.NODE_ENV!=="production"){for(var f in i)if(s(i,f)){var p;try{if(typeof i[f]!="function"){var m=Error((d||"React class")+": "+l+" type `"+f+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+typeof i[f]+"`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");throw m.name="Invariant Violation",m}p=i[f](o,f,d,l,null,e)}catch(y){p=y}if(p&&!(p instanceof Error)&&r((d||"React class")+": type specification of "+l+" `"+f+"` is invalid; the type checker function must return `null` or an `Error` but returned a "+typeof p+". You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument)."),p instanceof Error&&!(p.message in t)){t[p.message]=!0;var b=h?h():"";r("Failed "+l+" type: "+p.message+(b??""))}}}}return n.resetWarningCache=function(){process.env.NODE_ENV!=="production"&&(t={})},pe=n,pe}var fe,tt;function ms(){if(tt)return fe;tt=1;var r=Re(),e=Cs(),t=de(),s=$e(),n=_s(),i=function(){};process.env.NODE_ENV!=="production"&&(i=function(l){var d="Warning: "+l;typeof console<"u"&&console.error(d);try{throw new Error(d)}catch{}});function o(){return null}return fe=function(l,d){var h=typeof Symbol=="function"&&Symbol.iterator,f="@@iterator";function p(k){var B=k&&(h&&k[h]||k[f]);if(typeof B=="function")return B}var m="<<anonymous>>",b={array:I("array"),bigint:I("bigint"),bool:I("boolean"),func:I("function"),number:I("number"),object:I("object"),string:I("string"),symbol:I("symbol"),any:V(),arrayOf:z,element:T(),elementType:v(),instanceOf:G,node:X(),objectOf:o2,oneOf:_2,oneOfType:Z,shape:L,exact:H};function y(k,B){return k===B?k!==0||1/k===1/B:k!==k&&B!==B}function S(k,B){this.message=k,this.data=B&&typeof B=="object"?B:{},this.stack=""}S.prototype=Error.prototype;function E(k){if(process.env.NODE_ENV!=="production")var B={},Q=0;function R(t2,q,$,r2,c2,a2,M2){if(r2=r2||m,a2=a2||$,M2!==t){if(d){var A=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types");throw A.name="Invariant Violation",A}else if(process.env.NODE_ENV!=="production"&&typeof console<"u"){var P2=r2+":"+$;!B[P2]&&Q<3&&(i("You are manually calling a React.PropTypes validation function for the `"+a2+"` prop on `"+r2+"`. This is deprecated and will throw in the standalone `prop-types` package. You may be seeing this warning due to a third-party PropTypes library. See https://fb.me/react-warning-dont-call-proptypes for details."),B[P2]=!0,Q++)}}return q[$]==null?t2?q[$]===null?new S("The "+c2+" `"+a2+"` is marked as required "+("in `"+r2+"`, but its value is `null`.")):new S("The "+c2+" `"+a2+"` is marked as required in "+("`"+r2+"`, but its value is `undefined`.")):null:k(q,$,r2,c2,a2)}var P=R.bind(null,!1);return P.isRequired=R.bind(null,!0),P}function I(k){function B(Q,R,P,t2,q,$){var r2=Q[R],c2=n2(r2);if(c2!==k){var a2=U(r2);return new S("Invalid "+t2+" `"+q+"` of type "+("`"+a2+"` supplied to `"+P+"`, expected ")+("`"+k+"`."),{expectedType:k})}return null}return E(B)}function V(){return E(o)}function z(k){function B(Q,R,P,t2,q){if(typeof k!="function")return new S("Property `"+q+"` of component `"+P+"` has invalid PropType notation inside arrayOf.");var $=Q[R];if(!Array.isArray($)){var r2=n2($);return new S("Invalid "+t2+" `"+q+"` of type "+("`"+r2+"` supplied to `"+P+"`, expected an array."))}for(var c2=0;c2<$.length;c2++){var a2=k($,c2,P,t2,q+"["+c2+"]",t);if(a2 instanceof Error)return a2}return null}return E(B)}function T(){function k(B,Q,R,P,t2){var q=B[Q];if(!l(q)){var $=n2(q);return new S("Invalid "+P+" `"+t2+"` of type "+("`"+$+"` supplied to `"+R+"`, expected a single ReactElement."))}return null}return E(k)}function v(){function k(B,Q,R,P,t2){var q=B[Q];if(!r.isValidElementType(q)){var $=n2(q);return new S("Invalid "+P+" `"+t2+"` of type "+("`"+$+"` supplied to `"+R+"`, expected a single ReactElement type."))}return null}return E(k)}function G(k){function B(Q,R,P,t2,q){if(!(Q[R]instanceof k)){var $=k.name||m,r2=m2(Q[R]);return new S("Invalid "+t2+" `"+q+"` of type "+("`"+r2+"` supplied to `"+P+"`, expected ")+("instance of `"+$+"`."))}return null}return E(B)}function _2(k){if(!Array.isArray(k))return process.env.NODE_ENV!=="production"&&(arguments.length>1?i("Invalid arguments supplied to oneOf, expected an array, got "+arguments.length+" arguments. A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z])."):i("Invalid argument supplied to oneOf, expected an array.")),o;function B(Q,R,P,t2,q){for(var $=Q[R],r2=0;r2<k.length;r2++)if(y($,k[r2]))return null;var c2=JSON.stringify(k,function(M2,A){var P2=U(A);return P2==="symbol"?String(A):A});return new S("Invalid "+t2+" `"+q+"` of value `"+String($)+"` "+("supplied to `"+P+"`, expected one of "+c2+"."))}return E(B)}function o2(k){function B(Q,R,P,t2,q){if(typeof k!="function")return new S("Property `"+q+"` of component `"+P+"` has invalid PropType notation inside objectOf.");var $=Q[R],r2=n2($);if(r2!=="object")return new S("Invalid "+t2+" `"+q+"` of type "+("`"+r2+"` supplied to `"+P+"`, expected an object."));for(var c2 in $)if(s($,c2)){var a2=k($,c2,P,t2,q+"."+c2,t);if(a2 instanceof Error)return a2}return null}return E(B)}function Z(k){if(!Array.isArray(k))return process.env.NODE_ENV!=="production"&&i("Invalid argument supplied to oneOfType, expected an instance of array."),o;for(var B=0;B<k.length;B++){var Q=k[B];if(typeof Q!="function")return i("Invalid argument supplied to oneOfType. Expected an array of check functions, but received "+u2(Q)+" at index "+B+"."),o}function R(P,t2,q,$,r2){for(var c2=[],a2=0;a2<k.length;a2++){var M2=k[a2],A=M2(P,t2,q,$,r2,t);if(A==null)return null;A.data&&s(A.data,"expectedType")&&c2.push(A.data.expectedType)}var P2=c2.length>0?", expected one of type ["+c2.join(", ")+"]":"";return new S("Invalid "+$+" `"+r2+"` supplied to "+("`"+q+"`"+P2+"."))}return E(R)}function X(){function k(B,Q,R,P,t2){return W(B[Q])?null:new S("Invalid "+P+" `"+t2+"` supplied to "+("`"+R+"`, expected a ReactNode."))}return E(k)}function e2(k,B,Q,R,P){return new S((k||"React class")+": "+B+" type `"+Q+"."+R+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+P+"`.")}function L(k){function B(Q,R,P,t2,q){var $=Q[R],r2=n2($);if(r2!=="object")return new S("Invalid "+t2+" `"+q+"` of type `"+r2+"` "+("supplied to `"+P+"`, expected `object`."));for(var c2 in k){var a2=k[c2];if(typeof a2!="function")return e2(P,t2,q,c2,U(a2));var M2=a2($,c2,P,t2,q+"."+c2,t);if(M2)return M2}return null}return E(B)}function H(k){function B(Q,R,P,t2,q){var $=Q[R],r2=n2($);if(r2!=="object")return new S("Invalid "+t2+" `"+q+"` of type `"+r2+"` "+("supplied to `"+P+"`, expected `object`."));var c2=e({},Q[R],k);for(var a2 in c2){var M2=k[a2];if(s(k,a2)&&typeof M2!="function")return e2(P,t2,q,a2,U(M2));if(!M2)return new S("Invalid "+t2+" `"+q+"` key `"+a2+"` supplied to `"+P+"`.\nBad object: "+JSON.stringify(Q[R],null," ")+`
24
- Valid keys: `+JSON.stringify(Object.keys(k),null," "));var A=M2($,a2,P,t2,q+"."+a2,t);if(A)return A}return null}return E(B)}function W(k){switch(typeof k){case"number":case"string":case"undefined":return!0;case"boolean":return!k;case"object":if(Array.isArray(k))return k.every(W);if(k===null||l(k))return!0;var B=p(k);if(B){var Q=B.call(k),R;if(B!==k.entries){for(;!(R=Q.next()).done;)if(!W(R.value))return!1}else for(;!(R=Q.next()).done;){var P=R.value;if(P&&!W(P[1]))return!1}}else return!1;return!0;default:return!1}}function Y(k,B){return k==="symbol"?!0:B?B["@@toStringTag"]==="Symbol"||typeof Symbol=="function"&&B instanceof Symbol:!1}function n2(k){var B=typeof k;return Array.isArray(k)?"array":k instanceof RegExp?"object":Y(B,k)?"symbol":B}function U(k){if(typeof k>"u"||k===null)return""+k;var B=n2(k);if(B==="object"){if(k instanceof Date)return"date";if(k instanceof RegExp)return"regexp"}return B}function u2(k){var B=U(k);switch(B){case"array":case"object":return"an "+B;case"boolean":case"date":case"regexp":return"a "+B;default:return B}}function m2(k){return!k.constructor||!k.constructor.name?m:k.constructor.name}return b.checkPropTypes=n,b.resetWarningCache=n.resetWarningCache,b.PropTypes=b,b},fe}var Ce,rt;function gs(){if(rt)return Ce;rt=1;var r=de();function e(){}function t(){}return t.resetWarningCache=e,Ce=function(){function s(o,l,d,h,f,p){if(p!==r){var m=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw m.name="Invariant Violation",m}}s.isRequired=s;function n(){return s}var i={array:s,bigint:s,bool:s,func:s,number:s,object:s,string:s,symbol:s,any:s,arrayOf:n,element:s,elementType:s,instanceOf:n,node:s,objectOf:n,oneOf:n,oneOfType:n,shape:n,exact:n,checkPropTypes:t,resetWarningCache:e};return i.PropTypes=i,i},Ce}if(process.env.NODE_ENV!=="production"){var vs=Re(),ks=!0;le.exports=ms()(vs.isElement,ks)}else le.exports=gs()();var ys=le.exports;const D=re(ys),st={mask:D.oneOfType([D.array,D.func,D.string,D.instanceOf(RegExp),D.oneOf([Date,Number,j.Masked]),D.instanceOf(j.Masked)]),value:D.any,unmask:D.oneOfType([D.bool,D.oneOf(["typed"])]),prepare:D.func,prepareChar:D.func,validate:D.func,commit:D.func,overwrite:D.oneOfType([D.bool,D.oneOf(["shift"])]),eager:D.oneOfType([D.bool,D.oneOf(["append","remove"])]),skipInvalid:D.bool,onAccept:D.func,onComplete:D.func,placeholderChar:D.string,displayChar:D.string,lazy:D.bool,definitions:D.object,blocks:D.object,enum:D.arrayOf(D.string),maxLength:D.number,from:D.number,to:D.number,pattern:D.string,format:D.func,parse:D.func,autofix:D.oneOfType([D.bool,D.oneOf(["pad"])]),radix:D.string,thousandsSeparator:D.string,mapToRadix:D.arrayOf(D.string),scale:D.number,normalizeZeros:D.bool,padFractionalZeros:D.bool,min:D.oneOfType([D.number,D.instanceOf(Date)]),max:D.oneOfType([D.number,D.instanceOf(Date)]),dispatch:D.func,inputRef:D.oneOfType([D.func,D.shape({current:D.object})])},it=Object.keys(st).filter(r=>r!=="value"),ws=["value","unmask","onAccept","onComplete","inputRef"],bs=it.filter(r=>ws.indexOf(r)<0);function Es(r){var e;const t=(e=class extends _.Component{constructor(i){super(i),this._inputRef=this._inputRef.bind(this)}componentDidMount(){this.props.mask&&this.initMask()}componentDidUpdate(){const i=this.props,o=this._extractMaskOptionsFromProps(i);if(o.mask)this.maskRef?(this.maskRef.updateOptions(o),"value"in i&&i.value!==void 0&&(this.maskValue=i.value)):this.initMask(o);else if(this.destroyMask(),"value"in i&&i.value!==void 0){var l;(l=this.element)!=null&&l.isContentEditable&&this.element.tagName!=="INPUT"&&this.element.tagName!=="TEXTAREA"?this.element.textContent=i.value:this.element.value=i.value}}componentWillUnmount(){this.destroyMask()}_inputRef(i){this.element=i,this.props.inputRef&&(Object.prototype.hasOwnProperty.call(this.props.inputRef,"current")?this.props.inputRef.current=i:this.props.inputRef(i))}initMask(i){i===void 0&&(i=this._extractMaskOptionsFromProps(this.props)),this.maskRef=j(this.element,i).on("accept",this._onAccept.bind(this)).on("complete",this._onComplete.bind(this)),"value"in this.props&&this.props.value!==void 0&&(this.maskValue=this.props.value)}destroyMask(){this.maskRef&&(this.maskRef.destroy(),delete this.maskRef)}_extractMaskOptionsFromProps(i){const{...o}=i;return Object.keys(o).filter(l=>bs.indexOf(l)<0).forEach(l=>{delete o[l]}),o}_extractNonMaskProps(i){const{...o}=i;return it.forEach(l=>{l!=="maxLength"&&delete o[l]}),"defaultValue"in o||(o.defaultValue=i.mask?"":o.value),delete o.value,o}get maskValue(){return this.maskRef?this.props.unmask==="typed"?this.maskRef.typedValue:this.props.unmask?this.maskRef.unmaskedValue:this.maskRef.value:""}set maskValue(i){this.maskRef&&(i=i==null&&this.props.unmask!=="typed"?"":i,this.props.unmask==="typed"?this.maskRef.typedValue=i:this.props.unmask?this.maskRef.unmaskedValue=i:this.maskRef.value=i)}_onAccept(i){this.props.onAccept&&this.maskRef&&this.props.onAccept(this.maskValue,this.maskRef,i)}_onComplete(i){this.props.onComplete&&this.maskRef&&this.props.onComplete(this.maskValue,this.maskRef,i)}render(){return _.createElement(r,{...this._extractNonMaskProps(this.props),inputRef:this._inputRef})}},e.displayName=void 0,e.propTypes=void 0,e),s=r.displayName||r.name||"Component";return t.displayName="IMask("+s+")",t.propTypes=st,_.forwardRef((n,i)=>_.createElement(t,{...n,ref:i}))}const xs=Es(r=>{let{inputRef:e,...t}=r;return _.createElement("input",{...t,ref:e})}),Ss=(r,e)=>_.createElement(xs,{...r,ref:e}),Fs=_.forwardRef(Ss),_e=g2.bind(k2),C0=_.forwardRef(({size_s:r="large",size_m:e,size_l:t,pre:s=!1,post:n=!1,variant:i="light",width:o="auto",error:l,type:d,isPhoneIMask:h=!1,additionalClass:f="",...p},m)=>h?a.jsx("div",{className:_e(k2.inputWrapper,k2[`${r}-size_s`],k2[`${e}-size_m`],k2[`${t}-size_l`],k2[`${i}`],{[k2.inputWrapperPre]:s},{[k2.inputWrapperPost]:n},k2[`${o}-width`],{[k2.inputWrapperError]:l&&i==="light"},{[k2.inputWrapperErrorWithoutBorder]:l&&i==="gray"},{[k2.inputWrapperErrorDark]:l&&i==="dark"},f),children:a.jsx(Fs,{inputRef:m,className:k2.inputIMask,mask:"+7 (000) 000-00-00",definitions:{0:/[0-9]/},placeholder:"+7 (---) --- -- --",...p})}):a.jsxs(a.Fragment,{children:[d!=="checkbox"&&a.jsxs("div",{className:_e(k2.inputWrapper,k2[`${r}-size_s`],k2[`${e}-size_m`],k2[`${t}-size_l`],k2[`${i}`],{[k2.inputWrapperPre]:s},{[k2.inputWrapperPost]:n},k2[`${o}-width`],{[k2.inputWrapperError]:l&&i==="light"},{[k2.inputWrapperErrorWithoutBorder]:l&&i==="gray"},{[k2.inputWrapperErrorDark]:l&&i==="dark"},f),children:[s&&a.jsx("div",{children:s}),a.jsx("input",{ref:m,type:d,...p}),n&&a.jsx("div",{children:n})]}),d==="checkbox"&&a.jsx("input",{className:_e(k2.checkBox),ref:m,type:d,...p})]}));C0.displayName="Input";const j0={root:"_root_1vbbc_11",modalBody:"_modalBody_1vbbc_25",modalOverlay:"_modalOverlay_1vbbc_30",isTransparentBack:"_isTransparentBack_1vbbc_41",fadeInUp:"_fadeInUp_1vbbc_1"},x0=({isOpen:r,emitIsOpen:e,isTransparentBack:t=!1,isClickOutside:s=!0,leaveDisableScroll:n=!1,createPortalObj:i,additionalClass:o,additionalClassOverlay:l,additionalClassModalBody:d,opacity:h=.7,colorOverlay:f,notDisableScroll:p=!1,children:m,modalBodyRef:b,additionalStylesModalBody:y})=>{const S=()=>{s&&e(!1)};_.useEffect(()=>{if(!p){if(r){if(document.body.classList.contains("disable-scroll"))return;document.body.classList.add("disable-scroll")}else{if(n)return;document.body.classList.remove("disable-scroll")}return()=>document.body.classList.remove("disable-scroll")}},[r]);const E=a.jsxs("div",{className:`${j0.root} ${o}`,onClick:I=>I.stopPropagation(),children:[a.jsx("div",{onClick:S,className:`${j0.modalOverlay} ${l} ${t?j0.isTransparentBack:""}`,style:{opacity:t?h:void 0,backgroundColor:f||void 0}}),a.jsx("div",{className:`${j0.modalBody} ${d}`,ref:b,style:y,children:m})]});return r?i!=null&&i.domNode&&i.domNode.isConnected?jt.createPortal(E,i.domNode,i.key):E:null},Z0={fieldInputWrapper:"_fieldInputWrapper_1y5f8_1",clearBtn:"_clearBtn_1y5f8_16",nameWrapper:"_nameWrapper_1y5f8_31"},As=({label:r,handleClear:e,isShowClear:t,children:s})=>a.jsxs("div",{className:Z0.fieldInputWrapper,children:[a.jsxs("div",{className:Z0.nameWrapper,children:[a.jsx("label",{className:Z0.label,children:r}),t&&a.jsx("div",{className:Z0.clearBtn,onClick:e,children:"Очистить"})]}),s]}),w2={root:"_root_14gc5_1",text:"_text_14gc5_18",textMini:"_textMini_14gc5_26",rootCol:"_rootCol_14gc5_32",item:"_item_14gc5_38",whiteRow:"_whiteRow_14gc5_57",firstItem:"_firstItem_14gc5_68",lastItem:"_lastItem_14gc5_72",whiteRowGrayLabel:"_whiteRowGrayLabel_14gc5_103",labelItem:"_labelItem_14gc5_118",apart:"_apart_14gc5_147",isLong:"_isLong_14gc5_147",autoWidth:"_autoWidth_14gc5_172",mini:"_mini_14gc5_176",isDisabled:"_isDisabled_14gc5_184",grayRow:"_grayRow_14gc5_208","tiny-size":"_tiny-size_14gc5_236","small-size":"_small-size_14gc5_241","medium-size":"_medium-size_14gc5_246","large-size":"_large-size_14gc5_251","text-tiny-size":"_text-tiny-size_14gc5_256","text-small-size":"_text-small-size_14gc5_262","text-medium-size":"_text-medium-size_14gc5_267","text-large-size":"_text-large-size_14gc5_272","small-size_m":"_small-size_m_14gc5_278","medium-size_m":"_medium-size_m_14gc5_282","large-size_m":"_large-size_m_14gc5_286","text-small-size_m":"_text-small-size_m_14gc5_290","text-medium-size_m":"_text-medium-size_m_14gc5_294","text-large-size_m":"_text-large-size_m_14gc5_298","small-size_l":"_small-size_l_14gc5_313","medium-size_l":"_medium-size_l_14gc5_317","large-size_l":"_large-size_l_14gc5_321","text-small-size_l":"_text-small-size_l_14gc5_325","text-medium-size_l":"_text-medium-size_l_14gc5_329","text-large-size_l":"_text-large-size_l_14gc5_333"},S0=g2.bind(w2),Ms=({children:r,variant:e="whiteRow",isApart:t=!1,addClassName:s="",col:n=!1})=>a.jsx("div",{className:S0(w2.root,w2[e],{[w2.rootCol]:n,[w2.apart]:t},s),children:r}),nt=_.forwardRef((r,e)=>{const{isTablet:t,isDesktop:s}=s0(),{index:n,children:i,addItemClassName:o,addLabelClassname:l,addTextClass:d,size_s:h="large",size_m:f,size_l:p,disabled:m=!1,itemsLength:b=0,isLongOn:y=!0,width:S,width_m:E,width_l:I,mini:V=!1,...z}=r,T=(i!=null&&i.toString().length?(i==null?void 0:i.toString().length)>2:!1)&&y,v=(_2,o2)=>_2&&E?E:o2&&I?I:S,G=!S&&!E&&!I&&T;return a.jsxs("label",{className:S0(w2.labelItem,{[w2.isLong]:T},l),children:[a.jsx("input",{ref:e,type:"checkbox",...z,disabled:m}),a.jsx("div",{style:{width:v(t,s)},className:S0(S0(w2.item,{[w2.firstItem]:n===0},{[w2.lastItem]:n===b-1},{[w2.isDisabled]:m},{[w2.autoWidth]:G},w2[`${h}-size`],w2[`${f}-size_m`],w2[`${p}-size_l`],{[w2.mini]:V}),o),children:a.jsx(f0,{className:S0(w2.text,w2[`text-${h}-size`],w2[`text-${f}-size_m`],w2[`text-${p}-size_l`],{[w2.textMini]:V},d),children:i})})]})});nt.displayName="TabSwitcherItem";const F0=Object.assign(Ms,{Item:nt}),at={root:"_root_1dq3m_1"},Bs=g2.bind(at),Vs=({children:r,addClassName:e})=>a.jsx("div",{className:Bs(at.root,e),children:r}),W2={wrapper:"_wrapper_dhuso_1",logo:"_logo_dhuso_7",logoValue:"_logoValue_dhuso_12",logoDom:"_logoDom_dhuso_16",logoOffice:"_logoOffice_dhuso_21",logoNewOffice:"_logoNewOffice_dhuso_26",logoNewDom:"_logoNewDom_dhuso_31",logoRealty:"_logoRealty_dhuso_36",wrapperBetween:"_wrapperBetween_dhuso_41",uk:"_uk_dhuso_46",uk_black:"_uk_black_dhuso_53",uk_white:"_uk_white_dhuso_56"},Ts={black:"data:image/svg+xml,%3csvg%20width='81'%20height='16'%20viewBox='0%200%2081%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M7.99605%2015.9822C7.18872%2015.9918%206.38284%2015.9113%205.59339%2015.7422C4.95179%2015.6042%204.32676%2015.3982%203.72893%2015.1276C3.22567%2014.8976%202.7541%2014.604%202.32578%2014.2538C1.95686%2013.9516%201.62174%2013.6103%201.32627%2013.236C0.680811%2012.4279%200.227328%2011.484%200%2010.4754H5.61741C5.70387%2010.7738%205.84748%2011.0527%206.04028%2011.2964C6.23969%2011.5231%206.48123%2011.7089%206.75149%2011.8437C7.13125%2012.027%207.55073%2012.1128%207.97203%2012.0934C8.42767%2012.1323%208.88488%2012.039%209.28868%2011.8245C9.39372%2011.7623%209.48222%2011.6757%209.54663%2011.5721C9.61104%2011.4685%209.64948%2011.3508%209.6587%2011.2292C9.65463%2011.102%209.61575%2010.9784%209.54628%2010.8717C9.47681%2010.7651%209.3794%2010.6795%209.26466%2010.6243C8.93639%2010.4375%208.58612%2010.2923%208.22191%2010.1922C7.78463%2010.0625%207.29447%209.9329%206.73706%209.80327C6.17964%209.67364%205.62223%209.52961%205.0552%209.36158C4.48027%209.19723%203.91682%208.99515%203.36853%208.75665C2.83394%208.53122%202.33532%208.22874%201.88851%207.85885C1.45434%207.50472%201.09773%207.06511%200.84093%206.56736C0.566266%206.0026%200.43117%205.38027%200.44692%204.75256C0.457399%204.14196%200.622732%203.54398%200.927451%203.01459C1.2647%202.41162%201.7326%201.89162%202.29695%201.49265C2.98073%201.00926%203.74094%200.644098%204.54584%200.412418C5.55587%200.121105%206.60376%20-0.0180566%207.65489%20-0.000472905C8.39098%20-0.00818232%209.12572%200.0642595%209.84611%200.215573C10.4422%200.341279%2011.0224%200.532903%2011.576%200.786899C12.0428%201.00502%2012.4803%201.28084%2012.8783%201.60787C13.2196%201.89682%2013.5318%202.21842%2013.8105%202.56809C14.4073%203.31484%2014.8367%204.18096%2015.0695%205.10785H9.45688C9.4137%204.8879%209.31437%204.68283%209.16854%204.51251C9.02689%204.3371%208.85012%204.1932%208.64956%204.09002C8.3774%203.95855%208.0771%203.8959%207.77502%203.90758C7.38332%203.87528%206.99038%203.95346%206.64095%204.13323C6.54601%204.18622%206.46619%204.26253%206.40901%204.35494C6.35183%204.44736%206.31919%204.55281%206.31419%204.66134C6.31419%204.9206%206.54003%205.14145%206.99653%205.25668C7.45304%205.3719%208.02487%205.53514%208.70722%205.67917C9.38958%205.8232%2010.1248%205.99604%2010.9177%206.19769C11.6897%206.39088%2012.4341%206.68126%2013.1329%207.06187C13.7951%207.41892%2014.376%207.90936%2014.8388%208.50218C15.3164%209.17135%2015.5566%209.98077%2015.5212%2010.8019C15.5212%2011.4824%2015.3564%2012.1529%2015.0407%2012.7559C14.694%2013.4101%2014.2006%2013.9754%2013.5991%2014.4075C12.8883%2014.9284%2012.0913%2015.3201%2011.2444%2015.5645C10.1858%2015.8686%209.08783%2016.0142%207.98643%2015.9966'%20fill='%23141416'/%3e%3cpath%20d='M20.211%205.08964H15.4922V0.432617H30.5472V5.08964H25.8284V15.5463H20.211V5.08964Z'%20fill='%23141416'/%3e%3cpath%20d='M49.8047%200.432617H56.0948L60.2947%207.55738V0.432617H65.864V15.5463H59.5739L55.3837%208.42157V15.5463H49.8047V0.432617Z'%20fill='%23141416'/%3e%3cpath%20d='M67.7969%200.432617H80.9971V4.74876H73.4143V6.15547H80.9971V9.82347H73.4143V11.2302H80.9971V15.5463H67.7969V0.432617Z'%20fill='%23141416'/%3e%3cpath%20d='M39.5983%2011.2056C38.9703%2011.1811%2038.3634%2010.9727%2037.853%2010.6063C37.3426%2010.2399%2036.9513%209.73164%2036.7277%209.14476C36.5042%208.55789%2036.4583%207.91831%2036.5957%207.30556C36.7331%206.69282%2037.0478%206.13396%2037.5006%205.69851C37.9535%205.26306%2038.5244%204.97024%2039.1425%204.85646C39.7606%204.74268%2040.3986%204.81297%2040.977%205.05859C41.5554%205.3042%2042.0488%205.7143%2042.3957%206.23787C42.7427%206.76144%2042.9279%207.37538%2042.9284%208.00332C42.9203%208.43207%2042.8277%208.85502%2042.656%209.24801C42.4842%209.64101%2042.2366%209.99634%2041.9274%2010.2937C41.6181%2010.5911%2041.2533%2010.8247%2040.8536%2010.9812C40.454%2011.1376%2040.0275%2011.2139%2039.5983%2011.2056ZM47.9596%204.86823C47.5444%203.90704%2046.9322%203.04349%2046.1624%202.33328C45.3374%201.58869%2044.3764%201.01001%2043.3321%200.628904C40.917%20-0.209635%2038.2893%20-0.209635%2035.8742%200.628904C34.8286%201.00725%2033.8671%201.58624%2033.0439%202.33328C32.2711%203.04089%2031.6584%203.90512%2031.2467%204.86823C30.8312%205.85627%2030.6172%206.91721%2030.6172%207.98892C30.6172%209.06063%2030.8312%2010.1216%2031.2467%2011.1096C31.6571%2012.0749%2032.2699%2012.9409%2033.0439%2013.6494C33.8671%2014.3964%2034.8286%2014.9754%2035.8742%2015.3537C38.2904%2016.1859%2040.9159%2016.1859%2043.3321%2015.3537C44.3764%2014.9726%2045.3374%2014.3939%2046.1624%2013.6494C46.9334%2012.9383%2047.5458%2012.0729%2047.9596%2011.1096C48.372%2010.1208%2048.5843%209.06015%2048.5843%207.98892C48.5843%206.91769%2048.372%205.85706%2047.9596%204.86823Z'%20fill='%23141416'/%3e%3c/svg%3e",white:"data:image/svg+xml,%3csvg%20width='81'%20height='16'%20viewBox='0%200%2081%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M7.99605%2015.9842C7.18872%2015.9937%206.38284%2015.9132%205.59339%2015.7441C4.95179%2015.6062%204.32676%2015.4001%203.72893%2015.1296C3.22567%2014.8996%202.7541%2014.6059%202.32578%2014.2558C1.95686%2013.9535%201.62174%2013.6123%201.32627%2013.238C0.680811%2012.4299%200.227328%2011.486%200%2010.4774H5.61741C5.70387%2010.7758%205.84748%2011.0546%206.04028%2011.2984C6.23969%2011.525%206.48123%2011.7109%206.75149%2011.8457C7.13125%2012.0289%207.55073%2012.1148%207.97203%2012.0953C8.42767%2012.1343%208.88488%2012.0409%209.28868%2011.8265C9.39372%2011.7643%209.48222%2011.6777%209.54663%2011.5741C9.61104%2011.4704%209.64948%2011.3528%209.6587%2011.2311C9.65463%2011.104%209.61575%2010.9803%209.54628%2010.8737C9.47681%2010.767%209.3794%2010.6814%209.26466%2010.6262C8.93639%2010.4394%208.58612%2010.2943%208.22191%2010.1941C7.78463%2010.0645%207.29447%209.93485%206.73706%209.80523C6.17964%209.6756%205.62223%209.53157%205.0552%209.36353C4.48027%209.19918%203.91682%208.9971%203.36853%208.7586C2.83394%208.53317%202.33532%208.23069%201.88851%207.8608C1.45434%207.50667%201.09773%207.06706%200.84093%206.56931C0.566266%206.00455%200.43117%205.38222%200.44692%204.75452C0.457399%204.14391%200.622732%203.54594%200.927451%203.01654C1.2647%202.41357%201.7326%201.89358%202.29695%201.49461C2.98073%201.01121%203.74094%200.646051%204.54584%200.414371C5.55587%200.123058%206.60376%20-0.0161035%207.65489%200.00148022C8.39098%20-0.00622919%209.12572%200.0662126%209.84611%200.217526C10.4422%200.343232%2011.0224%200.534856%2011.576%200.788852C12.0428%201.00698%2012.4803%201.28279%2012.8783%201.60983C13.2196%201.89877%2013.5318%202.22037%2013.8105%202.57004C14.4073%203.3168%2014.8367%204.18292%2015.0695%205.1098H9.45688C9.4137%204.88986%209.31437%204.68478%209.16854%204.51447C9.02689%204.33906%208.85012%204.19516%208.64956%204.09198C8.3774%203.96051%208.0771%203.89785%207.77502%203.90954C7.38332%203.87724%206.99038%203.95542%206.64095%204.13519C6.54601%204.18817%206.46619%204.26448%206.40901%204.35689C6.35183%204.44931%206.31919%204.55477%206.31419%204.6633C6.31419%204.92255%206.54003%205.1434%206.99653%205.25863C7.45304%205.37386%208.02487%205.53709%208.70722%205.68112C9.38958%205.82516%2010.1248%205.99799%2010.9177%206.19964C11.6897%206.39283%2012.4341%206.68321%2013.1329%207.06382C13.7951%207.42087%2014.376%207.91131%2014.8388%208.50414C15.3164%209.1733%2015.5566%209.98272%2015.5212%2010.8038C15.5212%2011.4844%2015.3564%2012.1548%2015.0407%2012.7579C14.694%2013.4121%2014.2006%2013.9773%2013.5991%2014.4094C12.8883%2014.9303%2012.0913%2015.322%2011.2444%2015.5665C10.1858%2015.8705%209.08783%2016.0162%207.98643%2015.9986'%20fill='white'/%3e%3cpath%20d='M20.211%205.09159H15.4922V0.43457H30.5472V5.09159H25.8284V15.5483H20.211V5.09159Z'%20fill='white'/%3e%3cpath%20d='M49.8047%200.43457H56.0948L60.2947%207.55933V0.43457H65.864V15.5483H59.5739L55.3837%208.42352V15.5483H49.8047V0.43457Z'%20fill='white'/%3e%3cpath%20d='M67.7969%200.43457H80.9971V4.75072H73.4143V6.15742H80.9971V9.82543H73.4143V11.2321H80.9971V15.5483H67.7969V0.43457Z'%20fill='white'/%3e%3cpath%20d='M39.5983%2011.2076C38.9703%2011.1831%2038.3634%2010.9747%2037.853%2010.6083C37.3426%2010.2418%2036.9513%209.73359%2036.7277%209.14672C36.5042%208.55984%2036.4583%207.92026%2036.5957%207.30752C36.7331%206.69478%2037.0478%206.13592%2037.5006%205.70047C37.9535%205.26502%2038.5244%204.97219%2039.1425%204.85841C39.7606%204.74463%2040.3986%204.81493%2040.977%205.06054C41.5554%205.30616%2042.0488%205.71625%2042.3957%206.23982C42.7427%206.7634%2042.9279%207.37734%2042.9284%208.00527C42.9203%208.43402%2042.8277%208.85697%2042.656%209.24997C42.4842%209.64296%2042.2366%209.99829%2041.9274%2010.2957C41.6181%2010.593%2041.2533%2010.8266%2040.8536%2010.9831C40.454%2011.1396%2040.0275%2011.2158%2039.5983%2011.2076ZM47.9596%204.87019C47.5444%203.909%2046.9322%203.04544%2046.1624%202.33523C45.3374%201.59065%2044.3764%201.01196%2043.3321%200.630857C40.917%20-0.207682%2038.2893%20-0.207682%2035.8742%200.630857C34.8286%201.0092%2033.8671%201.58819%2033.0439%202.33523C32.2711%203.04284%2031.6584%203.90707%2031.2467%204.87019C30.8312%205.85822%2030.6172%206.91916%2030.6172%207.99087C30.6172%209.06258%2030.8312%2010.1235%2031.2467%2011.1116C31.6571%2012.0768%2032.2699%2012.9429%2033.0439%2013.6513C33.8671%2014.3983%2034.8286%2014.9773%2035.8742%2015.3557C38.2904%2016.1879%2040.9159%2016.1879%2043.3321%2015.3557C44.3764%2014.9746%2045.3374%2014.3959%2046.1624%2013.6513C46.9334%2012.9403%2047.5458%2012.0749%2047.9596%2011.1116C48.372%2010.1227%2048.5843%209.0621%2048.5843%207.99087C48.5843%206.91964%2048.372%205.85901%2047.9596%204.87019Z'%20fill='white'/%3e%3c/svg%3e",value:"data:image/svg+xml,%3csvg%20width='157'%20height='16'%20viewBox='0%200%20157%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M20.0566%205.09731H15.4121V0.43457H30.2276V5.09731H25.5842V15.5696H20.0566V5.09731Z'%20fill='white'/%3e%3cpath%20d='M50%200.43457H56.0084L60.5114%207.56965V0.43457H65.8124V15.5696H59.804L55.3088%208.43457V15.5696H50V0.43457Z'%20fill='white'/%3e%3cpath%20d='M68%200.435547V15.5706H80.9939V11.4617H73.5287V9.84077H80.9939V6.1654H73.5287V4.5445H80.9939V0.435547H68Z'%20fill='white'/%3e%3cpath%20d='M48.0725%204.87714C47.6591%203.90325%2047.07%203.05742%2046.3029%202.33628C45.5358%201.61513%2044.6074%201.04563%2043.5164%200.627769C42.4255%200.209909%2041.2019%200.000976562%2039.8457%200.000976562C38.4895%200.000976562%2037.2659%200.209909%2036.175%200.627769C35.0841%201.04563%2034.1556%201.61513%2033.3886%202.33628C32.6215%203.05742%2032.0323%203.90325%2031.619%204.87714C31.2067%205.85102%2031%206.8923%2031%208.00098C31%209.10965%2031.2067%2010.1532%2031.619%2011.1248C32.0323%2012.0987%2032.6215%2012.9457%2033.3886%2013.6657C34.1556%2014.3868%2035.0841%2014.9552%2036.175%2015.3731C37.2671%2015.792%2038.4895%2015.9999%2039.8457%2015.9999C41.2019%2015.9999%2042.4266%2015.792%2043.5164%2015.3731C44.6074%2014.9552%2045.5358%2014.3868%2046.3029%2013.6657C47.07%2012.9445%2047.6591%2012.0976%2048.0725%2011.1248C48.4847%2010.1521%2048.6914%209.11078%2048.6914%208.00098C48.6914%206.89118%2048.4847%205.8499%2048.0725%204.87714ZM39.8435%2011.2203C38.033%2011.2203%2036.5641%209.78475%2036.5641%208.01558C36.5641%206.24641%2038.033%204.80974%2039.8435%204.80974C41.654%204.80974%2043.1218%206.24529%2043.1218%208.01558C43.1218%209.78587%2041.654%2011.2203%2039.8435%2011.2203Z'%20fill='white'/%3e%3cpath%20d='M6.26263%204.93119C6.26263%204.93119%206.25821%204.92446%206.25711%204.92109C6.24826%204.90536%206.24163%204.88739%206.235%204.87166C6.22837%204.85706%206.22174%204.84134%206.21731%204.82673C6.21731%204.82449%206.21732%204.82224%206.2151%204.81999C6.19963%204.76832%206.18968%204.71553%206.18968%204.66161C6.18968%204.62005%206.19631%204.57849%206.20516%204.53805C6.23168%204.41449%206.30353%204.30104%206.41848%204.19657C6.4428%204.17523%206.46932%204.15277%206.49695%204.13142C6.50138%204.12693%206.5058%204.12244%206.51022%204.11907C6.51243%204.11907%206.51464%204.1157%206.51685%204.11457C6.80092%203.90677%207.24193%203.77197%207.73932%203.77197C9.46801%203.77197%209.40279%204.92783%209.40168%205.0952H14.8132C14.5778%204.15838%2014.1644%203.3002%2013.5753%202.55097C13.3244%202.23533%2013.0193%201.92081%2012.6579%201.61078C12.2965%201.30076%2011.8687%201.02668%2011.3746%200.788541C10.8806%200.551529%2010.3136%200.360572%209.67248%200.216792C9.03141%200.0718891%208.31186%200%207.51604%200C6.35106%200%205.33086%200.137041%204.45326%200.411121C3.57565%200.685201%202.83952%201.04577%202.24155%201.49172C1.64469%201.9399%201.19594%202.44762%200.893083%203.016C0.590231%203.58551%200.439909%204.16512%200.439909%204.75709C0.439909%205.46363%200.56923%206.06908%200.827871%206.57344C1.08541%207.07891%201.42805%207.51025%201.8558%207.87082C2.28355%208.2314%202.76988%208.53019%203.3159%208.76832C3.86081%209.00533%204.41346%209.20753%204.97496%209.37377C5.53424%209.53889%206.08689%209.68717%206.63291%209.81635C7.17893%209.94665%207.66526%2010.0769%208.09301%2010.2061C8.51966%2010.3353%208.86341%2010.4802%209.12094%2010.6386C9.37848%2010.797%209.5089%2010.9992%209.5089%2011.244C9.5089%2011.4597%209.32874%2011.7046%209.10105%2011.8652C8.76282%2012.1022%208.23007%2012.2584%207.62879%2012.2584C5.66798%2012.2584%205.44692%2010.8015%205.44692%2010.4858H0C0.235429%2011.5237%200.66981%2012.4471%201.30536%2013.2536C1.56952%2013.5995%201.8978%2013.9388%202.28908%2014.2701C2.68035%2014.6015%203.14016%2014.8936%203.67181%2015.1452C4.20125%2015.3979%204.81358%2015.6024%205.50661%2015.7619C6.19963%2015.9202%206.97997%2016%207.85095%2016C9.05904%2016%2010.129%2015.8551%2011.0563%2015.5675C11.9859%2015.2788%2012.7596%2014.8969%2013.3786%2014.4218C13.9975%2013.9455%2014.4651%2013.394%2014.7823%2012.7672C15.0984%2012.1404%2015.2576%2011.4889%2015.2576%2010.8104C15.2576%205.77029%207.1115%206.50042%206.26374%204.92895'%20fill='white'/%3e%3cpath%20d='M99.9511%200.43457H101.052L95.0082%2015.5674H93.7415L87.501%200.43457H89.8066L94.9054%2012.8872H94.9883L99.9522%200.43457H99.9511ZM108.852%200.43457L115.789%2015.5674H113.722L110.849%209.3141H105.101L102.477%2015.5674H101.491L107.794%200.43457H108.853H108.852ZM110.406%208.34246L107.897%202.86086H107.814L105.507%208.34246H110.406ZM121.015%200.43457H119.084V15.5674H128.689V14.3745H121.015V0.43457ZM142.107%209.59492C142.107%209.91168%20142.101%2010.2318%20142.086%2010.5553C142.072%2010.8788%20142.029%2011.2023%20141.956%2011.5258C141.883%2011.8493%20141.772%2012.1695%20141.623%2012.4862C141.474%2012.803%20141.258%2013.1198%20140.974%2013.4365C140.463%2013.9993%20139.888%2014.3812%20139.251%2014.5812C138.614%2014.7822%20137.949%2014.8822%20137.257%2014.8822C136.661%2014.8822%20136.134%2014.789%20135.673%2014.6025C135.212%2014.416%20134.775%2014.1363%20134.36%2013.7634C134.035%2013.4747%20133.788%2013.1872%20133.617%2012.8985C133.447%2012.6098%20133.32%2012.3256%20133.233%2012.0437C133.147%2011.7628%20133.096%2011.4775%20133.082%2011.1889C133.069%2010.9002%20133.061%2010.6126%20133.061%2010.3239V0.446925H131.131V9.74431C131.131%2010.3352%20131.188%2010.9878%20131.302%2011.7022C131.417%2012.4166%20131.684%2013.0793%20132.106%2013.6915C132.529%2014.3037%20133.159%2014.8137%20133.997%2015.2214C134.834%2015.6292%20135.976%2015.8336%20137.423%2015.8336C138.33%2015.8336%20139.135%2015.691%20139.837%2015.4056C140.54%2015.1203%20141.128%2014.7249%20141.602%2014.2183C142.076%2013.7117%20142.434%2013.1254%20142.676%2012.457C142.919%2011.7887%20143.04%2011.0709%20143.04%2010.3037V0.446925H142.105V9.59604L142.107%209.59492ZM157%201.62749V0.43457H147.395V15.5674H157V14.3745H149.326V8.04254H155.92V7.05069H149.326V1.62637H157V1.62749Z'%20fill='url(%23paint0_linear_2650_16267)'/%3e%3cdefs%3e%3clinearGradient%20id='paint0_linear_2650_16267'%20x1='86.2454'%20y1='-4.51011'%20x2='160.721'%20y2='18.5479'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23B49266'/%3e%3cstop%20offset='0.07'%20stop-color='%23C2A678'/%3e%3cstop%20offset='0.22'%20stop-color='%23E7DBA8'/%3e%3cstop%20offset='0.26'%20stop-color='%23DBCB98'/%3e%3cstop%20offset='0.38'%20stop-color='%23BC9E6D'/%3e%3cstop%20offset='0.5'%20stop-color='%23E1C588'/%3e%3cstop%20offset='0.56'%20stop-color='%23D0B079'/%3e%3cstop%20offset='0.62'%20stop-color='%23C5A370'/%3e%3cstop%20offset='0.67'%20stop-color='%23D8BE88'/%3e%3cstop%20offset='0.73'%20stop-color='%23E6D29A'/%3e%3cstop%20offset='0.76'%20stop-color='%23EBD9A0'/%3e%3cstop%20offset='0.91'%20stop-color='%23D0BC9A'/%3e%3cstop%20offset='0.99'%20stop-color='%23C6B198'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e",dom:"data:image/svg+xml,%3csvg%20width='175'%20height='43'%20viewBox='0%200%20175%2043'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M8.10769%2032.0685C7.29645%2032.0768%206.48677%2031.9959%205.69325%2031.8271C5.04305%2031.6889%204.40991%2031.48%203.80516%2031.2041C3.28515%2030.9732%202.79802%2030.6745%202.35649%2030.3156C1.98271%2030.01%201.64275%2029.6651%201.34243%2029.2871C0.689656%2028.4665%200.23075%2027.5091%200%2026.4863H5.71739C5.80729%2026.7886%205.95488%2027.0707%206.15199%2027.3169C6.35173%2027.5481%206.59445%2027.7383%206.86667%2027.877C7.25362%2028.0608%207.67971%2028.1471%208.10769%2028.1281C8.56933%2028.1692%209.03284%2028.0734%209.44046%2027.8529C9.54746%2027.7915%209.63777%2027.7049%209.70344%2027.6005C9.76911%2027.4961%209.80815%2027.3771%209.81711%2027.2541C9.81291%2027.125%209.77331%2026.9995%209.70263%2026.8913C9.63194%2026.7832%209.5329%2026.6965%209.41631%2026.6408C9.08424%2026.4493%208.72878%2026.3016%208.35879%2026.2014C7.91936%2026.071%207.39301%2025.9406%206.85701%2025.8054C6.321%2025.6702%205.72705%2025.5254%205.15241%2025.3563C4.56984%2025.1894%203.99881%2024.9846%203.44299%2024.7431C2.90014%2024.5166%202.39401%2024.2107%201.94121%2023.8352C1.50307%2023.4739%201.14323%2023.027%200.883686%2022.5218C0.605399%2021.9494%200.469555%2021.3182%200.487718%2020.682C0.498729%2020.0633%200.664758%2019.4573%200.970606%2018.9195C1.31316%2018.3085%201.7884%2017.7821%202.36132%2017.379C3.05148%2016.8868%203.82069%2016.5161%204.63572%2016.2829C5.66014%2015.9876%206.72304%2015.8476%207.78898%2015.8676C8.53345%2015.8604%209.27654%2015.9332%2010.0054%2016.0849C10.6099%2016.2107%2011.198%2016.4051%2011.7583%2016.6644C12.2317%2016.8852%2012.6748%2017.1659%2013.0766%2017.4998C14.1803%2018.4023%2014.96%2019.6397%2015.2979%2021.0248H9.59015C9.54329%2020.8015%209.44025%2020.5937%209.29076%2020.4212C9.14871%2020.2433%208.97108%2020.0969%208.76924%2019.9915C8.49245%2019.8588%208.18743%2019.7958%207.88073%2019.808C7.4834%2019.7746%207.08479%2019.855%206.73146%2020.0398C6.63568%2020.0938%206.55527%2020.1714%206.49782%2020.2652C6.44036%2020.359%206.40776%2020.4659%206.40309%2020.5758C6.40309%2020.8365%206.63488%2021.0587%207.09845%2021.1745C7.56202%2021.2904%208.13666%2021.4594%208.82719%2021.6043C9.51772%2021.7492%2010.2759%2021.923%2011.0678%2022.1307C11.8494%2022.3236%2012.6026%2022.6174%2013.3084%2023.0047C13.982%2023.3703%2014.5711%2023.8738%2015.0371%2024.4823C15.5237%2025.1599%2015.7685%2025.9813%2015.7325%2026.8147C15.7324%2027.5038%2015.5668%2028.1828%2015.2496%2028.7945C14.9002%2029.4558%2014.4048%2030.0288%2013.8009%2030.4701C13.0716%2030.9972%2012.2539%2031.3897%2011.3865%2031.6291C10.3135%2031.9389%209.20025%2032.087%208.08354%2032.0685'%20fill='white'/%3e%3cpath%20d='M20.4828%2021.0295H15.707V16.3069H30.9518V21.0295H26.176V31.6337H20.4828V21.0295Z'%20fill='white'/%3e%3cpath%20d='M50.4609%2016.3069H56.8302L61.0845%2023.5309V16.3069H66.7294V31.6337H60.3601L56.1107%2024.4049V31.6337H50.4609V16.3069Z'%20fill='white'/%3e%3cpath%20d='M68.6914%2016.3069H82.0626V20.6867H74.3798V22.1064H82.0626V25.8294H74.3798V27.254H82.0626V31.6337H68.6914V16.3069Z'%20fill='white'/%3e%3cpath%20d='M40.1357%2027.2245C39.5003%2027.198%2038.8867%2026.9854%2038.3712%2026.6131C37.8556%2026.2408%2037.4608%2025.7252%2037.2358%2025.1304C37.0108%2024.5356%2036.9655%2023.8878%2037.1056%2023.2675C37.2457%2022.6472%2037.5649%2022.0818%2038.0236%2021.6414C38.4824%2021.201%2039.0604%2020.905%2039.6859%2020.7904C40.3114%2020.6758%2040.9568%2020.7475%2041.542%2020.9965C42.1271%2021.2456%2042.6261%2021.6611%2042.977%2022.1915C43.328%2022.7218%2043.5154%2023.3435%2043.5159%2023.9794C43.5071%2024.4145%2043.4127%2024.8435%2043.2381%2025.2421C43.0634%2025.6406%2042.812%2026.0009%2042.4981%2026.3022C42.1842%2026.6036%2041.814%2026.8401%2041.4086%2026.9984C41.0033%2027.1566%2040.5707%2027.2334%2040.1357%2027.2245ZM48.5959%2020.802C48.1774%2019.8253%2047.557%2018.9482%2046.7754%2018.2283C45.9418%2017.472%2044.9693%2016.8849%2043.9119%2016.4995C41.4636%2015.6551%2038.803%2015.6551%2036.3547%2016.4995C35.2955%2016.8844%2034.3214%2017.4715%2033.4863%2018.2283C32.7168%2018.9523%2032.1066%2019.8289%2031.6948%2020.802C31.2749%2021.8037%2031.0586%2022.8789%2031.0586%2023.965C31.0586%2025.0511%2031.2749%2026.1263%2031.6948%2027.1279C32.1139%2028.1029%2032.7343%2028.9783%2033.5153%2029.6968C34.3485%2030.4572%2035.3231%2031.0462%2036.3837%2031.4304C38.832%2032.2748%2041.4926%2032.2748%2043.9409%2031.4304C44.9994%2031.0451%2045.9723%2030.4562%2046.8044%2029.6968C47.5764%2028.9767%2048.187%2028.1012%2048.5959%2027.1279C49.0165%2026.1256%2049.2331%2025.0495%2049.2331%2023.9625C49.2331%2022.8756%2049.0165%2021.7995%2048.5959%2020.7972'%20fill='white'/%3e%3cpath%20d='M91.7391%2030.1463C92.3081%2030.0776%2092.8579%2029.8971%2093.3568%2029.6151C94.3467%2029.0018%2095.3318%2028.3837%2096.23%2027.7656L105.125%2021.971C106.293%2021.1791%20106.293%2021.0921%20105.395%2020.0394C105.303%2019.9525%20105.212%2019.7787%20105.125%2019.6869C104.81%2019.2433%20104.358%2018.9164%20103.838%2018.7574C103.318%2018.5983%20102.76%2018.6162%20102.252%2018.8081C100.334%2019.3212%2098.555%2020.253%2097.0412%2021.5364C94.9545%2023.3025%2093.1914%2025.4186%2091.8309%2027.7898C91.4599%2028.3769%2091.2149%2029.0346%2091.1114%2029.7213C91.0196%2030.0738%2091.1983%2030.2525%2091.7391%2030.1656M107.192%2020.2133C107.462%2020.1264%20107.549%2019.8608%20107.641%2019.7738C108.988%2017.3932%20110.514%2015.1912%20112.04%2012.9893C114.198%209.72978%20116.444%206.56203%20118.689%203.30254C119.655%201.80559%20120.756%200.405216%20121.654%20-1.10139C123.272%20-3.4772%20125.068%20-5.85785%20126.773%20-8.23366C128.39%20-10.7012%20130.278%20-12.9901%20132.084%20-15.3659C132.891%20-16.5104%20133.61%20-17.7465%20134.499%20-18.8041C135.069%20-19.5327%20135.733%20-20.1823%20136.474%20-20.7356C137.015%20-21.0881%20137.44%20-21.0881%20137.734%20-20.7356C138.092%20-20.3831%20138%20-20.0306%20137.734%20-19.5912C137.436%20-19.0719%20137.105%20-18.572%20136.744%20-18.0942C135.576%20-16.7711%20134.591%20-15.3611%20133.509%20-13.951L132.432%20-12.6328C129.738%20-9.19943%20127.222%20-5.76127%20124.706%20-2.24102C122.823%200.400379%20120.935%203.04178%20119.046%205.77493C116.714%208.85575%20114.647%2012.1152%20112.402%2015.283C110.784%2017.485%20109.345%2019.7787%20107.911%2021.9758L101.151%2032.5462C99.3543%2035.5401%2097.3793%2038.4471%2095.4912%2041.3541C95.2964%2041.7827%2095.0229%2042.171%2094.6847%2042.4985C94.6336%2042.5662%2094.5689%2042.6225%2094.4949%2042.6639C94.4209%2042.7052%2094.3391%2042.7308%2094.2547%2042.739C94.1703%2042.7472%2094.0851%2042.7377%2094.0045%2042.7113C93.924%2042.6849%2093.8497%2042.642%2093.7866%2042.5855C93.5161%2042.4116%2093.6079%2042.0591%2093.6948%2041.7935C94.2356%2041.0885%2094.7765%2040.3835%2095.2256%2039.6785C96.6742%2037.3027%2098.1229%2034.8496%2099.6247%2032.4593C101.513%2029.4654%20103.396%2026.3798%20105.192%2023.3858C105.479%2023.0989%20105.668%2022.7289%20105.733%2022.3283C104.565%2023.1251%20103.488%2023.917%20102.411%2024.709C100.074%2026.3797%2097.8283%2028.0554%2095.4912%2029.7262C94.7193%2030.2505%2093.9127%2030.7216%2093.0767%2031.1362C92.6576%2031.3623%2092.2013%2031.5111%2091.7295%2031.5756C90.0249%2031.8412%2088.7645%2030.7837%2088.8563%2029.1129C88.9494%2028.3025%2089.1291%2027.5044%2089.3923%2026.7323C90.5022%2024.001%2092.3393%2021.6262%2094.704%2019.8656C96.2044%2018.6399%2097.9072%2017.6856%2099.7357%2017.0455C100.778%2016.7121%20101.877%2016.5922%20102.966%2016.693C103.552%2016.6966%20104.129%2016.8432%20104.646%2017.1201C105.162%2017.3969%20105.604%2017.7957%20105.931%2018.2817C106.38%2018.895%20106.742%2019.5131%20107.192%2020.2133Z'%20fill='%23DF6D3F'/%3e%3cpath%20d='M123.9%2021.5116C123.721%2021.3377%20123.9%2021.1591%20123.987%2020.8983C124.349%2019.7539%20123.808%2019.0488%20122.64%2018.8702C121.801%2018.8171%20120.964%2019.0012%20120.225%2019.4013C118.034%2020.4658%20116.126%2022.0346%20114.658%2023.9791C113.76%2025.2974%20112.948%2026.7074%20112.861%2028.2961C112.861%2028.47%20112.77%2028.6438%20112.77%2028.8225C112.861%2030.1456%20113.31%2030.585%20114.658%2030.585C115.499%2030.5673%20116.326%2030.3558%20117.072%2029.9669C118.777%2029.175%20120.394%2028.2044%20121.293%2026.4467C121.384%2026.268%20121.563%2026.0942%20121.563%2025.9155C121.833%2025.3892%20121.655%2025.1236%20121.027%2025.0367H119.578C119.33%2025.0208%20119.086%2024.9603%20118.859%2024.858C118.323%2024.5972%20118.231%2024.153%20118.767%2023.8004C119.221%2023.4675%20119.765%2023.2808%20120.328%2023.2653C120.89%2023.2498%20121.444%2023.4061%20121.915%2023.7135C122.298%2024.0153%20122.776%2024.1711%20123.263%2024.153C127.754%2024.066%20132.153%2024.066%20136.557%2023.8922C137.812%2023.8922%20138.971%2023.8004%20140.241%2023.8004C140.507%2023.8004%20140.956%2023.7135%20140.956%2024.153C141.047%2024.5055%20140.507%2024.5055%20140.241%2024.5055C139.825%2024.5784%20139.403%2024.6091%20138.981%2024.5972L130.211%2024.858C128.058%2024.9497%20125.899%2025.1236%20123.654%2025.0367C123.43%2025.0064%20123.203%2025.0625%20123.02%2025.1934C122.836%2025.3244%20122.709%2025.5204%20122.664%2025.7417C122.434%2026.692%20121.971%2027.57%20121.317%2028.2961C120.172%2029.5416%20118.8%2030.5577%20117.275%2031.29C115.826%2031.9033%20114.223%2032.2558%20112.605%2031.7295C112.046%2031.5924%20111.535%2031.3076%20111.123%2030.9049C110.712%2030.5023%20110.417%2029.9965%20110.268%2029.4406C109.64%2027.1517%20110.181%2025.0366%20111.529%2023.1003C112.401%2021.7735%20113.53%2020.6355%20114.851%2019.7539C116.647%2018.6094%20118.444%2017.7257%20120.602%2017.4601C121.221%2017.3591%20121.854%2017.3931%20122.458%2017.5598C123.062%2017.7265%20123.624%2018.022%20124.103%2018.4259C124.316%2018.6222%20124.485%2018.8604%20124.602%2019.1255C124.718%2019.3906%20124.778%2019.6769%20124.778%2019.9663C124.778%2020.2558%20124.718%2020.5421%20124.602%2020.8072C124.485%2021.0723%20124.316%2021.3105%20124.103%2021.5067C124.103%2021.5936%20124.011%2021.5067%20123.924%2021.5067'%20fill='%23DF6D3F'/%3e%3cpath%20d='M157.675%2020.8996C156.473%2021.1528%20155.321%2021.5979%20154.261%2022.2179C150.33%2024.2502%20146.727%2026.8629%20143.575%2029.9683C142.855%2030.6733%20142.493%2030.852%20142.126%2030.5864C141.406%2030.0552%20141.856%2029.5288%20142.034%2029.0025C142.814%2027.2834%20143.684%2025.607%20144.642%2023.9805C145.615%2022.455%20146.484%2020.8659%20147.245%2019.224C147.423%2018.9584%20147.694%2018.6107%20147.423%2018.2582C147.158%2017.9926%20146.795%2018.3451%20146.457%2018.4321C144.711%2019.148%20143.053%2020.0635%20141.518%2021.1604C136.061%2024.6065%20131.104%2028.7855%20126.785%2033.5803C126.495%2033.8423%20126.279%2034.1751%20126.157%2034.546C126.078%2034.6841%20125.956%2034.7927%20125.809%2034.8554C125.663%2034.9182%20125.5%2034.9316%20125.346%2034.8937C125.185%2034.8423%20125.049%2034.7323%20124.966%2034.5855C124.883%2034.4388%20124.858%2034.2661%20124.896%2034.1018C125.082%2033.4389%20125.322%2032.7927%20125.616%2032.1702C127.065%2029.5288%20128.673%2026.9744%20130.286%2024.333C131.546%2022.3048%20132.801%2020.2815%20134.24%2018.3452C134.776%2017.6401%20135.317%2017.022%20135.858%2016.317C136.097%2016.0357%20136.407%2015.8239%20136.756%2015.7038C136.965%2015.6513%20137.183%2015.6564%20137.389%2015.7184C137.595%2015.7805%20137.78%2015.8973%20137.925%2016.0563C138.063%2016.1895%20138.155%2016.3637%20138.188%2016.5532C138.22%2016.7427%20138.19%2016.9375%20138.103%2017.109C137.857%2017.6105%20137.556%2018.0834%20137.205%2018.519C135.588%2020.721%20133.878%2022.9229%20132.265%2025.1249C131.644%2025.941%20131.073%2026.794%20130.556%2027.6794C130.972%2027.4642%20131.339%2027.1649%20131.633%2026.8005C135.388%2023.2672%20139.48%2020.1102%20143.85%2017.3745C144.948%2016.6256%20146.162%2016.0612%20147.443%2015.7038C148.128%2015.4921%20148.869%2015.5544%20149.509%2015.8776C150.006%2016.087%20150.409%2016.4717%20150.642%2016.9586C150.874%2017.4455%20150.92%2018.0008%20150.77%2018.519C150.567%2019.4178%20150.168%2020.2606%20149.601%2020.9865C148.703%2022.2179%20147.713%2023.541%20146.815%2024.8497C146.636%2025.1152%20146.457%2025.4677%20146.187%2025.8154C146.306%2025.8382%20146.429%2025.8252%20146.541%2025.7779C146.653%2025.7306%20146.748%2025.6512%20146.815%2025.5498C149.392%2023.3815%20152.193%2021.4925%20155.169%2019.9145C155.796%2019.6489%20156.429%2019.3882%20156.965%2019.2095C157.332%2019.0405%20157.73%2018.9501%20158.134%2018.9439C159.751%2018.857%20160.65%2020.0015%20160.379%2021.4984C160.107%2022.497%20159.684%2023.448%20159.124%2024.3185C158.675%2025.1973%20158.225%2026.081%20157.776%2026.873C157.685%2027.1385%20157.598%2027.3993%20157.506%2027.7518C157.235%2028.7176%20157.598%2029.2488%20158.675%2029.2488C159.495%2029.304%20160.318%2029.1838%20161.089%2028.8963C165.401%2027.4862%20169.622%2025.8154%20173.847%2023.966C174.094%2023.8686%20174.334%2023.7507%20174.562%2023.6135C174.653%2023.6135%20174.832%2023.5265%20174.924%2023.7004C175.102%2023.879%20174.924%2024.0529%20174.832%2024.1398C174.377%2024.4292%20173.891%2024.6657%20173.383%2024.8448C169.363%2026.7609%20165.22%2028.4095%20160.983%2029.7799C160.098%2030.1319%20159.154%2030.3105%20158.201%2030.3063C157.521%2030.3214%20156.861%2030.0733%20156.359%2029.6135C155.857%2029.1538%20155.551%2028.518%20155.507%2027.8387C155.441%2027.0864%20155.563%2026.3295%20155.864%2025.6368C156.182%2024.473%20156.634%2023.35%20157.211%2022.2904C157.504%2021.8803%20157.661%2021.3889%20157.66%2020.8851'%20fill='%23DF6D3F'/%3e%3c/svg%3e",office:"data:image/svg+xml,%3csvg%20width='166'%20height='16'%20viewBox='0%200%20166%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M97.7521%2014.1586C98.5784%2014.1685%2099.3988%2014.019%20100.169%2013.7184C100.884%2013.4402%20101.533%2013.0159%20102.075%2012.4726C102.619%2011.9215%20103.044%2011.2649%20103.325%2010.5432C103.918%208.92878%20103.918%207.15601%20103.325%205.5416C103.044%204.81845%20102.619%204.16028%20102.075%203.60746C101.533%203.06419%20100.884%202.63992%20100.169%202.36174C98.6094%201.77479%2096.89%201.77479%2095.3309%202.36174C94.6158%202.63992%2093.9667%203.06419%2093.4249%203.60746C92.8807%204.15937%2092.4566%204.81788%2092.1791%205.5416C91.5796%207.1549%2091.5796%208.92988%2092.1791%2010.5432C92.4571%2011.2652%2092.8812%2011.9221%2093.4249%2012.4726C93.9667%2013.0159%2094.6158%2013.4402%2095.3309%2013.7184C96.1022%2014.019%2096.9243%2014.1685%2097.7521%2014.1586ZM97.7521%2015.985C96.6578%2015.9964%2095.5716%2015.796%2094.5535%2015.3949C93.607%2015.0213%2092.7466%2014.4588%2092.0246%2013.7418C91.3092%2013.022%2090.744%2012.1672%2090.3621%2011.2269C89.5564%209.17872%2089.5564%206.90138%2090.3621%204.85318C90.744%203.91432%2091.3092%203.06098%2092.0246%202.34301C92.745%201.62399%2093.6058%201.06123%2094.5535%200.689858C95.5713%200.287276%2096.6575%200.0853211%2097.7521%200.0951043C98.8421%200.0847653%2099.9237%200.286772%20100.937%200.689858C101.884%201.06351%20102.745%201.625%20103.47%202.3405C104.194%203.05601%20104.766%203.91073%20105.151%204.85318C105.951%206.9026%20105.951%209.1775%20105.151%2011.2269C104.767%2012.1705%20104.196%2013.0264%20103.471%2013.7428C102.747%2014.4592%20101.884%2015.0212%20100.937%2015.3949C99.9234%2015.7964%2098.8418%2015.9968%2097.7521%2015.985Z'%20fill='%2398C5EA'/%3e%3cpath%20d='M108.109%200.525391H118.511V2.35181H110.081V7.50326H116.759V9.3297H110.081V15.5536H108.109V0.525391Z'%20fill='%2398C5EA'/%3e%3cpath%20d='M120.195%200.525391H130.597V2.35181H122.167V7.50326H128.845V9.3297H122.167V15.5536H120.195V0.525391Z'%20fill='%2398C5EA'/%3e%3cpath%20d='M134.245%200.525391H132.273V15.5536H134.245V0.525391Z'%20fill='%2398C5EA'/%3e%3cpath%20d='M144.627%2015.9998C143.533%2016.0107%20142.447%2015.8103%20141.429%2015.4097C140.482%2015.0361%20139.622%2014.4736%20138.9%2013.7565C138.184%2013.0368%20137.619%2012.1819%20137.237%2011.2417C136.431%209.19349%20136.431%206.91615%20137.237%204.86795C137.619%203.9291%20138.184%203.07575%20138.9%202.35778C139.62%201.63877%20140.481%201.07601%20141.429%200.704635C143.121%200.0601014%20144.967%20-0.0638496%20146.73%200.348711C147.317%200.491815%20147.885%200.700768%20148.425%200.971577C148.901%201.2104%20149.346%201.50604%20149.75%201.85201C150.107%202.15776%20150.437%202.49472%20150.734%202.85888C151.395%203.66073%20151.887%204.58779%20152.181%205.58447H150.247C149.97%204.91376%20149.577%204.29709%20149.085%203.76272C148.855%203.52233%20148.606%203.30002%20148.341%203.09773C148.042%202.87056%20147.721%202.67588%20147.381%202.51701C146.988%202.33411%20146.577%202.19437%20146.154%202.10022C145.665%201.9879%20145.166%201.93289%20144.665%201.9363C143.837%201.92891%20143.015%202.07828%20142.243%202.37652C141.529%202.65591%20140.88%203.08003%20140.337%203.62224C139.796%204.17654%20139.372%204.8344%20139.092%205.55637C138.492%207.16967%20138.492%208.94466%20139.092%2010.558C139.373%2011.2785%20139.796%2011.9348%20140.337%2012.4874C140.88%2013.0296%20141.529%2013.4537%20142.243%2013.7331C143.015%2014.0334%20143.837%2014.1828%20144.665%2014.1733C145.18%2014.1784%20145.694%2014.1202%20146.196%2014.0001C146.633%2013.8936%20147.055%2013.7364%20147.456%2013.5318C147.807%2013.3596%20148.137%2013.1475%20148.439%2012.8995C148.708%2012.677%20148.962%2012.4361%20149.198%2012.1783C149.703%2011.5894%20150.097%2010.9134%20150.359%2010.1833H152.326C151.997%2011.2348%20151.478%2012.2173%20150.795%2013.0822C150.488%2013.469%20150.148%2013.8279%20149.779%2014.1546C149.37%2014.5172%20148.92%2014.8315%20148.439%2015.0912C147.902%2015.3772%20147.333%2015.5973%20146.744%2015.7469C146.064%2015.9179%20145.365%2016.0013%20144.665%2015.9951'%20fill='%2398C5EA'/%3e%3cpath%20d='M154.469%200.525391H165.198V2.35181H156.44V7.07711H163.554V8.89885H156.44V13.7318H165.198V15.5536H154.469V0.525391Z'%20fill='%2398C5EA'/%3e%3cpath%20d='M7.94262%2015.9431C7.14631%2015.9516%206.35153%2015.8715%205.57295%2015.7042C4.9273%2015.5714%204.29884%2015.3656%203.69969%2015.0907C3.19423%2014.8651%202.72162%2014.5721%202.29475%2014.2197C1.93338%2013.9129%201.60672%2013.5674%201.32065%2013.1894C0.676778%2012.3839%200.225107%2011.4421%200%2010.4357H5.59167C5.67774%2010.7336%205.8209%2011.012%206.01316%2011.2552C6.21099%2011.4822%206.4512%2011.6683%206.72032%2011.8032C7.09985%2011.9841%207.51788%2012.0693%207.93793%2012.0514C8.39013%2012.0909%208.84406%2011.9982%209.24451%2011.7844C9.3497%2011.7226%209.43833%2011.6362%209.50277%2011.5326C9.56721%2011.429%209.60555%2011.3114%209.6145%2011.1897C9.61076%2011.0638%209.57253%2010.9413%209.50399%2010.8356C9.43546%2010.7299%209.33922%2010.645%209.22579%2010.5903C8.89896%2010.403%208.54958%2010.2582%208.18612%2010.1594C7.75059%2010.0283%207.2495%209.90183%206.70626%209.7707C6.16302%209.63957%205.59635%209.4944%205.02969%209.33049C4.45864%209.16471%203.89868%208.96293%203.35314%208.72636C2.82084%208.50292%202.32388%208.20318%201.87794%207.83656C1.44919%207.47883%201.09578%207.03947%200.838272%206.54401C0.562509%205.98226%200.427518%205.36187%200.444904%204.73633C0.453071%204.12858%200.614126%203.53267%200.913218%203.00356C1.25185%202.40332%201.71877%201.88522%202.28069%201.48623C2.95973%201.00572%203.71494%200.643153%204.51455%200.413783C5.51989%200.121899%206.56342%20-0.0170308%207.6101%200.00166391C8.34314%20-0.00437066%209.07475%200.0678424%209.79246%200.217084C10.3858%200.34493%2010.9636%200.536489%2011.5159%200.788428C11.9811%201.00581%2012.4169%201.28118%2012.8131%201.60798C13.1544%201.88963%2013.468%202.20327%2013.7497%202.54461C14.3412%203.29106%2014.7674%204.15465%2015.0001%205.07819H9.39438C9.35106%204.85802%209.25097%204.65301%209.10402%204.48343C8.96599%204.30803%208.79193%204.1643%208.59358%204.06195C8.32132%203.92942%208.02035%203.86665%207.7178%203.8793C7.32734%203.84537%206.9354%203.92506%206.58918%204.10877C6.49535%204.16173%206.41648%204.23763%206.35997%204.32937C6.30346%204.4211%206.27114%204.52567%206.26604%204.6333C6.26604%204.89087%206.49084%205.1016%206.94979%205.22336C7.40874%205.34512%207.97071%205.49968%208.64509%205.64486C9.31946%205.79003%2010.05%205.95862%2010.8508%206.15999C11.6181%206.35264%2012.3578%206.6422%2013.0519%207.02169C13.714%207.38115%2014.2932%207.87577%2014.7519%208.47346C15.2291%209.13904%2015.4699%209.94524%2015.4356%2010.7635C15.4384%2011.4411%2015.2778%2012.1094%2014.9673%2012.7117C14.6275%2013.3589%2014.1475%2013.9221%2013.5624%2014.3602C12.8542%2014.8732%2012.0618%2015.2584%2011.2208%2015.4982C10.1677%2015.8005%209.07562%2015.9457%207.98006%2015.929'%20fill='white'/%3e%3cpath%20d='M20.1034%205.09285H15.4062V0.456543H30.3876V5.09285H25.6951V15.5128H20.1034V5.09285Z'%20fill='white'/%3e%3cpath%20d='M49.5703%200.456543H55.8317L60.0137%207.5515V0.456543H65.5585V15.5128H59.2972L55.1198%208.41319V15.5128H49.5703V0.456543Z'%20fill='white'/%3e%3cpath%20d='M67.4609%200.456543H80.6018V4.75566H73.0526V6.15593H80.6018V9.81346H73.0526V11.209H80.6018V15.5128H67.4609V0.456543Z'%20fill='white'/%3e%3cpath%20d='M39.423%2011.1848C38.7968%2011.1609%2038.1915%2010.9533%2037.6825%2010.588C37.1734%2010.2226%2036.783%209.71557%2036.56%209.13C36.337%208.54442%2036.2911%207.90619%2036.4281%207.29474C36.5652%206.6833%2036.879%206.12567%2037.3306%205.69129C37.7823%205.2569%2038.3516%204.96495%2038.9679%204.85179C39.5842%204.73863%2040.2202%204.80925%2040.7967%205.05487C41.3732%205.30049%2041.8647%205.71026%2042.21%206.23315C42.5553%206.75603%2042.7391%207.36893%2042.7386%207.99554C42.7214%208.85799%2042.3625%209.67833%2041.7408%2010.2763C41.1191%2010.8743%2040.2855%2011.2011%2039.423%2011.1848ZM47.7402%204.87188C47.3292%203.9134%2046.7195%203.05305%2045.9513%202.34768C45.136%201.6012%2044.181%201.02344%2043.1414%200.647696C40.7379%20-0.189206%2038.1221%20-0.189206%2035.7186%200.647696C34.6787%201.02288%2033.7237%201.6007%2032.9087%202.34768C32.1406%203.05305%2031.5308%203.9134%2031.1198%204.87188C30.7055%205.85627%2030.4922%206.9135%2030.4922%207.98149C30.4922%209.04948%2030.7055%2010.1067%2031.1198%2011.0911C31.5295%2012.0517%2032.1394%2012.9138%2032.9087%2013.62C33.726%2014.3638%2034.6804%2014.9412%2035.7186%2015.32C38.1232%2016.1503%2040.7368%2016.1503%2043.1414%2015.32C44.1793%2014.9406%2045.1336%2014.3633%2045.9513%2013.62C46.7206%2012.9138%2047.3305%2012.0517%2047.7402%2011.0911C48.1544%2010.1067%2048.3678%209.04948%2048.3678%207.98149C48.3678%206.9135%2048.1544%205.85627%2047.7402%204.87188Z'%20fill='white'/%3e%3c/svg%3e",newOffice:"data:image/svg+xml,%3csvg%20width='137'%20height='14'%20viewBox='0%200%20137%2014'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M80.9482%2011.7249C81.6325%2011.7331%2082.3119%2011.6093%2082.9493%2011.3604C83.5414%2011.13%2084.079%2010.7787%2084.5277%2010.3288C84.9782%209.87241%2085.3306%209.32866%2085.5632%208.731C86.0545%207.39411%2086.0545%205.92607%2085.5632%204.58918C85.3307%203.99034%2084.9783%203.4453%2084.5277%202.98751C84.079%202.53763%2083.5414%202.18629%2082.9493%201.95593C81.6581%201.46988%2080.2343%201.46988%2078.9432%201.95593C78.351%202.18629%2077.8135%202.53763%2077.3648%202.98751C76.9142%203.44455%2076.563%203.98987%2076.3332%204.58918C75.8368%205.92516%2075.8368%207.39503%2076.3332%208.731C76.5634%209.32893%2076.9146%209.87288%2077.3648%2010.3288C77.8135%2010.7787%2078.351%2011.13%2078.9432%2011.3604C79.5819%2011.6094%2080.2627%2011.7331%2080.9482%2011.7249ZM80.9482%2013.2374C80.042%2013.2468%2079.1426%2013.0809%2078.2994%2012.7487C77.5156%2012.4393%2076.8031%2011.9735%2076.2053%2011.3798C75.6128%2010.7837%2075.1448%2010.0758%2074.8285%209.2972C74.1613%207.60108%2074.1613%205.71521%2074.8285%204.01909C75.1448%203.24163%2075.6128%202.53497%2076.2053%201.94042C76.8018%201.345%2077.5147%200.878978%2078.2994%200.571443C79.1423%200.238064%2080.0418%200.0708246%2080.9482%200.0789261C81.8509%200.0703643%2082.7465%200.237647%2083.5853%200.571443C84.3696%200.880861%2085.0832%201.34584%2085.683%201.93835C86.2829%202.53086%2086.7565%203.23865%2087.0756%204.01909C87.7374%205.71623%2087.7374%207.60007%2087.0756%209.2972C86.7574%2010.0786%2086.284%2010.7873%2085.6841%2011.3806C85.0842%2011.9738%2084.3702%2012.4393%2083.5853%2012.7487C82.7463%2013.0812%2081.8506%2013.2472%2080.9482%2013.2374Z'%20fill='%231C3040'/%3e%3cpath%20d='M89.5234%200.435059H98.1367V1.94752H91.1561V6.21345H96.6863V7.72592H91.1561V12.8799H89.5234V0.435059Z'%20fill='%231C3040'/%3e%3cpath%20d='M99.5312%200.435059H108.145V1.94752H101.164V6.21345H106.694V7.72592H101.164V12.8799H99.5312V0.435059Z'%20fill='%231C3040'/%3e%3cpath%20d='M111.172%200.435059H109.539V12.8799H111.172V0.435059Z'%20fill='%231C3040'/%3e%3cpath%20d='M119.769%2013.2493C118.862%2013.2583%20117.963%2013.0924%20117.12%2012.7606C116.336%2012.4512%20115.623%2011.9854%20115.026%2011.3917C114.433%2010.7956%20113.965%2010.0877%20113.649%209.30911C112.982%207.61299%20112.982%205.72712%20113.649%204.031C113.965%203.25354%20114.433%202.54688%20115.026%201.95233C115.622%201.35691%20116.335%200.890887%20117.12%200.583352C118.521%200.0496124%20120.05%20-0.0530316%20121.51%200.288611C121.996%200.407116%20122.467%200.58015%20122.914%200.804407C123.308%201.00218%20123.676%201.247%20124.011%201.53349C124.307%201.78669%20124.579%202.06572%20124.826%202.36729C125.373%203.0313%20125.78%203.799%20126.024%204.62435H124.422C124.193%204.06893%20123.867%203.55827%20123.46%203.11576C123.269%202.91669%20123.063%202.7326%20122.844%202.56507C122.597%202.37696%20122.33%202.21575%20122.049%202.08418C121.724%201.93272%20121.383%201.817%20121.033%201.73903C120.628%201.64603%20120.214%201.60047%20119.8%201.6033C119.114%201.59717%20118.434%201.72087%20117.795%201.96784C117.203%202.19921%20116.666%202.55042%20116.216%202.99942C115.768%203.45845%20115.417%204.00322%20115.185%204.60109C114.688%205.93706%20114.688%207.40693%20115.185%208.74291C115.417%209.33959%20115.768%209.88308%20116.216%2010.3407C116.666%2010.7897%20117.203%2011.1409%20117.795%2011.3723C118.433%2011.6209%20119.114%2011.7446%20119.8%2011.7368C120.227%2011.741%20120.652%2011.6928%20121.068%2011.5933C121.429%2011.5052%20121.779%2011.375%20122.111%2011.2055C122.402%2011.063%20122.675%2010.8873%20122.925%2010.682C123.148%2010.4977%20123.358%2010.2982%20123.554%2010.0847C123.972%209.59707%20124.298%209.03722%20124.515%208.43265H126.144C125.871%209.30342%20125.441%2010.117%20124.876%2010.8332C124.622%2011.1535%20124.341%2011.4507%20124.034%2011.7213C123.696%2012.0216%20123.324%2012.2819%20122.925%2012.4969C122.481%2012.7337%20122.01%2012.916%20121.521%2013.0399C120.959%2013.1815%20120.38%2013.2506%20119.8%2013.2454'%20fill='%231C3040'/%3e%3cpath%20d='M127.914%200.435059H136.799V1.94752H129.547V5.86055H135.438V7.36913H129.547V11.3714H136.799V12.8799H127.914V0.435059Z'%20fill='%231C3040'/%3e%3cpath%20d='M70.6166%202.16538H71.21C71.2474%202.17059%2071.2855%202.16745%2071.3216%202.15618C71.3576%202.14492%2071.3908%202.12581%2071.4186%202.10023C71.4464%202.07465%2071.4682%202.04324%2071.4824%202.00823C71.4966%201.97323%2071.5029%201.93551%2071.5009%201.89779C71.5009%201.74266%2071.4039%201.63795%2071.21%201.63795H70.6166V2.16538ZM71.1906%201.24239C71.2827%201.23335%2071.3756%201.24301%2071.4638%201.27078C71.552%201.29855%2071.6337%201.34384%2071.7039%201.40397C71.7742%201.4641%2071.8316%201.5378%2071.8727%201.62066C71.9137%201.70352%2071.9377%201.79383%2071.943%201.88615C71.9441%202.00383%2071.9119%202.11942%2071.8501%202.2196C71.7884%202.31977%2071.6996%202.40046%2071.5939%202.45236L71.9042%202.97202H71.4117L71.1906%202.56094H70.6166V2.97202H70.1629V1.22687L71.1906%201.24239ZM70.9696%203.54986C71.1602%203.55946%2071.3507%203.52977%2071.5293%203.46265C71.708%203.39552%2071.8709%203.29237%2072.008%203.15963C72.1451%203.02689%2072.2535%202.86739%2072.3263%202.69101C72.3992%202.51463%2072.435%202.32515%2072.4316%202.13435C72.4291%201.94594%2072.3891%201.75992%2072.314%201.58713C72.2389%201.41434%2072.1301%201.25823%2071.994%201.12792C71.8579%200.997603%2071.6972%200.895682%2071.5214%200.828111C71.3455%200.76054%2071.1579%200.728674%2070.9696%200.734354C70.7847%200.734354%2070.6016%200.770762%2070.4308%200.841508C70.26%200.912255%2070.1048%201.01595%2069.9741%201.14668C69.8434%201.2774%2069.7397%201.43258%2069.669%201.60338C69.5982%201.77418%2069.5618%201.95723%2069.5618%202.1421C69.5618%202.32697%2069.5982%202.51004%2069.669%202.68083C69.7397%202.85163%2069.8434%203.00681%2069.9741%203.13754C70.1048%203.26826%2070.26%203.37196%2070.4308%203.4427C70.6016%203.51345%2070.7847%203.54986%2070.9696%203.54986ZM70.9696%200.261223C71.2212%200.255557%2071.4714%200.300037%2071.7057%200.392071C71.9399%200.484106%2072.1535%200.621852%2072.334%200.797281C72.5145%200.97271%2072.6583%201.18231%2072.7569%201.41386C72.8556%201.64542%2072.9071%201.89429%2072.9086%202.14598C72.9194%202.53162%2072.8149%202.91172%2072.6085%203.23766C72.4021%203.5636%2072.1032%203.82056%2071.75%203.97568C71.3968%204.13081%2071.0053%204.17704%2070.6257%204.10846C70.246%204.03989%2069.8954%203.85962%2069.6188%203.59072C69.3422%203.32183%2069.152%202.97653%2069.0727%202.59898C68.9934%202.22143%2069.0285%201.82881%2069.1735%201.47132C69.3185%201.11383%2069.5669%200.807732%2069.8868%200.592167C70.2068%200.376602%2070.5838%200.261374%2070.9696%200.261223Z'%20fill='%23141416'/%3e%3cpath%20d='M6.57729%2013.2025C5.91787%2013.2096%205.25972%2013.1432%204.61497%2013.0047C4.0803%2012.8947%203.55988%2012.7243%203.06372%2012.4967C2.64514%2012.3098%202.25378%2012.0672%201.90029%2011.7753C1.60103%2011.5213%201.33053%2011.2352%201.09363%2010.9222C0.560441%2010.2551%200.186411%209.4752%200%208.64182H4.63047C4.70175%208.88852%204.8203%209.11902%204.97951%209.32049C5.14333%209.5084%205.34225%209.66253%205.56511%209.77424C5.8794%209.92402%206.22557%209.99458%206.57341%209.97978C6.94788%2010.0125%207.32378%209.93572%207.6554%209.75872C7.7425%209.70754%207.8159%209.63599%207.86926%209.5502C7.92262%209.46441%207.95438%209.36696%207.96179%209.2662C7.95869%209.16193%207.92703%209.06051%207.87028%208.97298C7.81352%208.88545%207.73383%208.81518%207.63989%208.76981C7.36925%208.61476%207.07992%208.49486%206.77894%208.41301C6.41828%208.30443%206.00333%208.19972%205.55347%208.09114C5.1036%207.98255%204.63435%207.86233%204.16509%207.72659C3.69221%207.58931%203.22851%207.42222%202.77674%207.22631C2.33594%207.04129%201.92441%206.79307%201.55513%206.48947C1.20008%206.19324%200.90742%205.8294%200.694174%205.41911C0.465815%204.95392%200.354028%204.44018%200.368426%203.92216C0.375189%203.41889%200.508559%202.92541%200.756238%202.48725C1.03666%201.9902%201.42332%201.56116%201.88864%201.23075C2.45096%200.832838%203.07635%200.532596%203.73851%200.342654C4.57103%200.100945%205.43518%20-0.0141033%206.30194%200.00137789C6.90897%20-0.00361936%207.51482%200.0561805%208.10916%200.179768C8.60052%200.285637%209.07901%200.444268%209.5363%200.652899C9.92157%200.832911%2010.2825%201.06095%2010.6105%201.33157C10.8932%201.56481%2011.1529%201.82453%2011.3861%202.10719C11.876%202.72533%2012.2289%203.44047%2012.4216%204.20526H7.7795C7.74363%204.02294%207.66075%203.85316%207.53906%203.71274C7.42476%203.56749%207.28062%203.44846%207.11636%203.36371C6.8909%203.25396%206.64166%203.20198%206.39113%203.21246C6.06778%203.18436%205.74322%203.25035%205.45651%203.40248C5.37881%203.44634%205.3135%203.50919%205.2667%203.58516C5.2199%203.66112%205.19315%203.74772%205.18892%203.83684C5.18892%204.05014%205.37508%204.22465%205.75514%204.32548C6.13519%204.42631%206.60056%204.55429%207.15901%204.67452C7.71746%204.79474%208.32243%204.93434%208.98559%205.1011C9.62099%205.26063%2010.2335%205.50041%2010.8083%205.81467C11.3566%206.11234%2011.8362%206.52194%2012.2161%207.01689C12.6113%207.56805%2012.8106%208.23567%2012.7823%208.91329C12.7846%209.47442%2012.6515%2010.0278%2012.3945%2010.5266C12.113%2011.0625%2011.7156%2011.5289%2011.231%2011.8917C10.6446%2012.3166%209.98837%2012.6355%209.29198%2012.8341C8.41986%2013.0844%207.51554%2013.2046%206.6083%2013.1909'%20fill='%23141416'/%3e%3cpath%20d='M16.6476%204.21726H12.7578V0.37793H25.1639V4.21726H21.278V12.8461H16.6476V4.21726Z'%20fill='%23141416'/%3e%3cpath%20d='M41.0469%200.37793H46.2319L49.6951%206.25327V0.37793H54.2867V12.8461H49.1017L45.6424%206.96685V12.8461H41.0469V0.37793Z'%20fill='%23141416'/%3e%3cpath%20d='M55.8672%200.37793H66.7492V3.93804H60.4977V5.0976H66.7492V8.12641H60.4977V9.28208H66.7492V12.8461H55.8672V0.37793Z'%20fill='%23141416'/%3e%3cpath%20d='M32.6456%209.26214C32.1271%209.24236%2031.6258%209.07049%2031.2043%208.76793C30.7827%208.46538%2030.4595%208.0455%2030.2748%207.56059C30.0901%207.07568%2030.0521%206.54715%2030.1656%206.04081C30.279%205.53448%2030.539%205.0727%2030.9129%204.71299C31.2869%204.35328%2031.7584%204.11151%2032.2688%204.0178C32.7792%203.92409%2033.3058%203.98258%2033.7832%204.18597C34.2606%204.38937%2034.6676%204.7287%2034.9535%205.16171C35.2394%205.59471%2035.3917%206.10225%2035.3913%206.62115C35.377%207.33534%2035.0799%208.01467%2034.565%208.50987C34.0502%209.00507%2033.3598%209.27565%2032.6456%209.26214ZM39.5331%204.03444C39.1927%203.24072%2038.6878%202.52826%2038.0517%201.94414C37.3766%201.32598%2036.5857%200.847534%2035.7248%200.536382C33.7345%20-0.156659%2031.5683%20-0.156659%2029.578%200.536382C28.7169%200.847068%2027.926%201.32557%2027.2511%201.94414C26.615%202.52826%2026.1101%203.24072%2025.7697%204.03444C25.4267%204.84961%2025.25%205.72511%2025.25%206.60951C25.25%207.49392%2025.4267%208.3694%2025.7697%209.18458C26.109%209.98004%2026.614%2010.694%2027.2511%2011.2788C27.9279%2011.8947%2028.7183%2012.3729%2029.578%2012.6865C31.5693%2013.3741%2033.7336%2013.3741%2035.7248%2012.6865C36.5843%2012.3724%2037.3746%2011.8943%2038.0517%2011.2788C38.6888%2010.694%2039.1938%209.98004%2039.5331%209.18458C39.8761%208.3694%2040.0529%207.49392%2040.0529%206.60951C40.0529%205.72511%2039.8761%204.84961%2039.5331%204.03444Z'%20fill='%23141416'/%3e%3c/svg%3e",newDom:"data:image/svg+xml,%3csvg%20width='143'%20height='52'%20viewBox='0%200%20143%2052'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M70.8048%2032.2262H71.4035C71.4412%2032.2308%2071.4794%2032.2273%2071.5156%2032.2161C71.5518%2032.2048%2071.5852%2032.186%2071.6136%2032.1608C71.6419%2032.1357%2071.6647%2032.1048%2071.6802%2032.0703C71.6958%2032.0357%2071.7039%2031.9982%2071.7039%2031.9603C71.7039%2031.9224%2071.6958%2031.8849%2071.6802%2031.8503C71.6647%2031.8157%2071.6419%2031.7849%2071.6136%2031.7597C71.5852%2031.7346%2071.5518%2031.7158%2071.5156%2031.7045C71.4794%2031.6932%2071.4412%2031.6898%2071.4035%2031.6944H70.8048V32.2262ZM71.3839%2031.3004C71.476%2031.2918%2071.5689%2031.3018%2071.6571%2031.3299C71.7453%2031.358%2071.827%2031.4035%2071.8972%2031.4638C71.9674%2031.5241%2072.0247%2031.5979%2072.0658%2031.6808C72.1069%2031.7638%2072.1309%2031.8541%2072.1363%2031.9465C72.138%2032.0641%2072.1064%2032.1799%2072.045%2032.2803C71.9837%2032.3807%2071.8951%2032.4616%2071.7896%2032.5138L72.0969%2033.0377H71.6045L71.3839%2032.6201H70.8048V33.0377H70.3517V31.3004H71.3839ZM71.1633%2033.6128C71.3539%2033.6226%2071.5446%2033.593%2071.7234%2033.5261C71.9022%2033.4591%2072.0653%2033.3562%2072.2027%2033.2236C72.3401%2033.091%2072.4488%2032.9316%2072.5221%2032.7553C72.5953%2032.579%2072.6316%2032.3895%2072.6287%2032.1986C72.6267%2032.0095%2072.587%2031.8227%2072.5119%2031.6491C72.4368%2031.4755%2072.3278%2031.3186%2072.1913%2031.1877C72.0549%2031.0567%2071.8937%2030.9543%2071.7171%2030.8864C71.5406%2030.8185%2071.3523%2030.7865%2071.1633%2030.7923C70.7892%2030.7923%2070.4305%2030.9408%2070.166%2031.2053C69.9016%2031.4698%2069.753%2031.8285%2069.753%2032.2026C69.753%2032.5766%2069.9016%2032.9353%2070.166%2033.1998C70.4305%2033.4643%2070.7892%2033.6128%2071.1633%2033.6128ZM71.1633%2030.3195C71.4174%2030.3106%2071.6707%2030.3527%2071.9083%2030.4433C72.1459%2030.5339%2072.3629%2030.6712%2072.5465%2030.8471C72.7302%2031.023%2072.8766%2031.2339%2072.9774%2031.4674C73.0781%2031.7009%2073.131%2031.9522%2073.1329%2032.2065C73.1494%2032.5992%2073.0481%2032.9878%2072.8419%2033.3224C72.6358%2033.657%2072.3343%2033.9223%2071.9761%2034.0841C71.618%2034.246%2071.2196%2034.297%2070.8322%2034.2306C70.4449%2034.1642%2070.0862%2033.9834%2069.8024%2033.7115C69.5186%2033.4397%2069.3226%2033.0891%2069.2397%2032.7049C69.1567%2032.3208%2069.1906%2031.9206%2069.3369%2031.5558C69.4833%2031.1911%2069.7354%2030.8784%2070.0609%2030.6581C70.3863%2030.4378%2070.7702%2030.3199%2071.1633%2030.3195Z'%20fill='%23141416'/%3e%3cpath%20d='M6.61418%2043.2933C5.95238%2043.3001%205.29185%2043.234%204.6445%2043.0963C4.11407%2042.9836%203.59757%2042.8132%203.10421%2042.5881C2.67999%2042.3998%202.2826%2042.156%201.9224%2041.8633C1.61748%2041.6139%201.34014%2041.3326%201.09514%2041.0242C0.562615%2040.3548%200.188244%2039.5738%200%2038.7394H4.66419C4.73754%2038.986%204.85793%2039.2161%205.01874%2039.4169C5.18168%2039.6056%205.37969%2039.7607%205.60176%2039.8739C5.91743%2040.0239%206.26504%2040.0942%206.61418%2040.0788C6.99078%2040.1122%207.36891%2040.0341%207.70144%2039.8542C7.78873%2039.8042%207.8624%2039.7335%207.91598%2039.6483C7.96955%2039.5631%208.0014%2039.4661%208.00871%2039.3657C8.00528%2039.2604%207.97297%2039.158%207.91531%2039.0698C7.85765%2038.9815%207.77685%2038.9109%207.68174%2038.8654C7.41084%2038.7092%207.12086%2038.5887%206.81902%2038.5069C6.46054%2038.4006%206.03115%2038.2942%205.59388%2038.1839C5.15661%2038.0736%204.67207%2037.9554%204.20329%2037.8176C3.72803%2037.6814%203.26219%2037.5143%202.80876%2037.3173C2.36591%2037.1325%201.95301%2036.8829%201.58362%2036.5767C1.22619%2036.2819%200.93264%2035.9173%200.720903%2035.5052C0.493879%2035.0382%200.383058%2034.5233%200.397876%2034.0043C0.406858%2033.4996%200.542304%2033.0052%200.791811%2032.5664C1.07127%2032.068%201.45896%2031.6385%201.92634%2031.3097C2.48937%2030.9082%203.11688%2030.6057%203.78178%2030.4155C4.61749%2030.1746%205.4846%2030.0604%206.35418%2030.0767C6.96151%2030.0708%207.56772%2030.1303%208.16234%2030.254C8.65544%2030.3566%209.13521%2030.5152%209.59233%2030.7267C9.97854%2030.9069%2010.34%2031.1359%2010.6678%2031.4082C11.5682%2032.1445%2012.2043%2033.154%2012.4799%2034.284H7.82356C7.78533%2034.1017%207.70127%2033.9322%207.57932%2033.7915C7.46343%2033.6463%207.31852%2033.5269%207.15387%2033.4409C6.92806%2033.3327%206.67923%2033.2813%206.42903%2033.2912C6.10489%2033.264%205.7797%2033.3296%205.49146%2033.4803C5.41333%2033.5244%205.34773%2033.5877%205.30086%2033.6643C5.25399%2033.7408%205.22739%2033.828%205.22358%2033.9176C5.22358%2034.1303%205.41267%2034.3115%205.79085%2034.4061C6.16903%2034.5006%206.63781%2034.6385%207.20114%2034.7567C7.76447%2034.8749%208.38295%2035.0167%209.029%2035.1861C9.66663%2035.3435%2010.2811%2035.5831%2010.8569%2035.8991C11.4064%2036.1974%2011.8869%2036.6081%2012.2671%2037.1045C12.6641%2037.6573%2012.8638%2038.3274%2012.8344%2039.0072C12.8343%2039.5694%2012.6992%2040.1233%2012.4405%2040.6224C12.1554%2041.1619%2011.7513%2041.6293%2011.2587%2041.9893C10.6637%2042.4193%209.99664%2042.7395%209.289%2042.9348C8.41363%2043.1875%207.50548%2043.3083%206.59448%2043.2933'%20fill='%23141416'/%3e%3cpath%20d='M16.7085%2034.2873H12.8125V30.4346H25.249V34.2873H21.353V42.9381H16.7085V34.2873Z'%20fill='%23141416'/%3e%3cpath%20d='M41.1641%2030.4346H46.3601L49.8306%2036.3278V30.4346H54.4357V42.9381H49.2397L45.7731%2037.0409V42.9381H41.1641V30.4346Z'%20fill='%23141416'/%3e%3cpath%20d='M56.0391%2030.4346H66.9471V34.0076H60.6796V35.1657H66.9471V38.203H60.6796V39.3651H66.9471V42.9381H56.0391V30.4346Z'%20fill='%23141416'/%3e%3cpath%20d='M32.741%2039.3411C32.2226%2039.3195%2031.7221%2039.1461%2031.3015%2038.8424C30.8809%2038.5387%2030.5588%2038.1181%2030.3753%2037.6329C30.1917%2037.1476%2030.1548%2036.6192%2030.269%2036.1131C30.3833%2035.6071%2030.6437%2035.1458%2031.018%2034.7865C31.3922%2034.4272%2031.8638%2034.1858%2032.374%2034.0923C32.8843%2033.9988%2033.4108%2034.0573%2033.8882%2034.2605C34.3655%2034.4637%2034.7726%2034.8026%2035.0589%2035.2353C35.3452%2035.6679%2035.4981%2036.1751%2035.4985%2036.6939C35.4913%2037.0488%2035.4143%2037.3988%2035.2718%2037.724C35.1294%2038.0491%2034.9242%2038.343%2034.6682%2038.5888C34.4121%2038.8346%2034.1101%2039.0276%2033.7794%2039.1567C33.4487%2039.2858%2033.0959%2039.3485%2032.741%2039.3411ZM39.6427%2034.1018C39.3013%2033.305%2038.7952%2032.5894%2038.1576%2032.0021C37.4775%2031.3852%2036.6842%2030.9063%2035.8215%2030.5918C33.8242%2029.903%2031.6537%2029.903%2029.6564%2030.5918C28.7924%2030.9058%2027.9977%2031.3848%2027.3165%2032.0021C26.6886%2032.5928%2026.1909%2033.3079%2025.855%2034.1018C25.5124%2034.9189%2025.3359%2035.7961%2025.3359%2036.6821C25.3359%2037.5681%2025.5124%2038.4452%2025.855%2039.2624C26.1969%2040.0577%2026.703%2040.7719%2027.3401%2041.3581C28.0198%2041.9784%2028.8149%2042.4589%2029.6801%2042.7723C31.6774%2043.4612%2033.8479%2043.4612%2035.8452%2042.7723C36.7087%2042.458%2037.5024%2041.9775%2038.1812%2041.3581C38.811%2040.7706%2039.3091%2040.0564%2039.6427%2039.2624C39.9858%2038.4447%2040.1626%2037.5668%2040.1626%2036.6801C40.1626%2035.7934%2039.9858%2034.9155%2039.6427%2034.0979'%20fill='%23141416'/%3e%3cpath%20d='M74.84%2041.7247C75.3042%2041.6686%2075.7527%2041.5214%2076.1597%2041.2913C76.9673%2040.791%2077.7709%2040.2868%2078.5036%2039.7826L85.7599%2035.0553C86.7132%2034.4093%2086.7132%2034.3384%2085.9805%2033.4796C85.9057%2033.4087%2085.8308%2033.2669%2085.7599%2033.192C85.5035%2032.8301%2085.1344%2032.5634%2084.7103%2032.4337C84.2861%2032.304%2083.831%2032.3185%2083.416%2032.475C81.852%2032.8936%2080.4003%2033.6538%2079.1654%2034.7008C77.4631%2036.1416%2076.0247%2037.8679%2074.9149%2039.8022C74.6123%2040.2812%2074.4124%2040.8178%2074.3279%2041.378C74.253%2041.6656%2074.3988%2041.8113%2074.84%2041.7404M87.4459%2033.6214C87.6665%2033.5505%2087.7375%2033.3338%2087.8123%2033.2629C88.9114%2031.3208%2090.1562%2029.5245%2091.4011%2027.7281C93.162%2025.0691%2094.9938%2022.4849%2096.8256%2019.8258C97.6134%2018.6046%2098.5116%2017.4622%2099.2443%2016.2331C100.564%2014.2949%20102.029%2012.3528%20103.42%2010.4147C104.74%208.40165%20106.28%206.5344%20107.753%204.59624C108.411%203.66261%20108.998%202.65414%20109.723%201.79142C110.188%201.197%20110.73%200.667096%20111.334%200.21568C111.775%20-0.0718932%20112.122%20-0.0718932%20112.362%200.21568C112.654%200.503253%20112.579%200.790824%20112.362%201.1493C112.119%201.57289%20111.849%201.98076%20111.555%202.37051C110.601%203.44989%20109.798%204.60018%20108.915%205.75047L108.037%206.82592C105.839%209.6268%20103.786%2012.4316%20101.734%2015.3034C100.198%2017.4582%2098.6574%2019.6131%2097.1171%2021.8427C95.2144%2024.356%2093.5283%2027.0151%2091.6965%2029.5993C90.3768%2031.3957%2089.2029%2033.2669%2088.0329%2035.0593L82.5178%2043.6825C81.0524%2046.1249%2079.4412%2048.4964%2077.9009%2050.8679C77.742%2051.2176%2077.5189%2051.5343%2077.243%2051.8015C77.2013%2051.8567%2077.1486%2051.9026%2077.0882%2051.9364C77.0278%2051.9701%2076.9611%2051.991%2076.8922%2051.9977C76.8234%2052.0043%2076.7539%2051.9967%2076.6881%2051.9751C76.6224%2051.9535%2076.5618%2051.9186%2076.5103%2051.8724C76.2897%2051.7306%2076.3645%2051.443%2076.4355%2051.2264C76.8767%2050.6512%2077.3179%2050.0761%2077.6842%2049.5009C78.866%2047.5628%2080.0478%2045.5616%2081.273%2043.6116C82.8133%2041.1692%2084.3496%2038.652%2085.8151%2036.2096C86.0491%2035.9755%2086.2035%2035.6736%2086.2563%2035.3468C85.3029%2035.9968%2084.4245%2036.6429%2083.546%2037.2889C81.6393%2038.652%2079.8075%2040.0189%2077.9009%2041.3819C77.2712%2041.8097%2076.6132%2042.194%2075.9312%2042.5322C75.5893%2042.7167%2075.217%2042.8381%2074.8321%2042.8907C73.4415%2043.1074%2072.4134%2042.2446%2072.4882%2040.8816C72.5642%2040.2205%2072.7108%2039.5694%2072.9255%2038.9395C73.831%2036.7114%2075.3297%2034.774%2077.2588%2033.3378C78.4827%2032.3379%2079.8719%2031.5593%2081.3636%2031.0372C82.2138%2030.7652%2083.1101%2030.6674%2083.999%2030.7496C84.4772%2030.7526%2084.9475%2030.8721%2085.369%2031.098C85.7905%2031.3238%2086.1505%2031.6491%2086.4178%2032.0457C86.7841%2032.546%2087.0796%2033.0502%2087.4459%2033.6214Z'%20fill='%23B2461A'/%3e%3cpath%20d='M101.075%2034.6806C100.93%2034.5388%20101.075%2034.393%20101.146%2034.1803C101.442%2033.2466%20101.001%2032.6715%20100.047%2032.5257C99.363%2032.4824%2098.6804%2032.6326%2098.0776%2032.9591C96.2897%2033.8274%2094.7331%2035.1073%2093.5355%2036.6936C92.8028%2037.769%2092.141%2038.9193%2092.0701%2040.2154C92.0701%2040.3572%2091.9952%2040.499%2091.9952%2040.6448C92.0701%2041.7241%2092.4364%2042.0826%2093.5355%2042.0826C94.2221%2042.0682%2094.8961%2041.8956%2095.5052%2041.5784C96.8958%2040.9323%2098.2155%2040.1405%2098.9482%2038.7066C99.023%2038.5608%2099.1688%2038.419%2099.1688%2038.2733C99.3894%2037.8439%2099.2436%2037.6272%2098.7315%2037.5563H97.5497C97.3469%2037.5434%2097.148%2037.494%2096.9627%2037.4105C96.5255%2037.1978%2096.4506%2036.8354%2096.8879%2036.5478C97.258%2036.2762%2097.7021%2036.1239%2098.161%2036.1113C98.62%2036.0986%2099.0718%2036.2261%2099.4564%2036.4769C99.7685%2036.7231%20100.158%2036.8502%20100.555%2036.8354C104.219%2036.7645%20107.808%2036.7645%20111.4%2036.6227C112.425%2036.6227%20113.37%2036.5478%20114.406%2036.5478C114.623%2036.5478%20114.989%2036.4769%20114.989%2036.8354C115.064%2037.123%20114.623%2037.123%20114.406%2037.123C114.067%2037.1824%20113.722%2037.2075%20113.378%2037.1978L106.224%2037.4105C104.467%2037.4854%20102.706%2037.6272%20100.875%2037.5563C100.692%2037.5317%20100.507%2037.5774%20100.357%2037.6842C100.207%2037.791%20100.103%2037.9509%20100.067%2038.1314C99.8796%2038.9067%2099.5019%2039.623%2098.9679%2040.2154C98.0338%2041.2314%2096.9148%2042.0603%2095.6706%2042.6578C94.4888%2043.1581%2093.181%2043.4456%2091.8613%2043.0162C91.4053%2042.9044%2090.9878%2042.6721%2090.6524%2042.3436C90.3169%2042.0151%2090.076%2041.6025%2089.9546%2041.149C89.4425%2039.2817%2089.8837%2037.5563%2090.9828%2035.9766C91.6942%2034.8943%2092.6159%2033.9659%2093.6931%2033.2466C95.1585%2032.313%2096.624%2031.5921%2098.3848%2031.3755C98.8896%2031.293%2099.4061%2031.3208%2099.8991%2031.4568C100.392%2031.5928%20100.85%2031.8338%20101.241%2032.1633C101.414%2032.3234%20101.553%2032.5177%20101.648%2032.734C101.742%2032.9503%20101.791%2033.1839%20101.791%2033.42C101.791%2033.6561%20101.742%2033.8897%20101.648%2034.1059C101.553%2034.3222%20101.414%2034.5165%20101.241%2034.6766C101.241%2034.7475%20101.166%2034.6766%20101.095%2034.6766'%20fill='%23B2461A'/%3e%3cpath%20d='M128.63%2034.1812C127.65%2034.3877%20126.709%2034.7509%20125.845%2035.2567C122.638%2036.9146%20119.699%2039.046%20117.127%2041.5793C116.54%2042.1545%20116.244%2042.3003%20115.945%2042.0836C115.358%2041.6503%20115.724%2041.2209%20115.87%2040.7915C116.506%2039.3891%20117.216%2038.0215%20117.997%2036.6946C118.791%2035.4501%20119.5%2034.1537%20120.121%2032.8143C120.266%2032.5976%20120.487%2032.314%20120.266%2032.0264C120.05%2031.8097%20119.754%2032.0973%20119.479%2032.1682C118.054%2032.7523%20116.702%2033.4992%20115.449%2034.394C110.997%2037.2053%20106.953%2040.6145%20103.43%2044.526C103.193%2044.7397%20103.017%2045.0112%20102.918%2045.3138C102.853%2045.4265%20102.753%2045.5151%20102.634%2045.5663C102.515%2045.6174%20102.382%2045.6284%20102.256%2045.5975C102.125%2045.5555%20102.014%2045.4658%20101.946%2045.3461C101.878%2045.2263%20101.858%2045.0855%20101.889%2044.9514C102.04%2044.4106%20102.237%2043.8835%20102.476%2043.3757C103.658%2041.2209%20104.97%2039.1369%20106.286%2036.9821C107.314%2035.3276%20108.338%2033.677%20109.512%2032.0973C109.949%2031.5222%20110.39%2031.0179%20110.832%2030.4428C111.027%2030.2133%20111.28%2030.0405%20111.564%2029.9425C111.734%2029.8997%20111.913%2029.9038%20112.081%2029.9545C112.249%2030.0051%20112.4%2030.1004%20112.518%2030.2301C112.631%2030.3388%20112.706%2030.4809%20112.732%2030.6354C112.758%2030.79%20112.734%2030.9489%20112.663%2031.0888C112.462%2031.498%20112.216%2031.8837%20111.931%2032.2391C110.611%2034.0355%20109.217%2035.8318%20107.901%2037.6282C107.394%2038.2939%20106.928%2038.9898%20106.506%2039.7121C106.846%2039.5365%20107.145%2039.2924%20107.385%2038.9951C110.448%2036.1127%20113.786%2033.5372%20117.351%2031.3055C118.247%2030.6945%20119.238%2030.2341%20120.282%2029.9425C120.841%2029.7698%20121.446%2029.8206%20121.968%2030.0843C122.374%2030.2552%20122.703%2030.569%20122.892%2030.9662C123.082%2031.3634%20123.119%2031.8164%20122.996%2032.2391C122.831%2032.9724%20122.506%2033.6599%20122.043%2034.2521C121.31%2035.2567%20120.503%2036.3361%20119.77%2037.4036C119.624%2037.6203%20119.479%2037.9079%20119.258%2038.1915C119.355%2038.2101%20119.456%2038.1994%20119.547%2038.1609C119.638%2038.1223%20119.716%2038.0576%20119.77%2037.9748C121.873%2036.2059%20124.157%2034.6649%20126.585%2033.3776C127.097%2033.1609%20127.613%2032.9482%20128.051%2032.8025C128.35%2032.6646%20128.675%2032.5908%20129.004%2032.5858C130.324%2032.5149%20131.056%2033.4485%20130.836%2034.6697C130.614%2035.4844%20130.268%2036.2602%20129.811%2036.9703C129.445%2037.6873%20129.079%2038.4082%20128.712%2039.0542C128.638%2039.2709%20128.567%2039.4836%20128.492%2039.7712C128.271%2040.5591%20128.567%2040.9924%20129.445%2040.9924C130.115%2041.0374%20130.786%2040.9394%20131.415%2040.7048C134.933%2039.5545%20138.376%2038.1915%20141.823%2036.6827C142.025%2036.6033%20142.22%2036.5071%20142.406%2036.3952C142.48%2036.3952%20142.626%2036.3242%20142.701%2036.4661C142.847%2036.6118%20142.701%2036.7536%20142.626%2036.8245C142.255%2037.0606%20141.859%2037.2536%20141.444%2037.3997C138.165%2038.9628%20134.785%2040.3077%20131.328%2041.4257C130.606%2041.7128%20129.836%2041.8586%20129.059%2041.8551C128.504%2041.8675%20127.965%2041.665%20127.556%2041.29C127.146%2040.9149%20126.897%2040.3962%20126.861%2039.8421C126.807%2039.2284%20126.907%2038.6109%20127.152%2038.0457C127.412%2037.0963%20127.781%2036.1802%20128.252%2035.3158C128.49%2034.9812%20128.618%2034.5804%20128.618%2034.1694'%20fill='%23B2461A'/%3e%3c/svg%3e",realty:"data:image/svg+xml,%3csvg%20width='154'%20height='16'%20viewBox='0%200%20154%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M8.05423%2015.9842C7.24103%2015.9937%206.42929%2015.9132%205.63409%2015.7441C4.98782%2015.6062%204.35824%2015.4001%203.75606%2015.1296C3.24914%2014.8996%202.77414%2014.6059%202.34271%2014.2558C1.9711%2013.9535%201.63354%2013.6123%201.33592%2013.238C0.685765%2012.4299%200.228982%2011.486%200%2010.4774H5.65829C5.74537%2010.7758%205.89003%2011.0546%206.08424%2011.2984C6.28509%2011.525%206.52839%2011.7109%206.80062%2011.8457C7.18314%2012.0289%207.60568%2012.1148%208.03004%2012.0953C8.489%2012.1343%208.94953%2012.0409%209.35627%2011.8265C9.46208%2011.7643%209.55122%2011.6777%209.6161%2011.5741C9.68098%2011.4704%209.7197%2011.3528%209.72898%2011.2311C9.72488%2011.104%209.68572%2010.9803%209.61574%2010.8737C9.54577%2010.767%209.44765%2010.6814%209.33207%2010.6262C9.00142%2010.4394%208.64859%2010.2943%208.28174%2010.1941C7.84128%2010.0645%207.34755%209.93485%206.78608%209.80523C6.22461%209.6756%205.66314%209.53157%205.09198%209.36353C4.51287%209.19918%203.94532%208.9971%203.39304%208.7586C2.85456%208.53317%202.35231%208.23069%201.90226%207.8608C1.46492%207.50667%201.10572%207.06706%200.847049%206.56931C0.570387%206.00455%200.434307%205.38222%200.450172%204.75452C0.460727%204.14391%200.627263%203.54594%200.9342%203.01654C1.2739%202.41357%201.74521%201.89358%202.31367%201.49461C3.00242%201.01121%203.76816%200.646051%204.57892%200.414371C5.5963%200.123058%206.65181%20-0.0161035%207.71059%200.00148022C8.45204%20-0.00622919%209.19213%200.0662126%209.91776%200.217526C10.5182%200.343232%2011.1026%200.534856%2011.6602%200.788852C12.1304%201.00698%2012.5711%201.28279%2012.972%201.60983C13.3158%201.89877%2013.6303%202.22037%2013.911%202.57004C14.5122%203.3168%2014.9446%204.18292%2015.1791%205.1098H9.5257C9.4822%204.88986%209.38215%204.68478%209.23526%204.51447C9.09258%204.33906%208.91452%204.19516%208.7125%204.09198C8.43836%203.96051%208.13588%203.89785%207.8316%203.90954C7.43704%203.87724%207.04125%203.95542%206.68927%204.13519C6.59364%204.18817%206.51324%204.26448%206.45565%204.35689C6.39805%204.44931%206.36517%204.55477%206.36013%204.6633C6.36013%204.92255%206.58762%205.1434%207.04745%205.25863C7.50727%205.37386%208.08327%205.53709%208.77059%205.68112C9.4579%205.82516%2010.1985%205.99799%2010.9971%206.19964C11.7748%206.39283%2012.5246%206.68321%2013.2285%207.06382C13.8955%207.42087%2014.4806%207.91131%2014.9468%208.50414C15.4279%209.1733%2015.6698%209.98272%2015.6341%2010.8038C15.6342%2011.4844%2015.4681%2012.1548%2015.1501%2012.7579C14.8009%2013.4121%2014.3039%2013.9773%2013.698%2014.4094C12.9821%2014.9303%2012.1792%2015.322%2011.3263%2015.5665C10.2599%2015.8705%209.15396%2016.0162%208.04454%2015.9986'%20fill='white'/%3e%3cpath%20d='M20.3528%205.09061H15.5996V0.433594H30.7642V5.09061H26.011V15.5473H20.3528V5.09061Z'%20fill='white'/%3e%3cpath%20d='M50.1641%200.433594H56.5L60.7304%207.55835V0.433594H66.3403V15.5473H60.0044L55.7836%208.42254V15.5473H50.1641V0.433594Z'%20fill='white'/%3e%3cpath%20d='M68.291%200.433594H81.5873V4.74974H73.9493V6.15645H81.5873V9.82445H73.9493V11.2312H81.5873V15.5473H68.291V0.433594Z'%20fill='white'/%3e%3cpath%20d='M39.8824%2011.2056C39.2499%2011.1811%2038.6385%2010.9727%2038.1244%2010.6063C37.6103%2010.2399%2037.2161%209.73164%2036.991%209.14476C36.7658%208.55789%2036.7195%207.91831%2036.858%207.30556C36.9964%206.69282%2037.3133%206.13396%2037.7695%205.69851C38.2256%205.26306%2038.8007%204.97024%2039.4233%204.85646C40.0459%204.74268%2040.6885%204.81297%2041.2711%205.05859C41.8537%205.3042%2042.3507%205.7143%2042.7002%206.23787C43.0497%206.76144%2043.2363%207.37538%2043.2368%208.00332C43.2286%208.43207%2043.1353%208.85502%2042.9623%209.24801C42.7893%209.64101%2042.5399%209.99634%2042.2284%2010.2937C41.9169%2010.5911%2041.5494%2010.8247%2041.1469%2010.9812C40.7444%2011.1376%2040.3147%2011.2139%2039.8824%2011.2056ZM48.3045%204.86823C47.8864%203.90704%2047.2697%203.04349%2046.4943%202.33328C45.6632%201.58869%2044.6953%201.01001%2043.6434%200.628904C41.2107%20-0.209635%2038.5639%20-0.209635%2036.1312%200.628904C35.078%201.00725%2034.1095%201.58624%2033.2803%202.33328C32.5019%203.04089%2031.8848%203.90512%2031.47%204.86823C31.0515%205.85627%2030.8359%206.91721%2030.8359%207.98892C30.8359%209.06063%2031.0515%2010.1216%2031.47%2011.1096C31.8834%2012.0749%2032.5007%2012.9409%2033.2803%2013.6494C34.1095%2014.3964%2035.078%2014.9754%2036.1312%2015.3537C38.565%2016.1859%2041.2096%2016.1859%2043.6434%2015.3537C44.6953%2014.9726%2045.6632%2014.3939%2046.4943%2013.6494C47.2709%2012.9383%2047.8877%2012.0729%2048.3045%2011.1096C48.7199%2010.1208%2048.9338%209.06015%2048.9338%207.98892C48.9338%206.91769%2048.7199%205.85706%2048.3045%204.86823Z'%20fill='white'/%3e%3cpath%20d='M93.9763%209.4L99.7457%2015H98.2441L92.4747%209.4H90.9335V15H89.748V1H95.4779C96.2287%201%2096.9071%201.18%2097.513%201.54C98.1189%201.9%2098.5931%202.4%2098.9356%203.04C99.2781%203.66667%2099.4493%204.38667%2099.4493%205.2C99.4493%206.01333%2099.2781%206.74%2098.9356%207.38C98.5931%208.00667%2098.1189%208.5%2097.513%208.86C96.9071%209.22%2096.2287%209.4%2095.4779%209.4H93.9763ZM90.9335%208.26H95.4779C96.2814%208.26%2096.9466%207.98%2097.4735%207.42C98.0004%206.86%2098.2638%206.12%2098.2638%205.2C98.2638%204.28%2098.0004%203.54%2097.4735%202.98C96.9466%202.42%2096.2814%202.14%2095.4779%202.14H90.9335V8.26Z'%20fill='white'/%3e%3cpath%20d='M110.548%2015H101.854V1H110.548V2.14H103.04V7.36H110.153V8.5H103.04V13.86H110.548V15Z'%20fill='white'/%3e%3cpath%20d='M123.724%2015H122.48L121.077%2011.2H114.063L112.66%2015H111.415L116.651%201H118.488L123.724%2015ZM117.382%202.26L114.497%2010.06H120.642L117.757%202.26H117.382Z'%20fill='white'/%3e%3cpath%20d='M133.4%2015H125.102V1H126.287V13.86H133.4V15Z'%20fill='white'/%3e%3cpath%20d='M137.8%2015H136.614V2.14H131.912V1H142.522V2.14H137.8V15Z'%20fill='white'/%3e%3cpath%20d='M148.922%2015H147.736V9.76L142.678%201H143.943L148.132%208.3H148.527L152.735%201H154L148.922%209.76V15Z'%20fill='white'/%3e%3c/svg%3e"},Ls=({uk:r=!1,variant:e="black",between:t=!1,addClassName:s,onClick:n})=>{const i=g2.bind(W2);return a.jsxs("div",{className:i(W2.wrapper,{[W2.wrapperBetween]:t},s),onClick:()=>{n&&n()},children:[a.jsx("img",{src:Ts[e],alt:"Лого",className:i(W2.logo,{[W2.logoValue]:e==="value"},{[W2.logoDom]:e==="dom"},{[W2.logoOffice]:e==="office"},{[W2.logoNewOffice]:e==="newOffice"},{[W2.logoNewDom]:e==="newDom"},{[W2.logoRealty]:e==="realty"})}),r&&a.jsx(f0,{className:i(W2.uk,W2[`uk_${e}`]),html:"управляющая<br/>компания"})]})},b2={root:"_root_16fjr_1",iconsWrapper:"_iconsWrapper_16fjr_17",metroColor:"_metroColor_16fjr_27",route:"_route_16fjr_37",auto:"_auto_16fjr_47",full:"_full_16fjr_51",transparent:"_transparent_16fjr_55",long:"_long_16fjr_60",mini:"_mini_16fjr_64",metroColorMini:"_metroColorMini_16fjr_68",routeMini:"_routeMini_16fjr_77",withBg:"_withBg_16fjr_90",withWhiteBg:"_withWhiteBg_16fjr_94"},A0=g2.bind(b2),Ds=({addClassName:r,addClassNameColor:e,addClassNameTimeTo:t,metro:s,separatorColor:n="#F4F5F6",width:i="auto",variant:o="default",isBetween:l=!1,withBg:d=!1,withWhiteBg:h=!1,...f})=>{const p=["pedestrian","auto"];return Array.isArray(s)?a.jsxs("div",{className:A0(b2.root,b2[o],b2[l?"long":""],b2[d?"withBg":""],b2[h?"withWhiteBg":""],r,b2[i]),...f,children:[a.jsxs("div",{className:A0(b2.metroColor,e),children:[a.jsx("div",{className:b2.iconsWrapper,children:s.map((m,b)=>m.icon?a.jsx("div",{className:b2.icon,children:(m==null?void 0:m.icon)&&a.jsx(d2,{size:"20",name:m.icon,color:"#777E90"})},`metro + ${m.name} + ${b}`):a.jsx("span",{style:{background:(m==null?void 0:m.color)??"",border:b>0?`1px solid ${n}`:""}},`color + ${m.name} + ${b}`))}),s.map(m=>m.name).join(", ")]}),s==null?void 0:s.map((m,b)=>!m.mode||!m.timeTo?null:a.jsxs("div",{className:b2.route,children:[p.includes(m.mode)&&a.jsx(d2,{size:"20",name:m.mode,color:"#777E90"}),m.timeTo+" "+(m.selfIconText??"мин")]},`route - ${m.name} - ${b}`))]}):a.jsxs("div",{className:A0(b2.root,b2[o],b2[l?"long":""],b2[d?"withBg":""],b2[h?"withWhiteBg":""],r,b2[i]),...f,children:[a.jsxs("div",{className:A0(b2.metroColor,e,{[b2.metroColorMini]:o==="mini"}),children:[(s==null?void 0:s.icon)&&a.jsx("img",{src:s.icon,width:20,height:20}),(s==null?void 0:s.color)&&!(s!=null&&s.icon)&&a.jsx("span",{style:{background:(s==null?void 0:s.color)??""}}),s.name]}),s.timeTo&&a.jsxs("div",{className:A0(b2.route,t,{[b2.routeMini]:o==="mini"}),children:[s.mode&&p.includes(s.mode)&&a.jsx(d2,{size:"20",name:s.mode,color:"#777E90"}),s.timeTo+" "+(s.selfIconText??"мин")]})]})},s2={root:"_root_nl7sm_1",lotBtn:"_lotBtn_nl7sm_12",rootDisable:"_rootDisable_nl7sm_17",lotImageWrapper:"_lotImageWrapper_nl7sm_17",lotInfoWrapper:"_lotInfoWrapper_nl7sm_18",infoHeader:"_infoHeader_nl7sm_38",monthlyWrapper:"_monthlyWrapper_nl7sm_47",monthlyPayment:"_monthlyPayment_nl7sm_55",decor:"_decor_nl7sm_61",lotPropertyListMobile:"_lotPropertyListMobile_nl7sm_68",lotPropertyItem:"_lotPropertyItem_nl7sm_76",lotPropertyListDesktop:"_lotPropertyListDesktop_nl7sm_97",lotPriceWrapper:"_lotPriceWrapper_nl7sm_101",discountWrapper:"_discountWrapper_nl7sm_107",discountPrice:"_discountPrice_nl7sm_118",snippetLast:"_snippetLast_nl7sm_130",snippet:"_snippet_nl7sm_130",tagsMobile:"_tagsMobile_nl7sm_145",discountTag:"_discountTag_nl7sm_160",lotPricePerMetr:"_lotPricePerMetr_nl7sm_164",btnWrapper:"_btnWrapper_nl7sm_169",title:"_title_nl7sm_176",snippets:"_snippets_nl7sm_180",retailSnippets:"_retailSnippets_nl7sm_185",shownSnippets:"_shownSnippets_nl7sm_190",addSnippets:"_addSnippets_nl7sm_216",addSnippetsActive:"_addSnippetsActive_nl7sm_232",addSnippetsList:"_addSnippetsList_nl7sm_237",closeSnippetBtn:"_closeSnippetBtn_nl7sm_284",rootRow:"_rootRow_nl7sm_296",lotPriceWrapperRow:"_lotPriceWrapperRow_nl7sm_371",fullscreenBtn:"_fullscreenBtn_nl7sm_381",projectLotPricePerMetr:"_projectLotPricePerMetr_nl7sm_400"},Is="data:image/webp;base64,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",me=(r,e,t)=>{if(!r&&t===2)return" ";if(!r)return"Цена по запросу";const s=e?" ₽/м²":" ₽";return Number(r).toLocaleString()+s},Os=({loggia:r,cornerKitchenLiving:e,terrace:t,isPenthouse:s,isDoubleLevel:n})=>{const i=[];return r&&i.push({text:"Балкон"}),e&&i.push({text:"Угловая"}),t&&i.push({text:"Терраса"}),s&&i.push({text:"Пентхаус"}),n&&i.push({text:"Двухуровневая"}),i},zs=r=>{if(!r||typeof r!="number"||r<1)return"Студия";const e=r%10,t=r%100;if(t>=11&&t<=19)return`${r} спален`;switch(e){case 1:return`${r} спальня`;case 2:case 3:case 4:return`${r} спальни`;default:return`${r} спален`}},Ns=r=>`Ежемесячный платеж от ${Number(r.replace(/\s/g,"")).toLocaleString()} ₽`,U0=g2.bind(s2),Ps=({lot:r,rowConditions:e})=>{const{status:t,direction:s,area:n,floor:i,endFloor:o,floorsNumber:l,type:d,isCorner:h,windowViews:f,subTypeName:p,number:m,bedroomsCount:b,mortgageMonthlyPayment:y}=r,[S,E]=_.useState(!1),I=t===2,V=s===1,z=d===11,T=n+" м²",v=(o&&o!==i?i+"-"+o:i)+" из "+l,G=Os({...r}),{isTablet:_2,isDesktop:o2,currentClientWidth:Z}=s0(),X=typeof e<"u"?e:o2||_2,e2=()=>z?"Кол-во этажей: "+l:"Этаж: "+v,L=()=>z?a.jsxs(a.Fragment,{children:[a.jsx("div",{children:"Количество этажей"}),a.jsx("div",{children:l})]}):a.jsxs(a.Fragment,{children:[a.jsx("div",{children:"Этаж"}),a.jsx("div",{children:v})]}),H=()=>{if(d===3){let Y=0;const n2=o2?38:28,U=[],u2=[];if(h){const m2="Угловая";if(Y+m2.length<=n2)U.push(m2),Y+=m2.length;else return U}if(f)for(const m2 of f)Y+m2.length<=n2?(U.push(m2),Y+=m2.length):u2.push(m2);return a.jsxs("div",{className:s2.retailSnippets,children:[a.jsx("ul",{className:s2.shownSnippets,children:U==null?void 0:U.map((m2,k)=>a.jsx("li",{children:m2},k))}),(u2==null?void 0:u2.length)>0&&a.jsxs("div",{className:U0(s2.addSnippets,{[s2.addSnippetsActive]:S}),onClick:m2=>{o2||(m2.stopPropagation(),m2.preventDefault(),E(k=>!k))},onMouseEnter:()=>{o2&&E(!0)},onMouseLeave:()=>{o2&&E(!1)},children:["+"+(u2==null?void 0:u2.length),S&&a.jsxs("ul",{className:s2.addSnippetsList,children:[u2.map((m2,k)=>a.jsx("li",{children:m2},k)),a.jsx("div",{className:s2.closeSnippetBtn,children:a.jsx(d2,{name:"close",size:"16",color:"#ffffff"})})]})]})]})}return a.jsx("div",{className:s2.snippets,children:G.map((Y,n2)=>{const U=n2===G.length-1;return a.jsx("div",{className:U0(s2.snippet,U?"":s2.snippetLast),children:Y.text},n2)})})};return{currentClientWidth:Z,isBuilding:z,LotCardInfo:()=>a.jsxs(a.Fragment,{children:[a.jsxs("div",{className:U0(s2.monthlyWrapper),children:[a.jsx(f0,{className:U0(s2.infoHeader),html:`${V&&d?p:zs(b)}${z?"":`, ${m}`}`}),y&&a.jsx("div",{className:s2.monthlyPayment,children:Ns(y)})]}),a.jsx(H,{})]}),tagFeatures:G,FloorByType:L,isTablet:_2,isDesktop:o2,getFloorStr:e2,isReserved:I,areaStr:T,floorStr:v,isShowSnippet:S,setIsShowSnippet:E,rowConditionsVar:X}},Hs=r=>{if(r&&(r==null?void 0:r.direction)===1){if((r==null?void 0:r.type)===11||(r==null?void 0:r.subType)===8)return!0;if(typeof(r==null?void 0:r.beginFloor)=="number"&&typeof(r==null?void 0:r.endFloor)=="number")return(r==null?void 0:r.beginFloor)!==(r==null?void 0:r.endFloor)}return!1},L2=g2.bind(s2),Ws=({lot:r,handleBtnForm:e,handleFullScreenBtn:t,btnDisabled:s,addClassname:n,btnName:i="Уточнить детали",imgNode:o,rowConditions:l,addClassnameLotImage:d})=>{const{housing:h,sellingPricePerMeter:f,interiorPlanImg:p,direction:m,floorPlanImg:b,discount:y,sellingPrice:S,sellingPriceBeforeDiscount:E}=r,I=Hs(r),{getFloorStr:V,FloorByType:z,areaStr:T,isReserved:v,rowConditionsVar:G,currentClientWidth:_2,isBuilding:o2,LotCardInfo:Z}=Ps({lot:r,rowConditions:l});return _2?a.jsxs("div",{className:L2(s2.root,n,{[s2.rootDisable]:v,[s2.rootRow]:G}),"data-testid":"lot_card",children:[!G&&a.jsx("div",{className:L2(s2.title),children:a.jsx(Z,{})}),a.jsx("div",{className:L2(s2.lotImageWrapper,d),children:o||a.jsx("img",{loading:"lazy",src:p??b??Is,width:280,height:200,alt:""})}),a.jsxs("div",{className:L2(s2.lotInfoWrapper),children:[G&&a.jsx(Z,{}),a.jsxs("div",{className:L2(s2.lotPropertyListDesktop),children:[a.jsx(p0,{variant:"gray",children:T}),!o2&&a.jsx(p0,{variant:"gray",children:h}),a.jsx(p0,{variant:"gray",children:V()})]}),a.jsxs("ul",{className:L2(s2.lotPropertyListMobile),children:[a.jsxs("li",{className:L2(s2.lotPropertyItem),children:[a.jsx("div",{children:"Площадь"}),a.jsx("div",{children:T})]}),!o2&&a.jsxs("li",{className:L2(s2.lotPropertyItem),children:[a.jsx("div",{children:h==null?void 0:h.split(" ")[0]}),a.jsx("div",{children:h==null?void 0:h.split(" ")[1]})]}),a.jsx("li",{className:L2(s2.lotPropertyItem),children:a.jsx(z,{})})]})]}),a.jsxs("div",{className:L2(s2.lotPriceWrapper,{[s2.lotPriceWrapperRow]:!G}),children:[!v&&a.jsxs("div",{className:s2.discountWrapper,children:[!I&&y&&S&&E&&a.jsxs("div",{className:L2(s2.discountPrice),children:[a.jsx("span",{children:me(E??S,!1,m)}),a.jsx(p0,{additionalClass:L2(s2.discountTag),variant:"red",size:"tiny",children:"-"+Number(y)+"%"})]}),!I&&a.jsx("div",{children:me(S,!1,m)}),I&&a.jsx("div",{children:"Цена по запросу"})]}),f&&!v&&a.jsx("div",{className:L2(s2.lotPricePerMetr,s2.projectLotPricePerMetr),children:me(f,!0,m)}),a.jsxs("div",{className:L2(s2.btnWrapper),children:[a.jsx(G2,{as:"button","data-testid":"lot_fullscreen",disabled:s,variant:"whiteStroke",additionalClass:s2.fullscreenBtn,onClick:X=>{X.preventDefault(),t&&t()},children:a.jsx(d2,{name:"fullscreen",color:"#141416",size:"20"})}),a.jsx(G2,{as:"button",size:"medium",disabled:v,variant:v?"gray":"blue",width:"full",additionalClass:s2.lotBtn,"data-testid":"lot_form",post:v?a.jsx(d2,{name:"lock",size:"24",color:"#777E90"}):void 0,onClick:X=>{X.preventDefault(),e(X)},children:i})]})]})]}):null},i2={multiSelectWrapper:"_multiSelectWrapper_1sbxa_1",selectedOptions:"_selectedOptions_1sbxa_8",selectedOptionsBtn:"_selectedOptionsBtn_1sbxa_24","small-size":"_small-size_1sbxa_28","medium-size":"_medium-size_1sbxa_35","large-size":"_large-size_1sbxa_42",selectedOptionsOpened:"_selectedOptionsOpened_1sbxa_49",selectedOptionsNotEmpty:"_selectedOptionsNotEmpty_1sbxa_53",selectOptionsDisabled:"_selectOptionsDisabled_1sbxa_58",optionsList:"_optionsList_1sbxa_65",lastList:"_lastList_1sbxa_81",listRight:"_listRight_1sbxa_86",inputWrapper:"_inputWrapper_1sbxa_90",option:"_option_1sbxa_65",category:"_category_1sbxa_112",leftSide:"_leftSide_1sbxa_118",optionCategory:"_optionCategory_1sbxa_123",optionDisabled:"_optionDisabled_1sbxa_129",optionClickable:"_optionClickable_1sbxa_133",icon:"_icon_1sbxa_137",iconArrow:"_iconArrow_1sbxa_143",iconBtn:"_iconBtn_1sbxa_149","small-size_m":"_small-size_m_1sbxa_162","medium-size_m":"_medium-size_m_1sbxa_168","large-size_m":"_large-size_m_1sbxa_174","small-size_l":"_small-size_l_1sbxa_189","medium-size_l":"_medium-size_l_1sbxa_195","large-size_l":"_large-size_l_1sbxa_201"},js=g2.bind(i2),q0=({option:r,selectedOptions:e,disabledOptions:t,clickableOptions:s,handleOptionClick:n,isOptionCategory:i,sizeIcon:o,isDisabledNotClickable:l,addClassName:d=""})=>{const h=s?s.includes(`${r.value}`):!0,f=e.some(m=>m.value===r.value),p=()=>l&&s?!s.includes(`${r.value}`):t.some(m=>m.value===r.value);return a.jsxs("div",{className:js(i2.option,{[i2.optionDisabled]:p(),[i2.optionCategory]:i,[i2.optionClickable]:h},d),onClick:()=>{p()&&!f||n(r)},children:[i&&a.jsx(d2,{size:o??"20",name:f?"selectChecked":"selectUnchecked"}),a.jsx("div",{children:r.label}),!i&&a.jsx(d2,{size:o??"20",name:f?"selectChecked":"selectUnchecked"})]})},Zs=g2.bind(i2),Us=({category:r,selectedOptions:e,disabledOptions:t,clickableOptions:s,handleOptionClick:n,sizeIcon:i,isDisabledNotClickable:o,mode:l})=>{const[d,h]=_.useState(!1),f=e.map(T=>JSON.stringify(T)),p=l==="category",m=l==="double",b=p&&r.options.every(T=>f.includes(JSON.stringify(T))),y=s?s.includes(r.value.toString()):!0,S=e.some(T=>T.value===r.value),E=()=>o&&s?!s.includes(r.value.toString()):t.some(T=>T.value===r.value),V=p?b?"selectChecked":"selectUnchecked":m&&S?"selectChecked":"selectUnchecked",z=r.options.length>1;return a.jsxs(a.Fragment,{children:[a.jsxs("div",{className:Zs(i2.option,i2.category,{[i2.optionDisabled]:E(),[i2.optionClickable]:y}),onClick:()=>{E()&&!S||(m&&!d&&h(!0),n(p?r.options:r))},children:[a.jsxs("div",{className:i2.leftSide,children:[a.jsx(d2,{size:i??"20",name:V}),a.jsx("div",{children:r.label})]}),z&&a.jsx("div",{className:i2.iconArrow,onClick:T=>{T.stopPropagation(),h(v=>!v)},children:a.jsx(d2,{name:"arrowShort",deg:d?"180":"0",size:i??"24"})})]}),d&&z&&r.options.map((T,v)=>a.jsx(q0,{option:T,disabledOptions:t,selectedOptions:e,handleOptionClick:()=>n(T),sizeIcon:i,clickableOptions:s,isOptionCategory:!0,isDisabledNotClickable:o},v))]})},qs=({option:r,setSelectedOptions:e,selectedOptions:t,disabledOptions:s,onChange:n,mode:i,optionsParentArr:o})=>{if(!Array.isArray(r)){if(s.includes(r))return;let l=t.some(d=>d.value===r.value)?t.filter(d=>d.value!==r.value):[...t,r];if(i==="single"){const d=[r];e(d),n&&n(d);return}if(i==="double"){"options"in r&&(t.map(p=>JSON.stringify(p)).includes(JSON.stringify(r))?l=l.filter(p=>!r.options.map(m=>JSON.stringify(m)).includes(JSON.stringify(p))):Array.isArray(r.options)&&(l=[...l,...r.options]));const d=o==null?void 0:o.filter(f=>"options"in f&&f.options.includes(r))[0];!(d&&t.map(f=>JSON.stringify(f)).includes(JSON.stringify(d)))&&d&&l.push(d)}e(l),n&&n(l)}},Gs=({option:r,setSelectedOptions:e,selectedOptions:t,disabledOptions:s,onChange:n})=>{if(Array.isArray(r)){const i=r.filter(o=>!(s!=null&&s.includes(o)));if(i.every(o=>t.map(l=>l).includes(o))){const o=t.filter(l=>!r.includes(l));e(o),n&&n(o)}else{const o=i.filter(d=>!t.includes(d)),l=[...t,...o];e(l),n&&n(l)}}},_0=g2.bind(i2),ot=({options:r,customPlaceholder:e,placeholder:t="Выберите опции",error:s,disabled:n,disabledOptions:i=[],additionalClass:o="",additionalClassOption:l,additionalClassBtn:d,onChange:h,onBlur:f,selectedValues:p=[],isBtn:m=!1,btnName:b,clickableOptions:y,isListRight:S=!1,sizeIcon:E,mode:I="options",onClickItem:V,onCLickSelect:z,size_s:T="large",size_m:v,size_l:G,isDisabledNotClickable:_2,isLast:o2})=>{r=Array.isArray(r)?[...new Set([...r])]:[];const[Z,X]=_.useState(p),[e2,L]=_.useState(!1),H=_.useRef(null),W=U=>{V&&V(U);const u2={option:U,selectedOptions:Z,disabledOptions:i,setSelectedOptions:X,onChange:h,mode:I,optionsParentArr:r};Array.isArray(U)?Gs(u2):qs(u2)},Y=()=>{f&&f(Z)};_.useEffect(()=>{const U=u2=>{const m2=u2.target;if(H.current&&!H.current.contains(u2.target)){if(m2.closest("svg"))return;L(!1)}};return document.addEventListener("click",U),()=>{document.removeEventListener("click",U)}},[]);const n2=_.useRef(p);return _.useEffect(()=>{p.length!==n2.current.length&&(X(p),n2.current=p)},[p]),a.jsxs("div",{ref:H,className:_0(i2.multiSelectWrapper,{[i2.multiSelectWrapperError]:s},o),tabIndex:0,onBlur:Y,children:[a.jsxs("div",{className:_0(i2.inputWrapper),children:[!m&&a.jsxs(a.Fragment,{children:[a.jsx("div",{className:_0(i2.selectedOptions,i2[`${T}-size`],i2[`${v}-size_m`],i2[`${G}-size)_l`],{[i2.selectedOptionsNotEmpty]:Z.length>0},{[i2.selectOptionsDisabled]:n}),onClick:()=>L(!e2),children:e||(Z.length===0?t:"Выбрано "+Z.length)}),a.jsx(d2,{name:"arrowShort",deg:e2?"180":"0",size:E??"24",additionalClass:i2.icon})]}),m&&a.jsxs(a.Fragment,{children:[a.jsx("button",{className:_0(i2.selectedOptions,i2[`${T}-size`],i2[`${v}-size_m`],i2[`${G}-size_l`],i2.selectedOptionsBtn,{[i2.selectOptionsDisabled]:n},d),onClick:()=>{z&&z(),L(!e2)},children:b}),a.jsx(d2,{name:"filter",deg:e2?"180":"0",size:E??"24",additionalClass:_0(i2.icon,{[i2.iconBtn]:!b})})]})]}),e2&&a.jsxs("div",{className:_0(i2.optionsList,{[i2.listRight]:S},{[i2.lastList]:o2},l),children:[(I==="options"||I==="single")&&(r==null?void 0:r.map((U,u2)=>a.jsx(q0,{disabledOptions:i,clickableOptions:y,selectedOptions:Z,sizeIcon:E,option:U,handleOptionClick:W,isDisabledNotClickable:_2},u2))),(I==="category"||I==="double")&&(r==null?void 0:r.map((U,u2)=>"options"in U?a.jsx(Us,{disabledOptions:i,clickableOptions:y,selectedOptions:Z,sizeIcon:E,category:U,mode:I,selectedValues:p,handleOptionClick:W,isDisabledNotClickable:_2},u2):null))]})]})},s0=()=>{const[r,e]=_.useState(0),t=_.useCallback(()=>{e(window.innerWidth)},[e]);_.useEffect(()=>(window.addEventListener("resize",t),()=>window.removeEventListener("resize",t)),[]),_.useEffect(()=>{t()},[]);const s=r<1024,n=typeof window<"u"?window.innerWidth<768:!1,i=r>=768&&r<1440,o=r>1023&&r<1440,l=r>=1440;return{currentClientWidth:r,isMobile:s,isTablet:o,isDesktop:l,isMobileBorder:n,isFullTablet:i}},lt=(r,e)=>{if(r===e)return!0;if(r==null||typeof r!="object"||e==null||typeof e!="object")return!1;const t=Object.keys(r),s=Object.keys(e);if(t.length!==s.length)return!1;for(const n of t)if(!s.includes(n)||!lt(r[n],e[n]))return!1;return!0},E2={sortSelectWrapper:"_sortSelectWrapper_gj2vk_1",selectedOptions:"_selectedOptions_gj2vk_11",selectModal:"_selectModal_gj2vk_34",selectionOptionMini:"_selectionOptionMini_gj2vk_38",selectedOptionsOpened:"_selectedOptionsOpened_gj2vk_42",selectOptionsDisabled:"_selectOptionsDisabled_gj2vk_46",optionsList:"_optionsList_gj2vk_53",mobileOptionList:"_mobileOptionList_gj2vk_68",mobileSortHeader:"_mobileSortHeader_gj2vk_76",modalAddBody:"_modalAddBody_gj2vk_90",inputWrapper:"_inputWrapper_gj2vk_96",option:"_option_gj2vk_53",icon:"_icon_gj2vk_124",checkBox:"_checkBox_gj2vk_131",checkBoxChecked:"_checkBoxChecked_gj2vk_138",innerCheck:"_innerCheck_gj2vk_145",sortSelectWrapperTop:"_sortSelectWrapperTop_gj2vk_176",optionListOnTop:"_optionListOnTop_gj2vk_179"},ct=g2.bind(E2),Xs=({selectedOption:r,setSelectedOption:e,setIsOpen:t,containerRef:s,onBlur:n,onChange:i,onClickOption:o,isMobile:l,placeholder:d})=>{const h=y=>S=>{S.stopPropagation(),o&&o(y);const E=(r==null?void 0:r.value)===y.value?null:y;if(E&&(e&&e(E),i)){const I={...S,target:{value:E}};i(I)}};return{handleDocumentClick:y=>{s.current&&!s.current.contains(y.target)&&t(!1)},handleBlur:y=>{if(n){const S={...y,target:{value:r}};n(S)}},getInputValue:()=>l?"":r?r.label:d,getOption:y=>a.jsxs("div",{className:ct(E2.option,{[E2.selected]:(r==null?void 0:r.value)===y.value}),onClick:h(y),children:[a.jsx("div",{children:y.label}),a.jsx("div",{className:ct(E2.checkBox,{[E2.checkBoxChecked]:(r==null?void 0:r.value)===y.value}),children:(r==null?void 0:r.value)===y.value&&a.jsx("div",{className:E2.innerCheck})})]},y.value)}},G0=g2.bind(E2),ut=({options:r,selectedOption:e,placeholder:t="",error:s,disabled:n,additionalClass:i="",onChange:o,onBlur:l,mini:d,openOnTop:h=!1,onClickItem:f,onCLickSelect:p,onOpenClick:m})=>{const[b,y]=_.useState(!1),S=_.useRef(null),{isMobile:E}=s0(),{handleBlur:I,getInputValue:V,getOption:z,handleDocumentClick:T}=Xs({selectedOption:e,onClickOption:f,setSelectedOption:o,setIsOpen:y,containerRef:S,isOpen:b,isMobile:E,placeholder:t,onChange:o,onBlur:l});return _.useEffect(()=>(document.addEventListener("click",T),()=>{document.removeEventListener("click",T)}),[]),a.jsxs("div",{ref:S,className:G0(E2.sortSelectWrapper,{[E2.sortSelectWrapperError]:s},{[E2.sortSelectWrapperTop]:h},i),tabIndex:0,onBlur:I,onClick:()=>{p&&p()},children:[a.jsxs("div",{className:G0(E2.inputWrapper),children:[a.jsx("input",{type:"text",readOnly:!0,value:V(),className:G0(E2.selectedOptions,{[E2.selectOptionsDisabled]:n},{[E2.selectionOptionMini]:d}),onClick:()=>{b||m&&m(),y(!b)}}),a.jsx(d2,{name:"twoArrows",size:"24",additionalClass:E2.icon})]}),b&&E&&a.jsxs(x0,{isOpen:b,emitIsOpen:y,additionalClassModalBody:E2.modalAddBody,additionalClass:E2.selectModal,createPortalObj:{domNode:document.querySelector("body")},isTransparentBack:!0,children:[a.jsxs("div",{className:E2.mobileSortHeader,children:[a.jsx(f0,{children:"Сортировка"}),a.jsx("div",{onClick:()=>y(!1),children:a.jsx(d2,{name:"close",size:"20"})})]}),a.jsx("div",{className:E2.mobileOptionList,children:r==null?void 0:r.map(v=>z(v))})]}),b&&!E&&a.jsx("div",{className:G0(E2.optionsList,{[E2.optionListOnTop]:h}),children:r==null?void 0:r.map(v=>z(v))})]})};ut.displayName="SortSelect";const dt={sliderTag:"_sliderTag_1rvl9_1"},Ys=g2.bind(dt),Rs=({indexSlide:r,isDisabledOff:e,goPrev:t,goNext:s,arr:n,isNeedTag:i=!0,additionalClassTag:o="",navigationClassName:l="",additionalClassNavButton:d="",size:h="medium",size_m:f="medium",size_l:p="large"})=>{const{isDesktop:m}=s0();return a.jsxs("div",{className:l,children:[a.jsx(b0,{iconName:"directionDown",deg:"90",size:h,size_m:f,size_l:p,disabled:e?!1:r===0,additionalClass:d,onClick:t}),i&&a.jsx(p0,{additionalClass:Ys(dt.sliderTag,o),variant:"shade",size:m?"large":"medium",size_m:f,size_l:p,children:`${r+1} из ${n.length}`}),a.jsx(b0,{disabled:e?!1:r===n.length-1,size:h,size_m:f,size_l:p,iconName:"directionDown",deg:"-90",additionalClass:d,onClick:s})]})},l2={root:"_root_7lz45_12",projectRoot:"_projectRoot_7lz45_22",lotImageWrapper:"_lotImageWrapper_7lz45_26",pulsing:"_pulsing_7lz45_1",projectLotImageWrapper:"_projectLotImageWrapper_7lz45_37",lotInfoWrapper:"_lotInfoWrapper_7lz45_41",projectLotInfoWrapper:"_projectLotInfoWrapper_7lz45_48",infoHeader:"_infoHeader_7lz45_52",projectInfoHeader:"_projectInfoHeader_7lz45_60",decor:"_decor_7lz45_64",lotPropertyListMobile:"_lotPropertyListMobile_7lz45_71",lotPropertyItem:"_lotPropertyItem_7lz45_79",projectLotPropertyItem:"_projectLotPropertyItem_7lz45_104",lotPropertyListDesktop:"_lotPropertyListDesktop_7lz45_109",lotPriceWrapper:"_lotPriceWrapper_7lz45_113",projectLotPriceWrapper:"_projectLotPriceWrapper_7lz45_117",discountWrapper:"_discountWrapper_7lz45_121",lotPricePerMetr:"_lotPricePerMetr_7lz45_134",btnWrapper:"_btnWrapper_7lz45_139",projectBtnWrapper:"_projectBtnWrapper_7lz45_155",projectDecor:"_projectDecor_7lz45_201",projectLotPropertyListMobile:"_projectLotPropertyListMobile_7lz45_210",projectLotPropertyListDesktop:"_projectLotPropertyListDesktop_7lz45_218",lotPropertyItemDesktop:"_lotPropertyItemDesktop_7lz45_221",projectDiscountWrapper:"_projectDiscountWrapper_7lz45_232",discountPrice:"_discountPrice_7lz45_235",projectLotPricePerMetr:"_projectLotPricePerMetr_7lz45_255"},D2=g2.bind(l2),ht=({isProjectCard:r})=>a.jsxs("div",{className:D2(l2.root,{[l2.projectRoot]:r}),children:[a.jsx("div",{className:D2(l2.lotImageWrapper,{[l2.projectLotImageWrapper]:r})}),a.jsxs("div",{className:D2(l2.lotInfoWrapper,{[l2.projectLotInfoWrapper]:r}),children:[a.jsx("div",{className:D2(l2.infoHeader,{[l2.projectInfoHeader]:r})}),a.jsx("div",{className:D2(l2.decor,{[l2.projectDecor]:r})}),a.jsxs("div",{className:D2(l2.lotPropertyListDesktop,{[l2.projectLotPropertyListDesktop]:r}),children:[a.jsx("div",{className:l2.lotPropertyItemDesktop}),a.jsx("div",{className:l2.lotPropertyItemDesktop}),a.jsx("div",{className:l2.lotPropertyItemDesktop})]}),a.jsxs("ul",{className:D2(l2.lotPropertyListMobile,{[l2.projectLotPropertyListMobile]:r}),children:[a.jsxs("li",{className:D2(l2.lotPropertyItem,{[l2.projectLotPropertyItem]:r}),children:[a.jsx("div",{}),a.jsx("div",{})]}),a.jsxs("li",{className:D2(l2.lotPropertyItem,{[l2.projectLotPropertyItem]:r}),children:[a.jsx("div",{}),a.jsx("div",{})]}),a.jsxs("li",{className:D2(l2.lotPropertyItem,{[l2.projectLotPropertyItem]:r}),children:[a.jsx("div",{}),a.jsx("div",{})]})]})]}),a.jsxs("div",{className:D2(l2.lotPriceWrapper,{[l2.projectLotPriceWrapper]:r}),children:[a.jsx("div",{className:D2(l2.discountWrapper,{[l2.projectDiscountWrapper]:r}),children:a.jsx("div",{})}),a.jsx("div",{className:D2(l2.lotPricePerMetr,{[l2.projectLotPricePerMetr]:r})}),a.jsxs("div",{className:D2(l2.btnWrapper,{[l2.projectBtnWrapper]:r}),children:[a.jsx("div",{}),a.jsx("div",{})]})]})]}),i0={root:"_root_eu55e_12",projectHeader:"_projectHeader_eu55e_20",projectTitleWrapper:"_projectTitleWrapper_eu55e_28",projectBtn:"_projectBtn_eu55e_33",pulsing:"_pulsing_eu55e_1",projectTitle:"_projectTitle_eu55e_28",projectYearMobile:"_projectYearMobile_eu55e_49",metroWrapper:"_metroWrapper_eu55e_58",filterBtnWrapper:"_filterBtnWrapper_eu55e_71",projectYearDesktop:"_projectYearDesktop_eu55e_113"},Js=()=>{const r=[1,2,3,4,5];return a.jsxs("div",{className:i0.root,children:[a.jsxs("div",{className:i0.projectHeader,children:[a.jsxs("div",{className:i0.projectTitleWrapper,children:[a.jsx("div",{className:i0.projectTitle}),a.jsx("div",{className:i0.projectBtn})]}),a.jsxs("div",{className:i0.metroWrapper,children:[a.jsx("div",{className:i0.projectYearDesktop}),a.jsx("div",{}),a.jsx("div",{})]}),a.jsx("div",{className:i0.projectYearMobile})]}),r.map(e=>a.jsx(ht,{},e))]})},m0={root:"_root_1knhi_1",whiteFill:"_whiteFill_1knhi_29",text:"_text_1knhi_34",whiteStroke:"_whiteStroke_1knhi_48",withPadding:"_withPadding_1knhi_86",grayDesign:"_grayDesign_1knhi_90"},X0=g2.bind(m0),Ks=({variant:r="whiteFill",classname:e,children:t})=>a.jsx("div",{className:X0(m0.root,m0[`${r}`],e),children:t}),pt=_.forwardRef((r,e)=>{const{isTablet:t,isDesktop:s}=s0(),n=(E,I)=>E&&b?b:I&&y?y:m,{children:i,className:o,additionalClassName:l,additionalLabelClass:d,isLong:h,checked:f,withPadding:p=!1,width:m,width_m:b,width_l:y,...S}=r;return a.jsxs("label",{className:X0(m0.item,d,{[m0.withPadding]:p}),children:[a.jsx("input",{ref:e,type:"checkbox",checked:f,...S}),a.jsx("div",{className:X0(o,l,{isLong:h}),style:{width:n(t,s)},children:a.jsx(f0,{className:X0(m0.text),children:i})})]})});pt.displayName="TabSelectItem";const Qs=Object.assign(Ks,{Item:pt}),ge={root:"_root_1gn8f_1",plusBtn:"_plusBtn_1gn8f_6",minusBtn:"_minusBtn_1gn8f_11"},$s=({size:r="medium",zoomIn:e,zoomOut:t})=>a.jsxs("div",{className:ge.root,children:[a.jsx(b0,{iconName:"plus",size:r,color:"#141416",additionalClass:ge.plusBtn,onClick:e}),a.jsx(b0,{iconName:"minus",size:r,color:"#141416",additionalClass:ge.minusBtn,onClick:t})]}),A2={btn:"_btn_ky28a_1",modal:"_modal_ky28a_9",modalBody:"_modalBody_ky28a_16",root:"_root_ky28a_21",title:"_title_ky28a_34",description:"_description_ky28a_41",inputWrapper:"_inputWrapper_ky28a_48",linkPolicy:"_linkPolicy_ky28a_55",telegramLink:"_telegramLink_ky28a_60",telegramWrapper:"_telegramWrapper_ky28a_65",telegram:"_telegram_ky28a_60",orText:"_orText_ky28a_88",checkboxText:"_checkboxText_ky28a_116"};var M0=r=>r.type==="checkbox",g0=r=>r instanceof Date,T2=r=>r==null;const ft=r=>typeof r=="object";var S2=r=>!T2(r)&&!Array.isArray(r)&&ft(r)&&!g0(r),Ct=r=>S2(r)&&r.target?M0(r.target)?r.target.checked:r.target.value:r,ei=r=>r.substring(0,r.search(/\.\d+(\.|$)/))||r,_t=(r,e)=>r.has(ei(e)),ti=r=>{const e=r.constructor&&r.constructor.prototype;return S2(e)&&e.hasOwnProperty("isPrototypeOf")},ve=typeof window<"u"&&typeof window.HTMLElement<"u"&&typeof document<"u";function I2(r){let e;const t=Array.isArray(r);if(r instanceof Date)e=new Date(r);else if(r instanceof Set)e=new Set(r);else if(!(ve&&(r instanceof Blob||r instanceof FileList))&&(t||S2(r)))if(e=t?[]:{},!t&&!ti(r))e=r;else for(const s in r)r.hasOwnProperty(s)&&(e[s]=I2(r[s]));else return r;return e}var Y0=r=>Array.isArray(r)?r.filter(Boolean):[],y2=r=>r===void 0,x=(r,e,t)=>{if(!e||!S2(r))return t;const s=Y0(e.split(/[,[\].]+?/)).reduce((n,i)=>T2(n)?n:n[i],r);return y2(s)||s===r?y2(r[e])?t:r[e]:s},J2=r=>typeof r=="boolean",ke=r=>/^\w*$/.test(r),mt=r=>Y0(r.replace(/["|']|\]/g,"").split(/\.|\[/)),v2=(r,e,t)=>{let s=-1;const n=ke(e)?[e]:mt(e),i=n.length,o=i-1;for(;++s<i;){const l=n[s];let d=t;if(s!==o){const h=r[l];d=S2(h)||Array.isArray(h)?h:isNaN(+n[s+1])?{}:[]}if(l==="__proto__")return;r[l]=d,r=r[l]}return r};const R0={BLUR:"blur",FOCUS_OUT:"focusout",CHANGE:"change"},q2={onBlur:"onBlur",onChange:"onChange",onSubmit:"onSubmit",onTouched:"onTouched",all:"all"},t0={max:"max",min:"min",maxLength:"maxLength",minLength:"minLength",pattern:"pattern",required:"required",validate:"validate"},ri=_.createContext(null),ye=()=>_.useContext(ri);var gt=(r,e,t,s=!0)=>{const n={defaultValues:e._defaultValues};for(const i in r)Object.defineProperty(n,i,{get:()=>{const o=i;return e._proxyFormState[o]!==q2.all&&(e._proxyFormState[o]=!s||q2.all),t&&(t[o]=!0),r[o]}});return n},O2=r=>S2(r)&&!Object.keys(r).length,vt=(r,e,t,s)=>{t(r);const{name:n,...i}=r;return O2(i)||Object.keys(i).length>=Object.keys(e).length||Object.keys(i).find(o=>e[o]===(!s||q2.all))},B0=r=>Array.isArray(r)?r:[r],kt=(r,e,t)=>!r||!e||r===e||B0(r).some(s=>s&&(t?s===e:s.startsWith(e)||e.startsWith(s)));function we(r){const e=_.useRef(r);e.current=r,_.useEffect(()=>{const t=!r.disabled&&e.current.subject&&e.current.subject.subscribe({next:e.current.next});return()=>{t&&t.unsubscribe()}},[r.disabled])}function si(r){const e=ye(),{control:t=e.control,disabled:s,name:n,exact:i}=r||{},[o,l]=_.useState(t._formState),d=_.useRef(!0),h=_.useRef({isDirty:!1,isLoading:!1,dirtyFields:!1,touchedFields:!1,validatingFields:!1,isValidating:!1,isValid:!1,errors:!1}),f=_.useRef(n);return f.current=n,we({disabled:s,next:p=>d.current&&kt(f.current,p.name,i)&&vt(p,h.current,t._updateFormState)&&l({...t._formState,...p}),subject:t._subjects.state}),_.useEffect(()=>(d.current=!0,h.current.isValid&&t._updateValid(!0),()=>{d.current=!1}),[t]),gt(o,t,h.current,!1)}var K2=r=>typeof r=="string",yt=(r,e,t,s,n)=>K2(r)?(s&&e.watch.add(r),x(t,r,n)):Array.isArray(r)?r.map(i=>(s&&e.watch.add(i),x(t,i))):(s&&(e.watchAll=!0),t);function ii(r){const e=ye(),{control:t=e.control,name:s,defaultValue:n,disabled:i,exact:o}=r||{},l=_.useRef(s);l.current=s,we({disabled:i,subject:t._subjects.values,next:f=>{kt(l.current,f.name,o)&&h(I2(yt(l.current,t._names,f.values||t._formValues,!1,n)))}});const[d,h]=_.useState(t._getWatch(s,n));return _.useEffect(()=>t._removeUnmounted()),d}function ni(r){const e=ye(),{name:t,disabled:s,control:n=e.control,shouldUnregister:i}=r,o=_t(n._names.array,t),l=ii({control:n,name:t,defaultValue:x(n._formValues,t,x(n._defaultValues,t,r.defaultValue)),exact:!0}),d=si({control:n,name:t,exact:!0}),h=_.useRef(n.register(t,{...r.rules,value:l,...J2(r.disabled)?{disabled:r.disabled}:{}}));return _.useEffect(()=>{const f=n._options.shouldUnregister||i,p=(m,b)=>{const y=x(n._fields,m);y&&y._f&&(y._f.mount=b)};if(p(t,!0),f){const m=I2(x(n._options.defaultValues,t));v2(n._defaultValues,t,m),y2(x(n._formValues,t))&&v2(n._formValues,t,m)}return()=>{(o?f&&!n._state.action:f)?n.unregister(t):p(t,!1)}},[t,n,o,i]),_.useEffect(()=>{x(n._fields,t)&&n._updateDisabledField({disabled:s,fields:n._fields,name:t,value:x(n._fields,t)._f.value})},[s,t,n]),{field:{name:t,value:l,...J2(s)||d.disabled?{disabled:d.disabled||s}:{},onChange:_.useCallback(f=>h.current.onChange({target:{value:Ct(f),name:t},type:R0.CHANGE}),[t]),onBlur:_.useCallback(()=>h.current.onBlur({target:{value:x(n._formValues,t),name:t},type:R0.BLUR}),[t,n]),ref:_.useCallback(f=>{const p=x(n._fields,t);p&&f&&(p._f.ref={focus:()=>f.focus(),select:()=>f.select(),setCustomValidity:m=>f.setCustomValidity(m),reportValidity:()=>f.reportValidity()})},[n._fields,t])},formState:d,fieldState:Object.defineProperties({},{invalid:{enumerable:!0,get:()=>!!x(d.errors,t)},isDirty:{enumerable:!0,get:()=>!!x(d.dirtyFields,t)},isTouched:{enumerable:!0,get:()=>!!x(d.touchedFields,t)},isValidating:{enumerable:!0,get:()=>!!x(d.validatingFields,t)},error:{enumerable:!0,get:()=>x(d.errors,t)}})}}const ai=r=>r.render(ni(r));var oi=(r,e,t,s,n)=>e?{...t[r],types:{...t[r]&&t[r].types?t[r].types:{},[s]:n||!0}}:{},wt=r=>({isOnSubmit:!r||r===q2.onSubmit,isOnBlur:r===q2.onBlur,isOnChange:r===q2.onChange,isOnAll:r===q2.all,isOnTouch:r===q2.onTouched}),bt=(r,e,t)=>!t&&(e.watchAll||e.watch.has(r)||[...e.watch].some(s=>r.startsWith(s)&&/^\.\w+/.test(r.slice(s.length))));const V0=(r,e,t,s)=>{for(const n of t||Object.keys(r)){const i=x(r,n);if(i){const{_f:o,...l}=i;if(o){if(o.refs&&o.refs[0]&&e(o.refs[0],n)&&!s)break;if(o.ref&&e(o.ref,o.name)&&!s)break;V0(l,e)}else S2(l)&&V0(l,e)}}};var li=(r,e,t)=>{const s=B0(x(r,t));return v2(s,"root",e[t]),v2(r,t,s),r},be=r=>r.type==="file",n0=r=>typeof r=="function",J0=r=>{if(!ve)return!1;const e=r?r.ownerDocument:0;return r instanceof(e&&e.defaultView?e.defaultView.HTMLElement:HTMLElement)},K0=r=>K2(r),Ee=r=>r.type==="radio",Q0=r=>r instanceof RegExp;const Et={value:!1,isValid:!1},xt={value:!0,isValid:!0};var St=r=>{if(Array.isArray(r)){if(r.length>1){const e=r.filter(t=>t&&t.checked&&!t.disabled).map(t=>t.value);return{value:e,isValid:!!e.length}}return r[0].checked&&!r[0].disabled?r[0].attributes&&!y2(r[0].attributes.value)?y2(r[0].value)||r[0].value===""?xt:{value:r[0].value,isValid:!0}:xt:Et}return Et};const Ft={isValid:!1,value:null};var At=r=>Array.isArray(r)?r.reduce((e,t)=>t&&t.checked&&!t.disabled?{isValid:!0,value:t.value}:e,Ft):Ft;function Mt(r,e,t="validate"){if(K0(r)||Array.isArray(r)&&r.every(K0)||J2(r)&&!r)return{type:t,message:K0(r)?r:"",ref:e}}var v0=r=>S2(r)&&!Q0(r)?r:{value:r,message:""},Bt=async(r,e,t,s,n)=>{const{ref:i,refs:o,required:l,maxLength:d,minLength:h,min:f,max:p,pattern:m,validate:b,name:y,valueAsNumber:S,mount:E,disabled:I}=r._f,V=x(e,y);if(!E||I)return{};const z=o?o[0]:i,T=L=>{s&&z.reportValidity&&(z.setCustomValidity(J2(L)?"":L||""),z.reportValidity())},v={},G=Ee(i),_2=M0(i),o2=G||_2,Z=(S||be(i))&&y2(i.value)&&y2(V)||J0(i)&&i.value===""||V===""||Array.isArray(V)&&!V.length,X=oi.bind(null,y,t,v),e2=(L,H,W,Y=t0.maxLength,n2=t0.minLength)=>{const U=L?H:W;v[y]={type:L?Y:n2,message:U,ref:i,...X(L?Y:n2,U)}};if(n?!Array.isArray(V)||!V.length:l&&(!o2&&(Z||T2(V))||J2(V)&&!V||_2&&!St(o).isValid||G&&!At(o).isValid)){const{value:L,message:H}=K0(l)?{value:!!l,message:l}:v0(l);if(L&&(v[y]={type:t0.required,message:H,ref:z,...X(t0.required,H)},!t))return T(H),v}if(!Z&&(!T2(f)||!T2(p))){let L,H;const W=v0(p),Y=v0(f);if(!T2(V)&&!isNaN(V)){const n2=i.valueAsNumber||V&&+V;T2(W.value)||(L=n2>W.value),T2(Y.value)||(H=n2<Y.value)}else{const n2=i.valueAsDate||new Date(V),U=k=>new Date(new Date().toDateString()+" "+k),u2=i.type=="time",m2=i.type=="week";K2(W.value)&&V&&(L=u2?U(V)>U(W.value):m2?V>W.value:n2>new Date(W.value)),K2(Y.value)&&V&&(H=u2?U(V)<U(Y.value):m2?V<Y.value:n2<new Date(Y.value))}if((L||H)&&(e2(!!L,W.message,Y.message,t0.max,t0.min),!t))return T(v[y].message),v}if((d||h)&&!Z&&(K2(V)||n&&Array.isArray(V))){const L=v0(d),H=v0(h),W=!T2(L.value)&&V.length>+L.value,Y=!T2(H.value)&&V.length<+H.value;if((W||Y)&&(e2(W,L.message,H.message),!t))return T(v[y].message),v}if(m&&!Z&&K2(V)){const{value:L,message:H}=v0(m);if(Q0(L)&&!V.match(L)&&(v[y]={type:t0.pattern,message:H,ref:i,...X(t0.pattern,H)},!t))return T(H),v}if(b){if(n0(b)){const L=await b(V,e),H=Mt(L,z);if(H&&(v[y]={...H,...X(t0.validate,H.message)},!t))return T(H.message),v}else if(S2(b)){let L={};for(const H in b){if(!O2(L)&&!t)break;const W=Mt(await b[H](V,e),z,H);W&&(L={...W,...X(H,W.message)},T(W.message),t&&(v[y]=L))}if(!O2(L)&&(v[y]={ref:z,...L},!t))return v}}return T(!0),v};function ci(r,e){const t=e.slice(0,-1).length;let s=0;for(;s<t;)r=y2(r)?s++:r[e[s++]];return r}function ui(r){for(const e in r)if(r.hasOwnProperty(e)&&!y2(r[e]))return!1;return!0}function F2(r,e){const t=Array.isArray(e)?e:ke(e)?[e]:mt(e),s=t.length===1?r:ci(r,t),n=t.length-1,i=t[n];return s&&delete s[i],n!==0&&(S2(s)&&O2(s)||Array.isArray(s)&&ui(s))&&F2(r,t.slice(0,-1)),r}var xe=()=>{let r=[];return{get observers(){return r},next:n=>{for(const i of r)i.next&&i.next(n)},subscribe:n=>(r.push(n),{unsubscribe:()=>{r=r.filter(i=>i!==n)}}),unsubscribe:()=>{r=[]}}},$0=r=>T2(r)||!ft(r);function u0(r,e){if($0(r)||$0(e))return r===e;if(g0(r)&&g0(e))return r.getTime()===e.getTime();const t=Object.keys(r),s=Object.keys(e);if(t.length!==s.length)return!1;for(const n of t){const i=r[n];if(!s.includes(n))return!1;if(n!=="ref"){const o=e[n];if(g0(i)&&g0(o)||S2(i)&&S2(o)||Array.isArray(i)&&Array.isArray(o)?!u0(i,o):i!==o)return!1}}return!0}var Vt=r=>r.type==="select-multiple",di=r=>Ee(r)||M0(r),Se=r=>J0(r)&&r.isConnected,Tt=r=>{for(const e in r)if(n0(r[e]))return!0;return!1};function ee(r,e={}){const t=Array.isArray(r);if(S2(r)||t)for(const s in r)Array.isArray(r[s])||S2(r[s])&&!Tt(r[s])?(e[s]=Array.isArray(r[s])?[]:{},ee(r[s],e[s])):T2(r[s])||(e[s]=!0);return e}function Lt(r,e,t){const s=Array.isArray(r);if(S2(r)||s)for(const n in r)Array.isArray(r[n])||S2(r[n])&&!Tt(r[n])?y2(e)||$0(t[n])?t[n]=Array.isArray(r[n])?ee(r[n],[]):{...ee(r[n])}:Lt(r[n],T2(e)?{}:e[n],t[n]):t[n]=!u0(r[n],e[n]);return t}var te=(r,e)=>Lt(r,e,ee(e)),Dt=(r,{valueAsNumber:e,valueAsDate:t,setValueAs:s})=>y2(r)?r:e?r===""?NaN:r&&+r:t&&K2(r)?new Date(r):s?s(r):r;function Fe(r){const e=r.ref;if(!(r.refs?r.refs.every(t=>t.disabled):e.disabled))return be(e)?e.files:Ee(e)?At(r.refs).value:Vt(e)?[...e.selectedOptions].map(({value:t})=>t):M0(e)?St(r.refs).value:Dt(y2(e.value)?r.ref.value:e.value,r)}var hi=(r,e,t,s)=>{const n={};for(const i of r){const o=x(e,i);o&&v2(n,i,o._f)}return{criteriaMode:t,names:[...r],fields:n,shouldUseNativeValidation:s}},T0=r=>y2(r)?r:Q0(r)?r.source:S2(r)?Q0(r.value)?r.value.source:r.value:r,pi=r=>r.mount&&(r.required||r.min||r.max||r.maxLength||r.minLength||r.pattern||r.validate);function It(r,e,t){const s=x(r,t);if(s||ke(t))return{error:s,name:t};const n=t.split(".");for(;n.length;){const i=n.join("."),o=x(e,i),l=x(r,i);if(o&&!Array.isArray(o)&&t!==i)return{name:t};if(l&&l.type)return{name:i,error:l};n.pop()}return{name:t}}var fi=(r,e,t,s,n)=>n.isOnAll?!1:!t&&n.isOnTouch?!(e||r):(t?s.isOnBlur:n.isOnBlur)?!r:(t?s.isOnChange:n.isOnChange)?r:!0,Ci=(r,e)=>!Y0(x(r,e)).length&&F2(r,e);const _i={mode:q2.onSubmit,reValidateMode:q2.onChange,shouldFocusError:!0};function mi(r={}){let e={..._i,...r},t={submitCount:0,isDirty:!1,isLoading:n0(e.defaultValues),isValidating:!1,isSubmitted:!1,isSubmitting:!1,isSubmitSuccessful:!1,isValid:!1,touchedFields:{},dirtyFields:{},validatingFields:{},errors:e.errors||{},disabled:e.disabled||!1},s={},n=S2(e.defaultValues)||S2(e.values)?I2(e.defaultValues||e.values)||{}:{},i=e.shouldUnregister?{}:I2(n),o={action:!1,mount:!1,watch:!1},l={mount:new Set,unMount:new Set,array:new Set,watch:new Set},d,h=0;const f={isDirty:!1,dirtyFields:!1,validatingFields:!1,touchedFields:!1,isValidating:!1,isValid:!1,errors:!1},p={values:xe(),array:xe(),state:xe()},m=wt(e.mode),b=wt(e.reValidateMode),y=e.criteriaMode===q2.all,S=u=>C=>{clearTimeout(h),h=setTimeout(u,C)},E=async u=>{if(f.isValid||u){const C=e.resolver?O2((await o2()).errors):await X(s,!0);C!==t.isValid&&p.state.next({isValid:C})}},I=(u,C)=>{(f.isValidating||f.validatingFields)&&((u||Array.from(l.mount)).forEach(g=>{g&&(C?v2(t.validatingFields,g,C):F2(t.validatingFields,g))}),p.state.next({validatingFields:t.validatingFields,isValidating:!O2(t.validatingFields)}))},V=(u,C=[],g,M,F=!0,w=!0)=>{if(M&&g){if(o.action=!0,w&&Array.isArray(x(s,u))){const N=g(x(s,u),M.argA,M.argB);F&&v2(s,u,N)}if(w&&Array.isArray(x(t.errors,u))){const N=g(x(t.errors,u),M.argA,M.argB);F&&v2(t.errors,u,N),Ci(t.errors,u)}if(f.touchedFields&&w&&Array.isArray(x(t.touchedFields,u))){const N=g(x(t.touchedFields,u),M.argA,M.argB);F&&v2(t.touchedFields,u,N)}f.dirtyFields&&(t.dirtyFields=te(n,i)),p.state.next({name:u,isDirty:L(u,C),dirtyFields:t.dirtyFields,errors:t.errors,isValid:t.isValid})}else v2(i,u,C)},z=(u,C)=>{v2(t.errors,u,C),p.state.next({errors:t.errors})},T=u=>{t.errors=u,p.state.next({errors:t.errors,isValid:!1})},v=(u,C,g,M)=>{const F=x(s,u);if(F){const w=x(i,u,y2(g)?x(n,u):g);y2(w)||M&&M.defaultChecked||C?v2(i,u,C?w:Fe(F._f)):Y(u,w),o.mount&&E()}},G=(u,C,g,M,F)=>{let w=!1,N=!1;const C2={name:u},x2=!!(x(s,u)&&x(s,u)._f&&x(s,u)._f.disabled);if(!g||M){f.isDirty&&(N=t.isDirty,t.isDirty=C2.isDirty=L(),w=N!==C2.isDirty);const H2=x2||u0(x(n,u),C);N=!!(!x2&&x(t.dirtyFields,u)),H2||x2?F2(t.dirtyFields,u):v2(t.dirtyFields,u,!0),C2.dirtyFields=t.dirtyFields,w=w||f.dirtyFields&&N!==!H2}if(g){const H2=x(t.touchedFields,u);H2||(v2(t.touchedFields,u,g),C2.touchedFields=t.touchedFields,w=w||f.touchedFields&&H2!==g)}return w&&F&&p.state.next(C2),w?C2:{}},_2=(u,C,g,M)=>{const F=x(t.errors,u),w=f.isValid&&J2(C)&&t.isValid!==C;if(r.delayError&&g?(d=S(()=>z(u,g)),d(r.delayError)):(clearTimeout(h),d=null,g?v2(t.errors,u,g):F2(t.errors,u)),(g?!u0(F,g):F)||!O2(M)||w){const N={...M,...w&&J2(C)?{isValid:C}:{},errors:t.errors,name:u};t={...t,...N},p.state.next(N)}},o2=async u=>{I(u,!0);const C=await e.resolver(i,e.context,hi(u||l.mount,s,e.criteriaMode,e.shouldUseNativeValidation));return I(u),C},Z=async u=>{const{errors:C}=await o2(u);if(u)for(const g of u){const M=x(C,g);M?v2(t.errors,g,M):F2(t.errors,g)}else t.errors=C;return C},X=async(u,C,g={valid:!0})=>{for(const M in u){const F=u[M];if(F){const{_f:w,...N}=F;if(w){const C2=l.array.has(w.name);I([M],!0);const x2=await Bt(F,i,y,e.shouldUseNativeValidation&&!C,C2);if(I([M]),x2[w.name]&&(g.valid=!1,C))break;!C&&(x(x2,w.name)?C2?li(t.errors,x2,w.name):v2(t.errors,w.name,x2[w.name]):F2(t.errors,w.name))}!O2(N)&&await X(N,C,g)}}return g.valid},e2=()=>{for(const u of l.unMount){const C=x(s,u);C&&(C._f.refs?C._f.refs.every(g=>!Se(g)):!Se(C._f.ref))&&q(u)}l.unMount=new Set},L=(u,C)=>(u&&C&&v2(i,u,C),!u0(B(),n)),H=(u,C,g)=>yt(u,l,{...o.mount?i:y2(C)?n:K2(u)?{[u]:C}:C},g,C),W=u=>Y0(x(o.mount?i:n,u,r.shouldUnregister?x(n,u,[]):[])),Y=(u,C,g={})=>{const M=x(s,u);let F=C;if(M){const w=M._f;w&&(!w.disabled&&v2(i,u,Dt(C,w)),F=J0(w.ref)&&T2(C)?"":C,Vt(w.ref)?[...w.ref.options].forEach(N=>N.selected=F.includes(N.value)):w.refs?M0(w.ref)?w.refs.length>1?w.refs.forEach(N=>(!N.defaultChecked||!N.disabled)&&(N.checked=Array.isArray(F)?!!F.find(C2=>C2===N.value):F===N.value)):w.refs[0]&&(w.refs[0].checked=!!F):w.refs.forEach(N=>N.checked=N.value===F):be(w.ref)?w.ref.value="":(w.ref.value=F,w.ref.type||p.values.next({name:u,values:{...i}})))}(g.shouldDirty||g.shouldTouch)&&G(u,F,g.shouldTouch,g.shouldDirty,!0),g.shouldValidate&&k(u)},n2=(u,C,g)=>{for(const M in C){const F=C[M],w=`${u}.${M}`,N=x(s,w);(l.array.has(u)||!$0(F)||N&&!N._f)&&!g0(F)?n2(w,F,g):Y(w,F,g)}},U=(u,C,g={})=>{const M=x(s,u),F=l.array.has(u),w=I2(C);v2(i,u,w),F?(p.array.next({name:u,values:{...i}}),(f.isDirty||f.dirtyFields)&&g.shouldDirty&&p.state.next({name:u,dirtyFields:te(n,i),isDirty:L(u,w)})):M&&!M._f&&!T2(w)?n2(u,w,g):Y(u,w,g),bt(u,l)&&p.state.next({...t}),p.values.next({name:o.mount?u:void 0,values:{...i}})},u2=async u=>{o.mount=!0;const C=u.target;let g=C.name,M=!0;const F=x(s,g),w=()=>C.type?Fe(F._f):Ct(u),N=C2=>{M=Number.isNaN(C2)||C2===x(i,g,C2)};if(F){let C2,x2;const H2=w(),y0=u.type===R0.BLUR||u.type===R0.FOCUS_OUT,Ii=!pi(F._f)&&!e.resolver&&!x(t.errors,g)&&!F._f.deps||fi(y0,x(t.touchedFields,g),t.isSubmitted,b,m),Ve=bt(g,l,y0);v2(i,g,H2),y0?(F._f.onBlur&&F._f.onBlur(u),d&&d(0)):F._f.onChange&&F._f.onChange(u);const Te=G(g,H2,y0,!1),Oi=!O2(Te)||Ve;if(!y0&&p.values.next({name:g,type:u.type,values:{...i}}),Ii)return f.isValid&&E(),Oi&&p.state.next({name:g,...Ve?{}:Te});if(!y0&&Ve&&p.state.next({...t}),e.resolver){const{errors:Ht}=await o2([g]);if(N(H2),M){const zi=It(t.errors,s,g),Wt=It(Ht,s,zi.name||g);C2=Wt.error,g=Wt.name,x2=O2(Ht)}}else I([g],!0),C2=(await Bt(F,i,y,e.shouldUseNativeValidation))[g],I([g]),N(H2),M&&(C2?x2=!1:f.isValid&&(x2=await X(s,!0)));M&&(F._f.deps&&k(F._f.deps),_2(g,x2,C2,Te))}},m2=(u,C)=>{if(x(t.errors,C)&&u.focus)return u.focus(),1},k=async(u,C={})=>{let g,M;const F=B0(u);if(e.resolver){const w=await Z(y2(u)?u:F);g=O2(w),M=u?!F.some(N=>x(w,N)):g}else u?(M=(await Promise.all(F.map(async w=>{const N=x(s,w);return await X(N&&N._f?{[w]:N}:N)}))).every(Boolean),!(!M&&!t.isValid)&&E()):M=g=await X(s);return p.state.next({...!K2(u)||f.isValid&&g!==t.isValid?{}:{name:u},...e.resolver||!u?{isValid:g}:{},errors:t.errors}),C.shouldFocus&&!M&&V0(s,m2,u?F:l.mount),M},B=u=>{const C={...o.mount?i:n};return y2(u)?C:K2(u)?x(C,u):u.map(g=>x(C,g))},Q=(u,C)=>({invalid:!!x((C||t).errors,u),isDirty:!!x((C||t).dirtyFields,u),error:x((C||t).errors,u),isValidating:!!x(t.validatingFields,u),isTouched:!!x((C||t).touchedFields,u)}),R=u=>{u&&B0(u).forEach(C=>F2(t.errors,C)),p.state.next({errors:u?t.errors:{}})},P=(u,C,g)=>{const M=(x(s,u,{_f:{}})._f||{}).ref,F=x(t.errors,u)||{},{ref:w,message:N,type:C2,...x2}=F;v2(t.errors,u,{...x2,...C,ref:M}),p.state.next({name:u,errors:t.errors,isValid:!1}),g&&g.shouldFocus&&M&&M.focus&&M.focus()},t2=(u,C)=>n0(u)?p.values.subscribe({next:g=>u(H(void 0,C),g)}):H(u,C,!0),q=(u,C={})=>{for(const g of u?B0(u):l.mount)l.mount.delete(g),l.array.delete(g),C.keepValue||(F2(s,g),F2(i,g)),!C.keepError&&F2(t.errors,g),!C.keepDirty&&F2(t.dirtyFields,g),!C.keepTouched&&F2(t.touchedFields,g),!C.keepIsValidating&&F2(t.validatingFields,g),!e.shouldUnregister&&!C.keepDefaultValue&&F2(n,g);p.values.next({values:{...i}}),p.state.next({...t,...C.keepDirty?{isDirty:L()}:{}}),!C.keepIsValid&&E()},$=({disabled:u,name:C,field:g,fields:M,value:F})=>{if(J2(u)&&o.mount||u){const w=u?void 0:y2(F)?Fe(g?g._f:x(M,C)._f):F;v2(i,C,w),G(C,w,!1,!1,!0)}},r2=(u,C={})=>{let g=x(s,u);const M=J2(C.disabled);return v2(s,u,{...g||{},_f:{...g&&g._f?g._f:{ref:{name:u}},name:u,mount:!0,...C}}),l.mount.add(u),g?$({field:g,disabled:C.disabled,name:u,value:C.value}):v(u,!0,C.value),{...M?{disabled:C.disabled}:{},...e.progressive?{required:!!C.required,min:T0(C.min),max:T0(C.max),minLength:T0(C.minLength),maxLength:T0(C.maxLength),pattern:T0(C.pattern)}:{},name:u,onChange:u2,onBlur:u2,ref:F=>{if(F){r2(u,C),g=x(s,u);const w=y2(F.value)&&F.querySelectorAll&&F.querySelectorAll("input,select,textarea")[0]||F,N=di(w),C2=g._f.refs||[];if(N?C2.find(x2=>x2===w):w===g._f.ref)return;v2(s,u,{_f:{...g._f,...N?{refs:[...C2.filter(Se),w,...Array.isArray(x(n,u))?[{}]:[]],ref:{type:w.type,name:u}}:{ref:w}}}),v(u,!1,void 0,w)}else g=x(s,u,{}),g._f&&(g._f.mount=!1),(e.shouldUnregister||C.shouldUnregister)&&!(_t(l.array,u)&&o.action)&&l.unMount.add(u)}}},c2=()=>e.shouldFocusError&&V0(s,m2,l.mount),a2=u=>{J2(u)&&(p.state.next({disabled:u}),V0(s,(C,g)=>{const M=x(s,g);M&&(C.disabled=M._f.disabled||u,Array.isArray(M._f.refs)&&M._f.refs.forEach(F=>{F.disabled=M._f.disabled||u}))},0,!1))},M2=(u,C)=>async g=>{let M;g&&(g.preventDefault&&g.preventDefault(),g.persist&&g.persist());let F=I2(i);if(p.state.next({isSubmitting:!0}),e.resolver){const{errors:w,values:N}=await o2();t.errors=w,F=N}else await X(s);if(F2(t.errors,"root"),O2(t.errors)){p.state.next({errors:{}});try{await u(F,g)}catch(w){M=w}}else C&&await C({...t.errors},g),c2(),setTimeout(c2);if(p.state.next({isSubmitted:!0,isSubmitting:!1,isSubmitSuccessful:O2(t.errors)&&!M,submitCount:t.submitCount+1,errors:t.errors}),M)throw M},A=(u,C={})=>{x(s,u)&&(y2(C.defaultValue)?U(u,I2(x(n,u))):(U(u,C.defaultValue),v2(n,u,I2(C.defaultValue))),C.keepTouched||F2(t.touchedFields,u),C.keepDirty||(F2(t.dirtyFields,u),t.isDirty=C.defaultValue?L(u,I2(x(n,u))):L()),C.keepError||(F2(t.errors,u),f.isValid&&E()),p.state.next({...t}))},P2=(u,C={})=>{const g=u?I2(u):n,M=I2(g),F=O2(u),w=F?n:M;if(C.keepDefaultValues||(n=g),!C.keepValues){if(C.keepDirtyValues)for(const N of l.mount)x(t.dirtyFields,N)?v2(w,N,x(i,N)):U(N,x(w,N));else{if(ve&&y2(u))for(const N of l.mount){const C2=x(s,N);if(C2&&C2._f){const x2=Array.isArray(C2._f.refs)?C2._f.refs[0]:C2._f.ref;if(J0(x2)){const H2=x2.closest("form");if(H2){H2.reset();break}}}}s={}}i=r.shouldUnregister?C.keepDefaultValues?I2(n):{}:I2(w),p.array.next({values:{...w}}),p.values.next({values:{...w}})}l={mount:C.keepDirtyValues?l.mount:new Set,unMount:new Set,array:new Set,watch:new Set,watchAll:!1,focus:""},o.mount=!f.isValid||!!C.keepIsValid||!!C.keepDirtyValues,o.watch=!!r.shouldUnregister,p.state.next({submitCount:C.keepSubmitCount?t.submitCount:0,isDirty:F?!1:C.keepDirty?t.isDirty:!!(C.keepDefaultValues&&!u0(u,n)),isSubmitted:C.keepIsSubmitted?t.isSubmitted:!1,dirtyFields:F?{}:C.keepDirtyValues?C.keepDefaultValues&&i?te(n,i):t.dirtyFields:C.keepDefaultValues&&u?te(n,u):C.keepDirty?t.dirtyFields:{},touchedFields:C.keepTouched?t.touchedFields:{},errors:C.keepErrors?t.errors:{},isSubmitSuccessful:C.keepIsSubmitSuccessful?t.isSubmitSuccessful:!1,isSubmitting:!1})},d0=(u,C)=>P2(n0(u)?u(i):u,C);return{control:{register:r2,unregister:q,getFieldState:Q,handleSubmit:M2,setError:P,_executeSchema:o2,_getWatch:H,_getDirty:L,_updateValid:E,_removeUnmounted:e2,_updateFieldArray:V,_updateDisabledField:$,_getFieldArray:W,_reset:P2,_resetDefaultValues:()=>n0(e.defaultValues)&&e.defaultValues().then(u=>{d0(u,e.resetOptions),p.state.next({isLoading:!1})}),_updateFormState:u=>{t={...t,...u}},_disableForm:a2,_subjects:p,_proxyFormState:f,_setErrors:T,get _fields(){return s},get _formValues(){return i},get _state(){return o},set _state(u){o=u},get _defaultValues(){return n},get _names(){return l},set _names(u){l=u},get _formState(){return t},set _formState(u){t=u},get _options(){return e},set _options(u){e={...e,...u}}},trigger:k,register:r2,handleSubmit:M2,watch:t2,setValue:U,getValues:B,reset:d0,resetField:A,clearErrors:R,unregister:q,setError:P,setFocus:(u,C={})=>{const g=x(s,u),M=g&&g._f;if(M){const F=M.refs?M.refs[0]:M.ref;F.focus&&(F.focus(),C.shouldSelect&&F.select())}},getFieldState:Q}}function gi(r={}){const e=_.useRef(),t=_.useRef(),[s,n]=_.useState({isDirty:!1,isValidating:!1,isLoading:n0(r.defaultValues),isSubmitted:!1,isSubmitting:!1,isSubmitSuccessful:!1,isValid:!1,submitCount:0,dirtyFields:{},touchedFields:{},validatingFields:{},errors:r.errors||{},disabled:r.disabled||!1,defaultValues:n0(r.defaultValues)?void 0:r.defaultValues});e.current||(e.current={...mi(r),formState:s});const i=e.current.control;return i._options=r,we({subject:i._subjects.state,next:o=>{vt(o,i._proxyFormState,i._updateFormState,!0)&&n({...i._formState})}}),_.useEffect(()=>i._disableForm(r.disabled),[i,r.disabled]),_.useEffect(()=>{if(i._proxyFormState.isDirty){const o=i._getDirty();o!==s.isDirty&&i._subjects.state.next({isDirty:o})}},[i,s.isDirty]),_.useEffect(()=>{r.values&&!u0(r.values,t.current)?(i._reset(r.values,i._options.resetOptions),t.current=r.values,n(o=>({...o}))):i._resetDefaultValues()},[r.values,i]),_.useEffect(()=>{r.errors&&i._setErrors(r.errors)},[r.errors,i]),_.useEffect(()=>{i._state.mount||(i._updateValid(),i._state.mount=!0),i._state.watch&&(i._state.watch=!1,i._subjects.state.next({...i._formState})),i._removeUnmounted()}),_.useEffect(()=>{r.shouldUnregister&&i._subjects.values.next({values:i._getWatch()})},[r.shouldUnregister,i]),e.current.formState=gt(s,i),e.current}const vi=/^((8|\+7)[\- ]?)?(\(?\d{3}\)?[\- ]?)?[\d\- ]{10}/g,ki=/^(?!.*\.\.)(?!.*@.*\.\.)(?!.*\.@)[A-Z0-9._%+-]+@[A-Z0-9-]+\.[A-Z]{2,}$/i,yi=/^((([а-яА-ЯЁё-]){1,30})(\s{1,3}|)){1,5}$|^((([a-zA-Z-'`]){1,30})(\s{1,3}|)){1,5}$/u,j2={checkbox:"_checkbox_vuhc0_1",checkbox__text:"_checkbox__text_vuhc0_5",checkbox__elem:"_checkbox__elem_vuhc0_9",checkbox__hoverIcon:"_checkbox__hoverIcon_vuhc0_28",error:"_error_vuhc0_35",light:"_light_vuhc0_41",dark:"_dark_vuhc0_44",isChecked:"_isChecked_vuhc0_47","medium-size":"_medium-size_vuhc0_102","large-size":"_large-size_vuhc0_107","small-size":"_small-size_vuhc0_112"},Ae=_.forwardRef(({children:r,isChecked:e=!1,error:t=!1,modifierClassesStyle:s=[""],emitIsChecked:n,onClick:i,variant:o="light",size_s:l,size_m:d,size_l:h,text:f,...p},m)=>{const b=s.map(E=>j2[E]).filter(Boolean).join(" ");let y="",S="20";return h?(y=j2["large-size"]||"",S="20"):l?(y=j2["small-size"]||"",S="12"):(y=j2["medium-size"]||"",S="16"),a.jsxs("label",{className:`
25
- ${j2.checkbox}
26
- ${b}
27
- ${e?j2.isChecked:""}
28
- ${t?j2.error:""}
29
- ${j2[o]||""}
30
- ${y}
31
- `,onClick:()=>{i&&i()},children:[a.jsx("input",{type:"checkbox",ref:m,checked:!!e,onChange:()=>n&&n(!e),...p}),a.jsxs("span",{className:j2.checkbox__elem,children:[e&&a.jsx(d2,{name:"check",size:S}),!e&&a.jsx(d2,{name:"check",size:S,additionalClass:j2.checkbox__hoverIcon})]}),f&&a.jsx("span",{className:j2.checkbox__text,dangerouslySetInnerHTML:{__html:f}}),r]})}),Me={"auto-width":"_auto-width_v6f19_1","full-width":"_full-width_v6f19_6",root:"_root_v6f19_12"},wi=g2.bind(Me),Ot=_.forwardRef(({width:r="auto",additionalClass:e="",children:t="",...s},n)=>a.jsx("textarea",{className:wi(Me.root,Me[`${r}-width`],e),ref:n,style:{resize:"none"},...s,children:t}));Ot.displayName="TextArea";const bi=g2.bind(A2),Ei="Я принимаю условия Политики обработки и защиты персональных данных, даю согласия на обработку персональных данных",xi=({isFormOpen:r,setIsFormOpen:e,isNews:t,title:s,isEmail:n,isPhone:i,isTextArea:o,telegramLink:l="https://t.me/stone_developer",isRequiredPhone:d=!0,isRequiredEmail:h=!1,isRequiredPhoneOrEmail:f,textAreaPlaceholder:p,subTitle:m,submitHandler:b,modalWidth:y="442px",rowsTextArea:S=2,advCheckBox:E={text:Ei,isRequired:!0},isAdvCheckBox:I,addTitleClassName:V,createPortalObj:z,telegramClickHandler:T=()=>null,blurHandler:v,block_name:G,emitCheckBox:_2,emitAdvCheckBox:o2})=>{const{register:Z,handleSubmit:X,reset:e2,control:L,watch:H,formState:{errors:W}}=gi(),Y=!!H("email"),n2=H("personalCheckBox"),U=H("advCheckBox");_.useEffect(()=>{typeof n2<"u"&&_2&&_2()},[_2,n2]),_.useEffect(()=>{typeof U<"u"&&o2&&o2()},[o2,U]);const{isMobile:u2,currentClientWidth:m2}=s0(),k=H("personalCheckBox"),B=H("advCheckBox"),Q=P=>{b(P),e2()},R=(P,{action_element_status:t2,action_element:q})=>{v&&v({e:P,analyticParams:{action_element:q,action_element_status:t2,block_name:G}})};return m2?a.jsx(x0,{additionalClass:A2.modal,additionalClassModalBody:A2.modalBody,createPortalObj:z,isOpen:r,isTransparentBack:!0,emitIsOpen:()=>e(!1),opacity:.7,children:a.jsxs("div",{className:A2.root,style:{width:u2?"100%":y},"data-testid":"modal_window",children:[a.jsx("div",{className:bi(A2.title,V),dangerouslySetInnerHTML:{__html:s??"Оставить обращение"}}),t&&a.jsxs("div",{className:A2.telegramWrapper,children:[a.jsx("a",{className:A2.telegramLink,href:l,target:"_blank","data-testid":"modal_telegram_link",children:a.jsxs("div",{className:A2.telegram,onClick:T,children:[a.jsx("div",{children:"Подписаться в Telegram"}),a.jsx(d2,{name:"telegram"})]})}),a.jsx("div",{className:A2.orText,children:"или"})]}),!t&&a.jsx("div",{className:A2.description,dangerouslySetInnerHTML:{__html:m&&!t?"Оставьте номер телефона для получения консультации":`${a.jsx("div",{children:"привет"})}`}}),a.jsxs("form",{onSubmit:X(Q),children:[a.jsxs(ze,{className:A2.inputWrapper,children:[a.jsx(C0,{width:"full",size_s:"large",variant:"light",placeholder:"Введите имя","data-testid":"modal_name",...Z("name",{required:!0,pattern:yi}),onBlur:P=>R(P,{action_element_status:W.name?"error":"success",action_element:`input_${G}_name`}),error:!!W.name}),i&&a.jsx(ai,{name:"phone",control:L,rules:{required:h||d||f&&!Y,pattern:{value:vi,message:""}},defaultValue:"",render:({field:P})=>a.jsx(C0,{inputMode:"numeric",isPhoneIMask:!0,...P,width:"full","data-testid":"phone_modal",type:"tel",error:!!W.phone,size_s:"large",variant:"light",onBlur:t2=>R(t2,{action_element_status:W.phone?"error":"success",action_element:`input_${G}_phone`})})}),n&&a.jsx(C0,{width:"full",size_s:"large",variant:"light",placeholder:"Введите email","data-testid":"modal_email",...Z("email",{required:h||f&&!Y,pattern:ki}),error:!!W.email,onBlur:P=>R(P,{action_element_status:W.email?"error":"success",action_element:`input_${G}_email`})}),o&&a.jsx(Ot,{"data-testid":"modal_textarea",placeholder:p,rows:S,width:"full",...Z("textarea")}),E&&!t&&I&&a.jsx(Ae,{"data-testid":"modal_advCheckBox",isChecked:B,error:!!W.advCheckBox,text:E.text,...Z("advCheckBox",{required:E==null?void 0:E.isRequired})}),a.jsxs(Ae,{"data-testid":"modal_personalCheckBox",isChecked:k,error:!!W.personalCheckBox,...Z("personalCheckBox",{required:!t}),children:[t&&a.jsxs("div",{className:A2.checkboxText,children:["Согласен(-на)"," ",a.jsx("a",{className:A2.linkPolicy,href:"/documents/soglasie-na-rassylki",children:"получать новости, информацию по сделке и рекламу"})," ","от Stone"]}),!t&&a.jsxs("div",{className:A2.checkboxText,children:["Я принимаю условия"," ",a.jsx("a",{className:A2.linkPolicy,href:"/documents/docs",children:"Политики обработки и защиты персональных данных"}),", даю согласия на обработку персональных данных"]})]}),a.jsx(G2,{"data-testid":"modal_submit",variant:"blue",width:"full",type:"submit",size:"large",as:"button",additionalClass:A2.modalBtn,disabled:!!W.name||!!W.phone&&d||!!W.email&&h||!!W.advCheckBox&&(E==null?void 0:E.isRequired)||!!W.personalCheckBox&&!t,children:"Отправить запрос"})]}),a.jsx(G2,{additionalClass:A2.btn,onClick:()=>e(!1),as:"button",variant:"gray",type:"button",size:"small",children:a.jsx(d2,{name:"close",size:"16",color:"#141416"})})]})]})}):null},Q2={modal:"_modal_1og3m_1",modalBody:"_modalBody_1og3m_9",root:"_root_1og3m_14",check:"_check_1og3m_26",iconCircle:"_iconCircle_1og3m_32",iconCheck:"_iconCheck_1og3m_38",text:"_text_1og3m_44",successTitle:"_successTitle_1og3m_52",title:"_title_1og3m_67"},Si=({isSuccessOpen:r,setIsSuccess:e,createPortalObj:t})=>a.jsx(x0,{createPortalObj:t,emitIsOpen:e,isOpen:r,additionalClassModalBody:Q2.modalBody,additionalClass:Q2.modal,opacity:.7,isTransparentBack:!0,children:a.jsxs("div",{className:Q2.root,children:[a.jsxs("div",{className:Q2.check,children:[a.jsx(d2,{name:"circle",size:"80",additionalClass:Q2.iconCircle,color:"#57C27D"}),a.jsx(d2,{additionalClass:Q2.iconCheck,size:"32",name:"check",color:"#57C27D"})]}),a.jsxs("div",{className:Q2.text,children:[a.jsx("div",{className:Q2.successTitle,children:"Запрос принят"}),a.jsx("div",{className:Q2.successText,children:"Наш менеджер свяжется с вами в ближайшее время"})]}),a.jsx(G2,{"data-testid":"modal_submit",variant:"blue",width:"auto",type:"submit",size:"large",as:"button",onClick:()=>e(!1),additionalClass:Q2.modalBtn,children:"Хорошо"})]})}),Z2={root:"_root_156r8_1",nameWrapper:"_nameWrapper_156r8_8",clearBtn:"_clearBtn_156r8_18",summaryList:"_summaryList_156r8_33",summaryOption:"_summaryOption_156r8_40",categoryOption:"_categoryOption_156r8_62",summaryCategory:"_summaryCategory_156r8_71",headerCategory:"_headerCategory_156r8_81",categoryTitle:"_categoryTitle_156r8_87",categoryOptions:"_categoryOptions_156r8_95"},Fi=({label:r="",isShowReset:e,...t})=>{var d;const s=h=>{t.onChange&&t.onChange(h)},n=h=>{var p;const f=((p=t.selectedValues)==null?void 0:p.filter(m=>m.value!==h))||[];s(f)},i=()=>{s([])},o=h=>{var f;s(((f=t.selectedValues)==null?void 0:f.filter(p=>p.value!==h.value).filter(p=>!h.options.some(m=>m.value===p.value)))??[])},l=(d=t.selectedValues)==null?void 0:d.filter(h=>"options"in h);return a.jsxs("div",{className:Z2.root,children:[a.jsxs("div",{className:Z2.nameWrapper,children:[a.jsx("div",{children:r}),e&&a.jsx("div",{className:Z2.clearBtn,onClick:i,children:"Очистить"})]}),a.jsx(ot,{...t,onChange:s}),t.mode==="options"&&t.selectedValues&&t.selectedValues.length>0&&a.jsx("div",{className:Z2.summaryList,children:t.selectedValues.map(h=>a.jsxs("div",{onClick:()=>n(h.value.toString()),className:Z2.summaryOption,children:[h.label,a.jsx(d2,{name:"close",size:"16"})]},h.value))}),t.mode==="double"&&(l==null?void 0:l.map((h,f)=>{const p=h;return a.jsxs("div",{className:Z2.summaryCategory,children:[a.jsxs("div",{className:Z2.headerCategory,children:[a.jsx("div",{className:Z2.categoryTitle,children:p.label}),a.jsx("div",{onClick:()=>o(h),className:Z2.clearBtn,children:a.jsx(d2,{name:"close",size:"16"})})]}),a.jsx("div",{className:Z2.categoryOptions,children:p.options.filter(m=>{var b;return(b=t.selectedValues)==null?void 0:b.some(y=>m.value===y.value)}).map((m,b)=>a.jsxs("div",{onClick:()=>n(m.value.toString()),className:`${Z2.summaryOption} ${Z2.categoryOption}`,children:[m.label,a.jsx(d2,{name:"close",size:"16"})]},b))})]},f)}))]})},f2={root:"_root_1lkos_1",filterWithSaveModal:"_filterWithSaveModal_1lkos_15",modalAddBody:"_modalAddBody_1lkos_20",closeBtn:"_closeBtn_1lkos_29",btnName:"_btnName_1lkos_35",modalTitle:"_modalTitle_1lkos_39",tabSWitcherWrapper:"_tabSWitcherWrapper_1lkos_48",switcherTitle:"_switcherTitle_1lkos_56",switcherScroll:"_switcherScroll_1lkos_63",tabs:"_tabs_1lkos_72",selectWrapper:"_selectWrapper_1lkos_77",filterOption:"_filterOption_1lkos_81",btnWrapper:"_btnWrapper_1lkos_89",resetBtn:"_resetBtn_1lkos_95",saveBtn:"_saveBtn_1lkos_96",desktopWrapper:"_desktopWrapper_1lkos_100",desktopWrapperOpen:"_desktopWrapperOpen_1lkos_123"};var zt={exports:{}};/*!
32
- Copyright (c) 2018 Jed Watson.
33
- Licensed under the MIT License (MIT), see
34
- http://jedwatson.github.io/classnames
35
- */(function(r){(function(){var e={}.hasOwnProperty;function t(){for(var i="",o=0;o<arguments.length;o++){var l=arguments[o];l&&(i=n(i,s.call(this,l)))}return i}function s(i){if(typeof i=="string"||typeof i=="number")return this&&this[i]||i;if(typeof i!="object")return"";if(Array.isArray(i))return t.apply(this,i);if(i.toString!==Object.prototype.toString&&!i.toString.toString().includes("[native code]"))return i.toString();var o="";for(var l in i)e.call(i,l)&&i[l]&&(o=n(o,this&&this[l]||l));return o}function n(i,o){return o?i?i+" "+o:i+o:i}r.exports?(t.default=t,r.exports=t):window.classNames=t})()})(zt);var Ai=zt.exports;const Mi=re(Ai),Bi=({selectedTabs:r=[],selectedValues:e=[],onClickItem:t,disabledOptions:s=[],tabs:n=[],onChange:i,setSelectedTabs:o,onSaveClick:l,onClearClick:d})=>{const{isMobile:h}=s0(),[f,p]=_.useState(!1),m=_.useRef(null),[b,y]=_.useState(r),[S]=_.useState(e),[E,I]=_.useState(b),[V,z]=_.useState(S),T=Z=>{if(t&&t(Z),s.some(e2=>e2.value===Z.value))return;const X=V.some(e2=>e2.value===Z.value)?V.filter(e2=>e2.value!==Z.value):[...V,Z];z(X)},v=()=>{y(n),I(n),z([]),d(),i&&(i([]),o==null||o(n))},G=()=>{z(e),I(r)},_2=()=>{G(),p(!1)},o2=Z=>{Z.stopPropagation(),l(),i&&(o==null||o(E),i(V)),p(!1)};return _.useEffect(()=>{f||I(Z=>JSON.stringify(Z)!==JSON.stringify(r)?r:Z)},[f,r]),_.useEffect(()=>{const Z=X=>{if(!m.current)return;const e2=X.target;m.current.contains(e2)||e2.closest("svg")||_2()};return f?document.addEventListener("click",Z):document.removeEventListener("click",Z),()=>{document.removeEventListener("click",Z)}},[f]),{isMobile:h,handleClearClick:v,handleCloseModal:_2,handleOptionClick:T,handleSaveClick:o2,localSelectedTabs:E,selectedOptions:V,setSelectedOptions:z,isModalOpen:f,setIsModalOpen:p,setLocalSelectedTabs:I,containerRef:m}},Vi=Mi.bind(f2),Ti=({disabledOptions:r,tabs:e=[],selectOptions:t=[],onChange:s,onClick:n=()=>null,selectedValues:i,setSelectedTabs:o,selectedTabs:l,onClickItem:d,onCLickSelect:h,onSaveClick:f=()=>null,onClearClick:p=()=>null,onTabClick:m=()=>null,btnName:b="Фильтр"})=>{const{handleCloseModal:y,localSelectedTabs:S,selectedOptions:E,isMobile:I,handleOptionClick:V,handleClearClick:z,handleSaveClick:T,isModalOpen:v,setLocalSelectedTabs:G,setIsModalOpen:_2,containerRef:o2}=Bi({selectedTabs:l,onClickItem:d,setSelectedTabs:o,tabs:e,onChange:s,disabledOptions:r,selectedValues:i,onSaveClick:f,onClearClick:p}),Z=()=>a.jsxs(a.Fragment,{children:[a.jsx("div",{className:f2.closeBtn,onClick:()=>{y()},children:a.jsx(d2,{name:"close",size:"24"})}),a.jsx("div",{className:f2.modalTitle,children:"Фильтры"}),a.jsxs("div",{className:f2.tabSWitcherWrapper,children:[a.jsx("div",{className:f2.switcherTitle,children:"Готовность"}),a.jsx("div",{className:f2.switcherScroll,children:a.jsx(F0,{variant:"grayRow",addClassName:f2.tabs,isApart:!0,children:e==null?void 0:e.map((X,e2)=>{var H;const L=X.value;return a.jsx(F0.Item,{itemsLength:e==null?void 0:e.length,mini:!0,size_s:"small",value:L,onClick:()=>{},checked:((H=S==null?void 0:S.find(W=>W.value===L))==null?void 0:H.state)??!1,onChange:()=>{G==null||G(W=>W.map(Y=>Y.value===L?{...Y,state:!Y.state}:Y))},index:e2,children:L},e2)})})})]}),a.jsx("div",{className:f2.selectWrapper,children:t==null?void 0:t.map((X,e2)=>a.jsx(q0,{sizeIcon:"24",addClassName:f2.filterOption,disabledOptions:[],clickableOptions:t==null?void 0:t.map(L=>L.value.toString()),selectedOptions:E,option:X,handleOptionClick:V},e2))}),a.jsxs("div",{className:f2.btnWrapper,children:[a.jsx(G2,{as:"button",variant:"gray",additionalClass:f2.resetBtn,onClick:z,children:"Сбросить"}),a.jsx(G2,{as:"button",additionalClass:f2.saveBtn,onClick:T,children:"Сохранить"})]})]});return a.jsxs(a.Fragment,{children:[a.jsxs("div",{style:{position:"relative"},children:[a.jsxs("div",{className:f2.root,onClick:()=>{h&&h(),n&&n(),I?_2(X=>!X):v||_2(!0)},children:[a.jsx("div",{className:f2.btnName,children:b}),a.jsx(d2,{name:"filter",size:"16"})]}),!I&&a.jsxs("div",{ref:o2,className:Vi(f2.desktopWrapper,{[f2.desktopWrapperOpen]:v}),children:[a.jsx("div",{className:f2.closeBtn,onClick:()=>{y()},children:a.jsx(d2,{name:"close",size:"24"})}),a.jsx("div",{className:f2.modalTitle,children:"Фильтры"}),a.jsxs("div",{className:f2.tabSWitcherWrapper,children:[a.jsx("div",{className:f2.switcherTitle,children:"Готовность"}),a.jsx("div",{className:f2.switcherScroll,children:a.jsx(F0,{variant:"grayRow",addClassName:f2.tabs,isApart:!0,children:e==null?void 0:e.map((X,e2)=>{var H;const L=X.value;return a.jsx(F0.Item,{itemsLength:e==null?void 0:e.length,size_s:"small",mini:!0,value:L,onClick:()=>m(),checked:((H=S==null?void 0:S.find(W=>W.value===L))==null?void 0:H.state)??!1,onChange:()=>{G==null||G(W=>W.map(Y=>Y.value===L?{...Y,state:!Y.state}:Y))},index:e2,addItemClassName:f2.tabSwitcher,children:L},e2)})})})]}),a.jsx("div",{className:f2.selectWrapper,children:t==null?void 0:t.map((X,e2)=>a.jsx(q0,{sizeIcon:"24",addClassName:f2.filterOption,disabledOptions:[],clickableOptions:t==null?void 0:t.map(L=>L.value.toString()),selectedOptions:E,option:X,handleOptionClick:V},e2))}),a.jsxs("div",{className:f2.btnWrapper,children:[a.jsx(G2,{as:"button",variant:"gray",additionalClass:f2.resetBtn,onClick:z,children:"Сбросить"}),a.jsx(G2,{as:"button",additionalClass:f2.saveBtn,onClick:T,children:"Сохранить"})]})]})]}),I&&a.jsx(x0,{isOpen:v,emitIsOpen:_2,isTransparentBack:!0,additionalClassModalBody:f2.modalAddBody,additionalClass:f2.filterWithSaveModal,children:a.jsx(Z,{})})]})},k0={checkboxLabel:"_checkboxLabel_30mwb_1",labelText:"_labelText_30mwb_36",error:"_error_30mwb_44",checkIcon:"_checkIcon_30mwb_53"},Nt=g2.bind(k0),Li=_.forwardRef(({text:r,isChecked:e,error:t,children:s,emitIsChecked:n,...i},o)=>a.jsxs("label",{className:Nt(k0.checkboxLabel,{[k0.error]:t}),children:[a.jsx(C0,{type:"checkbox",...i,onChange:()=>n&&n(!e),ref:o}),e&&a.jsx(d2,{additionalClass:k0.checkIcon,color:"#B1B5C3",strokeWidth:"1.5",name:"check",size:"20"}),a.jsx("div",{className:Nt(k0.labelText,{[k0.error]:t}),dangerouslySetInnerHTML:r?{__html:r}:void 0,children:s})]})),a0={root:"_root_7jm23_1",nameWrapper:"_nameWrapper_7jm23_8",clearBtn:"_clearBtn_7jm23_18",checkboxWrapper:"_checkboxWrapper_7jm23_33",checkboxItem:"_checkboxItem_7jm23_39",checkboxItemActive:"_checkboxItemActive_7jm23_57",checkboxItemDisabled:"_checkboxItemDisabled_7jm23_69"},Pt=g2.bind(a0),Di=({label:r="Тип квартиры",checkboxes:e,addClassname:t})=>{const s=()=>{e==null||e.forEach(n=>{n!=null&&n.isSelected&&(n==null||n.setValue())})};return a.jsxs("div",{className:Pt(a0.root,t),children:[a.jsxs("div",{className:a0.nameWrapper,children:[a.jsx("div",{children:r}),a.jsx("div",{className:a0.clearBtn,onClick:s,children:"Очистить"})]}),a.jsx("div",{className:a0.checkboxWrapper,children:e==null?void 0:e.map(n=>a.jsx("button",{className:Pt(a0.checkboxItem,{[a0.checkboxItemActive]:n==null?void 0:n.isSelected},{[a0.checkboxItemDisabled]:n==null?void 0:n.disabled}),onClick:()=>n==null?void 0:n.setValue(),disabled:n==null?void 0:n.disabled,children:n==null?void 0:n.label},n==null?void 0:n.label))})]})};J.Button=G2,J.CheckBox=Ae,J.CheckBoxNew=Li,J.CheckboxSelect=Di,J.DestinationTab=Kr,J.FieldInput=As,J.FilterWithSave=Ti,J.Flex=ze,J.GroupedInputs=Vs,J.Input=C0,J.Logo=Ls,J.LotCard=Ws,J.LotCardSkeleton=ht,J.MetroTag=Ds,J.MobileButton=Rr,J.Modal=x0,J.ModalForm=xi,J.ModalSuccess=Si,J.NewIcon=d2,J.ProjectCardSkeleton=Js,J.RoundButton=b0,J.Select=ot,J.SliderNavigation=Rs,J.SortSelect=ut,J.SummarySelect=Fi,J.Switcher=es,J.TabSelect=Qs,J.TabSwitcher=F0,J.Tag=p0,J.Text=f0,J.ZoomControls=$s,J.deepEqual=lt,J.useClientWidth=s0,Object.defineProperty(J,Symbol.toStringTag,{value:"Module"})});
1
+ import { Button as e } from "./components/Button/ui/Button.js";
2
+ import { MobileButton as p } from "./components/mobileButton/ui/MobileButton.js";
3
+ import { NewIcon as m } from "./components/NewIcon/ui/NewIcon.js";
4
+ import { DestinationTab as a } from "./components/DestinationTab/ui/DestinationTab.js";
5
+ import { RoundButton as n } from "./components/RoundButton/ui/RoundButton.js";
6
+ import { Tag as c } from "./components/Tag/ui/Tag.js";
7
+ import { Switcher as d } from "./components/Switcher/ui/Switcher.js";
8
+ import { Text as s } from "./components/Text/ui/Text.js";
9
+ import { Flex as h } from "./components/Flex/ui/Flex.js";
10
+ import { Input as T } from "./components/Input/ui/Input.js";
11
+ import { Modal as k } from "./components/Modal/ui/Modal.js";
12
+ import { FieldInput as F } from "./components/FieldInput/ui/FieldInput.js";
13
+ import { F as w, L as I, M as L, a as N, S as v } from "./FilterWithSave-Bp6rH8Pe.js";
14
+ import { GroupedInputs as j } from "./components/GroupedInput/ui/GroupedInputs.js";
15
+ import { Logo as y } from "./components/Logo/ui/Logo.js";
16
+ import { MetroTag as E } from "./components/MetroTag/ui/MetroTag.js";
17
+ import { Select as P } from "./components/Select/ui/Select.js";
18
+ import { useClientWidth as Z } from "./shared/useClientWidth.js";
19
+ import { deepEqual as A } from "./shared/deepEqual.js";
20
+ import { SliderNavigation as J } from "./components/SliderNavigation/ui/SliderNavigation.js";
21
+ import { LotCardSkeleton as O } from "./components/LotCardSkeleton/ui/LotCardSkeleton.js";
22
+ import { ProjectCardSkeleton as U } from "./components/ProjectCardSkeleton/ui/ProjectCardSkeleton.js";
23
+ import { TabSelect as X } from "./components/TabSelect/ui/TabSelect.js";
24
+ import { ZoomControls as _ } from "./components/ZoomControls/ui/ZoomControls.js";
25
+ import { ModalSuccess as oo } from "./components/ModalSuccess/ModalSuccess.js";
26
+ import { SummarySelect as eo } from "./components/SummarySelect/ui/SummarySelect.js";
27
+ import { CheckBox as po } from "./components/CheckBox/CheckBox.js";
28
+ import { CheckBoxNew as mo } from "./components/CheckBoxNew/CheckBoxNew.js";
29
+ import { CheckboxSelect as ao } from "./components/CheckboxSelect/ui/CheckboxSelect.js";
30
+ export {
31
+ e as Button,
32
+ po as CheckBox,
33
+ mo as CheckBoxNew,
34
+ ao as CheckboxSelect,
35
+ a as DestinationTab,
36
+ F as FieldInput,
37
+ w as FilterWithSave,
38
+ h as Flex,
39
+ j as GroupedInputs,
40
+ T as Input,
41
+ y as Logo,
42
+ I as LotCard,
43
+ O as LotCardSkeleton,
44
+ E as MetroTag,
45
+ p as MobileButton,
46
+ k as Modal,
47
+ L as ModalForm,
48
+ oo as ModalSuccess,
49
+ m as NewIcon,
50
+ U as ProjectCardSkeleton,
51
+ n as RoundButton,
52
+ P as Select,
53
+ J as SliderNavigation,
54
+ N as SortSelect,
55
+ eo as SummarySelect,
56
+ d as Switcher,
57
+ X as TabSelect,
58
+ v as TabSwitcher,
59
+ c as Tag,
60
+ s as Text,
61
+ _ as ZoomControls,
62
+ A as deepEqual,
63
+ Z as useClientWidth
64
+ };