{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:lenis@1.1.9/dist/lenis.mjs", "ssg:https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js", "ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/Utils-QTIc.js@hDBsItohjMEOACix8wDv", "ssg:https://framerusercontent.com/modules/o7kxMNcq1QFbNlxER8ZO/mGYCpj2iAc99jKtNOx5M/CursorImageTrail_Prod.js", "ssg:https://framerusercontent.com/modules/x8t6WOzcJuiFYc5xToCb/Qy6aHfp6KlrVCXmvmbe9/KTu2LsFFR.js", "ssg:https://framerusercontent.com/modules/LEm8ABXEoxpz6ptdGQrD/U9UatooMG02rYZOrA08B/immjczmkC.js", "ssg:https://framerusercontent.com/modules/OA4a0rnwv6uPJzdqRI8Z/j0fBLJCInmZjRJY1cp4d/Ifuoa3tNY.js"],
  "sourcesContent": ["function clamp(t,i,e){return Math.max(t,Math.min(i,e))}class Animate{constructor(){this.isRunning=!1,this.value=0,this.from=0,this.to=0,this.duration=0,this.currentTime=0}advance(t){var i;if(!this.isRunning)return;let e=!1;if(this.duration&&this.easing){this.currentTime+=t;const i=clamp(0,this.currentTime/this.duration,1);e=i>=1;const s=e?1:this.easing(i);this.value=this.from+(this.to-this.from)*s}else this.lerp?(this.value=function damp(t,i,e,s){return function lerp(t,i,e){return(1-e)*t+e*i}(t,i,1-Math.exp(-e*s))}(this.value,this.to,60*this.lerp,t),Math.round(this.value)===this.to&&(this.value=this.to,e=!0)):(this.value=this.to,e=!0);e&&this.stop(),null===(i=this.onUpdate)||void 0===i||i.call(this,this.value,e)}stop(){this.isRunning=!1}fromTo(t,i,{lerp:e,duration:s,easing:o,onStart:n,onUpdate:l}){this.from=this.value=t,this.to=i,this.lerp=e,this.duration=s,this.easing=o,this.currentTime=0,this.isRunning=!0,null==n||n(),this.onUpdate=l}}class Dimensions{constructor({wrapper:t,content:i,autoResize:e=!0,debounce:s=250}={}){this.width=0,this.height=0,this.scrollWidth=0,this.scrollHeight=0,this.resize=()=>{this.onWrapperResize(),this.onContentResize()},this.onWrapperResize=()=>{this.wrapper===window?(this.width=window.innerWidth,this.height=window.innerHeight):this.wrapper instanceof HTMLElement&&(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)},this.onContentResize=()=>{this.wrapper===window?(this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth):this.wrapper instanceof HTMLElement&&(this.scrollHeight=this.wrapper.scrollHeight,this.scrollWidth=this.wrapper.scrollWidth)},this.wrapper=t,this.content=i,e&&(this.debouncedResize=function debounce(t,i){let e;return function(){let s=arguments,o=this;clearTimeout(e),e=setTimeout((function(){t.apply(o,s)}),i)}}(this.resize,s),this.wrapper===window?window.addEventListener(\"resize\",this.debouncedResize,!1):(this.wrapperResizeObserver=new ResizeObserver(this.debouncedResize),this.wrapperResizeObserver.observe(this.wrapper)),this.contentResizeObserver=new ResizeObserver(this.debouncedResize),this.contentResizeObserver.observe(this.content)),this.resize()}destroy(){var t,i;null===(t=this.wrapperResizeObserver)||void 0===t||t.disconnect(),null===(i=this.contentResizeObserver)||void 0===i||i.disconnect(),window.removeEventListener(\"resize\",this.debouncedResize,!1)}get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}}class Emitter{constructor(){this.events={}}emit(t,...i){let e=this.events[t]||[];for(let t=0,s=e.length;t<s;t++)e[t](...i)}on(t,i){var e;return(null===(e=this.events[t])||void 0===e?void 0:e.push(i))||(this.events[t]=[i]),()=>{var e;this.events[t]=null===(e=this.events[t])||void 0===e?void 0:e.filter((t=>i!==t))}}off(t,i){var e;this.events[t]=null===(e=this.events[t])||void 0===e?void 0:e.filter((t=>i!==t))}destroy(){this.events={}}}const t=100/6;class VirtualScroll{constructor(i,{wheelMultiplier:e=1,touchMultiplier:s=1}){this.lastDelta={x:0,y:0},this.windowWidth=0,this.windowHeight=0,this.onTouchStart=t=>{const{clientX:i,clientY:e}=t.targetTouches?t.targetTouches[0]:t;this.touchStart.x=i,this.touchStart.y=e,this.lastDelta={x:0,y:0},this.emitter.emit(\"scroll\",{deltaX:0,deltaY:0,event:t})},this.onTouchMove=t=>{var i,e,s,o;const{clientX:n,clientY:l}=t.targetTouches?t.targetTouches[0]:t,r=-(n-(null!==(e=null===(i=this.touchStart)||void 0===i?void 0:i.x)&&void 0!==e?e:0))*this.touchMultiplier,h=-(l-(null!==(o=null===(s=this.touchStart)||void 0===s?void 0:s.y)&&void 0!==o?o:0))*this.touchMultiplier;this.touchStart.x=n,this.touchStart.y=l,this.lastDelta={x:r,y:h},this.emitter.emit(\"scroll\",{deltaX:r,deltaY:h,event:t})},this.onTouchEnd=t=>{this.emitter.emit(\"scroll\",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:t})},this.onWheel=i=>{let{deltaX:e,deltaY:s,deltaMode:o}=i;e*=1===o?t:2===o?this.windowWidth:1,s*=1===o?t:2===o?this.windowHeight:1,e*=this.wheelMultiplier,s*=this.wheelMultiplier,this.emitter.emit(\"scroll\",{deltaX:e,deltaY:s,event:i})},this.onWindowResize=()=>{this.windowWidth=window.innerWidth,this.windowHeight=window.innerHeight},this.element=i,this.wheelMultiplier=e,this.touchMultiplier=s,this.touchStart={x:null,y:null},this.emitter=new Emitter,window.addEventListener(\"resize\",this.onWindowResize,!1),this.onWindowResize(),this.element.addEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.addEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.addEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.addEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}on(t,i){return this.emitter.on(t,i)}destroy(){this.emitter.destroy(),window.removeEventListener(\"resize\",this.onWindowResize,!1),this.element.removeEventListener(\"wheel\",this.onWheel),this.element.removeEventListener(\"touchstart\",this.onTouchStart),this.element.removeEventListener(\"touchmove\",this.onTouchMove),this.element.removeEventListener(\"touchend\",this.onTouchEnd)}}class Lenis{constructor({wrapper:t=window,content:i=document.documentElement,wheelEventsTarget:e=t,eventsTarget:s=e,smoothWheel:o=!0,syncTouch:n=!1,syncTouchLerp:l=.075,touchInertiaMultiplier:r=35,duration:h,easing:a=(t=>Math.min(1,1.001-Math.pow(2,-10*t))),lerp:c=.1,infinite:d=!1,orientation:u=\"vertical\",gestureOrientation:p=\"vertical\",touchMultiplier:m=1,wheelMultiplier:v=1,autoResize:g=!0,prevent:w,virtualScroll:S,__experimental__naiveDimensions:f=!1}={}){this.__isScrolling=!1,this.__isStopped=!1,this.__isLocked=!1,this.userData={},this.lastVelocity=0,this.velocity=0,this.direction=0,this.onPointerDown=t=>{1===t.button&&this.reset()},this.onVirtualScroll=t=>{if(\"function\"==typeof this.options.virtualScroll&&!1===this.options.virtualScroll(t))return;const{deltaX:i,deltaY:e,event:s}=t;if(this.emitter.emit(\"virtual-scroll\",{deltaX:i,deltaY:e,event:s}),s.ctrlKey)return;const o=s.type.includes(\"touch\"),n=s.type.includes(\"wheel\");this.isTouching=\"touchstart\"===s.type||\"touchmove\"===s.type;if(this.options.syncTouch&&o&&\"touchstart\"===s.type&&!this.isStopped&&!this.isLocked)return void this.reset();const l=0===i&&0===e,r=\"vertical\"===this.options.gestureOrientation&&0===e||\"horizontal\"===this.options.gestureOrientation&&0===i;if(l||r)return;let h=s.composedPath();h=h.slice(0,h.indexOf(this.rootElement));const a=this.options.prevent;if(h.find((t=>{var i,e,s,l,r;return t instanceof Element&&(\"function\"==typeof a&&(null==a?void 0:a(t))||(null===(i=t.hasAttribute)||void 0===i?void 0:i.call(t,\"data-lenis-prevent\"))||o&&(null===(e=t.hasAttribute)||void 0===e?void 0:e.call(t,\"data-lenis-prevent-touch\"))||n&&(null===(s=t.hasAttribute)||void 0===s?void 0:s.call(t,\"data-lenis-prevent-wheel\"))||(null===(l=t.classList)||void 0===l?void 0:l.contains(\"lenis\"))&&!(null===(r=t.classList)||void 0===r?void 0:r.contains(\"lenis-stopped\")))})))return;if(this.isStopped||this.isLocked)return void s.preventDefault();if(!(this.options.syncTouch&&o||this.options.smoothWheel&&n))return this.isScrolling=\"native\",void this.animate.stop();s.preventDefault();let c=e;\"both\"===this.options.gestureOrientation?c=Math.abs(e)>Math.abs(i)?e:i:\"horizontal\"===this.options.gestureOrientation&&(c=i);const d=o&&this.options.syncTouch,u=o&&\"touchend\"===s.type&&Math.abs(c)>5;u&&(c=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+c,Object.assign({programmatic:!1},d?{lerp:u?this.options.syncTouchLerp:1}:{lerp:this.options.lerp,duration:this.options.duration,easing:this.options.easing}))},this.onNativeScroll=()=>{if(clearTimeout(this.__resetVelocityTimeout),delete this.__resetVelocityTimeout,this.__preventNextNativeScrollEvent)delete this.__preventNextNativeScrollEvent;else if(!1===this.isScrolling||\"native\"===this.isScrolling){const t=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity,this.velocity=this.animatedScroll-t,this.direction=Math.sign(this.animatedScroll-t),this.isScrolling=\"native\",this.emit(),0!==this.velocity&&(this.__resetVelocityTimeout=setTimeout((()=>{this.lastVelocity=this.velocity,this.velocity=0,this.isScrolling=!1,this.emit()}),400))}},window.lenisVersion=\"1.1.9\",t&&t!==document.documentElement&&t!==document.body||(t=window),this.options={wrapper:t,content:i,wheelEventsTarget:e,eventsTarget:s,smoothWheel:o,syncTouch:n,syncTouchLerp:l,touchInertiaMultiplier:r,duration:h,easing:a,lerp:c,infinite:d,gestureOrientation:p,orientation:u,touchMultiplier:m,wheelMultiplier:v,autoResize:g,prevent:w,virtualScroll:S,__experimental__naiveDimensions:f},this.animate=new Animate,this.emitter=new Emitter,this.dimensions=new Dimensions({wrapper:t,content:i,autoResize:g}),this.updateClassName(),this.userData={},this.time=0,this.velocity=this.lastVelocity=0,this.isLocked=!1,this.isStopped=!1,this.isScrolling=!1,this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener(\"scroll\",this.onNativeScroll,!1),this.options.wrapper.addEventListener(\"pointerdown\",this.onPointerDown,!1),this.virtualScroll=new VirtualScroll(s,{touchMultiplier:m,wheelMultiplier:v}),this.virtualScroll.on(\"scroll\",this.onVirtualScroll)}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener(\"scroll\",this.onNativeScroll,!1),this.options.wrapper.removeEventListener(\"pointerdown\",this.onPointerDown,!1),this.virtualScroll.destroy(),this.dimensions.destroy(),this.cleanUpClassName()}on(t,i){return this.emitter.on(t,i)}off(t,i){return this.emitter.off(t,i)}setScroll(t){this.isHorizontal?this.rootElement.scrollLeft=t:this.rootElement.scrollTop=t}resize(){this.dimensions.resize()}emit(){this.emitter.emit(\"scroll\",this)}reset(){this.isLocked=!1,this.isScrolling=!1,this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity=0,this.animate.stop()}start(){this.isStopped&&(this.isStopped=!1,this.reset())}stop(){this.isStopped||(this.isStopped=!0,this.animate.stop(),this.reset())}raf(t){const i=t-(this.time||t);this.time=t,this.animate.advance(.001*i)}scrollTo(t,{offset:i=0,immediate:e=!1,lock:s=!1,duration:o=this.options.duration,easing:n=this.options.easing,lerp:l=this.options.lerp,onStart:r,onComplete:h,force:a=!1,programmatic:c=!0,userData:d={}}={}){if(!this.isStopped&&!this.isLocked||a){if(\"string\"==typeof t&&[\"top\",\"left\",\"start\"].includes(t))t=0;else if(\"string\"==typeof t&&[\"bottom\",\"right\",\"end\"].includes(t))t=this.limit;else{let e;if(\"string\"==typeof t?e=document.querySelector(t):t instanceof HTMLElement&&(null==t?void 0:t.nodeType)&&(e=t),e){if(this.options.wrapper!==window){const t=this.rootElement.getBoundingClientRect();i-=this.isHorizontal?t.left:t.top}const s=e.getBoundingClientRect();t=(this.isHorizontal?s.left:s.top)+this.animatedScroll}}if(\"number\"==typeof t&&(t+=i,t=Math.round(t),this.options.infinite?c&&(this.targetScroll=this.animatedScroll=this.scroll):t=clamp(0,t,this.limit),t!==this.targetScroll)){if(this.userData=d,e)return this.animatedScroll=this.targetScroll=t,this.setScroll(this.scroll),this.reset(),this.preventNextNativeScrollEvent(),this.emit(),null==h||h(this),void(this.userData={});c||(this.targetScroll=t),this.animate.fromTo(this.animatedScroll,t,{duration:o,easing:n,lerp:l,onStart:()=>{s&&(this.isLocked=!0),this.isScrolling=\"smooth\",null==r||r(this)},onUpdate:(t,i)=>{this.isScrolling=\"smooth\",this.lastVelocity=this.velocity,this.velocity=t-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=t,this.setScroll(this.scroll),c&&(this.targetScroll=t),i||this.emit(),i&&(this.reset(),this.emit(),null==h||h(this),this.userData={},this.preventNextNativeScrollEvent())}})}}}preventNextNativeScrollEvent(){this.__preventNextNativeScrollEvent=!0,requestAnimationFrame((()=>{delete this.__preventNextNativeScrollEvent}))}get rootElement(){return this.options.wrapper===window?document.documentElement:this.options.wrapper}get limit(){return this.options.__experimental__naiveDimensions?this.isHorizontal?this.rootElement.scrollWidth-this.rootElement.clientWidth:this.rootElement.scrollHeight-this.rootElement.clientHeight:this.dimensions.limit[this.isHorizontal?\"x\":\"y\"]}get isHorizontal(){return\"horizontal\"===this.options.orientation}get actualScroll(){return this.isHorizontal?this.rootElement.scrollLeft:this.rootElement.scrollTop}get scroll(){return this.options.infinite?function modulo(t,i){return(t%i+i)%i}(this.animatedScroll,this.limit):this.animatedScroll}get progress(){return 0===this.limit?1:this.scroll/this.limit}get isScrolling(){return this.__isScrolling}set isScrolling(t){this.__isScrolling!==t&&(this.__isScrolling=t,this.updateClassName())}get isStopped(){return this.__isStopped}set isStopped(t){this.__isStopped!==t&&(this.__isStopped=t,this.updateClassName())}get isLocked(){return this.__isLocked}set isLocked(t){this.__isLocked!==t&&(this.__isLocked=t,this.updateClassName())}get isSmooth(){return\"smooth\"===this.isScrolling}get className(){let t=\"lenis\";return this.isStopped&&(t+=\" lenis-stopped\"),this.isLocked&&(t+=\" lenis-locked\"),this.isScrolling&&(t+=\" lenis-scrolling\"),\"smooth\"===this.isScrolling&&(t+=\" lenis-smooth\"),t}updateClassName(){this.cleanUpClassName(),this.rootElement.className=`${this.rootElement.className} ${this.className}`.trim()}cleanUpClassName(){this.rootElement.className=this.rootElement.className.replace(/lenis(-\\w+)?/g,\"\").trim()}}export{Lenis as default};\n//# sourceMappingURL=lenis.mjs.map\n", "import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import Lenis from\"lenis\";// import Lenis from \"@studio-freight/lenis\"\nimport{useEffect,useRef}from\"react\";/**\n * @framerDisableUnlink\n */export default function SmoothScroll(props){const{intensity}=props;const lenis=useRef(null);useEffect(()=>{if(lenis.current)lenis.current.scrollTo(0,{immediate:true});},[lenis]);// Check Overlay overflow\nuseEffect(()=>{const overlayElement=document.getElementById(\"overlay\");if(overlayElement){const checkOverflow=()=>{const htmlStyle=window.getComputedStyle(document.documentElement);const isOverflowHidden=htmlStyle.overflow===\"hidden\";if(isOverflowHidden){overlayElement.setAttribute(\"data-lenis-prevent\",\"true\");}};// Set up MutationObserver for the html element\nconst htmlObserver=new MutationObserver(mutations=>{for(const mutation of mutations){if(mutation.type===\"attributes\"&&mutation.attributeName===\"style\"){checkOverflow();}}});// Observe the html element for style changes\nhtmlObserver.observe(document.documentElement,{attributes:true,attributeFilter:[\"style\"]});// Initial check\ncheckOverflow();return()=>{htmlObserver.disconnect();};}},[]);// useEffect(() => {\n//     const overlayElement = document.getElementById(\"overlay\")\n//     if (overlayElement) {\n//         const handleMutation = (mutationsList, observer) => {\n//             for (const mutation of mutationsList) {\n//                 if (\n//                     mutation.type === \"childList\" &&\n//                     overlayElement.children.length > 0\n//                 ) {\n//                     // Check if the html tag has the style \"overflow: hidden;\"\n//                     const htmlElement = document.documentElement\n//                     console.log(htmlElement, \"htmlElement\")\n//                     const computedStyle =\n//                         window.getComputedStyle(htmlElement)\n//                     console.log(\"computedStyle\", computedStyle)\n//                     const isOverflowHidden =\n//                         computedStyle.overflow === \"hidden\"\n//                     console.log(\"isOverflowHidden\", isOverflowHidden)\n//                     if (isOverflowHidden) {\n//                         overlayElement.setAttribute(\n//                             \"data-lenis-prevent\",\n//                             \"true\"\n//                         )\n//                     }\n//                 }\n//             }\n//         }\n//         const observer = new MutationObserver(handleMutation)\n//         observer.observe(overlayElement, {\n//             childList: true,\n//             attributes: true,\n//             subtree: true,\n//         })\n//         return () => observer.disconnect()\n//     }\n// }, [])\nuseEffect(()=>{const allElements=document.getElementsByTagName(\"*\");for(let i=0;i<allElements.length;i++){const element=allElements[i];const computedStyle=window.getComputedStyle(element);if(computedStyle.getPropertyValue(\"overflow\")===\"auto\"){element.setAttribute(\"data-lenis-prevent\",\"true\");}}},[]);useEffect(()=>{lenis.current=new Lenis({duration:intensity/10});const raf=time=>{if(lenis.current){lenis.current.raf(time);requestAnimationFrame(raf);}};requestAnimationFrame(raf);return()=>{if(lenis.current){lenis.current.destroy();lenis.current=null;}};},[]);useEffect(()=>{const styleElement=document.createElement(\"style\");styleElement.textContent=`\nhtml.lenis {\nheight: auto;\n}\n.lenis.lenis-smooth {\n\nscroll-behavior: auto !important;\n}\n.lenis.lenis-smooth [data-lenis-prevent] {\n\noverscroll-behavior: contain;\n}\n.lenis.lenis-stopped {\n\noverflow: hidden;\n}\n.lenis.lenis-scrolling iframe {\n\npointer-events: none;\n}\n`;document.head.appendChild(styleElement);return()=>{document.head.removeChild(styleElement);};},[]);//https://github.com/darkroomengineering/lenis?tab=readme-ov-file#anchor-links\nuseEffect(()=>{// Get all anchor links and store click handlers with their targets\nconst anchorLinksData=[...document.querySelectorAll(\"a[href]\")].filter(anchor=>anchor.href.includes(\"#\")).map(anchor=>{const href=`#${anchor.href.split(\"#\").pop()}`;const decodedHref=decodeURIComponent(href);let scrollMargin=0;const targetElement=document.querySelector(decodedHref);if(targetElement){scrollMargin=parseInt(window.getComputedStyle(targetElement).scrollMarginTop);}return{href,scrollMargin,anchorElement:anchor};});const handleClick=(e,href,scrollMargin)=>{e.preventDefault();lenis.current.scrollTo(href,{offset:-scrollMargin});};const handlers=anchorLinksData.map(({href,scrollMargin})=>e=>handleClick(e,href,scrollMargin));anchorLinksData.forEach(({anchorElement},index)=>{anchorElement.addEventListener(\"click\",handlers[index]);});return()=>{anchorLinksData.forEach(({anchorElement},index)=>{anchorElement.removeEventListener(\"click\",handlers[index]);});};},[lenis]);return /*#__PURE__*/_jsx(_Fragment,{});}SmoothScroll.displayName=\"Smooth Scroll\";addPropertyControls(SmoothScroll,{intensity:{title:\"Intensity\",type:ControlType.Number,defaultValue:10,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SmoothScroll\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SmoothScroll_Prod.map", "import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{ControlType}from\"framer\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";export const updateChildren=(children,properties)=>{return[{...children,props:{...children.props,children:{...children.props.children,props:{...children.props.children.props,children:{...children.props.children.props.children,props:{...children.props.children.props.children.props,...properties}}}}}}];};export const SettingsMessage=({title,description,containerStyle})=>{return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",alignItems:\"center\",textAlign:\"center\",justifyContent:\"center\",backgroundColor:\"rgba(136, 85, 255, 0.1)\",overflow:\"hidden\",...containerStyle},children:[/*#__PURE__*/_jsx(\"span\",{role:\"img\",\"aria-label\":\"icon\",style:{fontSize:\"32px\"},children:\"\u2728\"}),/*#__PURE__*/_jsxs(\"div\",{style:{maxWidth:\"240px\"},children:[/*#__PURE__*/_jsx(\"h1\",{style:{fontSize:11,color:\"#96F\",fontWeight:600},children:title}),/*#__PURE__*/_jsx(\"p\",{style:{fontSize:11,color:\"rgba(153, 102, 255, 0.7)\",lineHeight:1.5},children:description})]})]});};export const getBorder=border=>{if(!border)return{border:\"none\"};const{width,color,style}=border;return{borderWidth:width,borderColor:color,borderStyle:style};};export const borderProperty=(title=\"Border\",width=\"0px\",color=\"#fff\")=>({title,type:ControlType.Object,controls:{width:{title:\"Width\",type:ControlType.Padding,defaultValue:width},color:{title:\"Color\",type:ControlType.Color,defaultValue:color},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}});export const getBoxShadow=property=>{const{x,y,blur,color}=property.shadow;return`${x}px ${y}px ${blur}px ${color}`;};export const shadowProperty={type:ControlType.Object,controls:{color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#bfbfbf\"},x:{title:\"X\",type:ControlType.Number,defaultValue:0,min:-100,max:100},y:{title:\"Y\",type:ControlType.Number,defaultValue:0,min:-100,max:100},blur:{title:\"Blur\",type:ControlType.Number,defaultValue:0,min:0,max:100}}};export const heightProperty={height:{type:ControlType.Enum,defaultValue:\"auto\",displaySegmentedControl:true,options:[\"auto\",\"fixed\"],optionTitles:[\"Auto\",\"Fixed\"]},heightNumber:{title:\" \",type:ControlType.Number,defaultValue:50,hidden(props){return props.height===\"auto\";}}};export const getHeight=property=>{if(property.height===\"auto\"){return property.height;}else{return`${property.heightNumber}px`;}};export const getPageQueryParam=()=>{const urlParams=new URLSearchParams(window.location.search);const pageParam=urlParams.get(\"page\");return pageParam?parseInt(pageParam,10):1;};export const updatePageQueryParam=newPage=>{const url=new URL(window.location.href);url.searchParams.set(\"page\",newPage);window.history.replaceState({},\"\",url.toString());};export const useStore=createStore({initialLimit:undefined,initialOffset:undefined,limit:undefined,offset:undefined,totalItems:undefined,page:1,searchQuery:\"\",totalPages:undefined});export const scrollToTop=(withScroll,scrollTop,scrollBehavior)=>{if(withScroll){window.scrollTo({top:scrollTop,behavior:scrollBehavior});}};\nexport const __FramerMetadata__ = {\"exports\":{\"heightProperty\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"updatePageQueryParam\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useStore\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getHeight\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBoxShadow\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"updateChildren\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"borderProperty\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"shadowProperty\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBorder\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SettingsMessage\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getPageQueryParam\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"scrollToTop\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{Frame,addPropertyControls,ControlType}from\"framer\";import{motion,AnimatePresence}from\"framer-motion\";import{SettingsMessage}from\"https://framer.com/m/Utils-QTIc.js@hDBsItohjMEOACix8wDv\";// Custom hook for preloading images\nfunction useImagePreloader(imageUrls){const[imagesPreloaded,setImagesPreloaded]=React.useState(false);React.useEffect(()=>{let isMounted=true;const preloadImages=async()=>{const imagePromises=imageUrls.map(url=>{return new Promise((resolve,reject)=>{const img=new Image;img.src=url;img.onload=resolve;img.onerror=reject;});});try{await Promise.all(imagePromises);if(isMounted){setImagesPreloaded(true);}}catch(error){console.error(\"Failed to preload images:\",error);}};preloadImages();return()=>{isMounted=false;};},[imageUrls]);return imagesPreloaded;}/**\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function CursorImageTrail({images=[],style={width:100,height:100,radius:0,fit:\"fill\"},frequency=50,visibleFor=1,perspective={enabled:false,value:1e3},animation={in:{from:{opacity:0,scale:.5,blur:8,is3D:\"2D\",rotate2D:0,rotate3D:{x:0,y:0,z:0}},to:{opacity:1,scale:1,blur:0,is3D:\"2D\",rotate2D:0,rotate3D:{x:0,y:0,z:0}},transition:{type:\"spring\",stiffness:300,damping:30}},out:{opacity:0,scale:.5,blur:8,is3D:\"2D\",rotate2D:0,rotate3D:{x:0,y:0,z:0},transition:{type:\"spring\",stiffness:300,damping:30}}},...props}){const threshold=200-(frequency-1)*199/49;const[mousePos,setMousePos]=React.useState({x:0,y:0});const[isHovering,setIsHovering]=React.useState(false);const[currentImageIndex,setCurrentImageIndex]=React.useState(0);const[activeImages,setActiveImages]=React.useState([]);const[isInViewport,setIsInViewport]=React.useState(false);const componentRef=React.useRef(null);const imagesPreloaded=useImagePreloader(isInViewport?images:[]);React.useEffect(()=>{const observer=new IntersectionObserver(([entry])=>{setIsInViewport(entry.isIntersecting);},{root:null,rootMargin:\"0px\",threshold:.1});if(componentRef.current){observer.observe(componentRef.current);}return()=>{if(componentRef.current){observer.unobserve(componentRef.current);}};},[]);const handleMouseMove=event=>{const rect=event.currentTarget.getBoundingClientRect();const x=event.clientX-rect.left;const y=event.clientY-rect.top;setMousePos({x,y});};const handleMouseEnter=()=>{setIsHovering(true);};const handleMouseLeave=()=>{setIsHovering(false);};React.useEffect(()=>{if(isHovering&&images.length>0){const lastImage=activeImages[activeImages.length-1];const distance=lastImage?Math.hypot(mousePos.x-lastImage.x,mousePos.y-lastImage.y):Infinity;if(distance>threshold){const newImage={id:Math.random(),position:currentImageIndex,x:mousePos.x,y:mousePos.y,createdAt:Date.now(),state:\"entering\"};setActiveImages(prev=>[...prev,newImage]);setCurrentImageIndex(prev=>(prev+1)%images.length);// Schedule exit animation\nsetTimeout(()=>{setActiveImages(prev=>prev.map(img=>img.id===newImage.id?{...img,state:\"exiting\"}:img));},visibleFor*1e3);// Schedule removal from DOM\nsetTimeout(()=>{setActiveImages(prev=>prev.filter(img=>img.id!==newImage.id));},1e4)// 10 seconds\n;}}},[mousePos,isHovering,images,threshold,currentImageIndex,visibleFor]);if(images.length===0){return /*#__PURE__*/_jsx(SettingsMessage,{title:\"Set Up the Component\",description:\"Add images to the component through the 'Images' property on the right panel. Then preview the website, and hover over the component.\",containerStyle:{...props.style,width:\"100%\",height:\"100%\"}});}return /*#__PURE__*/_jsx(Frame,{...props,ref:componentRef,onMouseMove:handleMouseMove,onMouseEnter:handleMouseEnter,onMouseLeave:handleMouseLeave,background:\"\",children:imagesPreloaded&&/*#__PURE__*/_jsx(AnimatePresence,{children:activeImages.map(({id,position,x,y,state})=>/*#__PURE__*/{var _images_position;return _jsx(motion.div,{initial:{opacity:animation.in.from.opacity,scale:animation.in.from.scale,filter:`blur(${animation.in.from.blur}px)`,x:x-style.width/2,y:y-style.height/2,rotate:animation.in.from.is3D===\"2D\"?animation.in.from.rotate2D:0,rotateX:animation.in.from.is3D===\"3D\"?animation.in.from.rotate3D.x:0,rotateY:animation.in.from.is3D===\"3D\"?animation.in.from.rotate3D.y:0,rotateZ:animation.in.from.is3D===\"3D\"?animation.in.from.rotate3D.z:0},animate:state===\"entering\"?{opacity:animation.in.to.opacity,scale:animation.in.to.scale,filter:`blur(${animation.in.to.blur}px)`,x:x-style.width/2,y:y-style.height/2,rotate:animation.in.to.is3D===\"2D\"?animation.in.to.rotate2D:0,rotateX:animation.in.to.is3D===\"3D\"?animation.in.to.rotate3D.x:0,rotateY:animation.in.to.is3D===\"3D\"?animation.in.to.rotate3D.y:0,rotateZ:animation.in.to.is3D===\"3D\"?animation.in.to.rotate3D.z:0}:{opacity:animation.out.opacity,scale:animation.out.scale,filter:`blur(${animation.out.blur}px)`,x:x-style.width/2,y:y-style.height/2,rotate:animation.out.is3D===\"2D\"?animation.out.rotate2D:0,rotateX:animation.out.is3D===\"3D\"?animation.out.rotate3D.x:0,rotateY:animation.out.is3D===\"3D\"?animation.out.rotate3D.y:0,rotateZ:animation.out.is3D===\"3D\"?animation.out.rotate3D.z:0},transition:state===\"entering\"?animation.in.transition:animation.out.transition,style:{position:\"absolute\",width:`${style.width}px`,height:`${style.height}px`,backgroundImage:`url(${(_images_position=images[position])!==null&&_images_position!==void 0?_images_position:\"\"})`,backgroundSize:style.fit===\"fill\"?\"cover\":\"contain\",backgroundPosition:\"center\",backgroundRepeat:\"no-repeat\",borderRadius:`${style.radius}px`,pointerEvents:\"none\",perspective:perspective.enabled?`${perspective.value}px`:\"none\"}},id);})})});}CursorImageTrail.displayName=\"Cursor Image Trail\";addPropertyControls(CursorImageTrail,{images:{type:ControlType.Array,title:\"Images\",propertyControl:{type:ControlType.Image}},style:{type:ControlType.Object,title:\"Style\",controls:{width:{type:ControlType.Number,title:\"Width\",defaultValue:100,min:0,max:1e3,unit:\"px\",step:1,displayStepper:true},height:{type:ControlType.Number,title:\"Height\",defaultValue:100,min:0,max:1e3,unit:\"px\",step:1,displayStepper:true},radius:{type:ControlType.Number,title:\"Radius\",defaultValue:0,min:0,max:500,unit:\"px\",step:1,displayStepper:true},fit:{type:ControlType.Enum,title:\"Type\",options:[\"fill\",\"fit\"],optionTitles:[\"Fill\",\"Fit\"],defaultValue:\"fill\",description:\"Style the images that will appear.\"}}},frequency:{type:ControlType.Number,title:\"Frequency\",defaultValue:35,min:1,max:50,step:1,displayStepper:false,description:\"How frequently these images appear.\"},visibleFor:{type:ControlType.Number,title:\"Visible For\",defaultValue:1,min:.1,max:10,step:.1,unit:\"s\",displayStepper:true,description:\"How long they're visible for before they animate out.\"},animation:{type:ControlType.Object,title:\"Animation\",controls:{in:{type:ControlType.Object,title:\"In\",controls:{from:{type:ControlType.Object,title:\"From\",controls:{opacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.1},scale:{type:ControlType.Number,title:\"Scale\",defaultValue:.5,min:0,max:10,step:.1},blur:{type:ControlType.Number,title:\"Blur\",defaultValue:10,min:0,max:50,step:1,unit:\"px\"},is3D:{type:ControlType.Enum,title:\"Rotation\",options:[\"2D\",\"3D\"],optionTitles:[\"2D\",\"3D\"],defaultValue:\"2D\",displaySegmentedControl:true},rotate2D:{type:ControlType.Number,title:\"2D Rotate\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\",hidden:props=>props.is3D===\"3D\"},rotate3D:{type:ControlType.Object,title:\"3D Rotate\",controls:{x:{type:ControlType.Number,title:\"X\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"},y:{type:ControlType.Number,title:\"Y\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"},z:{type:ControlType.Number,title:\"Z\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"}},hidden:props=>props.is3D===\"2D\"}}},to:{type:ControlType.Object,title:\"To\",controls:{opacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:1,min:0,max:1,step:.1},scale:{type:ControlType.Number,title:\"Scale\",defaultValue:1,min:0,max:10,step:.1},blur:{type:ControlType.Number,title:\"Blur\",defaultValue:0,min:0,max:50,step:1,unit:\"px\"},is3D:{type:ControlType.Enum,title:\"Rotation\",options:[\"2D\",\"3D\"],optionTitles:[\"2D\",\"3D\"],defaultValue:\"2D\",displaySegmentedControl:true},rotate2D:{type:ControlType.Number,title:\"2D Rotate\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\",hidden:props=>props.is3D===\"3D\"},rotate3D:{type:ControlType.Object,title:\"3D Rotate\",controls:{x:{type:ControlType.Number,title:\"X\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"},y:{type:ControlType.Number,title:\"Y\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"},z:{type:ControlType.Number,title:\"Z\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"}},hidden:props=>props.is3D===\"2D\"}}},transition:{type:ControlType.Transition,title:\"Transition\"}}},out:{type:ControlType.Object,title:\"Out\",controls:{opacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.1},scale:{type:ControlType.Number,title:\"Scale\",defaultValue:.5,min:0,max:10,step:.1},blur:{type:ControlType.Number,title:\"Blur\",defaultValue:10,min:0,max:50,step:1,unit:\"px\"},is3D:{type:ControlType.Enum,title:\"Rotation\",options:[\"2D\",\"3D\"],optionTitles:[\"2D\",\"3D\"],defaultValue:\"2D\",displaySegmentedControl:true},rotate2D:{type:ControlType.Number,title:\"2D Rotate\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\",hidden:props=>props.is3D===\"3D\"},rotate3D:{type:ControlType.Object,title:\"3D Rotate\",controls:{x:{type:ControlType.Number,title:\"X\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"},y:{type:ControlType.Number,title:\"Y\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"},z:{type:ControlType.Number,title:\"Z\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"}},hidden:props=>props.is3D===\"2D\"},transition:{type:ControlType.Transition,title:\"Transition\"}}}}},perspective:{type:ControlType.Object,title:\"Perspective\",description:\"More components at [Framer University](https://frameruni.link/cc).\",controls:{enabled:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},value:{type:ControlType.Number,title:\"Value\",defaultValue:1200,min:500,max:5e3,step:10,displayStepper:true,hidden:props=>!props.enabled}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"CursorImageTrail\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CursorImageTrail_Prod.map", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={B9Tn3vMqy:{hover:true},kveGos6Ur:{hover:true},qy4XvJcDe:{hover:true},V2bAkKwb0:{hover:true}};const cycleOrder=[\"B9Tn3vMqy\",\"V2bAkKwb0\",\"kveGos6Ur\",\"qy4XvJcDe\"];const serializationHash=\"framer-9e4L0\";const variantClassNames={B9Tn3vMqy:\"framer-v-vzubpe\",kveGos6Ur:\"framer-v-1pinlqw\",qy4XvJcDe:\"framer-v-1p6jtqr\",V2bAkKwb0:\"framer-v-10libdg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"B9Tn3vMqy\",\"Variant 2\":\"V2bAkKwb0\",\"Variant 3\":\"kveGos6Ur\",\"Variant 4\":\"qy4XvJcDe\"};const getProps=({height,id,link,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"B9Tn3vMqy\",YvBWxBu8l:link??props.YvBWxBu8l};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,YvBWxBu8l,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"B9Tn3vMqy\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"B9Tn3vMqy-hover\",\"V2bAkKwb0-hover\",\"kveGos6Ur-hover\",\"qy4XvJcDe-hover\"].includes(gestureVariant))return false;if([\"V2bAkKwb0\",\"kveGos6Ur\",\"qy4XvJcDe\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"V2bAkKwb0-hover\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"kveGos6Ur-hover\")return true;return false;};const isDisplayed3=()=>{if(gestureVariant===\"qy4XvJcDe-hover\")return true;return false;};const isDisplayed4=()=>{if(gestureVariant===\"B9Tn3vMqy-hover\")return true;return false;};const isDisplayed5=()=>{if(gestureVariant===\"V2bAkKwb0-hover\")return false;if(baseVariant===\"V2bAkKwb0\")return true;return false;};const isDisplayed6=()=>{if(gestureVariant===\"kveGos6Ur-hover\")return false;if(baseVariant===\"kveGos6Ur\")return true;return false;};const isDisplayed7=()=>{if(gestureVariant===\"qy4XvJcDe-hover\")return false;if(baseVariant===\"qy4XvJcDe\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:YvBWxBu8l,nodeId:\"B9Tn3vMqy\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-vzubpe\",className,classNames)} framer-1yh94o4`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"B9Tn3vMqy\",ref:ref??ref1,style:{...style},...addPropertyOverrides({\"B9Tn3vMqy-hover\":{\"data-framer-name\":undefined},\"kveGos6Ur-hover\":{\"data-framer-name\":undefined},\"qy4XvJcDe-hover\":{\"data-framer-name\":undefined},\"V2bAkKwb0-hover\":{\"data-framer-name\":undefined},kveGos6Ur:{\"data-framer-name\":\"Variant 3\"},qy4XvJcDe:{\"data-framer-name\":\"Variant 4\"},V2bAkKwb0:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b1hmbs\",layoutDependency:layoutDependency,layoutId:\"f282zpehZ\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-p1xg2m\",\"data-framer-name\":\"Asset 47\",fill:\"rgb(107, 50, 50)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"B9Tn3vMqyIhplKIWgP\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 19.5 19.5\"><g fill=\"none\" stroke=\"#fff\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M5.25.75h9a4.5 4.5 0 0 1 4.5 4.5v9.01a4.5 4.5 0 0 1-4.5 4.5h-9a4.5 4.5 0 0 1-4.5-4.5V5.25c0-2.49 2.01-4.5 4.5-4.5h0Zm.62 8.1v5.4\"/><path d=\"M9.47 14.25V11.1c0-1.24 1.01-2.25 2.25-2.25h0c1.24 0 2.25 1.01 2.25 2.25v3.15m-8.1-8.66c-.12 0-.22.1-.22.22s.1.23.22.23.23-.1.23-.23-.1-.22-.23-.22\"/></g></svg>',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1xc362b\",\"data-framer-name\":\"Asset 46\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"jLwjlStZS\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(0.9 0.9)\" id=\"ss8979413334_1\"><path d=\"M 6 21.6 C 2.686 21.6 0 18.914 0 15.6 L 0 6 C 0 2.686 2.686 0 6 0 L 15.6 0 C 18.914 0 21.6 2.686 21.6 6 L 21.6 15.6 C 21.6 18.914 18.914 21.6 15.6 21.6 Z\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-7f2005fd-d03b-48ad-a687-8babb533bf6c, rgb(247, 166, 0)) /* {&quot;name&quot;:&quot;Highlight&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 9 10.2 L 8.7 10.2 C 7.212 10.2 6 11.412 6 12.9 L 6 12.9 C 6 14.724 7.476 16.2 9.3 16.2 L 9.3 16.2 C 11.124 16.2 12.6 14.724 12.6 12.9 L 12.6 5.4 M 12.6 5.4 C 12.6 7.057 13.943 8.4 15.6 8.4\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-7f2005fd-d03b-48ad-a687-8babb533bf6c, rgb(247, 166, 0)) /* {&quot;name&quot;:&quot;Highlight&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></g></svg>',svgContentId:8979413334,withExternalLayout:true,...addPropertyOverrides({\"V2bAkKwb0-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(0.9 0.9)\" id=\"ss9549495352_1\"><path d=\"M 6 21.6 C 2.686 21.6 0 18.914 0 15.6 L 0 6 C 0 2.686 2.686 0 6 0 L 15.6 0 C 18.914 0 21.6 2.686 21.6 6 L 21.6 15.6 C 21.6 18.914 18.914 21.6 15.6 21.6 Z\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-7f2005fd-d03b-48ad-a687-8babb533bf6c, rgb(247, 166, 0)) /* {&quot;name&quot;:&quot;Highlight&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 9 10.2 L 8.7 10.2 C 7.212 10.2 6 11.412 6 12.9 L 6 12.9 C 6 14.724 7.476 16.2 9.3 16.2 L 9.3 16.2 C 11.124 16.2 12.6 14.724 12.6 12.9 L 12.6 5.4 M 12.6 5.4 C 12.6 7.057 13.943 8.4 15.6 8.4\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-7f2005fd-d03b-48ad-a687-8babb533bf6c, rgb(247, 166, 0)) /* {&quot;name&quot;:&quot;Highlight&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></g></svg>',svgContentId:9549495352}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1i6oa2m\",\"data-framer-name\":\"Asset 44\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"G1FupmuzK\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(0.9 0.9)\" id=\"ss10610697871_1\"><path d=\"M 13.728 6.3 L 17.016 6.3 M 12.528 12.156 L 12.528 12.156 M 17.952 12 L 12.528 12 L 12.528 11.676 C 12.528 10.099 13.807 8.82 15.384 8.82 L 15.384 8.82 C 16.961 8.82 18.24 10.099 18.24 11.676 L 18.24 11.724 C 18.24 11.88 18.12 12 17.964 12 L 17.964 12 Z M 12.528 12 L 12.528 12.156 C 12.528 13.356 13.248 14.436 14.352 14.892 C 15.456 15.348 16.728 15.108 17.58 14.256 M 3.756 10.2 L 3.756 6.6 C 3.756 6.432 3.888 6.3 4.056 6.3 L 6.612 6.3 M 7.356 10.2 C 8.712 10.2 9.816 11.304 9.816 12.66 L 9.816 12.66 C 9.816 13.308 9.552 13.932 9.096 14.4 C 8.64 14.856 8.016 15.12 7.356 15.12 L 3.912 15.12 C 3.816 15.12 3.744 14.988 3.744 14.82 L 3.744 10.212 L 7.344 10.212 Z\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-7f2005fd-d03b-48ad-a687-8babb533bf6c, rgb(247, 166, 0)) /* {&quot;name&quot;:&quot;Highlight&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 16.812 21.612 L 4.8 21.612 C 2.148 21.612 0 19.464 0 16.812 L 0 4.8 C 0 2.148 2.148 0 4.8 0 L 16.8 0 C 19.452 0 21.6 2.148 21.6 4.8 L 21.6 16.8 C 21.6 19.452 19.452 21.6 16.8 21.6 Z\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-7f2005fd-d03b-48ad-a687-8babb533bf6c, rgb(247, 166, 0)) /* {&quot;name&quot;:&quot;Highlight&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 6.6 6.3 C 7.68 6.3 8.556 7.176 8.556 8.256 L 8.556 8.256 C 8.556 9.336 7.68 10.2 6.6 10.2\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-7f2005fd-d03b-48ad-a687-8babb533bf6c, rgb(247, 166, 0)) /* {&quot;name&quot;:&quot;Highlight&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></g></svg>',svgContentId:10610697871,withExternalLayout:true,...addPropertyOverrides({\"kveGos6Ur-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(0.9 0.9)\" id=\"ss10541896147_1\"><path d=\"M 13.728 6.3 L 17.016 6.3 M 12.528 12.156 L 12.528 12.156 M 17.952 12 L 12.528 12 L 12.528 11.676 C 12.528 10.099 13.807 8.82 15.384 8.82 L 15.384 8.82 C 16.961 8.82 18.24 10.099 18.24 11.676 L 18.24 11.724 C 18.24 11.88 18.12 12 17.964 12 L 17.964 12 Z M 12.528 12 L 12.528 12.156 C 12.528 13.356 13.248 14.436 14.352 14.892 C 15.456 15.348 16.728 15.108 17.58 14.256 M 3.756 10.2 L 3.756 6.6 C 3.756 6.432 3.888 6.3 4.056 6.3 L 6.612 6.3 M 7.356 10.2 C 8.712 10.2 9.816 11.304 9.816 12.66 L 9.816 12.66 C 9.816 13.308 9.552 13.932 9.096 14.4 C 8.64 14.856 8.016 15.12 7.356 15.12 L 3.912 15.12 C 3.816 15.12 3.744 14.988 3.744 14.82 L 3.744 10.212 L 7.344 10.212 Z\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-7f2005fd-d03b-48ad-a687-8babb533bf6c, rgb(247, 166, 0)) /* {&quot;name&quot;:&quot;Highlight&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 16.812 21.612 L 4.8 21.612 C 2.148 21.612 0 19.464 0 16.812 L 0 4.8 C 0 2.148 2.148 0 4.8 0 L 16.8 0 C 19.452 0 21.6 2.148 21.6 4.8 L 21.6 16.8 C 21.6 19.452 19.452 21.6 16.8 21.6 Z\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-7f2005fd-d03b-48ad-a687-8babb533bf6c, rgb(247, 166, 0)) /* {&quot;name&quot;:&quot;Highlight&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 6.6 6.3 C 7.68 6.3 8.556 7.176 8.556 8.256 L 8.556 8.256 C 8.556 9.336 7.68 10.2 6.6 10.2\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-7f2005fd-d03b-48ad-a687-8babb533bf6c, rgb(247, 166, 0)) /* {&quot;name&quot;:&quot;Highlight&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></g></svg>',svgContentId:10541896147}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-17o8qea\",\"data-framer-name\":\"Asset 45\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"noJ2Xdcvh\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(0.9 0.9)\" id=\"ss8593534640_1\"><path d=\"M 8.4 14.4 L 14.64 10.8 L 8.4 7.2 Z\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-7f2005fd-d03b-48ad-a687-8babb533bf6c, rgb(247, 166, 0)) /* {&quot;name&quot;:&quot;Highlight&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 5.4 0 L 16.2 0 C 19.182 0 21.6 2.418 21.6 5.4 L 21.6 16.212 C 21.6 19.194 19.182 21.612 16.2 21.612 L 5.4 21.612 C 2.418 21.612 0 19.194 0 16.212 L 0 5.4 C 0 2.412 2.412 0 5.4 0 Z\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-7f2005fd-d03b-48ad-a687-8babb533bf6c, rgb(247, 166, 0)) /* {&quot;name&quot;:&quot;Highlight&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></g></svg>',svgContentId:8593534640,withExternalLayout:true,...addPropertyOverrides({\"qy4XvJcDe-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(0.9 0.9)\" id=\"ss11046973381_1\"><path d=\"M 8.4 14.4 L 14.64 10.8 L 8.4 7.2 Z\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-7f2005fd-d03b-48ad-a687-8babb533bf6c, rgb(247, 166, 0)) /* {&quot;name&quot;:&quot;Highlight&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 5.4 0 L 16.2 0 C 19.182 0 21.6 2.418 21.6 5.4 L 21.6 16.212 C 21.6 19.194 19.182 21.612 16.2 21.612 L 5.4 21.612 C 2.418 21.612 0 19.194 0 16.212 L 0 5.4 C 0 2.412 2.412 0 5.4 0 Z\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-7f2005fd-d03b-48ad-a687-8babb533bf6c, rgb(247, 166, 0)) /* {&quot;name&quot;:&quot;Highlight&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></g></svg>',svgContentId:11046973381}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1l204bk\",\"data-framer-name\":\"Asset 47\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"S0VZ3iQIe\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(0.9 0.9)\" id=\"ss11454326728_1\"><path d=\"M 5.4 0 L 16.2 0 C 19.182 0 21.6 2.418 21.6 5.4 L 21.6 16.212 C 21.6 19.194 19.182 21.612 16.2 21.612 L 5.4 21.612 C 2.418 21.612 0 19.194 0 16.212 L 0 5.4 C 0 2.412 2.412 0 5.4 0 Z M 6.144 9.72 L 6.144 16.2\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-7f2005fd-d03b-48ad-a687-8babb533bf6c, rgb(247, 166, 0)) /* {&quot;name&quot;:&quot;Highlight&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 10.464 16.2 L 10.464 12.42 C 10.464 10.932 11.676 9.72 13.164 9.72 L 13.164 9.72 C 14.652 9.72 15.864 10.932 15.864 12.42 L 15.864 16.2 M 6.144 5.808 C 6 5.808 5.88 5.928 5.88 6.072 C 5.88 6.216 6 6.348 6.144 6.348 C 6.288 6.348 6.42 6.228 6.42 6.072 C 6.42 5.916 6.3 5.808 6.144 5.808\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-7f2005fd-d03b-48ad-a687-8babb533bf6c, rgb(247, 166, 0)) /* {&quot;name&quot;:&quot;Highlight&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></g></svg>',svgContentId:11454326728,withExternalLayout:true,...addPropertyOverrides({\"B9Tn3vMqy-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(0.9 0.9)\" id=\"ss10240019152_1\"><path d=\"M 5.4 0 L 16.2 0 C 19.182 0 21.6 2.418 21.6 5.4 L 21.6 16.212 C 21.6 19.194 19.182 21.612 16.2 21.612 L 5.4 21.612 C 2.418 21.612 0 19.194 0 16.212 L 0 5.4 C 0 2.412 2.412 0 5.4 0 Z M 6.144 9.72 L 6.144 16.2\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-7f2005fd-d03b-48ad-a687-8babb533bf6c, rgb(247, 166, 0)) /* {&quot;name&quot;:&quot;Highlight&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 10.464 16.2 L 10.464 12.42 C 10.464 10.932 11.676 9.72 13.164 9.72 L 13.164 9.72 C 14.652 9.72 15.864 10.932 15.864 12.42 L 15.864 16.2 M 6.144 5.808 C 6 5.808 5.88 5.928 5.88 6.072 C 5.88 6.216 6 6.348 6.144 6.348 C 6.288 6.348 6.42 6.228 6.42 6.072 C 6.42 5.916 6.3 5.808 6.144 5.808\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-7f2005fd-d03b-48ad-a687-8babb533bf6c, rgb(247, 166, 0)) /* {&quot;name&quot;:&quot;Highlight&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></g></svg>',svgContentId:10240019152}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-kk7syr\",\"data-framer-name\":\"Asset 46\",fill:\"black\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"TbZVFe5oyuGgRamcvB\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 19.5 19.5\"><g fill=\"none\" stroke=\"#fff\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><rect x=\".75\" y=\".75\" width=\"18\" height=\"18\" rx=\"5\" ry=\"5\"/><path d=\"M8.25 9.25H8c-1.24 0-2.25 1.01-2.25 2.25h0c0 1.52 1.23 2.75 2.75 2.75h0c1.52 0 2.75-1.23 2.75-2.75V5.25m0 0a2.5 2.5 0 0 0 2.5 2.5\"/></g></svg>',withExternalLayout:true}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-ca5cqe\",\"data-framer-name\":\"Asset 44\",fill:\"black\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"HgWvUq10rNPX5qtAl3\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 19.51 19.51\"><g fill=\"none\" stroke=\"#fff\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M12.19 6h2.74m-3.74 4.88h0m4.52-.13h-4.52v-.27a2.38 2.38 0 0 1 2.38-2.38h0a2.38 2.38 0 0 1 2.38 2.38v.04c0 .13-.1.23-.23.23h0Zm-4.52 0v.13c0 1 .6 1.9 1.52 2.28.92.38 1.98.18 2.69-.53M3.88 9.25v-3c0-.14.11-.25.25-.25h2.13m.62 3.25c1.13 0 2.05.92 2.05 2.05h0c0 .54-.22 1.06-.6 1.45-.38.38-.9.6-1.45.6H4.01c-.08 0-.14-.11-.14-.25V9.26h3Z\"/><path d=\"M14.76 18.76H4.75c-2.21 0-4-1.79-4-4V4.75c0-2.21 1.79-4 4-4h10c2.21 0 4 1.79 4 4v10c0 2.21-1.79 4-4 4Z\"/><path d=\"M6.25 6c.9 0 1.63.73 1.63 1.63h0c0 .9-.73 1.62-1.63 1.62\"/></g></svg>',withExternalLayout:true}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-ud4y9t\",\"data-framer-name\":\"Asset 45\",fill:\"black\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"DxCmRi66h\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 19.5 19.5\"><g fill=\"none\" stroke=\"#fff\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"m7.75 12.75 5.2-3-5.2-3v6Z\"/><path d=\"M5.25.75h9a4.5 4.5 0 0 1 4.5 4.5v9.01a4.5 4.5 0 0 1-4.5 4.5h-9a4.5 4.5 0 0 1-4.5-4.5V5.25c0-2.49 2.01-4.5 4.5-4.5h0Z\"/></g></svg>',withExternalLayout:true})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9e4L0.framer-1yh94o4, .framer-9e4L0 .framer-1yh94o4 { display: block; }\",\".framer-9e4L0.framer-vzubpe { cursor: pointer; height: 20px; overflow: hidden; position: relative; text-decoration: none; width: 24px; }\",\".framer-9e4L0 .framer-b1hmbs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-9e4L0 .framer-p1xg2m { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-9e4L0 .framer-1xc362b, .framer-9e4L0 .framer-1i6oa2m, .framer-9e4L0 .framer-17o8qea, .framer-9e4L0 .framer-1l204bk { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-9e4L0 .framer-kk7syr, .framer-9e4L0 .framer-ca5cqe, .framer-9e4L0 .framer-ud4y9t { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9e4L0 .framer-b1hmbs { gap: 0px; } .framer-9e4L0 .framer-b1hmbs > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-9e4L0 .framer-b1hmbs > :first-child { margin-left: 0px; } .framer-9e4L0 .framer-b1hmbs > :last-child { margin-right: 0px; } }\",\".framer-9e4L0.framer-v-10libdg.framer-vzubpe, .framer-9e4L0.framer-v-1pinlqw.framer-vzubpe, .framer-9e4L0.framer-v-1p6jtqr.framer-vzubpe, .framer-9e4L0.framer-v-vzubpe.hover.framer-vzubpe { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 24px); }\",\".framer-9e4L0.framer-v-10libdg .framer-kk7syr, .framer-9e4L0.framer-v-1pinlqw .framer-ca5cqe, .framer-9e4L0.framer-v-1p6jtqr .framer-ud4y9t { height: var(--framer-aspect-ratio-supported, 24px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"V2bAkKwb0\":{\"layout\":[\"fixed\",\"fixed\"]},\"kveGos6Ur\":{\"layout\":[\"fixed\",\"fixed\"]},\"qy4XvJcDe\":{\"layout\":[\"fixed\",\"fixed\"]},\"q2fIxxo9w\":{\"layout\":[\"fixed\",\"fixed\"]},\"z0ZODBrg5\":{\"layout\":[\"fixed\",\"fixed\"]},\"rB4VvbMTI\":{\"layout\":[\"fixed\",\"fixed\"]},\"eE22hjYWY\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"YvBWxBu8l\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKTu2LsFFR=withCSS(Component,css,\"framer-9e4L0\");export default FramerKTu2LsFFR;FramerKTu2LsFFR.displayName=\"ICONS\";FramerKTu2LsFFR.defaultProps={height:24,width:24};addPropertyControls(FramerKTu2LsFFR,{variant:{options:[\"B9Tn3vMqy\",\"V2bAkKwb0\",\"kveGos6Ur\",\"qy4XvJcDe\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},YvBWxBu8l:{title:\"Link\",type:ControlType.Link}});addFonts(FramerKTu2LsFFR,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKTu2LsFFR\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"V2bAkKwb0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kveGos6Ur\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qy4XvJcDe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"q2fIxxo9w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"z0ZODBrg5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rB4VvbMTI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eE22hjYWY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"24\",\"framerVariables\":\"{\\\"YvBWxBu8l\\\":\\\"link\\\"}\",\"framerIntrinsicWidth\":\"24\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KTu2LsFFR.map", "// Generated by Framer (5ea733b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={DR9LSR4bl:{hover:true,pressed:true},KGJ1EBBWF:{hover:true,pressed:true}};const cycleOrder=[\"PKKEbaGgA\",\"KGJ1EBBWF\",\"DR9LSR4bl\",\"Ogy0VwLkk\"];const serializationHash=\"framer-rLVL2\";const variantClassNames={DR9LSR4bl:\"framer-v-18n5w3g\",KGJ1EBBWF:\"framer-v-17h9leo\",Ogy0VwLkk:\"framer-v-wu7a4d\",PKKEbaGgA:\"framer-v-575s23\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 4\":\"Ogy0VwLkk\",Default:\"PKKEbaGgA\",Inverse:\"KGJ1EBBWF\",MOBILE:\"DR9LSR4bl\"};const getProps=({height,id,link,width,...props})=>{return{...props,eY5DwZxo9:link??props.eY5DwZxo9,variant:humanReadableVariantMap[props.variant]??props.variant??\"PKKEbaGgA\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,eY5DwZxo9,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"PKKEbaGgA\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:eY5DwZxo9,motionChild:true,nodeId:\"PKKEbaGgA\",scopeId:\"immjczmkC\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:30,intrinsicWidth:146.5},className:`${cx(scopingClassNames,\"framer-575s23\",className,classNames)} framer-1fw8uaz`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"PKKEbaGgA\",ref:refBinding,style:{...style},...addPropertyOverrides({\"DR9LSR4bl-hover\":{\"data-framer-name\":undefined},\"DR9LSR4bl-pressed\":{\"data-framer-name\":undefined},\"KGJ1EBBWF-hover\":{\"data-framer-name\":undefined},\"KGJ1EBBWF-pressed\":{\"data-framer-name\":undefined},DR9LSR4bl:{\"data-framer-name\":\"MOBILE\",background:{alt:\"Logo\",fit:\"fill\",intrinsicHeight:30,intrinsicWidth:146.5,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),src:\"https://framerusercontent.com/images/b75h8cPUbiZbxBbqjkF0htMD9aU.webp\"}},KGJ1EBBWF:{\"data-framer-name\":\"Inverse\",background:{alt:\"Logo\",fit:\"fill\",intrinsicHeight:30,intrinsicWidth:146.5,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),src:\"https://framerusercontent.com/images/b75h8cPUbiZbxBbqjkF0htMD9aU.webp\"}},Ogy0VwLkk:{\"data-framer-name\":\"Variant 4\",background:{alt:\"Logo\",fit:\"fill\",intrinsicHeight:30,intrinsicWidth:146.5,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),src:\"https://framerusercontent.com/images/b75h8cPUbiZbxBbqjkF0htMD9aU.webp\"}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:320,intrinsicWidth:320,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||40)-0-32)/2)),pixelHeight:320,pixelWidth:320,src:\"https://framerusercontent.com/images/0yoFbgT4jP62XCnHVs0JireOI.webp\"},className:\"framer-1pg6d2u\",\"data-framer-name\":\"PROFILE\",layoutDependency:layoutDependency,layoutId:\"fiAjifV_G\",style:{borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},...addPropertyOverrides({DR9LSR4bl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:320,intrinsicWidth:320,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||30)-0-40)/2)),pixelHeight:320,pixelWidth:320,src:\"https://framerusercontent.com/images/0yoFbgT4jP62XCnHVs0JireOI.webp\"}},Ogy0VwLkk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:320,intrinsicWidth:320,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||30)-0-40)/2)),pixelHeight:320,pixelWidth:320,src:\"https://framerusercontent.com/images/0yoFbgT4jP62XCnHVs0JireOI.webp\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"0.9em\"},children:[\"ROBERT\",/*#__PURE__*/_jsx(motion.br,{}),\"KOSTRZEWA\"]})}),className:\"framer-1pj9z87\",fonts:[\"FS;Clash Display-semibold\"],layoutDependency:layoutDependency,layoutId:\"Y3pLNnPve\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"DR9LSR4bl-hover\":{\"--extracted-r6o4lv\":\"var(--token-7f2005fd-d03b-48ad-a687-8babb533bf6c, rgb(247, 166, 0))\"},\"DR9LSR4bl-pressed\":{\"--extracted-r6o4lv\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},\"KGJ1EBBWF-hover\":{\"--extracted-r6o4lv\":\"rgb(246, 176, 61)\"},DR9LSR4bl:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},KGJ1EBBWF:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},Ogy0VwLkk:{\"--extracted-r6o4lv\":\"rgb(248, 173, 59)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"DR9LSR4bl-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7f2005fd-d03b-48ad-a687-8babb533bf6c, rgb(247, 166, 0)))\"},children:[\"ROBERT\",/*#__PURE__*/_jsx(motion.br,{}),\"KOSTRZEWA\"]})})},\"DR9LSR4bl-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255)))\"},children:[\"ROBERT\",/*#__PURE__*/_jsx(motion.br,{}),\"KOSTRZEWA\"]})})},\"KGJ1EBBWF-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(246, 176, 61))\"},children:[\"ROBERT\",/*#__PURE__*/_jsx(motion.br,{}),\"KOSTRZEWA\"]})})},DR9LSR4bl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[\"ROBERT\",/*#__PURE__*/_jsx(motion.br,{}),\"KOSTRZEWA\"]})})},KGJ1EBBWF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[\"ROBERT\",/*#__PURE__*/_jsx(motion.br,{}),\"KOSTRZEWA\"]})})},Ogy0VwLkk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(248, 173, 59))\"},children:[\"ROBERT\",/*#__PURE__*/_jsx(motion.br,{}),\"KOSTRZEWA\"]})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rLVL2.framer-1fw8uaz, .framer-rLVL2 .framer-1fw8uaz { display: block; }\",\".framer-rLVL2.framer-575s23 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-rLVL2 .framer-1pg6d2u { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 40px; }\",\".framer-rLVL2 .framer-1pj9z87 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rLVL2.framer-575s23 { gap: 0px; } .framer-rLVL2.framer-575s23 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-rLVL2.framer-575s23 > :first-child { margin-left: 0px; } .framer-rLVL2.framer-575s23 > :last-child { margin-right: 0px; } }\",\".framer-rLVL2.framer-v-17h9leo.framer-575s23, .framer-rLVL2.framer-v-18n5w3g.framer-575s23 { cursor: pointer; }\",\".framer-rLVL2.framer-v-18n5w3g .framer-1pg6d2u, .framer-rLVL2.framer-v-wu7a4d .framer-1pg6d2u { height: var(--framer-aspect-ratio-supported, 30px); width: 30px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 169\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"KGJ1EBBWF\":{\"layout\":[\"auto\",\"auto\"]},\"DR9LSR4bl\":{\"layout\":[\"auto\",\"auto\"]},\"Ogy0VwLkk\":{\"layout\":[\"auto\",\"auto\"]},\"M578TblQH\":{\"layout\":[\"auto\",\"auto\"]},\"gwKBcQF4I\":{\"layout\":[\"auto\",\"auto\"]},\"oGwizL_Yi\":{\"layout\":[\"auto\",\"auto\"]},\"uraHqYwfe\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"eY5DwZxo9\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerimmjczmkC=withCSS(Component,css,\"framer-rLVL2\");export default FramerimmjczmkC;FramerimmjczmkC.displayName=\"Layout/Logo\";FramerimmjczmkC.defaultProps={height:40,width:169};addPropertyControls(FramerimmjczmkC,{variant:{options:[\"PKKEbaGgA\",\"KGJ1EBBWF\",\"DR9LSR4bl\",\"Ogy0VwLkk\"],optionTitles:[\"Default\",\"Inverse\",\"MOBILE\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},eY5DwZxo9:{title:\"Link\",type:ControlType.Link}});addFonts(FramerimmjczmkC,[{explicitInter:true,fonts:[{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/FPDAZ2S6SW4QMSRIIKNNGTPM6VIXYMKO/5HNPQ453FRLIQWV2FNOBUU3FKTDZQVSG/Z3MGHFHX6DCTLQ55LJYRJ5MDCZPMFZU6.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerimmjczmkC\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"169\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"KGJ1EBBWF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"DR9LSR4bl\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Ogy0VwLkk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"M578TblQH\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gwKBcQF4I\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"oGwizL_Yi\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uraHqYwfe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"eY5DwZxo9\\\":\\\"link\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./immjczmkC.map", "// Generated by Framer (7e4cc89)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/gwDQH5PKg7rNKHFLtCeP/HLgYTGPLKeQs9uUmuxsv/kk1g8TeHD.js\";import ComponentsButton from\"https://framerusercontent.com/modules/ug83no11E3JEAxXGdhnj/IZkxy6MSCtSpIKnAG4mb/gKTKPn20R.js\";import LayoutLogo from\"https://framerusercontent.com/modules/LEm8ABXEoxpz6ptdGQrD/U9UatooMG02rYZOrA08B/immjczmkC.js\";import ICONS from\"https://framerusercontent.com/modules/x8t6WOzcJuiFYc5xToCb/Qy6aHfp6KlrVCXmvmbe9/KTu2LsFFR.js\";const LayoutLogoFonts=getFonts(LayoutLogo);const ComponentsButtonFonts=getFonts(ComponentsButton);const ICONSFonts=getFonts(ICONS);const cycleOrder=[\"Gs7fD8L1M\",\"V00swmLWU\",\"Nfx3tN4Ly\",\"jdVHxr9jN\"];const serializationHash=\"framer-HHgpG\";const variantClassNames={Gs7fD8L1M:\"framer-v-10p7fof\",jdVHxr9jN:\"framer-v-wlk2mz\",Nfx3tN4Ly:\"framer-v-rp90yh\",V00swmLWU:\"framer-v-bocmay\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:0,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const transition3={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Phone Open\":\"jdVHxr9jN\",Desktop:\"Gs7fD8L1M\",Phone:\"Nfx3tN4Ly\",Tablet:\"V00swmLWU\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Gs7fD8L1M\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Gs7fD8L1M\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapu3utot=activeVariantCallback(async(...args)=>{setVariant(\"jdVHxr9jN\");});const onTap7vt9mn=activeVariantCallback(async(...args)=>{setVariant(\"Nfx3tN4Ly\");});const onTapol11b3=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Nfx3tN4Ly\"),100);});const onTap1g1ok5l=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Nfx3tN4Ly\"),200);});const Vr8nJL7mZ1g1ok5l=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Nfx3tN4Ly\"),200);});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if([\"Nfx3tN4Ly\",\"jdVHxr9jN\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"Nfx3tN4Ly\",\"jdVHxr9jN\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"jdVHxr9jN\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({Nfx3tN4Ly:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.header,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-10p7fof\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"Gs7fD8L1M\",ref:refBinding,style:{backdropFilter:\"none\",WebkitBackdropFilter:\"none\",...style},variants:{jdVHxr9jN:{backdropFilter:\"blur(15px)\",WebkitBackdropFilter:\"blur(15px)\"}},...addPropertyOverrides({jdVHxr9jN:{\"data-framer-name\":\"Phone Open\"},Nfx3tN4Ly:{\"data-framer-name\":\"Phone\"},V00swmLWU:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hct4qn\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"P3ev_BFKt\",children:[/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({jdVHxr9jN:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":tVfxM62W3\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":tVfxM62W3\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":tVfxM62W3\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":tVfxM62W3\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+(10+((componentViewport?.height||58)-14-44)/2)+2,...addPropertyOverrides({jdVHxr9jN:{y:(componentViewport?.y||0)+8+4},Nfx3tN4Ly:{y:(componentViewport?.y||0)+12+0},V00swmLWU:{y:(componentViewport?.y||0)+(4+((componentViewport?.height||48)-4-44)/2)+2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1d62z17-container\",layoutDependency:layoutDependency,layoutId:\"qpOZ5RM_2-container\",nodeId:\"qpOZ5RM_2\",rendersWithMotion:true,scopeId:\"Ifuoa3tNY\",children:/*#__PURE__*/_jsx(LayoutLogo,{eY5DwZxo9:resolvedLinks[0],height:\"100%\",id:\"qpOZ5RM_2\",layoutId:\"qpOZ5RM_2\",variant:\"KGJ1EBBWF\",width:\"100%\",...addPropertyOverrides({jdVHxr9jN:{eY5DwZxo9:resolvedLinks[3],variant:\"Ogy0VwLkk\"},Nfx3tN4Ly:{eY5DwZxo9:resolvedLinks[2],variant:\"DR9LSR4bl\"},V00swmLWU:{eY5DwZxo9:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-spwf49\",layoutDependency:layoutDependency,layoutId:\"oNzDwHIyK\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.nav,{className:\"framer-2u27c8\",\"data-framer-name\":\"Navbar Menu\",layoutDependency:layoutDependency,layoutId:\"E80go73so\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"2px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":UvHArxetG\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"DBRZBcVpq\",openInNewTab:false,scopeId:\"Ifuoa3tNY\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-th5v8x\",\"data-styles-preset\":\"kk1g8TeHD\",children:\"PORTFOLIO\"})})})}),className:\"framer-d3jck2\",fonts:[\"FS;Clash Display-medium\"],layoutDependency:layoutDependency,layoutId:\"DBRZBcVpq\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.7)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({V00swmLWU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"2px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":UvHArxetG\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"DBRZBcVpq\",openInNewTab:false,scopeId:\"Ifuoa3tNY\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-th5v8x\",\"data-styles-preset\":\"kk1g8TeHD\",children:\"PORTFOLIO\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"2px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":mD2jWBhk3\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"TsNzZUQ_K\",openInNewTab:false,scopeId:\"Ifuoa3tNY\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-th5v8x\",\"data-styles-preset\":\"kk1g8TeHD\",children:\"ABOUT ME\"})})})}),className:\"framer-c9jt2p\",fonts:[\"FS;Clash Display-medium\"],layoutDependency:layoutDependency,layoutId:\"TsNzZUQ_K\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.7)\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+(10+((componentViewport?.height||58)-14-44)/2)+0+0,...addPropertyOverrides({V00swmLWU:{y:(componentViewport?.y||0)+(4+((componentViewport?.height||48)-4-44)/2)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4v8dll-container\",layoutDependency:layoutDependency,layoutId:\"GN6Q5iNZ0-container\",nodeId:\"GN6Q5iNZ0\",rendersWithMotion:true,scopeId:\"Ifuoa3tNY\",children:/*#__PURE__*/_jsx(ComponentsButton,{AJbRYH4JP:true,aNEe2rE87:\"https://www.linkedin.com/in/robertkostrzewa/\",HBpky4qTx:\"CONTACT\",height:\"100%\",id:\"GN6Q5iNZ0\",layoutId:\"GN6Q5iNZ0\",variant:\"n58qhFgUP\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oxwcbb\",\"data-framer-name\":\"Mobile Icon\",layoutDependency:layoutDependency,layoutId:\"S40EHcu0l\",style:{backgroundColor:\"rgb(255, 255, 255)\"},variants:{jdVHxr9jN:{backgroundColor:\"rgba(0, 0, 0, 0)\"},Nfx3tN4Ly:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({jdVHxr9jN:{\"data-highlight\":true,onTap:onTap7vt9mn},Nfx3tN4Ly:{\"data-highlight\":true,onTap:onTapu3utot}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cluf3b\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"bhE73szD9\",style:{backgroundColor:\"rgb(25, 25, 25)\",rotate:0},variants:{jdVHxr9jN:{backgroundColor:\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\",rotate:-30},Nfx3tN4Ly:{backgroundColor:\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lxfm8w\",\"data-framer-name\":\"Middle\",layoutDependency:layoutDependency,layoutId:\"p13M8SdVZ\",style:{backgroundColor:\"rgb(25, 25, 25)\",opacity:1},variants:{jdVHxr9jN:{backgroundColor:\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\",opacity:0},Nfx3tN4Ly:{backgroundColor:\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dcmyqo\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"Q1Q7SAsKy\",style:{backgroundColor:\"rgb(25, 25, 25)\",rotate:0},variants:{jdVHxr9jN:{backgroundColor:\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\",rotate:30},Nfx3tN4Ly:{backgroundColor:\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"}}})]})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.nav,{className:\"framer-heemsf\",\"data-framer-name\":\"Navbar Menu\",layoutDependency:layoutDependency,layoutId:\"DoupRw9IW\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"2px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":UvHArxetG\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"faLtjckMW\",openInNewTab:false,scopeId:\"Ifuoa3tNY\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-th5v8x\",\"data-styles-preset\":\"kk1g8TeHD\",children:\"PORTFOLIO\"})})})}),className:\"framer-1ejx8a6\",\"data-highlight\":true,fonts:[\"FS;Clash Display-medium\"],layoutDependency:layoutDependency,layoutId:\"faLtjckMW\",onTap:onTapol11b3,style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.7)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"2px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":mD2jWBhk3\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"y1OLPlc0A\",openInNewTab:false,scopeId:\"Ifuoa3tNY\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-th5v8x\",\"data-styles-preset\":\"kk1g8TeHD\",children:\"ABOUT ME\"})})})}),className:\"framer-rl6mmc\",\"data-highlight\":true,fonts:[\"FS;Clash Display-medium\"],layoutDependency:layoutDependency,layoutId:\"y1OLPlc0A\",onTap:onTap1g1ok5l,style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.7)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:\"152px\",...addPropertyOverrides({jdVHxr9jN:{y:(componentViewport?.y||0)+0+0+40+455}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nkwq4m-container\",layoutDependency:layoutDependency,layoutId:\"IH5yAM2ur-container\",nodeId:\"IH5yAM2ur\",rendersWithMotion:true,scopeId:\"Ifuoa3tNY\",children:/*#__PURE__*/_jsx(ComponentsButton,{AJbRYH4JP:true,aNEe2rE87:\"https://www.linkedin.com/in/robertkostrzewa/\",HBpky4qTx:\"CONTACT\",height:\"100%\",id:\"IH5yAM2ur\",layoutId:\"IH5yAM2ur\",style:{height:\"100%\",width:\"100%\"},variant:\"n58qhFgUP\",Vr8nJL7mZ:Vr8nJL7mZ1g1ok5l,width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pp6zi5\",layoutDependency:layoutDependency,layoutId:\"ec0ngtVr9\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,...addPropertyOverrides({jdVHxr9jN:{y:(componentViewport?.y||0)+0+0+40+569+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1skai4t-container\",layoutDependency:layoutDependency,layoutId:\"nLpyEKaZY-container\",nodeId:\"nLpyEKaZY\",rendersWithMotion:true,scopeId:\"Ifuoa3tNY\",children:/*#__PURE__*/_jsx(ICONS,{height:\"100%\",id:\"nLpyEKaZY\",layoutId:\"nLpyEKaZY\",style:{height:\"100%\"},variant:\"B9Tn3vMqy\",width:\"100%\",YvBWxBu8l:\"https://www.linkedin.com/in/robertkostrzewa/\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,...addPropertyOverrides({jdVHxr9jN:{y:(componentViewport?.y||0)+0+0+40+569+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ahkkaf-container\",layoutDependency:layoutDependency,layoutId:\"zenH_4DsG-container\",nodeId:\"zenH_4DsG\",rendersWithMotion:true,scopeId:\"Ifuoa3tNY\",children:/*#__PURE__*/_jsx(ICONS,{height:\"100%\",id:\"zenH_4DsG\",layoutId:\"zenH_4DsG\",style:{height:\"100%\"},variant:\"V2bAkKwb0\",width:\"100%\",YvBWxBu8l:\"https://www.tiktok.com/@rob.ppt\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,...addPropertyOverrides({jdVHxr9jN:{y:(componentViewport?.y||0)+0+0+40+569+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1edrdiw-container\",layoutDependency:layoutDependency,layoutId:\"hzGu47VpP-container\",nodeId:\"hzGu47VpP\",rendersWithMotion:true,scopeId:\"Ifuoa3tNY\",children:/*#__PURE__*/_jsx(ICONS,{height:\"100%\",id:\"hzGu47VpP\",layoutId:\"hzGu47VpP\",style:{height:\"100%\"},variant:\"qy4XvJcDe\",width:\"100%\",YvBWxBu8l:\"https://www.youtube.com/@rob.ppt.tutorials\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,...addPropertyOverrides({jdVHxr9jN:{y:(componentViewport?.y||0)+0+0+40+569+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-i1640a-container\",layoutDependency:layoutDependency,layoutId:\"izgZ2Ogv4-container\",nodeId:\"izgZ2Ogv4\",rendersWithMotion:true,scopeId:\"Ifuoa3tNY\",children:/*#__PURE__*/_jsx(ICONS,{height:\"100%\",id:\"izgZ2Ogv4\",layoutId:\"izgZ2Ogv4\",style:{height:\"100%\"},variant:\"kveGos6Ur\",width:\"100%\",YvBWxBu8l:\"https://www.behance.net/RobertKostrzewa\"})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HHgpG.framer-1s4n6zz, .framer-HHgpG .framer-1s4n6zz { display: block; }\",\".framer-HHgpG.framer-10p7fof { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; padding: 10px 0px 4px 0px; position: relative; width: 1200px; }\",\".framer-HHgpG .framer-hct4qn { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-HHgpG .framer-1d62z17-container, .framer-HHgpG .framer-4v8dll-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-HHgpG .framer-spwf49, .framer-HHgpG .framer-2u27c8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-HHgpG .framer-d3jck2, .framer-HHgpG .framer-c9jt2p { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-HHgpG .framer-oxwcbb { flex: none; height: 30px; overflow: hidden; position: relative; width: 40px; }\",\".framer-HHgpG .framer-1cluf3b { flex: none; height: 2px; left: calc(50.00000000000002% - 30px / 2); overflow: visible; position: absolute; top: calc(23.333333333333357% - 2px / 2); width: 30px; }\",\".framer-HHgpG .framer-1lxfm8w { flex: none; height: 2px; left: calc(50.00000000000002% - 30px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 30px; }\",\".framer-HHgpG .framer-dcmyqo { flex: none; height: 2px; left: calc(50.00000000000002% - 30px / 2); overflow: visible; position: absolute; top: calc(76.6666666666667% - 2px / 2); width: 30px; }\",\".framer-HHgpG .framer-heemsf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: calc(var(--framer-viewport-height, 100vh) * 1); justify-content: center; overflow: visible; padding: 40px 0px 80px 0px; position: relative; width: 1px; }\",\".framer-HHgpG .framer-1ejx8a6, .framer-HHgpG .framer-rl6mmc { cursor: pointer; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-HHgpG .framer-nkwq4m-container { flex: none; height: 54px; position: relative; width: 152px; }\",\".framer-HHgpG .framer-pp6zi5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HHgpG .framer-1skai4t-container, .framer-HHgpG .framer-1ahkkaf-container, .framer-HHgpG .framer-1edrdiw-container, .framer-HHgpG .framer-i1640a-container { flex: none; height: 24px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HHgpG .framer-spwf49, .framer-HHgpG .framer-2u27c8, .framer-HHgpG .framer-heemsf, .framer-HHgpG .framer-pp6zi5 { gap: 0px; } .framer-HHgpG .framer-spwf49 > *, .framer-HHgpG .framer-2u27c8 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-HHgpG .framer-spwf49 > :first-child, .framer-HHgpG .framer-2u27c8 > :first-child, .framer-HHgpG .framer-pp6zi5 > :first-child { margin-left: 0px; } .framer-HHgpG .framer-spwf49 > :last-child, .framer-HHgpG .framer-2u27c8 > :last-child, .framer-HHgpG .framer-pp6zi5 > :last-child { margin-right: 0px; } .framer-HHgpG .framer-heemsf > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-HHgpG .framer-heemsf > :first-child { margin-top: 0px; } .framer-HHgpG .framer-heemsf > :last-child { margin-bottom: 0px; } .framer-HHgpG .framer-pp6zi5 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",\".framer-HHgpG.framer-v-bocmay.framer-10p7fof { padding: 4px 0px 0px 0px; width: 810px; }\",\".framer-HHgpG.framer-v-bocmay .framer-hct4qn { padding: 0px 48px 0px 48px; }\",\".framer-HHgpG.framer-v-bocmay .framer-2u27c8 { gap: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HHgpG.framer-v-bocmay .framer-2u27c8 { gap: 0px; } .framer-HHgpG.framer-v-bocmay .framer-2u27c8 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-HHgpG.framer-v-bocmay .framer-2u27c8 > :first-child { margin-left: 0px; } .framer-HHgpG.framer-v-bocmay .framer-2u27c8 > :last-child { margin-right: 0px; } }\",\".framer-HHgpG.framer-v-rp90yh.framer-10p7fof { align-content: flex-start; align-items: flex-start; padding: 12px 0px 12px 0px; width: 390px; }\",\".framer-HHgpG.framer-v-rp90yh .framer-hct4qn { padding: 0px 12px 0px 12px; }\",\".framer-HHgpG.framer-v-rp90yh .framer-oxwcbb, .framer-HHgpG.framer-v-wlk2mz .framer-oxwcbb { cursor: pointer; }\",\".framer-HHgpG.framer-v-wlk2mz.framer-10p7fof { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; justify-content: flex-start; padding: 0px; width: 390px; }\",\".framer-HHgpG.framer-v-wlk2mz .framer-hct4qn { flex: none; left: 0px; padding: 4px 12px 12px 12px; position: absolute; right: 0px; top: 8px; width: unset; z-index: 1; }\",\".framer-HHgpG.framer-v-wlk2mz .framer-1cluf3b, .framer-HHgpG.framer-v-wlk2mz .framer-dcmyqo { top: calc(50.00000000000002% - 2px / 2); }\",\".framer-HHgpG.framer-v-wlk2mz .framer-1lxfm8w { left: 15px; right: 14px; width: unset; }\",\".framer-HHgpG.framer-v-wlk2mz .framer-heemsf { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HHgpG.framer-v-wlk2mz.framer-10p7fof { gap: 0px; } .framer-HHgpG.framer-v-wlk2mz.framer-10p7fof > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-HHgpG.framer-v-wlk2mz.framer-10p7fof > :first-child { margin-top: 0px; } .framer-HHgpG.framer-v-wlk2mz.framer-10p7fof > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 58\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"V00swmLWU\":{\"layout\":[\"fixed\",\"auto\"]},\"Nfx3tN4Ly\":{\"layout\":[\"fixed\",\"auto\"]},\"jdVHxr9jN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIfuoa3tNY=withCSS(Component,css,\"framer-HHgpG\");export default FramerIfuoa3tNY;FramerIfuoa3tNY.displayName=\"Layout/Header\";FramerIfuoa3tNY.defaultProps={height:58,width:1200};addPropertyControls(FramerIfuoa3tNY,{variant:{options:[\"Gs7fD8L1M\",\"V00swmLWU\",\"Nfx3tN4Ly\",\"jdVHxr9jN\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\",\"Phone Open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerIfuoa3tNY,[{explicitInter:true,fonts:[{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2GQIT54GKQY3JRFTSHS4ARTRNRQISSAA/3CIP5EBHRRHE5FVQU3VFROPUERNDSTDF/JTSL5QESUXATU47LCPUNHZQBDDIWDOSW.woff2\",weight:\"500\"}]},...LayoutLogoFonts,...ComponentsButtonFonts,...ICONSFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIfuoa3tNY\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"V00swmLWU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Nfx3tN4Ly\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jdVHxr9jN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"58\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ifuoa3tNY.map"],
  "mappings": "0bAAA,SAASA,GAAMC,EAAEC,EAAEC,EAAE,CAAC,OAAO,KAAK,IAAIF,EAAE,KAAK,IAAIC,EAAEC,CAAC,CAAC,CAAC,CAAC,IAAMC,GAAN,KAAa,CAAC,aAAa,CAAC,KAAK,UAAU,GAAG,KAAK,MAAM,EAAE,KAAK,KAAK,EAAE,KAAK,GAAG,EAAE,KAAK,SAAS,EAAE,KAAK,YAAY,CAAC,CAAC,QAAQH,EAAE,CAAC,IAAIC,EAAE,GAAG,CAAC,KAAK,UAAU,OAAO,IAAIC,EAAE,GAAG,GAAG,KAAK,UAAU,KAAK,OAAO,CAAC,KAAK,aAAaF,EAAE,IAAMC,EAAEF,GAAM,EAAE,KAAK,YAAY,KAAK,SAAS,CAAC,EAAEG,EAAED,GAAG,EAAE,IAAMG,EAAEF,EAAE,EAAE,KAAK,OAAOD,CAAC,EAAE,KAAK,MAAM,KAAK,MAAM,KAAK,GAAG,KAAK,MAAMG,OAAO,KAAK,MAAM,KAAK,MAAM,SAAcJ,EAAEC,EAAEC,EAAEE,EAAE,CAAC,OAAO,SAAcJ,EAAEC,EAAEC,EAAE,CAAC,OAAO,EAAEA,GAAGF,EAAEE,EAAED,CAAC,EAAED,EAAEC,EAAE,EAAE,KAAK,IAAI,CAACC,EAAEE,CAAC,CAAC,CAAC,EAAE,KAAK,MAAM,KAAK,GAAG,GAAG,KAAK,KAAKJ,CAAC,EAAE,KAAK,MAAM,KAAK,KAAK,IAAI,KAAK,KAAK,KAAK,MAAM,KAAK,GAAGE,EAAE,MAAM,KAAK,MAAM,KAAK,GAAGA,EAAE,IAAIA,GAAG,KAAK,KAAK,GAAUD,EAAE,KAAK,YAAf,MAAmCA,IAAT,QAAYA,EAAE,KAAK,KAAK,KAAK,MAAMC,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,UAAU,EAAE,CAAC,OAAOF,EAAEC,EAAE,CAAC,KAAKC,EAAE,SAASE,EAAE,OAAOC,EAAE,QAAQC,EAAE,SAASC,CAAC,EAAE,CAAC,KAAK,KAAK,KAAK,MAAMP,EAAE,KAAK,GAAGC,EAAE,KAAK,KAAKC,EAAE,KAAK,SAASE,EAAE,KAAK,OAAOC,EAAE,KAAK,YAAY,EAAE,KAAK,UAAU,GAAYC,IAAE,EAAE,KAAK,SAASC,CAAC,CAAC,EAAOC,GAAN,KAAgB,CAAC,YAAY,CAAC,QAAQR,EAAE,QAAQC,EAAE,WAAWC,EAAE,GAAG,SAASE,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,KAAK,MAAM,EAAE,KAAK,OAAO,EAAE,KAAK,YAAY,EAAE,KAAK,aAAa,EAAE,KAAK,OAAO,IAAI,CAAC,KAAK,gBAAgB,EAAE,KAAK,gBAAgB,CAAC,EAAE,KAAK,gBAAgB,IAAI,CAAC,KAAK,UAAUK,GAAQ,KAAK,MAAMA,EAAO,WAAW,KAAK,OAAOA,EAAO,aAAa,KAAK,mBAAmB,cAAc,KAAK,MAAM,KAAK,QAAQ,YAAY,KAAK,OAAO,KAAK,QAAQ,aAAa,EAAE,KAAK,gBAAgB,IAAI,CAAC,KAAK,UAAUA,GAAQ,KAAK,aAAa,KAAK,QAAQ,aAAa,KAAK,YAAY,KAAK,QAAQ,aAAa,KAAK,mBAAmB,cAAc,KAAK,aAAa,KAAK,QAAQ,aAAa,KAAK,YAAY,KAAK,QAAQ,YAAY,EAAE,KAAK,QAAQT,EAAE,KAAK,QAAQC,EAAEC,IAAI,KAAK,gBAAgB,SAAkBF,EAAE,EAAE,CAAC,IAAIE,EAAE,OAAO,UAAU,CAAC,IAAIE,EAAE,UAAUC,EAAE,KAAK,aAAaH,CAAC,EAAEA,EAAE,WAAY,UAAU,CAACF,EAAE,MAAMK,EAAED,CAAC,CAAC,EAAG,CAAC,CAAC,CAAC,EAAE,KAAK,OAAOA,CAAC,EAAE,KAAK,UAAUK,EAAOA,EAAO,iBAAiB,SAAS,KAAK,gBAAgB,EAAE,GAAG,KAAK,sBAAsB,IAAI,eAAe,KAAK,eAAe,EAAE,KAAK,sBAAsB,QAAQ,KAAK,OAAO,GAAG,KAAK,sBAAsB,IAAI,eAAe,KAAK,eAAe,EAAE,KAAK,sBAAsB,QAAQ,KAAK,OAAO,GAAG,KAAK,OAAO,CAAC,CAAC,SAAS,CAAC,IAAIT,EAAEC,GAAUD,EAAE,KAAK,yBAAf,MAAgDA,IAAT,QAAYA,EAAE,WAAW,GAAUC,EAAE,KAAK,yBAAf,MAAgDA,IAAT,QAAYA,EAAE,WAAW,EAAEQ,EAAO,oBAAoB,SAAS,KAAK,gBAAgB,EAAE,CAAC,CAAC,IAAI,OAAO,CAAC,MAAM,CAAC,EAAE,KAAK,YAAY,KAAK,MAAM,EAAE,KAAK,aAAa,KAAK,MAAM,CAAC,CAAC,EAAOC,GAAN,KAAa,CAAC,aAAa,CAAC,KAAK,OAAO,CAAC,CAAC,CAAC,KAAKV,KAAKC,EAAE,CAAC,IAAIC,EAAE,KAAK,OAAOF,CAAC,GAAG,CAAC,EAAE,QAAQA,EAAE,EAAEI,EAAEF,EAAE,OAAOF,EAAEI,EAAEJ,IAAIE,EAAEF,CAAC,EAAE,GAAGC,CAAC,CAAC,CAAC,GAAGD,EAAEC,EAAE,CAAC,IAAIC,EAAE,MAAO,GAAQA,EAAE,KAAK,OAAOF,CAAC,KAAvB,MAAoCE,IAAT,SAAkBA,EAAE,KAAKD,CAAC,IAAK,KAAK,OAAOD,CAAC,EAAE,CAACC,CAAC,GAAG,IAAI,CAAC,IAAIC,EAAE,KAAK,OAAOF,CAAC,GAAUE,EAAE,KAAK,OAAOF,CAAC,KAAvB,MAAoCE,IAAT,OAAW,OAAOA,EAAE,OAAQF,GAAGC,IAAID,CAAE,CAAC,CAAC,CAAC,IAAIA,EAAEC,EAAE,CAAC,IAAIC,EAAE,KAAK,OAAOF,CAAC,GAAUE,EAAE,KAAK,OAAOF,CAAC,KAAvB,MAAoCE,IAAT,OAAW,OAAOA,EAAE,OAAQF,GAAGC,IAAID,CAAE,CAAC,CAAC,SAAS,CAAC,KAAK,OAAO,CAAC,CAAC,CAAC,EAAOA,GAAE,IAAI,EAAQW,GAAN,KAAmB,CAAC,YAAYV,EAAE,CAAC,gBAAgBC,EAAE,EAAE,gBAAgBE,EAAE,CAAC,EAAE,CAAC,KAAK,UAAU,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,YAAY,EAAE,KAAK,aAAa,EAAE,KAAK,aAAaJ,GAAG,CAAC,GAAK,CAAC,QAAQC,EAAE,QAAQC,CAAC,EAAEF,EAAE,cAAcA,EAAE,cAAc,CAAC,EAAEA,EAAE,KAAK,WAAW,EAAEC,EAAE,KAAK,WAAW,EAAEC,EAAE,KAAK,UAAU,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,QAAQ,KAAK,SAAS,CAAC,OAAO,EAAE,OAAO,EAAE,MAAMF,CAAC,CAAC,CAAC,EAAE,KAAK,YAAYA,GAAG,CAAC,IAAIC,EAAEC,EAAEE,EAAEC,EAAE,GAAK,CAAC,QAAQC,EAAE,QAAQC,CAAC,EAAEP,EAAE,cAAcA,EAAE,cAAc,CAAC,EAAEA,EAAEY,EAAE,EAAEN,IAAWJ,GAAUD,EAAE,KAAK,cAAf,MAAqCA,IAAT,OAAW,OAAOA,EAAE,KAA1D,MAAuEC,IAAT,OAAWA,EAAE,IAAI,KAAK,gBAAgBW,EAAE,EAAEN,IAAWF,GAAUD,EAAE,KAAK,cAAf,MAAqCA,IAAT,OAAW,OAAOA,EAAE,KAA1D,MAAuEC,IAAT,OAAWA,EAAE,IAAI,KAAK,gBAAgB,KAAK,WAAW,EAAEC,EAAE,KAAK,WAAW,EAAEC,EAAE,KAAK,UAAU,CAAC,EAAEK,EAAE,EAAEC,CAAC,EAAE,KAAK,QAAQ,KAAK,SAAS,CAAC,OAAOD,EAAE,OAAOC,EAAE,MAAMb,CAAC,CAAC,CAAC,EAAE,KAAK,WAAWA,GAAG,CAAC,KAAK,QAAQ,KAAK,SAAS,CAAC,OAAO,KAAK,UAAU,EAAE,OAAO,KAAK,UAAU,EAAE,MAAMA,CAAC,CAAC,CAAC,EAAE,KAAK,QAAQC,GAAG,CAAC,GAAG,CAAC,OAAOC,EAAE,OAAOE,EAAE,UAAUC,CAAC,EAAEJ,EAAEC,GAAOG,IAAJ,EAAML,GAAMK,IAAJ,EAAM,KAAK,YAAY,EAAED,GAAOC,IAAJ,EAAML,GAAMK,IAAJ,EAAM,KAAK,aAAa,EAAEH,GAAG,KAAK,gBAAgBE,GAAG,KAAK,gBAAgB,KAAK,QAAQ,KAAK,SAAS,CAAC,OAAOF,EAAE,OAAOE,EAAE,MAAMH,CAAC,CAAC,CAAC,EAAE,KAAK,eAAe,IAAI,CAAC,KAAK,YAAYQ,EAAO,WAAW,KAAK,aAAaA,EAAO,WAAW,EAAE,KAAK,QAAQR,EAAE,KAAK,gBAAgBC,EAAE,KAAK,gBAAgBE,EAAE,KAAK,WAAW,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,QAAQ,IAAIM,GAAQD,EAAO,iBAAiB,SAAS,KAAK,eAAe,EAAE,EAAE,KAAK,eAAe,EAAE,KAAK,QAAQ,iBAAiB,QAAQ,KAAK,QAAQ,CAAC,QAAQ,EAAE,CAAC,EAAE,KAAK,QAAQ,iBAAiB,aAAa,KAAK,aAAa,CAAC,QAAQ,EAAE,CAAC,EAAE,KAAK,QAAQ,iBAAiB,YAAY,KAAK,YAAY,CAAC,QAAQ,EAAE,CAAC,EAAE,KAAK,QAAQ,iBAAiB,WAAW,KAAK,WAAW,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,GAAGT,EAAEC,EAAE,CAAC,OAAO,KAAK,QAAQ,GAAGD,EAAEC,CAAC,CAAC,CAAC,SAAS,CAAC,KAAK,QAAQ,QAAQ,EAAEQ,EAAO,oBAAoB,SAAS,KAAK,eAAe,EAAE,EAAE,KAAK,QAAQ,oBAAoB,QAAQ,KAAK,OAAO,EAAE,KAAK,QAAQ,oBAAoB,aAAa,KAAK,YAAY,EAAE,KAAK,QAAQ,oBAAoB,YAAY,KAAK,WAAW,EAAE,KAAK,QAAQ,oBAAoB,WAAW,KAAK,UAAU,CAAC,CAAC,EAAOK,GAAN,KAAW,CAAC,YAAY,CAAC,QAAQd,EAAES,EAAO,QAAQR,EAAE,SAAS,gBAAgB,kBAAkBC,EAAEF,EAAE,aAAaI,EAAEF,EAAE,YAAYG,EAAE,GAAG,UAAUC,EAAE,GAAG,cAAcC,EAAE,KAAK,uBAAuBK,EAAE,GAAG,SAASC,EAAE,OAAOE,EAAGf,GAAG,KAAK,IAAI,EAAE,MAAM,KAAK,IAAI,EAAE,IAAIA,CAAC,CAAC,EAAG,KAAKgB,EAAE,GAAG,SAASC,EAAE,GAAG,YAAYC,EAAE,WAAW,mBAAmBC,EAAE,WAAW,gBAAgBC,EAAE,EAAE,gBAAgBC,EAAE,EAAE,WAAWC,EAAE,GAAG,QAAQC,EAAE,cAAcC,EAAE,gCAAgCC,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,KAAK,cAAc,GAAG,KAAK,YAAY,GAAG,KAAK,WAAW,GAAG,KAAK,SAAS,CAAC,EAAE,KAAK,aAAa,EAAE,KAAK,SAAS,EAAE,KAAK,UAAU,EAAE,KAAK,cAAczB,GAAG,CAAKA,EAAE,SAAN,GAAc,KAAK,MAAM,CAAC,EAAE,KAAK,gBAAgBA,GAAG,CAAC,GAAe,OAAO,KAAK,QAAQ,eAAhC,YAAoD,KAAK,QAAQ,cAAcA,CAAC,IAAjC,GAAmC,OAAO,GAAK,CAAC,OAAOC,EAAE,OAAOC,EAAE,MAAME,CAAC,EAAEJ,EAAE,GAAG,KAAK,QAAQ,KAAK,iBAAiB,CAAC,OAAOC,EAAE,OAAOC,EAAE,MAAME,CAAC,CAAC,EAAEA,EAAE,QAAQ,OAAO,IAAMC,EAAED,EAAE,KAAK,SAAS,OAAO,EAAEE,EAAEF,EAAE,KAAK,SAAS,OAAO,EAA8D,GAA5D,KAAK,WAA0BA,EAAE,OAAjB,cAAqCA,EAAE,OAAhB,YAAwB,KAAK,QAAQ,WAAWC,GAAkBD,EAAE,OAAjB,cAAuB,CAAC,KAAK,WAAW,CAAC,KAAK,SAAS,OAAO,KAAK,KAAK,MAAM,EAAE,IAAMG,EAAMN,IAAJ,GAAWC,IAAJ,EAAMU,EAAe,KAAK,QAAQ,qBAA1B,YAAkDV,IAAJ,GAAsB,KAAK,QAAQ,qBAA5B,cAAoDD,IAAJ,EAAM,GAAGM,GAAGK,EAAE,OAAO,IAAIC,EAAET,EAAE,aAAa,EAAES,EAAEA,EAAE,MAAM,EAAEA,EAAE,QAAQ,KAAK,WAAW,CAAC,EAAE,IAAME,GAAE,KAAK,QAAQ,QAAQ,GAAGF,EAAE,KAAMb,GAAG,CAAC,IAAIC,GAAEC,EAAEE,GAAEG,GAAEK,GAAE,OAAOZ,aAAa,UAAsB,OAAOe,IAAnB,YAAsCA,KAAEf,CAAC,KAAaC,GAAED,EAAE,gBAAZ,MAAoCC,KAAT,OAAW,OAAOA,GAAE,KAAKD,EAAE,oBAAoB,IAAIK,KAAYH,EAAEF,EAAE,gBAAZ,MAAoCE,IAAT,OAAW,OAAOA,EAAE,KAAKF,EAAE,0BAA0B,IAAIM,KAAYF,GAAEJ,EAAE,gBAAZ,MAAoCI,KAAT,OAAW,OAAOA,GAAE,KAAKJ,EAAE,0BAA0B,MAAaO,GAAEP,EAAE,aAAZ,MAAiCO,KAAT,OAAW,OAAOA,GAAE,SAAS,OAAO,IAAI,EAAE,GAAQK,GAAEZ,EAAE,aAAZ,MAAiCY,KAAT,SAAkBA,GAAE,SAAS,eAAe,GAAG,CAAE,EAAE,OAAO,GAAG,KAAK,WAAW,KAAK,SAAS,OAAO,KAAKR,EAAE,eAAe,EAAE,GAAG,EAAE,KAAK,QAAQ,WAAWC,GAAG,KAAK,QAAQ,aAAaC,GAAG,OAAO,KAAK,YAAY,SAAS,KAAK,KAAK,QAAQ,KAAK,EAAEF,EAAE,eAAe,EAAE,IAAIY,EAAEd,EAAW,KAAK,QAAQ,qBAAtB,OAAyCc,EAAE,KAAK,IAAId,CAAC,EAAE,KAAK,IAAID,CAAC,EAAEC,EAAED,EAAiB,KAAK,QAAQ,qBAA5B,eAAiDe,EAAEf,GAAG,IAAMgB,GAAEZ,GAAG,KAAK,QAAQ,UAAUa,GAAEb,GAAgBD,EAAE,OAAf,YAAqB,KAAK,IAAIY,CAAC,EAAE,EAAEE,KAAIF,EAAE,KAAK,SAAS,KAAK,QAAQ,wBAAwB,KAAK,SAAS,KAAK,aAAaA,EAAE,OAAO,OAAO,CAAC,aAAa,EAAE,EAAEC,GAAE,CAAC,KAAKC,GAAE,KAAK,QAAQ,cAAc,CAAC,EAAE,CAAC,KAAK,KAAK,QAAQ,KAAK,SAAS,KAAK,QAAQ,SAAS,OAAO,KAAK,QAAQ,MAAM,CAAC,CAAC,CAAC,EAAE,KAAK,eAAe,IAAI,CAAC,GAAG,aAAa,KAAK,sBAAsB,EAAE,OAAO,KAAK,uBAAuB,KAAK,+BAA+B,OAAO,KAAK,uCAA4C,KAAK,cAAV,IAAkC,KAAK,cAAhB,SAA4B,CAAC,IAAMlB,EAAE,KAAK,eAAe,KAAK,eAAe,KAAK,aAAa,KAAK,aAAa,KAAK,aAAa,KAAK,SAAS,KAAK,SAAS,KAAK,eAAeA,EAAE,KAAK,UAAU,KAAK,KAAK,KAAK,eAAeA,CAAC,EAAE,KAAK,YAAY,SAAS,KAAK,KAAK,EAAM,KAAK,WAAT,IAAoB,KAAK,uBAAuB,WAAY,IAAI,CAAC,KAAK,aAAa,KAAK,SAAS,KAAK,SAAS,EAAE,KAAK,YAAY,GAAG,KAAK,KAAK,CAAC,EAAG,GAAG,GAAG,EAAES,EAAO,aAAa,QAAQT,GAAGA,IAAI,SAAS,iBAAiBA,IAAI,SAAS,OAAOA,EAAES,GAAQ,KAAK,QAAQ,CAAC,QAAQT,EAAE,QAAQC,EAAE,kBAAkBC,EAAE,aAAaE,EAAE,YAAYC,EAAE,UAAUC,EAAE,cAAcC,EAAE,uBAAuBK,EAAE,SAASC,EAAE,OAAOE,EAAE,KAAKC,EAAE,SAASC,EAAE,mBAAmBE,EAAE,YAAYD,EAAE,gBAAgBE,EAAE,gBAAgBC,EAAE,WAAWC,EAAE,QAAQC,EAAE,cAAcC,EAAE,gCAAgCC,CAAC,EAAE,KAAK,QAAQ,IAAItB,GAAQ,KAAK,QAAQ,IAAIO,GAAQ,KAAK,WAAW,IAAIF,GAAW,CAAC,QAAQR,EAAE,QAAQC,EAAE,WAAWqB,CAAC,CAAC,EAAE,KAAK,gBAAgB,EAAE,KAAK,SAAS,CAAC,EAAE,KAAK,KAAK,EAAE,KAAK,SAAS,KAAK,aAAa,EAAE,KAAK,SAAS,GAAG,KAAK,UAAU,GAAG,KAAK,YAAY,GAAG,KAAK,aAAa,KAAK,eAAe,KAAK,aAAa,KAAK,QAAQ,QAAQ,iBAAiB,SAAS,KAAK,eAAe,EAAE,EAAE,KAAK,QAAQ,QAAQ,iBAAiB,cAAc,KAAK,cAAc,EAAE,EAAE,KAAK,cAAc,IAAIX,GAAcP,EAAE,CAAC,gBAAgBgB,EAAE,gBAAgBC,CAAC,CAAC,EAAE,KAAK,cAAc,GAAG,SAAS,KAAK,eAAe,CAAC,CAAC,SAAS,CAAC,KAAK,QAAQ,QAAQ,EAAE,KAAK,QAAQ,QAAQ,oBAAoB,SAAS,KAAK,eAAe,EAAE,EAAE,KAAK,QAAQ,QAAQ,oBAAoB,cAAc,KAAK,cAAc,EAAE,EAAE,KAAK,cAAc,QAAQ,EAAE,KAAK,WAAW,QAAQ,EAAE,KAAK,iBAAiB,CAAC,CAAC,GAAGrB,EAAEC,EAAE,CAAC,OAAO,KAAK,QAAQ,GAAGD,EAAEC,CAAC,CAAC,CAAC,IAAID,EAAEC,EAAE,CAAC,OAAO,KAAK,QAAQ,IAAID,EAAEC,CAAC,CAAC,CAAC,UAAUD,EAAE,CAAC,KAAK,aAAa,KAAK,YAAY,WAAWA,EAAE,KAAK,YAAY,UAAUA,CAAC,CAAC,QAAQ,CAAC,KAAK,WAAW,OAAO,CAAC,CAAC,MAAM,CAAC,KAAK,QAAQ,KAAK,SAAS,IAAI,CAAC,CAAC,OAAO,CAAC,KAAK,SAAS,GAAG,KAAK,YAAY,GAAG,KAAK,eAAe,KAAK,aAAa,KAAK,aAAa,KAAK,aAAa,KAAK,SAAS,EAAE,KAAK,QAAQ,KAAK,CAAC,CAAC,OAAO,CAAC,KAAK,YAAY,KAAK,UAAU,GAAG,KAAK,MAAM,EAAE,CAAC,MAAM,CAAC,KAAK,YAAY,KAAK,UAAU,GAAG,KAAK,QAAQ,KAAK,EAAE,KAAK,MAAM,EAAE,CAAC,IAAIA,EAAE,CAAC,IAAMC,EAAED,GAAG,KAAK,MAAMA,GAAG,KAAK,KAAKA,EAAE,KAAK,QAAQ,QAAQ,KAAKC,CAAC,CAAC,CAAC,SAASD,EAAE,CAAC,OAAOC,EAAE,EAAE,UAAUC,EAAE,GAAG,KAAKE,EAAE,GAAG,SAASC,EAAE,KAAK,QAAQ,SAAS,OAAOC,EAAE,KAAK,QAAQ,OAAO,KAAKC,EAAE,KAAK,QAAQ,KAAK,QAAQK,EAAE,WAAWC,EAAE,MAAME,EAAE,GAAG,aAAaC,EAAE,GAAG,SAASC,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,GAAG,CAAC,KAAK,WAAW,CAAC,KAAK,UAAUF,EAAE,CAAC,GAAa,OAAOf,GAAjB,UAAoB,CAAC,MAAM,OAAO,OAAO,EAAE,SAASA,CAAC,EAAEA,EAAE,UAAoB,OAAOA,GAAjB,UAAoB,CAAC,SAAS,QAAQ,KAAK,EAAE,SAASA,CAAC,EAAEA,EAAE,KAAK,UAAU,CAAC,IAAIE,EAAE,GAAa,OAAOF,GAAjB,SAAmBE,EAAE,SAAS,cAAcF,CAAC,EAAEA,aAAa,aAA6BA,GAAE,WAAYE,EAAEF,GAAGE,EAAE,CAAC,GAAG,KAAK,QAAQ,UAAUO,EAAO,CAAC,IAAMT,EAAE,KAAK,YAAY,sBAAsB,EAAEC,GAAG,KAAK,aAAaD,EAAE,KAAKA,EAAE,IAAI,IAAMI,EAAEF,EAAE,sBAAsB,EAAEF,GAAG,KAAK,aAAaI,EAAE,KAAKA,EAAE,KAAK,KAAK,gBAAgB,GAAa,OAAOJ,GAAjB,WAAqBA,GAAGC,EAAED,EAAE,KAAK,MAAMA,CAAC,EAAE,KAAK,QAAQ,SAASgB,IAAI,KAAK,aAAa,KAAK,eAAe,KAAK,QAAQhB,EAAED,GAAM,EAAEC,EAAE,KAAK,KAAK,EAAEA,IAAI,KAAK,cAAc,CAAC,GAAG,KAAK,SAASiB,EAAEf,EAAE,OAAO,KAAK,eAAe,KAAK,aAAaF,EAAE,KAAK,UAAU,KAAK,MAAM,EAAE,KAAK,MAAM,EAAE,KAAK,6BAA6B,EAAE,KAAK,KAAK,EAAWa,IAAE,IAAI,EAAE,KAAK,KAAK,SAAS,CAAC,GAAGG,IAAI,KAAK,aAAahB,GAAG,KAAK,QAAQ,OAAO,KAAK,eAAeA,EAAE,CAAC,SAASK,EAAE,OAAOC,EAAE,KAAKC,EAAE,QAAQ,IAAI,CAACH,IAAI,KAAK,SAAS,IAAI,KAAK,YAAY,SAAkBQ,IAAE,IAAI,CAAC,EAAE,SAAS,CAACZ,EAAEC,IAAI,CAAC,KAAK,YAAY,SAAS,KAAK,aAAa,KAAK,SAAS,KAAK,SAASD,EAAE,KAAK,eAAe,KAAK,UAAU,KAAK,KAAK,KAAK,QAAQ,EAAE,KAAK,eAAeA,EAAE,KAAK,UAAU,KAAK,MAAM,EAAEgB,IAAI,KAAK,aAAahB,GAAGC,GAAG,KAAK,KAAK,EAAEA,IAAI,KAAK,MAAM,EAAE,KAAK,KAAK,EAAWY,IAAE,IAAI,EAAE,KAAK,SAAS,CAAC,EAAE,KAAK,6BAA6B,EAAE,CAAC,CAAC,GAAG,CAAC,8BAA8B,CAAC,KAAK,+BAA+B,GAAG,sBAAuB,IAAI,CAAC,OAAO,KAAK,8BAA8B,CAAE,CAAC,CAAC,IAAI,aAAa,CAAC,OAAO,KAAK,QAAQ,UAAUJ,EAAO,SAAS,gBAAgB,KAAK,QAAQ,OAAO,CAAC,IAAI,OAAO,CAAC,OAAO,KAAK,QAAQ,gCAAgC,KAAK,aAAa,KAAK,YAAY,YAAY,KAAK,YAAY,YAAY,KAAK,YAAY,aAAa,KAAK,YAAY,aAAa,KAAK,WAAW,MAAM,KAAK,aAAa,IAAI,GAAG,CAAC,CAAC,IAAI,cAAc,CAAC,OAAqB,KAAK,QAAQ,cAA5B,YAAuC,CAAC,IAAI,cAAc,CAAC,OAAO,KAAK,aAAa,KAAK,YAAY,WAAW,KAAK,YAAY,SAAS,CAAC,IAAI,QAAQ,CAAC,OAAO,KAAK,QAAQ,SAAS,SAAgBT,EAAEC,EAAE,CAAC,OAAOD,EAAEC,EAAEA,GAAGA,CAAC,EAAE,KAAK,eAAe,KAAK,KAAK,EAAE,KAAK,cAAc,CAAC,IAAI,UAAU,CAAC,OAAW,KAAK,QAAT,EAAe,EAAE,KAAK,OAAO,KAAK,KAAK,CAAC,IAAI,aAAa,CAAC,OAAO,KAAK,aAAa,CAAC,IAAI,YAAYD,EAAE,CAAC,KAAK,gBAAgBA,IAAI,KAAK,cAAcA,EAAE,KAAK,gBAAgB,EAAE,CAAC,IAAI,WAAW,CAAC,OAAO,KAAK,WAAW,CAAC,IAAI,UAAUA,EAAE,CAAC,KAAK,cAAcA,IAAI,KAAK,YAAYA,EAAE,KAAK,gBAAgB,EAAE,CAAC,IAAI,UAAU,CAAC,OAAO,KAAK,UAAU,CAAC,IAAI,SAASA,EAAE,CAAC,KAAK,aAAaA,IAAI,KAAK,WAAWA,EAAE,KAAK,gBAAgB,EAAE,CAAC,IAAI,UAAU,CAAC,OAAiB,KAAK,cAAhB,QAA2B,CAAC,IAAI,WAAW,CAAC,IAAIA,EAAE,QAAQ,OAAO,KAAK,YAAYA,GAAG,kBAAkB,KAAK,WAAWA,GAAG,iBAAiB,KAAK,cAAcA,GAAG,oBAA+B,KAAK,cAAhB,WAA8BA,GAAG,iBAAiBA,CAAC,CAAC,iBAAiB,CAAC,KAAK,iBAAiB,EAAE,KAAK,YAAY,UAAU,GAAG,KAAK,YAAY,aAAa,KAAK,YAAY,KAAK,CAAC,CAAC,kBAAkB,CAAC,KAAK,YAAY,UAAU,KAAK,YAAY,UAAU,QAAQ,gBAAgB,EAAE,EAAE,KAAK,CAAC,CAAC,ECGxga,SAAR0B,GAA8BC,EAAM,CAAC,GAAK,CAAC,UAAAC,CAAS,EAAED,EAAYE,EAAMC,EAAO,IAAI,EAAE,OAAAC,EAAU,IAAI,CAAIF,EAAM,SAAQA,EAAM,QAAQ,SAAS,EAAE,CAAC,UAAU,EAAI,CAAC,CAAE,EAAE,CAACA,CAAK,CAAC,EACnLE,EAAU,IAAI,CAAC,IAAMC,EAAe,SAAS,eAAe,SAAS,EAAE,GAAGA,EAAe,CAAC,IAAMC,EAAc,IAAI,CAAiBC,EAAO,iBAAiB,SAAS,eAAe,EAAmC,WAAW,UAA8BF,EAAe,aAAa,qBAAqB,MAAM,CAAG,EACnTG,EAAa,IAAI,iBAAiBC,GAAW,CAAC,QAAUC,KAAYD,EAAcC,EAAS,OAAO,cAAcA,EAAS,gBAAgB,SAASJ,EAAc,CAAI,CAAC,EAC3K,OAAAE,EAAa,QAAQ,SAAS,gBAAgB,CAAC,WAAW,GAAK,gBAAgB,CAAC,OAAO,CAAC,CAAC,EACzFF,EAAc,EAAQ,IAAI,CAACE,EAAa,WAAW,CAAE,EAAG,EAAE,CAAC,CAAC,EAoC5DJ,EAAU,IAAI,CAAC,IAAMO,EAAY,SAAS,qBAAqB,GAAG,EAAE,QAAQC,EAAE,EAAEA,EAAED,EAAY,OAAOC,IAAI,CAAC,IAAMC,EAAQF,EAAYC,CAAC,EAAsBL,EAAO,iBAAiBM,CAAO,EAAmB,iBAAiB,UAAU,IAAI,QAAQA,EAAQ,aAAa,qBAAqB,MAAM,EAAI,EAAE,CAAC,CAAC,EAAET,EAAU,IAAI,CAACF,EAAM,QAAQ,IAAIY,GAAM,CAAC,SAASb,EAAU,EAAE,CAAC,EAAE,IAAMc,EAAIC,GAAM,CAAId,EAAM,UAASA,EAAM,QAAQ,IAAIc,CAAI,EAAE,sBAAsBD,CAAG,EAAG,EAAE,6BAAsBA,CAAG,EAAQ,IAAI,CAAIb,EAAM,UAASA,EAAM,QAAQ,QAAQ,EAAEA,EAAM,QAAQ,KAAM,CAAE,EAAE,CAAC,CAAC,EAAEE,EAAU,IAAI,CAAC,IAAMa,EAAa,SAAS,cAAc,OAAO,EAAE,OAAAA,EAAa,YAAY;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAoB5oB,SAAS,KAAK,YAAYA,CAAY,EAAQ,IAAI,CAAC,SAAS,KAAK,YAAYA,CAAY,CAAE,CAAE,EAAE,CAAC,CAAC,EACnGb,EAAU,IAAI,CACd,IAAMc,EAAgB,CAAC,GAAG,SAAS,iBAAiB,SAAS,CAAC,EAAE,OAAOC,GAAQA,EAAO,KAAK,SAAS,GAAG,CAAC,EAAE,IAAIA,GAAQ,CAAC,IAAMC,EAAK,IAAID,EAAO,KAAK,MAAM,GAAG,EAAE,IAAI,IAAUE,EAAY,mBAAmBD,CAAI,EAAME,EAAa,EAAQC,EAAc,SAAS,cAAcF,CAAW,EAAE,OAAGE,IAAeD,EAAa,SAASf,EAAO,iBAAiBgB,CAAa,EAAE,eAAe,GAAS,CAAC,KAAAH,EAAK,aAAAE,EAAa,cAAcH,CAAM,CAAE,CAAC,EAAQK,EAAY,CAACC,EAAEL,EAAKE,IAAe,CAACG,EAAE,eAAe,EAAEvB,EAAM,QAAQ,SAASkB,EAAK,CAAC,OAAO,CAACE,CAAY,CAAC,CAAE,EAAQI,EAASR,EAAgB,IAAI,CAAC,CAAC,KAAAE,EAAK,aAAAE,CAAY,IAAIG,GAAGD,EAAYC,EAAEL,EAAKE,CAAY,CAAC,EAAE,OAAAJ,EAAgB,QAAQ,CAAC,CAAC,cAAAS,CAAa,EAAEC,IAAQ,CAACD,EAAc,iBAAiB,QAAQD,EAASE,CAAK,CAAC,CAAE,CAAC,EAAQ,IAAI,CAACV,EAAgB,QAAQ,CAAC,CAAC,cAAAS,CAAa,EAAEC,IAAQ,CAACD,EAAc,oBAAoB,QAAQD,EAASE,CAAK,CAAC,CAAE,CAAC,CAAE,CAAE,EAAE,CAAC1B,CAAK,CAAC,EAAsB2B,EAAKC,GAAU,CAAC,CAAC,CAAE,CAAC/B,GAAa,YAAY,gBAAgBgC,EAAoBhC,GAAa,CAAC,UAAU,CAAC,MAAM,YAAY,KAAKiC,EAAY,OAAO,aAAa,GAAG,YAAY,oEAAoE,CAAC,CAAC,ECjE1iC,SAASC,GAAYC,EAAO,CACjH,IAAMC,EAAUC,GAAK,CAAC,MAAM,OAAO,OAAO,CAAC,GAAGF,CAAM,CAAC,CAAC,CAAC,EACjDG,EAAaC,GAAU,CAC1B,OAAOA,GAAW,aAAYA,EAASA,EAASH,EAAU,KAAK,GAAGA,EAAU,MAAM,OAAO,OAAO,CAAC,GAAGA,EAAU,MAAM,GAAGG,CAAQ,CAAC,CAAE,EACjIC,EAAW,OAAOL,GAAS,SAAS,OAAO,OAAO,CAAC,GAAGA,CAAM,CAAC,EAAEA,EAC7DM,EAAa,IAAI,IACjBC,EAAcH,GAAU,CAC3B,OAAOA,GAAW,aAAYA,EAASA,EAASC,CAAU,GAAGA,EAAW,OAAOD,GAAW,SAAS,OAAO,OAAO,CAAC,GAAGC,EAAW,GAAGD,CAAQ,CAAC,EAAEA,EACjJE,EAAa,QAAQE,GAAQA,EAAOH,CAAU,CAAC,CAAE,EACjD,SAASI,GAAU,CACnB,GAAK,CAACC,EAAMC,CAAQ,EAAEC,EAASP,CAAU,EAIzC,OAFAQ,EAAU,KACVP,EAAa,IAAIK,CAAQ,EAAQ,IAAIL,EAAa,OAAOK,CAAQ,GAAI,CAAC,CAAC,EACpEG,GAAe,IAAI,IAAMA,GAAe,EAAQ,CAACb,EAAU,MAAME,CAAY,GAC1E,CAACO,EAAMH,CAAa,CAAG,CAAC,OAAOE,CAAS,CCfua,IAAMM,GAAgB,CAAC,CAAC,MAAAC,EAAM,YAAAC,EAAY,eAAAC,CAAc,IAAyBC,EAAM,MAAM,CAAC,MAAM,CAAC,QAAQ,OAAO,cAAc,SAAS,WAAW,SAAS,UAAU,SAAS,eAAe,SAAS,gBAAgB,0BAA0B,SAAS,SAAS,GAAGD,CAAc,EAAE,SAAS,CAAcE,EAAK,OAAO,CAAC,KAAK,MAAM,aAAa,OAAO,MAAM,CAAC,SAAS,MAAM,EAAE,SAAS,QAAG,CAAC,EAAeD,EAAM,MAAM,CAAC,MAAM,CAAC,SAAS,OAAO,EAAE,SAAS,CAAcC,EAAK,KAAK,CAAC,MAAM,CAAC,SAAS,GAAG,MAAM,OAAO,WAAW,GAAG,EAAE,SAASJ,CAAK,CAAC,EAAeI,EAAK,IAAI,CAAC,MAAM,CAAC,SAAS,GAAG,MAAM,2BAA2B,WAAW,GAAG,EAAE,SAASH,CAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAA0qB,IAAMI,GAAe,CAAC,KAAKC,EAAY,OAAO,SAAS,CAAC,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,MAAM,aAAa,SAAS,EAAE,EAAE,CAAC,MAAM,IAAI,KAAKA,EAAY,OAAO,aAAa,EAAE,IAAI,KAAK,IAAI,GAAG,EAAE,EAAE,CAAC,MAAM,IAAI,KAAKA,EAAY,OAAO,aAAa,EAAE,IAAI,KAAK,IAAI,GAAG,EAAE,KAAK,CAAC,MAAM,OAAO,KAAKA,EAAY,OAAO,aAAa,EAAE,IAAI,EAAE,IAAI,GAAG,CAAC,CAAC,EAAeC,GAAe,CAAC,OAAO,CAAC,KAAKD,EAAY,KAAK,aAAa,OAAO,wBAAwB,GAAK,QAAQ,CAAC,OAAO,OAAO,EAAE,aAAa,CAAC,OAAO,OAAO,CAAC,EAAE,aAAa,CAAC,MAAM,IAAI,KAAKA,EAAY,OAAO,aAAa,GAAG,OAAOE,EAAM,CAAC,OAAOA,EAAM,SAAS,MAAO,CAAC,CAAC,EAA0e,IAAMC,GAASC,GAAY,CAAC,aAAa,OAAU,cAAc,OAAU,MAAM,OAAU,OAAO,OAAU,WAAW,OAAU,KAAK,EAAE,YAAY,GAAG,WAAW,MAAS,CAAC,ECCxgG,SAASC,GAAkBC,EAAU,CAAC,GAAK,CAACC,EAAgBC,CAAkB,EAAQC,EAAS,EAAK,EAAE,OAAMC,EAAU,IAAI,CAAC,IAAIC,EAAU,GAA4U,OAAnT,SAAS,CAAC,IAAMC,EAAcN,EAAU,IAAIO,GAAa,IAAI,QAAQ,CAACC,EAAQC,IAAS,CAAC,IAAMC,EAAI,IAAI,MAAMA,EAAI,IAAIH,EAAIG,EAAI,OAAOF,EAAQE,EAAI,QAAQD,CAAO,CAAC,CAAG,EAAE,GAAG,CAAC,MAAM,QAAQ,IAAIH,CAAa,EAAKD,GAAWH,EAAmB,EAAI,CAAG,OAAOS,EAAN,CAAa,QAAQ,MAAM,4BAA4BA,CAAK,CAAE,CAAC,GAAgB,EAAQ,IAAI,CAACN,EAAU,EAAM,CAAE,EAAE,CAACL,CAAS,CAAC,EAASC,CAAgB,CAQthB,SAARW,GAAkC,CAAC,OAAAC,EAAO,CAAC,EAAE,MAAAC,EAAM,CAAC,MAAM,IAAI,OAAO,IAAI,OAAO,EAAE,IAAI,MAAM,EAAE,UAAAC,EAAU,GAAG,WAAAC,EAAW,EAAE,YAAAC,EAAY,CAAC,QAAQ,GAAM,MAAM,GAAG,EAAE,UAAAC,EAAU,CAAC,GAAG,CAAC,KAAK,CAAC,QAAQ,EAAE,MAAM,GAAG,KAAK,EAAE,KAAK,KAAK,SAAS,EAAE,SAAS,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,KAAK,SAAS,EAAE,SAAS,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,WAAW,CAAC,KAAK,SAAS,UAAU,IAAI,QAAQ,EAAE,CAAC,EAAE,IAAI,CAAC,QAAQ,EAAE,MAAM,GAAG,KAAK,EAAE,KAAK,KAAK,SAAS,EAAE,SAAS,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,WAAW,CAAC,KAAK,SAAS,UAAU,IAAI,QAAQ,EAAE,CAAC,CAAC,EAAE,GAAGC,CAAK,EAAE,CAAC,IAAMC,EAAU,KAAKL,EAAU,GAAG,IAAI,GAAQ,CAACM,EAASC,CAAW,EAAQnB,EAAS,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,EAAO,CAACoB,EAAWC,CAAa,EAAQrB,EAAS,EAAK,EAAO,CAACsB,EAAkBC,CAAoB,EAAQvB,EAAS,CAAC,EAAO,CAACwB,EAAaC,CAAe,EAAQzB,EAAS,CAAC,CAAC,EAAO,CAAC0B,EAAaC,CAAe,EAAQ3B,EAAS,EAAK,EAAQ4B,EAAmBC,EAAO,IAAI,EAAQ/B,EAAgBF,GAAkB8B,EAAahB,EAAO,CAAC,CAAC,EAAQT,EAAU,IAAI,CAAC,IAAM6B,EAAS,IAAI,qBAAqB,CAAC,CAACC,CAAK,IAAI,CAACJ,EAAgBI,EAAM,cAAc,CAAE,EAAE,CAAC,KAAK,KAAK,WAAW,MAAM,UAAU,EAAE,CAAC,EAAE,OAAGH,EAAa,SAASE,EAAS,QAAQF,EAAa,OAAO,EAAS,IAAI,CAAIA,EAAa,SAASE,EAAS,UAAUF,EAAa,OAAO,CAAG,CAAE,EAAE,CAAC,CAAC,EAAE,IAAMI,EAAgBC,GAAO,CAAC,IAAMC,EAAKD,EAAM,cAAc,sBAAsB,EAAQE,EAAEF,EAAM,QAAQC,EAAK,KAAWE,EAAEH,EAAM,QAAQC,EAAK,IAAIf,EAAY,CAAC,EAAAgB,EAAE,EAAAC,CAAC,CAAC,CAAE,EAAQC,EAAiB,IAAI,CAAChB,EAAc,EAAI,CAAE,EAAQiB,EAAiB,IAAI,CAACjB,EAAc,EAAK,CAAE,EAGh7C,OAHw7CpB,EAAU,IAAI,CAAC,GAAGmB,GAAYV,EAAO,OAAO,EAAE,CAAC,IAAM6B,EAAUf,EAAaA,EAAa,OAAO,CAAC,EAA8F,IAA7Ee,EAAU,KAAK,MAAMrB,EAAS,EAAEqB,EAAU,EAAErB,EAAS,EAAEqB,EAAU,CAAC,EAAE,KAAqBtB,EAAU,CAAC,IAAMuB,EAAS,CAAC,GAAG,KAAK,OAAO,EAAE,SAASlB,EAAkB,EAAEJ,EAAS,EAAE,EAAEA,EAAS,EAAE,UAAU,KAAK,IAAI,EAAE,MAAM,UAAU,EAAEO,EAAgBgB,GAAM,CAAC,GAAGA,EAAKD,CAAQ,CAAC,EAAEjB,EAAqBkB,IAAOA,EAAK,GAAG/B,EAAO,MAAM,EACh7D,WAAW,IAAI,CAACe,EAAgBgB,GAAMA,EAAK,IAAIlC,GAAKA,EAAI,KAAKiC,EAAS,GAAG,CAAC,GAAGjC,EAAI,MAAM,SAAS,EAAEA,CAAG,CAAC,CAAE,EAAEM,EAAW,GAAG,EACxH,WAAW,IAAI,CAACY,EAAgBgB,GAAMA,EAAK,OAAOlC,GAAKA,EAAI,KAAKiC,EAAS,EAAE,CAAC,CAAE,EAAE,GAAG,GAChF,EAAE,CAACtB,EAASE,EAAWV,EAAOO,EAAUK,EAAkBT,CAAU,CAAC,EAAKH,EAAO,SAAS,EAAuBgC,EAAKC,GAAgB,CAAC,MAAM,uBAAuB,YAAY,wIAAwI,eAAe,CAAC,GAAG3B,EAAM,MAAM,MAAM,OAAO,OAAO,MAAM,CAAC,CAAC,EAAuB0B,EAAKE,GAAM,CAAC,GAAG5B,EAAM,IAAIY,EAAa,YAAYI,EAAgB,aAAaK,EAAiB,aAAaC,EAAiB,WAAW,GAAG,SAASxC,GAA8B4C,EAAKG,GAAgB,CAAC,SAASrB,EAAa,IAAI,CAAC,CAAC,GAAAsB,EAAG,SAAAC,EAAS,EAAAZ,EAAE,EAAAC,EAAE,MAAAY,CAAK,IAAiB,CAAC,IAAIC,EAAiB,OAAOP,EAAKQ,EAAO,IAAI,CAAC,QAAQ,CAAC,QAAQnC,EAAU,GAAG,KAAK,QAAQ,MAAMA,EAAU,GAAG,KAAK,MAAM,OAAO,QAAQA,EAAU,GAAG,KAAK,UAAU,EAAEoB,EAAExB,EAAM,MAAM,EAAE,EAAEyB,EAAEzB,EAAM,OAAO,EAAE,OAAOI,EAAU,GAAG,KAAK,OAAO,KAAKA,EAAU,GAAG,KAAK,SAAS,EAAE,QAAQA,EAAU,GAAG,KAAK,OAAO,KAAKA,EAAU,GAAG,KAAK,SAAS,EAAE,EAAE,QAAQA,EAAU,GAAG,KAAK,OAAO,KAAKA,EAAU,GAAG,KAAK,SAAS,EAAE,EAAE,QAAQA,EAAU,GAAG,KAAK,OAAO,KAAKA,EAAU,GAAG,KAAK,SAAS,EAAE,CAAC,EAAE,QAAQiC,IAAQ,WAAW,CAAC,QAAQjC,EAAU,GAAG,GAAG,QAAQ,MAAMA,EAAU,GAAG,GAAG,MAAM,OAAO,QAAQA,EAAU,GAAG,GAAG,UAAU,EAAEoB,EAAExB,EAAM,MAAM,EAAE,EAAEyB,EAAEzB,EAAM,OAAO,EAAE,OAAOI,EAAU,GAAG,GAAG,OAAO,KAAKA,EAAU,GAAG,GAAG,SAAS,EAAE,QAAQA,EAAU,GAAG,GAAG,OAAO,KAAKA,EAAU,GAAG,GAAG,SAAS,EAAE,EAAE,QAAQA,EAAU,GAAG,GAAG,OAAO,KAAKA,EAAU,GAAG,GAAG,SAAS,EAAE,EAAE,QAAQA,EAAU,GAAG,GAAG,OAAO,KAAKA,EAAU,GAAG,GAAG,SAAS,EAAE,CAAC,EAAE,CAAC,QAAQA,EAAU,IAAI,QAAQ,MAAMA,EAAU,IAAI,MAAM,OAAO,QAAQA,EAAU,IAAI,UAAU,EAAEoB,EAAExB,EAAM,MAAM,EAAE,EAAEyB,EAAEzB,EAAM,OAAO,EAAE,OAAOI,EAAU,IAAI,OAAO,KAAKA,EAAU,IAAI,SAAS,EAAE,QAAQA,EAAU,IAAI,OAAO,KAAKA,EAAU,IAAI,SAAS,EAAE,EAAE,QAAQA,EAAU,IAAI,OAAO,KAAKA,EAAU,IAAI,SAAS,EAAE,EAAE,QAAQA,EAAU,IAAI,OAAO,KAAKA,EAAU,IAAI,SAAS,EAAE,CAAC,EAAE,WAAWiC,IAAQ,WAAWjC,EAAU,GAAG,WAAWA,EAAU,IAAI,WAAW,MAAM,CAAC,SAAS,WAAW,MAAM,GAAGJ,EAAM,UAAU,OAAO,GAAGA,EAAM,WAAW,gBAAgB,QAAQsC,EAAiBvC,EAAOqC,CAAQ,KAAK,MAAME,IAAmB,OAAOA,EAAiB,MAAM,eAAetC,EAAM,MAAM,OAAO,QAAQ,UAAU,mBAAmB,SAAS,iBAAiB,YAAY,aAAa,GAAGA,EAAM,WAAW,cAAc,OAAO,YAAYG,EAAY,QAAQ,GAAGA,EAAY,UAAU,MAAM,CAAC,EAAEgC,CAAE,CAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAACrC,GAAiB,YAAY,qBAAqB0C,EAAoB1C,GAAiB,CAAC,OAAO,CAAC,KAAK2C,EAAY,MAAM,MAAM,SAAS,gBAAgB,CAAC,KAAKA,EAAY,KAAK,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,SAAS,CAAC,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,aAAa,IAAI,IAAI,EAAE,IAAI,IAAI,KAAK,KAAK,KAAK,EAAE,eAAe,EAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,aAAa,IAAI,IAAI,EAAE,IAAI,IAAI,KAAK,KAAK,KAAK,EAAE,eAAe,EAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,KAAK,KAAK,EAAE,eAAe,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,KAAK,MAAM,OAAO,QAAQ,CAAC,OAAO,KAAK,EAAE,aAAa,CAAC,OAAO,KAAK,EAAE,aAAa,OAAO,YAAY,oCAAoC,CAAC,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,YAAY,aAAa,GAAG,IAAI,EAAE,IAAI,GAAG,KAAK,EAAE,eAAe,GAAM,YAAY,qCAAqC,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,cAAc,aAAa,EAAE,IAAI,GAAG,IAAI,GAAG,KAAK,GAAG,KAAK,IAAI,eAAe,GAAK,YAAY,uDAAuD,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,YAAY,SAAS,CAAC,GAAG,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,SAAS,CAAC,KAAK,CAAC,KAAKA,EAAY,OAAO,MAAM,OAAO,SAAS,CAAC,QAAQ,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,GAAG,KAAK,EAAE,EAAE,KAAK,CAAC,KAAKA,EAAY,OAAO,MAAM,OAAO,aAAa,GAAG,IAAI,EAAE,IAAI,GAAG,KAAK,EAAE,KAAK,IAAI,EAAE,KAAK,CAAC,KAAKA,EAAY,KAAK,MAAM,WAAW,QAAQ,CAAC,KAAK,IAAI,EAAE,aAAa,CAAC,KAAK,IAAI,EAAE,aAAa,KAAK,wBAAwB,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,OAAO,MAAM,YAAY,aAAa,EAAE,IAAI,KAAK,IAAI,IAAI,KAAK,EAAE,KAAK,OAAO,OAAOpC,GAAOA,EAAM,OAAO,IAAI,EAAE,SAAS,CAAC,KAAKoC,EAAY,OAAO,MAAM,YAAY,SAAS,CAAC,EAAE,CAAC,KAAKA,EAAY,OAAO,MAAM,IAAI,aAAa,EAAE,IAAI,KAAK,IAAI,IAAI,KAAK,EAAE,KAAK,MAAM,EAAE,EAAE,CAAC,KAAKA,EAAY,OAAO,MAAM,IAAI,aAAa,EAAE,IAAI,KAAK,IAAI,IAAI,KAAK,EAAE,KAAK,MAAM,EAAE,EAAE,CAAC,KAAKA,EAAY,OAAO,MAAM,IAAI,aAAa,EAAE,IAAI,KAAK,IAAI,IAAI,KAAK,EAAE,KAAK,MAAM,CAAC,EAAE,OAAOpC,GAAOA,EAAM,OAAO,IAAI,CAAC,CAAC,EAAE,GAAG,CAAC,KAAKoC,EAAY,OAAO,MAAM,KAAK,SAAS,CAAC,QAAQ,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,GAAG,KAAK,EAAE,EAAE,KAAK,CAAC,KAAKA,EAAY,OAAO,MAAM,OAAO,aAAa,EAAE,IAAI,EAAE,IAAI,GAAG,KAAK,EAAE,KAAK,IAAI,EAAE,KAAK,CAAC,KAAKA,EAAY,KAAK,MAAM,WAAW,QAAQ,CAAC,KAAK,IAAI,EAAE,aAAa,CAAC,KAAK,IAAI,EAAE,aAAa,KAAK,wBAAwB,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,OAAO,MAAM,YAAY,aAAa,EAAE,IAAI,KAAK,IAAI,IAAI,KAAK,EAAE,KAAK,OAAO,OAAOpC,GAAOA,EAAM,OAAO,IAAI,EAAE,SAAS,CAAC,KAAKoC,EAAY,OAAO,MAAM,YAAY,SAAS,CAAC,EAAE,CAAC,KAAKA,EAAY,OAAO,MAAM,IAAI,aAAa,EAAE,IAAI,KAAK,IAAI,IAAI,KAAK,EAAE,KAAK,MAAM,EAAE,EAAE,CAAC,KAAKA,EAAY,OAAO,MAAM,IAAI,aAAa,EAAE,IAAI,KAAK,IAAI,IAAI,KAAK,EAAE,KAAK,MAAM,EAAE,EAAE,CAAC,KAAKA,EAAY,OAAO,MAAM,IAAI,aAAa,EAAE,IAAI,KAAK,IAAI,IAAI,KAAK,EAAE,KAAK,MAAM,CAAC,EAAE,OAAOpC,GAAOA,EAAM,OAAO,IAAI,CAAC,CAAC,EAAE,WAAW,CAAC,KAAKoC,EAAY,WAAW,MAAM,YAAY,CAAC,CAAC,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,MAAM,SAAS,CAAC,QAAQ,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,GAAG,KAAK,EAAE,EAAE,KAAK,CAAC,KAAKA,EAAY,OAAO,MAAM,OAAO,aAAa,GAAG,IAAI,EAAE,IAAI,GAAG,KAAK,EAAE,KAAK,IAAI,EAAE,KAAK,CAAC,KAAKA,EAAY,KAAK,MAAM,WAAW,QAAQ,CAAC,KAAK,IAAI,EAAE,aAAa,CAAC,KAAK,IAAI,EAAE,aAAa,KAAK,wBAAwB,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,OAAO,MAAM,YAAY,aAAa,EAAE,IAAI,KAAK,IAAI,IAAI,KAAK,EAAE,KAAK,OAAO,OAAOpC,GAAOA,EAAM,OAAO,IAAI,EAAE,SAAS,CAAC,KAAKoC,EAAY,OAAO,MAAM,YAAY,SAAS,CAAC,EAAE,CAAC,KAAKA,EAAY,OAAO,MAAM,IAAI,aAAa,EAAE,IAAI,KAAK,IAAI,IAAI,KAAK,EAAE,KAAK,MAAM,EAAE,EAAE,CAAC,KAAKA,EAAY,OAAO,MAAM,IAAI,aAAa,EAAE,IAAI,KAAK,IAAI,IAAI,KAAK,EAAE,KAAK,MAAM,EAAE,EAAE,CAAC,KAAKA,EAAY,OAAO,MAAM,IAAI,aAAa,EAAE,IAAI,KAAK,IAAI,IAAI,KAAK,EAAE,KAAK,MAAM,CAAC,EAAE,OAAOpC,GAAOA,EAAM,OAAO,IAAI,EAAE,WAAW,CAAC,KAAKoC,EAAY,WAAW,MAAM,YAAY,CAAC,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,cAAc,YAAY,qEAAqE,SAAS,CAAC,QAAQ,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,EAAK,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,aAAa,KAAK,IAAI,IAAI,IAAI,IAAI,KAAK,GAAG,eAAe,GAAK,OAAOpC,GAAO,CAACA,EAAM,OAAO,CAAC,CAAC,CAAC,CAAC,ECXpiN,IAAMqC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAa,GAAWC,CAAmB,EAAQC,EAAWJ,GAAOE,EAAO,WAAiBG,EAAmBC,GAAQ,KAAK,CAAC,GAAGJ,EAAO,WAAAE,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASJ,CAAQ,CAAC,CAAE,EAAQO,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQN,GAAwBM,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUF,GAAME,EAAM,SAAS,GAAUC,GAAuB,CAACD,EAAMtB,IAAesB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAUwB,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA9B,EAAQ,UAAA+B,EAAU,GAAGC,CAAS,EAAEjB,GAASK,CAAK,EAAO,CAAC,YAAAa,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA1C,CAAQ,EAAE2C,GAAgB,CAAC,WAAAhD,GAAW,eAAe,YAAY,gBAAAD,GAAgB,QAAAQ,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ+C,EAAiBrB,GAAuBD,EAAMtB,CAAQ,EAAuC6C,EAAkBC,EAAGlD,GAAkB,GAAhD,CAAC,CAAuE,EAAQmD,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQ,GAAC,kBAAkB,kBAAkB,kBAAkB,iBAAiB,EAAE,SAASV,CAAc,GAAkB,CAAC,YAAY,YAAY,WAAW,EAAE,SAASJ,CAAW,GAAmCe,EAAa,IAAQX,IAAiB,kBAAmDY,EAAa,IAAQZ,IAAiB,kBAAmDa,EAAa,IAAQb,IAAiB,kBAAmDc,EAAa,IAAQd,IAAiB,kBAAmDe,EAAa,IAAQf,IAAiB,kBAAyB,GAASJ,IAAc,YAA6CoB,EAAa,IAAQhB,IAAiB,kBAAyB,GAASJ,IAAc,YAA6CqB,GAAa,IAAQjB,IAAiB,kBAAyB,GAASJ,IAAc,YAA6CsB,EAAsB,GAAM,EAAQC,GAAkBC,GAAqB,EAAE,OAAoB/C,EAAKgD,GAAY,CAAC,GAAG5B,GAAUyB,EAAgB,SAAsB7C,EAAKC,GAAS,CAAC,QAAQb,EAAS,QAAQ,GAAM,SAAsBY,EAAKR,GAAW,CAAC,MAAMD,GAAY,SAAsBS,EAAKiD,EAAK,CAAC,KAAK5B,EAAU,OAAO,YAAY,SAAsBrB,EAAKE,EAAO,EAAE,CAAC,GAAGoB,EAAU,GAAGI,EAAgB,UAAU,GAAGQ,EAAGD,EAAkB,gBAAgBd,EAAUK,CAAU,mBAAmB,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIlB,GAAKqB,EAAK,MAAM,CAAC,GAAGjB,CAAK,EAAE,GAAGhC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEqC,EAAYI,CAAc,EAAE,SAAsBuB,EAAMhD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAACK,EAAY,GAAgBrC,EAAKmD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,mBAAmB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBnB,EAAiB,SAAS,qBAAqB,IAAI,udAAud,mBAAmB,EAAI,CAAC,EAAEM,EAAa,GAAgBtC,EAAKmD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,OAAO,WAAW,iBAAiBnB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,u8BAAu8B,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,GAAqB,CAAC,kBAAkB,CAAC,IAAI,u8BAAu8B,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEY,EAAa,GAAgBvC,EAAKmD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,OAAO,WAAW,iBAAiBnB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,gwDAAgwD,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,GAAqB,CAAC,kBAAkB,CAAC,IAAI,gwDAAgwD,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEa,EAAa,GAAgBxC,EAAKmD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,OAAO,WAAW,iBAAiBnB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,w0BAAw0B,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,GAAqB,CAAC,kBAAkB,CAAC,IAAI,y0BAAy0B,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEc,EAAa,GAAgBzC,EAAKmD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,OAAO,WAAW,iBAAiBnB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,+lCAA+lC,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,GAAqB,CAAC,kBAAkB,CAAC,IAAI,+lCAA+lC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEe,EAAa,GAAgB1C,EAAKmD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,iBAAiBnB,EAAiB,SAAS,qBAAqB,IAAI,qXAAqX,mBAAmB,EAAI,CAAC,EAAEW,EAAa,GAAgB3C,EAAKmD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,iBAAiBnB,EAAiB,SAAS,qBAAqB,IAAI,8rBAA8rB,mBAAmB,EAAI,CAAC,EAAEY,GAAa,GAAgB5C,EAAKmD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,iBAAiBnB,EAAiB,SAAS,YAAY,IAAI,kVAAkV,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQoB,GAAI,CAAC,kFAAkF,kFAAkF,2IAA2I,kSAAkS,yJAAyJ,4LAA4L,qNAAqN,+WAA+W,2QAA2Q,qMAAqM,EAS/knBC,GAAgBC,GAAQ1C,GAAUwC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,QAAQA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTrL,IAAMM,GAAgB,CAAC,UAAU,CAAC,MAAM,GAAK,QAAQ,EAAI,EAAE,UAAU,CAAC,MAAM,GAAK,QAAQ,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAa,GAAWC,CAAmB,EAAQC,EAAWJ,GAAOE,EAAO,WAAiBG,EAAmBC,GAAQ,KAAK,CAAC,GAAGJ,EAAO,WAAAE,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASJ,CAAQ,CAAC,CAAE,EAAQO,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,QAAQ,YAAY,QAAQ,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAAME,EAAM,UAAU,QAAQN,GAAwBM,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMtB,IAAesB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAUwB,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsB,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAApC,EAAQ,UAAAqC,EAAU,GAAGC,CAAS,EAAEvB,GAASK,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAhD,CAAQ,EAAEiD,GAAgB,CAAC,WAAAtD,GAAW,eAAe,YAAY,gBAAAD,GAAgB,IAAImC,EAAW,QAAA3B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQqD,EAAiB3B,GAAuBD,EAAMtB,CAAQ,EAAuCmD,EAAkBC,EAAGxD,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBgB,EAAKyC,GAAY,CAAC,GAAGf,GAAUR,EAAgB,SAAsBlB,EAAKC,GAAS,CAAC,QAAQb,EAAS,QAAQ,GAAM,SAAsBY,EAAKR,GAAW,CAAC,MAAMD,GAAY,SAAsBS,EAAK0C,EAAK,CAAC,KAAKf,EAAU,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBgB,EAAMzC,EAAO,EAAE,CAAC,GAAG0B,EAAU,GAAGI,EAAgB,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,KAAK,EAAE,UAAU,GAAGQ,EAAGD,EAAkB,gBAAgBd,EAAUK,CAAU,mBAAmB,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,GAAGO,CAAK,EAAE,GAAGtC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,oBAAoB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,oBAAoB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,SAAS,WAAW,CAAC,IAAI,OAAO,IAAI,OAAO,gBAAgB,GAAG,eAAe,MAAM,QAAQ0D,EAA0BtB,GAAmB,GAAG,CAAC,EAAE,IAAI,uEAAuE,CAAC,EAAE,UAAU,CAAC,mBAAmB,UAAU,WAAW,CAAC,IAAI,OAAO,IAAI,OAAO,gBAAgB,GAAG,eAAe,MAAM,QAAQsB,EAA0BtB,GAAmB,GAAG,CAAC,EAAE,IAAI,uEAAuE,CAAC,EAAE,UAAU,CAAC,mBAAmB,YAAY,WAAW,CAAC,IAAI,OAAO,IAAI,OAAO,gBAAgB,GAAG,eAAe,MAAM,QAAQsB,EAA0BtB,GAAmB,GAAG,CAAC,EAAE,IAAI,uEAAuE,CAAC,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAS,CAAcjC,EAAK6C,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQD,GAA2BtB,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBgB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,GAAGpD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ0D,GAA2BtB,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQsB,GAA2BtB,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,CAAC,CAAC,EAAEO,EAAYI,CAAc,CAAC,CAAC,EAAejC,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWG,EAAS,CAAC,SAAsBwC,EAAMzC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,2DAA2D,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,EAAE,SAAS,CAAC,SAAsBF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,2BAA2B,EAAE,iBAAiBoC,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,SAAS,CAAC,kBAAkB,CAAC,qBAAqB,qEAAqE,EAAE,oBAAoB,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,CAAC,qBAAqB,mBAAmB,EAAE,UAAU,CAAC,qBAAqB,oBAAoB,EAAE,UAAU,CAAC,qBAAqB,oBAAoB,EAAE,UAAU,CAAC,qBAAqB,mBAAmB,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGpD,GAAqB,CAAC,kBAAkB,CAAC,SAAsBc,EAAWG,EAAS,CAAC,SAAsBwC,EAAMzC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,2DAA2D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,CAAC,SAAsBF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,oBAAoB,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBwC,EAAMzC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,2DAA2D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,QAAQ,sBAAsB,gGAAgG,EAAE,SAAS,CAAC,SAAsBF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,kBAAkB,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBwC,EAAMzC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,2DAA2D,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,sBAAsB,4CAA4C,EAAE,SAAS,CAAC,SAAsBF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBwC,EAAMzC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,2DAA2D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,CAAC,SAAsBF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBwC,EAAMzC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,2DAA2D,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,CAAC,SAAsBF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBwC,EAAMzC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,2DAA2D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,MAAM,sBAAsB,4CAA4C,EAAE,SAAS,CAAC,SAAsBF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE2B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQc,GAAI,CAAC,kFAAkF,kFAAkF,8RAA8R,6KAA6K,iHAAiH,2WAA2W,kHAAkH,oKAAoK,EASnvVC,GAAgBC,GAAQrC,GAAUmC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,cAAcA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,UAAU,SAAS,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,gBAAgB,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTyJ,IAAMM,GAAgBC,GAASC,EAAU,EAAQC,GAAsBF,GAASG,EAAgB,EAAQC,GAAWJ,GAASK,EAAK,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAa,GAAWC,CAAmB,EAAQC,EAAWJ,GAAOE,EAAO,WAAiBG,EAAmBC,GAAQ,KAAK,CAAC,GAAGJ,EAAO,WAAAE,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASJ,CAAQ,CAAC,CAAE,EAAQO,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,aAAa,YAAY,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMvB,IAAeuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAEuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAUyB,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsB,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAArC,EAAQ,GAAGsC,CAAS,EAAErB,GAASI,CAAK,EAAO,CAAC,YAAAkB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAhD,CAAQ,EAAEiD,GAAgB,CAAC,WAAAtD,GAAW,eAAe,YAAY,IAAImC,EAAW,QAAA5B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQqD,EAAiB1B,GAAuBD,EAAMvB,CAAQ,EAAO,CAAC,sBAAAmD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAYH,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAYL,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAYN,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQU,EAAaP,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQW,EAAiBR,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAA4DY,EAAkBC,EAAGjE,GAAkB,GAArE,CAAa0C,EAAS,CAAuE,EAAQwB,GAAOC,GAAU,EAAQC,GAAY,IAAQ,EAAC,YAAY,WAAW,EAAE,SAASvB,CAAW,EAAmCwB,EAAa,IAAQ,GAAC,YAAY,WAAW,EAAE,SAASxB,CAAW,EAAmCyB,GAAa,IAAQzB,IAAc,YAAuC,OAAoB3B,EAAKqD,GAAY,CAAC,GAAG5B,GAAUR,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQf,EAAS,QAAQ,GAAM,SAAsBc,EAAKR,GAAW,CAAC,MAAMH,GAAY,GAAGL,EAAqB,CAAC,UAAU,CAAC,MAAMM,EAAW,CAAC,EAAEqC,EAAYI,CAAc,EAAE,SAAsBuB,EAAMpD,EAAO,OAAO,CAAC,GAAGwB,EAAU,GAAGI,EAAgB,UAAUiB,EAAGD,EAAkB,iBAAiBtB,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIpB,EAAW,MAAM,CAAC,eAAe,OAAO,qBAAqB,OAAO,GAAGO,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,eAAe,aAAa,qBAAqB,YAAY,CAAC,EAAE,GAAGvC,EAAqB,CAAC,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAE2C,EAAYI,CAAc,EAAE,SAAS,CAAcuB,EAAMpD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiBkC,EAAiB,SAAS,YAAY,SAAS,CAAcpC,EAAKR,GAAW,CAAC,GAAGR,EAAqB,CAAC,UAAU,CAAC,MAAMO,EAAW,CAAC,EAAEoC,EAAYI,CAAc,EAAE,SAAsB/B,EAAKuD,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4BxD,EAAKyD,EAA0B,CAAC,OAAO,GAAG,GAAGpC,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,GAAGrC,EAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,GAAG,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsB/B,EAAK0D,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBtB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAKxB,GAAW,CAAC,UAAUgF,EAAc,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,OAAO,GAAGxE,EAAqB,CAAC,UAAU,CAAC,UAAUwE,EAAc,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE7B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAMpD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBkC,EAAiB,SAAS,YAAY,SAAS,CAACc,GAAY,GAAgBI,EAAMpD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,iBAAiBkC,EAAiB,SAAS,YAAY,SAAS,CAAcpC,EAAK2D,EAAS,CAAC,sBAAsB,GAAK,SAAsB3D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2DAA2D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oDAAoD,0BAA0B,WAAW,EAAE,SAAsBF,EAAK4D,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB5D,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,yBAAyB,EAAE,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,0BAA0B,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGpD,EAAqB,CAAC,UAAU,CAAC,SAAsBgB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2DAA2D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oDAAoD,0BAA0B,WAAW,EAAE,SAAsBF,EAAK4D,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsB5D,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyB,EAAYI,CAAc,CAAC,CAAC,EAAe/B,EAAK2D,EAAS,CAAC,sBAAsB,GAAK,SAAsB3D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2DAA2D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oDAAoD,0BAA0B,WAAW,EAAE,SAAsBF,EAAK4D,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsB5D,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,yBAAyB,EAAE,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,0BAA0B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAEc,GAAY,GAAgBlD,EAAKyD,EAA0B,CAAC,OAAO,GAAG,GAAGpC,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,EAAE,GAAGrC,EAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,GAAG,EAAE,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsB/B,EAAK0D,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBtB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAKtB,GAAiB,CAAC,UAAU,GAAK,UAAU,+CAA+C,UAAU,UAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyE,EAAa,GAAgBG,EAAMpD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,CAAC,EAAE,GAAGpD,EAAqB,CAAC,UAAU,CAAC,iBAAiB,GAAK,MAAM0D,CAAW,EAAE,UAAU,CAAC,iBAAiB,GAAK,MAAMF,CAAW,CAAC,EAAEb,EAAYI,CAAc,EAAE,SAAS,CAAc/B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kBAAkB,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,wEAAwE,OAAO,GAAG,EAAE,UAAU,CAAC,gBAAgB,uEAAuE,CAAC,CAAC,CAAC,EAAepC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kBAAkB,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,wEAAwE,QAAQ,CAAC,EAAE,UAAU,CAAC,gBAAgB,uEAAuE,CAAC,CAAC,CAAC,EAAepC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kBAAkB,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,wEAAwE,OAAO,EAAE,EAAE,UAAU,CAAC,gBAAgB,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgB,GAAa,GAAgBE,EAAMpD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,iBAAiBkC,EAAiB,SAAS,YAAY,SAAS,CAAcpC,EAAK2D,EAAS,CAAC,sBAAsB,GAAK,SAAsB3D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2DAA2D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oDAAoD,0BAA0B,WAAW,EAAE,SAAsBF,EAAK4D,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsB5D,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,iBAAiB,GAAK,MAAM,CAAC,yBAAyB,EAAE,iBAAiBkC,EAAiB,SAAS,YAAY,MAAMO,EAAY,MAAM,CAAC,qBAAqB,0BAA0B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe3C,EAAK2D,EAAS,CAAC,sBAAsB,GAAK,SAAsB3D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2DAA2D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oDAAoD,0BAA0B,WAAW,EAAE,SAAsBF,EAAK4D,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsB5D,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,iBAAiB,GAAK,MAAM,CAAC,yBAAyB,EAAE,iBAAiBkC,EAAiB,SAAS,YAAY,MAAMQ,EAAa,MAAM,CAAC,qBAAqB,0BAA0B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe5C,EAAKyD,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAGzE,EAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsB/B,EAAK0D,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBtB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAKtB,GAAiB,CAAC,UAAU,GAAK,UAAU,+CAA+C,UAAU,UAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAUmE,EAAiB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeS,EAAMpD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBkC,EAAiB,SAAS,YAAY,SAAS,CAAcpC,EAAKyD,EAA0B,CAAC,OAAO,GAAG,GAAGzE,EAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,IAAI,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsB/B,EAAK0D,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBtB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAKpB,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,8CAA8C,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoB,EAAKyD,EAA0B,CAAC,OAAO,GAAG,GAAGzE,EAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,IAAI,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsB/B,EAAK0D,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBtB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAKpB,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,iCAAiC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoB,EAAKyD,EAA0B,CAAC,OAAO,GAAG,GAAGzE,EAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,IAAI,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsB/B,EAAK0D,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBtB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAKpB,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,4CAA4C,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoB,EAAKyD,EAA0B,CAAC,OAAO,GAAG,GAAGzE,EAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,IAAI,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsB/B,EAAK0D,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBtB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAKpB,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,yCAAyC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiF,GAAI,CAAC,kFAAkF,kFAAkF,yPAAyP,2QAA2Q,iJAAiJ,kTAAkT,iKAAiK,gHAAgH,sMAAsM,qMAAqM,mMAAmM,mUAAmU,mLAAmL,yGAAyG,4QAA4Q,mOAAmO,2/BAA2/B,2FAA2F,+EAA+E,8DAA8D,+aAA+a,iJAAiJ,+EAA+E,kHAAkH,mMAAmM,2KAA2K,2IAA2I,2FAA2F,4EAA4E,+aAA+a,GAAeA,EAAG,EAQhjvBC,GAAgBC,GAAQpD,GAAUkD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,gBAAgBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,SAAS,QAAQ,YAAY,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,gBAAgB,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGxF,GAAgB,GAAGG,GAAsB,GAAGE,GAAW,GAAGyF,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["clamp", "t", "i", "e", "Animate", "s", "o", "n", "l", "Dimensions", "window", "Emitter", "VirtualScroll", "r", "h", "Lenis", "a", "c", "d", "u", "p", "m", "v", "g", "w", "S", "f", "SmoothScroll", "props", "intensity", "lenis", "pe", "ue", "overlayElement", "checkOverflow", "window", "htmlObserver", "mutations", "mutation", "allElements", "i", "element", "Lenis", "raf", "time", "styleElement", "anchorLinksData", "anchor", "href", "decodedHref", "scrollMargin", "targetElement", "handleClick", "e", "handlers", "anchorElement", "index", "p", "l", "addPropertyControls", "ControlType", "createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "SettingsMessage", "title", "description", "containerStyle", "u", "p", "shadowProperty", "ControlType", "heightProperty", "props", "useStore", "createStore", "useImagePreloader", "imageUrls", "imagesPreloaded", "setImagesPreloaded", "ye", "ue", "isMounted", "imagePromises", "url", "resolve", "reject", "img", "error", "CursorImageTrail", "images", "style", "frequency", "visibleFor", "perspective", "animation", "props", "threshold", "mousePos", "setMousePos", "isHovering", "setIsHovering", "currentImageIndex", "setCurrentImageIndex", "activeImages", "setActiveImages", "isInViewport", "setIsInViewport", "componentRef", "pe", "observer", "entry", "handleMouseMove", "event", "rect", "x", "y", "handleMouseEnter", "handleMouseLeave", "lastImage", "newImage", "prev", "p", "SettingsMessage", "Frame", "AnimatePresence", "id", "position", "state", "_images_position", "motion", "addPropertyControls", "ControlType", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "YvBWxBu8l", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "defaultLayoutId", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "SVG", "css", "FramerKTu2LsFFR", "withCSS", "KTu2LsFFR_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "eY5DwZxo9", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "getLoadingLazyAtYPosition", "Image2", "RichText2", "css", "FramerimmjczmkC", "withCSS", "immjczmkC_default", "addPropertyControls", "ControlType", "addFonts", "LayoutLogoFonts", "getFonts", "immjczmkC_default", "ComponentsButtonFonts", "gKTKPn20R_default", "ICONSFonts", "KTu2LsFFR_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapu3utot", "args", "onTap7vt9mn", "onTapol11b3", "onTap1g1ok5l", "Vr8nJL7mZ1g1ok5l", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "Link", "css", "FramerIfuoa3tNY", "withCSS", "Ifuoa3tNY_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
