@scinverse/ui 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +63 -0
  3. package/dist/components/Badge/Badge.d.ts +16 -0
  4. package/dist/components/Badge/index.d.ts +1 -0
  5. package/dist/components/Button/Button.d.ts +19 -0
  6. package/dist/components/Button/index.d.ts +1 -0
  7. package/dist/components/Card/Card.d.ts +17 -0
  8. package/dist/components/Card/index.d.ts +1 -0
  9. package/dist/components/Checkbox/Checkbox.d.ts +15 -0
  10. package/dist/components/Checkbox/index.d.ts +1 -0
  11. package/dist/components/Dropdown/Dropdown.d.ts +46 -0
  12. package/dist/components/Dropdown/index.d.ts +1 -0
  13. package/dist/components/Filter/Filter.d.ts +22 -0
  14. package/dist/components/Filter/filterModel.d.ts +68 -0
  15. package/dist/components/Filter/index.d.ts +2 -0
  16. package/dist/components/Input/FieldCaption.d.ts +9 -0
  17. package/dist/components/Input/Input.d.ts +16 -0
  18. package/dist/components/Input/SearchBar.d.ts +15 -0
  19. package/dist/components/Input/TextArea.d.ts +13 -0
  20. package/dist/components/Input/index.d.ts +3 -0
  21. package/dist/components/Panel/Panel.d.ts +6 -0
  22. package/dist/components/Panel/index.d.ts +1 -0
  23. package/dist/components/RadioGroup/Radio.d.ts +13 -0
  24. package/dist/components/RadioGroup/RadioGroup.d.ts +19 -0
  25. package/dist/components/RadioGroup/RadioGroupContext.d.ts +11 -0
  26. package/dist/components/RadioGroup/index.d.ts +2 -0
  27. package/dist/components/Switcher/Switcher.d.ts +16 -0
  28. package/dist/components/Switcher/index.d.ts +1 -0
  29. package/dist/components/Tip/Tip.d.ts +21 -0
  30. package/dist/components/Tip/index.d.ts +1 -0
  31. package/dist/icons/SvgIcon.d.ts +38 -0
  32. package/dist/icons/branding.d.ts +20 -0
  33. package/dist/icons/buttonIcons.d.ts +32 -0
  34. package/dist/icons/createSvgIcon.d.ts +10 -0
  35. package/dist/icons/flagIcons.d.ts +20 -0
  36. package/dist/icons/index.d.ts +7 -0
  37. package/dist/icons/labels.d.ts +4 -0
  38. package/dist/icons/railIcons.d.ts +16 -0
  39. package/dist/index.cjs +200 -0
  40. package/dist/index.cjs.map +1 -0
  41. package/dist/index.d.ts +17 -0
  42. package/dist/index.js +1605 -0
  43. package/dist/index.js.map +1 -0
  44. package/dist/placeFixedMenu.d.ts +10 -0
  45. package/dist/styles.cjs +0 -0
  46. package/dist/styles.css +2 -0
  47. package/dist/styles.js +0 -0
  48. package/dist/svg/flags/de.svg +1 -0
  49. package/dist/svg/flags/en.svg +23 -0
  50. package/dist/svg/flags/es.svg +1 -0
  51. package/dist/svg/flags/fr.svg +1 -0
  52. package/dist/svg/flags/it.svg +1 -0
  53. package/dist/svg/flags/nl.svg +1 -0
  54. package/dist/svg/flags/pt.svg +1 -0
  55. package/dist/svg/flags/ru.svg +1 -0
  56. package/dist/svg/flags/zh.svg +15 -0
  57. package/dist/svg/marks/nc-icon.svg +9 -0
  58. package/dist/svg/marks/nc-scinverse-icon.svg +34 -0
  59. package/dist/svg/marks/ohs-icon.svg +3 -0
  60. package/dist/svg/marks/ohs-scinverse-icon.svg +37 -0
  61. package/dist/svg/marks/scinverse-avatar.svg +13 -0
  62. package/dist/svg/marks/scinverse-icon.svg +20 -0
  63. package/dist/svg/marks/scinverse-logo.svg +4 -0
  64. package/dist/svg/marks/ui-kit-icon.svg +6 -0
  65. package/dist/svg/marks/ui-kit-scinverse-icon.svg +34 -0
  66. package/dist/svg/set/arrow-drop-down.svg +3 -0
  67. package/dist/svg/set/arrow-drop-up.svg +3 -0
  68. package/dist/svg/set/bell.svg +4 -0
  69. package/dist/svg/set/check.svg +3 -0
  70. package/dist/svg/set/chevron-down.svg +3 -0
  71. package/dist/svg/set/close.svg +3 -0
  72. package/dist/svg/set/exchange.svg +6 -0
  73. package/dist/svg/set/eye-slash.svg +3 -0
  74. package/dist/svg/set/eye.svg +3 -0
  75. package/dist/svg/set/help.svg +5 -0
  76. package/dist/svg/set/integration.svg +5 -0
  77. package/dist/svg/set/loading.svg +11 -0
  78. package/dist/svg/set/logout.svg +5 -0
  79. package/dist/svg/set/messages.svg +4 -0
  80. package/dist/svg/set/moon.svg +6 -0
  81. package/dist/svg/set/news.svg +3 -0
  82. package/dist/svg/set/pencil.svg +4 -0
  83. package/dist/svg/set/plus.svg +3 -0
  84. package/dist/svg/set/power.svg +3 -0
  85. package/dist/svg/set/refresh.svg +3 -0
  86. package/dist/svg/set/search.svg +3 -0
  87. package/dist/svg/set/settings.svg +4 -0
  88. package/dist/svg/set/sun.svg +4 -0
  89. package/dist/svg/set/system.svg +5 -0
  90. package/dist/svg/set/user.svg +4 -0
  91. package/dist/theme/ThemeProvider.d.ts +15 -0
  92. package/package.json +70 -0
@@ -0,0 +1,4 @@
1
+ export declare const InfoLabelIcon: (props: import("./SvgIcon").SvgIconProps) => import("react").ReactElement;
2
+ export declare const OkLabelIcon: (props: import("./SvgIcon").SvgIconProps) => import("react").ReactElement;
3
+ export declare const WarnLabelIcon: (props: import("./SvgIcon").SvgIconProps) => import("react").ReactElement;
4
+ export declare const ErrorLabelIcon: (props: import("./SvgIcon").SvgIconProps) => import("react").ReactElement;
@@ -0,0 +1,16 @@
1
+ /** Venue / exchange — building with columns. */
2
+ export declare const ExchangeIcon: (props: import("./SvgIcon").SvgIconProps) => import("react").ReactElement;
3
+ /** Plug — external integration. */
4
+ export declare const IntegrationIcon: (props: import("./SvgIcon").SvgIconProps) => import("react").ReactElement;
5
+ /** Broadcast waves — news. */
6
+ export declare const NewsIcon: (props: import("./SvgIcon").SvgIconProps) => import("react").ReactElement;
7
+ /** Stacked hosts — system / infrastructure. */
8
+ export declare const SystemIcon: (props: import("./SvgIcon").SvgIconProps) => import("react").ReactElement;
9
+ /** Envelope — messages / incident log. */
10
+ export declare const MessagesIcon: (props: import("./SvgIcon").SvgIconProps) => import("react").ReactElement;
11
+ /** Question in a circle — help. */
12
+ export declare const HelpIcon: (props: import("./SvgIcon").SvgIconProps) => import("react").ReactElement;
13
+ /** Bell — notifications. */
14
+ export declare const BellIcon: (props: import("./SvgIcon").SvgIconProps) => import("react").ReactElement;
15
+ /** User avatar. */
16
+ export declare const UserIcon: (props: import("./SvgIcon").SvgIconProps) => import("react").ReactElement;
package/dist/index.cjs ADDED
@@ -0,0 +1,200 @@
1
+ Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});let e=require("react"),t=require("react/jsx-runtime"),n=require("react-dom");var r=`scinverse-ui:theme`,i=(0,e.createContext)(null);function a(){try{let e=localStorage.getItem(r);if(e===`light`||e===`dark`)return e}catch{}return`dark`}function o(e,t){t.dataset.theme=e;try{localStorage.setItem(r,e)}catch{}}function s({children:n,defaultTheme:r,target:s=`document`}){let[c,l]=(0,e.useState)(()=>r??a()),u=(0,e.useCallback)(e=>{l(e),s===`document`&&o(e,document.documentElement)},[s]),d=(0,e.useCallback)(()=>{u(c===`dark`?`light`:`dark`)},[u,c]);(0,e.useEffect)(()=>{s===`document`&&o(c,document.documentElement)},[c,s]);let f=(0,e.useMemo)(()=>({theme:c,setTheme:u,toggleTheme:d}),[c,u,d]);return s===`local`?(0,t.jsx)(i.Provider,{value:f,children:(0,t.jsx)(`div`,{className:`sci-root`,"data-theme":c,children:n})}):(0,t.jsx)(i.Provider,{value:f,children:n})}function c(){let t=(0,e.useContext)(i);if(!t)throw Error(`useTheme must be used within ThemeProvider`);return t}var l={sm:16,md:24,lg:32},u={accent:`var(--sci-color-accent)`,focus:`var(--sci-color-border-focus)`,success:`var(--sci-color-success)`,warning:`var(--sci-color-warning)`,error:`var(--sci-color-error)`,ink:`var(--sci-color-ink)`,text:`var(--sci-color-text)`,"text-secondary":`var(--sci-color-text-secondary)`,muted:`var(--sci-color-text-muted)`},d=`0 0 24 24`;function f(e){return typeof e==`number`?e:l[e??`md`]}function p(e){if(e&&e!==`inherit`)return Object.prototype.hasOwnProperty.call(u,e)?u[e]:e}function m({color:e=`inherit`,size:n,weight:r,title:i,component:a=`svg`,inheritViewBox:o=!1,viewBox:s=d,className:c,style:l,strokeWidth:u,children:m,...h}){let g=f(n),_=p(e);return(0,t.jsxs)(a,{...o?{}:{viewBox:s},width:g,height:g,strokeWidth:r??u,className:[`sci-SvgIcon`,c].filter(Boolean).join(` `),style:{color:_,...l},"aria-hidden":!i||void 0,role:i?`img`:void 0,...h,children:[i?(0,t.jsx)(`title`,{children:i}):null,m]})}var h={root:`_root_12w6a_1`,small:`_small_12w6a_28`,large:`_large_12w6a_34`,primary:`_primary_12w6a_40`,secondary:`_secondary_12w6a_51`,ghost:`_ghost_12w6a_62`,panel:`_panel_12w6a_74`,colored:`_colored_12w6a_108`,toggledAccent:`_toggledAccent_12w6a_150`,toggledDark:`_toggledDark_12w6a_177`};function g(e){return e===!0||e===`accent`||e===`dark`}function _({variant:e=`primary`,size:n=`medium`,color:r,toggled:i,className:a,type:o=`button`,style:s,children:c,...l}){let u=e===`secondary`?h.secondary:e===`ghost`?h.ghost:e===`panel`?h.panel:h.primary,d=n===`small`?h.small:n===`large`?h.large:null,f=p(r),m=!!f,_=g(i),v=i===`dark`,y=m?{...s,"--sci-button-color":f}:s;return(0,t.jsx)(`button`,{type:o,className:[h.root,u,d,m?h.colored:null,_?v?h.toggledDark:h.toggledAccent:null,a].filter(Boolean).join(` `),style:y,...l,"aria-pressed":l[`aria-pressed`]??(i===void 0?void 0:_),children:c})}var v={root:`_root_z6xc1_1`,title:`_title_z6xc1_8`};function y({title:e,children:n,className:r,...i}){return(0,t.jsxs)(`div`,{className:[v.root,r].filter(Boolean).join(` `),...i,children:[e?(0,t.jsx)(`h3`,{className:v.title,children:e}):null,n]})}var b={root:`_root_1oxl8_1`,selected:`_selected_1oxl8_21`,info:`_info_1oxl8_26`,name:`_name_1oxl8_32`,kind:`_kind_1oxl8_37`,end:`_end_1oxl8_42`,dot:`_dot_1oxl8_48`};function x({name:e,kind:n,selected:r=!1,end:i,className:a,type:o=`button`,...s}){return(0,t.jsxs)(`button`,{type:o,className:[b.root,r?b.selected:``,a].filter(Boolean).join(` `),"aria-current":r?`true`:void 0,...s,children:[(0,t.jsxs)(`span`,{className:b.info,children:[(0,t.jsx)(`span`,{className:b.name,children:e}),n==null?null:(0,t.jsx)(`span`,{className:b.kind,children:n})]}),i==null?null:(0,t.jsx)(`span`,{className:b.end,children:i})]})}function S({tone:e=`muted`,label:n}){return(0,t.jsx)(`span`,{className:b.dot,style:{color:u[e]},"aria-label":n,title:n})}var C={root:`_root_8pbpz_1`,basic:`_basic_8pbpz_15`,rounded:`_rounded_8pbpz_19`,small:`_small_8pbpz_23`,medium:`_medium_8pbpz_28`,large:`_large_8pbpz_33`,colored:`_colored_8pbpz_38`};function ee({children:e,size:n=`medium`,color:r,round:i=`basic`,className:a,style:o,...s}){let c=n===`small`?C.small:n===`large`?C.large:C.medium,l=p(r),u=typeof i==`number`,d=u?``:i===`rounded`?C.rounded:C.basic;return(0,t.jsx)(`span`,{className:[C.root,c,d,l?C.colored:``,a].filter(Boolean).join(` `),style:{...o,...l?{"--sci-badge-color":l}:{},...u?{borderRadius:i}:{}},...s,children:e})}function w(e,n,r={}){let{viewBox:i=`0 0 24 24`,kind:a=`stroke`,weight:o=1.7}=r;function s(n){return(0,t.jsx)(m,{viewBox:i,...a===`stroke`?{fill:`none`,stroke:`currentColor`,weight:o,strokeLinecap:`round`,strokeLinejoin:`round`}:{fill:`currentColor`},...n,children:e})}return s.displayName=`${n}Icon`,s}var te=w((0,t.jsx)(`path`,{d:`M8 3v10M3 8h10`}),`Plus`,{viewBox:`0 0 16 16`}),ne=w((0,t.jsx)(`path`,{d:`M3 8h10`}),`Minus`,{viewBox:`0 0 16 16`}),re=w((0,t.jsx)(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M7.25 7.25a.75.75 0 0 0 1.5 0V.75a.75.75 0 0 0-1.5 0zm4.04 5.157A5.5 5.5 0 1 1 5 3.39a.75.75 0 1 0-.818-1.257a7 7 0 1 0 7.635 0A.75.75 0 0 0 11 3.39a5.5 5.5 0 0 1 .291 9.017Z`}),`Power`,{kind:`fill`,viewBox:`0 0 16 16`}),T=w((0,t.jsx)(`path`,{d:`M6 6l12 12M18 6L6 18`}),`Close`),E=w((0,t.jsx)(`path`,{d:`M7 2a5 5 0 1 1 0 10A5 5 0 0 1 7 2Zm3.5 8.5L14 14`}),`Search`,{viewBox:`0 0 16 16`,weight:1.5}),D=w((0,t.jsx)(`path`,{d:`M572.52 241.4C518.29 135.59 410.93 64 288 64S57.68 135.64 3.48 241.41a32.35 32.35 0 0 0 0 29.19C57.71 376.41 165.07 448 288 448s230.32-71.64 284.52-177.41a32.35 32.35 0 0 0 0-29.19zM288 400a144 144 0 1 1 144-144 143.93 143.93 0 0 1-144 144zm0-240a95.31 95.31 0 0 0-25.31 3.79 47.85 47.85 0 0 1-66.9 66.9A95.78 95.78 0 1 0 288 160z`}),`Eye`,{kind:`fill`,viewBox:`0 0 576 512`}),O=w((0,t.jsx)(`path`,{d:`M320 400c-75.85 0-137.25-58.71-142.9-133.11L72.2 185.82c-13.79 17.3-26.48 35.59-36.72 55.59a32.35 32.35 0 0 0 0 29.19C89.71 376.41 197.07 448 320 448c26.91 0 52.87-4 77.89-10.46L346 397.39a144.13 144.13 0 0 1-26 2.61zm313.82 58.1l-110.55-85.44a331.25 331.25 0 0 0 81.25-102.07 32.35 32.35 0 0 0 0-29.19C557.29 135.59 449.93 64 320 64a308.15 308.15 0 0 0-147.32 37.7L45.46 3.37A16 16 0 0 0 23 6.18L3.37 31.45A16 16 0 0 0 6.18 53.9l588.36 454.73a16 16 0 0 0 22.46-2.81l19.64-25.27a16 16 0 0 0-2.82-22.45zm-183.72-142l-39.3-30.38A94.75 94.75 0 0 0 416 256a94.76 94.76 0 0 0-121.31-92.21A47.65 47.65 0 0 1 304 192a46.64 46.64 0 0 1-1.54 10l-73.61-56.89A142.31 142.31 0 0 1 320 112a143.92 143.92 0 0 1 144 144c0 21.63-5.29 41.79-13.9 60.11z`}),`EyeSlash`,{kind:`fill`,viewBox:`0 0 640 512`}),k=w((0,t.jsx)(`path`,{d:`M5 12.5l4.2 4.2L19 7.5`}),`Check`),A=w((0,t.jsx)(`path`,{d:`M6 9l6 6 6-6`}),`ChevronDown`),ie=w((0,t.jsx)(`path`,{d:`m7 10l5 5l5-5z`}),`ArrowDropDown`,{kind:`fill`}),ae=w((0,t.jsx)(`path`,{d:`m7 14l5-5l5 5z`}),`ArrowDropUp`,{kind:`fill`}),j=w((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(`circle`,{cx:`12`,cy:`12`,r:`3.5`}),(0,t.jsx)(`path`,{d:`M12 3v2M12 19v2M3 12h2M19 12h2M5.6 5.6l1.4 1.4M17 17l1.4 1.4M18.4 5.6L17 7M7 17l-1.4 1.4`})]}),`Sun`),M=w((0,t.jsx)(`g`,{transform:`translate(256 256) scale(0.875) translate(-256 -256)`,children:(0,t.jsx)(`path`,{d:`M268.279 496c-67.574 0-130.978-26.191-178.534-73.745S16 311.293 16 243.718A252.25 252.25 0 0 1 154.183 18.676a24.44 24.44 0 0 1 34.46 28.958a220.12 220.12 0 0 0 54.8 220.923A218.75 218.75 0 0 0 399.085 333.2a220.2 220.2 0 0 0 65.277-9.846a24.439 24.439 0 0 1 28.959 34.461A252.26 252.26 0 0 1 268.279 496M153.31 55.781A219.3 219.3 0 0 0 48 243.718C48 365.181 146.816 464 268.279 464a219.3 219.3 0 0 0 187.938-105.31a253 253 0 0 1-57.13 6.513a250.54 250.54 0 0 1-178.268-74.016a252.15 252.15 0 0 1-67.509-235.4Z`})}),`Moon`,{kind:`fill`,viewBox:`0 0 512 512`}),N=w((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(`path`,{d:`M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4`}),(0,t.jsx)(`polyline`,{points:`16 17 21 12 16 7`}),(0,t.jsx)(`line`,{x1:`21`,y1:`12`,x2:`9`,y2:`12`})]}),`Logout`),P=w((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(`path`,{d:`M12 20h9`}),(0,t.jsx)(`path`,{d:`M16.5 3.5a2.12 2.12 0 0 1 3 3L7 19l-4 1 1-4Z`})]}),`Pencil`),F=w((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(`circle`,{cx:`12`,cy:`12`,r:`3`}),(0,t.jsx)(`path`,{d:`M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 1 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 1 1-2.83-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 1 1 2.83-2.83l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 1 1 2.83 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1z`})]}),`Settings`),I=w((0,t.jsx)(`path`,{d:`M6.34 6.34c.73-.73 1.59-1.31 2.54-1.71c.99-.42 2.03-.63 3.11-.63V2c-1.35 0-2.66.26-3.89.79c-1.19.5-2.26 1.23-3.18 2.14c-.92.92-1.64 1.99-2.14 3.18c-.52 1.23-.79 2.54-.79 3.89s.26 2.66.79 3.89c.5 1.19 1.22 2.26 2.14 3.18c.17.17.35.32.52.48L2.99 22h6v-6l-2.13 2.13c-.18-.15-.36-.31-.52-.48a8.1 8.1 0 0 1-1.72-2.54c-.42-.99-.63-2.03-.63-3.11s.21-2.13.63-3.11c.4-.95.98-1.81 1.72-2.54Zm12.73-1.41c-.17-.17-.35-.32-.52-.48L21 2h-6v6l2.13-2.13c.18.15.36.31.52.48c.74.74 1.31 1.59 1.72 2.54c.42.99.63 2.03.63 3.11s-.21 2.13-.63 3.11c-.4.95-.98 1.81-1.72 2.54c-.73.73-1.59 1.31-2.54 1.71c-.99.42-2.03.63-3.11.63v2c1.35 0 2.66-.26 3.89-.79c1.19-.5 2.26-1.23 3.18-2.14c.92-.92 1.64-1.99 2.14-3.18c.52-1.23.79-2.54.79-3.89s-.26-2.66-.79-3.89a9.9 9.9 0 0 0-2.14-3.18Z`}),`Refresh`,{kind:`fill`}),L=w((0,t.jsxs)(t.Fragment,{children:[(0,t.jsxs)(`path`,{strokeDasharray:`19`,d:`M12 2c5.52 0 10 4.48 10 10`,children:[(0,t.jsx)(`animate`,{fill:`freeze`,attributeName:`stroke-dashoffset`,dur:`0.3s`,values:`19;0`}),(0,t.jsx)(`animateTransform`,{attributeName:`transform`,dur:`1.5s`,repeatCount:`indefinite`,type:`rotate`,values:`0 12 12;360 12 12`})]}),(0,t.jsx)(`path`,{strokeDasharray:`63`,d:`M12 2c5.52 0 10 4.48 10 10c0 5.52-4.48 10-10 10c-5.52 0-10-4.48-10-10c0-5.52 4.48-10 10-10Z`,opacity:.3,children:(0,t.jsx)(`animate`,{fill:`freeze`,attributeName:`stroke-dashoffset`,dur:`1.2s`,values:`63;0`})})]}),`Loading`,{kind:`stroke`,weight:2.15}),R={root:`_root_jienc_1`,input:`_input_jienc_14`,small:`_small_jienc_19`,large:`_large_jienc_24`,box:`_box_jienc_37`,mark:`_mark_jienc_60`,colored:`_colored_jienc_75`,label:`_label_jienc_80`};function oe({label:n,size:r=`medium`,color:i,className:a,id:o,style:s,indeterminate:c=!1,...l}){let u=(0,e.useRef)(null),d=o??(typeof n==`string`?`sci-cb-${n}`:void 0),f=r===`small`?R.small:r===`large`?R.large:null,m=p(i),h=!!m,g=h?{...s,"--sci-checkbox-color":m}:s;return(0,e.useEffect)(()=>{u.current&&(u.current.indeterminate=c)},[c]),(0,t.jsxs)(`label`,{className:[R.root,f,h?R.colored:null,a].filter(Boolean).join(` `),htmlFor:d,style:g,children:[(0,t.jsx)(`input`,{ref:u,id:d,type:`checkbox`,className:R.input,...l}),(0,t.jsx)(`span`,{className:R.box,"aria-hidden":`true`,children:(0,t.jsx)(k,{className:R.mark,weight:2.4})}),n==null?null:(0,t.jsx)(`span`,{className:R.label,children:n})]})}var z={tip:`_tip_1rreb_1`,sciTipIn:`_sciTipIn_1rreb_1`,host:`_host_1rreb_27`,hostBlock:`_hostBlock_1rreb_34`},B=8;function V(e){if(e instanceof HTMLButtonElement&&e.disabled||e.getAttribute(`aria-disabled`)===`true`)return!0;let t=e.querySelector(`button, input, select, textarea`);return!!(t instanceof HTMLButtonElement&&t.disabled||t?.getAttribute(`aria-disabled`)===`true`||t instanceof HTMLInputElement&&t.disabled)}function se(e,t,n){let r=t/2,i=n.left+B+r,a=n.right-B-r;return i>a?(n.left+n.right)/2:Math.min(Math.max(e,i),a)}function ce(e,t,n){return Math.round(se(e,t,n)-t/2)}function le(e,t,n,r=0){return Math.round(n===`bottom`?e+t:e-t-r)}function ue(){return{left:0,right:window.innerWidth,top:0,bottom:window.innerHeight,width:window.innerWidth,height:window.innerHeight,x:0,y:0,toJSON:()=>({})}}function H({content:r,side:i=`bottom`,block:a=!1,boundaryRef:o,className:s,children:c}){let l=(0,e.useId)(),u=(0,e.useRef)(null),[d,f]=(0,e.useState)(null),p=(0,e.useCallback)(()=>f(null),[]),m=(0,e.useCallback)(e=>{if(!r||V(e))return;let t=e.getBoundingClientRect(),n=o?.current?.getBoundingClientRect()??ue(),a=i,s=i===`bottom`?t.bottom:t.top;i===`bottom`&&n.bottom-t.bottom<36?(a=`top`,s=t.top):i===`top`&&t.top-n.top<36&&(a=`bottom`,s=t.bottom);let c=t.left+t.width/2,l=Math.min(260,Math.max(80,r.length*7));f({left:ce(c,l,n),top:le(s,8,a,a===`top`?36:0),side:a,centerX:c,anchorY:s,gap:8})},[o,r,i]);return(0,e.useLayoutEffect)(()=>{if(!d||!u.current)return;let e=u.current.offsetWidth,t=u.current.offsetHeight,n=o?.current?.getBoundingClientRect()??ue(),r=ce(d.centerX,e,n),i=le(d.anchorY,d.gap,d.side,t);(r!==d.left||i!==d.top)&&f(e=>e&&{...e,left:r,top:i})},[o,d]),r?(0,t.jsxs)(`span`,{className:[z.host,a?z.hostBlock:``,s].filter(Boolean).join(` `),"aria-describedby":d?l:void 0,onMouseEnter:e=>m(e.currentTarget),onMouseLeave:p,onFocus:e=>m(e.currentTarget),onBlur:p,children:[c,d&&(0,n.createPortal)((0,t.jsx)(`span`,{ref:u,id:l,role:`tooltip`,className:z.tip,style:{left:d.left,top:d.top},children:r}),document.body)]}):(0,t.jsx)(t.Fragment,{children:c})}var de=(0,e.createContext)(null),U={root:`_root_leo0p_1`,input:`_input_leo0p_15`,small:`_small_leo0p_20`,large:`_large_leo0p_26`,box:`_box_leo0p_40`,glyph:`_glyph_leo0p_48`,ring:`_ring_leo0p_54`,dot:`_dot_leo0p_60`,colored:`_colored_leo0p_78`,label:`_label_leo0p_86`};function W({label:n,size:r,color:i,className:a,id:o,style:s,name:c,disabled:l,checked:u,value:d,onChange:f,...m}){let h=(0,e.useContext)(de),g=r??h?.size??`medium`,_=i??h?.color,v=l??h?.disabled,y=h?.name??c,b=h?h.value===String(d??``):u,x=g===`small`?U.small:g===`large`?U.large:null,S=p(_),C=!!S,ee=C?{...s,"--sci-radio-color":S}:s,w=o??(typeof n==`string`?`sci-radio-${y??`x`}-${n}`:void 0);return(0,t.jsxs)(`label`,{className:[U.root,x,C?U.colored:null,a].filter(Boolean).join(` `),htmlFor:w,style:ee,children:[(0,t.jsx)(`input`,{id:w,type:`radio`,className:U.input,name:y,value:d,checked:b,disabled:v,onChange:h?h.onSelect:f,...m}),(0,t.jsx)(`span`,{className:U.box,"aria-hidden":`true`,children:(0,t.jsxs)(`svg`,{className:U.glyph,viewBox:`0 0 24 24`,focusable:`false`,children:[(0,t.jsx)(`circle`,{className:U.ring,cx:`12`,cy:`12`,r:`10`}),(0,t.jsx)(`circle`,{className:U.dot,cx:`12`,cy:`12`,r:`5.5`})]})}),n==null?null:(0,t.jsx)(`span`,{className:U.label,children:n})]})}var G={root:`_root_1x8jf_1`,legend:`_legend_1x8jf_8`,optionsV:`_optionsV_1x8jf_14`,optionsH:`_optionsH_1x8jf_15`};function K({name:n,value:r,defaultValue:i,onChange:a,orientation:o=`vertical`,disabled:s,size:c,color:l,label:u,className:d,children:f,"aria-label":p,...m}){let h=(0,e.useId)(),g=n??h,[_,v]=(0,e.useState)(i),y=r===void 0?_:r,b=(0,e.useCallback)(e=>{r===void 0&&v(e.target.value),a?.(e,e.target.value)},[a,r]);return(0,t.jsx)(de.Provider,{value:{name:g,value:y,disabled:s,size:c,color:l,onSelect:b},children:(0,t.jsxs)(`div`,{role:`radiogroup`,"aria-orientation":o,"aria-label":p??(typeof u==`string`?u:void 0),className:[G.root,d].filter(Boolean).join(` `),...m,children:[u==null?null:(0,t.jsx)(`div`,{className:G.legend,children:u}),(0,t.jsx)(`div`,{className:o===`horizontal`?G.optionsH:G.optionsV,children:f})]})})}var q={labeled:`_labeled_lc52b_1`,fill:`_fill_lc52b_11`,caption:`_caption_lc52b_15`,field:`_field_lc52b_21`,invalid:`_invalid_lc52b_41`,input:`_input_lc52b_57`,passwordWrap:`_passwordWrap_lc52b_67`,passwordInput:`_passwordInput_lc52b_79`,reveal:`_reveal_lc52b_83`,textarea:`_textarea_lc52b_124`,mono:`_mono_lc52b_131`};function fe({label:e,htmlFor:n,fullWidth:r=!1,children:i}){return e==null?i:(0,t.jsxs)(`label`,{className:[q.labeled,r?q.fill:``].filter(Boolean).join(` `),htmlFor:n,children:[(0,t.jsx)(`span`,{className:q.caption,children:e}),i]})}function pe({className:n,type:r=`text`,label:i,fullWidth:a=!1,invalid:o=!1,disabled:s,id:c,showPasswordLabel:l=`Show password`,hidePasswordLabel:u=`Hide password`,...d}){let[f,p]=(0,e.useState)(!1),m=(0,e.useId)(),h=r===`password`,g=c??(i!=null||h?m:void 0),_=(0,t.jsx)(`input`,{id:g,type:h&&f?`text`:r,disabled:s,"aria-invalid":o||void 0,className:[q.field,q.input,h?q.passwordInput:``,a?q.fill:``,o?q.invalid:``,n].filter(Boolean).join(` `),...d}),v=h?(0,t.jsxs)(`div`,{className:[q.passwordWrap,a?q.fill:``].filter(Boolean).join(` `),children:[_,(0,t.jsx)(`button`,{type:`button`,className:q.reveal,"aria-label":f?u:l,"aria-controls":g,"aria-pressed":f,disabled:s,onClick:()=>p(e=>!e),children:f?(0,t.jsx)(O,{size:14}):(0,t.jsx)(D,{size:14})})]}):_;return(0,t.jsx)(fe,{label:i,htmlFor:g,fullWidth:a,children:v})}var J={wrap:`_wrap_15qkt_1`,fill:`_fill_15qkt_12`,icon:`_icon_15qkt_17`,input:`_input_15qkt_24`,withClear:`_withClear_15qkt_45`,clear:`_clear_15qkt_74`};function me(t,n){let[r,i]=(0,e.useState)(t);return(0,e.useEffect)(()=>{if(n<=0)return;let e=window.setTimeout(()=>i(t),n);return()=>window.clearTimeout(e)},[t,n]),n<=0?t:r}function he({className:n,fullWidth:r=!1,onSearch:i,debounce:a=300,clearLabel:o=`Clear search`,value:s,defaultValue:c,onChange:l,disabled:u,...d}){let f=s!==void 0,[p,m]=(0,e.useState)(()=>String(c??``)),h=f?String(s??``):p,g=me(h,a),_=(0,e.useRef)(i);(0,e.useEffect)(()=>{_.current=i});let v=(0,e.useRef)(String(c??s??``));(0,e.useEffect)(()=>{_.current&&g!==v.current&&(v.current=g,_.current(g))},[g]);let y=(e,t)=>{if(f||m(e),t){l?.(t);return}l?.({target:{value:e},currentTarget:{value:e}})},b=()=>{y(``),v.current=``,_.current?.(``)};return(0,t.jsxs)(`div`,{className:[J.wrap,r?J.fill:``,n].filter(Boolean).join(` `),children:[(0,t.jsx)(E,{className:J.icon,size:14}),(0,t.jsx)(`input`,{type:`text`,className:[J.input,h&&!u?J.withClear:``].filter(Boolean).join(` `),value:h,disabled:u,onChange:e=>{f||m(e.target.value),l?.(e)},...d}),h&&!u?(0,t.jsx)(`button`,{type:`button`,className:J.clear,"aria-label":o,onClick:b,children:(0,t.jsx)(T,{size:12})}):null]})}function ge({className:n,label:r,fullWidth:i=!1,mono:a=!1,invalid:o=!1,id:s,...c}){let l=(0,e.useId)(),u=s??(r==null?void 0:l);return(0,t.jsx)(fe,{label:r,htmlFor:u,fullWidth:i,children:(0,t.jsx)(`textarea`,{id:u,"aria-invalid":o||void 0,className:[q.field,q.textarea,i?q.fill:``,a?q.mono:``,o?q.invalid:``,n].filter(Boolean).join(` `),...c})})}var Y={wrap:`_wrap_1vrao_1`,track:`_track_1vrao_7`,knob:`_knob_1vrao_39`,off:`_off_1vrao_65`,connecting:`_connecting_1vrao_74`,pulse:`_pulse_1vrao_1`,active:`_active_1vrao_85`,waiting:`_waiting_1vrao_95`,degraded:`_degraded_1vrao_105`,unreachable:`_unreachable_1vrao_116`,error:`_error_1vrao_127`,label:`_label_1vrao_136`,small:`_small_1vrao_141`};function _e(e,t){return e||(t?`active`:`off`)}function ve({phase:e,checked:n,label:r,size:i=`medium`,disabled:a,onToggle:o,className:s,...c}){let l=_e(e,n),u=l===`active`||l===`waiting`||l===`degraded`,d=l===`connecting`||l===`unreachable`,f=a||l===`unreachable`;return(0,t.jsxs)(`div`,{className:[Y.wrap,i===`small`?Y.small:``,s].filter(Boolean).join(` `),children:[r==null?null:(0,t.jsx)(`span`,{className:Y.label,children:r}),(0,t.jsx)(`button`,{type:`button`,role:`switch`,"aria-checked":u||d,"aria-busy":d||void 0,disabled:a,className:[Y.track,Y[l]].join(` `),...c,onClick:()=>{f||o?.()},children:(0,t.jsx)(`span`,{className:Y.knob,children:u||d?``:`×`})})]})}function ye(e,t,n){return be(new DOMRect(e,t,0,0),n,0)}function be(e,t,n){let r=window.innerHeight,i=window.innerWidth,a=t?.offsetHeight??0,o=t?.offsetWidth??0,s=e.bottom+n,c=r-8-s,l=e.top-n-8;a>0&&c<a&&l>c?s=Math.max(8,e.top-n-a):a>0&&s+a>r-8&&(s=Math.max(8,r-8-a));let u=e.left;return o>0&&u+o>i-8&&(u=Math.max(8,i-8-o)),{top:s,left:u}}var X={root:`_root_16vao_1`,fill:`_fill_16vao_9`,trigger:`_trigger_16vao_13`,triggerOpen:`_triggerOpen_16vao_45`,value:`_value_16vao_60`,caret:`_caret_16vao_68`,menu:`_menu_16vao_73`,menuOpen:`_menuOpen_16vao_98`,option:`_option_16vao_104`,optionActive:`_optionActive_16vao_119`,optionSelected:`_optionSelected_16vao_123`,iconRoot:`_iconRoot_16vao_138`,iconTrigger:`_iconTrigger_16vao_142`,flagIcon:`_flagIcon_16vao_178`,iconMenu:`_iconMenu_16vao_185`,iconOption:`_iconOption_16vao_198`,iconOptionActive:`_iconOptionActive_16vao_215`,iconOptionSelected:`_iconOptionSelected_16vao_215`,iconLabel:`_iconLabel_16vao_225`,selectorTrigger:`_selectorTrigger_16vao_236`,selectorTriggerOpen:`_selectorTriggerOpen_16vao_244`,selectorMenu:`_selectorMenu_16vao_249`,selectorList:`_selectorList_16vao_265`,selectorOption:`_selectorOption_16vao_271`,selectorOptionActive:`_selectorOptionActive_16vao_280`,selectorFooter:`_selectorFooter_16vao_284`,selectorOk:`_selectorOk_16vao_292`,contextBackdrop:`_contextBackdrop_16vao_310`,contextMenu:`_contextMenu_16vao_316`,contextOption:`_contextOption_16vao_332`,contextOptionActive:`_contextOptionActive_16vao_349`,contextIcon:`_contextIcon_16vao_353`,contextDanger:`_contextDanger_16vao_363`},xe=160;function Se({options:r,value:i,defaultValue:a,onChange:o,variant:s=`field`,selected:c,defaultSelected:l,onSelectedChange:u,label:d,fullWidth:f=!1,width:p,disabled:m=!1,className:h,id:g,"aria-label":_,anchor:v,onClose:y}){let b=(0,e.useId)(),x=g??b,S=`${x}-list`,C=i!==void 0,[ee,w]=(0,e.useState)(()=>a??r[0]?.value??``),ne=C?i:ee,re=(0,e.useRef)(null),T=(0,e.useRef)(null),E=(0,e.useRef)(null),D=(0,e.useRef)(null),[O,k]=(0,e.useState)(!1),[A,j]=(0,e.useState)(!1),[M,N]=(0,e.useState)(-1),[P,F]=(0,e.useState)(null),I=s===`icon`,L=s===`selector`,R=s===`context`,z=I||L,B=(0,e.useRef)(null),V=r.find(e=>e.value===ne)??r[0],se=Math.max(0,r.findIndex(e=>e.value===ne)),ce=c!==void 0,[le,ue]=(0,e.useState)(()=>[...l??[]]),de=new Set(ce?c:le),U=e=>{let t=e===void 0?E.current:e;if(R){let e=B.current;if(!e)return;let n=ye(e.x,e.y,t);F(e=>{let t={...n,width:0};return e&&e.top===t.top&&e.left===t.left&&e.width===t.width?e:t});return}let n=T.current;if(!n)return;let r=n.getBoundingClientRect(),i=be(r,t,I?6:4);F(e=>{let t={...i,width:r.width};return e&&e.top===t.top&&e.left===t.left&&e.width===t.width?e:t})},W=e=>{E.current=e,e&&U(e)},G=()=>{if(!m){if(D.current!=null&&(window.clearTimeout(D.current),D.current=null),U(),k(!0),N(R?0:se),z){j(!0);return}requestAnimationFrame(()=>j(!0))}},K=()=>{if(R){y?.();return}if(j(!1),z){k(!1),F(null);return}D.current!=null&&window.clearTimeout(D.current),D.current=window.setTimeout(()=>{k(!1),F(null),D.current=null},xe)};(0,e.useLayoutEffect)(()=>{if(R){if(v){B.current={x:v.x,y:v.y},D.current!=null&&(window.clearTimeout(D.current),D.current=null),N(0),k(!0),j(!0),U();return}j(!1),k(!1),F(null),B.current=null}},[R,v]),(0,e.useLayoutEffect)(()=>{O&&!R&&U()},[O,I,L]),(0,e.useEffect)(()=>{if(!O)return;let e=e=>{let t=e.target;re.current?.contains(t)||E.current?.contains(t)||K()},t=()=>U();return document.addEventListener(`mousedown`,e),window.addEventListener(`resize`,t),window.addEventListener(`scroll`,t,!0),()=>{document.removeEventListener(`mousedown`,e),window.removeEventListener(`resize`,t),window.removeEventListener(`scroll`,t,!0)}},[O]),(0,e.useEffect)(()=>()=>{D.current!=null&&window.clearTimeout(D.current)},[]);let q=e=>{!R&&!C&&w(e),o?.(e),K(),R||T.current?.focus()},pe=e=>{let t=[...c??le],n=de.has(e)?t.filter(t=>t!==e):[...t,e];ce||ue(n),u?.(n)},J=e=>{if(!m){if(e.key===`ArrowDown`||e.key===`Enter`||e.key===` `){if(e.preventDefault(),!A){G();return}if(e.key===`Enter`||e.key===` `){let e=r[M];if(!e)return;L?pe(e.value):q(e.value)}else N(e=>Math.min(r.length-1,(e<0?se:e)+1))}else e.key===`Escape`&&O?(e.preventDefault(),K()):A&&e.key===`ArrowUp`&&(e.preventDefault(),N(e=>Math.max(0,(e<0?se:e)-1)))}};(0,e.useEffect)(()=>{if(!A)return;let e=e=>{if(e.key===`Escape`){e.preventDefault(),e.stopPropagation(),K();return}if(R){if(e.key===`ArrowDown`)e.preventDefault(),N(e=>Math.min(r.length-1,(e<0?0:e)+1));else if(e.key===`ArrowUp`)e.preventDefault(),N(e=>Math.max(0,(e<0?0:e)-1));else if(e.key===`Enter`){e.preventDefault();let t=r[M];t&&q(t.value)}}};return document.addEventListener(`keydown`,e,!0),()=>document.removeEventListener(`keydown`,e,!0)},[A,R,M,r]);let me=r.map((e,n)=>{let r=L?de.has(e.value):!R&&e.value===ne,i=n===M,a=`${S}-opt-${n}`;return L?(0,t.jsx)(`li`,{role:`option`,"aria-selected":r,onMouseEnter:()=>N(n),children:(0,t.jsx)(oe,{id:a,checked:r,label:e.label,className:[X.selectorOption,i?X.selectorOptionActive:``].filter(Boolean).join(` `),onChange:()=>pe(e.value)})},e.value===``?`__empty-${n}`:e.value):R?(0,t.jsx)(`li`,{role:`presentation`,children:(0,t.jsxs)(`button`,{type:`button`,id:a,role:`menuitem`,className:[X.contextOption,e.danger?X.contextDanger:``,i?X.contextOptionActive:``].filter(Boolean).join(` `),onMouseEnter:()=>N(n),onClick:()=>q(e.value),children:[e.icon?(0,t.jsx)(`span`,{className:X.contextIcon,children:e.icon}):null,e.label]})},e.value===``?`__empty-${n}`:e.value):(0,t.jsx)(`li`,{role:`presentation`,children:(0,t.jsx)(`button`,{type:`button`,id:a,role:`option`,"aria-selected":r,className:[I?X.iconOption:X.option,r?I?X.iconOptionSelected:X.optionSelected:``,i?I?X.iconOptionActive:X.optionActive:``].filter(Boolean).join(` `),onMouseEnter:()=>N(n),onClick:()=>q(e.value),children:I?(0,t.jsxs)(t.Fragment,{children:[e.icon?(0,t.jsx)(`span`,{className:X.flagIcon,children:e.icon}):null,(0,t.jsx)(`span`,{className:X.iconLabel,children:e.label})]}):e.label})},e.value===``?`__empty-${n}`:e.value)}),he=(0,t.jsx)(`button`,{ref:T,type:`button`,id:x,className:L?[X.iconTrigger,X.selectorTrigger,A?X.selectorTriggerOpen:``].filter(Boolean).join(` `):I?X.iconTrigger:[X.trigger,A?X.triggerOpen:``].filter(Boolean).join(` `),disabled:m,"aria-haspopup":`listbox`,"aria-expanded":A,"aria-controls":O?S:void 0,"aria-label":_,onClick:()=>A?K():G(),onKeyDown:J,children:L?(0,t.jsx)(te,{size:16}):I?V?.icon?(0,t.jsx)(`span`,{className:X.flagIcon,children:V.icon}):null:(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(`span`,{className:X.value,children:V?.label??``}),A?(0,t.jsx)(ae,{className:X.caret,size:18}):(0,t.jsx)(ie,{className:X.caret,size:18})]})}),ge={id:S,role:R?`menu`:`listbox`,"aria-activedescendant":M>=0?`${S}-opt-${M}`:void 0},Y=O&&P&&(0,n.createPortal)(L?(0,t.jsxs)(`div`,{ref:W,className:X.selectorMenu,style:{position:`fixed`,top:P.top,left:P.left},children:[(0,t.jsx)(`ul`,{className:X.selectorList,...ge,children:me}),(0,t.jsx)(`div`,{className:X.selectorFooter,children:(0,t.jsx)(`button`,{type:`button`,className:X.selectorOk,onClick:K,children:`OK`})})]}):(0,t.jsx)(`ul`,{ref:W,className:R?X.contextMenu:I?X.iconMenu:[X.menu,A?X.menuOpen:``].filter(Boolean).join(` `),style:R||I?{position:`fixed`,top:P.top,left:P.left}:{position:`fixed`,top:P.top,left:P.left,minWidth:P.width,width:f||p!=null?P.width:`max-content`},...ge,children:me}),document.body),_e=L?_:I?V?.label:void 0,ve=R&&O&&(0,n.createPortal)((0,t.jsx)(`div`,{role:`presentation`,className:X.contextBackdrop,onClick:K,onContextMenu:e=>{e.preventDefault(),K()}}),document.body);return R?v?(0,t.jsxs)(t.Fragment,{children:[ve,Y]}):null:(0,t.jsx)(fe,{label:d,htmlFor:x,fullWidth:!z&&f,children:(0,t.jsxs)(`div`,{ref:re,className:[X.root,z?X.iconRoot:``,!z&&(f||p!=null)?X.fill:``,h].filter(Boolean).join(` `),style:z||p==null?void 0:{width:typeof p==`number`?`${p}px`:p},children:[_e?(0,t.jsx)(H,{content:_e,children:he}):he,Y]})})}function Ce(e){return!!(e.removeOnly&&e.options.length===0&&e.content==null)}function we(e){if(e.summary!==void 0)return e.summary===``?void 0:e.summary;let t=e.selected.filter(e=>e!==``).map(t=>e.options.find(e=>e.id===t)?.label??t),n=e.applyScope;if(n&&n.selected!==n.options[0]?.id){let e=n.options.find(e=>e.id===n.selected)?.label;e&&t.push(e)}return t.length>0?t.join(`, `):void 0}function Te(e){return e.atDefault===void 0?we(e)===void 0:e.atDefault}function Ee(e){if(e.onReset){e.onReset();return}if(e.onChange([]),e.applyScope){let t=e.applyScope.options[0]?.id;t!==void 0&&e.applyScope.selected!==t&&e.applyScope.onChange(t)}}var Z={root:`_root_1pz4u_1`,chipWrap:`_chipWrap_1pz4u_8`,chip:`_chip_1pz4u_8`,chipActive:`_chipActive_1pz4u_24`,chipBody:`_chipBody_1pz4u_29`,chipBodyStatic:`_chipBodyStatic_1pz4u_49`,chipName:`_chipName_1pz4u_57`,chipValue:`_chipValue_1pz4u_61`,caret:`_caret_1pz4u_70`,chipCloseHost:`_chipCloseHost_1pz4u_75`,chipClose:`_chipClose_1pz4u_75`,iconBtn:`_iconBtn_1pz4u_98`,popover:`_popover_1pz4u_122`,row:`_row_1pz4u_138`,rowAll:`_rowAll_1pz4u_150`,optionRow:`_optionRow_1pz4u_154`,optionLabel:`_optionLabel_1pz4u_166`,optionText:`_optionText_1pz4u_173`,count:`_count_1pz4u_179`,divider:`_divider_1pz4u_186`,optionAction:`_optionAction_1pz4u_192`,applyScope:`_applyScope_1pz4u_209`,scopeLabel:`_scopeLabel_1pz4u_217`,footer:`_footer_1pz4u_226`,footerOk:`_footerOk_1pz4u_234`,empty:`_empty_1pz4u_251`};function De({available:r,active:i,specs:a,pinned:o=[],onAdd:s,onRemove:c,onClear:l,addLabel:u=`Add filter`,clearLabel:d=`Clear filters`,className:f}){let[p,m]=(0,e.useState)(null),h=(0,e.useRef)(null),g=(0,e.useRef)(null),[_,v]=(0,e.useState)(null),y=e=>{let t=h.current,n=e===void 0?g.current:e;if(!t)return;let r=be(t.getBoundingClientRect(),n,4);v(e=>e&&e.top===r.top&&e.left===r.left?e:r)},b=e=>{g.current=e,e&&y(e)};(0,e.useLayoutEffect)(()=>{p&&y()},[p]),(0,e.useEffect)(()=>{if(!p)return;let e=e=>{let t=e.target;h.current?.contains(t)||g.current?.contains(t)||m(null)},t=()=>y();return document.addEventListener(`mousedown`,e),window.addEventListener(`resize`,t),window.addEventListener(`scroll`,t,!0),()=>{document.removeEventListener(`mousedown`,e),window.removeEventListener(`resize`,t),window.removeEventListener(`scroll`,t,!0)}},[p]);let x=e=>m(t=>t===e?null:e),S=e=>{if(e.removeOnly){e.pinned||c(e.key),m(null);return}if(!Te(e)){Ee(e);return}e.pinned||(c(e.key),m(null))},C=[...o,...i.filter(e=>!o.includes(e))],ee=r.map(e=>({value:e.key,label:e.name}));return(0,t.jsxs)(`div`,{className:[Z.root,f].filter(Boolean).join(` `),children:[(0,t.jsx)(Se,{variant:`selector`,options:ee,selected:[...i],onSelectedChange:e=>{for(let t of e)i.includes(t)||s(t);for(let t of i)e.includes(t)||c(t)},"aria-label":u}),C.map(e=>{let n=a[e];if(!n)return null;let r=we(n),i=Ce(n),o=p===e,s=Te(n),c=!!r||o||i,l=n.pinned?`Reset filter`:n.removeOnly||i||s?`Remove filter`:`Reset filter`;return(0,t.jsx)(`div`,{className:Z.chipWrap,ref:o?h:void 0,children:(0,t.jsxs)(`div`,{className:[Z.chip,c?Z.chipActive:``].filter(Boolean).join(` `),children:[i?(0,t.jsx)(`span`,{className:[Z.chipBody,Z.chipBodyStatic].join(` `),children:(0,t.jsx)(`span`,{className:Z.chipName,children:n.name})}):(0,t.jsxs)(`button`,{type:`button`,className:Z.chipBody,"aria-expanded":o,onClick:()=>x(e),children:[(0,t.jsx)(`span`,{className:Z.chipName,children:n.name}),r?(0,t.jsxs)(`span`,{className:Z.chipValue,children:[`: `,r]}):null,o?(0,t.jsx)(ae,{className:Z.caret,size:16}):(0,t.jsx)(ie,{className:Z.caret,size:16})]}),(0,t.jsx)(H,{content:l,className:Z.chipCloseHost,children:(0,t.jsx)(`button`,{type:`button`,className:Z.chipClose,"aria-label":`${l} «${n.name}»`,onClick:()=>S(n),children:(0,t.jsx)(T,{size:12})})})]})},e)}),(0,t.jsx)(H,{content:d,children:(0,t.jsx)(`button`,{type:`button`,className:Z.iconBtn,disabled:i.length===0,"aria-label":d,onClick:()=>{l(),m(null)},children:(0,t.jsx)(T,{size:16})})}),p&&_&&a[p]&&!Ce(a[p])&&(0,n.createPortal)((0,t.jsx)(`div`,{ref:b,className:Z.popover,style:{position:`fixed`,top:_.top,left:_.left},children:(0,t.jsx)(Oe,{spec:a[p],onClose:()=>m(null)})}),document.body)]})}function Oe({spec:e,onClose:n}){return(0,t.jsxs)(t.Fragment,{children:[e.content==null?e.mode===`single`?(0,t.jsx)(Ae,{spec:e,onPick:n}):(0,t.jsx)(je,{spec:e}):e.content,e.applyScope?(0,t.jsx)(Me,{group:e.applyScope}):null,e.footerActions&&e.footerActions.length>0?(0,t.jsx)(`div`,{className:Z.footer,children:e.footerActions.map(e=>(0,t.jsx)(`button`,{type:`button`,className:Z.footerOk,onClick:()=>{n(),e.onClick()},children:e.label},e.label))}):null]})}function ke(e){return(0,t.jsxs)(`span`,{className:Z.optionLabel,children:[e.icon,(0,t.jsx)(`span`,{className:Z.optionText,children:e.label}),e.count===void 0?null:(0,t.jsx)(`span`,{className:Z.count,children:e.count})]})}function Ae({spec:e,onPick:n}){let r=e.selected[0]??``;return(0,t.jsx)(K,{value:r,onChange:(t,r)=>{e.onChange([r]),n()},children:e.options.map(e=>(0,t.jsx)(H,{content:e.title,block:!0,children:(0,t.jsx)(W,{value:e.id,label:ke(e),disabled:e.disabled,className:Z.row})},e.id))})}function je({spec:e}){let n=new Set(e.selected),r=e.options.filter(e=>!e.disabled).map(e=>e.id),i=r.length>0&&r.every(e=>n.has(e)),a=r.some(e=>n.has(e))&&!i;return(0,t.jsxs)(t.Fragment,{children:[e.masterAll?(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(oe,{checked:i,indeterminate:a,label:`All`,className:[Z.row,Z.rowAll].join(` `),onChange:()=>{if(i)e.onChange(e.selected.filter(e=>!r.includes(e)));else{let t=new Set(e.selected);for(let e of r)t.add(e);e.onChange([...t])}}}),(0,t.jsx)(`div`,{className:Z.divider,"aria-hidden":`true`})]}):null,e.options.map(r=>{let i=e.optionActions?.[r.id];return(0,t.jsx)(H,{content:r.title,block:!0,children:(0,t.jsxs)(`div`,{className:Z.optionRow,children:[(0,t.jsx)(oe,{checked:n.has(r.id),disabled:r.disabled,label:ke(r),className:Z.row,onChange:t=>{let i=new Set(n);t.target.checked?i.add(r.id):i.delete(r.id),e.onChange([...i])}}),i?(0,t.jsx)(H,{content:i.title??i.label,children:(0,t.jsx)(`button`,{type:`button`,className:Z.optionAction,"aria-label":i.label,onClick:e=>{e.preventDefault(),e.stopPropagation(),i.onClick()},children:(0,t.jsx)(F,{size:12})})}):null]})},r.id)})]})}function Me({group:e}){return(0,t.jsxs)(`div`,{className:Z.applyScope,children:[(0,t.jsx)(`div`,{className:Z.scopeLabel,children:e.label}),(0,t.jsx)(K,{value:e.selected,onChange:(t,n)=>e.onChange(n),children:e.options.map(e=>(0,t.jsx)(W,{value:e.id,label:e.label,className:Z.row},e.id))})]})}var Ne=`<svg xmlns="http://www.w3.org/2000/svg" viewBox="-2 -2 104 104" width="96" height="96">
2
+ <defs>
3
+ <clipPath id="globe">
4
+ <circle cx="50" cy="50" r="43.75"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g clip-path="url(#globe)">
8
+ <g fill="#000" transform="translate(0 -2)">
9
+ <path d="M30.4113 83.9389C30.3356 83.964 30.2746 83.9889 30.2142 84.0218C30.2746 83.9889 30.3356 83.964 30.4113 83.9389C30.5021 84.0218 30.5932 84.1049 30.6993 84.1796C30.5783 84.4364 30.5783 84.5776 30.5178 84.8265C30.4723 84.9591 30.4417 85.108 30.4113 85.2491C30.6689 85.2906 30.927 85.3237 31.1851 85.3651C31.094 85.4728 31.0181 85.5806 30.9424 85.6802C30.6993 86.0286 30.988 86.4677 31.2157 86.8661C31.2157 86.8828 31.2306 86.9072 31.2458 86.9239C31.3068 87.0399 31.3673 87.1561 31.428 87.2723C31.4885 87.3965 31.4736 87.3714 31.534 87.4876C31.6707 87.7447 31.595 87.5708 31.7011 87.753C32.3534 88.8473 31.7921 88.1761 32.4296 88.6485C32.5963 88.7732 32.5662 88.7316 32.5662 88.8725C32.5508 88.8974 32.5356 88.914 32.5356 88.9384C32.8699 89.4526 33.5981 89.7675 34.0683 90.1575C34.0986 90.1742 34.1143 90.1906 34.1295 90.2073C34.2574 90.3106 34.5173 90.4808 34.7918 90.6381C35.1116 90.7581 35.4325 90.8743 35.754 90.9861C35.8456 90.9607 35.939 90.9326 36.0413 90.8955C36.0562 90.937 36.0562 90.9535 36.0716 90.9866C36.0759 91.0289 36.0913 91.0697 36.1127 91.109L36.3708 91.1956C36.3688 91.1255 36.3472 91.0563 36.3295 90.9622C36.542 90.8955 36.6632 90.9535 37.0124 90.7713C36.8001 90.4228 36.7088 90.5637 36.5271 90.4811C36.1627 90.2986 35.7224 89.9918 35.4345 89.6849C35.3282 89.5358 35.2222 89.3864 35.1311 89.2289C34.8423 88.7067 34.5842 88.5656 34.296 87.9192C34.9489 87.5708 34.5693 87.8109 34.6452 87.181C34.812 86.9655 34.979 86.7417 35.1612 86.5344C35.146 86.5008 35.1311 86.4348 35.1311 86.4512C35.1156 86.4677 35.1156 86.1777 34.6753 85.9288C34.4476 85.8044 34.2206 85.6555 33.9926 85.5144C33.9926 85.3155 33.9926 85.108 33.9926 84.9006C34.1897 84.9006 34.3871 84.8924 34.5842 84.9006C34.5387 84.5527 34.5086 84.2042 34.4782 83.8476C34.6753 83.7816 34.873 83.7064 35.0701 83.6405C34.9185 82.969 34.979 83.2425 34.4931 83.027C34.1295 82.8527 34.402 83.1016 34.2049 82.7783C34.1897 82.7532 34.1748 82.7283 34.1594 82.7036C34.0986 82.5874 34.0384 82.4632 33.9926 82.3388C35.3889 82.9025 35.2222 82.7201 35.1612 81.493C36.8609 81.7419 36.9823 81.3439 37.1946 80.2329C36.9669 79.8429 36.9823 80.0835 36.8609 79.8264C36.8153 79.6856 36.7698 79.5611 36.7394 79.4202C36.6632 79.2376 36.6177 79.2293 36.4965 79.13C36.436 79.0723 36.375 79.0307 36.3295 78.9807C36.7394 79.0389 37.2855 79.4949 37.8169 79.3787C38.1658 79.3043 38.2569 79.0307 38.3936 78.7405C38.5451 78.4254 38.6362 78.0934 38.8336 77.8032C39.6833 76.5515 39.1674 77.2728 39.5922 76.2695C39.7744 75.8384 40.0932 75.6893 40.0781 75.1671C40.0626 74.4867 39.5922 74.1967 40.3514 73.4503C40.7605 73.0523 40.8671 73.1105 41.3676 73.1519C41.383 72.447 41.7623 72.6543 42.8246 72.6048C42.9613 72.2568 42.9613 72.2899 43.3104 72.1157C43.3104 71.27 43.7353 70.9546 43.7963 70.142C43.8568 69.3794 44.145 68.7576 44.039 67.9948C44.0086 67.7459 43.9628 67.4475 43.9777 67.1739C44.0086 66.6679 44.0086 66.809 44.251 66.5271C44.6 66.1375 44.6303 65.7062 45.1918 65.0511C45.3135 64.8941 45.4502 64.6698 45.541 64.504C45.5107 63.5839 45.4806 62.6635 45.4502 61.7264C44.0688 61.6769 44.1599 60.5158 43.1887 60.2838C42.7945 60.1927 42.5359 60.3669 42.0055 60.1511C41.0794 59.7863 41.3527 60.4085 40.8822 59.2554C40.5335 59.3883 40.6241 59.4216 40.3207 59.2477C39.9715 59.0316 39.5619 59.0152 39.2129 58.841C38.6517 58.559 39.5922 59.0734 39.0915 58.7665C39.0464 58.7414 39.0158 58.7168 38.9854 58.6837C38.7883 58.5756 38.4996 58.3688 38.3629 58.1861C38.3025 58.095 38.3936 58.0034 38.4085 57.9041C38.454 57.4566 37.9991 57.2244 37.8925 56.6024C37.741 55.7898 37.8169 56.1298 37.3611 55.6902C36.9064 55.2507 37.68 56.0715 37.2556 55.5827C36.1172 54.2974 35.146 55.5245 34.311 54.1896C33.9172 53.551 33.8562 53.4519 33.1277 53.2695C33.2793 52.5479 33.2188 52.7799 32.2474 52.2328C32.3992 52.1751 32.5662 52.1004 32.7332 52.034C32.4602 51.9177 32.4754 52.092 32.0654 52.034C31.4885 51.9593 31.6406 51.1964 31.2762 52.3488C30.3202 52.3573 31.2762 52.0835 29.6372 52.1582C29.5309 51.9678 29.5765 51.8682 29.3943 51.7351C29.2124 51.5865 29.0302 51.4366 28.848 51.2796C28.3928 51.1218 28.6056 51.4951 28.4537 51.6773C28.2566 51.9262 28.0134 51.7684 27.7857 51.6609C27.953 51.5613 28.12 51.4615 28.2867 51.354C28.2111 51.2629 28.1349 51.1633 28.0744 51.0638C27.5127 51.2047 27.5886 51.5364 26.7389 51.7107C26.7237 51.7107 26.6936 51.7107 26.6781 51.7271C26.6629 51.7351 26.6326 51.7351 26.6174 51.7435C26.6025 51.7435 26.5719 51.7602 26.5569 51.7684C25.7219 52.0419 26.0711 52.0671 25.7829 52.6472C25.6611 52.9041 25.7829 52.6557 25.6611 52.805C25.6462 52.8215 25.6308 52.8299 25.6156 52.8466C25.4334 53.0368 25.2214 53.0868 24.9787 53.1699C24.842 52.805 24.4473 52.6226 24.068 52.6062C23.8099 52.6062 23.4002 52.8882 23.1269 53.0208C23.0363 52.9626 23.0057 52.9457 22.8997 52.863C22.8842 52.8466 22.8691 52.8215 22.8541 52.813C22.8387 52.7968 22.8086 52.7799 22.7931 52.7635C22.5806 52.5479 22.3835 52.3404 22.1863 52.1166C22.0495 51.8433 22.0803 51.6855 22.1405 51.4615C22.2167 51.0887 22.2018 51.0471 22.2774 50.6325C22.3379 50.2265 22.7476 49.8285 22.3835 49.4554C22.3529 49.4303 22.1557 49.2892 22.1557 49.2892C21.9285 49.1406 22.0803 49.1981 21.8374 49.1485C21.64 49.099 21.5945 49.1406 21.4277 49.0821C21.3516 49.0074 21.2756 48.9248 21.2 48.8496C21.1544 48.9079 21.1241 48.9823 21.0935 49.049C21.0935 48.9907 21.0935 48.9248 21.0935 48.8581C20.8052 48.9333 20.9568 48.8417 20.8052 49.0575C20.8963 49.049 20.9874 49.0405 21.0935 49.049C20.7298 49.1154 20.3804 49.1981 20.0317 49.2727C20.1073 48.9746 20.1984 48.6926 20.2895 48.3857C20.2895 48.369 20.3042 48.3359 20.3199 48.311C20.6076 47.8799 20.6532 47.7637 20.8356 47.1835C21.0633 46.4371 20.8052 47.1004 21.1089 46.744C21.2605 46.5698 21.2149 46.5946 21.2911 46.0976C20.7749 46.0145 19.728 46.2218 19.5003 46.4204C18.8783 46.9267 19.743 47.3411 18.3165 47.7221C17.1786 48.0206 17.5273 48.0457 16.966 47.7722C16.7079 47.6477 16.7383 47.7557 16.5867 47.4984C16.4501 47.2251 16.3286 46.9513 16.2074 46.6773C16.1009 46.1887 16.2679 46.7109 16.192 46.2962C16.1163 45.9149 16.0553 46.2547 16.0708 45.8403C16.0708 45.7656 16.2525 45.1272 16.298 44.9614C16.4501 44.5219 16.5867 44.4554 16.7234 44.157C17.1637 43.2617 16.298 43.4442 17.6639 42.6148C18.271 42.2417 18.6202 41.8771 19.3938 41.9931C20.6076 42.1753 19.4393 42.1668 21.0935 42.1342C21.0178 41.8771 21.0935 42.0511 21.0024 41.8438C21.1845 41.7773 21.2 41.678 21.4277 41.562C22.0196 41.2718 22.1256 41.446 22.7476 41.6947C23.0057 41.5867 23.2636 41.4704 23.5217 41.3627C23.7494 41.8273 23.5523 41.5369 23.901 42.026C23.6884 42.4493 23.6434 42.681 23.7947 43.1953C23.9159 43.5517 23.9159 43.4606 24.068 43.6843C24.1436 43.8752 24.2196 44.0659 24.2957 44.2317C24.1285 44.3066 23.9615 44.3725 23.8099 44.4474C25.0394 44.3725 25.085 43.096 24.9483 42.1009C24.7965 41.0067 24.5384 40.6999 25.9193 39.771C26.5263 39.3566 25.8737 39.605 26.7844 39.1159C27.2245 38.8755 26.7389 38.9914 27.5276 38.6266C27.8313 38.4775 27.7098 38.5355 27.8768 38.3697C28.1045 38.1539 28.1956 38.5275 28.3477 38.0379C28.4234 37.7895 28.3323 37.4906 28.4082 37.1922C28.56 36.6536 29.0912 36.6949 29.1516 35.9985C29.8197 35.7414 29.5461 35.2687 30.3812 34.9457C31.4885 34.5061 30.5178 34.5141 31.8683 34.5061C32.0958 34.1161 32.0503 34.2655 32.0503 33.8839C31.9442 33.9255 31.8531 33.9668 31.762 34.0083C31.8377 33.0217 32.4754 33.0387 33.2188 32.6735C33.568 32.4911 33.4615 32.4498 33.9926 32.4164C33.9926 33.6684 34.4327 32.7564 35.4648 32.3418C35.8135 32.1845 36.0261 32.0929 36.3905 31.9107C36.3905 31.9107 36.5726 31.8196 36.5876 31.8111C36.6177 31.7944 36.6331 31.778 36.6483 31.7695C36.6787 31.7529 36.6939 31.7449 36.7242 31.7285C36.9064 31.6043 37.1035 31.496 37.3012 31.3718C37.2556 31.1481 37.2252 30.8992 37.1946 30.6505C36.6939 30.8327 36.9368 31.048 36.4206 31.2307C36.4206 31.1642 36.4206 31.098 36.4206 31.0234C36.2235 31.0321 36.0261 31.048 35.8439 31.0565C35.6619 30.7337 35.829 30.8743 35.5559 30.6754C35.48 30.9489 35.586 30.7832 35.3583 30.8822C35.3889 30.4843 35.7685 30.0783 36.0413 29.6057C35.3434 29.2988 35.48 29.531 34.7819 29.5975C35.1915 29.3904 35.6164 29.1825 36.0413 28.9839C36.0413 29.0009 36.0413 29.0088 36.0413 29.0252C36.0413 29.0499 36.0562 29.075 36.0562 29.0835C36.2083 29.5805 36.436 29.4812 37.1035 29.523C37.0124 29.1579 36.9823 29.2241 36.4965 29.0668C36.4054 29.0337 36.3143 29.0009 36.2235 28.9588C37.9684 28.8266 37.4978 29.2326 38.7731 28.2708C39.0158 28.0882 39.0613 28.1302 39.5317 28.0635C39.1825 28.4202 38.9553 28.7432 38.621 29.1579C38.2569 29.6136 38.2873 29.4563 38.0902 29.6721C37.8776 29.9041 37.8624 30.0868 37.7865 30.4016C38.2268 30.3767 38.682 30.3352 39.137 30.2941C39.0307 30.4763 38.9399 30.6585 38.8488 30.8412C39.4252 30.6421 39.2281 30.7832 39.6226 30.3516C40.2147 30.3516 39.8048 30.3767 39.8809 30.5258C39.926 30.6338 39.9715 30.7501 40.0171 30.8494C40.3207 30.7416 40.3815 30.7167 40.5637 30.4432C40.8822 30.0034 40.6545 29.3819 40.5029 28.7019C40.3058 28.793 40.1082 28.8841 39.9111 28.9673C39.8655 28.8346 40.0932 28.8682 39.7289 28.6688C39.7289 28.6024 39.7289 28.5362 39.7289 28.4615C40.427 28.3786 39.926 28.5031 40.1692 27.964C40.3359 27.5742 40.1843 28.1795 40.3058 27.674C40.594 27.5329 40.3514 27.6491 40.3815 27.3007C40.4118 27.0769 40.4574 26.8444 40.5029 26.6043C40.0477 26.3223 40.2147 26.6291 40.0171 25.8168C39.5163 25.9738 39.304 25.6174 38.9399 25.1948C39.3341 24.5233 39.0464 24.0837 38.7577 22.8151C38.5302 22.9229 38.1357 23.4869 37.908 23.6606C37.5433 23.8679 37.1797 24.0668 36.8153 24.2659C36.7397 24.1748 36.6787 24.0668 36.6179 23.9675C36.8001 23.5946 37.1035 23.1882 37.1035 22.782C36.9368 22.7984 36.7698 22.8151 36.6179 22.7984C36.2235 22.782 36.4509 22.7984 36.3598 22.6414C36.2235 22.3345 36.3295 22.4918 35.8439 21.9776C35.7075 22.0025 35.5711 22.0109 35.4494 22.0276C35.3889 22.1436 35.3282 22.2514 35.2677 22.3591C34.311 21.8203 33.7196 22.8231 33.3248 23.2877C33.3858 23.4453 33.4463 23.6111 33.507 23.7689C33.2036 24.0506 32.9 24.3326 32.6118 24.6061C32.7481 24.7221 32.8848 24.8299 33.0214 24.9461C32.8243 25.4021 33.0214 25.9079 31.6861 26.5465C30.7149 27.0356 31.0485 26.5049 30.6089 28.4035C30.0168 28.735 30.9424 27.9475 29.7286 28.9257C29.6527 28.7099 29.5917 28.4782 29.5309 28.246C29.7891 28.0882 29.8197 28.4946 29.9712 28.1302C30.1079 27.8149 30.0019 27.9475 29.8953 27.8808C29.8801 27.8729 29.8498 27.8644 29.8498 27.8562C29.8346 27.8482 29.8042 27.8482 29.7891 27.8393C29.7286 27.8393 29.683 27.8393 29.6372 27.8313C29.7587 27.4913 29.8801 27.1346 30.0168 26.7785C29.3184 26.7287 29.0762 26.9276 28.4082 26.5709C27.7556 26.2147 28.0289 25.9738 26.815 26.1398C26.8451 25.8827 26.8755 25.6092 26.921 25.3441C26.7844 25.3605 26.648 25.3775 26.5263 25.4021C26.5569 24.9959 26.6781 24.9623 26.9362 24.6721C27.3608 24.1915 27.6797 23.9757 28.1501 23.6442C28.3626 23.503 28.5749 23.3537 28.7875 23.2051C28.7875 23.2051 28.8181 23.1967 28.8331 23.1882C29.2579 22.9478 29.3035 22.9557 29.6676 22.6573C30.639 21.8203 29.9409 22.8816 32.0503 21.0987C31.6861 21.5054 31.3369 21.9034 30.988 22.3009C31.4885 22.2183 31.4584 22.3345 31.6709 22.4836C32.111 22.102 32.3992 21.9945 32.9303 21.7951C33.1882 22.4502 33.6588 21.6791 33.8107 21.4967C33.0971 21.4882 34.0986 21.6296 32.9303 21.0821C33.067 20.817 33.1581 20.9661 33.3099 20.8249C33.7044 20.4521 33.0822 21.1485 33.3704 20.7092C33.507 20.5101 33.4769 20.5848 33.5829 20.5265C33.5981 20.5265 33.6285 20.5101 33.6437 20.5019C33.674 20.485 33.7196 20.469 33.7651 20.4354C34.2353 20.1537 34.5238 20.1039 34.6756 19.8468C34.7363 19.7475 34.6908 19.797 34.7667 19.623C34.8423 19.3906 34.5842 19.5317 35.2677 19.1668C35.2222 18.9679 35.1915 18.7688 35.1612 18.57C35.7685 18.5038 35.586 18.611 36.0413 18.6611C35.9656 18.777 35.9046 18.8848 35.8439 18.9926C36.1324 18.8268 36.4206 18.6526 36.709 18.4786C36.7397 18.6526 36.7698 18.8268 36.8153 18.9846C36.5876 19.1091 36.3598 19.2415 36.1324 19.3741C36.1324 19.515 36.1324 19.6559 36.1324 19.797C37.4072 19.6395 36.375 19.4735 37.4072 19.3079C37.6648 19.2748 37.6648 19.2915 37.9231 19.0506C37.908 19.2002 37.8925 19.3408 37.8776 19.4817C37.5588 19.5402 37.6802 19.515 37.4378 19.6728C36.0261 20.6012 37.3012 20.195 36.5271 20.5181C36.375 20.5848 35.9656 20.5932 35.6164 20.6097C35.2222 20.6428 35.586 20.5101 34.7819 21.0738C34.8423 21.3397 34.7667 21.1654 34.873 21.3723C34.7968 21.4554 34.7363 21.5298 34.6756 21.5965C34.7363 21.5881 34.7968 21.5881 34.873 21.5798C34.7968 21.7371 34.8274 21.6956 34.7819 21.9034C34.873 21.8865 34.9638 21.8783 35.0701 21.8618C34.9944 21.5798 35.0855 21.7125 34.873 21.5798C34.873 21.5134 34.873 21.4472 34.873 21.3723C35.2222 21.5213 35.6164 21.3061 36.0868 21.1898C36.6177 21.0574 36.5117 21.1239 36.7242 21.6791C36.952 22.2845 36.6635 21.7951 37.6499 22.1436C37.9836 22.2013 38.3174 22.2593 38.6517 22.3009C38.6517 22.3756 38.6517 22.442 38.6517 22.5082C38.7731 22.5002 38.9093 22.4836 39.0464 22.4671C39.0464 22.326 39.0464 22.1851 39.0464 22.044C38.7577 22.1687 38.8943 22.1102 38.6517 22.3009C38.6666 22.1851 38.6972 22.044 38.7276 21.8949C38.6061 21.7623 38.4846 21.6376 38.3629 21.5054C38.7121 21.6296 39.0613 21.7707 39.4252 21.9034C39.9111 21.0656 39.82 21.4056 39.82 20.4934C39.6226 20.4767 39.4252 20.4767 39.243 20.4521C39.243 20.3192 39.243 20.1865 39.243 20.0372C39.3951 19.9543 39.5619 19.8632 39.7289 19.7721C39.9111 19.9959 40.1082 20.2114 40.3058 20.4354C40.6396 20.3028 40.4574 20.3359 40.6849 20.1701C40.7005 20.1537 40.7307 20.137 40.7461 20.1206C41.3676 19.681 41.0642 20.0043 41.7623 19.3079C41.5348 18.852 41.8233 19.0921 41.3982 18.9846C41.322 18.9679 41.3071 19.0095 41.2008 18.9431C41.1705 18.9264 41.1553 18.9015 41.1403 18.8764C40.6694 18.4042 41.0492 18.7688 40.5335 18.5784C40.3815 18.5369 40.2448 18.5038 40.1082 18.4622C40.3058 18.3793 40.5029 18.28 40.7005 18.18C40.5637 17.5336 40.6849 17.4674 40.0932 17.3178C39.8048 17.2518 40.0477 17.376 39.8354 17.2598C39.8048 17.2352 39.7898 17.21 39.7744 17.1769C39.3797 16.7294 40.1843 17.3925 39.6833 17.0525C39.4708 17.094 39.2587 17.111 39.0464 17.1353C38.8488 16.8205 38.6517 16.4887 38.4695 16.1736C37.7713 16.2568 37.3012 16.2647 36.9064 16.323C36.7242 16.3478 36.3905 16.4972 36.2083 16.5218C36.1473 16.5218 36.0868 16.5056 36.0261 16.4887C36.0106 16.4805 35.9957 16.4805 35.9656 16.472C34.5693 16.2152 33.7499 17.5087 33.1277 18.2962C33.4463 18.7688 33.568 18.6611 34.0986 18.5949C33.4769 19.2915 34.0531 19.1504 32.8392 19.5648C32.8699 19.4573 32.9 19.3575 32.9303 19.2499C32.8699 19.2084 32.7332 19.1173 32.7178 19.1006C32.4296 19.059 32.1413 19.0347 31.8683 19.0011C32.2932 18.5284 32.0353 18.7606 32.1264 18.2215C32.172 17.89 32.2474 17.6496 32.6573 17.5087C32.8243 17.4504 33.1733 17.5251 33.9018 16.9783C34.0232 16.8621 34.1594 16.7456 34.296 16.6214C33.9926 16.6629 33.7044 16.696 33.4159 16.7374C33.4314 16.7045 33.4615 16.6298 33.4615 16.6383C33.4769 16.6629 33.507 16.5883 33.5225 16.5554C33.6285 16.3894 33.735 16.2234 33.8562 16.033C33.9321 15.8834 33.5225 16.041 34.4782 15.5765C34.3416 15.8752 34.2206 16.1652 34.0986 16.4472C34.7057 16.3812 35.3127 16.3145 35.92 16.2485C36.0868 16.2319 36.1017 16.2485 36.3449 16.207C36.9368 16.1236 38.2873 16.1487 38.5606 15.3281C38.9553 15.0297 39.3496 14.7392 39.7592 14.4324C40.0477 14.1339 40.8671 13.9764 41.322 13.7275C41.7778 13.4627 41.5956 13.4211 41.9144 13.2305C42.7489 13.0147 43.5987 12.7827 44.4484 12.5669C44.5243 12.6667 44.6002 12.7493 44.6759 12.8407C44.0997 13.1889 42.051 13.2633 41.8689 13.6449C41.7168 13.9764 42.1877 13.7275 41.7929 13.8938C41.7168 13.9848 41.6411 14.0759 41.5652 14.167C41.7168 14.2171 41.8838 14.2581 42.051 14.2997C42.3694 14.4991 42.0055 14.4239 42.3393 14.6066C43.0372 15.0212 44.4484 13.736 45.4654 14.8886C45.5261 14.955 45.5866 15.0297 45.6476 15.0959C45.4502 15.1703 45.5565 15.0792 45.4806 15.2039C45.2374 15.5765 45.8141 15.0046 45.5109 15.6925C45.3591 16.0079 45.2073 16.323 45.0557 16.6298C45.2073 16.696 45.374 16.754 45.541 16.8041C45.0858 16.9783 45.0706 17.1605 44.8735 17.5998C45.1769 17.6991 45.2225 18.006 46.0264 17.5169C45.7994 18.512 45.8293 17.1936 44.6913 18.5949C44.4636 18.8848 44.5699 18.7522 44.5392 18.8848C44.5091 18.9926 44.4788 19.1006 44.4636 19.2002C44.3877 19.4901 44.3877 19.4655 44.4636 19.6975C44.6458 20.2948 44.4484 20.2781 44.5091 20.6592C44.5547 20.933 44.6154 20.8501 44.752 21.2981C44.752 21.3145 44.767 21.3397 44.767 21.3556C44.8884 21.6956 45.0251 22.0361 45.1617 22.3673C45.7994 22.3176 45.602 22.1518 46.1934 22.5662C46.2086 22.5747 46.2389 22.5913 46.2541 22.6078C47.1496 23.2133 47.4381 21.6876 48.2119 20.9576C48.3941 20.8003 48.4245 20.7754 48.5912 20.5848C48.7585 20.3279 48.9404 20.0623 49.1221 19.7886C49.4713 19.2995 50.1393 19.4655 50.6707 19.2163C51.065 19.0424 51.2922 18.9595 51.6265 18.6942C53.2045 17.5005 51.9906 18.2051 54.4947 17.6413C55.0408 17.5169 55.3442 17.3096 55.8756 17.0858C55.8905 17.0776 55.9211 17.0694 55.9366 17.0609C56.012 17.0358 56.0877 17.0109 56.1636 16.9783C56.1787 16.9698 56.2091 16.9614 56.24 16.9449C56.3761 16.8621 56.5279 16.7789 56.6795 16.6878C56.8316 16.5467 56.7861 16.6214 56.8771 16.4472C57.1049 15.9499 56.8012 16.0161 56.9073 15.635C57.0439 15.1288 57.1654 15.1788 57.3172 15.1039C57.4235 15.0543 57.5452 15.0046 57.6664 14.955C57.6963 14.9466 57.7117 14.9217 57.7269 14.9135C57.7418 14.897 57.7724 14.8719 57.7878 14.8555C57.803 14.847 57.8177 14.8219 57.8329 14.8142C57.9695 14.7559 58.1062 14.6897 58.2578 14.615C58.1973 14.4324 58.1667 14.6066 58.1517 14.1837C58.4098 14.1506 58.6679 14.109 58.9412 14.0595C58.759 14.0097 58.5768 13.9512 58.4098 13.9017C58.1973 13.7611 58.2732 13.6785 57.8633 13.4291C58.0606 13.4291 58.2578 13.4211 58.4554 13.4211C58.4554 13.5702 58.4554 13.7195 58.4554 13.8602C58.5159 13.8602 58.5768 13.8522 58.6376 13.8522C58.7436 13.3629 58.8347 13.5042 58.9412 13.0806C59.2294 12.998 59.1535 13.0806 59.2294 12.7578C58.9713 12.8322 59.1535 12.7493 58.9412 12.8653C58.9412 12.7578 58.9412 12.65 58.9412 12.542C58.8347 12.5505 58.7284 12.5505 58.6376 12.5505C58.9258 12.3678 59.2294 12.1941 59.5331 12.0032C59.5483 11.9947 59.5781 11.9783 59.5936 11.9701C60.2462 11.7129 60.8988 11.4476 61.5511 11.2152C59.897 10.7925 60.6558 11.5138 59.1229 11.025C58.9863 11.1325 58.8651 11.2485 58.7436 11.3563C58.7436 11.1826 58.7436 10.9999 58.7436 10.8172C57.5452 10.7261 57.4842 10.5188 55.9055 10.5439C55.8756 10.5439 55.8455 10.5521 55.83 10.5521C55.0104 10.5772 52.0513 10.7014 51.3378 10.9834C50.7312 11.2403 51.8084 10.7597 51.2011 11.0499C50.5796 11.3563 50.7919 11.0165 50.0784 11.2901C49.775 11.3152 49.4713 11.3483 49.1682 11.3563C47.9994 11.1992 47.6805 11.8456 46.9826 11.4974C46.7554 11.4641 46.5276 11.4063 46.3151 11.3563C46.2086 11.3399 45.8293 11.3647 45.541 11.3812C44.1905 11.481 42.6424 11.5056 41.2765 11.8956C39.8809 12.3347 41.2309 11.9865 39.926 12.1941C39.2281 12.3842 38.5304 12.5836 37.8321 12.7663C37.5891 12.932 37.6954 12.7827 37.9836 13.2217C36.8153 13.3629 38.6061 12.2354 35.2677 13.8191C35.3282 14.1591 35.2523 13.8771 35.3737 14.1011C35.5402 14.408 35.6164 14.3579 36.0413 14.5319C36.0106 14.5488 35.9805 14.5488 35.9805 14.5902C35.9502 14.6897 35.8439 14.6317 35.7379 14.847C35.6774 14.9466 35.6926 14.9217 35.7379 15.0959C35.2677 15.2699 35.1311 15.2119 34.6756 15.1288C34.873 15.0792 35.0701 15.0128 35.2677 14.955C35.1915 14.6564 35.2677 14.7975 35.0701 14.6648C34.979 14.4408 34.7057 14.3497 34.463 14.3664C34.296 14.5902 34.1444 14.8059 33.9926 15.0297C34.1897 15.0628 34.3871 15.1128 34.5845 15.1454C33.6439 15.2781 33.6136 15.1624 33.5528 15.5106C33.5073 15.8254 34.1897 15.7261 32.9303 15.9914C33.1277 15.7841 33.0214 15.975 33.2188 15.5439C32.6573 15.4854 31.8683 15.7176 31.2762 15.8752C31.1092 15.4272 31.3519 15.9994 31.4128 15.6014C31.3068 15.5355 31.2003 15.4772 31.094 15.4272C30.7904 16.1403 31.3974 15.1703 30.6993 16.4056C31.0485 16.5803 30.927 16.4392 31.3068 16.5634C31.7921 16.7294 32.172 16.4887 32.6421 16.2319C32.7026 16.3561 32.7178 16.5967 32.6877 16.6714C32.4754 17.1851 32.6267 16.3645 31.8076 17.6413C31.6406 17.8985 31.5649 17.9731 31.2762 18.1058C31.428 17.8985 31.5798 17.6909 31.7466 17.4753C32.3992 16.3894 30.7149 17.21 30.6993 17.2182C30.5631 17.4176 30.4267 17.5998 30.3053 17.7989C29.6676 17.8571 30.138 17.3925 29.3338 18.18C29.7741 18.2631 29.7435 18.3542 29.9257 18.6695C30.4113 18.57 30.3508 18.4953 30.7904 18.3957C30.7149 18.512 30.6545 18.628 30.5932 18.7278C30.5783 18.7437 30.5631 18.7688 30.5482 18.7853C30.4267 18.9926 30.3202 19.2084 30.2142 19.4242C29.7435 19.3328 30.2901 19.3408 29.8801 19.3079C29.2427 19.2748 29.8652 19.5068 28.5603 19.8217C28.6514 19.6395 28.7417 19.4655 28.848 19.2748C28.4383 19.3328 28.5448 19.3328 28.0744 19.0175C28.5904 18.7853 28.1655 18.7853 28.6359 18.288C29.0302 17.84 28.6663 18.4209 29.3338 17.5746C29.0456 17.492 28.9697 17.5005 28.4993 17.7822C28.1655 18.0311 27.8313 18.288 27.4975 18.5451C27.2697 18.4786 27.0428 18.4209 26.815 18.3711C26.6936 18.7026 26.9061 18.57 26.4658 18.5369C25.9499 18.4953 25.6918 18.4286 25.4643 18.0391C24.7054 18.1884 23.3397 18.2215 22.9146 18.6195C22.6871 18.8268 23.0363 18.6695 22.5353 18.9926C21.6403 19.6395 22.0952 19.2579 21.0935 20.1537C21.2149 20.2366 21.3516 20.3359 21.4882 20.4275C22.2929 20.2281 22.7175 19.8966 23.4156 19.5068C23.0664 20.419 23.2486 19.6644 23.1423 20.2448C23.112 20.3939 23.1575 20.2612 23.0363 20.4521C22.7476 20.8501 22.8541 20.5848 22.9298 20.9412C22.3529 21.0656 22.2774 21.0574 21.6552 20.9827C21.6248 20.9661 21.5492 20.9496 21.5186 20.9496C20.9874 20.9078 20.9419 21.0903 20.5168 21.2314C20.5476 21.1318 20.5775 21.0328 20.6079 20.9245C20.2743 21.1403 19.9555 21.3397 19.6369 21.5465C19.6369 21.364 19.6369 21.1734 19.6369 20.9827C19.227 21.1819 19.4699 21.1734 19.1055 21.3471C18.5445 21.6045 19.0448 21.1819 17.831 21.7371C16.6061 22.3021 16.9086 22.0654 16.7883 22.0898C12.1437 27.6339 9.0913 34.0061 7.6263 40.6573L8.0126 40.774C7.967 40.89 7.9215 40.9983 7.8914 41.1225C7.8304 41.1805 7.7697 41.2385 7.7092 41.3052C7.8304 41.3547 7.8152 41.338 7.9974 41.3547C7.9215 41.1394 7.9974 41.2882 7.8914 41.1225C7.9369 41.0978 7.9825 41.0727 8.0275 41.0478C8.1796 40.9816 8.0581 40.94 8.2252 40.9898C8.4828 41.0727 8.2707 42.4242 8.4828 42.739C8.6351 42.9382 8.7864 43.1537 8.9532 43.3615C8.8621 43.4359 8.771 43.4939 8.6799 43.5601C8.1341 43.4442 8.771 43.585 8.4984 43.4108C8.4529 43.3692 8.7254 43.245 8.4073 43.3774C8.2859 43.4359 8.2553 43.751 8.756 44.0739C8.9835 44.215 9.0141 44.0908 9.2265 44.2399C9.4691 44.4141 9.2874 44.8619 9.2568 45.1356C9.3325 45.1687 9.5147 45.2347 9.5605 45.2683C9.8793 45.4341 9.9704 45.7325 10.122 46.0224C10.2738 45.9647 10.4408 45.8982 10.6073 45.832C10.5924 45.5914 10.562 45.5914 10.5013 45.3676C10.4408 45.1687 10.3798 45.2018 10.122 45.1687C10.4251 44.605 9.6971 43.8917 9.6361 43.3944C9.6361 43.1706 9.6361 42.9464 9.6361 42.7144C9.3325 42.6148 9.1963 42.7311 9.1963 42.3659C9.1963 42.0675 9.2113 41.7606 9.4997 41.7527C10.107 41.7442 9.8034 42.681 9.7427 43.0546C9.8639 43.1291 9.9853 43.187 10.122 43.245C10.2738 43.4359 10.4251 43.6184 10.5772 43.8003C10.8654 44.1072 10.8049 44.1983 10.8049 44.6132C11.4421 44.8203 11.0172 44.6709 11.4421 45.1105C11.8672 45.5498 11.0932 44.7792 11.5486 45.1854C11.9279 45.5498 12.4282 46.1802 12.14 46.7524C11.8978 47.2664 12.0337 47.4489 12.5044 47.7473C12.9295 48.029 12.5957 48.029 13.1418 48.2117C13.7941 48.427 14.6441 48.9333 15.5394 49.2976C16.4802 49.6712 16.875 48.7339 17.5883 49.5545C17.7249 49.6956 17.7705 49.7539 17.9066 49.9029C18.0131 49.994 18.1194 50.1103 18.1953 50.1934C18.5142 50.4503 18.6961 50.3425 19.06 50.4834C20.7901 51.1218 19.8039 50.8565 20.8963 51.7024C20.8963 51.9924 20.8963 52.2747 20.8963 52.5562C21.0178 52.5898 21.1544 52.6308 21.2911 52.6806C21.4882 52.7222 21.4123 52.6062 21.6403 52.7635C22.2468 53.1699 21.4427 53.2941 22.8387 53.4848C22.8086 53.6505 22.7782 53.8163 22.7476 53.9741C22.763 53.9659 22.7931 53.9159 22.8086 53.9407C22.8387 53.9159 22.8842 53.8994 22.9298 53.8748C23.1879 53.8081 23.218 53.9823 23.7193 53.9074C23.6583 53.2195 23.5371 53.4681 24.2046 53.0537C24.3413 53.3937 24.068 53.1948 24.2803 53.4681C24.2957 53.4932 24.3258 53.5263 24.3562 53.5594C24.3868 53.5679 24.4324 53.6505 24.4473 53.6757C24.5232 53.7665 24.6143 53.949 24.675 54.057C24.9177 54.4796 25.0394 56.0471 24.4928 56.4698C24.3868 56.5524 24.2957 56.6435 24.2046 56.7351C24.1892 56.7602 24.1436 56.8262 24.1285 56.8513C24.1135 56.8844 24.1436 57.1582 23.7947 57.3155C23.5978 57.3984 23.5371 57.2904 23.446 57.6637C23.3547 57.8962 23.2636 58.1279 23.1725 58.3519C23.0363 58.7168 23.218 58.1115 23.1269 58.4679C23.0968 58.7417 23.0664 59.0067 23.0363 59.272C23.1575 59.3721 23.279 59.4794 23.4156 59.5789C23.4156 59.6038 23.3853 59.6038 23.3853 59.6372C23.3547 59.6787 23.3245 59.7116 23.3091 59.7532C23.3091 59.7616 23.279 59.7947 23.279 59.8114C23.1879 59.9189 23.0968 60.0185 23.0209 60.1263C23.0209 60.1511 23.0057 60.1676 22.9908 60.1927C22.9908 60.2091 22.9753 60.2343 22.9602 60.2507C22.8997 60.5327 23.0513 61.2791 23.3245 61.5026C24.1135 62.1739 24.4627 63.2855 24.9177 64.2136C25.0242 64.4378 25.1303 64.6616 25.252 64.8774C25.3575 65.0511 25.5857 65.3336 25.6462 65.4907C25.7978 65.9302 25.4643 65.6731 25.8433 66.1955C26.5417 67.1244 27.543 67.4059 28.2412 68.1939C28.3171 68.2934 28.4082 68.3676 28.4993 68.4592C28.848 68.7825 28.9697 69.172 29.0302 69.6611C29.1362 70.474 29.0762 70.88 29.0912 71.5433C29.1061 72.0906 29.2427 72.6959 29.2427 73.4754C29.2427 73.7987 29.2579 74.1308 29.2273 74.4538C29.1362 75.2582 29.2579 74.7191 29.3184 75.2829C29.3639 75.772 29.1362 75.4325 29.349 76.0537C29.4553 76.3691 29.5464 76.5515 29.6071 76.9328C29.7587 77.7788 29.6982 78.6243 29.4553 79.4202C29.3943 79.6276 29.2579 79.3376 29.5919 80.1497C29.6982 80.4151 29.8652 80.7304 29.8801 80.8713C29.9409 81.2357 29.8346 81.2031 30.0469 82.0983C30.138 82.4463 30.1231 83.01 30.1231 83.3921C30.3202 83.3585 30.5178 83.309 30.7149 83.2759C30.6691 83.01 30.6393 82.7367 30.6089 82.4548C30.8513 82.7947 30.821 83.0937 30.8969 83.7149C30.6993 83.3921 31.0791 83.5992 30.4115 83.3421C30.5021 83.74 30.5021 83.5578 30.4115 83.9392ZM79.8707 18.5304C79.9155 18.5861 79.9926 18.7454 80.1407 19.1504C80.2169 19.3326 80.2926 19.4983 80.3837 19.6641C80.1559 19.5648 79.9282 19.4817 79.7007 19.3824C79.3824 19.5815 79.5641 19.6559 79.1243 19.6641C79.4428 19.1668 79.3824 18.9595 78.8355 18.686C78.6384 18.5866 78.4261 18.5199 78.2285 18.4535C76.878 17.8487 77.6978 18.1966 76.3929 17.7489C76.3167 17.7155 76.2406 17.6909 76.1798 17.6578C76.1495 17.6413 76.1345 17.6244 76.1044 17.6162C75.7249 17.384 75.9673 17.4502 75.2393 17.442C75.2393 17.4176 75.2393 17.4007 75.2545 17.376C75.2545 17.2349 75.6338 17.1518 74.3136 16.7623C73.7519 16.7456 73.2061 16.7292 72.6595 16.7043C71.87 16.7212 72.2498 16.9113 71.8245 16.9696C71.6883 16.994 71.7339 16.9529 71.4451 16.9034C70.9143 16.8369 70.5046 17.1767 70.0946 17.4671C70.0946 17.4007 70.0946 17.326 70.0946 17.2518C69.3967 17.442 69.6242 17.6244 68.8352 17.8569C68.8654 18.2382 68.6381 18.2215 69.5182 17.9813C69.4577 18.6777 68.8049 18.6608 68.5316 19.2084C68.3949 19.4732 68.7292 19.3326 68.3039 19.5232C67.9855 19.6559 67.9245 19.8632 67.6669 20.3025C67.1965 20.1537 67.4698 19.9625 66.984 20.3854C66.2552 21.0487 65.4359 20.7585 65.8612 22.6907C65.8913 22.8148 65.9369 22.9311 65.9822 23.0471C66.3615 23.6855 66.9688 23.5692 67.4243 23.2544C67.6366 23.1466 67.8486 23.0306 68.0612 22.9064C68.3648 23.1548 68.2282 23.2793 68.4405 23.6855C68.562 23.9257 68.6986 24.183 68.8352 24.4319C68.6075 24.5394 68.38 24.6392 68.1523 24.7383C68.2583 24.2657 68.1222 24.1004 68.0612 23.5528C67.94 23.6028 67.8334 23.6688 67.7274 23.7104C67.7125 23.727 67.6821 23.7435 67.6669 23.7519C67.591 23.7848 67.5154 23.8099 67.4544 23.8261C67.1206 23.9588 66.9989 23.8597 66.984 24.3901C66.9688 24.523 66.9989 24.6641 67.0143 24.7883C67.1054 25.2443 67.1206 25.0452 67.1811 25.7998C66.6348 26.0821 65.8458 25.7336 65.5424 26.3138C65.2537 26.8775 65.2387 27.2175 64.2675 27.4497C64.2071 27.3422 64.1463 27.226 64.0854 27.1185C64.2524 26.8611 64.5558 26.8031 64.3741 26.4796C64.0398 25.8663 64.0854 26.7118 63.7362 25.8578C63.3723 24.9708 63.5089 25.4932 63.2657 25.0703C63.2508 25.0536 63.2356 25.0205 63.2356 25.0036C63.2202 24.979 63.2053 24.9543 63.1901 24.9292C63.0231 24.581 63.1291 24.6392 62.7199 24.4814C62.7953 24.1666 63.0079 23.8846 63.2053 23.5118C62.9469 23.4782 62.6888 23.4366 62.4312 23.3786C62.6134 23.0966 62.811 22.8148 63.0079 22.5329C62.5529 22.5329 62.7799 22.4749 62.4768 22.6986C62.1584 22.9311 62.5377 22.8313 62.0823 22.898C61.8242 22.9393 61.9003 22.6327 61.46 23.5692C61.3537 23.3704 61.4294 23.3124 61.3839 23.1051C61.3689 22.9891 61.5056 23.0722 61.3234 22.9809C61.0807 22.8564 60.8836 23.5195 60.686 23.9924C60.9593 23.9013 60.9441 23.8015 61.0658 23.445C61.0658 23.4782 61.0961 23.7188 61.0961 23.7188C61.0961 23.7435 61.0961 23.7771 61.0961 23.8015C61.0807 24.1746 60.9289 24.0088 61.2627 24.4319C61.1867 24.5725 61.126 24.7137 61.0658 24.8545C60.7925 24.7883 60.6255 24.7303 60.3676 24.8463C60.0943 24.979 60.0334 25.0868 60.0943 25.4183C59.8664 25.4183 59.6386 25.4267 59.4266 25.4267C59.4266 25.5674 59.4266 25.7085 59.4266 25.8411C59.4266 25.982 59.3959 25.601 59.4114 25.941C59.4114 25.9494 59.4266 25.982 59.4266 25.9905C59.4266 25.9905 59.4266 26.0236 59.4266 26.032C59.487 26.1236 59.5483 26.2147 59.6085 26.2974C59.4415 26.4051 59.275 26.5132 59.1232 26.6207C59.3049 27.4829 59.487 27.2511 60.9747 26.8031C61.2627 25.4347 61.1412 25.7085 61.6571 25.3105C61.6571 25.4267 61.6571 25.5345 61.6571 25.6425C61.7482 25.6425 61.8393 25.6425 61.9456 25.6425C62.0063 25.5014 62.0673 25.3605 62.143 25.2114C62.204 25.4768 62.2644 25.7336 62.3252 25.982C62.0974 25.9738 61.8697 25.9658 61.6571 25.9658C61.6571 25.9989 61.642 26.2807 61.6571 26.2889C61.7331 26.6289 62.0673 26.4547 61.6726 26.6289C61.5661 26.6538 61.46 26.6874 61.3537 26.7033C61.5056 26.8942 61.6726 27.0851 61.8393 27.2671C61.6571 27.3086 61.7482 27.2922 61.6571 27.3669C61.46 27.5824 61.2627 27.7897 61.0658 27.9971C61.2928 28.005 61.627 27.9557 61.8393 27.906C61.8849 27.8975 61.9304 27.8808 61.9912 27.8644C62.0218 27.8559 62.0367 27.848 62.0673 27.848C62.4312 27.7151 62.204 27.7482 62.6134 27.7069C63.038 27.6904 63.1142 27.6738 63.5089 27.6406C64.2071 27.6075 63.7971 27.5824 64.2675 27.4497C63.7971 28.5611 64.1615 27.6406 63.4935 28.3868C62.6438 28.3455 63.5995 28.1549 62.3252 28.2542C62.3857 28.4697 62.4768 28.5113 62.7199 28.8097C61.9307 28.7846 62.6438 28.6188 61.3537 28.7681C61.3537 28.9506 61.3537 29.133 61.3537 29.307C61.6116 29.3819 62.0063 29.4317 62.204 29.5892C62.4011 29.7383 62.3707 29.8212 62.5529 30.0783C62.5833 30.1361 62.6288 30.194 62.6739 30.2441C62.9775 30.7083 62.7042 31.3467 62.5223 32.0513C62.143 32.002 60.1245 31.6951 59.8666 31.7695C59.5025 31.8858 59.7907 31.8527 59.1232 32.1511C59.1687 32.7564 59.2449 32.2504 59.2598 32.7731C59.3205 34.0166 58.8501 34.3565 58.8347 34.7545C58.8195 35.2351 59.1232 34.5803 59.0321 35.9403C59.3808 35.9318 59.7297 35.9231 60.0943 35.9231C60.231 36.5209 60.5344 36.3711 60.0789 37.4159C59.7907 38.0379 59.5331 37.8886 59.0776 38.2704C58.8347 38.4857 58.7436 38.6599 58.6224 38.9417C58.3792 39.5139 58.3491 39.3312 58.3947 39.9201C58.4703 40.9729 57.1808 41.3793 56.9227 41.5202C56.4978 41.744 56.7861 41.8848 56.2853 42.4324C56.2402 42.4655 56.2091 42.5068 56.179 42.532C55.83 42.9294 55.9515 43.1704 55.739 43.5599C55.5722 43.8835 55.39 43.8085 55.1319 44.4888C54.7372 45.5413 54.2824 45.6327 55.0562 46.346C54.9196 47.0093 54.8131 46.5367 54.9803 47.1833C55.1319 47.7555 54.9196 48.5014 54.7372 49.1232C54.6615 49.3721 54.495 49.5542 54.2824 49.9027C54.4034 49.9774 54.5249 50.0605 54.6615 50.1267C54.6615 50.4005 54.6159 50.5331 54.6005 50.6907C54.5094 51.6771 54.8437 50.84 54.8586 52.0671C55.3445 52.0337 55.1473 51.8433 55.9669 52.7799C56.1486 52.9954 56.0426 52.8628 56.118 53.0206C56.3458 53.4845 56.3612 54.0316 56.4824 54.2394C56.4978 54.2556 56.5128 54.2807 56.5128 54.2889C56.6494 54.4467 56.8316 54.4883 56.9986 54.5958C57.1198 54.6785 57.1654 54.7121 57.2719 54.8196C57.3174 54.8778 57.363 54.9361 57.4235 54.9854C57.5753 55.1347 57.4536 55.0187 57.5907 55.1262C58.2431 55.6404 58.7436 56.519 59.3808 56.1626C61.2477 55.0931 60.9896 56.3948 62.5223 55.6489C63.6451 55.1016 63.7668 55.0521 65.0414 55.0433C65.3903 55.624 65.2387 55.4747 65.4665 55.9886C65.512 56.1131 65.5725 56.2291 65.6335 56.3453C66.0882 56.3538 66.2099 56.3538 66.5437 56.2789C66.6196 56.2537 66.8777 56.1878 66.9078 56.1962C67.1811 56.2206 67.09 56.1626 67.1811 56.4531C66.9384 56.6435 66.9232 56.5606 66.8929 56.9917C66.984 56.9917 67.0751 56.9917 67.1662 56.9917C67.1965 56.8511 67.2421 56.7102 67.2876 56.5606C67.9094 56.7348 67.3633 58.6834 67.2876 59.1476C67.1811 59.1476 67.0751 59.1561 66.984 59.1561C67.09 59.463 67.1965 59.7778 67.3026 60.0929C67.3177 60.1093 67.3332 60.1427 67.3332 60.1673C67.7423 60.7395 68.1523 61.3199 68.5771 61.8837C68.7138 62.1575 68.6837 62.3897 69.0329 63.3016C69.5787 64.6865 68.8656 63.998 69.3816 65.2751C69.6544 65.9546 69.5633 66.154 69.1695 66.6926C68.8203 67.1904 68.8808 67.4059 68.7138 68.0363C68.547 68.7243 68.547 68.7407 68.486 69.5123C68.4559 69.9264 69.2146 71.4768 69.4423 71.983C69.791 72.7205 69.791 72.3474 69.8064 73.409C69.8064 74.0389 69.852 73.7738 69.9431 74.2049C70.019 74.5116 69.9886 74.7435 70.0342 75.0838C70.0946 75.4566 70.2313 75.7222 70.3834 76.0455C70.3834 76.0535 70.3983 76.0871 70.3983 76.1035C70.5349 76.3688 70.3072 76.0039 70.4745 76.2361C70.9449 76.883 70.7928 76.5761 71.0815 77.4303C71.1875 77.7536 71.5972 78.3256 71.5362 78.682C71.4451 79.3458 71.2485 78.4752 71.3996 79.1796C71.4451 79.4616 71.4907 79.7353 71.5517 80.0007C72.432 80.3902 71.992 80.3073 72.6901 80.0422C73.0239 79.9506 73.3726 79.8511 73.7218 79.7518C75.0267 79.6525 75.5275 79.7017 76.4228 78.6574C76.6199 78.4416 76.8324 78.2178 77.0452 78.0025C77.1968 77.8363 77.0905 77.9774 77.2424 77.7788C77.6523 77.2892 77.6978 76.7835 78.1379 76.3603C78.1528 76.3444 78.168 76.3275 78.1829 76.3028C78.6688 75.7966 78.5777 74.9675 78.6384 74.3291C79.003 74.0389 79.0635 74.0638 79.473 73.8152C79.8677 73.5832 79.9436 73.5085 80.0043 72.9694C80.0952 72.1316 79.9133 71.6346 79.7007 70.88C80.0648 70.2582 80.2169 70.482 80.824 69.6198C81.3852 68.8069 81.9621 69.2796 82.6297 67.9365C82.8417 67.5137 82.7661 67.5057 82.7053 66.9663C82.7053 66.2784 82.7053 65.582 82.7053 64.8856C82.6598 64.8687 82.5386 64.8107 82.4781 64.736C82.2805 64.5287 82.1744 63.9901 82.1438 63.7491C82.1438 63.5998 82.2048 63.2439 82.2048 63.0776C81.9621 62.0333 81.5823 63.0361 82.4019 61.0379C82.7053 60.292 83.2061 59.8273 83.6009 59.1725C83.7375 58.9238 83.859 58.8081 84.0412 58.6003C85.088 57.4813 85.1791 57.5806 85.5432 57.2075C86.0442 56.6768 86.4236 56.03 86.7571 55.3587C86.9848 54.886 87.1369 54.4134 87.334 53.9156C87.5463 53.3934 88.0476 52.9457 88.0476 52.3986C87.7133 52.2575 87.85 52.2244 87.85 51.5775C87.4251 51.5939 86.9696 51.8928 86.5756 51.9424C86.4236 51.976 86.272 52.0091 86.1202 52.0419C85.7864 52.1251 85.6951 52.2413 85.3916 52.2659C85.0425 52.3073 84.6933 52.3655 84.3595 52.4153C84.2689 52.1333 84.0412 51.9093 83.8741 51.6771C83.9346 51.5449 83.9956 51.3953 84.0713 51.2627C84.4961 51.2627 84.6482 51.246 84.8304 51.1464C85.255 50.9642 85.6799 50.7818 86.1202 50.5906C86.272 50.508 86.1657 50.5575 86.272 50.5247C86.378 50.4916 86.4236 50.5331 86.6204 50.392C86.7571 50.2922 86.6966 50.2511 86.9393 50.1021C87.2581 49.9112 87.8199 49.9027 88.1387 49.6294C88.6086 49.2148 87.8199 49.2974 88.7604 48.941C89.9138 48.5014 89.7774 48.7421 90.8546 47.6641C90.885 47.3909 90.9156 47.1168 90.9457 46.8351C91.3706 46.6855 91.5528 45.9809 91.7352 45.5749C91.492 45.3922 91.3556 45.1518 91.1433 44.9527C90.7941 44.6376 90.202 44.7869 90.0198 44.2396C89.9745 43.9163 89.9287 43.5848 89.8839 43.2615C89.7774 43.253 89.6863 43.253 89.5952 43.2448C89.5497 43.8752 88.9426 44.439 88.3507 44.4223C88.0322 44.4223 88.0322 44.439 87.7589 44.5301C87.7439 44.4965 87.7288 44.439 87.7133 44.4554C87.683 44.3723 87.6528 44.2896 87.6222 44.1981C87.5008 43.5599 87.683 43.8752 87.273 43.1868C87.167 43.3526 87.0759 43.5183 86.9848 43.6843C86.9243 43.4026 86.9547 43.4106 86.9547 43.3274C86.9092 42.7637 86.2113 42.3742 85.923 41.7773C85.7408 41.3624 85.938 41.396 86.1047 41.0809C86.1958 40.774 86.0898 40.998 86.2264 40.9729C86.2869 40.9898 86.3474 41.0145 86.4236 41.0229C86.7421 41.1556 86.8332 41.3875 86.9848 41.7193C87.1974 42.1668 87.167 42.1915 87.6073 42.4242C89.0638 43.2199 88.017 43.2615 89.8839 42.8635C89.9745 43.1373 90.0806 43.419 90.1871 43.6759C90.718 43.8421 91.7501 44.1406 92.3266 44.2068C92.5239 44.2294 92.7562 44.2341 93.0041 44.2302C91.7369 34.7466 87.3417 25.6204 79.8707 18.5304ZM74.4655 36.3631C74.177 36.4378 74.3443 36.2551 74.2681 36.5705C74.5257 36.504 74.3744 36.612 74.4655 36.3631C74.5257 36.2551 74.5869 36.1556 74.6477 36.0483C74.7385 36.2056 74.8445 36.3549 74.9508 36.4958C75.0115 36.4293 75.0723 36.3631 75.1327 36.2882C74.8142 36.1394 75.1026 36.4293 74.8291 35.9816C74.6477 35.6914 74.7691 35.7578 74.4655 35.5502C74.3592 35.443 74.1922 35.4676 74.4655 34.9865C73.8129 35.1109 74.3136 35.0776 74.01 34.7956C73.9644 34.7712 73.9341 34.7466 73.904 34.713C73.6762 34.4892 73.8278 34.9783 73.6914 34.4061C73.8733 34.5228 74.01 34.5472 74.2225 34.4312C74.4197 34.315 74.4047 34.1408 74.4655 33.9175C74.8291 34.2075 74.6626 34.2901 74.4655 34.5554C75.2393 34.5138 74.9356 34.4145 74.9964 34.8125C74.9964 34.8372 75.0115 34.9367 75.0115 34.9619C75.0115 35.0198 75.0115 35.0776 75.0267 35.1276C75.0115 35.2518 75.0422 35.1692 74.8445 35.426C74.9964 35.5092 75.1634 35.5836 75.3304 35.6583C75.1783 35.766 75.1327 35.8571 75.0422 36.0645C75.2238 36.0483 75.4215 36.0229 75.6186 35.9898C75.6186 36.0147 75.5882 36.0229 75.5882 36.0645C75.5275 36.214 75.4819 36.3711 75.4364 36.5209C75.5581 36.7111 75.6793 36.8935 75.816 37.0677C75.9374 36.902 76.0741 36.7362 76.2107 36.5535C76.3322 36.6367 76.2866 36.612 76.4377 36.7278C76.6199 36.8604 76.878 37.2669 77.2727 36.5869C78.3502 37.2748 78.2895 37.1673 79.018 36.7447C79.1698 36.6616 79.4279 36.678 79.6101 36.6533C79.6101 38.519 79.7156 37.9137 79.018 39.9034C78.4717 39.8949 77.8193 39.6296 77.8193 39.6296C77.4701 39.7792 77.1212 39.928 76.7869 40.0692C76.605 40.0858 75.7403 39.6296 75.3759 39.5549C75.0723 39.5054 75.0723 39.547 74.8142 39.4059C74.6477 39.3065 74.2076 39.1821 73.9796 39.0079C73.5697 38.7092 73.0084 38.5021 72.7658 38.7926C72.6139 39.2401 72.4624 39.6796 72.3257 40.1192C71.6577 40.2685 71.8854 40.0029 71.2936 39.7207C71.0663 39.6296 70.8538 39.5965 70.6716 39.5305C70.1706 39.3227 70.5501 39.4554 70.2467 39.0243C69.8669 38.519 68.9565 38.6515 68.4405 38.3279C68.2434 38.2122 68.046 38.1126 67.8641 38.0048C68.046 37.8637 68.2434 37.7144 68.4405 37.5655C68.3949 37.3913 68.3494 37.2173 68.3039 37.0431C68.1826 36.6947 67.9703 36.8024 68.1523 36.4378C68.2128 36.3962 68.2737 36.3382 68.3494 36.28C68.3494 36.1725 68.3494 36.0645 68.3494 35.9482C67.5604 36.1556 68.2737 35.6583 67.5303 35.7909C67.257 35.8405 67.3177 35.9156 67.0295 35.9816C66.7863 36.0314 66.7259 36.0067 66.5285 35.9816C65.5269 36.0729 64.5406 36.164 63.5545 36.2638C63.2657 36.3549 62.9925 36.5456 62.6739 36.7526C62.0215 37.1922 61.9003 36.9684 60.7771 36.8935C60.7771 36.7195 60.7771 36.5369 60.7771 36.3549C61.3383 36.2967 60.8836 36.1725 61.5511 36.1394C62.3401 36.1142 62.1278 36.1556 62.6739 35.6749C62.9621 35.443 63.1597 35.0614 63.4024 34.7797C63.2961 34.6301 63.2053 34.4892 63.1142 34.3401C63.3113 34.1823 63.2812 34.199 63.4634 33.975C63.8273 33.519 64.343 33.3533 64.8594 33.0879C64.844 32.2253 64.6011 31.8193 66.0128 32.4662C66.4374 32.1842 66.8625 31.9025 67.2876 31.6205C67.9091 32.01 67.8334 31.9268 67.758 32.7148C68.2128 32.5322 68.1222 32.5989 68.5926 33.0959C69.0329 33.5521 69.5787 33.8008 70.019 34.2159C70.2617 34.4312 70.3378 34.5888 70.4894 34.8954C70.0342 35.4094 69.3967 35.2603 68.8352 35.3103C68.8352 35.4591 68.8352 35.6003 68.8352 35.7414C69.1695 35.7745 69.8216 36.2223 70.1857 36.3962C70.1857 36.1058 70.1857 35.824 70.1857 35.5336C70.7017 35.5336 70.7171 35.3349 71.0663 35.0281C70.9904 34.7296 70.9294 34.4397 70.8687 34.1492C71.0357 34.0748 71.415 34.315 71.6428 34.4061C71.5818 33.519 71.0208 33.8924 70.6716 33.4112C70.6106 33.2622 70.5501 33.1128 70.4894 32.9553C69.791 33.1295 69.7609 32.69 68.8352 31.6453C68.9263 31.3962 69.0174 31.1563 69.124 30.8989C69.5033 31.2058 69.1844 31.0231 69.3661 31.2805C69.5939 31.5625 69.7454 31.5625 69.8669 31.7616C69.8669 31.7778 69.8821 31.8026 69.8975 31.8111C69.9886 31.9438 70.8993 32.4495 71.1724 32.6569C71.3085 32.7731 71.3695 32.7893 71.5211 32.9217C71.6577 33.0299 71.7943 33.1295 71.931 33.237C71.931 33.7348 71.8245 33.975 72.0524 34.4145C72.1286 34.5639 72.3713 34.7627 72.5229 34.8872C72.5079 35.3183 72.3257 35.542 72.6446 35.7578C72.7961 35.882 72.8566 35.8405 73.0537 36.1473C73.2061 36.3962 73.494 36.6036 73.5548 36.6451C73.6608 36.7111 73.4786 36.8353 73.7519 36.6867C74.01 36.5291 73.7974 36.3798 73.8733 36.1058C73.9189 35.882 73.8733 36.214 73.9799 35.8073C74.01 35.8073 74.0406 35.8161 74.071 35.8161C74.1922 35.9982 74.3288 36.1807 74.4655 36.3631ZM69.6091 25.0868C69.8216 25.4267 69.5483 25.2605 70.0035 25.3105C69.8975 24.9957 69.8975 24.9708 69.6091 25.0868C69.6091 24.9787 69.6091 24.8794 69.6091 24.7719C69.791 24.7219 69.9732 24.6803 70.1554 24.6392C70.5195 24.523 70.4436 24.5476 70.5501 24.4234C70.8839 24.0586 70.7323 23.8843 70.5802 23.1797C70.8082 23.1633 71.0355 23.1382 71.2632 23.1133C71.2632 22.7982 71.2936 22.8148 71.4451 22.4833C71.0355 22.1433 71.4608 22.3753 70.6713 21.8862C70.7323 21.1069 70.7779 21.1652 70.9294 20.9989C71.2174 20.6589 71.8399 20.593 72.0373 20.3277C72.1888 20.1368 72.1587 20.0952 72.1737 20.0041C72.2344 19.6972 72.1587 19.8799 72.4166 19.4488C72.7658 19.523 73.1294 19.5815 73.4938 19.6392C73.3878 19.7472 73.2967 19.855 73.2061 19.9541C72.7202 20.5178 72.5681 20.5016 71.931 20.593C72.0066 20.8247 72.0373 20.6841 72.0676 21.0572C72.0828 21.2062 72.0977 21.3469 72.1284 21.4965C72.2344 21.878 72.1888 21.9773 72.2344 22.5413C72.5226 22.5744 72.5836 22.616 72.8113 22.6907C73.0844 22.8895 73.6304 22.6075 73.8885 22.5826C74.2678 22.6486 74.6626 22.7153 75.0568 22.7817C74.4194 23.1382 73.1294 22.4087 73.175 23.1548C73.0239 23.1051 72.8716 23.0637 72.7202 23.0055C72.538 23.1879 72.7202 23.0881 72.4166 23.3124C72.4469 23.4617 72.4925 23.6108 72.538 23.7517C72.538 23.7768 72.5681 23.8181 72.5681 23.8346C72.5836 23.8677 72.5988 23.8928 72.6137 23.9257C72.3409 23.8761 72.5532 23.8346 72.3865 24.0088C72.2647 24.125 72.2799 24.1415 72.2498 24.2823C72.2192 24.4566 72.2344 24.5145 72.2192 24.6803C72.1737 25.1614 72.1587 25.3272 71.4451 25.5925C71.4451 25.584 71.6119 25.0703 70.5195 25.4765C70.2159 25.5925 69.9125 25.7252 69.6091 25.8494C69.5334 25.7085 69.4724 25.5594 69.4119 25.4019C69.0475 25.5181 68.6984 25.6174 68.3494 25.7167C68.5316 25.1945 68.3949 25.941 68.8352 24.9708C69.1386 25.1283 69.1842 25.0785 69.6091 25.0868ZM22.9298 45.8151C22.9298 45.9478 22.9298 46.0722 22.9298 46.1967C23.2942 46.1633 23.2942 46.1633 23.3245 45.8067C23.1879 45.8067 23.0513 45.8233 22.9298 45.8151C23.1269 45.7156 23.3245 45.6165 23.5217 45.5085C23.6735 46.0558 23.4002 45.558 24.5685 45.9976C25.6768 46.404 24.5685 46.3293 25.6462 46.5367C25.5397 46.7109 25.4486 46.8682 25.3575 47.0424C25.8585 47.0257 26.7996 46.9013 27.3004 46.8102C27.0121 46.3791 27.1334 46.6198 26.648 46.3044C25.3886 45.5498 25.8279 45.6991 25.5248 45.4838C25.1609 45.2429 25.3575 45.5334 24.8572 45.3096C23.4913 44.6958 23.112 45.2765 22.0646 46.0476C22.6261 45.9976 22.429 45.8734 22.9298 45.8151ZM28.3778 15.8834C28.3778 15.9496 28.3778 16.0161 28.3778 16.0823C28.8027 15.9912 28.9092 16.3561 29.6676 15.9496C30.2291 15.6512 30.2746 15.5437 30.6993 15.0959C30.1686 15.2037 29.7587 15.2532 29.3639 15.5185C29.3035 15.5598 29.2425 15.6181 29.1818 15.6512C29.1514 15.6597 29.1362 15.6763 29.1058 15.6763C28.6056 15.9081 29.516 15.5932 28.9697 15.7259C28.6359 15.817 29.1213 15.6679 28.6967 15.7674C28.6815 15.7754 28.4383 15.8585 28.3778 15.8834ZM67.0898 32.5906C67.1505 32.9301 67.2112 33.2455 67.2874 33.569C67.0748 33.6599 67.2874 33.6186 67.1204 33.577C67.0442 33.5439 66.9683 33.5028 66.8926 33.4613C66.9076 33.8675 66.9227 34.2734 66.9531 34.6714C66.9987 35.0034 67.0138 34.9619 67.6667 34.763C67.6667 33.6517 67.8944 34.4728 67.5756 33.4695C67.5602 33.4279 67.5452 33.3864 67.5452 33.3453C67.5452 33.0299 67.5602 32.7064 67.5756 32.3833C67.2264 32.4826 67.4389 32.4826 67.0898 32.5906ZM27.6946 47.3988C27.664 47.407 27.6339 47.407 27.6339 47.4404C27.6184 47.4735 27.5729 47.4735 27.558 47.465C27.5428 47.482 27.4517 47.523 27.4363 47.523C27.0119 47.6393 27.3606 47.366 26.8145 47.8961C27.1182 47.9708 27.2546 47.9628 27.5428 47.9546C27.831 47.9872 27.8616 48.1866 28.4687 48.1866C28.7569 47.3819 30.1076 48.2281 29.8799 47.5151C29.8192 47.2993 29.0909 46.9264 28.9694 46.8766C28.7873 46.8017 28.7113 46.8266 28.5901 46.8266C28.0587 46.8682 28.4231 46.9429 27.6946 46.7024C27.3912 47.1751 27.6339 46.9097 27.6946 47.3988ZM55.0557 19.6556C55.1772 19.7308 55.2984 19.8052 55.4351 19.8714C55.4351 19.9795 55.4351 20.087 55.4351 20.1947C55.9819 20.253 56.5277 20.3277 57.0892 20.3772C57.3319 20.3936 57.1803 20.3189 57.575 20.1534C57.8326 20.0536 57.9086 20.021 58.1664 19.9379C58.7588 19.7721 58.88 19.7223 59.1227 19.2579C59.0166 19.0421 58.9255 18.8266 58.8344 18.6192C58.3942 18.6192 58.4551 18.4704 58.1059 18.5782C57.9847 18.6444 57.863 18.7108 57.7416 18.7768C57.2868 18.8764 57.1046 18.5035 56.3151 19.0919C56.3 18.8184 56.3455 18.9015 56.1335 18.6526C55.9052 18.3709 55.2683 18.8435 55.1772 19.0257C54.9646 19.4239 55.1468 19.0344 55.2073 19.3162C55.2835 19.6059 55.4351 19.0757 55.1468 19.5314C55.1162 19.5645 55.0861 19.6059 55.0557 19.6556ZM69.6088 12.2849C69.0928 12.2351 68.5769 12.1771 68.0609 12.1189C68.0609 12.1938 68.0761 12.4176 68.0761 12.4425C68.0761 12.4591 68.0761 12.4922 68.0609 12.5084C68.0154 12.5998 67.985 12.6826 67.9549 12.7576C68.3036 12.8486 68.668 12.9397 69.0324 13.0229C69.1538 13.6115 69.4271 13.6859 70.2918 13.8273C70.4433 13.5371 70.6104 13.2551 70.7776 12.9731C71.4449 13.6613 71.5661 13.8519 72.6134 13.3626C72.4011 13.2215 72.219 13.2051 72.0064 13.1219C71.8242 13.0393 72.037 13.1473 71.8698 13.0478C71.7182 12.9482 71.5815 12.832 71.4449 12.716C71.8595 12.7566 72.1381 12.8014 72.3464 12.8146C71.9492 12.5754 71.5492 12.3429 71.1457 12.1174C71.0474 12.1 70.8082 12.0995 70.0944 12.1605C69.275 12.2598 69.9428 12.3013 69.6088 12.2849ZM24.69 17.6077C25.7826 17.4918 26.8145 17.8733 26.8145 17.8733C27.5124 17.7486 28.0438 17.4176 28.6354 17.268C29.2878 17.1189 29.9558 17.0276 30.6084 16.7292C30.3807 16.207 30.6841 16.9198 30.3506 16.5465C30.3351 16.4638 30.3199 16.3727 30.305 16.2896C30.1074 16.3558 29.9103 16.4302 29.7129 16.4969C29.743 16.3643 29.7736 16.2316 29.8192 16.0823C28.2561 16.5801 28.909 16.6129 28.4687 16.8533C27.8917 17.1767 28.7412 15.9496 27.4514 16.2896C27.1637 16.3727 27.1782 16.3312 26.875 16.4389C26.2831 16.696 25.6913 16.9449 25.1148 17.1849C24.7049 17.3676 24.7808 17.2018 24.69 17.6077ZM86.5898 66.3941C85.8314 66.4693 86.3929 66.5268 85.9225 67.2732C85.5278 67.8701 84.5566 68.0363 84.3592 68.2765C84.2532 68.5501 84.1621 68.8318 84.071 69.1138C84.071 69.7856 84.3744 70.2498 84.1773 70.7724C83.9951 71.2366 83.4941 71.5186 83.6459 72.1732C83.8283 72.8783 83.7066 72.2566 83.7828 73.0605C83.8129 73.3843 83.8739 73.5832 84.1011 73.7487C84.572 74.1054 84.7841 73.84 85.5278 73.5996C85.5427 73.3759 86.6506 70.0345 86.8024 69.4787C86.8935 69.1223 86.8176 69.1058 86.9998 68.7576C87.1364 68.459 87.1513 68.8072 87.0757 68.1023C87.1058 68.0938 87.1364 68.0856 87.1668 68.0774C87.1668 68.0694 87.1969 68.0612 87.2123 68.0443C87.2123 68.0443 87.2424 68.0363 87.2424 68.0279C87.6827 67.6468 87.1819 66.4111 86.9846 65.6564C86.9087 65.6646 86.8479 65.6646 86.7874 65.6731C86.6657 66.0215 86.5898 65.8473 86.5898 66.3941ZM26.5258 32.3831C26.9206 32.292 26.5258 32.3749 26.7384 32.292C26.8904 32.2173 26.7535 32.2668 26.8601 32.2422C26.875 32.2255 26.9056 32.2173 26.9206 32.2173C26.936 32.2173 26.9661 32.2006 26.9815 32.2006C28.2255 32.002 28.0587 32.5406 28.0739 32.9055C27.9072 32.7644 27.7397 32.6153 27.5881 32.4662C27.2693 33.1795 27.4818 32.9471 26.8145 33.8259C26.8145 33.8092 26.8145 33.7597 26.8145 33.7679C26.7991 33.6932 26.7839 33.6186 26.7839 33.5354C26.769 33.519 26.769 33.4859 26.769 33.478C26.7535 33.3533 26.7384 33.2211 26.7234 33.0879C26.7234 33.0713 26.7384 33.0384 26.7384 33.0299C26.7991 32.8973 26.8601 32.7731 26.9206 32.6322C26.5868 32.4911 26.7384 32.6402 26.5258 32.3831ZM24.0978 34.8541C24.113 34.6385 24.128 34.7045 24.1586 34.6139C24.4468 33.6848 24.69 33.7097 24.8415 33.3948C25.2818 32.5242 24.5834 33.0959 26.1313 32.3169C25.9949 32.856 25.6007 32.6569 25.0693 33.4939C24.7656 33.9665 24.963 34.7045 24.0978 34.8541ZM23.9007 31.9684C24.3557 31.5373 24.9936 31.4798 25.5852 31.0318C25.9342 30.7663 25.8431 30.7578 26.6169 31.2805C26.253 31.5625 25.9038 31.8278 25.5546 32.0846C25.2363 31.8858 25.312 31.6615 24.7808 31.8773C24.1434 32.1347 24.4468 32.118 23.9007 31.9684ZM79.0175 42.1173C79.0327 42.1088 79.0476 42.0839 79.063 42.1088C79.063 42.1255 79.0931 42.0924 79.0931 42.0924C79.2908 42.0342 79.4879 41.9846 79.7004 41.9182C79.8217 42.4409 80.0491 42.4157 80.2164 42.9546C80.2313 43.0046 80.2921 43.253 80.3075 43.2779C80.3224 43.3361 80.353 43.369 80.3832 43.4106C80.3981 43.4272 80.4135 43.4521 80.4287 43.4685C80.4436 43.4857 80.4591 43.5101 80.4743 43.5268C80.9601 44.157 80.4436 43.6843 81.1876 44.4636C81.8855 45.2016 81.3996 45.4338 81.7339 46.1885C82.1889 47.2082 82.0522 46.0391 82.7656 47.6393C82.9629 48.0703 83.5702 48.5846 83.5548 49.2479C83.5247 50.0685 83.5852 49.3641 83.5852 50.3174C83.5852 51.3455 83.6158 49.8201 83.8736 51.0469C83.6158 50.8565 83.6307 50.8231 83.4182 50.5906C82.8268 49.9194 83.1449 50.2011 82.5535 49.7454C81.4305 48.8748 82.1588 48.2777 81.4758 47.7804C81.036 47.4486 81.0056 47.4235 80.9449 46.9097C80.8538 46.3211 81.0056 46.238 80.7779 45.7407C80.5502 45.2511 80.1253 44.9943 80.0491 44.6296C79.9583 44.2147 80.2164 44.5881 79.8976 44.0325C79.3664 43.1037 79.4274 43.0544 79.0175 42.1173ZM85.7097 32.3995C84.9812 32.0764 86.0741 32.5737 85.3302 32.0595C85.3757 32.7233 86.0893 33.1375 86.6812 33.6022C86.6812 34.6881 86.772 33.909 86.9542 34.6714C87.0754 35.053 87.2121 35.443 87.3487 35.8325C87.6524 35.6334 87.5613 35.6503 87.8495 36.952C86.772 37.018 86.772 37.1422 86.0893 36.562C85.2545 35.824 85.6035 35.6829 85.6338 35.4676C85.6794 35.2518 85.7249 35.2767 86.1042 35.0034C85.7859 34.4892 85.8616 34.8623 85.4972 34.4812C85.0113 33.975 84.4352 32.9968 84.0708 32.3749C84.3744 31.72 83.9951 32.068 84.4501 31.7526C84.7079 31.5704 84.9663 31.3965 85.2241 31.2222C85.6189 31.0151 85.877 31.1393 86.499 31.2222C86.499 32.7233 85.983 31.2058 85.7097 32.3995ZM77.5607 31.3962C77.712 31.6205 77.8793 31.8358 78.0465 32.0595C78.8505 32.0846 78.7594 31.72 79.2753 31.7031C79.9128 31.6785 79.3515 31.7367 80.3075 32.2422C81.0206 32.6484 81.4305 33.2121 81.931 33.8675C81.036 34.2734 81.6884 34.0748 80.5654 34.0748C80.353 34.0748 79.6855 33.7679 79.4423 33.6517C79.3819 33.6186 79.3209 33.5937 79.2452 33.5606C77.8036 32.8726 77.3633 34.3234 76.149 33.635C75.7851 33.4279 76.0584 33.6681 75.8914 33.3697C75.8613 33.3284 75.8306 33.2871 75.8157 33.237C75.7547 33.0299 75.7851 33.2286 75.7851 33.0299C75.7702 32.9471 75.8458 32.7731 75.8762 32.6817C75.9068 32.6484 75.9369 32.6073 75.9668 32.5658C76.5139 31.5874 76.3924 32.2091 76.4982 31.4629C76.5437 31.1147 76.6348 31.0898 76.8929 30.7414C77.4241 30.9236 76.8474 30.9489 77.9555 30.9987C77.712 31.3387 77.7882 31.0647 77.5607 31.3965ZM79.1238 19.6641C79.0175 19.7226 78.9115 19.7886 78.8204 19.8468C78.8659 20.3774 79.3363 20.6759 78.5013 20.2863C78.2131 20.3359 77.9403 20.369 77.667 20.3939C77.8793 20.5181 78.1068 20.6428 78.3345 20.7585C77.9246 20.7338 78.0309 20.7418 77.7581 20.6176C77.7277 20.6094 77.4845 20.5016 77.4544 20.485C77.3785 20.4521 77.2267 20.4352 77.09 20.1285C76.923 19.7057 77.1963 20.1452 76.7864 19.3741C78.0913 19.5981 77.5607 19.9379 79.1238 19.6641Z"/>
10
+ </g>
11
+ </g>
12
+ <circle cx="50" cy="50" r="45" fill="none" stroke="#000" stroke-width="2.5"/>
13
+ </svg>
14
+ `,Pe=`<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64" height="64">
15
+ <g fill="#000">
16
+ <path d="M19.905,41.689c-.526-2.691-.837-5.613-.892-8.689h-10.987c.161,3.896,1.255,7.552,3.063,10.757,2.651-.874,5.622-1.572,8.816-2.067Z"/>
17
+ <path d="M31,55.892v-13.091c-2.971.036-5.872.229-8.639.57,1.736,6.839,4.958,11.757,8.639,12.521Z"/>
18
+ <path d="M8.025,31h10.987c.056-3.076.367-5.998.892-8.689-3.194-.496-6.164-1.193-8.816-2.067-1.809,3.204-2.903,6.861-3.063,10.757Z"/>
19
+ <path d="M31,33h-9.988c.059,2.959.377,5.799.905,8.413,2.91-.367,5.96-.575,9.083-.612v-7.8Z"/>
20
+ <path d="M42.083,22.587c-2.91.367-5.96.575-9.083.612v7.8h9.988c-.059-2.959-.377-5.799-.905-8.413Z"/>
21
+ <path d="M31,31v-7.8c-3.123-.037-6.173-.245-9.083-.612-.528,2.614-.846,5.454-.905,8.413h9.988Z"/>
22
+ <path d="M33,8.108v13.091c2.971-.036,5.872-.229,8.639-.57-1.736-6.839-4.958-11.757-8.639-12.521Z"/>
23
+ <path d="M31,21.2v-13.091c-3.681.764-6.903,5.682-8.639,12.521,2.767.341,5.668.535,8.639.57Z"/>
24
+ <path d="M20.333,43.644c-2.946.452-5.689,1.082-8.158,1.864,3.258,4.766,8.186,8.302,13.936,9.758-2.515-2.501-4.542-6.575-5.778-11.623Z"/>
25
+ <path d="M43.667,20.356c2.946-.452,5.689-1.082,8.158-1.864-3.258-4.766-8.186-8.302-13.936-9.758,2.515,2.501,4.542,6.575,5.778,11.623Z"/>
26
+ <path d="M20.333,20.356c1.236-5.048,3.263-9.122,5.778-11.623-5.75,1.456-10.679,4.992-13.936,9.758,2.469.783,5.212,1.412,8.158,1.864Z"/>
27
+ <path d="M43.667,43.644c-1.236,5.048-3.263,9.122-5.778,11.623,5.75-1.456,10.679-4.992,13.936-9.758-2.469-.783-5.212-1.412-8.158-1.864Z"/>
28
+ <path d="M33,33v7.8c3.123.037,6.173.245,9.083.612.528-2.614.846-5.454.905-8.413h-9.988Z"/>
29
+ <path d="M33,42.8v13.091c3.681-.764,6.903-5.682,8.639-12.521-2.767-.341-5.668-.535-8.639-.57Z"/>
30
+ <path d="M44.095,22.311c.526,2.691.837,5.613.892,8.689h10.987c-.161-3.896-1.255-7.552-3.063-10.757-2.651.874-5.622,1.572-8.816,2.067Z"/>
31
+ <path d="M55.975,33h-10.987c-.056,3.076-.367,5.998-.892,8.689,3.194.496,6.164,1.193,8.816,2.067,1.809-3.204,2.903-6.861,3.063-10.757Z"/>
32
+ </g>
33
+ </svg>
34
+ `,Fe=`<svg xmlns="http://www.w3.org/2000/svg" viewBox="-2 -2 104 104" width="96" height="96">
35
+ <path fill="#000" fill-rule="evenodd" d="M50 6.406A43.594 43.594 0 1 1 50 93.594A43.594 43.594 0 1 1 50 6.406ZM26.639 86.564C26.842 86.362 26.945 86.16 27.147 85.953C27.961 84.835 27.961 84.632 28.365 84.125C29.484 82.803 30.396 83.311 31.516 82.196C32.328 81.284 32.531 80.062 32.836 78.439C33.142 76.812 32.734 76.713 33.039 75.796C33.749 73.662 35.578 73.257 35.475 72.139C35.371 71.019 33.547 70.309 32.428 69.802C30.091 68.786 28.977 69.397 27.246 68.174C26.941 67.972 26.334 67.465 25.722 66.548C25.012 65.533 25.318 65.227 24.81 64.413C24.608 64.108 24.199 63.501 21.255 62.18C20.136 61.672 19.224 61.268 18.716 61.061C16.379 60.149 15.161 59.641 14.042 59.435C12.722 59.232 12.011 59.331 9.979 58.927C9.373 58.736 8.865 58.633 8.357 58.328S7.544 57.716 7.238 57.415C6.834 54.979 6.628 52.539 6.628 50C6.628 49.29 6.628 48.476 6.73 47.767C8.15 47.461 9.067 46.853 9.575 46.346C10.693 45.227 10.591 44.418 12.114 42.688C12.725 42.077 13.436 41.267 14.654 40.553C16.28 39.538 17.295 39.74 17.903 38.724C18.411 37.91 18.208 37.2 18.716 36.998S19.53 37.403 20.442 37.61C21.255 37.812 22.577 37.712 23.385 36.899C24.298 35.987 24.604 34.463 23.997 33.448C23.489 32.534 22.779 32.836 21.561 31.722C20.342 30.503 20.648 29.793 19.53 29.079C18.514 28.469 18.006 28.877 17.395 28.369C16.783 27.758 16.685 26.44 17.193 25.628C17.803 24.612 18.819 25.12 19.834 24.001C21.156 22.679 20.954 20.342 20.85 19.534C20.748 19.026 20.648 18.621 20.545 18.212C21.763 17.093 22.981 16.077 24.302 15.165C24.913 15.776 25.421 16.284 25.826 16.792C26.738 17.911 27.246 18.518 27.246 19.434C27.246 20.554 26.432 20.854 25.924 22.481C25.822 22.887 25.52 24.005 25.722 25.223C26.128 27.151 27.754 29.083 29.075 28.881C29.785 28.777 30.293 27.968 31.106 26.648C31.92 25.326 31.718 24.921 32.324 24.413C33.237 23.601 33.848 24.108 35.573 23.501C37.097 22.89 36.895 22.382 39.026 21.268C40.347 20.558 40.652 20.656 41.259 20.05C41.663 19.744 42.171 19.236 42.985 17.307C44.104 14.971 43.798 14.768 44.612 13.65C45.83 11.821 46.949 11.619 46.845 10.909C46.643 10.095 44.814 9.893 42.171 9.488C40.037 9.182 38.414 9.182 38.006 9.182C37.394 9.182 36.685 9.182 35.772 9.08C40.14 7.556 44.914 6.742 49.79 6.742C62.589 6.742 74.166 12.329 82.089 21.164C81.176 21.672 80.058 22.18 78.736 22.283C77.923 22.386 76.705 22.485 75.586 21.878C75.28 21.676 75.182 21.572 74.468 21.064C73.047 19.946 72.233 19.339 71.825 19.033C70.809 18.423 69.591 18.728 67.254 19.033C65.834 19.236 65.021 19.339 63.902 19.744C59.942 21.164 58.01 24.009 57.3 25.227C56.59 26.346 56.486 26.854 56.59 27.258C56.994 28.579 60.549 28.171 60.652 28.984C60.652 29.289 60.347 29.492 60.347 29.492C59.839 29.897 59.839 30.813 59.331 30.912C58.927 31.015 58.823 30.507 58.315 30.405C57.911 30.405 57.502 30.607 56.486 32.031C55.166 33.86 55.368 34.166 54.76 34.467C53.745 35.078 52.833 34.364 52.325 35.078C51.92 35.586 52.427 36.093 52.123 37.213C52.019 37.617 51.817 38.228 51.21 38.633C50.805 38.835 50.599 38.736 49.38 38.835C48.568 38.938 48.163 38.938 47.754 39.14C46.941 39.546 46.739 40.462 46.635 40.664C46.532 40.97 46.433 41.477 46.532 42.085C46.837 42.897 47.548 43.303 47.651 43.405C47.956 43.608 48.159 43.711 48.361 43.608C48.464 43.608 48.564 43.505 48.666 43.608C48.869 43.711 48.869 43.913 48.972 44.013C49.174 44.318 49.884 44.318 50.19 44.318C51.511 44.215 52.527 43.405 52.527 43.303C52.631 43.199 53.138 42.691 53.947 41.577C54.253 41.271 54.558 40.763 55.066 40.156C55.88 39.244 56.082 39.038 56.388 38.938C56.895 38.736 57.403 38.736 57.807 38.836C58.213 38.836 58.621 38.938 59.025 39.14C60.244 39.648 61.362 40.462 61.668 40.768C62.072 41.073 62.28 41.275 62.58 41.275C63.192 41.275 63.394 40.664 63.902 40.664C64.207 40.664 64.409 40.867 65.322 41.68C66.032 42.391 66.135 42.695 66.643 42.898C67.048 43.101 67.456 43.203 67.762 43.203C68.576 43.307 68.881 43.001 69.488 43.001C70.401 43.001 70.909 43.612 71.623 44.017C73.348 45.032 74.468 43.711 75.38 44.628C76.09 45.239 75.991 46.354 75.991 46.862S75.888 48.281 75.28 48.691C75.078 48.793 74.772 48.893 73.452 48.691C72.131 48.488 71.015 48.183 70.607 48.079C68.98 47.675 69.084 47.572 68.576 47.572C67.663 47.469 67.456 47.774 65.834 47.977C64.715 48.179 64.108 48.179 63.803 48.179C63.092 47.977 62.989 47.671 60.859 45.945C60.045 45.334 59.843 45.132 59.439 45.032C58.625 44.727 58.018 44.83 57.304 44.93C55.78 45.132 54.662 45.234 53.749 45.234C51.515 45.338 50.904 44.83 49.686 45.438C49.282 45.64 49.076 45.842 48.468 46.35C47.251 47.365 46.541 48.277 46.033 48.889C44.204 51.226 43.29 52.34 43.088 52.646C42.684 53.356 42.783 55.289 42.886 59.145C42.886 60.363 42.989 60.669 43.088 61.176C43.902 63.208 46.239 64.02 46.949 64.224C47.762 64.528 48.472 64.528 49.488 64.628C52.939 64.83 53.753 63.918 56.09 64.426C57.106 64.628 58.733 65.036 59.339 66.255C59.847 67.167 59.237 67.881 59.645 69.404C60.049 70.622 60.458 70.42 60.966 71.638C61.982 74.075 60.966 76.919 60.764 77.53C60.458 78.443 60.256 78.748 60.256 79.359C60.359 80.577 61.069 81.085 61.577 82.204C62.188 83.624 61.577 84.235 61.78 85.759C62.084 87.687 63.505 89.822 65.231 90.531C60.355 92.361 55.178 93.376 49.69 93.376C41.367 93.368 33.344 90.829 26.639 86.564ZM69.604 88.699C70.008 88.191 70.516 87.58 71.023 86.87C71.837 85.854 72.547 84.941 73.055 83.418S73.257 81.386 73.868 80.574C74.78 79.252 76.003 79.661 76.812 78.339C77.117 77.832 77.217 77.122 77.423 75.8C77.625 74.277 77.527 73.567 77.625 72.857C77.625 72.349 77.827 71.131 80.978 67.167C83.113 64.426 84.533 63.002 84.227 62.394C83.921 61.99 83.109 62.498 81.688 61.99C80.874 61.684 80.268 61.379 79.962 61.077C78.542 60.061 77.827 58.641 77.423 57.522C75.392 52.952 73.972 51.936 74.48 50.516C74.582 50.412 74.784 49.806 75.19 49.806C75.698 49.702 76.205 50.619 76.816 51.532C77.832 53.257 75.698 49.397 79.966 56.102C81.086 57.931 80.982 58.538 81.692 58.947C82.811 59.557 84.335 58.744 85.351 58.134C85.961 57.828 88.6 56.304 88.5 54.475C88.398 53.765 87.89 53.257 87.89 53.155C87.382 52.647 86.977 52.647 86.06 52.242C85.148 51.837 84.231 51.428 83.723 50.614C83.113 49.599 83.113 48.075 83.621 47.771C84.231 47.465 84.739 49.091 86.668 50.206C87.786 50.818 89.611 51.02 93.166 51.424H93.571C92.86 67.774 83.315 81.791 69.604 88.698ZM49.29 33.039C50.202 33.241 50.306 33.143 50.71 33.345C51.115 33.547 51.218 33.749 51.829 34.055C52.233 34.257 52.441 34.361 52.643 34.361C53.151 34.257 53.353 33.345 53.253 32.635C53.151 32.127 52.849 31.722 52.238 30.706C51.833 30.096 51.833 30.198 51.627 29.794C50.917 28.675 50.917 28.167 50.611 28.069C50.409 28.069 50.306 28.271 49.798 28.779C48.782 29.996 48.58 29.897 48.072 30.706C47.667 31.318 47.362 31.924 47.564 32.333C47.663 32.734 48.171 32.837 49.29 33.039Z"/>
36
+ <circle cx="50" cy="50" r="45" fill="none" stroke="#000" stroke-width="3.2"/>
37
+ </svg>
38
+ `,Ie=`<svg xmlns="http://www.w3.org/2000/svg" viewBox="7 5 128 128" width="128" height="128">
39
+ <circle cx="71" cy="69" r="44" fill="none" stroke="#000" stroke-width="5"/>
40
+ <g fill="#000" transform="translate(71 69) scale(0.9) translate(-71 -69)">
41
+ <path d="m60.637 42.535c0.66797 1.5898-0.074219 3.4219-1.6641 4.0938-4.0312 1.6992-7.3867 5.1758-9.1992 9.6875-0.64453 1.6016-2.4609 2.3789-4.0625 1.7344-1.6016-0.64062-2.3789-2.4609-1.7383-4.0625 2.3828-5.9336 6.8789-10.719 12.57-13.117 1.5898-0.67188 3.4219 0.074218 4.0938 1.6641z"/>
42
+ <path d="m79.988 42.535c0.67188-1.5898 2.5039-2.3359 4.0938-1.6641 5.6875 2.3984 10.184 7.1836 12.566 13.117 0.64453 1.6016-0.13281 3.4219-1.7344 4.0625-1.6016 0.64453-3.4219-0.13281-4.0664-1.7344-1.8125-4.5117-5.168-7.9883-9.1953-9.6875-1.5898-0.67188-2.3359-2.5039-1.6641-4.0938z"/>
43
+ <path d="m70.312 40.625c1.7266 0 3.125 1.3984 3.125 3.125v0.36328c9.8945 1.4688 17.578 9.7969 17.578 19.996v17.594c0.99609 0.52344 1.6719 1.5664 1.6719 2.7695 0 1.7266-1.3984 3.125-3.125 3.125h-38.504c-1.7266 0-3.125-1.3984-3.125-3.125 0-1.2031 0.67969-2.2461 1.6758-2.7695v-17.594c0-10.199 7.6836-18.527 17.578-19.996v-0.36328c0-1.7266 1.3984-3.125 3.125-3.125z"/>
44
+ <path d="m62.164 93.75c0-1.7266 1.3984-3.125 3.125-3.125h10.047c1.7227 0 3.125 1.3984 3.125 3.125s-1.4023 3.125-3.125 3.125h-10.047c-1.7266 0-3.125-1.3984-3.125-3.125z"/>
45
+ </g>
46
+ </svg>
47
+ `,Le=`<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100">
48
+ <defs>
49
+ <mask id="nc-globe-hole" maskUnits="userSpaceOnUse">
50
+ <rect width="100" height="100" fill="white"/>
51
+ <circle cx="30.5" cy="67" r="38" fill="black"/>
52
+ </mask>
53
+ </defs>
54
+ <g mask="url(#nc-globe-hole)">
55
+ <g fill="#000" transform="translate(50 50) scale(1.2) translate(-16 -32)">
56
+ <path d="M19.905,41.689c-.526-2.691-.837-5.613-.892-8.689h-10.987c.161,3.896,1.255,7.552,3.063,10.757,2.651-.874,5.622-1.572,8.816-2.067Z"/>
57
+ <path d="M31,55.892v-13.091c-2.971.036-5.872.229-8.639.57,1.736,6.839,4.958,11.757,8.639,12.521Z"/>
58
+ <path d="M8.025,31h10.987c.056-3.076.367-5.998.892-8.689-3.194-.496-6.164-1.193-8.816-2.067-1.809,3.204-2.903,6.861-3.063,10.757Z"/>
59
+ <path d="M31,33h-9.988c.059,2.959.377,5.799.905,8.413,2.91-.367,5.96-.575,9.083-.612v-7.8Z"/>
60
+ <path d="M42.083,22.587c-2.91.367-5.96.575-9.083.612v7.8h9.988c-.059-2.959-.377-5.799-.905-8.413Z"/>
61
+ <path d="M31,31v-7.8c-3.123-.037-6.173-.245-9.083-.612-.528,2.614-.846,5.454-.905,8.413h9.988Z"/>
62
+ <path d="M33,8.108v13.091c2.971-.036,5.872-.229,8.639-.57-1.736-6.839-4.958-11.757-8.639-12.521Z"/>
63
+ <path d="M31,21.2v-13.091c-3.681.764-6.903,5.682-8.639,12.521,2.767.341,5.668.535,8.639.57Z"/>
64
+ <path d="M20.333,43.644c-2.946.452-5.689,1.082-8.158,1.864,3.258,4.766,8.186,8.302,13.936,9.758-2.515-2.501-4.542-6.575-5.778-11.623Z"/>
65
+ <path d="M43.667,20.356c2.946-.452,5.689-1.082,8.158-1.864-3.258-4.766-8.186-8.302-13.936-9.758,2.515,2.501,4.542,6.575,5.778,11.623Z"/>
66
+ <path d="M20.333,20.356c1.236-5.048,3.263-9.122,5.778-11.623-5.75,1.456-10.679,4.992-13.936,9.758,2.469.783,5.212,1.412,8.158,1.864Z"/>
67
+ <path d="M43.667,43.644c-1.236,5.048-3.263,9.122-5.778,11.623,5.75-1.456,10.679-4.992,13.936-9.758-2.469-.783-5.212-1.412-8.158-1.864Z"/>
68
+ <path d="M33,33v7.8c3.123.037,6.173.245,9.083.612.528-2.614.846-5.454.905-8.413h-9.988Z"/>
69
+ <path d="M33,42.8v13.091c3.681-.764,6.903-5.682,8.639-12.521-2.767-.341-5.668-.535-8.639-.57Z"/>
70
+ <path d="M44.095,22.311c.526,2.691.837,5.613.892,8.689h10.987c-.161-3.896-1.255-7.552-3.063-10.757-2.651.874-5.622,1.572-8.816,2.067Z"/>
71
+ <path d="M55.975,33h-10.987c-.056,3.076-.367,5.998-.892,8.689,3.194.496,6.164,1.193,8.816,2.067,1.809-3.204,2.903-6.861,3.063-10.757Z"/>
72
+ </g>
73
+ </g>
74
+ <g fill="#000" transform="translate(100 0) scale(-1 1)">
75
+ <path d="m60.637 42.535c0.66797 1.5898-0.074219 3.4219-1.6641 4.0938-4.0312 1.6992-7.3867 5.1758-9.1992 9.6875-0.64453 1.6016-2.4609 2.3789-4.0625 1.7344-1.6016-0.64062-2.3789-2.4609-1.7383-4.0625 2.3828-5.9336 6.8789-10.719 12.57-13.117 1.5898-0.67188 3.4219 0.074218 4.0938 1.6641z"/>
76
+ <path d="m79.988 42.535c0.67188-1.5898 2.5039-2.3359 4.0938-1.6641 5.6875 2.3984 10.184 7.1836 12.566 13.117 0.64453 1.6016-0.13281 3.4219-1.7344 4.0625-1.6016 0.64453-3.4219-0.13281-4.0664-1.7344-1.8125-4.5117-5.168-7.9883-9.1953-9.6875-1.5898-0.67188-2.3359-2.5039-1.6641-4.0938z"/>
77
+ <path d="m70.312 40.625c1.7266 0 3.125 1.3984 3.125 3.125v0.36328c9.8945 1.4688 17.578 9.7969 17.578 19.996v17.594c0.99609 0.52344 1.6719 1.5664 1.6719 2.7695 0 1.7266-1.3984 3.125-3.125 3.125h-38.504c-1.7266 0-3.125-1.3984-3.125-3.125 0-1.2031 0.67969-2.2461 1.6758-2.7695v-17.594c0-10.199 7.6836-18.527 17.578-19.996v-0.36328c0-1.7266 1.3984-3.125 3.125-3.125z"/>
78
+ <path d="m62.164 93.75c0-1.7266 1.3984-3.125 3.125-3.125h10.047c1.7227 0 3.125 1.3984 3.125 3.125s-1.4023 3.125-3.125 3.125h-10.047c-1.7266 0-3.125-1.3984-3.125-3.125z"/>
79
+ </g>
80
+ </svg>
81
+ `,Re=`<svg xmlns="http://www.w3.org/2000/svg" viewBox="-52 -4 512 512" width="512" height="512">
82
+ <path fill="#000" fill-rule="evenodd" d="M320.494,217.664l55.103-14.778c-8.401-28.728-23.938-54.836-45.11-76.009c-32.358-32.371-75.795-51.158-122.051-52.219v57.057c31.874,1.027,60.634,14.381,81.708,35.453C304.059,181.084,314.63,198.38,320.494,217.664 M322.6,280.453l55.086,14.777c3.361-13.816,5.035-28.031,5.035-42.246c0-14.545-1.74-28.693-5.035-42.245L322.6,225.518c2.035,8.813,3.131,18.023,3.131,27.467S324.635,271.639,322.6,280.453z M239.681,369.119l14.779,55.102c29.108-8.516,55.134-24.221,76.027-45.129c20.874-20.873,36.593-46.918,45.11-76.009l-55.103-14.778c-5.864,19.318-16.418,36.58-30.318,50.496C276.26,352.718,258.997,363.254,239.681,369.119z M232.308,362.725c0.382-0.266,0.814-0.498,1.309-0.597c0.467-0.133,0.93-0.166,1.394-0.133c18.937-5.302,35.885-15.44,49.403-28.96c20.973-20.973,33.165-50.43,33.165-80.051c0-9.642-1.207-18.986-3.479-27.932c-0.267-0.397-0.48-0.828-0.597-1.326c-0.134-0.463-0.165-0.961-0.134-1.424c-5.299-18.92-15.424-35.852-28.956-49.369c-20.18-20.211-47.979-32.803-78.729-33.167c-0.396,0.165-0.859,0.231-1.323,0.231s-0.93-0.066-1.344-0.231c-30.729,0.364-58.528,12.956-78.708,33.134c-20.496,20.51-33.168,48.807-33.168,80.084c0,31.246,12.673,59.575,33.168,80.051c20.478,20.478,48.789,33.168,80.052,33.168C214.002,366.203,223.379,364.978,232.308,362.725z M246.605,426.308l-14.775-55.102c-8.833,2.055-18.025,3.147-27.469,3.147c-33.498,0-63.866-13.585-85.818-35.553c-21.966-21.968-35.551-52.284-35.551-85.816c0-33.465,13.585-63.815,35.551-85.783c21.106-21.105,49.866-34.459,81.743-35.486V74.658c-47.648,1.094-90.671,20.842-122.05,52.219c-32.273,32.272-52.235,76.871-52.235,126.107c0,49.271,19.962,93.835,52.235,126.107c32.273,32.306,76.869,52.252,126.125,52.252C218.905,431.344,233.055,429.622,246.605,426.308z M124.661,246.355c0-2.254,1.821-4.076,4.075-4.076c2.235,0,4.061,1.822,4.061,4.076v59.21c0,2.253-1.825,4.075-4.061,4.075c-2.253,0-4.075-1.822-4.075-4.075V246.355z M148.435,220.543c0-2.252,1.839-4.075,4.075-4.075c2.235,0,4.074,1.823,4.074,4.075v85.022c0,2.253-1.839,4.075-4.074,4.075c-2.236,0-4.075-1.822-4.075-4.075V220.543z M172.226,213.95c0-2.253,1.839-4.075,4.074-4.075c2.236,0,4.075,1.822,4.075,4.075v91.615c0,2.253-1.839,4.075-4.075,4.075c-2.235,0-4.074-1.822-4.074-4.075V213.95z M196.031,255.699c0-2.254,1.822-4.076,4.061-4.076c2.253,0,4.075,1.822,4.075,4.076v49.866c0,2.253-1.821,4.075-4.075,4.075c-2.239,0-4.061-1.822-4.061-4.075V255.699z M219.804,220.014c0-2.254,1.821-4.076,4.061-4.076c2.253,0,4.075,1.822,4.075,4.076v85.552c0,2.253-1.822,4.075-4.075,4.075c-2.239,0-4.061-1.822-4.061-4.075V220.014z M243.595,255.699c0-2.254,1.839-4.076,4.075-4.076c2.235,0,4.074,1.822,4.074,4.076v49.866c0,2.253-1.838,4.075-4.074,4.075c-2.236,0-4.075-1.822-4.075-4.075V255.699z M267.369,205.832c0-2.219,1.839-4.041,4.074-4.041c2.253,0,4.074,1.822,4.074,4.041v99.733c0,2.253-1.821,4.075-4.074,4.075c-2.235,0-4.074-1.822-4.074-4.075V205.832z"/>
83
+ </svg>
84
+ `,ze=`<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100">
85
+ <!-- Connection mark: OHS service on the Scinverse globe (NC kinship layout: globe + badge <g>). -->
86
+ <defs>
87
+ <mask id="ohs-globe-hole" maskUnits="userSpaceOnUse">
88
+ <rect width="100" height="100" fill="white"/>
89
+ <circle cx="30.5" cy="67" r="38" fill="black"/>
90
+ </mask>
91
+ </defs>
92
+ <!-- Fit badge ring inside 100×100; nudge right so the left arc clears the viewBox. -->
93
+ <g transform="translate(50 50) scale(0.88) translate(-50 -50) translate(2.5 0)">
94
+ <g mask="url(#ohs-globe-hole)">
95
+ <g fill="#000" transform="translate(50 50) scale(1.2) translate(-16 -32)">
96
+ <path d="M19.905,41.689c-.526-2.691-.837-5.613-.892-8.689h-10.987c.161,3.896,1.255,7.552,3.063,10.757,2.651-.874,5.622-1.572,8.816-2.067Z"/>
97
+ <path d="M31,55.892v-13.091c-2.971.036-5.872.229-8.639.57,1.736,6.839,4.958,11.757,8.639,12.521Z"/>
98
+ <path d="M8.025,31h10.987c.056-3.076.367-5.998.892-8.689-3.194-.496-6.164-1.193-8.816-2.067-1.809,3.204-2.903,6.861-3.063,10.757Z"/>
99
+ <path d="M31,33h-9.988c.059,2.959.377,5.799.905,8.413,2.91-.367,5.96-.575,9.083-.612v-7.8Z"/>
100
+ <path d="M42.083,22.587c-2.91.367-5.96.575-9.083.612v7.8h9.988c-.059-2.959-.377-5.799-.905-8.413Z"/>
101
+ <path d="M31,31v-7.8c-3.123-.037-6.173-.245-9.083-.612-.528,2.614-.846,5.454-.905,8.413h9.988Z"/>
102
+ <path d="M33,8.108v13.091c2.971-.036,5.872-.229,8.639-.57-1.736-6.839-4.958-11.757-8.639-12.521Z"/>
103
+ <path d="M31,21.2v-13.091c-3.681.764-6.903,5.682-8.639,12.521,2.767.341,5.668.535,8.639.57Z"/>
104
+ <path d="M20.333,43.644c-2.946.452-5.689,1.082-8.158,1.864,3.258,4.766,8.186,8.302,13.936,9.758-2.515-2.501-4.542-6.575-5.778-11.623Z"/>
105
+ <path d="M43.667,20.356c2.946-.452,5.689-1.082,8.158-1.864-3.258-4.766-8.186-8.302-13.936-9.758,2.515,2.501,4.542,6.575,5.778,11.623Z"/>
106
+ <path d="M20.333,20.356c1.236-5.048,3.263-9.122,5.778-11.623-5.75,1.456-10.679,4.992-13.936,9.758,2.469.783,5.212,1.412,8.158,1.864Z"/>
107
+ <path d="M43.667,43.644c-1.236,5.048-3.263,9.122-5.778,11.623,5.75-1.456,10.679-4.992,13.936-9.758-2.469-.783-5.212-1.412-8.158-1.864Z"/>
108
+ <path d="M33,33v7.8c3.123.037,6.173.245,9.083.612.528-2.614.846-5.454.905-8.413h-9.988Z"/>
109
+ <path d="M33,42.8v13.091c3.681-.764,6.903-5.682,8.639-12.521-2.767-.341-5.668-.535-8.639-.57Z"/>
110
+ <path d="M44.095,22.311c.526,2.691.837,5.613.892,8.689h10.987c-.161-3.896-1.255-7.552-3.063-10.757-2.651.874-5.622,1.572-8.816,2.067Z"/>
111
+ <path d="M55.975,33h-10.987c-.056,3.076-.367,5.998-.892,8.689,3.194.496,6.164,1.193,8.816,2.067,1.809-3.204,2.903-6.861,3.063-10.757Z"/>
112
+ </g>
113
+ </g>
114
+ <g fill="#000" fill-rule="evenodd" transform="translate(100 0) scale(-1 1)">
115
+ <g transform="translate(71 69) scale(0.2) translate(-187 -252.5)">
116
+ <path d="M320.494,217.664l55.103-14.778c-8.401-28.728-23.938-54.836-45.11-76.009c-32.358-32.371-75.795-51.158-122.051-52.219v57.057c31.874,1.027,60.634,14.381,81.708,35.453C304.059,181.084,314.63,198.38,320.494,217.664 M322.6,280.453l55.086,14.777c3.361-13.816,5.035-28.031,5.035-42.246c0-14.545-1.74-28.693-5.035-42.245L322.6,225.518c2.035,8.813,3.131,18.023,3.131,27.467S324.635,271.639,322.6,280.453z M239.681,369.119l14.779,55.102c29.108-8.516,55.134-24.221,76.027-45.129c20.874-20.873,36.593-46.918,45.11-76.009l-55.103-14.778c-5.864,19.318-16.418,36.58-30.318,50.496C276.26,352.718,258.997,363.254,239.681,369.119z M232.308,362.725c0.382-0.266,0.814-0.498,1.309-0.597c0.467-0.133,0.93-0.166,1.394-0.133c18.937-5.302,35.885-15.44,49.403-28.96c20.973-20.973,33.165-50.43,33.165-80.051c0-9.642-1.207-18.986-3.479-27.932c-0.267-0.397-0.48-0.828-0.597-1.326c-0.134-0.463-0.165-0.961-0.134-1.424c-5.299-18.92-15.424-35.852-28.956-49.369c-20.18-20.211-47.979-32.803-78.729-33.167c-0.396,0.165-0.859,0.231-1.323,0.231s-0.93-0.066-1.344-0.231c-30.729,0.364-58.528,12.956-78.708,33.134c-20.496,20.51-33.168,48.807-33.168,80.084c0,31.246,12.673,59.575,33.168,80.051c20.478,20.478,48.789,33.168,80.052,33.168C214.002,366.203,223.379,364.978,232.308,362.725z M246.605,426.308l-14.775-55.102c-8.833,2.055-18.025,3.147-27.469,3.147c-33.498,0-63.866-13.585-85.818-35.553c-21.966-21.968-35.551-52.284-35.551-85.816c0-33.465,13.585-63.815,35.551-85.783c21.106-21.105,49.866-34.459,81.743-35.486V74.658c-47.648,1.094-90.671,20.842-122.05,52.219c-32.273,32.272-52.235,76.871-52.235,126.107c0,49.271,19.962,93.835,52.235,126.107c32.273,32.306,76.869,52.252,126.125,52.252C218.905,431.344,233.055,429.622,246.605,426.308z M124.661,246.355c0-2.254,1.821-4.076,4.075-4.076c2.235,0,4.061,1.822,4.061,4.076v59.21c0,2.253-1.825,4.075-4.061,4.075c-2.253,0-4.075-1.822-4.075-4.075V246.355z M148.435,220.543c0-2.252,1.839-4.075,4.075-4.075c2.235,0,4.074,1.823,4.074,4.075v85.022c0,2.253-1.839,4.075-4.074,4.075c-2.236,0-4.075-1.822-4.075-4.075V220.543z M172.226,213.95c0-2.253,1.839-4.075,4.074-4.075c2.236,0,4.075,1.822,4.075,4.075v91.615c0,2.253-1.839,4.075-4.075,4.075c-2.235,0-4.074-1.822-4.074-4.075V213.95z M196.031,255.699c0-2.254,1.822-4.076,4.061-4.076c2.253,0,4.075,1.822,4.075,4.076v49.866c0,2.253-1.821,4.075-4.075,4.075c-2.239,0-4.061-1.822-4.061-4.075V255.699z M219.804,220.014c0-2.254,1.821-4.076,4.061-4.076c2.253,0,4.075,1.822,4.075,4.076v85.552c0,2.253-1.822,4.075-4.075,4.075c-2.239,0-4.061-1.822-4.061-4.075V220.014z M243.595,255.699c0-2.254,1.839-4.076,4.075-4.076c2.235,0,4.074,1.822,4.074,4.076v49.866c0,2.253-1.838,4.075-4.074,4.075c-2.236,0-4.075-1.822-4.075-4.075V255.699z M267.369,205.832c0-2.219,1.839-4.041,4.074-4.041c2.253,0,4.074,1.822,4.074,4.041v99.733c0,2.253-1.821,4.075-4.074,4.075c-2.235,0-4.074-1.822-4.074-4.075V205.832z"/>
117
+ </g>
118
+ </g>
119
+ </g>
120
+ </svg>
121
+ `,Be=`<svg xmlns="http://www.w3.org/2000/svg" viewBox="7 5 128 128" width="128" height="128">
122
+ <!-- Service mark: palette (same slot as NC / OHS service icons). -->
123
+ <g fill="#000" transform="translate(71 69) scale(-0.2 0.2) translate(-256 -256)">
124
+ <path d="M416 352c-12.6-.84-21-4-28-12c-14-16-14-36 5.49-52.48l32.82-29.14c50.27-44.41 50.27-117.21 0-161.63C389.26 64.14 339.54 48 287.86 48c-60.34 0-123.39 22-172 65.11c-90.46 80-90.46 210.92 0 290.87c45 39.76 105.63 59.59 165.64 60h1.84c60 0 119.07-19.5 161.2-56.77C464 390 464 385 444.62 355.56C440 348 431 353 416 352M112 208a32 32 0 1 1 32 32a32 32 0 0 1-32-32m40 135a32 32 0 1 1 32-32a32 32 0 0 1-32 32m40-199a32 32 0 1 1 32 32a32 32 0 0 1-32-32m64 271a48 48 0 1 1 48-48a48 48 0 0 1-48 48m72-239a32 32 0 1 1 32-32a32 32 0 0 1-32 32"/>
125
+ </g>
126
+ </svg>
127
+ `,Ve=`<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100">
128
+ <!-- Connection mark: UI kit palette on the Scinverse globe (NC kinship layout: globe + badge <g>). -->
129
+ <defs>
130
+ <mask id="ui-kit-globe-hole" maskUnits="userSpaceOnUse">
131
+ <rect width="100" height="100" fill="white"/>
132
+ <circle cx="30.5" cy="67" r="38" fill="black"/>
133
+ </mask>
134
+ </defs>
135
+ <g mask="url(#ui-kit-globe-hole)">
136
+ <g fill="#000" transform="translate(50 50) scale(1.2) translate(-16 -32)">
137
+ <path d="M19.905,41.689c-.526-2.691-.837-5.613-.892-8.689h-10.987c.161,3.896,1.255,7.552,3.063,10.757,2.651-.874,5.622-1.572,8.816-2.067Z"/>
138
+ <path d="M31,55.892v-13.091c-2.971.036-5.872.229-8.639.57,1.736,6.839,4.958,11.757,8.639,12.521Z"/>
139
+ <path d="M8.025,31h10.987c.056-3.076.367-5.998.892-8.689-3.194-.496-6.164-1.193-8.816-2.067-1.809,3.204-2.903,6.861-3.063,10.757Z"/>
140
+ <path d="M31,33h-9.988c.059,2.959.377,5.799.905,8.413,2.91-.367,5.96-.575,9.083-.612v-7.8Z"/>
141
+ <path d="M42.083,22.587c-2.91.367-5.96.575-9.083.612v7.8h9.988c-.059-2.959-.377-5.799-.905-8.413Z"/>
142
+ <path d="M31,31v-7.8c-3.123-.037-6.173-.245-9.083-.612-.528,2.614-.846,5.454-.905,8.413h9.988Z"/>
143
+ <path d="M33,8.108v13.091c2.971-.036,5.872-.229,8.639-.57-1.736-6.839-4.958-11.757-8.639-12.521Z"/>
144
+ <path d="M31,21.2v-13.091c-3.681.764-6.903,5.682-8.639,12.521,2.767.341,5.668.535,8.639.57Z"/>
145
+ <path d="M20.333,43.644c-2.946.452-5.689,1.082-8.158,1.864,3.258,4.766,8.186,8.302,13.936,9.758-2.515-2.501-4.542-6.575-5.778-11.623Z"/>
146
+ <path d="M43.667,20.356c2.946-.452,5.689-1.082,8.158-1.864-3.258-4.766-8.186-8.302-13.936-9.758,2.515,2.501,4.542,6.575,5.778,11.623Z"/>
147
+ <path d="M20.333,20.356c1.236-5.048,3.263-9.122,5.778-11.623-5.75,1.456-10.679,4.992-13.936,9.758,2.469.783,5.212,1.412,8.158,1.864Z"/>
148
+ <path d="M43.667,43.644c-1.236,5.048-3.263,9.122-5.778,11.623,5.75-1.456,10.679-4.992,13.936-9.758-2.469-.783-5.212-1.412-8.158-1.864Z"/>
149
+ <path d="M33,33v7.8c3.123.037,6.173.245,9.083.612.528-2.614.846-5.454.905-8.413h-9.988Z"/>
150
+ <path d="M33,42.8v13.091c3.681-.764,6.903-5.682,8.639-12.521-2.767-.341-5.668-.535-8.639-.57Z"/>
151
+ <path d="M44.095,22.311c.526,2.691.837,5.613.892,8.689h10.987c-.161-3.896-1.255-7.552-3.063-10.757-2.651.874-5.622,1.572-8.816,2.067Z"/>
152
+ <path d="M55.975,33h-10.987c-.056,3.076-.367,5.998-.892,8.689,3.194.496,6.164,1.193,8.816,2.067,1.809-3.204,2.903-6.861,3.063-10.757Z"/>
153
+ </g>
154
+ </g>
155
+ <g fill="#000" transform="translate(100 0) scale(-1 1)">
156
+ <g transform="translate(71 69) scale(0.135) translate(-270 -270)">
157
+ <path d="M416 352c-12.6-.84-21-4-28-12c-14-16-14-36 5.49-52.48l32.82-29.14c50.27-44.41 50.27-117.21 0-161.63C389.26 64.14 339.54 48 287.86 48c-60.34 0-123.39 22-172 65.11c-90.46 80-90.46 210.92 0 290.87c45 39.76 105.63 59.59 165.64 60h1.84c60 0 119.07-19.5 161.2-56.77C464 390 464 385 444.62 355.56C440 348 431 353 416 352M112 208a32 32 0 1 1 32 32a32 32 0 0 1-32-32m40 135a32 32 0 1 1 32-32a32 32 0 0 1-32 32m40-199a32 32 0 1 1 32 32a32 32 0 0 1-32-32m64 271a48 48 0 1 1 48-48a48 48 0 0 1-48 48m72-239a32 32 0 1 1 32-32a32 32 0 0 1-32 32"/>
158
+ </g>
159
+ </g>
160
+ </svg>
161
+ `;function He(e,t){return e.replace(/id="([^"]+)"/g,`id="${t}-$1"`).replace(/url\(#([^)]+)\)/g,`url(#${t}-$1)`)}function Ue(e){return e.replace(/(fill|stroke)="#000(?:000)?"/gi,`$1="currentColor"`)}function We(e){return{viewBox:e.match(/viewBox="([^"]+)"/)?.[1]??`0 0 64 64`,inner:e.replace(/^[\s\S]*?<svg[^>]*>/,``).replace(/<\/svg>\s*$/,``)}}function Q({source:n,title:r,...i}){let a=(0,e.useId)().replace(/[^a-zA-Z0-9]/g,``),{viewBox:o,inner:s}=(0,e.useMemo)(()=>We(Ue(He(n,a))),[n,a]);return(0,t.jsx)(m,{viewBox:o,fill:`currentColor`,title:r,...i,children:(0,t.jsx)(`g`,{dangerouslySetInnerHTML:{__html:s}})})}function Ge(e){return(0,t.jsx)(Q,{source:Pe,...e})}function Ke(e){return(0,t.jsx)(Q,{source:Fe,...e})}function qe(e){return(0,t.jsx)(Q,{source:Ne,...e})}function Je(e){return(0,t.jsx)(Q,{source:ze,...e})}function Ye(e){return(0,t.jsx)(Q,{source:Le,...e})}function Xe(e){return(0,t.jsx)(Q,{source:Ve,...e})}function Ze(e){return(0,t.jsx)(Q,{source:Re,...e})}function Qe(e){return(0,t.jsx)(Q,{source:Ie,...e})}function $e(e){return(0,t.jsx)(Q,{source:Be,...e})}var et=`<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 512 512"><mask id="SVGuywqVbel"><circle cx="256" cy="256" r="256" fill="#fff"/></mask><g mask="url(#SVGuywqVbel)"><path fill="#ffda44" d="m0 345l256.7-25.5L512 345v167H0z"/><path fill="#d80027" d="m0 167l255-23l257 23v178H0z"/><path fill="#333" d="M0 0h512v167H0z"/></g></svg>`,tt=`<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="1em" height="1em">
162
+ <g fill="none" fill-rule="evenodd">
163
+ <g fill-rule="nonzero">
164
+ <circle fill="#F0F0F0" cx="60" cy="60" r="60"/>
165
+ <g transform="translate(1.875 1.875)" fill="#0052B4">
166
+ <path d="M10.528125,21.5957812 C5.81507813,27.7277344 2.26125,34.7953125 0.191953125,42.4732031 L31.4055469,42.4732031 L10.528125,21.5957812 Z"/>
167
+ <path d="M116.058047,42.4732031 C113.98875,34.7955469 110.434687,27.7279687 105.721875,21.5960156 L84.8449219,42.4732031 L116.058047,42.4732031 Z"/>
168
+ <path d="M0.191953125,73.7775 C2.26148438,81.4551563 5.8153125,88.5227344 10.528125,94.6544531 L31.4048438,73.7775 L0.191953125,73.7775 Z"/>
169
+ <path d="M94.6542187,10.5283594 C88.5222656,5.8153125 81.4549219,2.26148438 73.7770313,0.191953125 L73.7770313,31.4053125 L94.6542187,10.5283594 Z"/>
170
+ <path d="M21.5957812,105.721641 C27.7277344,110.434687 34.7953125,113.988516 42.4729687,116.058047 L42.4729687,84.8449219 L21.5957812,105.721641 Z"/>
171
+ <path d="M42.4727344,0.191953125 C34.7950781,2.26148438 27.7275,5.8153125 21.5957813,10.528125 L42.4727344,31.4050781 L42.4727344,0.191953125 Z"/>
172
+ <path d="M73.7772656,116.058047 C81.4549219,113.988516 88.5225,110.434687 94.6542187,105.721875 L73.7772656,84.8449219 L73.7772656,116.058047 Z"/>
173
+ <path d="M84.8449219,73.7775 L105.721875,94.6546875 C110.434687,88.5229688 113.98875,81.4551563 116.058047,73.7775 L84.8449219,73.7775 Z"/>
174
+ </g>
175
+ <path d="M119.492109,52.1739844 L67.8264844,52.1739844 L67.82625,52.1739844 L67.82625,0.507890625 C65.2642969,0.174375 62.6524219,0 60,0 C57.3471094,0 54.7357031,0.174375 52.1739844,0.507890625 L52.1739844,52.1735156 L52.1739844,52.17375 L0.507890625,52.17375 C0.174375,54.7357031 5.68434189e-14,57.3475781 5.68434189e-14,60 C5.68434189e-14,62.6528906 0.174375,65.2642969 0.507890625,67.8260156 L52.1735156,67.8260156 L52.17375,67.8260156 L52.17375,119.492109 C54.7357031,119.825625 57.3471094,120 60,120 C62.6524219,120 65.2642969,119.825859 67.8260156,119.492109 L67.8260156,67.8264844 L67.8260156,67.82625 L119.492109,67.82625 C119.825625,65.2642969 120,62.6528906 120,60 C120,57.3475781 119.825625,54.7357031 119.492109,52.1739844 Z" fill="#D80027"/>
176
+ <path d="M75.6522656,75.6522656 L102.426328,102.426562 C103.657734,101.195625 104.832422,99.9086719 105.953203,98.5746094 L83.0308594,75.6522656 L75.6522656,75.6522656 Z" fill="#D80027"/>
177
+ <path d="M44.3477344,75.6525 L44.3472656,75.6525 L17.5734375,102.426328 C18.804375,103.657734 20.0913281,104.832422 21.4253906,105.953203 L44.3477344,83.0303906 L44.3477344,75.6525 Z" fill="#D80027"/>
178
+ <path d="M44.3477344,44.3482031 L44.3477344,44.3477344 L17.5736719,17.5734375 C16.3422656,18.804375 15.1675781,20.0913281 14.0467969,21.4253906 L36.969375,44.3479687 L44.3477344,44.3482031 Z" fill="#D80027"/>
179
+ <path d="M75.6522656,44.3482031 L102.426562,17.5736719 C101.195625,16.3422656 99.9086719,15.1675781 98.5746094,14.0470312 L75.6522656,36.9696094 L75.6522656,44.3482031 Z" fill="#D80027"/>
180
+ </g>
181
+ <circle stroke-opacity="0.1" stroke="#000" cx="60" cy="60" r="60"/>
182
+ </g>
183
+ </svg>
184
+ `,nt=`<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 512 512"><mask id="SVGuywqVbel"><circle cx="256" cy="256" r="256" fill="#fff"/></mask><g mask="url(#SVGuywqVbel)"><path fill="#ffda44" d="m0 128l256-32l256 32v256l-256 32L0 384Z"/><path fill="#d80027" d="M0 0h512v128H0zm0 384h512v128H0z"/><g fill="#eee"><path d="M144 304h-16v-80h16zm128 0h16v-80h-16z"/><ellipse cx="208" cy="296" rx="48" ry="32"/></g><g fill="#d80027"><rect width="16" height="24" x="128" y="192" rx="8"/><rect width="16" height="24" x="272" y="192" rx="8"/><path d="M208 272v24a24 24 0 0 0 24 24a24 24 0 0 0 24-24v-24h-24z"/></g><rect width="32" height="16" x="120" y="208" fill="#ff9811" ry="8"/><rect width="32" height="16" x="264" y="208" fill="#ff9811" ry="8"/><rect width="32" height="16" x="120" y="304" fill="#ff9811" rx="8"/><rect width="32" height="16" x="264" y="304" fill="#ff9811" rx="8"/><path fill="#ff9811" d="M160 272v24c0 8 4 14 9 19l5-6l5 10a21 21 0 0 0 10 0l5-10l5 6c6-5 9-11 9-19v-24h-9l-5 8l-5-8h-10l-5 8l-5-8z"/><path fill="#d80027" d="M122 248a4 4 0 0 0-4 4a4 4 0 0 0 4 4h172a4 4 0 0 0 4-4a4 4 0 0 0-4-4zm0 24a4 4 0 0 0-4 4a4 4 0 0 0 4 4h28a4 4 0 0 0 4-4a4 4 0 0 0-4-4zm144 0a4 4 0 0 0-4 4a4 4 0 0 0 4 4h28a4 4 0 0 0 4-4a4 4 0 0 0-4-4z"/><path fill="#eee" d="M196 168c-7 0-13 5-15 11l-5-1c-9 0-16 7-16 16s7 16 16 16c7 0 13-4 15-11a16 16 0 0 0 17-4a16 16 0 0 0 17 4a16 16 0 1 0 10-20a16 16 0 0 0-27-5q-4.5-6-12-6m0 8c5 0 8 4 8 8c0 5-3 8-8 8c-4 0-8-3-8-8c0-4 4-8 8-8m24 0c5 0 8 4 8 8c0 5-3 8-8 8c-4 0-8-3-8-8c0-4 4-8 8-8m-44 10l4 1l4 8c0 4-4 7-8 7s-8-3-8-8c0-4 4-8 8-8m64 0c5 0 8 4 8 8c0 5-3 8-8 8c-4 0-8-3-8-7l4-8z"/><path fill="none" d="M220 284v12c0 7 5 12 12 12s12-5 12-12v-12z"/><path fill="#ff9811" d="M200 160h16v32h-16z"/><path fill="#eee" d="M208 224h48v48h-48z"/><path fill="#d80027" d="m248 208l-8 8h-64l-8-8c0-13 18-24 40-24s40 11 40 24m-88 16h48v48h-48z"/><rect width="20" height="32" x="222" y="232" fill="#d80027" rx="10" ry="10"/><path fill="#ff9811" d="M168 232v8h8v16h-8v8h32v-8h-8v-16h8v-8zm8-16h64v8h-64z"/><g fill="#ffda44"><circle cx="186" cy="202" r="6"/><circle cx="208" cy="202" r="6"/><circle cx="230" cy="202" r="6"/></g><path fill="#d80027" d="M169 272v43a24 24 0 0 0 10 4v-47zm20 0v47a24 24 0 0 0 10-4v-43z"/><g fill="#338af3"><circle cx="208" cy="272" r="16"/><rect width="32" height="16" x="264" y="320" ry="8"/><rect width="32" height="16" x="120" y="320" ry="8"/></g></g></svg>`,rt=`<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 512 512"><mask id="SVGuywqVbel"><circle cx="256" cy="256" r="256" fill="#fff"/></mask><g mask="url(#SVGuywqVbel)"><path fill="#eee" d="M167 0h178l25.9 252.3L345 512H167l-29.8-253.4z"/><path fill="#0052b4" d="M0 0h167v512H0z"/><path fill="#d80027" d="M345 0h167v512H345z"/></g></svg>`,it=`<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 512 512"><mask id="SVGuywqVbel"><circle cx="256" cy="256" r="256" fill="#fff"/></mask><g mask="url(#SVGuywqVbel)"><path fill="#eee" d="M167 0h178l25.9 252.3L345 512H167l-29.8-253.4z"/><path fill="#6da544" d="M0 0h167v512H0z"/><path fill="#d80027" d="M345 0h167v512H345z"/></g></svg>`,at=`<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 512 512"><mask id="SVGuywqVbel"><circle cx="256" cy="256" r="256" fill="#fff"/></mask><g mask="url(#SVGuywqVbel)"><path fill="#eee" d="m0 167l253.8-19.3L512 167v178l-254.9 32.3L0 345z"/><path fill="#a2001d" d="M0 0h512v167H0z"/><path fill="#0052b4" d="M0 345h512v167H0z"/></g></svg>`,ot=`<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 512 512"><mask id="SVGuywqVbel"><circle cx="256" cy="256" r="256" fill="#fff"/></mask><g mask="url(#SVGuywqVbel)"><path fill="#6da544" d="M0 512h167l37.9-260.3L167 0H0z"/><path fill="#d80027" d="M512 0H167v512h345z"/><circle cx="167" cy="256" r="89" fill="#ffda44"/><path fill="#d80027" d="M116.9 211.5V267a50 50 0 1 0 100.1 0v-55.6H117z"/><path fill="#eee" d="M167 283.8c-9.2 0-16.7-7.5-16.7-16.7V245h33.4v22c0 9.2-7.5 16.7-16.7 16.7z"/></g></svg>`,st=`<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 512 512"><mask id="SVGuywqVbel"><circle cx="256" cy="256" r="256" fill="#fff"/></mask><g mask="url(#SVGuywqVbel)"><path fill="#0052b4" d="M512 170v172l-256 32L0 342V170l256-32z"/><path fill="#eee" d="M512 0v170H0V0Z"/><path fill="#d80027" d="M512 342v170H0V342Z"/></g></svg>`,ct=`<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 120 120">
185
+ <g id="ZH" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
186
+ <g id="china" fill-rule="nonzero">
187
+ <circle id="Oval" fill="#D80027" cx="60" cy="60" r="60"/>
188
+ <g id="stars" transform="translate(10.781250, 26.718750)" fill="#FFDA44">
189
+ <polygon points="22.0546875 9.796875 27.234375 25.734375 43.9921875 25.734375 30.4453125 35.6015625 35.625 51.5390625 22.0546875 41.6953125 8.484375 51.5390625 13.6875 35.6015625 0.1171875 25.734375 16.875 25.734375"/>
190
+ <polygon points="60.3515625 66.2109375 56.390625 61.3359375 50.53125 63.609375 53.9296875 58.3359375 49.96875 53.4375 56.0390625 55.0546875 59.4609375 49.78125 59.7890625 56.0625 65.8828125 57.6796875 60 59.9296875"/>
191
+ <polygon points="68.2265625 51.9140625 70.1015625 45.9140625 64.96875 42.28125 71.25 42.1875 73.1015625 36.1875 75.140625 42.140625 81.421875 42.0703125 76.3828125 45.8203125 78.3984375 51.7734375 73.265625 48.140625"/>
192
+ <polygon points="78.84375 17.3203125 76.078125 22.96875 80.578125 27.3515625 74.3671875 26.4609375 71.6015625 32.0859375 70.5234375 25.8984375 64.2890625 25.0078125 69.8671875 22.078125 68.7890625 15.8671875 73.2890625 20.25"/>
193
+ <polygon points="60.515625 0.2109375 60.046875 6.46875 65.8828125 8.8359375 59.765625 10.3359375 59.3203125 16.6171875 56.015625 11.2734375 49.8984375 12.7734375 53.953125 7.96875 50.625 2.6484375 56.4609375 5.015625"/>
194
+ </g>
195
+ </g>
196
+ <circle stroke-opacity="0.1" stroke="#000000" cx="60" cy="60" r="60"/>
197
+ </g>
198
+ </svg>
199
+ `;function lt(e,t){return e.replace(/id="([^"]+)"/g,`id="${t}-$1"`).replace(/url\(#([^)]+)\)/g,`url(#${t}-$1)`)}function ut(e){return{viewBox:e.match(/viewBox="([^"]+)"/)?.[1]??`0 0 512 512`,inner:e.replace(/^[\s\S]*?<svg[^>]*>/,``).replace(/<\/svg>\s*$/,``)}}function $({source:n,title:r,...i}){let a=(0,e.useId)().replace(/[^a-zA-Z0-9]/g,``),{viewBox:o,inner:s}=(0,e.useMemo)(()=>ut(lt(n,a)),[n,a]);return(0,t.jsx)(m,{viewBox:o,title:r,...i,children:(0,t.jsx)(`g`,{dangerouslySetInnerHTML:{__html:s}})})}function dt(e){return(0,t.jsx)($,{source:tt,...e})}function ft(e){return(0,t.jsx)($,{source:rt,...e})}function pt(e){return(0,t.jsx)($,{source:st,...e})}function mt(e){return(0,t.jsx)($,{source:et,...e})}function ht(e){return(0,t.jsx)($,{source:it,...e})}function gt(e){return(0,t.jsx)($,{source:nt,...e})}function _t(e){return(0,t.jsx)($,{source:ot,...e})}function vt(e){return(0,t.jsx)($,{source:at,...e})}function yt(e){return(0,t.jsx)($,{source:ct,...e})}var bt=w((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(`path`,{d:`M3 9.5 12 4l9 5.5`}),(0,t.jsx)(`path`,{d:`M4 9.5h16`}),(0,t.jsx)(`path`,{d:`M6 9.5v8M10 9.5v8M14 9.5v8M18 9.5v8`}),(0,t.jsx)(`path`,{d:`M3.5 20.5h17`})]}),`Exchange`),xt=w((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(`path`,{d:`M9 3v5M15 3v5`}),(0,t.jsx)(`path`,{d:`M6 8h12v3a6 6 0 0 1-12 0z`}),(0,t.jsx)(`path`,{d:`M12 17v4`})]}),`Integration`),St=w((0,t.jsx)(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M5.472 6L2 12l3.472 6H7.5l-3.472-6L7.5 6zM12 13.5a1.5 1.5 0 1 0 0-3a1.5 1.5 0 0 0 0 3M22 12l-3.472-6H16.5l3.472 6l-3.472 6h2.028zM8.315 8L6 12l2.315 4h2.028l-2.315-4l2.314-4zm10.028 4l-2.315-4H14l2.315 4L14 16h2.028z`}),`News`,{kind:`fill`}),Ct=w((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(`rect`,{x:`3.5`,y:`4`,width:`17`,height:`7`,rx:`1.5`}),(0,t.jsx)(`rect`,{x:`3.5`,y:`13`,width:`17`,height:`7`,rx:`1.5`}),(0,t.jsx)(`path`,{d:`M7 7.5h.01M7 16.5h.01`})]}),`System`),wt=w((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(`rect`,{x:`3`,y:`5.5`,width:`18`,height:`13`,rx:`2`}),(0,t.jsx)(`path`,{d:`m4 7 8 5.5L20 7`})]}),`Messages`),Tt=w((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(`circle`,{cx:`12`,cy:`12`,r:`9`}),(0,t.jsx)(`path`,{d:`M9.2 9.3a2.8 2.8 0 0 1 5.4 1c0 1.9-2.6 2.2-2.6 3.7`}),(0,t.jsx)(`path`,{d:`M12 17.3h.01`})]}),`Help`),Et=w((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(`path`,{d:`M18 8.5a6 6 0 0 0-12 0c0 6.5-2.5 8.5-2.5 8.5h17S18 15 18 8.5`}),(0,t.jsx)(`path`,{d:`M13.7 20.5a2 2 0 0 1-3.4 0`})]}),`Bell`),Dt=w((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(`path`,{d:`M19 20.5v-1.8a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v1.8`}),(0,t.jsx)(`circle`,{cx:`12`,cy:`7.5`,r:`3.8`})]}),`User`),Ot=w((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(`circle`,{cx:`12`,cy:`12`,r:`8.5`}),(0,t.jsx)(`path`,{d:`M12 11v5M12 8h.01`})]}),`InfoLabel`),kt=w((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(`circle`,{cx:`12`,cy:`12`,r:`8.5`}),(0,t.jsx)(`path`,{d:`M8.2 12.3l2.6 2.6 5-5.2`})]}),`OkLabel`),At=w((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(`path`,{d:`M12 4.2l8.2 14.6H3.8L12 4.2z`}),(0,t.jsx)(`path`,{d:`M12 10v4M12 16.6h.01`})]}),`WarnLabel`),jt=w((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(`circle`,{cx:`12`,cy:`12`,r:`8.5`}),(0,t.jsx)(`path`,{d:`M9 9l6 6M15 9l-6 6`})]}),`ErrorLabel`);exports.ArrowDropDownIcon=ie,exports.ArrowDropUpIcon=ae,exports.Badge=ee,exports.BellIcon=Et,exports.Button=_,exports.Card=x,exports.CardDot=S,exports.CheckIcon=k,exports.Checkbox=oe,exports.ChevronDownIcon=A,exports.CloseIcon=T,exports.ConnectionNcIcon=Ye,exports.ConnectionOhsIcon=Je,exports.ConnectionUiKitIcon=Xe,exports.Dropdown=Se,exports.ErrorLabelIcon=jt,exports.ExchangeIcon=bt,exports.EyeIcon=D,exports.EyeSlashIcon=O,exports.Filter=De,exports.FlagDeIcon=mt,exports.FlagEnIcon=dt,exports.FlagEsIcon=gt,exports.FlagFrIcon=ft,exports.FlagItIcon=ht,exports.FlagNlIcon=vt,exports.FlagPtIcon=_t,exports.FlagRuIcon=pt,exports.FlagZhIcon=yt,exports.HelpIcon=Tt,exports.ICON_COLOR_CSS=u,exports.ICON_SIZE_PX=l,exports.InfoLabelIcon=Ot,exports.Input=pe,exports.IntegrationIcon=xt,exports.LoadingIcon=L,exports.LogoutIcon=N,exports.MessagesIcon=wt,exports.MinusIcon=ne,exports.MoonIcon=M,exports.NewsIcon=St,exports.OkLabelIcon=kt,exports.Panel=y,exports.PencilIcon=P,exports.PlusIcon=te,exports.PowerIcon=re,exports.Radio=W,exports.RadioGroup=K,exports.RefreshIcon=I,exports.ScinverseAvatar=qe,exports.ScinverseIcon=Ge,exports.ScinverseLogo=Ke,exports.SearchBar=he,exports.SearchIcon=E,exports.ServiceNcIcon=Qe,exports.ServiceOhsIcon=Ze,exports.ServiceUiKitIcon=$e,exports.SettingsIcon=F,exports.SunIcon=j,exports.SvgIcon=m,exports.Switcher=ve,exports.SystemIcon=Ct,exports.TextArea=ge,exports.ThemeProvider=s,exports.Tip=H,exports.UserIcon=Dt,exports.WarnLabelIcon=At,exports.createSvgIcon=w,exports.resolveIconColor=p,exports.resolveIconSize=f,exports.useTheme=c;
200
+ //# sourceMappingURL=index.cjs.map