{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/Carousel.js", "ssg:https://framerusercontent.com/modules/qPQe745jNgQeqBbZKUDX/1vlRCIlX9pfqCRLef4Zc/An2frIzSz.js", "ssg:https://framerusercontent.com/modules/fm9cw8KgefbxMhW1Efsd/BPXfSYgzMXE9JLuhfJP7/B39aTA4Go.js", "ssg:https://framerusercontent.com/modules/DmUhaAlE6Gd7ouFRgyJA/ICaEfxiBzwalICOSqqmp/qq2iMPGBb.js", "ssg:https://framerusercontent.com/modules/vxP8xYP6yIgbFkSXrzkz/eOM7G2h3v4pIW7e3r58A/RnwUaxcrb.js", "ssg:https://framerusercontent.com/modules/NO1dB4GuumPotQeFOrsb/U43i6GJHKs4sn3vLXHMe/fCatKhdS7.js", "ssg:https://framerusercontent.com/modules/CUutz0KRZqkPURBpoRcB/8uq55eU4rn2XSW7ADCGE/OvPo0ax8A.js", "ssg:https://framerusercontent.com/modules/CrgtFDpEmNaDR61W0A7H/DsemLUa4TlTfTd9X26IM/Ud5ahi2ld.js", "ssg:https://framerusercontent.com/modules/QIoSB99lxsE9gevV1o1p/CTu07zbGJsK7kPJU5PW4/UeBBIsiGA.js", "ssg:https://framerusercontent.com/modules/07vTlWbLlZumksRNFWZ2/flOO87zMRsUmMRb41Zzk/UCojIlrtA-0.js", "ssg:https://framerusercontent.com/modules/07vTlWbLlZumksRNFWZ2/flOO87zMRsUmMRb41Zzk/UCojIlrtA-1.js", "ssg:https://framerusercontent.com/modules/07vTlWbLlZumksRNFWZ2/flOO87zMRsUmMRb41Zzk/UCojIlrtA.js", "ssg:https://framerusercontent.com/modules/PyBtAKYw2JK4lz8INWNs/TgyYxm7ceJ1mQbIKbmh7/HKZVj5oAY.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}/*const findNextItem = (delta: 1 | -1, target: number) => {\n        if (!scrollInfo.current) return\n        const { current } = scrollInfo.current\n        const { children } = carouselRef.current\n        let scrollTarget\n\n        let i = delta === 1 ? 0 : children.length - 1\n        while (scrollTarget === undefined) {\n            const item = children[i]\n\n            const start = axis ? item.offsetLeft : item.offsetTop\n            const length = axis ? item.offsetWidth : item.offsetHeight\n            const end = start + length\n\n            const threshold = 0.05\n            if (delta === 1) {\n                const visibility = progress(start, end, target)\n                if (visibility < 1 - threshold) {\n                    scrollTarget = start\n                } else if (i === children.length - 1) {\n                    scrollTarget = end\n                }\n            } else if (delta === -1) {\n                const visibility = progress(start, end, target)\n                if (visibility > threshold) {\n                    scrollTarget = end\n                } else if (i === 0) {\n                    scrollTarget = start\n                }\n            }\n\n            i += delta\n        }\n\n        return scrollTarget\n    }*/const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=(page,adjustment=0)=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;const totalLen=scrollLength/(numPages-1);goto(page*totalLen+adjustment*totalLen);};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));let adjustment=0;if(snap&&(snapEdge===\"start\"||snapEdge===\"end\")&&delta>=1)adjustment=.4// this ensures it doesn't snap back to previous page*/\n    ;gotoPage(currentPage+delta,adjustment);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>startTransition(()=>gotoPage(i)),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>/*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...child.props?.style,...childStyle}})}))}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[isMouseDevice&&/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),isMouseDevice&&/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{if(!scrollInfo.current?.scrollLength){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=scrollInfo.current?.scrollLength/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (c07a8c1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,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/cenwFrnC9aWUHphsnGi6/DT9wnXmZgBsPVvpipysp/SRckh1huN.js\";const cycleOrder=[\"P1weuDtxt\",\"ZSPC4Gqhi\"];const serializationHash=\"framer-xaL2q\";const variantClassNames={P1weuDtxt:\"framer-v-1dd7yqt\",ZSPC4Gqhi:\"framer-v-1i0gu8s\"};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 animation={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={bounce:0,delay:.05,duration:.4,type:\"spring\"};const textEffect={effect:animation,repeat:false,startDelay:.4,tokenization:\"word\",transition:transition2,trigger:\"onMount\",type:\"appear\"};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\":\"P1weuDtxt\",\"Variant 2\":\"ZSPC4Gqhi\"};const getProps=({height,id,title,width,...props})=>{return{...props,Skhe5ZIGa:title??props.Skhe5ZIGa??\"CAPABILITIES\",variant:humanReadableVariantMap[props.variant]??props.variant??\"P1weuDtxt\"};};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,Skhe5ZIGa,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"P1weuDtxt\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1ub7ump=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ZSPC4Gqhi\",true),1e3);});useOnVariantChange(baseVariant,{default:onAppear1ub7ump});const sharedStyleClassNames=[sharedStyle.className];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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1dd7yqt\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"P1weuDtxt\",ref:refBinding,style:{...style},...addPropertyOverrides({ZSPC4Gqhi:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1juszg7\",layoutDependency:layoutDependency,layoutId:\"UQ6NRKYcu\",style:{backgroundColor:\"var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132))\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999,boxShadow:\"none\"},variants:{ZSPC4Gqhi:{backgroundColor:\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\",boxShadow:\"0px 0px 2px 0px rgba(255, 255, 255, 0.5)\"}}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-173iguj\",\"data-styles-preset\":\"SRckh1huN\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132)))\"},children:\"CAPABILITIES\"})}),className:\"framer-gom0be\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wQNWRzouD\",style:{\"--extracted-r6o4lv\":\"var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Skhe5ZIGa,variants:{ZSPC4Gqhi:{\"--extracted-r6o4lv\":\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ZSPC4Gqhi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-173iguj\",\"data-styles-preset\":\"SRckh1huN\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20)))\"},children:\"CAPABILITIES\"})})}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xaL2q.framer-bzd8ct, .framer-xaL2q .framer-bzd8ct { display: block; }\",\".framer-xaL2q.framer-1dd7yqt { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 12px 0px 0px 0px; position: relative; width: 267px; }\",\".framer-xaL2q .framer-1juszg7 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); overflow: hidden; position: relative; width: 12px; will-change: var(--framer-will-change-override, transform); }\",\".framer-xaL2q .framer-gom0be { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 245px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 33.5\n * @framerIntrinsicWidth 267\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZSPC4Gqhi\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Skhe5ZIGa\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerAn2frIzSz=withCSS(Component,css,\"framer-xaL2q\");export default FramerAn2frIzSz;FramerAn2frIzSz.displayName=\"Section Kicker\";FramerAn2frIzSz.defaultProps={height:33.5,width:267};addPropertyControls(FramerAn2frIzSz,{variant:{options:[\"P1weuDtxt\",\"ZSPC4Gqhi\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},Skhe5ZIGa:{defaultValue:\"CAPABILITIES\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerAn2frIzSz,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAn2frIzSz\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"267\",\"framerVariables\":\"{\\\"Skhe5ZIGa\\\":\\\"title\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"33.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZSPC4Gqhi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./An2frIzSz.map", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,PathVariablesContext,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useQueryData,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Apps from\"https://framerusercontent.com/modules/0ctgosTjrkhlOcwdr7El/EOd58CkWEVgY0q3pTIem/PcMCBg1DT.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/sw8pwDvt4qBCZXuIoPJf/fIGIDCy9vrMdaSkTVu6n/Dz7x53WKr.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/tEt8ZEaClhMTf7Ky0l8E/JKsSzZUr12gKgHvCLH9i/NUfdIbS4y.js\";import Button from\"https://framerusercontent.com/modules/7BrXf9cXrFq14GVJI7r0/dOAskn7dun9ZzWlD6MQa/wkSwvofZe.js\";import AppTag from\"https://framerusercontent.com/modules/8kzGtXhBEBKq1cidYK39/wINSajahuNdfs1eju9iY/xpgoXI0GH.js\";import BeatingDot from\"https://framerusercontent.com/modules/NxGgvcsEYc7d2rdJLGzw/yJEhfbDX2EgV9vFvKczN/ZhSmnymDz.js\";const AppTagFonts=getFonts(AppTag);const BeatingDotFonts=getFonts(BeatingDot);const ButtonFonts=getFonts(Button);const cycleOrder=[\"B3BE3_siS\",\"prlHgq1D5\"];const serializationHash=\"framer-0Lsrp\";const variantClassNames={B3BE3_siS:\"framer-v-1sxlhuw\",prlHgq1D5:\"framer-v-d62imo\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const query=prequery=>prequery({from:{alias:\"BTfyI6pts\",data:Apps,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"BTfyI6pts\",name:\"o9GCFaLm3\",type:\"Identifier\"},{collection:\"BTfyI6pts\",name:\"b7KoZAUWa\",type:\"Identifier\"},{collection:\"BTfyI6pts\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"BTfyI6pts\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"BJuulWYmg\"},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={bounce:0,delay:.05,duration:.4,type:\"spring\"};const textEffect={effect:animation,startDelay:.1,tokenization:\"word\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const query1=prequery=>prequery({from:{alias:\"LkSMIg9pS\",data:Apps,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"LkSMIg9pS\",name:\"b7KoZAUWa\",type:\"Identifier\"},{collection:\"LkSMIg9pS\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"LkSMIg9pS\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{type:\"LiteralValue\",value:[\"MQErqWkPx\"]},type:\"BinaryOperation\"}});const query2=prequery=>prequery({from:{alias:\"LmKEyu2x_\",data:Apps,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"LmKEyu2x_\",name:\"sworHU7a4\",type:\"Identifier\"},{collection:\"LmKEyu2x_\",name:\"o9GCFaLm3\",type:\"Identifier\"},{collection:\"LmKEyu2x_\",name:\"b7KoZAUWa\",type:\"Identifier\"},{collection:\"LmKEyu2x_\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"LmKEyu2x_\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"rjUy0DcA9\"},type:\"BinaryOperation\"}});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\":\"B3BE3_siS\",\"Variant 2\":\"prlHgq1D5\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"B3BE3_siS\"};};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,o9GCFaLm3BTfyI6pts,b7KoZAUWaBTfyI6pts,idBTfyI6pts,b7KoZAUWaLkSMIg9pS,idLkSMIg9pS,sworHU7a4LmKEyu2x_,o9GCFaLm3LmKEyu2x_,b7KoZAUWaLmKEyu2x_,idLmKEyu2x_,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"B3BE3_siS\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1sxlhuw\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"B3BE3_siS\",ref:refBinding,style:{backgroundColor:\"var(--token-c8d3a8f6-938f-44f5-81c4-757532a93d1b, rgba(251, 250, 249, 0.09))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({prlHgq1D5:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pw1hiq\",layoutDependency:layoutDependency,layoutId:\"GmL4wovnc\",style:{backgroundColor:\"var(--token-04b8f2df-997b-40fd-9f2b-e856d02be653, rgb(20, 20, 20))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},variants:{prlHgq1D5:{borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jvf5fq\",layoutDependency:layoutDependency,layoutId:\"Chlhh8f7O\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sthaz0\",layoutDependency:layoutDependency,layoutId:\"LkSMIg9pS\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},variants:{prlHgq1D5:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"LkSMIg9pS\",data:Apps,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"LkSMIg9pS\",name:\"b7KoZAUWa\",type:\"Identifier\"},{collection:\"LkSMIg9pS\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"LkSMIg9pS\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{type:\"LiteralValue\",value:[\"MQErqWkPx\"]},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection1?.map(({b7KoZAUWa:b7KoZAUWaLkSMIg9pS,id:idLkSMIg9pS},index1)=>{b7KoZAUWaLkSMIg9pS??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`LkSMIg9pS-${idLkSMIg9pS}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{b7KoZAUWa:b7KoZAUWaLkSMIg9pS},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cezaxo\",layoutDependency:layoutDependency,layoutId:\"BTfyI6pts\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"BTfyI6pts\",data:Apps,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"BTfyI6pts\",name:\"o9GCFaLm3\",type:\"Identifier\"},{collection:\"BTfyI6pts\",name:\"b7KoZAUWa\",type:\"Identifier\"},{collection:\"BTfyI6pts\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"BTfyI6pts\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"BJuulWYmg\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({b7KoZAUWa:b7KoZAUWaBTfyI6pts,id:idBTfyI6pts,o9GCFaLm3:o9GCFaLm3BTfyI6pts},index)=>{b7KoZAUWaBTfyI6pts??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`BTfyI6pts-${idBTfyI6pts}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{b7KoZAUWa:b7KoZAUWaBTfyI6pts},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2l2sbi\",layoutDependency:layoutDependency,layoutId:\"eUWVeTM0w\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(24+((componentViewport?.height||387)-48-435)/2)+24+0+0+0+0+0+0+0+0,...addPropertyOverrides({prlHgq1D5:{y:(componentViewport?.y||0)+(24+((componentViewport?.height||387)-48-356.75)/2)+18+0+0+0+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ei0epw-container\",layoutDependency:layoutDependency,layoutId:\"svIrPjHbC-container\",nodeId:\"svIrPjHbC\",rendersWithMotion:true,scopeId:\"B39aTA4Go\",children:/*#__PURE__*/_jsx(AppTag,{bvCSsp8XM:true,CqEGEtfkI:{borderColor:\"var(--token-d35c4cf4-2229-41bc-9f56-c6095d0f8862, rgba(20, 20, 20, 0.04))\",borderStyle:\"solid\",borderWidth:0},height:\"100%\",id:\"svIrPjHbC\",layoutId:\"svIrPjHbC\",variant:\"Qn2xJEEvX\",width:\"100%\",wm2qlNiB8:\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\",WxIQXgG7e:\"var(--token-d35c4cf4-2229-41bc-9f56-c6095d0f8862, rgba(20, 20, 20, 0.04))\",XB9wMGU8G:\"SCTASK#5432445\",z3MMl79mX:toResponsiveImage(o9GCFaLm3BTfyI6pts),...addPropertyOverrides({prlHgq1D5:{variant:\"XuaIokmDO\"}},baseVariant,gestureVariant)})})})})})},idBTfyI6pts);})})})})})})},idLkSMIg9pS);}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13eslnf\",layoutDependency:layoutDependency,layoutId:\"nLXddXogz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-6kb5el\",\"data-styles-preset\":\"NUfdIbS4y\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20)))\"},children:\"Access request for Microsoft Teams\"})}),className:\"framer-1fk0t2k\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vObfZSOiZ\",style:{\"--extracted-r6o4lv\":\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({prlHgq1D5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.85)\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20)))\"},children:\"Access request for Microsoft Teams\"})}),fonts:[\"Inter-Medium\"]}},baseVariant,gestureVariant)})})]})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xqf1r5\",layoutDependency:layoutDependency,layoutId:\"EyAfycwuO\",style:{backgroundColor:\"var(--token-d35c4cf4-2229-41bc-9f56-c6095d0f8862, rgba(20, 20, 20, 0.04))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10mcyy5\",layoutDependency:layoutDependency,layoutId:\"BSimqafpj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bvudkk\",\"data-styles-preset\":\"Dz7x53WKr\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66)))\"},children:\"Sensitive actions\"})}),className:\"framer-kxchgb\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gnSRRm4lO\",style:{\"--extracted-r6o4lv\":\"var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({prlHgq1D5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.75)\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66)))\"},children:\"Sensitive actions\"})}),fonts:[\"Inter-Medium\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+(24+((componentViewport?.height||387)-48-435)/2)+24+0+0+169+35.5,...addPropertyOverrides({prlHgq1D5:{height:15,width:\"15px\",y:(componentViewport?.y||0)+(24+((componentViewport?.height||387)-48-356.75)/2)+18+0+0+137.75+31.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17f83f9-container\",layoutDependency:layoutDependency,layoutId:\"kD6T3ZQXd-container\",nodeId:\"kD6T3ZQXd\",rendersWithMotion:true,scopeId:\"B39aTA4Go\",children:/*#__PURE__*/_jsx(BeatingDot,{height:\"100%\",id:\"kD6T3ZQXd\",layoutId:\"kD6T3ZQXd\",QJSJdtOp0:\"var(--token-060d2f3c-2e4c-48c9-9b1d-8e08e9906301, rgb(222, 102, 76))\",style:{height:\"100%\",width:\"100%\"},variant:\"I1947:28084;1923:56829\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-knn3iz\",layoutDependency:layoutDependency,layoutId:\"a8tsmb0ce\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ubnh4l\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"xA9yTB2sS\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c8d3a8f6-938f-44f5-81c4-757532a93d1b, rgb(255, 255, 255))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-d35c4cf4-2229-41bc-9f56-c6095d0f8862, rgba(20, 20, 20, 0.04))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},variants:{prlHgq1D5:{\"--border-bottom-width\":\"0.75px\",\"--border-left-width\":\"0.75px\",\"--border-right-width\":\"0.75px\",\"--border-top-width\":\"0.75px\",borderBottomLeftRadius:9,borderBottomRightRadius:9,borderTopLeftRadius:9,borderTopRightRadius:9}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gpoxwl\",layoutDependency:layoutDependency,layoutId:\"LmKEyu2x_\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"LmKEyu2x_\",data:Apps,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"LmKEyu2x_\",name:\"sworHU7a4\",type:\"Identifier\"},{collection:\"LmKEyu2x_\",name:\"o9GCFaLm3\",type:\"Identifier\"},{collection:\"LmKEyu2x_\",name:\"b7KoZAUWa\",type:\"Identifier\"},{collection:\"LmKEyu2x_\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"LmKEyu2x_\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"rjUy0DcA9\"},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({b7KoZAUWa:b7KoZAUWaLmKEyu2x_,id:idLmKEyu2x_,o9GCFaLm3:o9GCFaLm3LmKEyu2x_,sworHU7a4:sworHU7a4LmKEyu2x_},index2)=>{sworHU7a4LmKEyu2x_??=\"\";b7KoZAUWaLmKEyu2x_??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`LmKEyu2x_-${idLmKEyu2x_}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{b7KoZAUWa:b7KoZAUWaLmKEyu2x_},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1irj0i1\",layoutDependency:layoutDependency,layoutId:\"HjFdvdAOy\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"32px\",y:(componentViewport?.y||0)+(24+((componentViewport?.height||387)-48-435)/2)+24+272+0+0+41.5+0+0,...addPropertyOverrides({prlHgq1D5:{height:24,width:\"24px\",y:(componentViewport?.y||0)+(24+((componentViewport?.height||387)-48-356.75)/2)+18+224.75+0+0+36+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-y61f2v-container\",layoutDependency:layoutDependency,layoutId:\"tsddqmzxY-container\",nodeId:\"tsddqmzxY\",rendersWithMotion:true,scopeId:\"B39aTA4Go\",style:{opacity:.8},children:/*#__PURE__*/_jsx(AppTag,{bvCSsp8XM:true,CqEGEtfkI:{borderColor:\"var(--token-d35c4cf4-2229-41bc-9f56-c6095d0f8862, rgba(20, 20, 20, 0.04))\",borderStyle:\"solid\",borderWidth:1},height:\"100%\",id:\"tsddqmzxY\",layoutId:\"tsddqmzxY\",style:{height:\"100%\",width:\"100%\"},variant:\"fQQdJAPcK\",width:\"100%\",wm2qlNiB8:\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\",WxIQXgG7e:\"var(--token-c8d3a8f6-938f-44f5-81c4-757532a93d1b, rgba(20, 20, 20, 0.04))\",XB9wMGU8G:sworHU7a4LmKEyu2x_,z3MMl79mX:toResponsiveImage(o9GCFaLm3LmKEyu2x_),...addPropertyOverrides({prlHgq1D5:{CqEGEtfkI:{borderColor:\"var(--token-d35c4cf4-2229-41bc-9f56-c6095d0f8862, rgba(20, 20, 20, 0.04))\",borderStyle:\"solid\",borderWidth:.75}}},baseVariant,gestureVariant)})})})})})},idLmKEyu2x_);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a1lnuc\",layoutDependency:layoutDependency,layoutId:\"sQWFf5ko5\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bvudkk\",\"data-styles-preset\":\"Dz7x53WKr\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20)))\"},children:\"Assign Teams license to user?\"})}),className:\"framer-douhv5\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vcqPd0w2a\",style:{\"--extracted-r6o4lv\":\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({prlHgq1D5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.75)\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20)))\"},children:\"Assign Teams license to user?\"})}),fonts:[\"Inter-Medium\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9l7zn5\",layoutDependency:layoutDependency,layoutId:\"qq32lvfbX\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+(24+((componentViewport?.height||387)-48-435)/2)+24+272+0+0+33.5+0,...addPropertyOverrides({prlHgq1D5:{y:(componentViewport?.y||0)+(24+((componentViewport?.height||387)-48-356.75)/2)+18+224.75+0+0+24+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-w31b9a-container\",layoutDependency:layoutDependency,layoutId:\"Sx1LNLcsQ-container\",nodeId:\"Sx1LNLcsQ\",rendersWithMotion:true,scopeId:\"B39aTA4Go\",children:/*#__PURE__*/_jsx(Button,{cPLRwzWpo:false,ELnqIpGPd:false,gpq98KTEe:false,height:\"100%\",i6yWlIfcR:\"Approve\",id:\"Sx1LNLcsQ\",layoutId:\"Sx1LNLcsQ\",nU8wyyJdM:\"chevron-left\",rI0aY4ZTG:true,variant:\"HDcd17gJH\",width:\"100%\",WOOJEUdLF:\"TegIsDW6B\",XQ_8neLW7:\"check\",...addPropertyOverrides({prlHgq1D5:{variant:\"BirQoDKCM\"}},baseVariant,gestureVariant)})})})})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0Lsrp.framer-13hbxm4, .framer-0Lsrp .framer-13hbxm4 { display: block; }\",\".framer-0Lsrp.framer-1sxlhuw { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 387px; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 647px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0Lsrp .framer-1pw1hiq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 520px; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0Lsrp .framer-jvf5fq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0Lsrp .framer-1sthaz0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-0Lsrp .framer-cezaxo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-0Lsrp .framer-2l2sbi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-0Lsrp .framer-ei0epw-container, .framer-0Lsrp .framer-w31b9a-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-0Lsrp .framer-13eslnf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0Lsrp .framer-1fk0t2k { --framer-text-wrap-override: none; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-0Lsrp .framer-1xqf1r5 { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-0Lsrp .framer-10mcyy5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0Lsrp .framer-kxchgb, .framer-0Lsrp .framer-douhv5 { --framer-text-wrap-override: none; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-0Lsrp .framer-17f83f9-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-0Lsrp .framer-knn3iz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0Lsrp .framer-1ubnh4l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 12px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-0Lsrp .framer-gpoxwl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 32px; justify-content: center; padding: 0px; position: relative; width: 32px; }\",\".framer-0Lsrp .framer-1irj0i1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-0Lsrp .framer-y61f2v-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-0Lsrp .framer-1a1lnuc { align-content: center; align-items: center; display: flex; flex: 2 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0Lsrp .framer-9l7zn5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-0Lsrp.framer-v-d62imo .framer-1pw1hiq { gap: 9px; max-width: 390px; padding: 18px; }\",\".framer-0Lsrp.framer-v-d62imo .framer-jvf5fq, .framer-0Lsrp.framer-v-d62imo .framer-2l2sbi, .framer-0Lsrp.framer-v-d62imo .framer-10mcyy5, .framer-0Lsrp.framer-v-d62imo .framer-1irj0i1 { gap: 7.5px; }\",\".framer-0Lsrp.framer-v-d62imo .framer-1sthaz0, .framer-0Lsrp.framer-v-d62imo .framer-1a1lnuc, .framer-0Lsrp.framer-v-d62imo .framer-9l7zn5 { gap: 6px; }\",\".framer-0Lsrp.framer-v-d62imo .framer-cezaxo { gap: 15px; }\",\".framer-0Lsrp.framer-v-d62imo .framer-13eslnf { gap: 1.5px; }\",\".framer-0Lsrp.framer-v-d62imo .framer-1fk0t2k, .framer-0Lsrp.framer-v-d62imo .framer-kxchgb, .framer-0Lsrp.framer-v-d62imo .framer-douhv5 { white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-0Lsrp.framer-v-d62imo .framer-1xqf1r5 { height: 1px; }\",\".framer-0Lsrp.framer-v-d62imo .framer-17f83f9-container { height: 15px; width: 15px; }\",\".framer-0Lsrp.framer-v-d62imo .framer-knn3iz { gap: 9px; }\",\".framer-0Lsrp.framer-v-d62imo .framer-1ubnh4l { gap: 9px; padding: 9px; }\",\".framer-0Lsrp.framer-v-d62imo .framer-gpoxwl { gap: 15px; height: 24px; width: 24px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-0Lsrp[data-border=\"true\"]::after, .framer-0Lsrp [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 387\n * @framerIntrinsicWidth 647\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"prlHgq1D5\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerB39aTA4Go=withCSS(Component,css,\"framer-0Lsrp\");export default FramerB39aTA4Go;FramerB39aTA4Go.displayName=\"Escalation\";FramerB39aTA4Go.defaultProps={height:387,width:647};addPropertyControls(FramerB39aTA4Go,{variant:{options:[\"B3BE3_siS\",\"prlHgq1D5\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerB39aTA4Go,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...AppTagFonts,...BeatingDotFonts,...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerB39aTA4Go\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"387\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"prlHgq1D5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"647\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./B39aTA4Go.map", "// Generated by Framer (bab6da3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,cx,motion,useSVGTemplate,withCSS}from\"framer\";import*as React from\"react\";import{forwardRef}from\"react\";const Base=/*#__PURE__*/forwardRef(function(props,ref){return /*#__PURE__*/_jsx(\"svg\",{...props,ref:ref,children:props.children});});const MotionSVG=motion(Base);const SVG=/*#__PURE__*/forwardRef((props,ref)=>{const{animated,layoutId,children,...rest}=props;return animated?/*#__PURE__*/_jsx(MotionSVG,{...rest,layoutId:layoutId,ref:ref,children:children}):/*#__PURE__*/_jsx(\"svg\",{...rest,ref:ref,children:children});});const svg='<svg display=\"block\" role=\"presentation\" viewBox=\"0 0 56 64\" xmlns=\"http://www.w3.org/2000/svg\"><defs ><clipPath id=\"FiVppemZ0-3199640955-stroke\"><use href=\"#FiVppemZ0-3199640955\"/></clipPath>\\n<path d=\"M 55.999 46.86 C 55.999 47.261 55.892 47.652 55.687 48.004 C 55.386 48.53 54.887 48.913 54.3 49.069 C 53.714 49.225 53.1 49.147 52.562 48.844 L 32.107 37.021 C 31.731 36.805 31.267 36.806 30.891 37.023 C 30.515 37.241 30.283 37.642 30.281 38.076 L 30.281 61.606 C 30.281 62.788 29.451 63.805 28.358 63.98 C 28.241 64 28.114 64 27.996 64 C 27.452 64.002 26.925 63.808 26.512 63.453 C 26.004 63.018 25.712 62.382 25.712 61.713 L 25.712 38.077 C 25.712 37.637 25.487 37.247 25.106 37.022 C 24.728 36.807 24.265 36.807 23.886 37.022 L 3.431 48.844 C 2.386 49.44 0.921 49.059 0.306 48.004 C 0.001 47.478 -0.08 46.851 0.082 46.264 C 0.235 45.677 0.619 45.177 1.146 44.877 L 21.601 33.063 C 21.978 32.846 22.209 32.443 22.206 32.008 C 22.206 31.568 21.982 31.178 21.601 30.953 L 1.146 19.129 C 0.621 18.827 0.238 18.327 0.082 17.741 C -0.081 17.155 0 16.528 0.306 16.002 C 0.611 15.478 1.109 15.096 1.693 14.937 C 2.281 14.777 2.908 14.862 3.431 15.172 L 23.886 26.985 C 24.266 27.21 24.726 27.21 25.106 26.985 C 25.487 26.77 25.712 26.37 25.712 25.93 L 25.712 2.293 C 25.712 1.687 25.956 1.101 26.385 0.671 C 26.852 0.201 27.502 -0.042 28.162 0.006 C 29.354 0.094 30.282 1.14 30.282 2.4 L 30.282 25.93 C 30.282 26.37 30.515 26.77 30.896 26.985 C 31.277 27.21 31.726 27.21 32.107 26.985 L 52.562 15.172 C 53.087 14.863 53.713 14.779 54.3 14.937 C 55.518 15.269 56.241 16.52 55.92 17.741 C 55.766 18.327 55.383 18.827 54.857 19.129 L 34.392 30.953 C 34.016 31.17 33.784 31.573 33.786 32.008 C 33.786 32.448 34.011 32.838 34.392 33.063 L 54.857 44.877 C 55.562 45.29 55.996 46.044 55.999 46.861 Z\" id=\"FiVppemZ0-3199640955\"/></defs>\\n<use fill=\"var(--1gfpc8x, var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20)))\" height=\"64.00001316537691px\" href=\"#FiVppemZ0-3199640955\" id=\"FiVppemZ0\" width=\"55.999499797819226px\"/>\\n<use clip-path=\"url(#FiVppemZ0-3199640955-stroke)\" fill=\"transparent\" href=\"#FiVppemZ0-3199640955\" stroke-dasharray=\"0\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" stroke=\"var(--1kmwm9n, var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20)))\"/></svg>';const getProps=({fill,height,id,stroke,width,...props})=>{return{...props,ltaPCKw1P:fill??props.ltaPCKw1P??\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\",PlBYddBt6:stroke??props.PlBYddBt6??\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{style,className,layoutId,variant,ltaPCKw1P,PlBYddBt6,...restProps}=getProps(props);const href=useSVGTemplate(\"3199640955\",svg);return /*#__PURE__*/_jsx(SVG,{...restProps,className:cx(\"framer-TgixY\",className),layoutId:layoutId,ref:ref,role:\"presentation\",style:{\"--1gfpc8x\":ltaPCKw1P,\"--1kmwm9n\":PlBYddBt6,...style},viewBox:\"0 0 56 64\",children:/*#__PURE__*/_jsx(\"use\",{href:href})});});const css=[\".framer-TgixY { aspect-ratio: 0.875; display: block; width: 56px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicWidth 56\n * @framerIntrinsicHeight 64\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n * @framerVariables {\"ltaPCKw1P\":\"fill\",\"PlBYddBt6\":\"stroke\"}\n * @framerImmutableVariables true\n * @framerVector {\"name\":\"Mark Medium\",\"set\":{\"localId\":\"vectorSet/semsLeuo6\",\"id\":\"semsLeuo6\",\"moduleId\":\"tbMFOtptqE0TRKtlVVaX\"}}\n */const Icon=withCSS(Component,css,\"framer-TgixY\");export default Icon;addPropertyControls(Icon,{ltaPCKw1P:{defaultValue:'var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20)) /* {\"name\":\"Primary\"} */',hidden:false,title:\"Fill\",type:ControlType.Color},PlBYddBt6:{defaultValue:'var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20)) /* {\"name\":\"Primary\"} */',hidden:false,title:\"Stroke\",type:ControlType.Color}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"64\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"56\",\"framerVariables\":\"{\\\"ltaPCKw1P\\\":\\\"fill\\\",\\\"PlBYddBt6\\\":\\\"stroke\\\"}\",\"framerVector\":\"{\\\"name\\\":\\\"Mark Medium\\\",\\\"set\\\":{\\\"localId\\\":\\\"vectorSet/semsLeuo6\\\",\\\"id\\\":\\\"semsLeuo6\\\",\\\"moduleId\\\":\\\"tbMFOtptqE0TRKtlVVaX\\\"}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f76946f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"IkSr6OEuf\",\"e3zPU2zhr\",\"JU1QiHPTe\",\"JA0SEnDzG\"];const serializationHash=\"framer-zLtEh\";const variantClassNames={e3zPU2zhr:\"framer-v-a0s6ow\",IkSr6OEuf:\"framer-v-bvf0hc\",JA0SEnDzG:\"framer-v-1lb1dlf\",JU1QiHPTe:\"framer-v-y6a0u7\"};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 transition2={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const transition3={bounce:.2,delay:0,duration:.1,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={Idle:\"IkSr6OEuf\",On:\"JA0SEnDzG\",Play:\"e3zPU2zhr\",Transition:\"JU1QiHPTe\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"IkSr6OEuf\"};};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:\"IkSr6OEuf\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppeareolyzx=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"JU1QiHPTe\",true),200);});const onAppear1iwzwr8=activeVariantCallback(async(...args)=>{setVariant(\"JA0SEnDzG\",true);});const onTap9xx6ph=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"IkSr6OEuf\");});const onAppear1ry5yjr=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"IkSr6OEuf\",true),500);});useOnVariantChange(baseVariant,{e3zPU2zhr:onAppeareolyzx,JA0SEnDzG:onAppear1ry5yjr,JU1QiHPTe:onAppear1iwzwr8});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,...addPropertyOverrides({e3zPU2zhr:{value:transition2},JU1QiHPTe:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-bvf0hc\",className,classNames),\"data-framer-name\":\"Idle\",layoutDependency:layoutDependency,layoutId:\"IkSr6OEuf\",ref:refBinding,style:{borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999,...style},...addPropertyOverrides({e3zPU2zhr:{\"data-framer-name\":\"Play\",\"data-highlight\":true},JA0SEnDzG:{\"data-framer-name\":\"On\",\"data-highlight\":true,onTap:onTap9xx6ph},JU1QiHPTe:{\"data-framer-name\":\"Transition\",\"data-highlight\":true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cen2l\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"wR9HE1YSF\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-d35c4cf4-2229-41bc-9f56-c6095d0f8862, rgba(20, 20, 20, 0.04))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-f2e915ce-7845-4005-8a1c-c42c34ab8882, rgb(251, 250, 249))\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6kyhop\",layoutDependency:layoutDependency,layoutId:\"blUw_u4kK\",style:{backgroundColor:\"var(--token-d35c4cf4-2229-41bc-9f56-c6095d0f8862, rgba(20, 20, 20, 0.04))\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999,boxShadow:\"none\"},variants:{JA0SEnDzG:{backgroundColor:\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\",boxShadow:\"0px 0px 2px 0px var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20)), 0px 0px 8px 0px var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132))\"}}})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zLtEh.framer-1he35um, .framer-zLtEh .framer-1he35um { display: block; }\",\".framer-zLtEh.framer-bvf0hc { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 42px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 42px; will-change: var(--framer-will-change-override, transform); }\",\".framer-zLtEh .framer-cen2l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 12px; position: relative; width: min-content; }\",\".framer-zLtEh .framer-6kyhop { flex: none; height: 18px; overflow: hidden; position: relative; width: 18px; will-change: var(--framer-will-change-override, transform); }\",\".framer-zLtEh.framer-v-y6a0u7 .framer-cen2l, .framer-zLtEh.framer-v-1lb1dlf .framer-cen2l { padding: 8px; }\",\".framer-zLtEh.framer-v-1lb1dlf.framer-bvf0hc { cursor: pointer; }\",'.framer-zLtEh[data-border=\"true\"]::after, .framer-zLtEh [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 42\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"e3zPU2zhr\":{\"layout\":[\"fixed\",\"fixed\"]},\"JU1QiHPTe\":{\"layout\":[\"fixed\",\"fixed\"]},\"JA0SEnDzG\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerRnwUaxcrb=withCSS(Component,css,\"framer-zLtEh\");export default FramerRnwUaxcrb;FramerRnwUaxcrb.displayName=\"Skill Dot\";FramerRnwUaxcrb.defaultProps={height:42,width:42};addPropertyControls(FramerRnwUaxcrb,{variant:{options:[\"IkSr6OEuf\",\"e3zPU2zhr\",\"JU1QiHPTe\",\"JA0SEnDzG\"],optionTitles:[\"Idle\",\"Play\",\"Transition\",\"On\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerRnwUaxcrb,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRnwUaxcrb\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"e3zPU2zhr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JU1QiHPTe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JA0SEnDzG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"42\",\"framerIntrinsicWidth\":\"42\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RnwUaxcrb.map", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,CycleVariantState,getFonts,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Icon from\"https://framerusercontent.com/modules/DmUhaAlE6Gd7ouFRgyJA/ICaEfxiBzwalICOSqqmp/qq2iMPGBb.js\";import SkillDot from\"https://framerusercontent.com/modules/vxP8xYP6yIgbFkSXrzkz/eOM7G2h3v4pIW7e3r58A/RnwUaxcrb.js\";const SkillDotFonts=getFonts(SkillDot);const IconFonts=getFonts(Icon);const cycleOrder=[\"tytavq_kF\",\"IJiU1qUwl\",\"mVIhhOu5N\",\"x8p2cyGfn\",\"PkJtmmuTG\",\"lW7XWm_YT\",\"dvLObS2tP\"];const serializationHash=\"framer-GgCcM\";const variantClassNames={dvLObS2tP:\"framer-v-pits6r\",IJiU1qUwl:\"framer-v-18gas3h\",lW7XWm_YT:\"framer-v-143ztxp\",mVIhhOu5N:\"framer-v-4ftj0m\",PkJtmmuTG:\"framer-v-1rf161n\",tytavq_kF:\"framer-v-19ton6d\",x8p2cyGfn:\"framer-v-1w1883b\"};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 transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;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\":\"tytavq_kF\",\"Variant 2\":\"IJiU1qUwl\",\"Variant 3\":\"mVIhhOu5N\",\"Variant 4\":\"x8p2cyGfn\",\"Variant 5\":\"PkJtmmuTG\",\"Variant 6\":\"lW7XWm_YT\",\"Variant 7\":\"dvLObS2tP\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"tytavq_kF\"};};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:\"tytavq_kF\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearf9x053=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState,true),1100);});useOnVariantChange(baseVariant,{default:onAppearf9x053});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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-19ton6d\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"tytavq_kF\",ref:refBinding,style:{backgroundColor:\"var(--token-c8d3a8f6-938f-44f5-81c4-757532a93d1b, rgba(251, 250, 249, 0.09))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({dvLObS2tP:{\"data-framer-name\":\"Variant 7\"},IJiU1qUwl:{\"data-framer-name\":\"Variant 2\"},lW7XWm_YT:{\"data-framer-name\":\"Variant 6\"},mVIhhOu5N:{\"data-framer-name\":\"Variant 3\"},PkJtmmuTG:{\"data-framer-name\":\"Variant 5\"},x8p2cyGfn:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g1z6qe\",layoutDependency:layoutDependency,layoutId:\"LSYG4v3Op\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+52+(((componentViewport?.height||418)-104)*.7165605095541403-21),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-b8ke6n-container\",layoutDependency:layoutDependency,layoutId:\"liLZnZS0h-container\",nodeId:\"liLZnZS0h\",rendersWithMotion:true,scopeId:\"fCatKhdS7\",style:{rotate:-120},transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(SkillDot,{height:\"100%\",id:\"liLZnZS0h\",layoutId:\"liLZnZS0h\",variant:\"IkSr6OEuf\",width:\"100%\",...addPropertyOverrides({dvLObS2tP:{variant:\"e3zPU2zhr\"},lW7XWm_YT:{variant:\"e3zPU2zhr\"},PkJtmmuTG:{variant:\"e3zPU2zhr\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+52+(((componentViewport?.height||418)-104)*.2834394904458601-21),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1j18me9-container\",layoutDependency:layoutDependency,layoutId:\"I7Nsv6wQ9-container\",nodeId:\"I7Nsv6wQ9\",rendersWithMotion:true,scopeId:\"fCatKhdS7\",style:{rotate:-120},transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(SkillDot,{height:\"100%\",id:\"I7Nsv6wQ9\",layoutId:\"I7Nsv6wQ9\",variant:\"IkSr6OEuf\",width:\"100%\",...addPropertyOverrides({dvLObS2tP:{variant:\"e3zPU2zhr\"},IJiU1qUwl:{variant:\"e3zPU2zhr\"},lW7XWm_YT:{variant:\"e3zPU2zhr\"},mVIhhOu5N:{variant:\"e3zPU2zhr\"},PkJtmmuTG:{variant:\"e3zPU2zhr\"},x8p2cyGfn:{variant:\"e3zPU2zhr\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+52+(((componentViewport?.height||418)-104)*.2834394904458601-21),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dck06m-container\",layoutDependency:layoutDependency,layoutId:\"L35NQ7rjV-container\",nodeId:\"L35NQ7rjV\",rendersWithMotion:true,scopeId:\"fCatKhdS7\",style:{rotate:-60},transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(SkillDot,{height:\"100%\",id:\"L35NQ7rjV\",layoutId:\"L35NQ7rjV\",variant:\"IkSr6OEuf\",width:\"100%\",...addPropertyOverrides({dvLObS2tP:{variant:\"e3zPU2zhr\"},lW7XWm_YT:{variant:\"e3zPU2zhr\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+52+(((componentViewport?.height||418)-104)*.7165605095541403-21),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ee10wu-container\",layoutDependency:layoutDependency,layoutId:\"XH0d3mRxo-container\",nodeId:\"XH0d3mRxo\",rendersWithMotion:true,scopeId:\"fCatKhdS7\",style:{rotate:-60},transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(SkillDot,{height:\"100%\",id:\"XH0d3mRxo\",layoutId:\"XH0d3mRxo\",variant:\"IkSr6OEuf\",width:\"100%\",...addPropertyOverrides({dvLObS2tP:{variant:\"e3zPU2zhr\"},lW7XWm_YT:{variant:\"e3zPU2zhr\"},mVIhhOu5N:{variant:\"e3zPU2zhr\"},PkJtmmuTG:{variant:\"e3zPU2zhr\"},x8p2cyGfn:{variant:\"e3zPU2zhr\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+52+(((componentViewport?.height||418)-104)*.06687898089171997-21),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-q8qjjm-container\",layoutDependency:layoutDependency,layoutId:\"P1Y7mnMVP-container\",nodeId:\"P1Y7mnMVP\",rendersWithMotion:true,scopeId:\"fCatKhdS7\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(SkillDot,{height:\"100%\",id:\"P1Y7mnMVP\",layoutId:\"P1Y7mnMVP\",variant:\"e3zPU2zhr\",width:\"100%\",...addPropertyOverrides({IJiU1qUwl:{variant:\"IkSr6OEuf\"},lW7XWm_YT:{variant:\"IkSr6OEuf\"},mVIhhOu5N:{variant:\"IkSr6OEuf\"},PkJtmmuTG:{variant:\"IkSr6OEuf\"},x8p2cyGfn:{variant:\"IkSr6OEuf\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+52+(((componentViewport?.height||418)-104)*.9331210191082805-21),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ej1uk4-container\",layoutDependency:layoutDependency,layoutId:\"M0DlVMZKf-container\",nodeId:\"M0DlVMZKf\",rendersWithMotion:true,scopeId:\"fCatKhdS7\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(SkillDot,{height:\"100%\",id:\"M0DlVMZKf\",layoutId:\"M0DlVMZKf\",variant:\"IkSr6OEuf\",width:\"100%\",...addPropertyOverrides({dvLObS2tP:{variant:\"e3zPU2zhr\"},lW7XWm_YT:{variant:\"e3zPU2zhr\"},PkJtmmuTG:{variant:\"e3zPU2zhr\"},x8p2cyGfn:{variant:\"e3zPU2zhr\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(Icon,{animated:true,className:\"framer-1j0np4e\",layoutDependency:layoutDependency,layoutId:\"YZ57KhnJp\",style:{\"--1gfpc8x\":\"var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132))\",\"--1kmwm9n\":\"rgba(251, 250, 249, 0)\"},transformTemplate:transformTemplate2})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GgCcM.framer-rrrjoq, .framer-GgCcM .framer-rrrjoq { display: block; }\",\".framer-GgCcM.framer-19ton6d { gap: 24px; height: 418px; overflow: hidden; position: relative; width: 496px; will-change: var(--framer-will-change-override, transform); }\",\".framer-GgCcM .framer-g1z6qe { aspect-ratio: 0.9363057324840764 / 1; bottom: 52px; flex: none; left: 50%; overflow: visible; position: absolute; top: 52px; width: var(--framer-aspect-ratio-supported, 294px); }\",\".framer-GgCcM .framer-b8ke6n-container { flex: none; height: auto; left: 10%; position: absolute; top: 72%; width: auto; }\",\".framer-GgCcM .framer-1j18me9-container { flex: none; height: auto; left: 90%; position: absolute; top: 28%; width: auto; }\",\".framer-GgCcM .framer-dck06m-container { flex: none; height: auto; left: 10%; position: absolute; top: 28%; width: auto; }\",\".framer-GgCcM .framer-1ee10wu-container { flex: none; height: auto; left: 90%; position: absolute; top: 72%; width: auto; }\",\".framer-GgCcM .framer-q8qjjm-container { flex: none; height: auto; left: 50%; position: absolute; top: 7%; width: auto; }\",\".framer-GgCcM .framer-ej1uk4-container { flex: none; height: auto; left: 50%; position: absolute; top: 93%; width: auto; }\",\".framer-GgCcM .framer-1j0np4e { flex: none; height: var(--framer-aspect-ratio-supported, 120px); left: 50%; position: absolute; top: 50%; width: 105px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 418\n * @framerIntrinsicWidth 496\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"IJiU1qUwl\":{\"layout\":[\"fixed\",\"fixed\"]},\"mVIhhOu5N\":{\"layout\":[\"fixed\",\"fixed\"]},\"x8p2cyGfn\":{\"layout\":[\"fixed\",\"fixed\"]},\"PkJtmmuTG\":{\"layout\":[\"fixed\",\"fixed\"]},\"lW7XWm_YT\":{\"layout\":[\"fixed\",\"fixed\"]},\"dvLObS2tP\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerfCatKhdS7=withCSS(Component,css,\"framer-GgCcM\");export default FramerfCatKhdS7;FramerfCatKhdS7.displayName=\"Orchestration visual\";FramerfCatKhdS7.defaultProps={height:418,width:496};addPropertyControls(FramerfCatKhdS7,{variant:{options:[\"tytavq_kF\",\"IJiU1qUwl\",\"mVIhhOu5N\",\"x8p2cyGfn\",\"PkJtmmuTG\",\"lW7XWm_YT\",\"dvLObS2tP\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerfCatKhdS7,[{explicitInter:true,fonts:[]},...SkillDotFonts,...IconFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfCatKhdS7\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"496\",\"framerIntrinsicHeight\":\"418\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IJiU1qUwl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mVIhhOu5N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"x8p2cyGfn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PkJtmmuTG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lW7XWm_YT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dvLObS2tP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fCatKhdS7.map", "// Generated by Framer (c07a8c1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,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/cenwFrnC9aWUHphsnGi6/DT9wnXmZgBsPVvpipysp/SRckh1huN.js\";const cycleOrder=[\"JleRixuqZ\",\"qwlG1oVZx\",\"zH0PtpnrG\",\"scibe0nm8\",\"mtimPaXrc\",\"FueEgygrx\",\"SlAmXG8vf\",\"tNdpc7aOn\",\"zBv9Hd7Nj\",\"Yw8AFzd21\"];const serializationHash=\"framer-sKIvc\";const variantClassNames={FueEgygrx:\"framer-v-kp0iqa\",JleRixuqZ:\"framer-v-42tjse\",mtimPaXrc:\"framer-v-1gac40b\",qwlG1oVZx:\"framer-v-14whz7y\",scibe0nm8:\"framer-v-18bgv6o\",SlAmXG8vf:\"framer-v-1bqvgv\",tNdpc7aOn:\"framer-v-7ur9ox\",Yw8AFzd21:\"framer-v-1in3uax\",zBv9Hd7Nj:\"framer-v-1riy07u\",zH0PtpnrG:\"framer-v-117bn4u\"};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 numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transition2={delay:0,duration:0,ease:[.44,0,.56,1],type:\"tween\"};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 transition3={duration:0,type:\"tween\"};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"JleRixuqZ\",\"Variant 10\":\"Yw8AFzd21\",\"Variant 2\":\"qwlG1oVZx\",\"Variant 3\":\"zH0PtpnrG\",\"Variant 4\":\"scibe0nm8\",\"Variant 5\":\"mtimPaXrc\",\"Variant 6\":\"FueEgygrx\",\"Variant 7\":\"SlAmXG8vf\",\"Variant 8\":\"tNdpc7aOn\",\"Variant 9\":\"zBv9Hd7Nj\"};const getProps=({gap,height,id,label1,label2,label3,label4,label5,showLabel,title,width,...props})=>{return{...props,alVjkW82b:showLabel??props.alVjkW82b??true,AuteqFZi8:label1??props.AuteqFZi8??\"label 1\",IerL0xoGY:title??props.IerL0xoGY??\"We build \",mrsvahHX6:label3??props.mrsvahHX6??\"label 3\",RuKXuiKR0:label5??props.RuKXuiKR0??\"label 5\",variant:humanReadableVariantMap[props.variant]??props.variant??\"JleRixuqZ\",VSMWnra3s:label4??props.VSMWnra3s??\"label 4\",WuEWAhqT8:label2??props.WuEWAhqT8??\"label 2\",yF2PK3DXU:gap??props.yF2PK3DXU??16};};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,AuteqFZi8,WuEWAhqT8,mrsvahHX6,VSMWnra3s,RuKXuiKR0,yF2PK3DXU,IerL0xoGY,alVjkW82b,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"JleRixuqZ\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear125s4jt=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"qwlG1oVZx\"),2e3);});const onAppear1uo72m3=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"zH0PtpnrG\"),2e3);});const onAppear1c72drs=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"scibe0nm8\"),2e3);});const onAppearjuzji1=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"mtimPaXrc\"),2e3);});const onAppear1sxif46=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"FueEgygrx\"),2e3);});const onAppear14mhocg=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"SlAmXG8vf\"),2e3);});const onAppear1uscjs2=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"tNdpc7aOn\"),2e3);});const onAppear1vz4r1y=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"zBv9Hd7Nj\"),2e3);});const onAppear1njp2r8=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Yw8AFzd21\"),2e3);});const onAppear1vpx2yo=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"JleRixuqZ\"),2e3);});useOnVariantChange(baseVariant,{default:onAppear125s4jt,FueEgygrx:onAppear14mhocg,mtimPaXrc:onAppear1sxif46,qwlG1oVZx:onAppear1uo72m3,scibe0nm8:onAppearjuzji1,SlAmXG8vf:onAppear1uscjs2,tNdpc7aOn:onAppear1vz4r1y,Yw8AFzd21:onAppear1vpx2yo,zBv9Hd7Nj:onAppear1njp2r8,zH0PtpnrG:onAppear1c72drs});const sharedStyleClassNames=[sharedStyle.className];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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-42tjse\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"JleRixuqZ\",ref:refBinding,style:{...style},...addPropertyOverrides({FueEgygrx:{\"data-framer-name\":\"Variant 6\"},mtimPaXrc:{\"data-framer-name\":\"Variant 5\"},qwlG1oVZx:{\"data-framer-name\":\"Variant 2\"},scibe0nm8:{\"data-framer-name\":\"Variant 4\"},SlAmXG8vf:{\"data-framer-name\":\"Variant 7\"},tNdpc7aOn:{\"data-framer-name\":\"Variant 8\"},Yw8AFzd21:{\"data-framer-name\":\"Variant 10\"},zBv9Hd7Nj:{\"data-framer-name\":\"Variant 9\"},zH0PtpnrG:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ivzoyp\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"aP00p2RZu\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s162gp\",\"data-framer-name\":\"Main label\",layoutDependency:layoutDependency,layoutId:\"Sw_k4WKkU\",children:alVjkW82b&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-173iguj\",\"data-styles-preset\":\"SRckh1huN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132)))\"},children:\"We build \"})}),className:\"framer-1iwgkv7\",\"data-framer-name\":\"Main label\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rXlughRKf\",style:{\"--extracted-r6o4lv\":\"var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:IerL0xoGY,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2mw58d\",\"data-framer-name\":\"Full list\",layoutDependency:layoutDependency,layoutId:\"W_hrgxzZp\",style:{\"--19h4g1e\":numberToPixelString(yF2PK3DXU),mask:\"linear-gradient(180deg, rgba(0,0,0,0) 38%, rgba(0,0,0,1) 50.72318412162162%, rgba(0, 0, 0, 0) 64%) add\",WebkitMask:\"linear-gradient(180deg, rgba(0,0,0,0) 38%, rgba(0,0,0,1) 50.72318412162162%, rgba(0, 0, 0, 0) 64%) add\"},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(Transition,{value:transition2,...addPropertyOverrides({FueEgygrx:{value:undefined},mtimPaXrc:{value:undefined},qwlG1oVZx:{value:undefined},scibe0nm8:{value:undefined},SlAmXG8vf:{value:undefined},tNdpc7aOn:{value:undefined},Yw8AFzd21:{value:undefined},zBv9Hd7Nj:{value:undefined},zH0PtpnrG:{value:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10ocw50\",\"data-framer-name\":\"1.1\",layoutDependency:layoutDependency,layoutId:\"EtfL1cMGX\",style:{opacity:0},variants:{FueEgygrx:{opacity:1},mtimPaXrc:{opacity:.2},scibe0nm8:{opacity:.2},SlAmXG8vf:{opacity:.2},tNdpc7aOn:{opacity:.2}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-173iguj\",\"data-styles-preset\":\"SRckh1huN\",children:\"label 1\"})}),className:\"framer-1hk3gqx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NguA0Jkdp\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",textShadow:\"0px 0px 6px rgba(255, 255, 255, 0.25), 0px 0px 1px rgba(255, 255, 255, 0.25)\"},text:AuteqFZi8,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({qwlG1oVZx:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tgq4n9\",\"data-framer-name\":\"2.1\",layoutDependency:layoutDependency,layoutId:\"d4F9WKYsb\",style:{opacity:0},variants:{FueEgygrx:{opacity:.2},mtimPaXrc:{opacity:.2},SlAmXG8vf:{opacity:1},tNdpc7aOn:{opacity:.2},zBv9Hd7Nj:{opacity:.2}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-173iguj\",\"data-styles-preset\":\"SRckh1huN\",children:\"label 2\"})}),className:\"framer-1sjac49\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kuJZYNQE6\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",textShadow:\"0px 0px 6px rgba(255, 255, 255, 0.25), 0px 0px 1px rgba(255, 255, 255, 0.25)\"},text:WuEWAhqT8,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({zH0PtpnrG:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-uhran1\",\"data-framer-name\":\"3.1\",layoutDependency:layoutDependency,layoutId:\"pjVxwW7to\",style:{opacity:0},variants:{FueEgygrx:{opacity:.2},SlAmXG8vf:{opacity:.2},tNdpc7aOn:{opacity:1},Yw8AFzd21:{opacity:.2},zBv9Hd7Nj:{opacity:.2}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-173iguj\",\"data-styles-preset\":\"SRckh1huN\",children:\"label 3\"})}),className:\"framer-1jr5t3d\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ADMOuVBwJ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",textShadow:\"0px 0px 6px rgba(255, 255, 255, 0.25), 0px 0px 1px rgba(255, 255, 255, 0.25)\"},text:mrsvahHX6,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({scibe0nm8:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vfcqel\",\"data-framer-name\":\"4.1\",layoutDependency:layoutDependency,layoutId:\"fEFMHXsl7\",style:{opacity:.2},variants:{FueEgygrx:{opacity:0},mtimPaXrc:{opacity:0},qwlG1oVZx:{opacity:0},scibe0nm8:{opacity:0},zBv9Hd7Nj:{opacity:1},zH0PtpnrG:{opacity:0}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-173iguj\",\"data-styles-preset\":\"SRckh1huN\",children:\"label 4\"})}),className:\"framer-4sl73o\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rCTOR56FD\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",textShadow:\"0px 0px 6px rgba(255, 255, 255, 0.25), 0px 0px 1px rgba(255, 255, 255, 0.25)\"},text:VSMWnra3s,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({FueEgygrx:{value:transition3},mtimPaXrc:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vqi56g\",\"data-framer-name\":\"5.1\",layoutDependency:layoutDependency,layoutId:\"XYOpNXbjW\",style:{opacity:.2},variants:{FueEgygrx:{opacity:0},mtimPaXrc:{opacity:0},scibe0nm8:{opacity:0},SlAmXG8vf:{opacity:0},Yw8AFzd21:{opacity:1},zH0PtpnrG:{opacity:0}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-173iguj\",\"data-styles-preset\":\"SRckh1huN\",children:\"label 5\"})}),className:\"framer-1humhvo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gYxPxUF0K\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",textShadow:\"0px 0px 6px rgba(255, 255, 255, 0.25), 0px 0px 1px rgba(255, 255, 255, 0.25)\"},text:RuKXuiKR0,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cjylux\",\"data-framer-name\":\"1.2\",layoutDependency:layoutDependency,layoutId:\"zN7JHq5YJ\",style:{opacity:1},variants:{FueEgygrx:{opacity:0},mtimPaXrc:{opacity:0},qwlG1oVZx:{opacity:.2},scibe0nm8:{opacity:0},SlAmXG8vf:{opacity:0},tNdpc7aOn:{opacity:0},Yw8AFzd21:{opacity:.2},zBv9Hd7Nj:{opacity:.2},zH0PtpnrG:{opacity:.2}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-173iguj\",\"data-styles-preset\":\"SRckh1huN\",children:\"label 1\"})}),className:\"framer-1es33js\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wCIY79wYE\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",textShadow:\"0px 0px 6px rgba(255, 255, 255, 0.25), 0px 0px 1px rgba(255, 255, 255, 0.25)\"},text:AuteqFZi8,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({SlAmXG8vf:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zldqb0\",\"data-framer-name\":\"2.2\",layoutDependency:layoutDependency,layoutId:\"KFsYfsvw0\",style:{opacity:.2},variants:{FueEgygrx:{opacity:0},mtimPaXrc:{opacity:0},qwlG1oVZx:{opacity:1},SlAmXG8vf:{opacity:0},tNdpc7aOn:{opacity:0},zBv9Hd7Nj:{opacity:0}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-173iguj\",\"data-styles-preset\":\"SRckh1huN\",children:\"label 2\"})}),className:\"framer-1q1dfqc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GyyuaOFv1\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:1,textShadow:\"0px 0px 6px rgba(255, 255, 255, 0.25), 0px 0px 1px rgba(255, 255, 255, 0.25)\"},text:WuEWAhqT8,variants:{SlAmXG8vf:{opacity:0},tNdpc7aOn:{opacity:0},Yw8AFzd21:{opacity:1},zBv9Hd7Nj:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({tNdpc7aOn:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vkkbu6\",\"data-framer-name\":\"3.2\",layoutDependency:layoutDependency,layoutId:\"uP60db67M\",style:{opacity:.2},variants:{FueEgygrx:{opacity:0},SlAmXG8vf:{opacity:0},tNdpc7aOn:{opacity:0},Yw8AFzd21:{opacity:0},zBv9Hd7Nj:{opacity:0},zH0PtpnrG:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-173iguj\",\"data-styles-preset\":\"SRckh1huN\",children:\"label 3\"})}),className:\"framer-miya6y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FXpESJzQs\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",textShadow:\"0px 0px 6px rgba(255, 255, 255, 0.25), 0px 0px 1px rgba(255, 255, 255, 0.25)\"},text:mrsvahHX6,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-f2o8jz\",\"data-framer-name\":\"4.2\",layoutDependency:layoutDependency,layoutId:\"e4vLFrySc\",style:{opacity:0},variants:{FueEgygrx:{opacity:.2},mtimPaXrc:{opacity:.2},qwlG1oVZx:{opacity:.2},scibe0nm8:{opacity:1},zH0PtpnrG:{opacity:.2}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-173iguj\",\"data-styles-preset\":\"SRckh1huN\",children:\"label 4\"})}),className:\"framer-y9uajg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"r72fpLfok\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",textShadow:\"0px 0px 6px rgba(255, 255, 255, 0.25), 0px 0px 1px rgba(255, 255, 255, 0.25)\"},text:VSMWnra3s,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lu6g9u\",\"data-framer-name\":\"5.2\",layoutDependency:layoutDependency,layoutId:\"sh67ZBlgL\",style:{opacity:0},variants:{FueEgygrx:{opacity:.2},mtimPaXrc:{opacity:1},scibe0nm8:{opacity:.2},SlAmXG8vf:{opacity:.2},zH0PtpnrG:{opacity:.2}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-173iguj\",\"data-styles-preset\":\"SRckh1huN\",children:\"label 5\"})}),className:\"framer-1bzmmj6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xmGdwjVP_\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",textShadow:\"0px 0px 6px rgba(255, 255, 255, 0.25), 0px 0px 1px rgba(255, 255, 255, 0.25)\"},text:RuKXuiKR0,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-s0uxb\",\"data-framer-name\":\"Blank\",layoutDependency:layoutDependency,layoutId:\"vZ9nAnTrJ\",style:{opacity:0},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-173iguj\",\"data-styles-preset\":\"SRckh1huN\",children:\"label 5\"})}),className:\"framer-1qso9n2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vwmKy0qLO\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.4,textShadow:\"0px 0px 6px rgba(255, 255, 255, 0.25), 0px 0px 1px rgba(255, 255, 255, 0.25)\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i2dc1i\",\"data-framer-name\":\"Spacers\",layoutDependency:layoutDependency,layoutId:\"cJvZ6KVfq\",style:{\"--19h4g1e\":numberToPixelString(yF2PK3DXU)},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xuhcg9\",\"data-framer-name\":\"1.1\",layoutDependency:layoutDependency,layoutId:\"A5rsGQzK1\",style:{backgroundColor:\"rgb(255, 255, 255)\",opacity:0},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-173iguj\",\"data-styles-preset\":\"SRckh1huN\",children:\"label 1\"})}),className:\"framer-1tczifi\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dEhjfY8yf\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},text:AuteqFZi8,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tsii6b\",\"data-framer-name\":\"2.1\",layoutDependency:layoutDependency,layoutId:\"zZkZXXd23\",style:{backgroundColor:\"rgb(255, 255, 255)\",opacity:0},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-173iguj\",\"data-styles-preset\":\"SRckh1huN\",children:\"label 2\"})}),className:\"framer-p04d4y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WUKwnHk9v\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:WuEWAhqT8,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ogsoid\",\"data-framer-name\":\"3.1\",layoutDependency:layoutDependency,layoutId:\"SpKjoCahw\",style:{backgroundColor:\"rgb(255, 255, 255)\",opacity:0},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-173iguj\",\"data-styles-preset\":\"SRckh1huN\",children:\"label 3\"})}),className:\"framer-qc4944\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ntB_VVNf8\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:mrsvahHX6,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18h4cn7\",\"data-framer-name\":\"4.1\",layoutDependency:layoutDependency,layoutId:\"Vga6GR7EV\",style:{backgroundColor:\"rgb(255, 255, 255)\",opacity:0},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-173iguj\",\"data-styles-preset\":\"SRckh1huN\",children:\"label 4\"})}),className:\"framer-1kfqfww\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XkrQmrwvG\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:VSMWnra3s,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mg7rzk\",\"data-framer-name\":\"5.1\",layoutDependency:layoutDependency,layoutId:\"IgHuiIBFi\",style:{backgroundColor:\"rgb(255, 255, 255)\",opacity:0},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-173iguj\",\"data-styles-preset\":\"SRckh1huN\",children:\"label 5\"})}),className:\"framer-1pgmolh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YxcNpq_WH\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:RuKXuiKR0,verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sKIvc.framer-1x3l94e, .framer-sKIvc .framer-1x3l94e { display: block; }\",\".framer-sKIvc.framer-42tjse { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-height: 57px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sKIvc .framer-ivzoyp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sKIvc .framer-1s162gp, .framer-sKIvc .framer-1xuhcg9, .framer-sKIvc .framer-1tsii6b, .framer-sKIvc .framer-1ogsoid, .framer-sKIvc .framer-18h4cn7, .framer-sKIvc .framer-1mg7rzk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-sKIvc .framer-1iwgkv7, .framer-sKIvc .framer-1hk3gqx, .framer-sKIvc .framer-1sjac49, .framer-sKIvc .framer-1jr5t3d, .framer-sKIvc .framer-4sl73o, .framer-sKIvc .framer-1humhvo, .framer-sKIvc .framer-1es33js, .framer-sKIvc .framer-1q1dfqc, .framer-sKIvc .framer-miya6y, .framer-sKIvc .framer-y9uajg, .framer-sKIvc .framer-1bzmmj6, .framer-sKIvc .framer-1tczifi, .framer-sKIvc .framer-p04d4y, .framer-sKIvc .framer-qc4944, .framer-sKIvc .framer-1kfqfww, .framer-sKIvc .framer-1pgmolh { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-sKIvc .framer-2mw58d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: var(--19h4g1e); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 50%; width: min-content; z-index: 1; }\",\".framer-sKIvc .framer-10ocw50, .framer-sKIvc .framer-1tgq4n9, .framer-sKIvc .framer-uhran1, .framer-sKIvc .framer-1vfcqel, .framer-sKIvc .framer-vqi56g, .framer-sKIvc .framer-cjylux, .framer-sKIvc .framer-zldqb0, .framer-sKIvc .framer-1vkkbu6, .framer-sKIvc .framer-f2o8jz, .framer-sKIvc .framer-1lu6g9u, .framer-sKIvc .framer-s0uxb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sKIvc .framer-1qso9n2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-sKIvc .framer-i2dc1i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: var(--19h4g1e); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-sKIvc.framer-v-14whz7y .framer-10ocw50, .framer-sKIvc.framer-v-117bn4u .framer-1tgq4n9, .framer-sKIvc.framer-v-18bgv6o .framer-uhran1, .framer-sKIvc.framer-v-1gac40b .framer-1vfcqel, .framer-sKIvc.framer-v-kp0iqa .framer-vqi56g, .framer-sKIvc.framer-v-1bqvgv .framer-cjylux, .framer-sKIvc.framer-v-7ur9ox .framer-zldqb0, .framer-sKIvc.framer-v-1riy07u .framer-1vkkbu6, .framer-sKIvc.framer-v-1in3uax .framer-f2o8jz { order: 9; }\",\".framer-sKIvc.framer-v-14whz7y .framer-1tgq4n9, .framer-sKIvc.framer-v-117bn4u .framer-uhran1, .framer-sKIvc.framer-v-18bgv6o .framer-1vfcqel, .framer-sKIvc.framer-v-1gac40b .framer-vqi56g, .framer-sKIvc.framer-v-kp0iqa .framer-cjylux, .framer-sKIvc.framer-v-1bqvgv .framer-zldqb0, .framer-sKIvc.framer-v-7ur9ox .framer-1vkkbu6, .framer-sKIvc.framer-v-1riy07u .framer-f2o8jz, .framer-sKIvc.framer-v-1in3uax .framer-1lu6g9u { order: 0; }\",\".framer-sKIvc.framer-v-14whz7y .framer-uhran1, .framer-sKIvc.framer-v-117bn4u .framer-1vfcqel, .framer-sKIvc.framer-v-18bgv6o .framer-vqi56g, .framer-sKIvc.framer-v-1gac40b .framer-cjylux, .framer-sKIvc.framer-v-kp0iqa .framer-zldqb0, .framer-sKIvc.framer-v-1bqvgv .framer-1vkkbu6, .framer-sKIvc.framer-v-7ur9ox .framer-f2o8jz, .framer-sKIvc.framer-v-1riy07u .framer-1lu6g9u, .framer-sKIvc.framer-v-1in3uax .framer-10ocw50 { order: 1; }\",\".framer-sKIvc.framer-v-14whz7y .framer-1vfcqel, .framer-sKIvc.framer-v-117bn4u .framer-vqi56g, .framer-sKIvc.framer-v-18bgv6o .framer-cjylux, .framer-sKIvc.framer-v-1gac40b .framer-zldqb0, .framer-sKIvc.framer-v-kp0iqa .framer-1vkkbu6, .framer-sKIvc.framer-v-1bqvgv .framer-f2o8jz, .framer-sKIvc.framer-v-7ur9ox .framer-1lu6g9u, .framer-sKIvc.framer-v-1riy07u .framer-10ocw50, .framer-sKIvc.framer-v-1in3uax .framer-1tgq4n9 { order: 2; }\",\".framer-sKIvc.framer-v-14whz7y .framer-vqi56g, .framer-sKIvc.framer-v-117bn4u .framer-cjylux, .framer-sKIvc.framer-v-18bgv6o .framer-zldqb0, .framer-sKIvc.framer-v-1gac40b .framer-1vkkbu6, .framer-sKIvc.framer-v-kp0iqa .framer-f2o8jz, .framer-sKIvc.framer-v-1bqvgv .framer-1lu6g9u, .framer-sKIvc.framer-v-7ur9ox .framer-10ocw50, .framer-sKIvc.framer-v-1riy07u .framer-1tgq4n9, .framer-sKIvc.framer-v-1in3uax .framer-uhran1 { order: 3; }\",\".framer-sKIvc.framer-v-14whz7y .framer-cjylux, .framer-sKIvc.framer-v-117bn4u .framer-zldqb0, .framer-sKIvc.framer-v-18bgv6o .framer-1vkkbu6, .framer-sKIvc.framer-v-1gac40b .framer-f2o8jz, .framer-sKIvc.framer-v-kp0iqa .framer-1lu6g9u, .framer-sKIvc.framer-v-1bqvgv .framer-10ocw50, .framer-sKIvc.framer-v-7ur9ox .framer-1tgq4n9, .framer-sKIvc.framer-v-1riy07u .framer-uhran1, .framer-sKIvc.framer-v-1in3uax .framer-1vfcqel { order: 4; }\",\".framer-sKIvc.framer-v-14whz7y .framer-zldqb0, .framer-sKIvc.framer-v-117bn4u .framer-1vkkbu6, .framer-sKIvc.framer-v-18bgv6o .framer-f2o8jz, .framer-sKIvc.framer-v-1gac40b .framer-1lu6g9u, .framer-sKIvc.framer-v-kp0iqa .framer-10ocw50, .framer-sKIvc.framer-v-1bqvgv .framer-1tgq4n9, .framer-sKIvc.framer-v-7ur9ox .framer-uhran1, .framer-sKIvc.framer-v-1riy07u .framer-1vfcqel, .framer-sKIvc.framer-v-1in3uax .framer-vqi56g { order: 5; }\",\".framer-sKIvc.framer-v-14whz7y .framer-1vkkbu6, .framer-sKIvc.framer-v-117bn4u .framer-f2o8jz, .framer-sKIvc.framer-v-18bgv6o .framer-1lu6g9u, .framer-sKIvc.framer-v-1gac40b .framer-10ocw50, .framer-sKIvc.framer-v-kp0iqa .framer-1tgq4n9, .framer-sKIvc.framer-v-1bqvgv .framer-uhran1, .framer-sKIvc.framer-v-7ur9ox .framer-1vfcqel, .framer-sKIvc.framer-v-1riy07u .framer-vqi56g, .framer-sKIvc.framer-v-1in3uax .framer-cjylux { order: 6; }\",\".framer-sKIvc.framer-v-14whz7y .framer-f2o8jz, .framer-sKIvc.framer-v-117bn4u .framer-1lu6g9u, .framer-sKIvc.framer-v-18bgv6o .framer-10ocw50, .framer-sKIvc.framer-v-1gac40b .framer-1tgq4n9, .framer-sKIvc.framer-v-kp0iqa .framer-uhran1, .framer-sKIvc.framer-v-1bqvgv .framer-1vfcqel, .framer-sKIvc.framer-v-7ur9ox .framer-vqi56g, .framer-sKIvc.framer-v-1riy07u .framer-cjylux, .framer-sKIvc.framer-v-1in3uax .framer-zldqb0 { order: 7; }\",\".framer-sKIvc.framer-v-14whz7y .framer-1lu6g9u, .framer-sKIvc.framer-v-117bn4u .framer-10ocw50, .framer-sKIvc.framer-v-18bgv6o .framer-1tgq4n9, .framer-sKIvc.framer-v-1gac40b .framer-uhran1, .framer-sKIvc.framer-v-kp0iqa .framer-1vfcqel, .framer-sKIvc.framer-v-1bqvgv .framer-vqi56g, .framer-sKIvc.framer-v-7ur9ox .framer-cjylux, .framer-sKIvc.framer-v-1riy07u .framer-zldqb0, .framer-sKIvc.framer-v-1in3uax .framer-1vkkbu6 { order: 8; }\",\".framer-sKIvc.framer-v-14whz7y .framer-s0uxb, .framer-sKIvc.framer-v-117bn4u .framer-s0uxb, .framer-sKIvc.framer-v-18bgv6o .framer-s0uxb, .framer-sKIvc.framer-v-1gac40b .framer-s0uxb, .framer-sKIvc.framer-v-kp0iqa .framer-s0uxb, .framer-sKIvc.framer-v-1bqvgv .framer-s0uxb, .framer-sKIvc.framer-v-7ur9ox .framer-s0uxb, .framer-sKIvc.framer-v-1riy07u .framer-s0uxb, .framer-sKIvc.framer-v-1in3uax .framer-s0uxb { order: 10; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 57\n * @framerIntrinsicWidth 192\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,null,\"57px\"]},\"qwlG1oVZx\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,null,\"57px\"]},\"zH0PtpnrG\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,null,\"57px\"]},\"scibe0nm8\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,null,\"57px\"]},\"mtimPaXrc\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,null,\"57px\"]},\"FueEgygrx\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,null,\"57px\"]},\"SlAmXG8vf\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,null,\"57px\"]},\"tNdpc7aOn\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,null,\"57px\"]},\"zBv9Hd7Nj\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,null,\"57px\"]},\"Yw8AFzd21\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,null,\"57px\"]}}}\n * @framerVariables {\"AuteqFZi8\":\"label1\",\"WuEWAhqT8\":\"label2\",\"mrsvahHX6\":\"label3\",\"VSMWnra3s\":\"label4\",\"RuKXuiKR0\":\"label5\",\"yF2PK3DXU\":\"gap\",\"IerL0xoGY\":\"title\",\"alVjkW82b\":\"showLabel\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerOvPo0ax8A=withCSS(Component,css,\"framer-sKIvc\");export default FramerOvPo0ax8A;FramerOvPo0ax8A.displayName=\"Text cycle 2\";FramerOvPo0ax8A.defaultProps={height:57,width:192};addPropertyControls(FramerOvPo0ax8A,{variant:{options:[\"JleRixuqZ\",\"qwlG1oVZx\",\"zH0PtpnrG\",\"scibe0nm8\",\"mtimPaXrc\",\"FueEgygrx\",\"SlAmXG8vf\",\"tNdpc7aOn\",\"zBv9Hd7Nj\",\"Yw8AFzd21\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\",\"Variant 8\",\"Variant 9\",\"Variant 10\"],title:\"Variant\",type:ControlType.Enum},AuteqFZi8:{defaultValue:\"label 1\",displayTextArea:false,title:\"Label 1\",type:ControlType.String},WuEWAhqT8:{defaultValue:\"label 2\",displayTextArea:false,title:\"Label 2\",type:ControlType.String},mrsvahHX6:{defaultValue:\"label 3\",displayTextArea:false,title:\"Label 3\",type:ControlType.String},VSMWnra3s:{defaultValue:\"label 4\",displayTextArea:false,title:\"Label 4\",type:ControlType.String},RuKXuiKR0:{defaultValue:\"label 5\",displayTextArea:false,title:\"Label 5\",type:ControlType.String},yF2PK3DXU:{defaultValue:16,min:0,title:\"Gap\",type:ControlType.Number},IerL0xoGY:{defaultValue:\"We build \",displayTextArea:false,title:\"Title\",type:ControlType.String},alVjkW82b:{defaultValue:true,title:\"Show Label\",type:ControlType.Boolean}});addFonts(FramerOvPo0ax8A,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOvPo0ax8A\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"192\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"57px\\\"]},\\\"qwlG1oVZx\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"57px\\\"]},\\\"zH0PtpnrG\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"57px\\\"]},\\\"scibe0nm8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"57px\\\"]},\\\"mtimPaXrc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"57px\\\"]},\\\"FueEgygrx\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"57px\\\"]},\\\"SlAmXG8vf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"57px\\\"]},\\\"tNdpc7aOn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"57px\\\"]},\\\"zBv9Hd7Nj\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"57px\\\"]},\\\"Yw8AFzd21\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"57px\\\"]}}}\",\"framerIntrinsicHeight\":\"57\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"AuteqFZi8\\\":\\\"label1\\\",\\\"WuEWAhqT8\\\":\\\"label2\\\",\\\"mrsvahHX6\\\":\\\"label3\\\",\\\"VSMWnra3s\\\":\\\"label4\\\",\\\"RuKXuiKR0\\\":\\\"label5\\\",\\\"yF2PK3DXU\\\":\\\"gap\\\",\\\"IerL0xoGY\\\":\\\"title\\\",\\\"alVjkW82b\\\":\\\"showLabel\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OvPo0ax8A.map", "// Generated by Framer (c07a8c1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,PathVariablesContext,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useQueryData,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import Apps from\"https://framerusercontent.com/modules/0ctgosTjrkhlOcwdr7El/EOd58CkWEVgY0q3pTIem/PcMCBg1DT.js\";import Skills from\"https://framerusercontent.com/modules/6AXXnsXes0afPygw7BF7/OhZwXI1XD3UHDlZdqhAJ/YLX2jRxJL.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/qPFW2e6ZtkTKSMmmgmcT/R7BPCSO6oCv4ovKLcu8P/gfIx14XM_.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/snlDn5tf39rIEErOEcpn/fHRDw3AjLsCoNSOMeJfj/RvzSXBBSP.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/JfnBpkiVXJQPiyCkyEHZ/MB3Hid35kRIWe1IVPexb/t0D9K1H_0.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/0dD4bnVWzq2gOjBZIHdf/9stEkUvTlaJWGkbCA3WZ/y2BHY0eo2.js\";import AppTag from\"https://framerusercontent.com/modules/8kzGtXhBEBKq1cidYK39/wINSajahuNdfs1eju9iY/xpgoXI0GH.js\";const VideoFonts=getFonts(Video);const FeatherFonts=getFonts(Feather);const AppTagFonts=getFonts(AppTag);const cycleOrder=[\"ud1HFpmNZ\",\"jkNf5S5Qe\"];const serializationHash=\"framer-VbmmQ\";const variantClassNames={jkNf5S5Qe:\"framer-v-10j4tu4\",ud1HFpmNZ:\"framer-v-1sh5192\"};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 animation={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={bounce:0,delay:.05,duration:.4,type:\"spring\"};const textEffect={effect:animation,tokenization:\"word\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const query=(prequery,{kKdgyk_x8})=>prequery({from:{alias:\"yme_2PCKJ\",data:Skills,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},orderBy:[{arguments:[{type:\"LiteralValue\",value:kKdgyk_x8},{collection:\"yme_2PCKJ\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"yme_2PCKJ\",name:\"BiEQaYQtO\",type:\"Identifier\"},{collection:\"yme_2PCKJ\",name:\"k5aeFbrgb\",type:\"Identifier\"},{collection:\"yme_2PCKJ\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"yme_2PCKJ\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{type:\"LiteralValue\",value:kKdgyk_x8},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const query1=(prequery,{UCgBLdLga})=>prequery({from:{alias:\"c4o9EgZWg\",data:Apps,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},offset:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{type:\"LiteralValue\",value:UCgBLdLga},{collection:\"c4o9EgZWg\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"c4o9EgZWg\",name:\"sworHU7a4\",type:\"Identifier\"},{collection:\"c4o9EgZWg\",name:\"o9GCFaLm3\",type:\"Identifier\"},{collection:\"c4o9EgZWg\",name:\"b7KoZAUWa\",type:\"Identifier\"},{collection:\"c4o9EgZWg\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"c4o9EgZWg\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{type:\"LiteralValue\",value:UCgBLdLga},type:\"BinaryOperation\"}});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\":\"ud1HFpmNZ\",\"Variant 2\":\"jkNf5S5Qe\"};const getProps=({apps,height,id,name1,skills,width,...props})=>{return{...props,kKdgyk_x8:skills??props.kKdgyk_x8,pQmj_wnQb:name1??props.pQmj_wnQb??\"Travel\",UCgBLdLga:apps??props.UCgBLdLga,variant:humanReadableVariantMap[props.variant]??props.variant??\"ud1HFpmNZ\"};};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,pQmj_wnQb,kKdgyk_x8,UCgBLdLga,BiEQaYQtOyme_2PCKJ,k5aeFbrgbyme_2PCKJ,idyme_2PCKJ,sworHU7a4c4o9EgZWg,o9GCFaLm3c4o9EgZWg,b7KoZAUWac4o9EgZWg,idc4o9EgZWg,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ud1HFpmNZ\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onClickrqilj3=activeVariantCallback(async(...args)=>{setVariant(\"jkNf5S5Qe\");});const onClick16joc9=activeVariantCallback(async(...args)=>{setVariant(\"ud1HFpmNZ\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"jkNf5S5Qe\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1sh5192\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ud1HFpmNZ\",ref:refBinding,style:{backgroundColor:\"var(--token-d8c7d8d6-0c41-491f-8e74-abf48048dc29, rgb(242, 241, 240))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({jkNf5S5Qe:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s4b3ks\",layoutDependency:layoutDependency,layoutId:\"bfVFchBLz\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pgaoih-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"iePLqFs1S-container\",nodeId:\"iePLqFs1S\",rendersWithMotion:true,scopeId:\"Ud5ahi2ld\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"iePLqFs1S\",isMixedBorderRadius:false,layoutId:\"iePLqFs1S\",loop:true,muted:true,objectFit:\"contain\",playing:false,poster:\"https://framerusercontent.com/images/2C67oFb67IOEeKU2FTbCDtx8E.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/yRis9328RywsIYWHutoDX2xEU.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ppedh1\",layoutDependency:layoutDependency,layoutId:\"VgiWBFi_6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-hhkwu\",\"data-styles-preset\":\"RvzSXBBSP\",style:{\"--framer-text-alignment\":\"left\"},children:\"Travel\"})}),className:\"framer-13cr2bh\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rKMBytrkv\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:pQmj_wnQb,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mw4rqq\",\"data-styles-preset\":\"gfIx14XM_\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132)))\"},children:\"AI Worker\"})}),className:\"framer-a0tjq5\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XjiLYBziQ\",style:{\"--extracted-r6o4lv\":\"var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15kcu4d\",layoutDependency:layoutDependency,layoutId:\"sZKcB1CSX\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bf6d9s\",\"data-styles-preset\":\"y2BHY0eo2\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132)))\"},children:\"AI Skills\"})}),className:\"framer-12a8meo\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iGNHbumpQ\",style:{\"--extracted-r6o4lv\":\"var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{jkNf5S5Qe:{\"--extracted-r6o4lv\":\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jkNf5S5Qe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bf6d9s\",\"data-styles-preset\":\"y2BHY0eo2\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20)))\"},children:\"AI Skills\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-m5q04s-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"j5em3leAk-container\",nodeId:\"j5em3leAk\",rendersWithMotion:true,scopeId:\"Ud5ahi2ld\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"plus\",id:\"j5em3leAk\",layoutId:\"j5em3leAk\",mirrored:false,onClick:onClickrqilj3,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({jkNf5S5Qe:{color:\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\",iconSelection:\"x\",onClick:onClick16joc9}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-n6x52v\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"vXYNP9OsU\",style:{backgroundColor:\"var(--token-c8d3a8f6-938f-44f5-81c4-757532a93d1b, rgba(20, 20, 20, 0.04))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11dfdlr\",layoutDependency:layoutDependency,layoutId:\"Sm9cxxUMo\",style:{mask:\"linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%) add\",WebkitMask:\"linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%) add\"},variants:{jkNf5S5Qe:{mask:\"none\",WebkitMask:\"none\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-o52gt5\",layoutDependency:layoutDependency,layoutId:\"yme_2PCKJ\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"yme_2PCKJ\",data:Skills,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},orderBy:[{arguments:[{type:\"LiteralValue\",value:kKdgyk_x8},{collection:\"yme_2PCKJ\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"yme_2PCKJ\",name:\"BiEQaYQtO\",type:\"Identifier\"},{collection:\"yme_2PCKJ\",name:\"k5aeFbrgb\",type:\"Identifier\"},{collection:\"yme_2PCKJ\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"yme_2PCKJ\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{type:\"LiteralValue\",value:kKdgyk_x8},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({BiEQaYQtO:BiEQaYQtOyme_2PCKJ,id:idyme_2PCKJ,k5aeFbrgb:k5aeFbrgbyme_2PCKJ},index)=>{BiEQaYQtOyme_2PCKJ??=\"\";k5aeFbrgbyme_2PCKJ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`yme_2PCKJ-${idyme_2PCKJ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{k5aeFbrgb:k5aeFbrgbyme_2PCKJ},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i3uc7\",layoutDependency:layoutDependency,layoutId:\"TCFxX7bOf\",style:{backgroundColor:\"var(--token-c8d3a8f6-938f-44f5-81c4-757532a93d1b, rgba(20, 20, 20, 0.04))\",borderBottomLeftRadius:99,borderBottomRightRadius:99,borderTopLeftRadius:99,borderTopRightRadius:99},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15k99fv\",layoutDependency:layoutDependency,layoutId:\"O8IfLaLWK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ym8tz3\",\"data-styles-preset\":\"t0D9K1H_0\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66)))\"},children:\"Travel policy & FAQ\"})}),className:\"framer-1ddf87o\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fgqd3bzeo\",style:{\"--extracted-r6o4lv\":\"var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66))\"},text:BiEQaYQtOyme_2PCKJ,verticalAlignment:\"top\",withExternalLayout:true})})})})},idyme_2PCKJ);})})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19aaeu3\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"rBZWAWKXH\",style:{backgroundColor:\"var(--token-c8d3a8f6-938f-44f5-81c4-757532a93d1b, rgba(20, 20, 20, 0.04))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sq8pfj\",layoutDependency:layoutDependency,layoutId:\"jw9z09e9O\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bf6d9s\",\"data-styles-preset\":\"y2BHY0eo2\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132)))\"},children:\"Apps\"})}),className:\"framer-hhbgyf\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cDiOpoN70\",style:{\"--extracted-r6o4lv\":\"var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5ofupd\",layoutDependency:layoutDependency,layoutId:\"c4o9EgZWg\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"c4o9EgZWg\",data:Apps,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},offset:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{type:\"LiteralValue\",value:UCgBLdLga},{collection:\"c4o9EgZWg\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"c4o9EgZWg\",name:\"sworHU7a4\",type:\"Identifier\"},{collection:\"c4o9EgZWg\",name:\"o9GCFaLm3\",type:\"Identifier\"},{collection:\"c4o9EgZWg\",name:\"b7KoZAUWa\",type:\"Identifier\"},{collection:\"c4o9EgZWg\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"c4o9EgZWg\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{type:\"LiteralValue\",value:UCgBLdLga},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({b7KoZAUWa:b7KoZAUWac4o9EgZWg,id:idc4o9EgZWg,o9GCFaLm3:o9GCFaLm3c4o9EgZWg,sworHU7a4:sworHU7a4c4o9EgZWg},index1)=>{sworHU7a4c4o9EgZWg??=\"\";b7KoZAUWac4o9EgZWg??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`c4o9EgZWg-${idc4o9EgZWg}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{b7KoZAUWa:b7KoZAUWac4o9EgZWg},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rlp9a9\",layoutDependency:layoutDependency,layoutId:\"ByrX0BLol\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({jkNf5S5Qe:{y:(componentViewport?.y||0)+24+(0+(22+60+1+Math.max(0,((componentViewport?.height||517)-48-204)/1)*1+1)+60)+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-172aka1-container\",layoutDependency:layoutDependency,layoutId:\"V20jdN5ZJ-container\",nodeId:\"V20jdN5ZJ\",rendersWithMotion:true,scopeId:\"Ud5ahi2ld\",children:/*#__PURE__*/_jsx(AppTag,{bvCSsp8XM:true,CqEGEtfkI:{borderColor:\"var(--token-d35c4cf4-2229-41bc-9f56-c6095d0f8862, rgba(20, 20, 20, 0.04))\",borderStyle:\"solid\",borderWidth:1},height:\"100%\",id:\"V20jdN5ZJ\",layoutId:\"V20jdN5ZJ\",variant:\"fQQdJAPcK\",width:\"100%\",WxIQXgG7e:\"var(--token-a5f0ab1f-f99e-4f04-a055-d9301286fc4c, rgba(251, 250, 249, 0.08))\",XB9wMGU8G:sworHU7a4c4o9EgZWg,z3MMl79mX:toResponsiveImage(o9GCFaLm3c4o9EgZWg)})})})})})},idc4o9EgZWg);})})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VbmmQ.framer-1qa3ukq, .framer-VbmmQ .framer-1qa3ukq { display: block; }\",\".framer-VbmmQ.framer-1sh5192 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 517px; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 432px; will-change: var(--framer-will-change-override, transform); }\",\".framer-VbmmQ .framer-s4b3ks { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VbmmQ .framer-pgaoih-container { flex: none; height: 55px; mix-blend-mode: difference; position: relative; width: 55px; z-index: 1; }\",\".framer-VbmmQ .framer-ppedh1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-VbmmQ .framer-13cr2bh, .framer-VbmmQ .framer-a0tjq5 { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-VbmmQ .framer-15kcu4d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VbmmQ .framer-12a8meo, .framer-VbmmQ .framer-hhbgyf { --framer-text-wrap-override: balance; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-VbmmQ .framer-m5q04s-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-VbmmQ .framer-n6x52v, .framer-VbmmQ .framer-19aaeu3 { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-VbmmQ .framer-11dfdlr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; max-height: 140px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VbmmQ .framer-o52gt5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VbmmQ .framer-1i3uc7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; padding: 6px; position: relative; width: min-content; }\",\".framer-VbmmQ .framer-15k99fv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 8px 0px 8px; position: relative; width: min-content; }\",\".framer-VbmmQ .framer-1ddf87o { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-VbmmQ .framer-1sq8pfj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VbmmQ .framer-5ofupd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-VbmmQ .framer-1rlp9a9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-VbmmQ .framer-172aka1-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-VbmmQ.framer-v-10j4tu4 .framer-s4b3ks { flex: none; height: min-content; }\",\".framer-VbmmQ.framer-v-10j4tu4 .framer-11dfdlr { flex: 1 0 0px; height: 1px; max-height: unset; }\",\".framer-VbmmQ.framer-v-10j4tu4 .framer-o52gt5 { flex: 1 0 0px; height: 1px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 517\n * @framerIntrinsicWidth 432\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"jkNf5S5Qe\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"pQmj_wnQb\":\"name1\",\"kKdgyk_x8\":\"skills\",\"UCgBLdLga\":\"apps\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerUd5ahi2ld=withCSS(Component,css,\"framer-VbmmQ\");export default FramerUd5ahi2ld;FramerUd5ahi2ld.displayName=\"AI Worker\";FramerUd5ahi2ld.defaultProps={height:517,width:432};addPropertyControls(FramerUd5ahi2ld,{variant:{options:[\"ud1HFpmNZ\",\"jkNf5S5Qe\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},pQmj_wnQb:{defaultValue:\"Travel\",displayTextArea:false,title:\"Name\",type:ControlType.String},kKdgyk_x8:{dataIdentifier:\"local-module:collection/YLX2jRxJL:default\",title:\"Skills\",type:ControlType.MultiCollectionReference},UCgBLdLga:{dataIdentifier:\"local-module:collection/PcMCBg1DT:default\",title:\"Apps\",type:ControlType.MultiCollectionReference}});addFonts(FramerUd5ahi2ld,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...VideoFonts,...FeatherFonts,...AppTagFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUd5ahi2ld\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jkNf5S5Qe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"pQmj_wnQb\\\":\\\"name1\\\",\\\"kKdgyk_x8\\\":\\\"skills\\\",\\\"UCgBLdLga\\\":\\\"apps\\\"}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"517\",\"framerIntrinsicWidth\":\"432\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,PathVariablesContext,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useQueryData,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Apps from\"https://framerusercontent.com/modules/0ctgosTjrkhlOcwdr7El/EOd58CkWEVgY0q3pTIem/PcMCBg1DT.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/sw8pwDvt4qBCZXuIoPJf/fIGIDCy9vrMdaSkTVu6n/Dz7x53WKr.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/tEt8ZEaClhMTf7Ky0l8E/JKsSzZUr12gKgHvCLH9i/NUfdIbS4y.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/JfnBpkiVXJQPiyCkyEHZ/MB3Hid35kRIWe1IVPexb/t0D9K1H_0.js\";import AppTag from\"https://framerusercontent.com/modules/8kzGtXhBEBKq1cidYK39/wINSajahuNdfs1eju9iY/xpgoXI0GH.js\";import BeatingDot from\"https://framerusercontent.com/modules/NxGgvcsEYc7d2rdJLGzw/yJEhfbDX2EgV9vFvKczN/ZhSmnymDz.js\";const BeatingDotFonts=getFonts(BeatingDot);const AppTagFonts=getFonts(AppTag);const cycleOrder=[\"WkP_ivDib\",\"KN7Sx6VLB\"];const serializationHash=\"framer-tAm8y\";const variantClassNames={KN7Sx6VLB:\"framer-v-1aehgxz\",WkP_ivDib:\"framer-v-rrx2aa\"};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 animation={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={bounce:0,delay:.05,duration:.4,type:\"spring\"};const textEffect={effect:animation,startDelay:.1,tokenization:\"word\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const query=prequery=>prequery({from:{alias:\"FfXxc0oDV\",data:Apps,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"FfXxc0oDV\",name:\"o9GCFaLm3\",type:\"Identifier\"},{collection:\"FfXxc0oDV\",name:\"b7KoZAUWa\",type:\"Identifier\"},{collection:\"FfXxc0oDV\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"FfXxc0oDV\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"MQErqWkPx\"},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const query1=prequery=>prequery({from:{alias:\"WpC4zEuCm\",data:Apps,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"WpC4zEuCm\",name:\"b7KoZAUWa\",type:\"Identifier\"},{collection:\"WpC4zEuCm\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"WpC4zEuCm\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{type:\"LiteralValue\",value:[\"MQErqWkPx\"]},type:\"BinaryOperation\"}});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\":\"WkP_ivDib\",\"Variant 2\":\"KN7Sx6VLB\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WkP_ivDib\"};};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,o9GCFaLm3FfXxc0oDV,b7KoZAUWaFfXxc0oDV,idFfXxc0oDV,b7KoZAUWaWpC4zEuCm,idWpC4zEuCm,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WkP_ivDib\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-rrx2aa\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"WkP_ivDib\",ref:refBinding,style:{backgroundColor:\"var(--token-c8d3a8f6-938f-44f5-81c4-757532a93d1b, rgba(251, 250, 249, 0.09))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({KN7Sx6VLB:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14lhgz3\",layoutDependency:layoutDependency,layoutId:\"cMgAoZwuQ\",style:{backgroundColor:\"var(--token-04b8f2df-997b-40fd-9f2b-e856d02be653, rgb(20, 20, 20))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},variants:{KN7Sx6VLB:{borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lzqvwb\",layoutDependency:layoutDependency,layoutId:\"GCTl2idSO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-6kb5el\",\"data-styles-preset\":\"NUfdIbS4y\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20)))\"},children:\"New task resolved\"})}),className:\"framer-1o9fj8v\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Pe2MfN1bN\",style:{\"--extracted-r6o4lv\":\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({KN7Sx6VLB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.85)\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20)))\"},children:\"New task resolved\"})}),fonts:[\"Inter-Medium\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+24+(((componentViewport?.height||387)-48-354.2)/2+0+0)+24+0+56,...addPropertyOverrides({KN7Sx6VLB:{height:15,width:\"15px\",y:(componentViewport?.y||0)+24+(((componentViewport?.height||387)-48-254.3)/2+0+0)+9+0+43.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gz1ptz-container\",layoutDependency:layoutDependency,layoutId:\"k2kgFGKGR-container\",nodeId:\"k2kgFGKGR\",rendersWithMotion:true,scopeId:\"UeBBIsiGA\",children:/*#__PURE__*/_jsx(BeatingDot,{height:\"100%\",id:\"k2kgFGKGR\",layoutId:\"k2kgFGKGR\",QJSJdtOp0:\"rgb(130, 216, 149)\",style:{height:\"100%\",width:\"100%\"},variant:\"I1947:28084;1923:56829\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vbnnu1\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"WpC4zEuCm\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c8d3a8f6-938f-44f5-81c4-757532a93d1b, rgb(255, 255, 255))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-c8d3a8f6-938f-44f5-81c4-757532a93d1b, rgba(20, 20, 20, 0.04))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},variants:{KN7Sx6VLB:{\"--border-bottom-width\":\"0.75px\",\"--border-left-width\":\"0.75px\",\"--border-right-width\":\"0.75px\",\"--border-top-width\":\"0.75px\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"WpC4zEuCm\",data:Apps,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"WpC4zEuCm\",name:\"b7KoZAUWa\",type:\"Identifier\"},{collection:\"WpC4zEuCm\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"WpC4zEuCm\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{type:\"LiteralValue\",value:[\"MQErqWkPx\"]},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection1?.map(({b7KoZAUWa:b7KoZAUWaWpC4zEuCm,id:idWpC4zEuCm},index1)=>{b7KoZAUWaWpC4zEuCm??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`WpC4zEuCm-${idWpC4zEuCm}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{b7KoZAUWa:b7KoZAUWaWpC4zEuCm},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2i10tk\",layoutDependency:layoutDependency,layoutId:\"FfXxc0oDV\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"FfXxc0oDV\",data:Apps,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"FfXxc0oDV\",name:\"o9GCFaLm3\",type:\"Identifier\"},{collection:\"FfXxc0oDV\",name:\"b7KoZAUWa\",type:\"Identifier\"},{collection:\"FfXxc0oDV\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"FfXxc0oDV\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"MQErqWkPx\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({b7KoZAUWa:b7KoZAUWaFfXxc0oDV,id:idFfXxc0oDV,o9GCFaLm3:o9GCFaLm3FfXxc0oDV},index)=>{b7KoZAUWaFfXxc0oDV??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`FfXxc0oDV-${idFfXxc0oDV}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{b7KoZAUWa:b7KoZAUWaFfXxc0oDV},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19rj8im\",layoutDependency:layoutDependency,layoutId:\"aqE3Kt8bp\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+24+(((componentViewport?.height||387)-48-354.2)/2+0+0)+24+144+65.1+0+0+0,...addPropertyOverrides({KN7Sx6VLB:{width:\"32px\",y:(componentViewport?.y||0)+24+(((componentViewport?.height||387)-48-254.3)/2+0+0)+9+111+46.65+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sje6hv-container\",layoutDependency:layoutDependency,layoutId:\"yRQUZcfZF-container\",nodeId:\"yRQUZcfZF\",rendersWithMotion:true,scopeId:\"UeBBIsiGA\",children:/*#__PURE__*/_jsx(AppTag,{bvCSsp8XM:true,CqEGEtfkI:{borderColor:\"var(--token-d35c4cf4-2229-41bc-9f56-c6095d0f8862, rgba(20, 20, 20, 0.04))\",borderStyle:\"solid\",borderWidth:1},height:\"100%\",id:\"yRQUZcfZF\",layoutId:\"yRQUZcfZF\",variant:\"OR_y0BogZ\",width:\"100%\",wm2qlNiB8:\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\",WxIQXgG7e:\"var(--token-c8d3a8f6-938f-44f5-81c4-757532a93d1b, rgba(20, 20, 20, 0.04))\",XB9wMGU8G:\"Jira New Task Created\",z3MMl79mX:toResponsiveImage(o9GCFaLm3FfXxc0oDV),...addPropertyOverrides({KN7Sx6VLB:{CqEGEtfkI:{borderColor:\"var(--token-d35c4cf4-2229-41bc-9f56-c6095d0f8862, rgba(20, 20, 20, 0.04))\",borderStyle:\"solid\",borderWidth:.75},style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})})})})},idFfXxc0oDV);})})})})})})},idWpC4zEuCm);}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11sy37e\",layoutDependency:layoutDependency,layoutId:\"Qg2Xw1nnu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u3i2ny\",layoutDependency:layoutDependency,layoutId:\"APQfzHlQu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bvudkk\",\"data-styles-preset\":\"Dz7x53WKr\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132)))\"},children:\"Jira Service\"})}),className:\"framer-12bpxk9\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vmavHRgI3\",style:{\"--extracted-r6o4lv\":\"var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({KN7Sx6VLB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.66)\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132)))\"},children:\"Jira Service\"})}),fonts:[\"Inter-Medium\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ym8tz3\",\"data-styles-preset\":\"t0D9K1H_0\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132)))\"},children:\"RD-121\"})}),className:\"framer-1kfry4z\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VulINAY7h\",style:{\"--extracted-r6o4lv\":\"var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({KN7Sx6VLB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.66)\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132)))\"},children:\"RD-121\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-6kb5el\",\"data-styles-preset\":\"NUfdIbS4y\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20)))\"},children:\"Zoom access request\"})}),className:\"framer-gu3ysf\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"toJkBgk0e\",style:{\"--extracted-r6o4lv\":\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({KN7Sx6VLB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.85)\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20)))\"},children:\"Zoom access request\"})}),fonts:[\"Inter-Medium\"]}},baseVariant,gestureVariant)})]})]})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tAm8y.framer-um20hr, .framer-tAm8y .framer-um20hr { display: block; }\",\".framer-tAm8y.framer-rrx2aa { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 387px; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 647px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tAm8y .framer-14lhgz3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 520px; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-tAm8y .framer-lzqvwb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 0px 12px 0px; position: relative; width: 100%; }\",\".framer-tAm8y .framer-1o9fj8v { --framer-text-wrap-override: none; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-tAm8y .framer-gz1ptz-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-tAm8y .framer-vbnnu1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 16px; position: relative; width: 100%; }\",\".framer-tAm8y .framer-2i10tk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-tAm8y .framer-19rj8im { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-tAm8y .framer-sje6hv-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-tAm8y .framer-11sy37e { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-tAm8y .framer-1u3i2ny { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tAm8y .framer-12bpxk9, .framer-tAm8y .framer-1kfry4z { --framer-text-wrap-override: none; flex: none; height: auto; position: relative; width: auto; }\",\".framer-tAm8y .framer-gu3ysf { --framer-text-wrap-override: none; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-tAm8y.framer-v-1aehgxz .framer-14lhgz3 { gap: 9px; max-width: 390px; padding: 9px; }\",\".framer-tAm8y.framer-v-1aehgxz .framer-lzqvwb { gap: 7.5px; padding: 9px; }\",\".framer-tAm8y.framer-v-1aehgxz .framer-1o9fj8v, .framer-tAm8y.framer-v-1aehgxz .framer-gu3ysf { white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-tAm8y.framer-v-1aehgxz .framer-gz1ptz-container { height: 15px; width: 15px; }\",\".framer-tAm8y.framer-v-1aehgxz .framer-vbnnu1 { gap: 12px; padding: 12px; }\",\".framer-tAm8y.framer-v-1aehgxz .framer-2i10tk { gap: 15px; }\",\".framer-tAm8y.framer-v-1aehgxz .framer-19rj8im { gap: 7.5px; }\",\".framer-tAm8y.framer-v-1aehgxz .framer-sje6hv-container { height: 32px; width: 32px; }\",\".framer-tAm8y.framer-v-1aehgxz .framer-11sy37e { gap: 3px; }\",\".framer-tAm8y.framer-v-1aehgxz .framer-12bpxk9, .framer-tAm8y.framer-v-1aehgxz .framer-1kfry4z { white-space: pre; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-tAm8y[data-border=\"true\"]::after, .framer-tAm8y [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 387\n * @framerIntrinsicWidth 647\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"KN7Sx6VLB\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerUeBBIsiGA=withCSS(Component,css,\"framer-tAm8y\");export default FramerUeBBIsiGA;FramerUeBBIsiGA.displayName=\"Autonomy\";FramerUeBBIsiGA.defaultProps={height:387,width:647};addPropertyControls(FramerUeBBIsiGA,{variant:{options:[\"WkP_ivDib\",\"KN7Sx6VLB\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerUeBBIsiGA,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...BeatingDotFonts,...AppTagFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUeBBIsiGA\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"647\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"387\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KN7Sx6VLB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UeBBIsiGA.map", "var t,e=Object.create,r=Object.defineProperty,n=Object.getOwnPropertyDescriptor,i=Object.getOwnPropertyNames,s=Object.getPrototypeOf,a=Object.prototype.hasOwnProperty,o=(t,e)=>function(){return e||(0,t[i(t)[0]])((e={exports:{}}).exports,e),e.exports;},u=(t,e,s,o)=>{if(e&&\"object\"==typeof e||\"function\"==typeof e)for(let u of i(e))a.call(t,u)||u===s||r(t,u,{get:()=>e[u],enumerable:!(o=n(e,u))||o.enumerable});return t;},l=(t,n,i)=>(i=null!=t?e(s(t)):{},u(// If the importer is in node compatibility mode or this is not an ESM\n    // file that has been converted to a CommonJS file using a Babel-\n    // compatible transform (i.e. \"__esModule\" has not been set), then set\n    // \"default\" to the CommonJS \"module.exports\" for node compatibility.\n    !n&&t&&t.__esModule?i:r(i,\"default\",{value:t,enumerable:!0}),t)),h=o({\"../../../node_modules/dataloader/index.js\"(t,e){var r,n=/* @__PURE__ */function(){function t(t,e){if(\"function\"!=typeof t)throw TypeError(\"DataLoader must be constructed with a function which accepts Array<key> and returns Promise<Array<value>>, but got: \"+t+\".\");this._batchLoadFn=t,this._maxBatchSize=function(t){if(!(!t||!1!==t.batch))return 1;var e=t&&t.maxBatchSize;if(void 0===e)return 1/0;if(\"number\"!=typeof e||e<1)throw TypeError(\"maxBatchSize must be a positive number: \"+e);return e;}(e),this._batchScheduleFn=function(t){var e=t&&t.batchScheduleFn;if(void 0===e)return i;if(\"function\"!=typeof e)throw TypeError(\"batchScheduleFn must be a function: \"+e);return e;}(e),this._cacheKeyFn=function(t){var e=t&&t.cacheKeyFn;if(void 0===e)return function(t){return t;};if(\"function\"!=typeof e)throw TypeError(\"cacheKeyFn must be a function: \"+e);return e;}(e),this._cacheMap=function(t){if(!(!t||!1!==t.cache))return null;var e=t&&t.cacheMap;if(void 0===e)return /* @__PURE__ */new Map;if(null!==e){var r=[\"get\",\"set\",\"delete\",\"clear\"].filter(function(t){return e&&\"function\"!=typeof e[t];});if(0!==r.length)throw TypeError(\"Custom cacheMap missing methods: \"+r.join(\", \"));}return e;}(e),this._batch=null,this.name=e&&e.name?e.name:null;}var e=t.prototype;return e.load=function(t){if(null==t)throw TypeError(\"The loader.load() function must be called with a value, but got: \"+String(t)+\".\");var e=function(t){var e=t._batch;if(null!==e&&!e.hasDispatched&&e.keys.length<t._maxBatchSize)return e;var r={hasDispatched:!1,keys:[],callbacks:[]};return t._batch=r,t._batchScheduleFn(function(){(function(t,e){var r;if(e.hasDispatched=!0,0===e.keys.length){a(e);return;}try{r=t._batchLoadFn(e.keys);}catch(r){return s(t,e,TypeError(\"DataLoader must be constructed with a function which accepts Array<key> and returns Promise<Array<value>>, but the function errored synchronously: \"+String(r)+\".\"));}if(!r||\"function\"!=typeof r.then)return s(t,e,TypeError(\"DataLoader must be constructed with a function which accepts Array<key> and returns Promise<Array<value>>, but the function did not return a Promise: \"+String(r)+\".\"));r.then(function(t){if(!o(t))throw TypeError(\"DataLoader must be constructed with a function which accepts Array<key> and returns Promise<Array<value>>, but the function did not return a Promise of an Array: \"+String(t)+\".\");if(t.length!==e.keys.length)throw TypeError(\"DataLoader must be constructed with a function which accepts Array<key> and returns Promise<Array<value>>, but the function did not return a Promise of an Array of the same length as the Array of keys.\\n\\nKeys:\\n\"+String(e.keys)+\"\\n\\nValues:\\n\"+String(t));a(e);for(var r=0;r<e.callbacks.length;r++){var n=t[r];n instanceof Error?e.callbacks[r].reject(n):e.callbacks[r].resolve(n);}}).catch(function(r){s(t,e,r);});})(t,r);}),r;}(this),r=this._cacheMap,n=this._cacheKeyFn(t);if(r){var i=r.get(n);if(i){var u=e.cacheHits||(e.cacheHits=[]);return new Promise(function(t){u.push(function(){t(i);});});}}e.keys.push(t);var l=new Promise(function(t,r){e.callbacks.push({resolve:t,reject:r});});return r&&r.set(n,l),l;},e.loadMany=function(t){if(!o(t))throw TypeError(\"The loader.loadMany() function must be called with Array<key> but got: \"+t+\".\");for(var e=[],r=0;r<t.length;r++)e.push(this.load(t[r]).catch(function(t){return t;}));return Promise.all(e);},e.clear=function(t){var e=this._cacheMap;if(e){var r=this._cacheKeyFn(t);e.delete(r);}return this;},e.clearAll=function(){var t=this._cacheMap;return t&&t.clear(),this;},e.prime=function(t,e){var r=this._cacheMap;if(r){var n,i=this._cacheKeyFn(t);void 0===r.get(i)&&(e instanceof Error?(n=Promise.reject(e)).catch(function(){}):n=Promise.resolve(e),r.set(i,n));}return this;},t;}(),i=\"object\"==typeof process&&\"function\"==typeof process.nextTick?function(t){r||(r=Promise.resolve()),r.then(function(){process.nextTick(t);});}:\"function\"==typeof setImmediate?function(t){setImmediate(t);}:function(t){setTimeout(t);};function s(t,e,r){a(e);for(var n=0;n<e.keys.length;n++)t.clear(e.keys[n]),e.callbacks[n].reject(r);}function a(t){if(t.cacheHits)for(var e=0;e<t.cacheHits.length;e++)t.cacheHits[e]();}function o(t){return\"object\"==typeof t&&null!==t&&\"number\"==typeof t.length&&(0===t.length||t.length>0&&Object.prototype.hasOwnProperty.call(t,t.length-1));}e.exports=n;}}),c=l(h()),f={Uint8:1,Uint16:2,Uint32:4,BigUint64:8,Int8:1,Int16:2,Int32:4,BigInt64:8,Float32:4,Float64:8},g=class{getOffset(){return this.offset;}ensureLength(t){let e=this.bytes.length;if(!(this.offset+t<=e))throw Error(\"Reading out of bounds\");}readUint8(){let t=f.Uint8;this.ensureLength(t);let e=this.view.getUint8(this.offset);return this.offset+=t,e;}readUint16(){let t=f.Uint16;this.ensureLength(t);let e=this.view.getUint16(this.offset);return this.offset+=t,e;}readUint32(){let t=f.Uint32;this.ensureLength(t);let e=this.view.getUint32(this.offset);return this.offset+=t,e;}readUint64(){let t=this.readBigUint64();return Number(t);}readBigUint64(){let t=f.BigUint64;this.ensureLength(t);let e=this.view.getBigUint64(this.offset);return this.offset+=t,e;}readInt8(){let t=f.Int8;this.ensureLength(t);let e=this.view.getInt8(this.offset);return this.offset+=t,e;}readInt16(){let t=f.Int16;this.ensureLength(t);let e=this.view.getInt16(this.offset);return this.offset+=t,e;}readInt32(){let t=f.Int32;this.ensureLength(t);let e=this.view.getInt32(this.offset);return this.offset+=t,e;}readInt64(){let t=this.readBigInt64();return Number(t);}readBigInt64(){let t=f.BigInt64;this.ensureLength(t);let e=this.view.getBigInt64(this.offset);return this.offset+=t,e;}readFloat32(){let t=f.Float32;this.ensureLength(t);let e=this.view.getFloat32(this.offset);return this.offset+=t,e;}readFloat64(){let t=f.Float64;this.ensureLength(t);let e=this.view.getFloat64(this.offset);return this.offset+=t,e;}readBytes(t){let e=this.offset,r=e+t,n=this.bytes.subarray(e,r);return this.offset=r,n;}readString(){let t=this.readUint32(),e=this.readBytes(t);return this.decoder.decode(e);}readJson(){let t=this.readString();return JSON.parse(t);}constructor(t){this.bytes=t,this.offset=0,this.view=d(this.bytes),this.decoder=new TextDecoder;}};function d(t){return new DataView(t.buffer,t.byteOffset,t.byteLength);}// src/code-generation/components/cms/bundled/DatabaseDictionaryIndex.ts\nimport{ControlType as p}from\"framer\";// ../../library/src/utils/utils.ts\nvar y=\"undefined\"!=typeof window,v=y&&\"function\"==typeof window.requestIdleCallback;// src/code-generation/components/cms/bundled/assert.ts\nfunction w(t,...e){if(!t)throw Error(\"Assertion Error\"+(e.length>0?\": \"+e.join(\" \"):\"\"));}function m(t){throw Error(`Unexpected value: ${t}`);}// src/code-generation/components/cms/bundled/BufferWriter.ts\nvar I=1024,b=1.5,U=t=>2**t-1,S=t=>-(2**(t-1)),k=t=>2**(t-1)-1,L={Uint8:0,Uint16:0,Uint32:0,Uint64:0,BigUint64:0,Int8:S(8),Int16:S(16),Int32:S(32),Int64:Number.MIN_SAFE_INTEGER,BigInt64:-(BigInt(2)**BigInt(63))},B={Uint8:U(8),Uint16:U(16),Uint32:U(32),Uint64:Number.MAX_SAFE_INTEGER,BigUint64:BigInt(2)**BigInt(64)-BigInt(1),Int8:k(8),Int16:k(16),Int32:k(32),Int64:Number.MAX_SAFE_INTEGER,BigInt64:BigInt(2)**BigInt(63)-BigInt(1)};function E(t,e,r,n){w(t>=e,t,\"outside lower bound for\",n),w(t<=r,t,\"outside upper bound for\",n);}var M=class{getOffset(){return this.offset;}slice(t=0,e=this.offset){return this.bytes.slice(t,e);}subarray(t=0,e=this.offset){return this.bytes.subarray(t,e);}ensureLength(t){let e=this.bytes.length;if(this.offset+t<=e)return;let r=new Uint8Array(Math.ceil(e*b)+t);r.set(this.bytes),this.bytes=r,this.view=d(r);}writeUint8(t){E(t,L.Uint8,B.Uint8,\"Uint8\");let e=f.Uint8;this.ensureLength(e),this.view.setUint8(this.offset,t),this.offset+=e;}writeUint16(t){E(t,L.Uint16,B.Uint16,\"Uint16\");let e=f.Uint16;this.ensureLength(e),this.view.setUint16(this.offset,t),this.offset+=e;}writeUint32(t){E(t,L.Uint32,B.Uint32,\"Uint32\");let e=f.Uint32;this.ensureLength(e),this.view.setUint32(this.offset,t),this.offset+=e;}writeUint64(t){E(t,L.Uint64,B.Uint64,\"Uint64\");let e=BigInt(t);this.writeBigUint64(e);}writeBigUint64(t){E(t,L.BigUint64,B.BigUint64,\"BigUint64\");let e=f.BigUint64;this.ensureLength(e),this.view.setBigUint64(this.offset,t),this.offset+=e;}writeInt8(t){E(t,L.Int8,B.Int8,\"Int8\");let e=f.Int8;this.ensureLength(e),this.view.setInt8(this.offset,t),this.offset+=e;}writeInt16(t){E(t,L.Int16,B.Int16,\"Int16\");let e=f.Int16;this.ensureLength(e),this.view.setInt16(this.offset,t),this.offset+=e;}writeInt32(t){E(t,L.Int32,B.Int32,\"Int32\");let e=f.Int32;this.ensureLength(e),this.view.setInt32(this.offset,t),this.offset+=e;}writeInt64(t){E(t,L.Int64,B.Int64,\"Int64\");let e=BigInt(t);this.writeBigInt64(e);}writeBigInt64(t){E(t,L.BigInt64,B.BigInt64,\"BigInt64\");let e=f.BigInt64;this.ensureLength(e),this.view.setBigInt64(this.offset,t),this.offset+=e;}writeFloat32(t){let e=f.Float32;this.ensureLength(e),this.view.setFloat32(this.offset,t),this.offset+=e;}writeFloat64(t){let e=f.Float64;this.ensureLength(e),this.view.setFloat64(this.offset,t),this.offset+=e;}writeBytes(t){let e=t.length;this.ensureLength(e),this.bytes.set(t,this.offset),this.offset+=e;}encodeString(t){let e=this.encodedStrings.get(t);if(e)return e;let r=this.encoder.encode(t);return this.encodedStrings.set(t,r),r;}writeString(t){let e=this.encodeString(t),r=e.length;this.writeUint32(r),this.writeBytes(e);}writeJson(t){let e=JSON.stringify(t);this.writeString(e);}constructor(){this.offset=0,this.bytes=new Uint8Array(I),this.view=d(this.bytes),this.encoder=new TextEncoder,this.encodedStrings=/* @__PURE__ */new Map;}};// src/utils/typeChecks.ts\nfunction F(t){return Number.isFinite(t);}function T(t){return null===t;}// src/code-generation/components/cms/bundled/models/DatabaseItemPointerModel.ts\nvar N=class t{static fromString(e){let[r,n,i]=e.split(\"/\").map(Number);return w(F(r),\"Invalid chunkId\"),w(F(n),\"Invalid offset\"),w(F(i),\"Invalid length\"),new t(r,n,i);}toString(){return`${this.chunkId}/${this.offset}/${this.length}`;}static read(e){let r=e.readUint16(),n=e.readUint32(),i=e.readUint32();return new t(r,n,i);}write(t){t.writeUint16(this.chunkId),t.writeUint32(this.offset),t.writeUint32(this.length);}compare(t){return this.chunkId<t.chunkId?-1:this.chunkId>t.chunkId?1:this.offset<t.offset?-1:this.offset>t.offset?1:(w(this.length===t.length),0);}constructor(t,e,r){this.chunkId=t,this.offset=e,this.length=r;}};// src/code-generation/components/cms/bundled/models/DatabaseValueModel.ts\nimport{ControlType as A}from\"framer\";function O(t){if(T(t))return 0/* Null */;switch(t.type){case A.Array:return 1/* Array */;case A.Boolean:return 2/* Boolean */;case A.Color:return 3/* Color */;case A.Date:return 4/* Date */;case A.Enum:return 5/* Enum */;case A.File:return 6/* File */;case A.ResponsiveImage:return 10/* ResponsiveImage */;case A.Link:return 7/* Link */;case A.Number:return 8/* Number */;case A.Object:return 9/* Object */;case A.RichText:return 11/* RichText */;case A.String:return 12/* String */;default:m(t);}}function x(e){let r=e.readUint16(),n=[];for(let i=0;i<r;i++){let r=t.read(e);n.push(r);}return{type:A.Array,value:n};}function P(e,r){for(let n of(e.writeUint16(r.value.length),r.value))t.write(e,n);}function q(e,r,n){let i=e.value.length,s=r.value.length;if(i<s)return -1;if(i>s)return 1;for(let s=0;s<i;s++){let i=e.value[s],a=r.value[s],o=t.compare(i,a,n);if(0!==o)return o;}return 0;}function R(t){return{type:A.Boolean,value:0!==t.readUint8()};}function _(t,e){t.writeUint8(e.value?1:0);}function D(t,e){return t.value<e.value?-1:t.value>e.value?1:0;}function j(t){return{type:A.Color,value:t.readString()};}function C(t,e){t.writeString(e.value);}function J(t,e){return t.value<e.value?-1:t.value>e.value?1:0;}function W(t){let e=t.readInt64(),r=new Date(e);return{type:A.Date,value:r.toISOString()};}function $(t,e){let r=new Date(e.value),n=r.getTime();t.writeInt64(n);}function z(t,e){let r=new Date(t.value),n=new Date(e.value);return r<n?-1:r>n?1:0;}function G(t){return{type:A.Enum,value:t.readString()};}function K(t,e){t.writeString(e.value);}function H(t,e){return t.value<e.value?-1:t.value>e.value?1:0;}function V(t){return{type:A.File,value:t.readString()};}function X(t,e){t.writeString(e.value);}function Q(t,e){return t.value<e.value?-1:t.value>e.value?1:0;}function Y(t){return{type:A.Link,value:t.readJson()};}function Z(t,e){t.writeJson(e.value);}function tt(t,e){let r=JSON.stringify(t.value),n=JSON.stringify(e.value);return r<n?-1:r>n?1:0;}function te(t){return{type:A.Number,value:t.readFloat64()};}function tr(t,e){t.writeFloat64(e.value);}function tn(t,e){return t.value<e.value?-1:t.value>e.value?1:0;}function ti(e){let r=e.readUint16(),n={};for(let i=0;i<r;i++){let r=e.readString();n[r]=t.read(e);}return{type:A.Object,value:n};}function ts(e,r){let n=Object.entries(r.value);for(let[r,i]of(e.writeUint16(n.length),n))e.writeString(r),t.write(e,i);}function ta(e,r,n){let i=Object.keys(e.value).sort(),s=Object.keys(r.value).sort();if(i.length<s.length)return -1;if(i.length>s.length)return 1;for(let a=0;a<i.length;a++){let o=i[a],u=s[a];if(o<u)return -1;if(o>u)return 1;let l=e.value[o]??null,h=r.value[u]??null,c=t.compare(l,h,n);if(0!==c)return c;}return 0;}function to(t){return{type:A.ResponsiveImage,value:t.readJson()};}function tu(t,e){t.writeJson(e.value);}function tl(t,e){let r=JSON.stringify(t.value),n=JSON.stringify(e.value);return r<n?-1:r>n?1:0;}function th(t){return{type:A.RichText,value:t.readUint32()};}function tc(t,e){t.writeUint32(e.value);}function tf(t,e){let r=t.value,n=e.value;return r<n?-1:r>n?1:0;}function tg(t){return{type:A.String,value:t.readString()};}function td(t,e){t.writeString(e.value);}function tp(t,e,r){let n=t.value,i=e.value;return(0/* CaseInsensitive */===r.type&&(n=t.value.toLowerCase(),i=e.value.toLowerCase()),n<i)?-1:n>i?1:0;}(t=>{t.read=function(t){let e=t.readUint8();switch(e){case 0/* Null */:return null;case 1/* Array */:return x(t);case 2/* Boolean */:return R(t);case 3/* Color */:return j(t);case 4/* Date */:return W(t);case 5/* Enum */:return G(t);case 6/* File */:return V(t);case 7/* Link */:return Y(t);case 8/* Number */:return te(t);case 9/* Object */:return ti(t);case 10/* ResponsiveImage */:return to(t);case 11/* RichText */:return th(t);case 12/* String */:return tg(t);default:m(e);}},t.write=function(t,e){let r=O(e);if(t.writeUint8(r),!T(e))switch(e.type){case A.Array:return P(t,e);case A.Boolean:return _(t,e);case A.Color:return C(t,e);case A.Date:return $(t,e);case A.Enum:return K(t,e);case A.File:return X(t,e);case A.Link:return Z(t,e);case A.Number:return tr(t,e);case A.Object:return ts(t,e);case A.ResponsiveImage:return tu(t,e);case A.RichText:return tc(t,e);case A.String:return td(t,e);default:m(e);}},t.compare=function(t,e,r){let n=O(t),i=O(e);if(n<i)return -1;if(n>i)return 1;if(T(t)||T(e))return 0;switch(t.type){case A.Array:return w(e.type===A.Array),q(t,e,r);case A.Boolean:return w(e.type===A.Boolean),D(t,e);case A.Color:return w(e.type===A.Color),J(t,e);case A.Date:return w(e.type===A.Date),z(t,e);case A.Enum:return w(e.type===A.Enum),H(t,e);case A.File:return w(e.type===A.File),Q(t,e);case A.Link:return w(e.type===A.Link),tt(t,e);case A.Number:return w(e.type===A.Number),tn(t,e);case A.Object:return w(e.type===A.Object),ta(t,e,r);case A.ResponsiveImage:return w(e.type===A.ResponsiveImage),tl(t,e);case A.RichText:return w(e.type===A.RichText),tf(t,e);case A.String:return w(e.type===A.String),tp(t,e,r);default:m(t);}};})(t||(t={}));// src/code-generation/components/cms/bundled/models/DatabaseDictionaryIndexModel.ts\nvar ty=class e{sortEntries(){this.entries.sort((e,r)=>{for(let n=0;n<this.fieldNames.length;n++){let i=e.values[n],s=r.values[n],a=t.compare(i,s,this.options.collation);if(0!==a)return a;}return e.pointer.compare(r.pointer);});}static deserialize(r){let n=new g(r),i=n.readJson(),s=n.readUint8(),a=[];for(let t=0;t<s;t++){let t=n.readString();a.push(t);}let o=new e(a,{collation:i}),u=n.readUint32();for(let e=0;e<u;e++){let e=[];for(let r=0;r<s;r++){let r=t.read(n);e.push(r);}let r=N.read(n);o.entries.push({values:e,pointer:r});}return o;}serialize(){let e=new M;for(let t of(e.writeJson(this.options.collation),e.writeUint8(this.fieldNames.length),this.fieldNames))e.writeString(t);for(let r of(this.sortEntries(),e.writeUint32(this.entries.length),this.entries)){let{values:n,pointer:i}=r;for(let r of n)t.write(e,r);i.write(e);}return e.subarray();}addItem(t,e){let r=this.fieldNames.map(e=>t.getField(e)??null);this.entries.push({values:r,pointer:e});}constructor(t,e){this.fieldNames=t,this.options=e,this.entries=[];}},tv=3,tw=250,tm=[408,// Request Timeout\n429,// Too Many Requests\n500,// Internal Server Error\n502,// Bad Gateway\n503,// Service Unavailable\n504],tI=async(t,e)=>{let r=0;for(;;){try{let n=await fetch(t,e);if(!tm.includes(n.status)||++r>tv)return n;}catch(t){if(e?.signal?.aborted||++r>tv)throw t;}await tb(r);}};async function tb(t){let e=Math.floor(tw*(Math.random()+1)*2**(t-1));await new Promise(t=>{setTimeout(t,e);});}// src/code-generation/components/cms/bundled/rangeRequest.ts\nasync function tU(t,e){let r=tL(e),n=[],i=0;for(let t of r)n.push(`${t.from}-${t.to-1}`),i+=t.to-t.from;let s=new URL(t),a=n.join(\",\");s.searchParams.set(\"range\",a);let o=await tI(s);if(200!==o.status)throw Error(`Request failed: ${o.status} ${o.statusText}`);let u=await o.arrayBuffer(),l=new Uint8Array(u);if(l.length!==i)throw Error(\"Request failed: Unexpected response length\");let h=new tS,c=0;for(let t of r){let e=t.to-t.from,r=c+e,n=l.subarray(c,r);h.write(t.from,n),c=r;}return e.map(t=>h.read(t.from,t.to-t.from));}var tS=class{read(t,e){for(let r of this.chunks){if(t<r.start)break;if(t>r.end)continue;if(t+e>r.end)break;let n=t-r.start,i=n+e;return r.data.slice(n,i);}throw Error(\"Missing data\");}write(t,e){let r=t,n=r+e.length,i=0,s=this.chunks.length;for(;i<s;i++){let t=this.chunks[i];if(w(t,\"Missing chunk\"),!(r>t.end)){if(r>t.start){let n=r-t.start,i=t.data.subarray(0,n);e=tk(i,e),r=t.start;}break;}}for(;s>i;s--){let t=this.chunks[s-1];if(w(t,\"Missing chunk\"),!(n<t.start)){if(n<t.end){let r=n-t.start,i=t.data.subarray(r);e=tk(e,i),n=t.end;}break;}}let a={start:r,end:n,data:e},o=s-i;this.chunks.splice(i,o,a);}constructor(){this.chunks=[];}};function tk(t,e){let r=t.length+e.length,n=new Uint8Array(r);return n.set(t,0),n.set(e,t.length),n;}function tL(t){w(t.length>0,\"Must have at least one range\");let e=[...t].sort((t,e)=>t.from-e.from),r=[];for(let t of e){let e=r.length-1,n=r[e];n&&t.from<=n.to?r[e]={from:n.from,to:Math.max(n.to,t.to)}:r.push(t);}return r;}// src/code-generation/components/cms/bundled/DatabaseDictionaryIndex.ts\nvar tB=class{async loadModel(){let[t]=await tU(this.options.url,[this.options.range]);return w(t,\"Failed to load model\"),ty.deserialize(t);}async getModel(){return this.modelPromise??=this.loadModel(),this.model??=await this.modelPromise,this.model;}async lookupItems(t){w(t.length===this.fields.length,\"Invalid query length\");let e=await this.getModel(),r=t.reduce((t,e,r)=>t.flatMap(t=>{switch(e.type){case\"All\"/* All */:return[t];case\"Equals\"/* Equals */:return this.queryEquals(t,e,r);case\"NotEquals\"/* NotEquals */:return this.queryNotEquals(t,e,r);case\"LessThan\"/* LessThan */:return this.queryLessThan(t,e,r);case\"GreaterThan\"/* GreaterThan */:return this.queryGreaterThan(t,e,r);case\"Contains\"/* Contains */:return this.queryContains(t,e,r);case\"StartsWith\"/* StartsWith */:return this.queryStartsWith(t,e,r);case\"EndsWith\"/* EndsWith */:return this.queryEndsWith(t,e,r);default:m(e);}}),[e.entries]),n=[];for(let t of r)for(let e of t){let t={};for(let r=0;r<this.options.fieldNames.length;r++){let n=this.options.fieldNames[r],i=e.values[r];t[n]=i;}n.push({pointer:e.pointer.toString(),data:t});}return n;}queryEquals(t,e,r){let n=this.getLeftMost(t,r,e.value),i=this.getRightMost(t,r,e.value),s=t.slice(n,i+1);return s.length>0?[s]:[];}queryNotEquals(t,e,r){let n=this.getLeftMost(t,r,e.value),i=this.getRightMost(t,r,e.value),s=[],a=t.slice(0,n);a.length>0&&s.push(a);let o=t.slice(i+1);return o.length>0&&s.push(o),s;}queryLessThan(t,e,r){let n=this.getRightMost(t,r,null);if(t=t.slice(n+1),e.inclusive){let n=this.getRightMost(t,r,e.value),i=t.slice(0,n+1);return i.length>0?[i]:[];}let i=this.getLeftMost(t,r,e.value),s=t.slice(0,i);return s.length>0?[s]:[];}queryGreaterThan(t,e,r){let n=this.getRightMost(t,r,null);if(t=t.slice(n+1),e.inclusive){let n=this.getLeftMost(t,r,e.value),i=t.slice(n);return i.length>0?[i]:[];}let i=this.getRightMost(t,r,e.value),s=t.slice(i+1);return s.length>0?[s]:[];}queryContains(t,e,r){return this.findItems(t,r,t=>{if(t?.type!==p.String||e.value?.type!==p.String)return!1;let r=t.value,n=e.value.value;return 0/* CaseInsensitive */===this.collation.type&&(r=r.toLowerCase(),n=n.toLowerCase()),r.includes(n);});}queryStartsWith(t,e,r){return this.findItems(t,r,t=>{if(t?.type!==p.String||e.value?.type!==p.String)return!1;let r=t.value,n=e.value.value;return 0/* CaseInsensitive */===this.collation.type&&(r=r.toLowerCase(),n=n.toLowerCase()),r.startsWith(n);});}queryEndsWith(t,e,r){return this.findItems(t,r,t=>{if(t?.type!==p.String||e.value?.type!==p.String)return!1;let r=t.value,n=e.value.value;return 0/* CaseInsensitive */===this.collation.type&&(r=r.toLowerCase(),n=n.toLowerCase()),r.endsWith(n);});}/**\n   * Returns the index of the left most entry that is equal to the target.\n   *\n   * ```text\n   *   Left most\n   *       \u2193\n   * \u250C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u2510\n   * \u2502 1 \u2502 2 \u2502 2 \u2502 2 \u2502 2 \u2502 3 \u2502\n   * \u2514\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2518\n   * ```\n   *\n   * @param entries The entries array to search in.\n   * @param position The position of the value in the entry.\n   * @param target The target value to search for.\n   * @returns The index of the left most entry that is equal to the target.\n   */getLeftMost(e,r,n){let i=0,s=e.length;for(;i<s;){let a=i+s>>1,o=e[a],u=o.values[r];0>t.compare(u,n,this.collation)?i=a+1:s=a;}return i;}/**\n   * Returns the index of the right most entry that is equal to the target.\n   *\n   * ```text\n   *              Right most\n   *                   \u2193\n   * \u250C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u2510\n   * \u2502 1 \u2502 2 \u2502 2 \u2502 2 \u2502 2 \u2502 3 \u2502\n   * \u2514\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2518\n   * ```\n   *\n   * @param entries The entries array to search in.\n   * @param position The position of the value in the entry.\n   * @param target The target value to search for.\n   * @returns The index of the right most entry that is equal to the target.\n   */getRightMost(e,r,n){let i=0,s=e.length;for(;i<s;){let a=i+s>>1,o=e[a],u=o.values[r];t.compare(u,n,this.collation)>0?s=a:i=a+1;}return s-1;}/**\n   * Finds all items that are matching the predicate and groups adjacent items together.\n   *\n   * @param entries The entries array to search in.\n   * @param position The position of the value in the entry.\n   * @param predicate The predicate to match the values against.\n   * @returns An array of chunks that match the predicate.\n   */findItems(t,e,r){let n=[],i=0;for(let s=0;s<t.length;s++){let a=t[s],o=a.values[e],u=r(o);if(!u){if(i<s){let e=t.slice(i,s);n.push(e);}i=s+1;}}if(i<t.length){let e=t.slice(i);n.push(e);}return n;}constructor(t){this.options=t,this.supportedLookupTypes=[\"All\"/* All */,\"Equals\"/* Equals */,\"NotEquals\"/* NotEquals */,\"LessThan\"/* LessThan */,\"GreaterThan\"/* GreaterThan */,\"Contains\"/* Contains */,\"StartsWith\"/* StartsWith */,\"EndsWith\"/* EndsWith */],this.collation=this.options.collation;let e={},r=[];for(let t of this.options.fieldNames){let n=this.options.collectionSchema[t];w(n,\"Missing definition for field\",t),e[t]=n,r.push({type:\"Identifier\",name:t});}this.schema=e,this.fields=r;}},tE=class e{static read(r){let n=new e,i=r.readUint16();for(let e=0;e<i;e++){let e=r.readString(),i=t.read(r);n.setField(e,i);}return n;}write(e){for(let[r,n]of(e.writeUint16(this.fields.size),this.fields))e.writeString(r),t.write(e,n);}getData(){let t={};for(let[e,r]of this.fields)t[e]=r;return t;}setField(t,e){this.fields.set(t,e);}getField(t){return this.fields.get(t);}constructor(){this.fields=/* @__PURE__ */new Map;}},tM=class{scanItems(){return this.itemsPromise??=tI(this.url).then(async t=>{if(!t.ok)throw Error(`Request failed: ${t.status} ${t.statusText}`);let e=await t.arrayBuffer(),r=new Uint8Array(e),n=new g(r),i=[],s=n.readUint32();for(let t=0;t<s;t++){let t=n.getOffset(),e=tE.read(n),r=n.getOffset()-t,s=new N(this.id,t,r),a=s.toString(),o={pointer:a,data:e.getData()};this.itemLoader.prime(a,o),i.push(o);}return i;}),this.itemsPromise;}resolveItem(t){return this.itemLoader.load(t);}constructor(t,e){this.id=t,this.url=e,this.itemLoader=new c.default(async t=>{let e=t.map(t=>{let e=N.fromString(t);return{from:e.offset,to:e.offset+e.length};}),r=await tU(this.url,e);return r.map((e,r)=>{let n=new g(e),i=tE.read(n),s=t[r];return w(s,\"Missing pointer\"),{pointer:s,data:i.getData()};});});}},tF=class{async scanItems(){let t=await Promise.all(this.chunks.map(async t=>t.scanItems()));return t.flat();}async resolveItems(t){return Promise.all(t.map(t=>{let e=N.fromString(t),r=this.chunks[e.chunkId];return w(r,\"Missing chunk\"),r.resolveItem(t);}));}compareItems(t,e){let r=N.fromString(t.pointer),n=N.fromString(e.pointer);return r.compare(n);}compareValues(e,r,n){return t.compare(e,r,n);}constructor(t){this.options=t,this.schema=this.options.schema,this.indexes=this.options.indexes,this.resolveRichText=this.options.resolveRichText,this.chunks=this.options.chunks.map((t,e)=>new tM(e,t));}};export{tF as DatabaseCollection,tB as DatabaseDictionaryIndex};\nexport const __FramerMetadata__ = {\"exports\":{\"DatabaseCollection\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"DatabaseDictionaryIndex\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "let e=[];export async function resolveRichText(t){let i=e[t];if(i)return await i();}\nexport const __FramerMetadata__ = {\"exports\":{\"resolveRichText\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c07a8c1)\nimport{addPropertyControls as e,ControlType as t,QueryCache as l,QueryEngine as i}from\"framer\";import{DatabaseCollection as o}from\"./UCojIlrtA-0.js\";import{resolveRichText as r}from\"./UCojIlrtA-1.js\";let a={I8Kc4JKjQ:{isNullable:!0,type:t.Color},id:{isNullable:!1,type:t.String},jBm2hAEPx:{isNullable:!0,type:t.Color},nextItemId:{isNullable:!0,type:t.String},o9dy_A3po:{definition:{isNullable:!0,type:t.String},isNullable:!0,type:t.Array},PjxihNyC9:{isNullable:!0,type:t.File},previousItemId:{isNullable:!0,type:t.String},Y5roUiS6S:{isNullable:!0,type:t.String},ytc4MoNXe:{isNullable:!0,type:t.String},ZPje5k6Wb:{definition:{isNullable:!0,type:t.String},isNullable:!0,type:t.Array}},n=new i,u=new l(n),d={collectionByLocaleId:{default:new o({chunks:[new URL(\"./UCojIlrtA-chunk-default-0.framercms\",\"https://framerusercontent.com/modules/07vTlWbLlZumksRNFWZ2/flOO87zMRsUmMRb41Zzk/UCojIlrtA.js\").href.replace(\"/modules/\",\"/cms/\")],indexes:[],resolveRichText:r,schema:a})},displayName:\"AI Workers\"};export default d;e(d,{ytc4MoNXe:{defaultValue:\"\",title:\"Title\",type:t.String},Y5roUiS6S:{title:\"Slug\",type:t.String},ZPje5k6Wb:{dataIdentifier:\"local-module:collection/YLX2jRxJL:default\",defaultValue:[\"eujnb43pK\",\"SZeJYt2Wn\",\"l_Pd1Juu8\",\"yx3Uc0a9F\",\"iiSc3ce1f\",\"muhaWcyGO\",\"UrnevZmYu\"],title:\"Skills\",type:t.MultiCollectionReference},o9dy_A3po:{dataIdentifier:\"local-module:collection/PcMCBg1DT:default\",defaultValue:[\"LosCwZ5N5\"],title:\"Apps\",type:t.MultiCollectionReference},I8Kc4JKjQ:{defaultValue:'var(--token-07b039e7-c5e3-42d0-bec6-c5648f398996, rgb(166, 236, 96)) /* {\"name\":\"Lime Icon\"} */',title:\"Icon Color\",type:t.Color},jBm2hAEPx:{defaultValue:'var(--token-04f595dd-d33d-4b78-bf04-77a866c8fb5a, rgb(234, 251, 217)) /* {\"name\":\"Lime Background\"} */',title:\"BG Color\",type:t.Color},PjxihNyC9:{allowedFileTypes:[],title:\"File\",type:t.File},previousItemId:{dataIdentifier:\"local-module:collection/UCojIlrtA:default\",title:\"Previous\",type:t.CollectionReference},nextItemId:{dataIdentifier:\"local-module:collection/UCojIlrtA:default\",title:\"Next\",type:t.CollectionReference}});export const enumToDisplayNameFunctions={};export const utils={async getSlugByRecordId(e,t){let[l]=await u.get({from:{data:d,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{name:\"Y5roUiS6S\",type:\"Identifier\"}],where:{left:{name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:e},type:\"BinaryOperation\"}},t).readAsync();return l?.Y5roUiS6S;},async getRecordIdBySlug(e,t){let[l]=await u.get({from:{data:d,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{name:\"id\",type:\"Identifier\"}],where:{left:{name:\"Y5roUiS6S\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:e},type:\"BinaryOperation\"}},t).readAsync();return l?.id;}};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"data\",\"name\":\"data\",\"annotations\":{\"framerSlug\":\"Y5roUiS6S\",\"framerEnumToDisplayNameUtils\":\"2\",\"framerCollectionId\":\"UCojIlrtA\",\"framerColorSyntax\":\"false\",\"framerRecordIdKey\":\"id\",\"framerCollectionUtils\":\"1\",\"framerData\":\"\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\"}},\"enumToDisplayNameFunctions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"utils\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (662ecd5)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useQueryData,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Icon from\"https://framerusercontent.com/modules/86c1VzBGx8xFz0SZT1Dq/aNEmteMOcGjQ8zAVeoLH/q9bIvdKfq.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/Carousel.js\";import ShimmerGrid from\"https://framerusercontent.com/modules/Z7W0nR93oDA0ww3oOjR8/Ek6hdyC7N0hvEfTgS47e/ShimmerGrid_Prod.js\";import SectionKicker from\"#framer/local/canvasComponent/An2frIzSz/An2frIzSz.js\";import Escalation from\"#framer/local/canvasComponent/B39aTA4Go/B39aTA4Go.js\";import AnimatedDemoB2 from\"#framer/local/canvasComponent/DS9r1GSGd/DS9r1GSGd.js\";import OrchestrationVisual from\"#framer/local/canvasComponent/fCatKhdS7/fCatKhdS7.js\";import NavLink from\"#framer/local/canvasComponent/lwFoI_BBF/lwFoI_BBF.js\";import TextCycle2 from\"#framer/local/canvasComponent/OvPo0ax8A/OvPo0ax8A.js\";import BookDemoCTA from\"#framer/local/canvasComponent/TNqupsoRm/TNqupsoRm.js\";import AIWorker from\"#framer/local/canvasComponent/Ud5ahi2ld/Ud5ahi2ld.js\";import Autonomy from\"#framer/local/canvasComponent/UeBBIsiGA/UeBBIsiGA.js\";import Button from\"#framer/local/canvasComponent/wkSwvofZe/wkSwvofZe.js\";import{dynamicViewportHeight}from\"#framer/local/codeFile/GepTv6l/Viewport_Height.js\";import Apps from\"#framer/local/collection/PcMCBg1DT/PcMCBg1DT.js\";import AIWorkers from\"#framer/local/collection/UCojIlrtA/UCojIlrtA.js\";import Skills from\"#framer/local/collection/YLX2jRxJL/YLX2jRxJL.js\";import*as sharedStyle8 from\"#framer/local/css/Dz7x53WKr/Dz7x53WKr.js\";import*as sharedStyle6 from\"#framer/local/css/fxbM8Cpk6/fxbM8Cpk6.js\";import*as sharedStyle7 from\"#framer/local/css/gfIx14XM_/gfIx14XM_.js\";import*as sharedStyle3 from\"#framer/local/css/Lf7phWmWX/Lf7phWmWX.js\";import*as sharedStyle1 from\"#framer/local/css/mGa672K5X/mGa672K5X.js\";import*as sharedStyle from\"#framer/local/css/mtj0bS80h/mtj0bS80h.js\";import*as sharedStyle4 from\"#framer/local/css/NUfdIbS4y/NUfdIbS4y.js\";import*as sharedStyle5 from\"#framer/local/css/SRckh1huN/SRckh1huN.js\";import*as sharedStyle9 from\"#framer/local/css/t0D9K1H_0/t0D9K1H_0.js\";import*as sharedStyle2 from\"#framer/local/css/TvjFdl8M_/TvjFdl8M_.js\";import metadataProvider from\"#framer/local/webPageMetadata/HKZVj5oAY/HKZVj5oAY.js\";const NavLinkFonts=getFonts(NavLink);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const VideoFonts=getFonts(Video);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivDynamicViewportHeightb4t58h=withCodeBoundaryForOverrides(motion.div,{nodeId:\"a16K1krd1\",override:dynamicViewportHeight,scopeId:\"HKZVj5oAY\"});const TextCycle2Fonts=getFonts(TextCycle2);const AnimatedDemoB2Fonts=getFonts(AnimatedDemoB2);const SectionKickerFonts=getFonts(SectionKicker);const AIWorkerFonts=getFonts(AIWorker);const CarouselFonts=getFonts(Carousel);const OrchestrationVisualFonts=getFonts(OrchestrationVisual);const AutonomyFonts=getFonts(Autonomy);const EscalationFonts=getFonts(Escalation);const BookDemoCTAFonts=getFonts(BookDemoCTA);const ButtonFonts=getFonts(Button);const ShimmerGridFonts=getFonts(ShimmerGrid);const IconFonts=getFonts(Icon);const MotionDivWithFX=withFX(motion.div);const breakpoints={ITQnyx1dL:\"(min-width: 810px) and (max-width: 1199px)\",p38ErNrYe:\"(min-width: 1610px)\",rl0ty3qm9:\"(min-width: 1200px) and (max-width: 1609px)\",Xzj0LLAzU:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-4FoqQ\";const variantClassNames={ITQnyx1dL:\"framer-v-d3pkcl\",p38ErNrYe:\"framer-v-1bb3z2t\",rl0ty3qm9:\"framer-v-9vdhs3\",Xzj0LLAzU:\"framer-v-17xwe3j\"};const animation={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition1={bounce:0,delay:.05,duration:.4,type:\"spring\"};const textEffect={effect:animation,startDelay:.1,tokenization:\"word\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const textEffect1={effect:animation,repeat:false,startDelay:.5,tokenization:\"word\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const transition2={delay:1,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transition3={delay:.5,duration:2,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:.2,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition4={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition5={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"rl0ty3qm9\",Desktop:\"p38ErNrYe\",Phone:\"Xzj0LLAzU\",Tablet:\"ITQnyx1dL\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"p38ErNrYe\"};};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,ytc4MoNXeGhkyzJbvF,ZPje5k6WbGhkyzJbvF,o9dy_A3poGhkyzJbvF,Y5roUiS6SGhkyzJbvF,idGhkyzJbvF,ytc4MoNXeHTUgGBKUK,ZPje5k6WbHTUgGBKUK,o9dy_A3poHTUgGBKUK,Y5roUiS6SHTUgGBKUK,idHTUgGBKUK,ytc4MoNXeEgW1qmlBr,ZPje5k6WbEgW1qmlBr,o9dy_A3poEgW1qmlBr,Y5roUiS6SEgW1qmlBr,idEgW1qmlBr,ytc4MoNXeRcR2B5el8,ZPje5k6WbRcR2B5el8,o9dy_A3poRcR2B5el8,Y5roUiS6SRcR2B5el8,idRcR2B5el8,ytc4MoNXeDhc6_aMRH,ZPje5k6WbDhc6_aMRH,o9dy_A3poDhc6_aMRH,Y5roUiS6SDhc6_aMRH,idDhc6_aMRH,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Xzj0LLAzU\")return false;return true;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if([\"ITQnyx1dL\",\"Xzj0LLAzU\",\"rl0ty3qm9\"].includes(baseVariant))return false;return true;};const elementId=useRouteElementId(\"lqnx7rHdt\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"FnjI__Hdg\");const ref2=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if([\"Xzj0LLAzU\",\"rl0ty3qm9\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"Xzj0LLAzU\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"p38ErNrYe\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-84e33989-9346-4639-8f69-214a89dba1a4, rgb(251, 250, 249)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1bb3z2t\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(MotionDivDynamicViewportHeightb4t58h,{className:\"framer-b4t58h\",\"data-framer-name\":\"\u2B06\uFE0F Hero Section\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dd3um5\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8sf8d9\",\"data-framer-name\":\"Title & Subtitle\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y7rsdp\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-rvvfh2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQnyx1dL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-ue9g0d\",\"data-styles-preset\":\"mGa672K5X\",children:[\"The Next Gen\",/*#__PURE__*/_jsx(\"br\",{}),\"AI Workforce\"]})})},rl0ty3qm9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-ue9g0d\",\"data-styles-preset\":\"mGa672K5X\",children:[\"The Next Gen\",/*#__PURE__*/_jsx(\"br\",{}),\"AI Workforce\"]})})},Xzj0LLAzU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-kr3vy5\",\"data-styles-preset\":\"TvjFdl8M_\",children:[\"The Next Gen\",/*#__PURE__*/_jsx(\"br\",{}),\"AI Workforce\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-6cj8iq\",\"data-styles-preset\":\"mtj0bS80h\",children:[\"The Next Gen\",/*#__PURE__*/_jsx(\"br\",{}),\"AI Workforce\"]})}),className:\"framer-192grjb\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05CIEludGVybmF0aW9uYWwgUHJvIENHIFJlZ3VsYXI=\",\"--framer-font-family\":'\"NB International Pro CG Regular\", \"NB International Pro CG Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.25)\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66))\"},children:\"Autonomous AI Workers designed for internal operations teams - IT, HR, Procurement, Legal and beyond. \"})}),className:\"framer-1kp5d0y\",effect:textEffect1,fonts:[\"CUSTOM;NB International Pro CG Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-z7t08h\",\"data-framer-appear-id\":\"z7t08h\",\"data-framer-name\":\"Buttons\",initial:animation2,optimized:true,children:[isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"L6xC4m8Lq\"},motionChild:true,nodeId:\"BCzhgrT50\",scopeId:\"HKZVj5oAY\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-5qmp2t hidden-17xwe3j framer-1tgwrc1\",\"data-framer-name\":\"Call to action\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQnyx1dL:{y:(componentViewport?.y||0)+0+0+32+0+666.8+0+221.2+0+8},rl0ty3qm9:{y:(componentViewport?.y||0)+0+0+32+0+666.8+0+221.2+0+8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+0+32+0+658+0+230+0+8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yusxbm-container\",nodeId:\"jz3aHADOM\",rendersWithMotion:true,scopeId:\"HKZVj5oAY\",children:/*#__PURE__*/_jsx(NavLink,{GoV19yfrT:\"Book a demo\",height:\"100%\",id:\"jz3aHADOM\",layoutId:\"jz3aHADOM\",NYSydsDWx:\"https://meetings-eu1.hubspot.com/maor-ezer/schedule-an-onboarding-session\",variant:\"T4UztSZWU\",width:\"100%\"})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wuwfvu hidden-17xwe3j\",\"data-framer-name\":\"Call to action\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"jZUpRR5m_\"},implicitPathVariables:undefined},{href:{webPageId:\"jZUpRR5m_\"},implicitPathVariables:undefined},{href:{webPageId:\"jZUpRR5m_\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQnyx1dL:{y:(componentViewport?.y||0)+0+0+32+0+666.8+0+221.2+0+8},rl0ty3qm9:{y:(componentViewport?.y||0)+0+0+32+0+666.8+0+221.2+0+8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+0+32+0+658+0+230+0+8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5koofs-container\",nodeId:\"RSgZFFb9K\",rendersWithMotion:true,scopeId:\"HKZVj5oAY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQnyx1dL:{NYSydsDWx:resolvedLinks[1]},rl0ty3qm9:{NYSydsDWx:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(NavLink,{GoV19yfrT:\"Request Access\",height:\"100%\",id:\"RSgZFFb9K\",layoutId:\"RSgZFFb9K\",NYSydsDWx:resolvedLinks[0],variant:\"P3qyeQndW\",width:\"100%\"})})})})})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQnyx1dL:{transformTemplate:undefined},Xzj0LLAzU:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1lcx4d9-container\",\"data-framer-appear-id\":\"1lcx4d9\",initial:animation2,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"c31SvLy6k\",optimized:true,rendersWithMotion:true,scopeId:\"HKZVj5oAY\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQnyx1dL:{style:{height:\"100%\",width:\"100%\"}},Xzj0LLAzU:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"c31SvLy6k\",isMixedBorderRadius:false,layoutId:\"c31SvLy6k\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/yRis9328RywsIYWHutoDX2xEU.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m7xjex\",\"data-framer-name\":\"\u2795 Grid Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1971gs9\",\"data-framer-name\":\"\u2795 Grid Section\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,y:(componentViewport?.y||0)+0+1e3+120+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11n32zy-container hidden-d3pkcl hidden-17xwe3j hidden-9vdhs3\",\"data-framer-name\":\"ai.cycle\",name:\"ai.cycle\",nodeId:\"UlWTqxIjC\",scopeId:\"HKZVj5oAY\",children:/*#__PURE__*/_jsx(TextCycle2,{alVjkW82b:true,AuteqFZi8:\"travel\",height:\"100%\",id:\"UlWTqxIjC\",IerL0xoGY:\"ai.\",layoutId:\"UlWTqxIjC\",mrsvahHX6:\"it\",name:\"ai.cycle\",RuKXuiKR0:\"legal\",variant:\"JleRixuqZ\",VSMWnra3s:\"hr\",width:\"100%\",WuEWAhqT8:\"procurement\",yF2PK3DXU:16})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fn9cx7\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xzj0LLAzU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-qv6eee\",\"data-styles-preset\":\"Lf7phWmWX\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132))\"},children:\"AI Workers are true digital teammates - orchestrating multi-agent workflows, integrating across your enterprise, enforcing policies, and collaborating with humans on critical decisions.\\xa0\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kr3vy5\",\"data-styles-preset\":\"TvjFdl8M_\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132))\"},children:\"AI Workers are true digital teammates - orchestrating multi-agent workflows, integrating across your enterprise, enforcing policies, and collaborating with humans on critical decisions.\\xa0\"})}),className:\"framer-1w3gzu8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x7l2n7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQnyx1dL:{height:500,width:\"720px\",y:(componentViewport?.y||0)+0+1e3+80+0+0+0+0+87.6+24},rl0ty3qm9:{height:582,width:`min(max(max(${componentViewport?.width||\"100vw\"} - 64px, 50px) - 48px, 1px), 1000px)`},Xzj0LLAzU:{height:500,width:\"720px\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:549,width:`min(max(max((${componentViewport?.width||\"100vw\"} - 304px) / 6, 50px) * 4 + 96px, 1px), 1000px)`,y:(componentViewport?.y||0)+0+1e3+120+0+0+0+0+87.6+24,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQnyx1dL:{style:{scale:.8}},rl0ty3qm9:{style:{scale:.9}},Xzj0LLAzU:{style:{scale:.4}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e7lul3-container\",nodeId:\"akAkkNkEc\",rendersWithMotion:true,scopeId:\"HKZVj5oAY\",children:/*#__PURE__*/_jsx(AnimatedDemoB2,{height:\"100%\",id:\"akAkkNkEc\",layoutId:\"akAkkNkEc\",LNjGQwer0:\"Qn2xJEEvX\",nDLIhc6_d:true,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"t5fgE85kp\",width:\"100%\"})})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-15v2dry hidden-d3pkcl hidden-17xwe3j hidden-9vdhs3\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3gg86e\",\"data-framer-name\":\"\u2795 Grid Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jhaik\",\"data-framer-name\":\"\u2795 Grid Section\",\"data-hide-scrollbars\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2oxs7x\",children:isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,width:\"213.5px\",y:(componentViewport?.y||0)+0+1924.6+120+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u2g19f-container hidden-d3pkcl hidden-17xwe3j hidden-9vdhs3\",nodeId:\"qLibroI5s\",scopeId:\"HKZVj5oAY\",children:/*#__PURE__*/_jsx(SectionKicker,{height:\"100%\",id:\"qLibroI5s\",layoutId:\"qLibroI5s\",Skhe5ZIGa:\"AI WORKERS\",style:{width:\"100%\"},variant:\"P1weuDtxt\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h92o1c\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iolhn2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xzj0LLAzU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kr3vy5\",\"data-styles-preset\":\"TvjFdl8M_\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\"},children:\"Department-level super-agents, ready for work.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kr3vy5\",\"data-styles-preset\":\"TvjFdl8M_\",style:{\"--framer-text-alignment\":\"left\"},children:\"Department-level super-agents, ready for work.\"})}),className:\"framer-y47315\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6kb5el\",\"data-styles-preset\":\"NUfdIbS4y\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132))\"},children:\"Ready to work with pre-trained enterprise skills, AI Workers are platform agnostic and customizable to your specific processes, policies, and tools without complex configuration.\"})}),className:\"framer-x0c2sf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1msb2o5 hidden-d3pkcl hidden-17xwe3j hidden-9vdhs3\"}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-l9zzd9 hidden-d3pkcl hidden-17xwe3j hidden-9vdhs3\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1st1dc-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GcwZ8sr0R\",scopeId:\"HKZVj5oAY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xzj0LLAzU:{fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},paddingLeft:24,paddingPerSide:true,snapObject:{fluid:false,snap:true,snapEdge:\"start\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-d8c7d8d6-0c41-491f-8e74-abf48048dc29, rgb(242, 241, 240))\",arrowPadding:0,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:12,height:\"100%\",id:\"GcwZ8sr0R\",layoutId:\"GcwZ8sr0R\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:true},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ckrjvw\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"GhkyzJbvF\",data:AIWorkers,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"GhkyzJbvF\",name:\"ytc4MoNXe\",type:\"Identifier\"},{alias:\"ZPje5k6Wb\",arguments:[{from:{alias:\"ZPje5k6Wb\",data:Skills,type:\"Collection\"},orderBy:[{arguments:[{collection:\"GhkyzJbvF\",name:\"ZPje5k6Wb\",type:\"Identifier\"},{collection:\"ZPje5k6Wb\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"ZPje5k6Wb\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"ZPje5k6Wb\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"GhkyzJbvF\",name:\"ZPje5k6Wb\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{alias:\"o9dy_A3po\",arguments:[{from:{alias:\"o9dy_A3po\",data:Apps,type:\"Collection\"},orderBy:[{arguments:[{collection:\"GhkyzJbvF\",name:\"o9dy_A3po\",type:\"Identifier\"},{collection:\"o9dy_A3po\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"o9dy_A3po\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"o9dy_A3po\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"GhkyzJbvF\",name:\"o9dy_A3po\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"GhkyzJbvF\",name:\"Y5roUiS6S\",type:\"Identifier\"},{collection:\"GhkyzJbvF\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idGhkyzJbvF,o9dy_A3po:o9dy_A3poGhkyzJbvF,Y5roUiS6S:Y5roUiS6SGhkyzJbvF,ytc4MoNXe:ytc4MoNXeGhkyzJbvF,ZPje5k6Wb:ZPje5k6WbGhkyzJbvF},index)=>{ytc4MoNXeGhkyzJbvF??=\"\";Y5roUiS6SGhkyzJbvF??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`GhkyzJbvF-${idGhkyzJbvF}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Y5roUiS6S:Y5roUiS6SGhkyzJbvF},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-189p5be\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:494,width:\"315px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-f3b9zf-container\",inComponentSlot:true,nodeId:\"IQiGGLbsd\",rendersWithMotion:true,scopeId:\"HKZVj5oAY\",children:/*#__PURE__*/_jsx(AIWorker,{height:\"100%\",id:\"IQiGGLbsd\",kKdgyk_x8:ZPje5k6WbGhkyzJbvF,layoutId:\"IQiGGLbsd\",pQmj_wnQb:ytc4MoNXeGhkyzJbvF,style:{height:\"100%\",width:\"100%\"},UCgBLdLga:o9dy_A3poGhkyzJbvF,variant:\"ud1HFpmNZ\",width:\"100%\"})})})})})},idGhkyzJbvF);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l4c06h\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"HTUgGBKUK\",data:AIWorkers,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"HTUgGBKUK\",name:\"ytc4MoNXe\",type:\"Identifier\"},{alias:\"ZPje5k6Wb\",arguments:[{from:{alias:\"ZPje5k6Wb\",data:Skills,type:\"Collection\"},orderBy:[{arguments:[{collection:\"HTUgGBKUK\",name:\"ZPje5k6Wb\",type:\"Identifier\"},{collection:\"ZPje5k6Wb\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"ZPje5k6Wb\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"ZPje5k6Wb\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"HTUgGBKUK\",name:\"ZPje5k6Wb\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{alias:\"o9dy_A3po\",arguments:[{from:{alias:\"o9dy_A3po\",data:Apps,type:\"Collection\"},orderBy:[{arguments:[{collection:\"HTUgGBKUK\",name:\"o9dy_A3po\",type:\"Identifier\"},{collection:\"o9dy_A3po\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"o9dy_A3po\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"o9dy_A3po\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"HTUgGBKUK\",name:\"o9dy_A3po\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"HTUgGBKUK\",name:\"Y5roUiS6S\",type:\"Identifier\"},{collection:\"HTUgGBKUK\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idHTUgGBKUK,o9dy_A3po:o9dy_A3poHTUgGBKUK,Y5roUiS6S:Y5roUiS6SHTUgGBKUK,ytc4MoNXe:ytc4MoNXeHTUgGBKUK,ZPje5k6Wb:ZPje5k6WbHTUgGBKUK},index1)=>{ytc4MoNXeHTUgGBKUK??=\"\";Y5roUiS6SHTUgGBKUK??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`HTUgGBKUK-${idHTUgGBKUK}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Y5roUiS6S:Y5roUiS6SHTUgGBKUK},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ju1pm9\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:494,width:\"315px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-em2wnn-container\",inComponentSlot:true,nodeId:\"H7ae2SC8P\",rendersWithMotion:true,scopeId:\"HKZVj5oAY\",children:/*#__PURE__*/_jsx(AIWorker,{height:\"100%\",id:\"H7ae2SC8P\",kKdgyk_x8:ZPje5k6WbHTUgGBKUK,layoutId:\"H7ae2SC8P\",pQmj_wnQb:ytc4MoNXeHTUgGBKUK,style:{height:\"100%\",width:\"100%\"},UCgBLdLga:o9dy_A3poHTUgGBKUK,variant:\"ud1HFpmNZ\",width:\"100%\"})})})})})},idHTUgGBKUK);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-93h8n\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"EgW1qmlBr\",data:AIWorkers,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"EgW1qmlBr\",name:\"ytc4MoNXe\",type:\"Identifier\"},{alias:\"ZPje5k6Wb\",arguments:[{from:{alias:\"ZPje5k6Wb\",data:Skills,type:\"Collection\"},orderBy:[{arguments:[{collection:\"EgW1qmlBr\",name:\"ZPje5k6Wb\",type:\"Identifier\"},{collection:\"ZPje5k6Wb\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"ZPje5k6Wb\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"ZPje5k6Wb\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"EgW1qmlBr\",name:\"ZPje5k6Wb\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{alias:\"o9dy_A3po\",arguments:[{from:{alias:\"o9dy_A3po\",data:Apps,type:\"Collection\"},orderBy:[{arguments:[{collection:\"EgW1qmlBr\",name:\"o9dy_A3po\",type:\"Identifier\"},{collection:\"o9dy_A3po\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"o9dy_A3po\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"o9dy_A3po\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"EgW1qmlBr\",name:\"o9dy_A3po\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"EgW1qmlBr\",name:\"Y5roUiS6S\",type:\"Identifier\"},{collection:\"EgW1qmlBr\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({id:idEgW1qmlBr,o9dy_A3po:o9dy_A3poEgW1qmlBr,Y5roUiS6S:Y5roUiS6SEgW1qmlBr,ytc4MoNXe:ytc4MoNXeEgW1qmlBr,ZPje5k6Wb:ZPje5k6WbEgW1qmlBr},index2)=>{ytc4MoNXeEgW1qmlBr??=\"\";Y5roUiS6SEgW1qmlBr??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`EgW1qmlBr-${idEgW1qmlBr}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Y5roUiS6S:Y5roUiS6SEgW1qmlBr},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8d4hrb\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:494,width:\"315px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ni40m1-container\",inComponentSlot:true,nodeId:\"AHo5eNBg0\",rendersWithMotion:true,scopeId:\"HKZVj5oAY\",children:/*#__PURE__*/_jsx(AIWorker,{height:\"100%\",id:\"AHo5eNBg0\",kKdgyk_x8:ZPje5k6WbEgW1qmlBr,layoutId:\"AHo5eNBg0\",pQmj_wnQb:ytc4MoNXeEgW1qmlBr,style:{height:\"100%\",width:\"100%\"},UCgBLdLga:o9dy_A3poEgW1qmlBr,variant:\"ud1HFpmNZ\",width:\"100%\"})})})})})},idEgW1qmlBr);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kyx0k5\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"RcR2B5el8\",data:AIWorkers,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"RcR2B5el8\",name:\"ytc4MoNXe\",type:\"Identifier\"},{alias:\"ZPje5k6Wb\",arguments:[{from:{alias:\"ZPje5k6Wb\",data:Skills,type:\"Collection\"},orderBy:[{arguments:[{collection:\"RcR2B5el8\",name:\"ZPje5k6Wb\",type:\"Identifier\"},{collection:\"ZPje5k6Wb\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"ZPje5k6Wb\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"ZPje5k6Wb\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"RcR2B5el8\",name:\"ZPje5k6Wb\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{alias:\"o9dy_A3po\",arguments:[{from:{alias:\"o9dy_A3po\",data:Apps,type:\"Collection\"},orderBy:[{arguments:[{collection:\"RcR2B5el8\",name:\"o9dy_A3po\",type:\"Identifier\"},{collection:\"o9dy_A3po\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"o9dy_A3po\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"o9dy_A3po\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"RcR2B5el8\",name:\"o9dy_A3po\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"RcR2B5el8\",name:\"Y5roUiS6S\",type:\"Identifier\"},{collection:\"RcR2B5el8\",name:\"id\",type:\"Identifier\"}]},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({id:idRcR2B5el8,o9dy_A3po:o9dy_A3poRcR2B5el8,Y5roUiS6S:Y5roUiS6SRcR2B5el8,ytc4MoNXe:ytc4MoNXeRcR2B5el8,ZPje5k6Wb:ZPje5k6WbRcR2B5el8},index3)=>{ytc4MoNXeRcR2B5el8??=\"\";Y5roUiS6SRcR2B5el8??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`RcR2B5el8-${idRcR2B5el8}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Y5roUiS6S:Y5roUiS6SRcR2B5el8},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cp00os\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:494,width:\"315px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4ni26o-container\",inComponentSlot:true,nodeId:\"D3ndJAtMM\",rendersWithMotion:true,scopeId:\"HKZVj5oAY\",children:/*#__PURE__*/_jsx(AIWorker,{height:\"100%\",id:\"D3ndJAtMM\",kKdgyk_x8:ZPje5k6WbRcR2B5el8,layoutId:\"D3ndJAtMM\",pQmj_wnQb:ytc4MoNXeRcR2B5el8,style:{height:\"100%\",width:\"100%\"},UCgBLdLga:o9dy_A3poRcR2B5el8,variant:\"ud1HFpmNZ\",width:\"100%\"})})})})})},idRcR2B5el8);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-86ko8r\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Dhc6_aMRH\",data:AIWorkers,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:5},select:[{collection:\"Dhc6_aMRH\",name:\"ytc4MoNXe\",type:\"Identifier\"},{alias:\"ZPje5k6Wb\",arguments:[{from:{alias:\"ZPje5k6Wb\",data:Skills,type:\"Collection\"},orderBy:[{arguments:[{collection:\"Dhc6_aMRH\",name:\"ZPje5k6Wb\",type:\"Identifier\"},{collection:\"ZPje5k6Wb\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"ZPje5k6Wb\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"ZPje5k6Wb\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"Dhc6_aMRH\",name:\"ZPje5k6Wb\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{alias:\"o9dy_A3po\",arguments:[{from:{alias:\"o9dy_A3po\",data:Apps,type:\"Collection\"},orderBy:[{arguments:[{collection:\"Dhc6_aMRH\",name:\"o9dy_A3po\",type:\"Identifier\"},{collection:\"o9dy_A3po\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"o9dy_A3po\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"o9dy_A3po\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"Dhc6_aMRH\",name:\"o9dy_A3po\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"Dhc6_aMRH\",name:\"Y5roUiS6S\",type:\"Identifier\"},{collection:\"Dhc6_aMRH\",name:\"id\",type:\"Identifier\"}]},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({id:idDhc6_aMRH,o9dy_A3po:o9dy_A3poDhc6_aMRH,Y5roUiS6S:Y5roUiS6SDhc6_aMRH,ytc4MoNXe:ytc4MoNXeDhc6_aMRH,ZPje5k6Wb:ZPje5k6WbDhc6_aMRH},index4)=>{ytc4MoNXeDhc6_aMRH??=\"\";Y5roUiS6SDhc6_aMRH??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Dhc6_aMRH-${idDhc6_aMRH}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Y5roUiS6S:Y5roUiS6SDhc6_aMRH},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xpz6qg\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:494,width:\"315px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cw5f4m-container\",inComponentSlot:true,nodeId:\"aWPArBqZB\",rendersWithMotion:true,scopeId:\"HKZVj5oAY\",children:/*#__PURE__*/_jsx(AIWorker,{height:\"100%\",id:\"aWPArBqZB\",kKdgyk_x8:ZPje5k6WbDhc6_aMRH,layoutId:\"aWPArBqZB\",pQmj_wnQb:ytc4MoNXeDhc6_aMRH,style:{height:\"100%\",width:\"100%\"},UCgBLdLga:o9dy_A3poDhc6_aMRH,variant:\"ud1HFpmNZ\",width:\"100%\"})})})})})},idDhc6_aMRH);})})})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qj4dx8\",\"data-framer-name\":\"\u2795 Grid Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gxmohn\",\"data-framer-name\":\"\u2795 Grid Section\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-o365cj hidden-d3pkcl hidden-17xwe3j hidden-9vdhs3\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16gfnti\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gyghqf\",\"data-border\":true,\"data-framer-name\":\"Statistics Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xzj0LLAzU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rqbvtv\",\"data-styles-preset\":\"fxbM8Cpk6\",style:{\"--framer-text-color\":\"var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66))\"},children:\"Automate service resolutions bY\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-173iguj\",\"data-styles-preset\":\"SRckh1huN\",style:{\"--framer-text-color\":\"var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66))\"},children:\"Automate service resolutions bY\"})}),className:\"framer-daudhs\",\"data-framer-name\":\"Section Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQnyx1dL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO05CIEludGVybmF0aW9uYWwgUHJvIENHIFJlZ3VsYXI=\",\"--framer-font-family\":'\"NB International Pro CG Regular\", \"NB International Pro CG Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 4)\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"0.75em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\"},children:\"65%\"})})},Xzj0LLAzU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO05CIEludGVybmF0aW9uYWwgUHJvIENHIFJlZ3VsYXI=\",\"--framer-font-family\":'\"NB International Pro CG Regular\", \"NB International Pro CG Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 2.25)\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"0.75em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\"},children:\"65%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO05CIEludGVybmF0aW9uYWwgUHJvIENHIFJlZ3VsYXI=\",\"--framer-font-family\":'\"NB International Pro CG Regular\", \"NB International Pro CG Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 4)\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"0.75em\",\"--framer-text-color\":\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\"},children:\"65%\"})}),className:\"framer-rtfmd0\",\"data-framer-name\":\"Stat Value\",fonts:[\"CUSTOM;NB International Pro CG Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rtc3oo\",\"data-border\":true,\"data-framer-name\":\"Statistics Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xzj0LLAzU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rqbvtv\",\"data-styles-preset\":\"fxbM8Cpk6\",style:{\"--framer-text-color\":\"var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66))\"},children:\"Scale operational efficiency bY\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-173iguj\",\"data-styles-preset\":\"SRckh1huN\",style:{\"--framer-text-color\":\"var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66))\"},children:\"Scale operational efficiency bY\"})}),className:\"framer-7b1fxg\",\"data-framer-name\":\"Section Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQnyx1dL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO05CIEludGVybmF0aW9uYWwgUHJvIENHIFJlZ3VsYXI=\",\"--framer-font-family\":'\"NB International Pro CG Regular\", \"NB International Pro CG Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 4)\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"0.75em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\"},children:\"10x\"})})},Xzj0LLAzU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO05CIEludGVybmF0aW9uYWwgUHJvIENHIFJlZ3VsYXI=\",\"--framer-font-family\":'\"NB International Pro CG Regular\", \"NB International Pro CG Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 2.25)\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"0.75em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\"},children:\"10x\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO05CIEludGVybmF0aW9uYWwgUHJvIENHIFJlZ3VsYXI=\",\"--framer-font-family\":'\"NB International Pro CG Regular\", \"NB International Pro CG Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 4)\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"0.75em\",\"--framer-text-color\":\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\"},children:\"10x\"})}),className:\"framer-oxuqrv\",\"data-framer-name\":\"Stat Value\",fonts:[\"CUSTOM;NB International Pro CG Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vrxj92\",\"data-border\":true,\"data-framer-name\":\"Statistics Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xzj0LLAzU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rqbvtv\",\"data-styles-preset\":\"fxbM8Cpk6\",style:{\"--framer-text-color\":\"var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66))\"},children:\"Reduce operationAL cost by\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-173iguj\",\"data-styles-preset\":\"SRckh1huN\",style:{\"--framer-text-color\":\"var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66))\"},children:\"Reduce operationAL cost by\"})}),className:\"framer-1yvnzmx\",\"data-framer-name\":\"Section Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQnyx1dL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO05CIEludGVybmF0aW9uYWwgUHJvIENHIFJlZ3VsYXI=\",\"--framer-font-family\":'\"NB International Pro CG Regular\", \"NB International Pro CG Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 4)\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"0.75em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\"},children:\"50%\"})})},Xzj0LLAzU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO05CIEludGVybmF0aW9uYWwgUHJvIENHIFJlZ3VsYXI=\",\"--framer-font-family\":'\"NB International Pro CG Regular\", \"NB International Pro CG Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 2.25)\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"0.75em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\"},children:\"50%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO05CIEludGVybmF0aW9uYWwgUHJvIENHIFJlZ3VsYXI=\",\"--framer-font-family\":'\"NB International Pro CG Regular\", \"NB International Pro CG Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 4)\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"0.75em\",\"--framer-text-color\":\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\"},children:\"50%\"})}),className:\"framer-u6fppl\",\"data-framer-name\":\"Stat Value\",fonts:[\"CUSTOM;NB International Pro CG Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uao9kv\",\"data-border\":true,\"data-framer-name\":\"Statistics Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQnyx1dL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-173iguj\",\"data-styles-preset\":\"SRckh1huN\",style:{\"--framer-text-color\":\"var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66))\"},children:\"Service resolution\"})})},Xzj0LLAzU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rqbvtv\",\"data-styles-preset\":\"fxbM8Cpk6\",style:{\"--framer-text-color\":\"var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66))\"},children:\"Service resolution across departments\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-173iguj\",\"data-styles-preset\":\"SRckh1huN\",style:{\"--framer-text-color\":\"var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66))\"},children:\"Service resolution across departments\"})}),className:\"framer-1fwesx0\",\"data-framer-name\":\"Section Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQnyx1dL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO05CIEludGVybmF0aW9uYWwgUHJvIENHIFJlZ3VsYXI=\",\"--framer-font-family\":'\"NB International Pro CG Regular\", \"NB International Pro CG Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 4)\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"0.75em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\"},children:\"24/7\"})})},Xzj0LLAzU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO05CIEludGVybmF0aW9uYWwgUHJvIENHIFJlZ3VsYXI=\",\"--framer-font-family\":'\"NB International Pro CG Regular\", \"NB International Pro CG Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 2.25)\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"0.75em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\"},children:\"24/7\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO05CIEludGVybmF0aW9uYWwgUHJvIENHIFJlZ3VsYXI=\",\"--framer-font-family\":'\"NB International Pro CG Regular\", \"NB International Pro CG Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 4)\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"0.75em\",\"--framer-text-color\":\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\"},children:\"24/7\"})}),className:\"framer-11d69vs\",\"data-framer-name\":\"Stat Value\",fonts:[\"CUSTOM;NB International Pro CG Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sibdpm\",\"data-framer-name\":\"\u2795 Grid Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xb2nfr\",\"data-framer-name\":\"\u2795 Grid Section\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,width:`max((${componentViewport?.width||\"100vw\"} - 304px) / 6, 50px)`,y:(componentViewport?.y||0)+0+3229.6+120+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nk6k8x-container hidden-d3pkcl hidden-17xwe3j hidden-9vdhs3\",nodeId:\"ogujC3bwG\",scopeId:\"HKZVj5oAY\",children:/*#__PURE__*/_jsx(SectionKicker,{height:\"100%\",id:\"ogujC3bwG\",layoutId:\"ogujC3bwG\",Skhe5ZIGa:\"CAPABILITIES\",style:{width:\"100%\"},variant:\"P1weuDtxt\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11mt2w0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xzj0LLAzU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kr3vy5\",\"data-styles-preset\":\"TvjFdl8M_\",style:{\"--framer-text-alignment\":\"left\"},children:\"Master of Agents\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ue9g0d\",\"data-styles-preset\":\"mGa672K5X\",style:{\"--framer-text-alignment\":\"left\"},children:\"Master of Agents\"})}),className:\"framer-1xwt7u0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4m177b\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-klh6ot\",\"data-border\":true,\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-itw4dy\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bp8f5m\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05CIEludGVybmF0aW9uYWwgUHJvIENHIE1lZGl1bQ==\",\"--framer-font-family\":'\"NB International Pro CG Medium\", \"NB International Pro CG Medium Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.25)\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\"},children:\"Autonomously picks up tasks.\"})}),className:\"framer-j0c9ds\",fonts:[\"CUSTOM;NB International Pro CG Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mw4rqq\",\"data-styles-preset\":\"gfIx14XM_\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132))\"},children:\"AI Workers are always on to identify tasks and get them done.\"})}),className:\"framer-vqj145\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQnyx1dL:{width:`max(${componentViewport?.width||\"100vw\"} - 96px, 50px)`,y:(componentViewport?.y||0)+0+2855.6+80+0+0+0+0+105.2+0+0+24+282},rl0ty3qm9:{width:`max((max(${componentViewport?.width||\"100vw\"} - 64px, 50px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+2941.6+120+0+0+0+0+105.2+0+0+24},Xzj0LLAzU:{height:360,width:`max(${componentViewport?.width||\"100vw\"} - 48px, 50px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:`max((max((${componentViewport?.width||\"100vw\"} - 304px) / 6, 50px) * 4 + 120px) / 2, 1px)`,y:(componentViewport?.y||0)+0+3229.6+120+0+0+0+0+105.2+0+0+24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tw8zgi-container\",nodeId:\"hN6KUsCpk\",scopeId:\"HKZVj5oAY\",children:/*#__PURE__*/_jsx(OrchestrationVisual,{height:\"100%\",id:\"hN6KUsCpk\",layoutId:\"hN6KUsCpk\",style:{height:\"100%\",width:\"100%\"},variant:\"tytavq_kF\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3g4o8v\",\"data-border\":true,\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xxstpk\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05CIEludGVybmF0aW9uYWwgUHJvIENHIE1lZGl1bQ==\",\"--framer-font-family\":'\"NB International Pro CG Medium\", \"NB International Pro CG Medium Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.25)\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\"},children:\"Orchestrates multiple AI agents.\"})}),className:\"framer-dc26o6\",fonts:[\"CUSTOM;NB International Pro CG Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mw4rqq\",\"data-styles-preset\":\"gfIx14XM_\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132))\"},children:\"Combines knowledge, policy checks, and takes action to deliver complete, compliant outcomes.\"})}),className:\"framer-14s9cnm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQnyx1dL:{width:`max(${componentViewport?.width||\"100vw\"} - 96px, 50px)`,y:(componentViewport?.y||0)+0+2855.6+80+0+0+0+0+105.2+0+758+24+282},rl0ty3qm9:{width:`max((max(${componentViewport?.width||\"100vw\"} - 64px, 50px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+2941.6+120+0+0+0+0+105.2+0+476+24},Xzj0LLAzU:{height:360,width:`max(${componentViewport?.width||\"100vw\"} - 48px, 50px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:387,width:`max((max((${componentViewport?.width||\"100vw\"} - 304px) / 6, 50px) * 4 + 120px) / 2, 1px)`,y:(componentViewport?.y||0)+0+3229.6+120+0+0+0+0+105.2+0+476+24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-87f0j3-container\",nodeId:\"LG3cLy3Nb\",scopeId:\"HKZVj5oAY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xzj0LLAzU:{variant:\"KN7Sx6VLB\"}},children:/*#__PURE__*/_jsx(Autonomy,{height:\"100%\",id:\"LG3cLy3Nb\",layoutId:\"LG3cLy3Nb\",style:{height:\"100%\",width:\"100%\"},variant:\"WkP_ivDib\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5injdz\",\"data-border\":true,\"data-framer-name\":\"Text\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yx7hyz\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05CIEludGVybmF0aW9uYWwgUHJvIENHIE1lZGl1bQ==\",\"--framer-font-family\":'\"NB International Pro CG Medium\", \"NB International Pro CG Medium Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.25)\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, rgb(20, 20, 20))\"},children:\"Involves humans when needed.\"})}),className:\"framer-bbrb5r\",fonts:[\"CUSTOM;NB International Pro CG Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mw4rqq\",\"data-styles-preset\":\"gfIx14XM_\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132))\"},children:\"Completes the task autonomously, logging every step along the way - but keeps you in the loop when an escalation is needed.\"})}),className:\"framer-1dwsraf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQnyx1dL:{width:`max(${componentViewport?.width||\"100vw\"} - 96px, 50px)`,y:(componentViewport?.y||0)+0+2855.6+80+0+0+0+0+105.2+0+1485+24+282},rl0ty3qm9:{width:`max((max(${componentViewport?.width||\"100vw\"} - 64px, 50px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+2941.6+120+0+0+0+0+105.2+0+921+24},Xzj0LLAzU:{height:360,width:`max(${componentViewport?.width||\"100vw\"} - 48px, 50px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:387,width:`max((max((${componentViewport?.width||\"100vw\"} - 304px) / 6, 50px) * 4 + 120px) / 2, 1px)`,y:(componentViewport?.y||0)+0+3229.6+120+0+0+0+0+105.2+0+921+24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mfdprb-container\",nodeId:\"ATb_Xm38T\",scopeId:\"HKZVj5oAY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xzj0LLAzU:{variant:\"prlHgq1D5\"}},children:/*#__PURE__*/_jsx(Escalation,{height:\"100%\",id:\"ATb_Xm38T\",layoutId:\"ATb_Xm38T\",style:{height:\"100%\",width:\"100%\"},variant:\"B3BE3_siS\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jgszky\",\"data-framer-name\":\"Text\",id:elementId1,ref:ref2})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11cify5\",\"data-framer-name\":\"\u2795 Grid Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lyq7iy\",\"data-framer-name\":\"\u2795 Grid Section\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,y:(componentViewport?.y||0)+0+5100.8+48+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13gd5rh-container hidden-d3pkcl hidden-17xwe3j hidden-9vdhs3\",\"data-framer-name\":\"ai.cycle\",name:\"ai.cycle\",nodeId:\"QBCAaqwga\",scopeId:\"HKZVj5oAY\",children:/*#__PURE__*/_jsx(TextCycle2,{alVjkW82b:true,AuteqFZi8:\"travel\",height:\"100%\",id:\"QBCAaqwga\",IerL0xoGY:\"ai.\",layoutId:\"QBCAaqwga\",mrsvahHX6:\"office-ops\",name:\"ai.cycle\",RuKXuiKR0:\"dev-ops\",variant:\"JleRixuqZ\",VSMWnra3s:\"facilities\",width:\"100%\",WuEWAhqT8:\"it-support\",yF2PK3DXU:16})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xzj0LLAzU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-kr3vy5\",\"data-styles-preset\":\"TvjFdl8M_\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Your next hire\",/*#__PURE__*/_jsx(\"br\",{}),\"is agentic\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-ue9g0d\",\"data-styles-preset\":\"mGa672K5X\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Your next hire\",/*#__PURE__*/_jsx(\"br\",{}),\"is agentic\"]})}),className:\"framer-15naj3z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11yejgy\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14subjj\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"L6xC4m8Lq\"},implicitPathVariables:undefined},{href:{webPageId:\"L6xC4m8Lq\"},implicitPathVariables:undefined},{href:{webPageId:\"L6xC4m8Lq\"},implicitPathVariables:undefined},{href:{webPageId:\"L6xC4m8Lq\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQnyx1dL:{width:`max(${componentViewport?.width||\"100vw\"} - 64px, 50px)`,y:(componentViewport?.y||0)+0+5492.8+48+0+0+81.2+0+0+0+0},rl0ty3qm9:{y:(componentViewport?.y||0)+0+4812.8+48+0+0+0+0+0+0+0},Xzj0LLAzU:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 50px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:79,width:`calc(max((${componentViewport?.width||\"100vw\"} - 304px) / 6, 50px) * 2 + 48px)`,y:(componentViewport?.y||0)+0+5100.8+48+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7oie5t-container\",nodeId:\"zdinodNoc\",scopeId:\"HKZVj5oAY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQnyx1dL:{VJ7xU1sDu:resolvedLinks1[1]},rl0ty3qm9:{VJ7xU1sDu:resolvedLinks1[3]},Xzj0LLAzU:{VJ7xU1sDu:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(BookDemoCTA,{ESWDpbTww:\"See our AI Workers in action, book a demo now.\",height:\"100%\",id:\"zdinodNoc\",layoutId:\"zdinodNoc\",style:{width:\"100%\"},variant:\"IE328cISZ\",VJ7xU1sDu:resolvedLinks1[0],width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"jZUpRR5m_\"},implicitPathVariables:undefined},{href:{webPageId:\"jZUpRR5m_\"},implicitPathVariables:undefined},{href:{webPageId:\"jZUpRR5m_\"},implicitPathVariables:undefined},{href:{webPageId:\"jZUpRR5m_\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQnyx1dL:{width:`max(${componentViewport?.width||\"100vw\"} - 64px, 50px)`,y:(componentViewport?.y||0)+0+5492.8+48+0+0+81.2+0+0+0+89},rl0ty3qm9:{y:(componentViewport?.y||0)+0+4812.8+48+0+0+0+0+0+0+89},Xzj0LLAzU:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 50px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`calc(max((${componentViewport?.width||\"100vw\"} - 304px) / 6, 50px) * 2 + 48px)`,y:(componentViewport?.y||0)+0+5100.8+48+0+0+0+0+0+0+89,children:/*#__PURE__*/_jsx(Container,{className:\"framer-50eafx-container\",nodeId:\"gvnbm12cP\",scopeId:\"HKZVj5oAY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQnyx1dL:{tMSRJ5_bd:resolvedLinks2[1]},rl0ty3qm9:{tMSRJ5_bd:resolvedLinks2[3]},Xzj0LLAzU:{tMSRJ5_bd:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(Button,{cPLRwzWpo:false,ELnqIpGPd:true,gpq98KTEe:true,height:\"100%\",i6yWlIfcR:\"Request Access\",id:\"gvnbm12cP\",layoutId:\"gvnbm12cP\",nU8wyyJdM:\"chevron-left\",rI0aY4ZTG:true,style:{width:\"100%\"},tMSRJ5_bd:resolvedLinks2[0],variant:\"MXQOeruTA\",width:\"100%\",WOOJEUdLF:\"TegIsDW6B\",XQ_8neLW7:\"chevron-right\"})})})})})})]})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ip60fv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jVngx8xnX\",scopeId:\"HKZVj5oAY\",children:/*#__PURE__*/_jsx(ShimmerGrid,{color:\"var(--token-d35c4cf4-2229-41bc-9f56-c6095d0f8862, rgba(20, 20, 20, 0.04))\",customPatternMode:\"alpha\",customPatternPosition:\"center\",customPatternSizing:\"tile\",dotSize:4,flip:false,height:\"100%\",hoverColor:\"var(--token-e23b040e-5051-4ef8-8236-3565f4e746fd, rgb(138, 135, 132))\",hoverShape:\"glow\",hoverSize:100,id:\"jVngx8xnX\",layoutId:\"jVngx8xnX\",lineWidth:2,patternPreset:\"dots\",radius:\"0px\",smoothing:0,style:{height:\"100%\",width:\"100%\"},tileSize:15,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5y1syv\",\"data-framer-name\":\"\u2795 Grid Section\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-uyd1cb hidden-17xwe3j hidden-9vdhs3\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xzj0LLAzU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bvudkk\",\"data-styles-preset\":\"Dz7x53WKr\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66))\"},children:\"Built for the security, compliance, and control that modern enterprises require.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bvudkk\",\"data-styles-preset\":\"Dz7x53WKr\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66))\"},children:\"Built for the security, compliance, and control that modern enterprises require.\"})}),className:\"framer-xuj42n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wgpq0o\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t34n1g\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cllm7r\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-wv33mg\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 30\" overflow=\"visible\"><path d=\"M 19.632 14.415 C 19.626 13.714 19.141 13.139 18.464 12.966 C 18.343 12.936 18.221 12.912 18.084 12.883 C 18.084 12.501 18.094 12.135 18.082 11.77 C 18.033 10.189 16.766 8.878 15.198 8.78 C 13.606 8.681 12.191 9.785 11.948 11.354 C 11.872 11.85 11.889 12.361 11.862 12.894 C 10.791 13.081 10.338 13.62 10.337 14.705 C 10.337 15.998 10.332 17.292 10.34 18.585 C 10.345 19.461 10.996 20.146 11.855 20.152 C 13.944 20.165 16.031 20.164 18.12 20.152 C 18.954 20.147 19.623 19.483 19.632 18.65 C 19.649 17.238 19.646 15.826 19.632 14.415 Z M 12.976 11.455 C 13.169 10.404 14.147 9.705 15.197 9.812 C 16.233 9.918 17.031 10.785 17.056 11.836 C 17.063 12.18 17.056 12.524 17.056 12.891 L 12.897 12.891 C 12.921 12.396 12.892 11.915 12.976 11.455 Z M 16.927 15.836 C 16.231 16.554 15.525 17.261 14.808 17.958 C 14.594 18.166 14.327 18.147 14.11 17.941 C 13.752 17.601 13.401 17.251 13.063 16.891 C 12.854 16.668 12.873 16.364 13.075 16.166 C 13.276 15.968 13.572 15.956 13.799 16.166 C 14.018 16.37 14.215 16.6 14.448 16.849 C 14.987 16.312 15.48 15.819 15.973 15.326 C 16.042 15.258 16.107 15.185 16.18 15.124 C 16.417 14.927 16.709 14.933 16.907 15.135 C 17.098 15.329 17.129 15.627 16.927 15.835 Z M 12.881 5.581 C 12.951 5.156 13.014 4.73 13.095 4.308 C 13.139 4.079 13.112 3.904 12.927 3.733 C 12.627 3.456 12.35 3.153 12.073 2.851 C 11.74 2.487 11.874 2.057 12.356 1.958 C 12.723 1.883 13.097 1.825 13.47 1.786 C 13.729 1.759 13.895 1.665 13.996 1.408 C 14.14 1.038 14.3 0.668 14.506 0.331 C 14.604 0.172 14.826 -0.001 14.991 0 C 15.156 0.001 15.376 0.177 15.472 0.337 C 15.686 0.695 15.853 1.085 16.01 1.473 C 16.092 1.673 16.22 1.748 16.417 1.774 C 16.79 1.821 17.162 1.881 17.534 1.936 C 17.768 1.971 17.974 2.053 18.057 2.302 C 18.14 2.552 18.024 2.738 17.856 2.907 C 17.583 3.183 17.325 3.474 17.04 3.736 C 16.866 3.896 16.833 4.062 16.876 4.282 C 16.955 4.683 17.04 5.086 17.066 5.493 C 17.078 5.681 17.005 5.918 16.886 6.061 C 16.724 6.256 16.479 6.2 16.265 6.079 C 15.909 5.877 15.559 5.665 15.191 5.488 C 15.079 5.435 14.899 5.435 14.786 5.488 C 14.397 5.671 14.032 5.902 13.645 6.09 C 13.245 6.283 12.852 6.011 12.881 5.582 Z M 4.861 7.659 C 4.829 7.608 4.789 7.511 4.722 7.439 C 4.428 7.124 4.105 6.833 3.838 6.499 C 3.72 6.351 3.62 6.09 3.672 5.934 C 3.725 5.777 3.96 5.626 4.143 5.578 C 4.515 5.48 4.905 5.447 5.289 5.397 C 5.485 5.371 5.613 5.295 5.695 5.096 C 5.853 4.708 6.019 4.318 6.234 3.96 C 6.329 3.8 6.549 3.624 6.714 3.623 C 6.879 3.622 7.102 3.795 7.198 3.954 C 7.41 4.301 7.576 4.679 7.723 5.06 C 7.816 5.301 7.972 5.378 8.203 5.404 C 8.555 5.446 8.905 5.505 9.256 5.557 C 9.489 5.593 9.697 5.669 9.783 5.919 C 9.875 6.184 9.742 6.372 9.568 6.549 C 9.295 6.824 9.037 7.114 8.753 7.378 C 8.599 7.521 8.565 7.669 8.601 7.865 C 8.679 8.288 8.772 8.712 8.801 9.139 C 8.813 9.324 8.728 9.583 8.594 9.689 C 8.472 9.784 8.197 9.777 8.035 9.708 C 7.663 9.547 7.313 9.327 6.962 9.119 C 6.798 9.021 6.662 9.007 6.488 9.11 C 6.147 9.314 5.801 9.519 5.435 9.669 C 5.261 9.74 5.009 9.746 4.838 9.673 C 4.612 9.576 4.587 9.331 4.633 9.084 C 4.716 8.63 4.781 8.171 4.862 7.659 Z M 21.404 7.647 C 21.368 7.593 21.321 7.499 21.253 7.427 C 20.966 7.121 20.652 6.836 20.39 6.511 C 20.27 6.361 20.184 6.128 20.199 5.942 C 20.218 5.691 20.458 5.597 20.697 5.562 C 21.068 5.507 21.44 5.446 21.813 5.398 C 22.021 5.372 22.158 5.295 22.242 5.08 C 22.392 4.701 22.582 4.338 22.754 3.967 C 22.857 3.745 23.021 3.551 23.267 3.612 C 23.448 3.657 23.65 3.806 23.747 3.967 C 23.957 4.315 24.122 4.694 24.272 5.073 C 24.362 5.301 24.508 5.376 24.728 5.403 C 25.09 5.446 25.451 5.507 25.812 5.561 C 26.049 5.596 26.251 5.684 26.33 5.934 C 26.41 6.185 26.289 6.368 26.12 6.537 C 25.84 6.82 25.55 7.096 25.294 7.399 C 25.199 7.512 25.136 7.702 25.15 7.847 C 25.195 8.285 25.311 8.716 25.345 9.155 C 25.358 9.33 25.276 9.584 25.148 9.679 C 25.019 9.775 24.75 9.781 24.59 9.714 C 24.217 9.556 23.866 9.338 23.517 9.127 C 23.341 9.021 23.198 9.007 23.015 9.118 C 22.693 9.314 22.353 9.478 22.025 9.66 C 21.804 9.783 21.58 9.842 21.36 9.677 C 21.156 9.524 21.13 9.313 21.175 9.068 C 21.259 8.613 21.323 8.155 21.403 7.647 Z M 6.195 14.441 C 6.152 14.514 6.092 14.667 5.989 14.78 C 5.715 15.083 5.432 15.381 5.133 15.66 C 4.979 15.804 4.943 15.951 4.98 16.147 C 5.059 16.571 5.15 16.995 5.182 17.423 C 5.195 17.601 5.125 17.865 4.999 17.952 C 4.858 18.05 4.581 18.058 4.413 17.988 C 4.029 17.826 3.681 17.579 3.305 17.395 C 3.192 17.341 3.012 17.339 2.898 17.391 C 2.536 17.556 2.203 17.787 1.836 17.933 C 1.65 18.007 1.387 18.014 1.207 17.938 C 0.982 17.843 0.967 17.589 1.014 17.345 C 1.092 16.943 1.168 16.54 1.205 16.134 C 1.219 15.987 1.16 15.796 1.065 15.683 C 0.794 15.364 0.482 15.079 0.195 14.771 C -0.154 14.397 -0.02 13.962 0.482 13.862 C 0.85 13.789 1.224 13.733 1.598 13.692 C 1.845 13.665 2.005 13.58 2.101 13.328 C 2.234 12.977 2.419 12.645 2.572 12.301 C 2.675 12.07 2.811 11.887 3.088 11.883 C 3.381 11.879 3.521 12.072 3.629 12.314 C 3.787 12.668 3.974 13.01 4.115 13.37 C 4.199 13.587 4.34 13.656 4.547 13.684 C 4.952 13.739 5.357 13.797 5.758 13.874 C 6.036 13.926 6.189 14.116 6.194 14.443 Z M 9.349 25.293 C 9.347 25.715 8.965 25.963 8.598 25.786 C 8.241 25.612 7.889 25.422 7.555 25.208 C 7.324 25.059 7.135 25.065 6.908 25.206 C 6.615 25.387 6.303 25.534 6 25.699 C 5.778 25.82 5.551 25.875 5.333 25.712 C 5.128 25.56 5.103 25.346 5.15 25.103 C 5.225 24.723 5.267 24.337 5.344 23.956 C 5.391 23.722 5.344 23.551 5.163 23.385 C 4.877 23.123 4.595 22.852 4.356 22.548 C 4.238 22.399 4.135 22.14 4.187 21.984 C 4.238 21.827 4.474 21.675 4.657 21.626 C 5.029 21.528 5.419 21.495 5.803 21.445 C 6 21.419 6.128 21.345 6.21 21.145 C 6.368 20.757 6.534 20.366 6.749 20.008 C 6.845 19.848 7.065 19.672 7.23 19.671 C 7.395 19.671 7.619 19.844 7.714 20.003 C 7.929 20.361 8.095 20.751 8.254 21.139 C 8.335 21.337 8.457 21.42 8.657 21.444 C 9.02 21.488 9.381 21.546 9.742 21.6 C 9.985 21.637 10.21 21.705 10.3 21.971 C 10.39 22.237 10.254 22.424 10.08 22.6 C 9.814 22.868 9.564 23.152 9.287 23.407 C 9.113 23.566 9.079 23.732 9.122 23.952 C 9.21 24.407 9.278 24.865 9.35 25.295 Z M 26.363 22.726 C 26.306 22.816 26.24 22.965 26.136 23.079 C 25.868 23.374 25.595 23.666 25.301 23.935 C 25.134 24.088 25.108 24.247 25.145 24.452 C 25.221 24.865 25.314 25.279 25.34 25.696 C 25.352 25.883 25.276 26.152 25.142 26.248 C 25.007 26.345 24.728 26.332 24.555 26.261 C 24.199 26.114 23.865 25.909 23.537 25.704 C 23.337 25.579 23.177 25.584 22.977 25.704 C 22.665 25.892 22.346 26.082 22.007 26.212 C 21.819 26.285 21.56 26.299 21.377 26.227 C 21.15 26.135 21.127 25.884 21.175 25.637 C 21.25 25.247 21.295 24.849 21.374 24.459 C 21.419 24.235 21.369 24.075 21.2 23.916 C 20.909 23.644 20.62 23.365 20.371 23.056 C 20.258 22.915 20.155 22.662 20.206 22.518 C 20.265 22.356 20.487 22.198 20.668 22.149 C 21.039 22.048 21.429 22.015 21.813 21.965 C 22.021 21.938 22.158 21.862 22.243 21.648 C 22.393 21.268 22.584 20.904 22.756 20.533 C 22.858 20.311 23.023 20.117 23.269 20.178 C 23.45 20.223 23.653 20.374 23.749 20.535 C 23.962 20.893 24.129 21.283 24.287 21.672 C 24.369 21.876 24.509 21.936 24.7 21.963 C 25.105 22.021 25.509 22.082 25.912 22.15 C 26.196 22.197 26.337 22.379 26.364 22.726 Z M 14.983 23.66 C 15.191 23.859 15.377 23.974 15.472 24.141 C 15.673 24.496 15.847 24.87 15.994 25.25 C 16.087 25.493 16.245 25.567 16.476 25.593 C 16.817 25.633 17.157 25.689 17.497 25.741 C 17.74 25.777 17.965 25.845 18.055 26.111 C 18.145 26.377 18.01 26.564 17.836 26.741 C 17.563 27.017 17.304 27.307 17.02 27.57 C 16.863 27.715 16.837 27.865 16.873 28.059 C 16.947 28.472 17.038 28.885 17.067 29.303 C 17.08 29.491 17.007 29.729 16.887 29.872 C 16.725 30.068 16.479 30.011 16.265 29.89 C 15.919 29.693 15.565 29.508 15.224 29.304 C 15.056 29.202 14.919 29.205 14.75 29.304 C 14.424 29.493 14.086 29.66 13.755 29.839 C 13.534 29.96 13.308 30.017 13.088 29.854 C 12.884 29.702 12.858 29.489 12.905 29.245 C 12.983 28.843 13.059 28.439 13.096 28.033 C 13.109 27.887 13.047 27.697 12.952 27.585 C 12.68 27.265 12.369 26.98 12.082 26.673 C 11.734 26.298 11.873 25.865 12.378 25.766 C 12.768 25.69 13.163 25.639 13.558 25.585 C 13.754 25.559 13.884 25.487 13.965 25.286 C 14.123 24.897 14.296 24.512 14.5 24.146 C 14.594 23.979 14.778 23.861 14.983 23.659 Z M 24.805 17.446 C 24.873 17.017 24.96 16.551 25.012 16.081 C 25.026 15.956 24.971 15.79 24.888 15.695 C 24.627 15.395 24.341 15.115 24.057 14.837 C 23.875 14.659 23.759 14.466 23.84 14.205 C 23.924 13.936 24.154 13.873 24.395 13.836 C 24.767 13.78 25.144 13.745 25.509 13.663 C 25.64 13.633 25.79 13.517 25.855 13.4 C 26.06 13.022 26.204 12.611 26.423 12.243 C 26.518 12.084 26.739 11.908 26.904 11.908 C 27.069 11.908 27.292 12.083 27.386 12.243 C 27.605 12.61 27.748 13.023 27.953 13.4 C 28.016 13.518 28.168 13.634 28.299 13.663 C 28.676 13.747 29.07 13.756 29.441 13.855 C 29.635 13.907 29.858 14.048 29.956 14.215 C 30.079 14.426 29.924 14.64 29.753 14.81 C 29.47 15.091 29.206 15.39 28.915 15.662 C 28.761 15.805 28.724 15.951 28.76 16.148 C 28.839 16.572 28.932 16.995 28.961 17.423 C 28.973 17.608 28.889 17.867 28.755 17.974 C 28.634 18.07 28.358 18.063 28.197 17.994 C 27.823 17.833 27.474 17.613 27.123 17.406 C 26.959 17.309 26.825 17.293 26.65 17.396 C 26.3 17.606 25.94 17.801 25.573 17.98 C 25.165 18.179 24.795 17.933 24.807 17.448 Z\" fill=\"var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66)) /* {&quot;name&quot;:&quot;Secondary&quot;} */\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1611si1\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.308 11.387\" overflow=\"visible\"><path d=\"M 9.297 5.64 C 9.291 4.94 8.806 4.365 8.129 4.192 C 8.008 4.162 7.885 4.138 7.749 4.109 C 7.749 3.727 7.758 3.361 7.747 2.996 C 7.698 1.415 6.43 0.104 4.863 0.006 C 3.271 -0.093 1.855 1.011 1.613 2.58 C 1.536 3.076 1.553 3.587 1.527 4.12 C 0.456 4.307 0.003 4.846 0.002 5.931 C 0.002 7.224 -0.003 8.518 0.004 9.811 C 0.009 10.687 0.66 11.372 1.52 11.378 C 3.608 11.391 5.696 11.39 7.784 11.378 C 8.619 11.373 9.288 10.709 9.297 9.876 C 9.313 8.464 9.311 7.052 9.297 5.64 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ttq1iz\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.162 3.089\" overflow=\"visible\"><path d=\"M 0.079 1.654 C 0.273 0.603 1.25 -0.096 2.301 0.011 C 3.336 0.116 4.135 0.983 4.159 2.035 C 4.167 2.379 4.16 2.723 4.16 3.089 L 0 3.089 C 0.024 2.594 -0.004 2.114 0.079 1.654 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-79c4wr\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.151 3.125\" overflow=\"visible\"><path d=\"M 4.013 0.856 C 3.317 1.574 2.61 2.282 1.894 2.978 C 1.68 3.186 1.412 3.167 1.196 2.961 C 0.838 2.621 0.486 2.271 0.149 1.911 C -0.061 1.688 -0.042 1.384 0.16 1.186 C 0.361 0.988 0.658 0.976 0.884 1.186 C 1.103 1.39 1.3 1.62 1.534 1.869 C 2.073 1.332 2.565 0.839 3.059 0.346 C 3.127 0.278 3.193 0.206 3.266 0.144 C 3.503 -0.053 3.794 -0.047 3.993 0.155 C 4.183 0.349 4.215 0.647 4.013 0.855 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-59iilf\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.195 6.189\" overflow=\"visible\"><path d=\"M 0.992 5.581 C 1.062 5.156 1.125 4.73 1.206 4.308 C 1.25 4.079 1.222 3.904 1.038 3.733 C 0.737 3.456 0.46 3.153 0.184 2.851 C -0.149 2.487 -0.015 2.057 0.466 1.958 C 0.834 1.883 1.208 1.825 1.58 1.786 C 1.839 1.759 2.006 1.665 2.107 1.408 C 2.251 1.038 2.411 0.668 2.617 0.331 C 2.714 0.172 2.937 -0.001 3.102 0 C 3.267 0.001 3.487 0.177 3.583 0.337 C 3.797 0.695 3.963 1.085 4.121 1.473 C 4.202 1.673 4.331 1.748 4.528 1.774 C 4.9 1.821 5.272 1.881 5.644 1.936 C 5.879 1.971 6.084 2.053 6.167 2.302 C 6.251 2.552 6.134 2.738 5.966 2.907 C 5.693 3.183 5.435 3.474 5.151 3.736 C 4.976 3.896 4.943 4.062 4.987 4.282 C 5.065 4.683 5.151 5.086 5.177 5.493 C 5.189 5.681 5.116 5.918 4.997 6.061 C 4.835 6.256 4.59 6.2 4.376 6.079 C 4.02 5.877 3.67 5.665 3.302 5.488 C 3.19 5.435 3.01 5.435 2.896 5.488 C 2.508 5.671 2.142 5.902 1.756 6.09 C 1.356 6.283 0.962 6.011 0.992 5.582 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-92qjr8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.155 6.137\" overflow=\"visible\"><path d=\"M 1.203 4.036 C 1.172 3.985 1.131 3.888 1.064 3.816 C 0.77 3.501 0.448 3.21 0.18 2.875 C 0.062 2.728 -0.038 2.467 0.014 2.311 C 0.067 2.154 0.303 2.003 0.486 1.955 C 0.858 1.856 1.247 1.824 1.631 1.774 C 1.828 1.748 1.955 1.672 2.037 1.473 C 2.195 1.085 2.361 0.695 2.576 0.337 C 2.672 0.177 2.892 0.001 3.056 0 C 3.221 -0.001 3.444 0.172 3.541 0.331 C 3.752 0.678 3.919 1.056 4.065 1.436 C 4.158 1.678 4.315 1.755 4.545 1.781 C 4.897 1.823 5.248 1.882 5.598 1.934 C 5.831 1.97 6.039 2.046 6.125 2.296 C 6.218 2.561 6.085 2.749 5.91 2.926 C 5.638 3.2 5.379 3.491 5.096 3.754 C 4.941 3.898 4.907 4.046 4.943 4.242 C 5.021 4.665 5.115 5.089 5.143 5.516 C 5.155 5.701 5.071 5.96 4.936 6.066 C 4.814 6.161 4.539 6.154 4.378 6.085 C 4.005 5.924 3.655 5.704 3.304 5.496 C 3.14 5.398 3.004 5.384 2.83 5.487 C 2.489 5.691 2.143 5.896 1.777 6.046 C 1.603 6.117 1.351 6.123 1.18 6.05 C 0.954 5.953 0.929 5.708 0.975 5.461 C 1.059 5.007 1.123 4.548 1.204 4.036 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jsupeq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.158 6.177\" overflow=\"visible\"><path d=\"M 1.207 4.047 C 1.171 3.992 1.124 3.899 1.056 3.826 C 0.769 3.52 0.455 3.236 0.193 2.91 C 0.073 2.761 -0.013 2.527 0.002 2.341 C 0.021 2.091 0.261 1.996 0.5 1.961 C 0.872 1.907 1.243 1.845 1.616 1.798 C 1.824 1.771 1.961 1.694 2.045 1.48 C 2.195 1.1 2.385 0.737 2.557 0.366 C 2.66 0.144 2.824 -0.049 3.07 0.011 C 3.251 0.056 3.453 0.206 3.55 0.366 C 3.76 0.715 3.925 1.093 4.075 1.473 C 4.165 1.7 4.311 1.775 4.531 1.802 C 4.893 1.845 5.254 1.907 5.615 1.96 C 5.852 1.996 6.054 2.084 6.133 2.334 C 6.213 2.584 6.092 2.767 5.924 2.937 C 5.643 3.219 5.353 3.495 5.097 3.799 C 5.002 3.911 4.939 4.101 4.954 4.246 C 4.998 4.684 5.114 5.116 5.148 5.554 C 5.161 5.729 5.079 5.983 4.951 6.078 C 4.822 6.174 4.553 6.18 4.393 6.113 C 4.02 5.955 3.669 5.737 3.32 5.526 C 3.144 5.42 3.001 5.406 2.818 5.518 C 2.497 5.713 2.157 5.877 1.828 6.059 C 1.607 6.182 1.383 6.241 1.163 6.076 C 0.96 5.923 0.933 5.712 0.978 5.467 C 1.062 5.013 1.126 4.554 1.206 4.047 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-146cjw8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.195 6.151\" overflow=\"visible\"><path d=\"M 6.195 2.558 C 6.152 2.631 6.092 2.784 5.989 2.897 C 5.715 3.201 5.432 3.498 5.133 3.777 C 4.979 3.921 4.943 4.068 4.98 4.264 C 5.059 4.688 5.15 5.112 5.182 5.54 C 5.195 5.718 5.125 5.982 4.999 6.069 C 4.858 6.167 4.581 6.175 4.413 6.105 C 4.029 5.943 3.681 5.696 3.305 5.512 C 3.192 5.458 3.012 5.456 2.898 5.508 C 2.536 5.673 2.203 5.904 1.836 6.05 C 1.65 6.124 1.387 6.131 1.207 6.055 C 0.982 5.96 0.967 5.706 1.014 5.462 C 1.092 5.06 1.168 4.657 1.205 4.251 C 1.219 4.104 1.16 3.913 1.065 3.8 C 0.794 3.481 0.482 3.196 0.195 2.889 C -0.154 2.514 -0.02 2.079 0.482 1.979 C 0.85 1.906 1.224 1.85 1.598 1.809 C 1.845 1.782 2.005 1.697 2.101 1.445 C 2.234 1.094 2.419 0.762 2.572 0.418 C 2.675 0.187 2.811 0.004 3.088 0 C 3.381 -0.004 3.521 0.189 3.629 0.431 C 3.787 0.785 3.974 1.127 4.115 1.487 C 4.199 1.704 4.34 1.773 4.547 1.801 C 4.952 1.856 5.357 1.914 5.758 1.991 C 6.036 2.043 6.189 2.233 6.194 2.56 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jrlrlu\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.156 6.173\" overflow=\"visible\"><path d=\"M 5.176 5.622 C 5.174 6.044 4.792 6.292 4.425 6.115 C 4.068 5.941 3.716 5.751 3.382 5.537 C 3.151 5.388 2.963 5.394 2.735 5.535 C 2.442 5.716 2.13 5.862 1.827 6.028 C 1.605 6.149 1.378 6.204 1.16 6.041 C 0.955 5.889 0.93 5.675 0.978 5.432 C 1.052 5.052 1.094 4.665 1.171 4.285 C 1.218 4.051 1.171 3.88 0.99 3.714 C 0.704 3.452 0.422 3.181 0.183 2.877 C 0.065 2.728 -0.038 2.468 0.014 2.313 C 0.065 2.156 0.301 2.004 0.484 1.955 C 0.856 1.856 1.246 1.824 1.63 1.774 C 1.827 1.748 1.955 1.674 2.037 1.474 C 2.195 1.086 2.361 0.695 2.576 0.337 C 2.672 0.177 2.893 0.001 3.057 0 C 3.222 0 3.446 0.173 3.542 0.332 C 3.757 0.69 3.922 1.079 4.081 1.468 C 4.162 1.665 4.284 1.748 4.484 1.773 C 4.847 1.817 5.208 1.875 5.57 1.929 C 5.812 1.965 6.037 2.034 6.127 2.3 C 6.217 2.566 6.081 2.753 5.907 2.929 C 5.641 3.197 5.391 3.48 5.114 3.735 C 4.941 3.895 4.906 4.06 4.949 4.281 C 5.037 4.735 5.105 5.193 5.177 5.624 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1aqnvgp\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.171 6.151\" overflow=\"visible\"><path d=\"M 6.17 2.559 C 6.113 2.649 6.047 2.798 5.943 2.912 C 5.675 3.207 5.402 3.499 5.109 3.768 C 4.941 3.922 4.916 4.08 4.953 4.285 C 5.029 4.699 5.121 5.112 5.148 5.529 C 5.16 5.716 5.083 5.985 4.949 6.081 C 4.815 6.178 4.535 6.165 4.362 6.094 C 4.007 5.947 3.673 5.742 3.345 5.537 C 3.145 5.412 2.984 5.417 2.785 5.537 C 2.472 5.725 2.153 5.915 1.815 6.045 C 1.627 6.118 1.367 6.132 1.185 6.06 C 0.958 5.968 0.935 5.717 0.982 5.47 C 1.057 5.08 1.103 4.682 1.181 4.292 C 1.226 4.068 1.176 3.908 1.007 3.75 C 0.716 3.477 0.427 3.198 0.179 2.889 C 0.065 2.748 -0.038 2.495 0.014 2.351 C 0.072 2.19 0.294 2.031 0.475 1.982 C 0.847 1.881 1.237 1.848 1.621 1.798 C 1.829 1.771 1.966 1.695 2.05 1.481 C 2.201 1.101 2.391 0.738 2.563 0.366 C 2.666 0.144 2.831 -0.05 3.076 0.012 C 3.258 0.056 3.461 0.207 3.556 0.368 C 3.769 0.726 3.936 1.116 4.094 1.505 C 4.177 1.709 4.317 1.769 4.507 1.796 C 4.912 1.854 5.316 1.916 5.719 1.983 C 6.003 2.03 6.144 2.212 6.171 2.559 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-uor19w\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.194 6.341\" overflow=\"visible\"><path d=\"M 3.094 0.001 C 3.302 0.2 3.487 0.315 3.582 0.482 C 3.783 0.837 3.958 1.211 4.104 1.591 C 4.197 1.834 4.355 1.908 4.586 1.934 C 4.928 1.974 5.268 2.03 5.608 2.082 C 5.85 2.118 6.075 2.186 6.165 2.452 C 6.256 2.718 6.12 2.905 5.946 3.082 C 5.673 3.358 5.414 3.648 5.13 3.911 C 4.973 4.056 4.947 4.206 4.983 4.4 C 5.057 4.813 5.148 5.226 5.177 5.644 C 5.19 5.832 5.117 6.07 4.997 6.213 C 4.835 6.409 4.589 6.352 4.375 6.231 C 4.029 6.034 3.675 5.849 3.334 5.645 C 3.166 5.544 3.029 5.546 2.86 5.645 C 2.534 5.834 2.196 6.001 1.866 6.18 C 1.644 6.301 1.418 6.358 1.199 6.195 C 0.994 6.043 0.968 5.83 1.016 5.586 C 1.093 5.184 1.169 4.78 1.206 4.374 C 1.219 4.228 1.157 4.038 1.062 3.926 C 0.79 3.606 0.479 3.321 0.192 3.014 C -0.155 2.64 -0.017 2.206 0.488 2.107 C 0.878 2.031 1.274 1.98 1.668 1.926 C 1.864 1.901 1.994 1.828 2.075 1.627 C 2.233 1.239 2.406 0.853 2.61 0.487 C 2.704 0.32 2.888 0.202 3.094 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11cogkc\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.186 6.141\" overflow=\"visible\"><path d=\"M 0.991 5.537 C 1.059 5.109 1.146 4.643 1.198 4.173 C 1.212 4.048 1.157 3.882 1.074 3.786 C 0.813 3.487 0.527 3.207 0.243 2.929 C 0.061 2.751 -0.055 2.558 0.026 2.297 C 0.11 2.028 0.34 1.965 0.581 1.928 C 0.953 1.872 1.329 1.837 1.695 1.754 C 1.826 1.725 1.976 1.609 2.041 1.492 C 2.246 1.114 2.39 0.703 2.609 0.335 C 2.704 0.176 2.925 0 3.09 0 C 3.255 0 3.477 0.175 3.572 0.334 C 3.791 0.702 3.934 1.115 4.139 1.492 C 4.202 1.61 4.354 1.726 4.485 1.755 C 4.862 1.839 5.256 1.848 5.627 1.947 C 5.821 1.999 6.044 2.14 6.142 2.307 C 6.265 2.518 6.11 2.732 5.939 2.902 C 5.656 3.183 5.392 3.482 5.101 3.754 C 4.947 3.897 4.91 4.043 4.946 4.24 C 5.025 4.664 5.118 5.087 5.147 5.515 C 5.159 5.7 5.075 5.959 4.941 6.066 C 4.82 6.161 4.544 6.155 4.383 6.085 C 4.009 5.925 3.66 5.705 3.309 5.498 C 3.145 5.401 3.011 5.384 2.836 5.488 C 2.486 5.698 2.126 5.893 1.759 6.072 C 1.351 6.27 0.981 6.025 0.993 5.54 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rl0ty3qm9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1ym8tz3\",\"data-styles-preset\":\"t0D9K1H_0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66))\"},children:[\"GDPR\",/*#__PURE__*/_jsx(\"br\",{}),\"Compliant\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ym8tz3\",\"data-styles-preset\":\"t0D9K1H_0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66))\"},children:\"GDPR Compliant\"})}),className:\"framer-c7w5z8\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gu6dfd hidden-17xwe3j\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p0n0m4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQnyx1dL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:607.5,intrinsicWidth:607.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5492.8+48+266.2+0+86.2+2+0+0),pixelHeight:1215,pixelWidth:1215,sizes:\"40px\",src:\"https://framerusercontent.com/images/E1FdqcCJvCewRGV0nnkX0VM16I.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/E1FdqcCJvCewRGV0nnkX0VM16I.png?scale-down-to=512 512w,https://framerusercontent.com/images/E1FdqcCJvCewRGV0nnkX0VM16I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/E1FdqcCJvCewRGV0nnkX0VM16I.png 1215w\"}},rl0ty3qm9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:607.5,intrinsicWidth:607.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4812.8+48+185+0+0+2+0+0),pixelHeight:1215,pixelWidth:1215,sizes:\"40px\",src:\"https://framerusercontent.com/images/E1FdqcCJvCewRGV0nnkX0VM16I.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/E1FdqcCJvCewRGV0nnkX0VM16I.png?scale-down-to=512 512w,https://framerusercontent.com/images/E1FdqcCJvCewRGV0nnkX0VM16I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/E1FdqcCJvCewRGV0nnkX0VM16I.png 1215w\"}},Xzj0LLAzU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:607.5,intrinsicWidth:607.5,pixelHeight:1215,pixelWidth:1215,sizes:\"40px\",src:\"https://framerusercontent.com/images/E1FdqcCJvCewRGV0nnkX0VM16I.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/E1FdqcCJvCewRGV0nnkX0VM16I.png?scale-down-to=512 512w,https://framerusercontent.com/images/E1FdqcCJvCewRGV0nnkX0VM16I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/E1FdqcCJvCewRGV0nnkX0VM16I.png 1215w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:607.5,intrinsicWidth:607.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5100.8+48+185+0+0+2+0+0),pixelHeight:1215,pixelWidth:1215,sizes:\"40px\",src:\"https://framerusercontent.com/images/E1FdqcCJvCewRGV0nnkX0VM16I.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/E1FdqcCJvCewRGV0nnkX0VM16I.png?scale-down-to=512 512w,https://framerusercontent.com/images/E1FdqcCJvCewRGV0nnkX0VM16I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/E1FdqcCJvCewRGV0nnkX0VM16I.png 1215w\"},className:\"framer-iipnf\",\"data-framer-name\":\"678a6d6fc5825e05c17510b8 678a6d497673e6547fd00d40_aicpa-soc-logo-PNG\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rl0ty3qm9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1ym8tz3\",\"data-styles-preset\":\"t0D9K1H_0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66))\"},children:[\"Soc2\",/*#__PURE__*/_jsx(\"br\",{}),\"Compliant\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ym8tz3\",\"data-styles-preset\":\"t0D9K1H_0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66))\"},children:\"SOC 2 Compliant\"})}),className:\"framer-yufewe\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qeyh9v hidden-17xwe3j\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b7cwsn\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ndh6h\",children:/*#__PURE__*/_jsx(Icon,{animated:false,className:\"framer-17dhdfr\",ezTt3ayMo:true,layoutId:\"YcpIE_Emt\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rl0ty3qm9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1ym8tz3\",\"data-styles-preset\":\"t0D9K1H_0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66))\"},children:[\"Access\",/*#__PURE__*/_jsx(\"br\",{}),\"Control\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ym8tz3\",\"data-styles-preset\":\"t0D9K1H_0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66))\"},children:\"Access Control\"})}),className:\"framer-1nvshvw\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-tn51ng hidden-17xwe3j\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i071sz\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lxbnm0\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-7ma4qr\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 28.929\" overflow=\"visible\"><path d=\"M 10.247 0.001 C 10.85 0.001 11.385 0.395 11.577 0.981 L 20.103 26.911 C 20.247 27.351 20.177 27.835 19.913 28.212 C 19.649 28.589 19.225 28.813 18.772 28.812 L 28.597 28.812 C 29.049 28.812 29.473 28.588 29.737 28.212 C 30 27.834 30.071 27.35 29.926 26.91 L 21.401 0.98 C 21.209 0.394 20.673 0 20.071 0 Z M 9.93 0.117 C 9.327 0.117 8.791 0.512 8.598 1.099 L 0.074 27.028 C -0.071 27.467 0 27.951 0.263 28.328 C 0.527 28.705 0.951 28.929 1.403 28.929 L 8.263 28.929 C 8.557 28.929 8.844 28.829 9.083 28.657 C 9.322 28.481 9.501 28.233 9.595 27.947 L 11.261 22.899 L 8.077 19.766 C 8.019 19.699 7.756 19.212 7.99 18.791 C 8.253 18.386 8.691 18.386 8.691 18.386 L 12.795 18.386 L 14.949 12.014 L 11.266 0.895 C 11.256 0.845 11.049 0.562 10.725 0.339 C 10.399 0.116 9.93 0.117 9.93 0.117 Z M 8.772 18.576 C 8.506 18.576 8.267 18.742 8.169 18.996 C 8.071 19.25 8.135 19.54 8.33 19.726 L 17.312 28.331 C 17.573 28.582 17.906 28.729 18.263 28.729 C 18.263 28.729 18.567 28.745 18.751 28.721 C 19.182 28.654 19.588 28.29 19.722 28.138 C 20.068 27.666 19.91 26.932 19.91 26.932 L 17.192 18.577 Z\" fill=\"var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66)) /* {&quot;name&quot;:&quot;Secondary&quot;} */\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1lgv3yt\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.753 28.812\" overflow=\"visible\"><path d=\"M 0 0.001 C 0.602 0.001 1.137 0.395 1.33 0.981 L 9.855 26.911 C 10 27.351 9.929 27.835 9.666 28.212 C 9.402 28.589 8.977 28.813 8.525 28.812 L 18.35 28.812 C 18.801 28.812 19.226 28.588 19.489 28.212 C 19.753 27.834 19.824 27.35 19.679 26.91 L 11.154 0.98 C 10.961 0.394 10.426 0 9.824 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-vduash\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.949 28.811\" overflow=\"visible\"><path d=\"M 9.93 0 C 9.327 0 8.791 0.395 8.598 0.982 L 0.074 26.91 C -0.071 27.35 0 27.834 0.263 28.211 C 0.527 28.588 0.951 28.811 1.403 28.811 L 8.263 28.811 C 8.557 28.811 8.844 28.711 9.083 28.54 C 9.322 28.364 9.501 28.115 9.595 27.829 L 11.261 22.782 L 8.077 19.649 C 8.019 19.582 7.756 19.095 7.99 18.673 C 8.253 18.269 8.691 18.269 8.691 18.269 L 12.795 18.269 L 14.949 11.897 L 11.266 0.777 C 11.256 0.727 11.049 0.445 10.725 0.222 C 10.399 -0.001 9.93 0 9.93 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qkh6cv\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.822 10.158\" overflow=\"visible\"><path d=\"M 0.648 0 C 0.382 0 0.143 0.166 0.045 0.42 C -0.052 0.674 0.011 0.964 0.206 1.15 L 9.188 9.755 C 9.449 10.006 9.782 10.153 10.139 10.153 C 10.139 10.153 10.443 10.169 10.627 10.145 C 11.058 10.078 11.464 9.714 11.598 9.562 C 11.944 9.09 11.787 8.356 11.787 8.356 L 9.068 0.001 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ym8tz3\",\"data-styles-preset\":\"t0D9K1H_0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-34fe71d2-2535-453c-81df-b8861251b54f, rgb(66, 66, 66))\"},children:\"Bring your own LLM\"})}),className:\"framer-ln4c5e\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ii8pne hidden-1bb3z2t hidden-d3pkcl hidden-9vdhs3\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"L6xC4m8Lq\"},implicitPathVariables:undefined},{href:{webPageId:\"L6xC4m8Lq\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xzj0LLAzU:{width:`max((${componentViewport?.width||\"100vw\"} - 68px) / 2, 1px)`,y:922}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dw5ndj-container\",nodeId:\"eHyVkmZzr\",scopeId:\"HKZVj5oAY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xzj0LLAzU:{tMSRJ5_bd:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(Button,{cPLRwzWpo:false,ELnqIpGPd:false,gpq98KTEe:false,height:\"100%\",i6yWlIfcR:\"Book Demo\",id:\"eHyVkmZzr\",layoutId:\"eHyVkmZzr\",nU8wyyJdM:\"chevron-left\",rI0aY4ZTG:true,style:{width:\"100%\"},tMSRJ5_bd:resolvedLinks3[0],variant:\"TmHf6NCL5\",width:\"100%\",WOOJEUdLF:\"TegIsDW6B\",XQ_8neLW7:\"chevron-right\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"jZUpRR5m_\"},implicitPathVariables:undefined},{href:{webPageId:\"jZUpRR5m_\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xzj0LLAzU:{width:`max((${componentViewport?.width||\"100vw\"} - 68px) / 2, 1px)`,y:922}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ldwnkz-container\",nodeId:\"t0nBxlcyr\",scopeId:\"HKZVj5oAY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xzj0LLAzU:{tMSRJ5_bd:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Button,{cPLRwzWpo:false,ELnqIpGPd:false,gpq98KTEe:false,height:\"100%\",i6yWlIfcR:\"Request Access\",id:\"t0nBxlcyr\",layoutId:\"t0nBxlcyr\",nU8wyyJdM:\"chevron-left\",rI0aY4ZTG:true,style:{width:\"100%\"},tMSRJ5_bd:resolvedLinks4[0],variant:\"JXlwsNadb\",width:\"100%\",WOOJEUdLF:\"TegIsDW6B\",XQ_8neLW7:\"chevron-right\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4FoqQ.framer-1tgwrc1, .framer-4FoqQ .framer-1tgwrc1 { display: block; }\",\".framer-4FoqQ.framer-1bb3z2t { align-content: center; align-items: center; background-color: var(--token-84e33989-9346-4639-8f69-214a89dba1a4, #fbfaf9); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1610px; }\",\".framer-4FoqQ .framer-b4t58h { align-content: center; align-items: center; background-color: var(--token-f2e915ce-7845-4005-8a1c-c42c34ab8882, #fbfaf9); border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-4FoqQ .framer-1dd3um5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 100%; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-4FoqQ .framer-8sf8d9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 640px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-4FoqQ .framer-1y7rsdp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4FoqQ .framer-rvvfh2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4FoqQ .framer-192grjb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: none; -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) -122%, rgba(0,0,0,1) 100%) add; flex: none; height: auto; mask: linear-gradient(0deg, rgba(0,0,0,0) -122%, rgba(0,0,0,1) 100%) add; position: relative; width: 100%; }\",\".framer-4FoqQ .framer-1kp5d0y { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 460px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-4FoqQ .framer-z7t08h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-4FoqQ .framer-5qmp2t { -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: var(--token-40842da4-29c1-45fe-888b-9bbe55fdb9ae, #ffffff); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 4; }\",\".framer-4FoqQ .framer-1yusxbm-container, .framer-4FoqQ .framer-5koofs-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-4FoqQ .framer-1wuwfvu { -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: var(--token-d378fa3d-0a44-4c29-b6c6-d508f3e07458, #141414); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 4; }\",\".framer-4FoqQ .framer-1lcx4d9-container { flex: none; height: auto; mix-blend-mode: difference; opacity: 0.2; position: absolute; right: 32px; top: 53%; transform: translateY(-50%); width: 42%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-4FoqQ .framer-m7xjex, .framer-4FoqQ .framer-3gg86e, .framer-4FoqQ .framer-1sibdpm { align-content: center; align-items: center; background-color: var(--token-f2e915ce-7845-4005-8a1c-c42c34ab8882, #fbfaf9); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 120px 32px 120px 32px; position: relative; width: 100%; z-index: 0; }\",\".framer-4FoqQ .framer-1971gs9 { background-color: var(--token-f2e915ce-7845-4005-8a1c-c42c34ab8882, #fbfaf9); display: grid; flex: none; gap: 24px 48px; grid-auto-rows: min-content; grid-template-columns: repeat(6, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-4FoqQ .framer-11n32zy-container { align-self: start; flex: none; height: auto; justify-self: start; position: sticky; top: 88px; width: fit-content; z-index: 1; }\",\".framer-4FoqQ .framer-fn9cx7 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; grid-column: span 4; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4FoqQ .framer-1w3gzu8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: none; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-4FoqQ .framer-1x7l2n7 { align-content: center; align-items: center; aspect-ratio: 1.6733668341708543 / 1; background-color: var(--token-c8d3a8f6-938f-44f5-81c4-757532a93d1b, rgba(251, 250, 249, 0.09)); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 597px); justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-4FoqQ .framer-1e7lul3-container { flex: 1 0 0px; height: 549px; max-width: 1000px; position: relative; width: 1px; }\",\".framer-4FoqQ .framer-15v2dry { align-self: start; flex: none; height: 128px; justify-self: start; opacity: 0; overflow: hidden; position: relative; width: 100%; }\",\".framer-4FoqQ .framer-1jhaik { background-color: var(--token-f2e915ce-7845-4005-8a1c-c42c34ab8882, #fbfaf9); display: grid; flex: none; gap: 48px 48px; grid-auto-rows: min-content; grid-template-columns: repeat(6, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: 702px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-4FoqQ .framer-2oxs7x { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4FoqQ .framer-1u2g19f-container { flex: none; height: auto; position: sticky; top: 88px; width: 214px; z-index: 1; }\",\".framer-4FoqQ .framer-1h92o1c { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; grid-column: span 4; height: min-content; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4FoqQ .framer-1iolhn2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4FoqQ .framer-y47315, .framer-4FoqQ .framer-x0c2sf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: none; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-4FoqQ .framer-1msb2o5, .framer-4FoqQ .framer-l9zzd9 { align-self: start; flex: none; height: 63px; justify-self: start; overflow: hidden; position: relative; width: 100%; }\",\".framer-4FoqQ .framer-1st1dc-container { align-self: start; flex: none; grid-column: span 5; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-4FoqQ .framer-ckrjvw, .framer-4FoqQ .framer-1l4c06h, .framer-4FoqQ .framer-93h8n, .framer-4FoqQ .framer-kyx0k5, .framer-4FoqQ .framer-86ko8r { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 315px; }\",\".framer-4FoqQ .framer-189p5be, .framer-4FoqQ .framer-1ju1pm9, .framer-4FoqQ .framer-8d4hrb, .framer-4FoqQ .framer-1cp00os, .framer-4FoqQ .framer-1xpz6qg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-4FoqQ .framer-f3b9zf-container, .framer-4FoqQ .framer-em2wnn-container, .framer-4FoqQ .framer-1ni40m1-container, .framer-4FoqQ .framer-4ni26o-container, .framer-4FoqQ .framer-1cw5f4m-container { flex: none; height: 494px; position: relative; width: 100%; }\",\".framer-4FoqQ .framer-1qj4dx8 { align-content: center; align-items: center; background-color: var(--token-f2e915ce-7845-4005-8a1c-c42c34ab8882, #fbfaf9); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 80px 32px 80px 32px; position: relative; width: 100%; z-index: 0; }\",\".framer-4FoqQ .framer-1gxmohn { background-color: var(--token-f2e915ce-7845-4005-8a1c-c42c34ab8882, #fbfaf9); display: grid; flex: none; gap: 24px 48px; grid-auto-rows: min-content; grid-template-columns: repeat(6, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: 203px; justify-content: start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-4FoqQ .framer-o365cj { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4FoqQ .framer-16gfnti { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; grid-column: span 4; height: min-content; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4FoqQ .framer-1gyghqf, .framer-4FoqQ .framer-1rtc3oo, .framer-4FoqQ .framer-1vrxj92, .framer-4FoqQ .framer-uao9kv { --border-bottom-width: 0px; --border-color: var(--token-34fe71d2-2535-453c-81df-b8861251b54f, #424242); --border-left-width: 1px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 180px; justify-content: space-between; overflow: visible; padding: 0px 16px 0px 16px; position: relative; width: 1px; }\",\".framer-4FoqQ .framer-daudhs, .framer-4FoqQ .framer-rtfmd0, .framer-4FoqQ .framer-7b1fxg, .framer-4FoqQ .framer-oxuqrv, .framer-4FoqQ .framer-1yvnzmx, .framer-4FoqQ .framer-u6fppl, .framer-4FoqQ .framer-1fwesx0, .framer-4FoqQ .framer-11d69vs { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-4FoqQ .framer-1xb2nfr { background-color: var(--token-f2e915ce-7845-4005-8a1c-c42c34ab8882, #fbfaf9); display: grid; flex: none; gap: 24px 48px; grid-auto-rows: min-content; grid-template-columns: repeat(6, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 88px; width: 100%; z-index: 1; }\",\".framer-4FoqQ .framer-1nk6k8x-container { align-self: start; flex: none; height: auto; justify-self: start; position: sticky; top: 88px; width: 100%; z-index: 1; }\",\".framer-4FoqQ .framer-11mt2w0 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; grid-column: span 4; height: min-content; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4FoqQ .framer-1xwt7u0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: none; flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-4FoqQ .framer-4m177b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4FoqQ .framer-klh6ot { --border-bottom-width: 0px; --border-color: var(--token-34fe71d2-2535-453c-81df-b8861251b54f, #424242); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-f2e915ce-7845-4005-8a1c-c42c34ab8882, #fbfaf9); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 24px 0px 24px 0px; position: sticky; top: 160px; width: 100%; z-index: 1; }\",\".framer-4FoqQ .framer-itw4dy { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 360px; overflow: visible; padding: 0px; position: sticky; top: 88px; width: 1px; z-index: 1; }\",\".framer-4FoqQ .framer-bp8f5m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-4FoqQ .framer-j0c9ds, .framer-4FoqQ .framer-vqj145, .framer-4FoqQ .framer-dc26o6, .framer-4FoqQ .framer-14s9cnm, .framer-4FoqQ .framer-bbrb5r, .framer-4FoqQ .framer-1dwsraf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-4FoqQ .framer-1tw8zgi-container { aspect-ratio: 1.4712918660287082 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 418px); position: relative; width: 1px; }\",\".framer-4FoqQ .framer-3g4o8v { --border-bottom-width: 0px; --border-color: var(--token-34fe71d2-2535-453c-81df-b8861251b54f, #424242); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-f2e915ce-7845-4005-8a1c-c42c34ab8882, #fbfaf9); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 0px 24px 0px; position: sticky; top: 235px; width: 100%; z-index: 1; }\",\".framer-4FoqQ .framer-1xxstpk, .framer-4FoqQ .framer-1yx7hyz { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 360px; overflow: hidden; padding: 0px 40px 0px 0px; position: relative; width: 1px; }\",\".framer-4FoqQ .framer-87f0j3-container, .framer-4FoqQ .framer-mfdprb-container { aspect-ratio: 1.5891472868217054 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 387px); position: relative; width: 1px; }\",\".framer-4FoqQ .framer-5injdz { --border-bottom-width: 0px; --border-color: var(--token-34fe71d2-2535-453c-81df-b8861251b54f, #424242); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-f2e915ce-7845-4005-8a1c-c42c34ab8882, #fbfaf9); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 0px 24px 0px; position: sticky; top: 310px; width: 100%; z-index: 1; }\",\".framer-4FoqQ .framer-1jgszky { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 160px; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 500px; width: 100%; z-index: 1; }\",\".framer-4FoqQ .framer-11cify5 { align-content: center; align-items: center; background-color: var(--token-f2e915ce-7845-4005-8a1c-c42c34ab8882, #fbfaf9); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 48px 32px 97px 32px; position: relative; width: 100%; z-index: 0; }\",\".framer-4FoqQ .framer-1lyq7iy, .framer-4FoqQ .framer-5y1syv { display: grid; flex: none; gap: 24px 48px; grid-auto-rows: min-content; grid-template-columns: repeat(6, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-4FoqQ .framer-13gd5rh-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: fit-content; }\",\".framer-4FoqQ .framer-15naj3z { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: none; align-self: start; flex: none; grid-column: span 3; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-4FoqQ .framer-11yejgy { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; grid-column: span 2; height: min-content; justify-content: center; justify-self: start; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4FoqQ .framer-14subjj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4FoqQ .framer-7oie5t-container, .framer-4FoqQ .framer-50eafx-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-4FoqQ .framer-ip60fv-container { bottom: 0px; flex: none; height: 58px; left: 0px; position: absolute; right: 0px; z-index: 1; }\",\".framer-4FoqQ .framer-uyd1cb { align-self: start; background-color: var(--token-c8d3a8f6-938f-44f5-81c4-757532a93d1b, rgba(20, 20, 20, 0.04)); flex: none; height: 20px; justify-self: start; opacity: 0; overflow: hidden; position: relative; width: 100%; }\",\".framer-4FoqQ .framer-xuj42n { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; align-self: start; flex: none; grid-column: span 2; height: auto; justify-self: start; max-width: 320px; position: relative; width: 100%; }\",\".framer-4FoqQ .framer-wgpq0o { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; grid-column: span 3; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4FoqQ .framer-t34n1g, .framer-4FoqQ .framer-1p0n0m4, .framer-4FoqQ .framer-b7cwsn, .framer-4FoqQ .framer-1i071sz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-4FoqQ .framer-1cllm7r, .framer-4FoqQ .framer-ndh6h, .framer-4FoqQ .framer-1lxbnm0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 40px; }\",\".framer-4FoqQ .framer-wv33mg { height: 30px; position: relative; width: 30px; }\",\".framer-4FoqQ .framer-1611si1 { height: 12px; left: 11px; position: absolute; top: 9px; width: 10px; }\",\".framer-4FoqQ .framer-1ttq1iz { height: 3px; left: 13px; position: absolute; top: 10px; width: 4px; }\",\".framer-4FoqQ .framer-79c4wr { height: 3px; left: 13px; position: absolute; top: 15px; width: 4px; }\",\".framer-4FoqQ .framer-59iilf { height: 6px; left: 12px; position: absolute; top: 0px; width: 6px; }\",\".framer-4FoqQ .framer-92qjr8 { height: 6px; left: 4px; position: absolute; top: 4px; width: 6px; }\",\".framer-4FoqQ .framer-1jsupeq { height: 6px; left: 20px; position: absolute; top: 4px; width: 6px; }\",\".framer-4FoqQ .framer-146cjw8 { height: 6px; left: 0px; position: absolute; top: 12px; width: 6px; }\",\".framer-4FoqQ .framer-jrlrlu { height: 6px; left: 4px; position: absolute; top: 20px; width: 6px; }\",\".framer-4FoqQ .framer-1aqnvgp { height: 6px; left: 20px; position: absolute; top: 20px; width: 6px; }\",\".framer-4FoqQ .framer-uor19w { height: 7px; left: 12px; position: absolute; top: 24px; width: 6px; }\",\".framer-4FoqQ .framer-11cogkc { height: 6px; left: 24px; position: absolute; top: 12px; width: 6px; }\",\".framer-4FoqQ .framer-c7w5z8, .framer-4FoqQ .framer-yufewe, .framer-4FoqQ .framer-1nvshvw, .framer-4FoqQ .framer-ln4c5e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-4FoqQ .framer-1gu6dfd, .framer-4FoqQ .framer-1qeyh9v, .framer-4FoqQ .framer-tn51ng { align-self: stretch; background-color: var(--token-c8d3a8f6-938f-44f5-81c4-757532a93d1b, #ffffff); flex: none; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-4FoqQ .framer-iipnf { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 40px; }\",\".framer-4FoqQ .framer-17dhdfr { --21h8s6: var(--token-34fe71d2-2535-453c-81df-b8861251b54f, #424242); flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 30px; }\",\".framer-4FoqQ .framer-7ma4qr { height: 29px; position: relative; width: 30px; }\",\".framer-4FoqQ .framer-1lgv3yt { height: 29px; left: 10px; position: absolute; top: 0px; width: 20px; }\",\".framer-4FoqQ .framer-vduash { height: 29px; left: 0px; position: absolute; top: 0px; width: 15px; }\",\".framer-4FoqQ .framer-1qkh6cv { height: 10px; left: 8px; position: absolute; top: 19px; width: 12px; }\",\".framer-4FoqQ .framer-1ii8pne { align-content: center; align-items: center; background-color: var(--token-d8c7d8d6-0c41-491f-8e74-abf48048dc29, #f2f1f0); border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; bottom: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: 24px; overflow: hidden; padding: 6px; position: fixed; right: 24px; will-change: var(--framer-will-change-override, transform); z-index: 4; }\",\".framer-4FoqQ .framer-dw5ndj-container, .framer-4FoqQ .framer-ldwnkz-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-4FoqQ[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-4FoqQ [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-4FoqQ[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-4FoqQ [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-4FoqQ[data-hide-scrollbars=\"true\"], .framer-4FoqQ [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }','.framer-4FoqQ[data-border=\"true\"]::after, .framer-4FoqQ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-4FoqQ.framer-1bb3z2t { width: 810px; } .framer-4FoqQ .framer-8sf8d9 { max-width: unset; order: 1; } .framer-4FoqQ .framer-rvvfh2 { gap: 12px; } .framer-4FoqQ .framer-1lcx4d9-container { height: 571px; order: 0; position: relative; right: unset; top: unset; transform: unset; width: 100%; } .framer-4FoqQ .framer-m7xjex, .framer-4FoqQ .framer-3gg86e, .framer-4FoqQ .framer-1sibdpm { padding: 80px 48px 80px 48px; } .framer-4FoqQ .framer-1971gs9, .framer-4FoqQ .framer-1xb2nfr, .framer-4FoqQ .framer-1lyq7iy, .framer-4FoqQ .framer-5y1syv { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-4FoqQ .framer-fn9cx7, .framer-4FoqQ .framer-1h92o1c, .framer-4FoqQ .framer-1st1dc-container, .framer-4FoqQ .framer-11mt2w0, .framer-4FoqQ .framer-15naj3z, .framer-4FoqQ .framer-xuj42n, .framer-4FoqQ .framer-wgpq0o { grid-column: span 1; } .framer-4FoqQ .framer-1x7l2n7 { aspect-ratio: unset; height: min-content; } .framer-4FoqQ .framer-1e7lul3-container { flex: none; height: 500px; width: 720px; } .framer-4FoqQ .framer-1jhaik { gap: 24px 48px; grid-template-columns: repeat(1, minmax(50px, 1fr)); height: min-content; } .framer-4FoqQ .framer-2oxs7x { justify-content: flex-start; min-height: 34px; } .framer-4FoqQ .framer-1gxmohn { grid-template-columns: repeat(1, minmax(50px, 1fr)); height: min-content; } .framer-4FoqQ .framer-16gfnti { align-content: unset; align-items: unset; display: grid; gap: 24px 24px; grid-auto-rows: minmax(0, 1fr); grid-column: span 1; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); } .framer-4FoqQ .framer-1gyghqf, .framer-4FoqQ .framer-1rtc3oo, .framer-4FoqQ .framer-1vrxj92, .framer-4FoqQ .framer-uao9kv { --border-left-width: 0px; --border-top-width: 1px; align-self: start; flex: none; flex-direction: row; gap: 40px; justify-content: flex-start; justify-self: start; padding: 24px 6px 24px 0px; width: 100%; } .framer-4FoqQ .framer-daudhs, .framer-4FoqQ .framer-7b1fxg, .framer-4FoqQ .framer-1yvnzmx, .framer-4FoqQ .framer-1fwesx0 { flex: 1 0 0px; width: 1px; } .framer-4FoqQ .framer-rtfmd0, .framer-4FoqQ .framer-oxuqrv, .framer-4FoqQ .framer-u6fppl, .framer-4FoqQ .framer-11d69vs { white-space: pre; width: auto; } .framer-4FoqQ .framer-klh6ot, .framer-4FoqQ .framer-3g4o8v, .framer-4FoqQ .framer-5injdz, .framer-4FoqQ .framer-1jgszky { flex-direction: column; } .framer-4FoqQ .framer-itw4dy { flex: none; position: relative; top: unset; width: 100%; } .framer-4FoqQ .framer-1tw8zgi-container { flex: none; height: var(--framer-aspect-ratio-supported, 136px); width: 100%; } .framer-4FoqQ .framer-1xxstpk, .framer-4FoqQ .framer-1yx7hyz { flex: none; width: 100%; } .framer-4FoqQ .framer-87f0j3-container, .framer-4FoqQ .framer-mfdprb-container { flex: none; height: var(--framer-aspect-ratio-supported, 126px); width: 100%; } .framer-4FoqQ .framer-11yejgy { gap: 12px; grid-column: span 1; } .framer-4FoqQ .framer-iipnf { height: var(--framer-aspect-ratio-supported, 36px); } .framer-4FoqQ .framer-17dhdfr { height: var(--framer-aspect-ratio-supported, 32px); }}\",\"@media (max-width: 809px) { .framer-4FoqQ.framer-1bb3z2t { width: 420px; } .framer-4FoqQ .framer-b4t58h, .framer-4FoqQ .framer-1qj4dx8 { padding: 24px; } .framer-4FoqQ .framer-1dd3um5 { order: 0; padding: 64px 0px 0px 0px; } .framer-4FoqQ .framer-8sf8d9 { gap: 24px; order: 1; } .framer-4FoqQ .framer-rvvfh2 { gap: 12px; } .framer-4FoqQ .framer-z7t08h { height: 64px; min-width: 273px; } .framer-4FoqQ .framer-1lcx4d9-container { flex: 1 0 0px; height: 1px; order: 0; position: relative; right: unset; top: unset; transform: unset; width: 100%; } .framer-4FoqQ .framer-m7xjex, .framer-4FoqQ .framer-1sibdpm { padding: 48px 24px 48px 24px; } .framer-4FoqQ .framer-1971gs9, .framer-4FoqQ .framer-1lyq7iy, .framer-4FoqQ .framer-5y1syv { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-4FoqQ .framer-fn9cx7, .framer-4FoqQ .framer-11mt2w0, .framer-4FoqQ .framer-15naj3z { grid-column: span 1; } .framer-4FoqQ .framer-1x7l2n7 { aspect-ratio: unset; height: min-content; min-height: 389px; padding: 12px; } .framer-4FoqQ .framer-1e7lul3-container { flex: none; height: 500px; left: calc(50.00000000000002% - min(1000px, 720px) / 2); position: absolute; top: calc(50.128534704370196% - 500px / 2); width: 720px; z-index: 1; } .framer-4FoqQ .framer-3gg86e { padding: 48px 4px 48px 0px; } .framer-4FoqQ .framer-1jhaik, .framer-4FoqQ .framer-1gxmohn { gap: 24px 24px; grid-template-columns: repeat(1, minmax(50px, 1fr)); height: min-content; } .framer-4FoqQ .framer-2oxs7x { min-height: 34px; order: 0; padding: 0px 24px 0px 24px; } .framer-4FoqQ .framer-1h92o1c { grid-column: span 1; order: 1; } .framer-4FoqQ .framer-1iolhn2 { flex-direction: column; padding: 0px 24px 0px 24px; } .framer-4FoqQ .framer-y47315, .framer-4FoqQ .framer-x0c2sf, .framer-4FoqQ .framer-1xxstpk, .framer-4FoqQ .framer-1yx7hyz { flex: none; width: 100%; } .framer-4FoqQ .framer-1st1dc-container { grid-column: span 1; order: 2; } .framer-4FoqQ .framer-16gfnti { flex-direction: column; grid-column: span 1; } .framer-4FoqQ .framer-1gyghqf { --border-left-width: 0px; --border-top-width: 1px; background-color: var(--token-f2e915ce-7845-4005-8a1c-c42c34ab8882, #fbfaf9); flex: none; flex-direction: row; gap: 24px; height: min-content; justify-content: flex-start; padding: 24px 0px 24px 0px; position: sticky; top: 88px; width: 100%; z-index: 1; } .framer-4FoqQ .framer-daudhs, .framer-4FoqQ .framer-7b1fxg, .framer-4FoqQ .framer-1yvnzmx, .framer-4FoqQ .framer-1fwesx0 { --framer-text-wrap-override: balance; flex: 1 0 0px; width: 1px; } .framer-4FoqQ .framer-rtfmd0, .framer-4FoqQ .framer-oxuqrv, .framer-4FoqQ .framer-u6fppl, .framer-4FoqQ .framer-11d69vs { white-space: pre; width: auto; } .framer-4FoqQ .framer-1rtc3oo { --border-left-width: 0px; --border-top-width: 1px; background-color: var(--token-f2e915ce-7845-4005-8a1c-c42c34ab8882, #fbfaf9); flex: none; flex-direction: row; gap: 24px; height: min-content; justify-content: flex-start; padding: 24px 0px 24px 0px; position: sticky; top: 100px; width: 100%; z-index: 1; } .framer-4FoqQ .framer-1vrxj92 { --border-left-width: 0px; --border-top-width: 1px; background-color: var(--token-f2e915ce-7845-4005-8a1c-c42c34ab8882, #fbfaf9); flex: none; flex-direction: row; gap: 24px; height: min-content; justify-content: flex-start; padding: 24px 0px 24px 0px; position: sticky; top: 112px; width: 100%; z-index: 1; } .framer-4FoqQ .framer-uao9kv { --border-left-width: 0px; --border-top-width: 1px; background-color: var(--token-f2e915ce-7845-4005-8a1c-c42c34ab8882, #fbfaf9); flex: none; flex-direction: row; gap: 24px; height: min-content; justify-content: flex-start; padding: 24px 0px 24px 0px; position: sticky; top: 124px; width: 100%; z-index: 1; } .framer-4FoqQ .framer-1xb2nfr { gap: 24px 24px; grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-4FoqQ .framer-klh6ot, .framer-4FoqQ .framer-3g4o8v { flex-direction: column; position: relative; top: unset; } .framer-4FoqQ .framer-itw4dy { flex: none; position: relative; top: unset; width: 100%; } .framer-4FoqQ .framer-1tw8zgi-container, .framer-4FoqQ .framer-87f0j3-container, .framer-4FoqQ .framer-mfdprb-container { aspect-ratio: unset; flex: none; height: 360px; width: 100%; } .framer-4FoqQ .framer-5injdz { flex-direction: column; overflow: visible; position: relative; top: unset; } .framer-4FoqQ .framer-1jgszky { flex-direction: column; height: 78px; overflow: visible; } .framer-4FoqQ .framer-11cify5 { gap: 24px; padding: 48px 24px 72px 24px; } .framer-4FoqQ .framer-11yejgy { gap: 12px; grid-column: span 1; } .framer-4FoqQ .framer-ip60fv-container { height: 47px; } .framer-4FoqQ .framer-xuj42n { grid-column: span 1; max-width: unset; } .framer-4FoqQ .framer-wgpq0o { flex-wrap: wrap; gap: 24px 24px; grid-column: span 1; } .framer-4FoqQ .framer-t34n1g, .framer-4FoqQ .framer-1p0n0m4, .framer-4FoqQ .framer-b7cwsn, .framer-4FoqQ .framer-1i071sz { min-width: 133px; } .framer-4FoqQ .framer-iipnf { height: var(--framer-aspect-ratio-supported, 36px); } .framer-4FoqQ .framer-17dhdfr { height: var(--framer-aspect-ratio-supported, 32px); }}\",\"@media (min-width: 1200px) and (max-width: 1609px) { .framer-4FoqQ.framer-1bb3z2t { width: 1200px; } .framer-4FoqQ .framer-1971gs9, .framer-4FoqQ .framer-1xb2nfr { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-4FoqQ .framer-fn9cx7 { grid-column: unset; } .framer-4FoqQ .framer-1x7l2n7 { aspect-ratio: unset; height: min-content; } .framer-4FoqQ .framer-1e7lul3-container { height: 582px; } .framer-4FoqQ .framer-1jhaik { grid-template-columns: repeat(4, minmax(50px, 1fr)); height: min-content; } .framer-4FoqQ .framer-2oxs7x { min-height: 34px; } .framer-4FoqQ .framer-1st1dc-container, .framer-4FoqQ .framer-15naj3z, .framer-4FoqQ .framer-wgpq0o { grid-column: span 4; } .framer-4FoqQ .framer-1gxmohn { height: min-content; } .framer-4FoqQ .framer-16gfnti { grid-column: 1 / -1; } .framer-4FoqQ .framer-uao9kv { align-self: stretch; height: auto; } .framer-4FoqQ .framer-11mt2w0 { grid-column: span 1; } .framer-4FoqQ .framer-itw4dy { position: relative; top: unset; } .framer-4FoqQ .framer-1tw8zgi-container { height: var(--framer-aspect-ratio-supported, 495px); } .framer-4FoqQ .framer-87f0j3-container, .framer-4FoqQ .framer-mfdprb-container { height: var(--framer-aspect-ratio-supported, 458px); } .framer-4FoqQ .framer-xuj42n { max-width: unset; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6007\n * @framerIntrinsicWidth 1610\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ITQnyx1dL\":{\"layout\":[\"fixed\",\"auto\"]},\"Xzj0LLAzU\":{\"layout\":[\"fixed\",\"auto\"]},\"rl0ty3qm9\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"lqnx7rHdt\":{\"pattern\":\":lqnx7rHdt\",\"name\":\"cta\"},\"FnjI__Hdg\":{\"pattern\":\":FnjI__Hdg\",\"name\":\"cta\"}}\n * @framerResponsiveScreen\n */const FramerHKZVj5oAY=withCSS(Component,css,\"framer-4FoqQ\");export default FramerHKZVj5oAY;FramerHKZVj5oAY.displayName=\"Launch / Home 5\";FramerHKZVj5oAY.defaultProps={height:6007,width:1610};addFonts(FramerHKZVj5oAY,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"NB International Pro CG Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/cjcih20id6P8j8MGztr3DKX6w5E.woff2\"},{family:\"NB International Pro CG Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/prcSA2Vy2CMYx9Tjuf6VkmrKGAw.woff2\"}]},...NavLinkFonts,...VideoFonts,...TextCycle2Fonts,...AnimatedDemoB2Fonts,...SectionKickerFonts,...AIWorkerFonts,...CarouselFonts,...OrchestrationVisualFonts,...AutonomyFonts,...EscalationFonts,...BookDemoCTAFonts,...ButtonFonts,...ShimmerGridFonts,...IconFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHKZVj5oAY\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ITQnyx1dL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Xzj0LLAzU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rl0ty3qm9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"lqnx7rHdt\\\":{\\\"pattern\\\":\\\":lqnx7rHdt\\\",\\\"name\\\":\\\"cta\\\"},\\\"FnjI__Hdg\\\":{\\\"pattern\\\":\\\":FnjI__Hdg\\\",\\\"name\\\":\\\"cta\\\"}}\",\"framerIntrinsicHeight\":\"6007\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1610\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "o1DAA2H,IAAMA,GAAM,CAAC,EAAEC,EAAEC,IAAI,KAAK,IAAI,KAAK,IAAIA,EAAE,CAAC,EAAED,CAAC,ECIrK,SAASE,GAAc,CAACC,EAAMC,CAAK,EAAE,CAAC,OAAOD,GAAO,IAAIA,IAAQC,EAAM,KAAK,EAAG,CAG9E,SAASC,IAAY,CAAC,GAAK,CAACC,EAAcC,CAAgB,EAAEC,GAAS,EAAK,EAAE,OAAAC,GAAgB,IAAI,CAACF,EAAiBG,GAAO,WAAW,gBAAgB,EAAE,OAAO,CAAE,EAAE,CAAC,CAAC,EAASJ,CAAc,CAK1L,SAASK,GAAWC,EAASC,EAAO,CAAC,YAAAC,EAAY,UAAAC,EAAU,UAAAC,CAAS,EAAEC,EAAW,CAAIF,EAAU,SAASH,IAAWC,GAAQE,EAAU,QAAQ,GAAMG,GAAQJ,EAAY,EAAEG,CAAU,EAAED,EAAU,QAAQ,aAAa,WAAW,EAAE,GAAW,CAACD,EAAU,SAASH,IAAWC,IAAQE,EAAU,QAAQ,GAAKG,GAAQJ,EAAY,EAAEG,CAAU,EAAED,EAAU,QAAQ,gBAAgB,UAAU,EAAG,CAAC,SAASG,GAAOC,EAAiBC,EAAa,CAAC,IAAMN,EAAUO,EAAOF,CAAgB,EAAQN,EAAYS,GAAeR,EAAU,QAAQ,EAAE,CAAC,EAAQS,EAAYC,GAAaX,EAAY,CAAC,EAAE,CAAC,EAAE,CAACO,GAAc,EAAE,CAAC,CAAC,EAAQK,EAAcD,GAAaX,EAAYa,GAAG,EAAEA,CAAC,EAAQX,EAAUM,EAAO,IAAI,EAKxpBM,EAAcH,GAAaC,EAAcC,GAAGA,EAAE,GAAG,OAAO,MAAM,EAG9DE,EAAOJ,GAAaG,EAAcD,GAAGA,IAAI,OAAO,UAAU,SAAS,EAAQG,EAAY,CAAC,GAAGC,GAAiB,QAAQL,EAAc,cAAAE,EAAc,OAAAC,CAAM,EAAE,MAAM,CAAC,UAAAd,EAAU,YAAAS,EAAY,YAAAV,EAAY,YAAAgB,EAAY,UAAAd,CAAS,CAAE,CAAC,SAASgB,GAAe,CAAC,QAAAC,CAAO,EAAE,CAACA,EAAQ,aAAa,cAAc,EAAK,CAAE,CAAC,SAASC,GAAgBC,EAAUC,EAAKC,EAAWC,EAAoBC,EAAaC,EAAYC,EAAa,CAACC,GAAU,IAAI,CAAC,GAAG,CAACP,EAAU,QAAQ,OAIlT,IAAMQ,EAAWC,GAJ+TC,GAAM,CAACR,EAAW,QAAQQ,EAAKT,CAAI,EAItfS,EAAKT,CAAI,EAAE,UAAUG,EAAa,UAASA,EAAa,QAAQ,QAAWD,EAAoBO,EAAKT,CAAI,EAAE,OAAO,EAAEI,EAAY,CAAE,EAA2C,CAAC,UAAUL,EAAU,QAAQ,KAAAC,CAAI,CAAC,EAAQU,EAAWC,GAAOZ,EAAU,QAAQ,IAAI,CAACM,EAAa,EAAED,EAAY,CAAE,CAAC,EAAE,MAAM,IAAI,CAACG,EAAW,EAAEG,EAAW,CAAE,CAAE,EAAE,CAACN,EAAYC,CAAY,CAAC,CAAE,CASpW,SAARO,GAA0B,CAAC,MAAAC,EAAM,IAAAC,EAAI,KAAAd,EAAK,MAAAe,EAAM,aAAAC,EAAa,WAAAC,EAAW,YAAAC,EAAY,WAAAC,EAAW,eAAAC,EAAe,UAAAC,EAAU,aAAAC,EAAa,cAAAC,EAAc,GAAGC,CAAK,EAAE,CACvK,IAAMC,EAAcZ,EAAM,OAAO,OAAO,EAAQa,EAASC,GAAS,MAAMF,CAAa,EAAQG,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAAaC,GAAQC,GAAWP,CAAK,EAAQQ,EAAUhC,EAAK,IAAI,IAAS,CAAC,YAAAiC,EAAY,UAAAC,EAAU,UAAAC,EAAU,eAAAC,EAAe,UAAAC,CAAS,EAAEpB,EAAgB,CAAC,KAAAqB,EAAK,SAAAC,EAAS,MAAAC,CAAK,EAAErB,EAAgB,CAAC,UAAAsB,EAAU,WAAAC,EAAW,aAAAC,EAAa,WAAAC,GAAW,YAAAC,EAAY,WAAAC,CAAU,EAAE9B,EAAkB,CAAC,cAAA+B,EAAc,iBAAAC,GAAiB,QAAAC,GAAQ,UAAAC,GAAU,WAAAC,GAAW,YAAAC,GAAY,QAAAC,GAAQ,SAAAC,EAAS,eAAAC,GAAe,kBAAAC,GAAkB,YAAAC,GAAY,SAAAC,EAAQ,EAAEtC,EAAoB,CAAC,kBAAAuC,EAAkB,UAAAC,EAAU,YAAAC,GAAY,UAAAC,GAAU,UAAAC,GAAU,WAAAC,GAAW,aAAAC,EAAY,EAAE/C,EAE5oBjB,GAAWf,EAAO,MAAS,EAG3BiB,GAAajB,EAAO,MAAS,EAI7BgF,EAAc/E,GAAe,CAAC,EAAQe,GAAoBiE,GAAW,CAACD,EAAc,IAAI/D,GAAa,UAAU,OAAUA,GAAa,QAAQgE,CAAS,CAAE,EAGzJjG,GAAcD,GAAW,EAEzBmG,GAAMrF,GAAO,GAAMsD,CAAS,EAAQgC,GAAItF,GAAO,GAAKsD,CAAS,EAAQiC,GAAenF,GAAegD,EAAU,EAAE,EAAQoC,GAAalF,GAAaiF,GAAe/E,GAAG,IAAIA,CAAC,EAAQiF,GAAUrF,GAAe+C,CAAS,EAAQuC,GAAepF,GAAa,CAACiF,GAAeE,EAAS,EAAE1G,EAAa,EAAQ4G,GAAarF,GAAaoF,GAAelF,GAAG,IAAIA,CAAC,EAAQoF,GAAUxF,GAAea,EAAK,QAAQ,QAAQ,EAAQ4E,GAAKvF,GAAa,CAACsF,GAAUP,GAAM,YAAYE,GAAeG,GAAeJ,GAAI,YAAYE,GAAaG,EAAY,EAAEG,GAAe,sBAAsBA,EAAO,CAAC,CAAC,kBAAkBA,EAAO,CAAC,CAAC,KAAKA,EAAO,CAAC,CAAC,sBAAsBA,EAAO,CAAC,CAAC,uBAAuBA,EAAO,CAAC,CAAC,mBAAmBA,EAAO,CAAC,CAAC,KAAKA,EAAO,CAAC,CAAC,IAAM,EAAQC,GAAY5F,EAAO,IAAI,EAEnvB,CAAC6F,GAASC,EAAW,EAAE5G,GAASwD,EAAS,EAAE,CAAC,EAE3CqD,GAAU,CAAC,gBAAgB1C,EAAS,WAAW,CAAC,EAAQ2C,GAAW,CAAC,EAAKnE,IAAQ,YAAcf,GAAMkF,GAAW,OAAO,OAAOD,GAAU,OAAO,SAAaC,GAAW,MAAM,OAAOD,GAAU,MAAM,SAAazC,IAAOyC,GAAU,eAAe,UAAaxC,IAAY,WAAWwC,GAAU,MAAM,eAAevC,GAAY,CAAC,MAAMwC,GAAW,MAAM,QAAgBzC,IAAY,YAAWwC,GAAU,MAAM,QAAQ,IAAItC,CAAY,OAAO7B,CAAG,QAAQA,EAAI6B,CAAY,MAAMuC,GAAW,MAAM,QAAWtC,KAAa,WAAWqC,GAAU,OAAO,eAAepC,GAAa,CAAC,MAAMqC,GAAW,OAAO,QAAgBtC,KAAa,SAAQqC,GAAU,OAAO,QAAQ,IAAInC,CAAU,OAAOhC,CAAG,QAAQA,EAAIgC,CAAU,MAAMoC,GAAW,OAAO,QAAQ,IAAMC,GAAevD,EAAS,SAAS,OAAawD,GAAe,CAAC,GAAGC,GAAmB,QAAAvD,EAAO,EAAQwD,GAAc,CAAC,GAAGC,GAAkB,IAAAzE,EAAI,WAAWC,EAAM,cAAcf,EAAK,MAAM,SAAS,UAAUA,EAAKmF,GAAe,SAAS,UAAUnF,EAAK,SAASmF,GAAe,eAAe7C,EAAK,GAAGN,CAAS,aAAa,OAAU,wBAAwB,QAAQ,gBAAgBC,EAAY2C,GAAK,OAAU,UAAU3C,EAAY2C,GAAK,OAAU,aAAAtD,CAAY,EAAQkE,GAAa,CAAE,uBAAwB,UAAU,EAAKnE,IAAWmE,GAAa,YAAY,EAAEnE,GAAW,IAAMoE,GAAS,CAAC,EAAgG,GAA3F1E,IAAQ,YAAW0E,GAAS,WAAW,EAAE,QAAQA,GAAS,sBAAsB,EAAE,SAAY,CAAC7D,EAAS,CAAC,IAAM8D,EAAUxG,EAAO,CAAC,CAAC,EAAEY,GAAgBgF,GAAY9C,EAAU/B,GAAWC,GAAoBC,GAAawF,GAAY,IAAI,CAAC,GAAG,CAAC1F,GAAW,QAAQ,OAAO,GAAK,CAAC,aAAA2F,EAAa,gBAAAC,GAAgB,aAAAC,EAAY,EAAE7F,GAAW,QAAc8F,GAAQ7B,EAAc,IAAI,EAAE,GAAG,CAAC0B,GAAc,CAACC,GAAgB,OAAO,GAAGD,EAAaC,GAAgB,CAACtH,GAAWwH,GAAQ,EAAE3B,GAAMhC,CAAc,EAAE7D,GAAWwH,GAAQD,GAAazB,GAAIjC,CAAc,EAAE,QAAQ4D,GAAE,EAAEA,GAAEN,EAAU,QAAQ,OAAOM,KAAI,CAAC,GAAK,CAAC,QAAAnG,GAAQ,MAAAuE,GAAM,IAAAC,EAAG,EAAEqB,EAAU,QAAQM,EAAC,EAAK3B,GAAI0B,IAAS3B,GAAM2B,GAAQF,GAAiBhG,GAAQ,aAAa,cAAc,EAAI,EAAQA,GAAQ,aAAa,cAAc,EAAK,CAAG,CAAC,MAAMtB,GAAW,EAAE,EAAE6F,GAAMhC,CAAc,EAAE7D,GAAW,EAAE,EAAE8F,GAAIjC,CAAc,EAAEsD,EAAU,QAAQ,QAAQ9F,EAAc,EAOvoE,IAAIqG,GAAY,KAAK,KAAKL,EAAaC,EAAe,EAAM,MAAMI,EAAW,IAC7FA,GAAYvE,EAAS,MAAIuE,GAAYvE,GAAYuE,KAAclB,IAASC,GAAYiB,EAAW,EAAG,EAAE,CAAClB,EAAQ,CAAC,EAAEY,GAAY,IAAI,CAAKb,GAAY,UAAeY,EAAU,QAAQ,MAAM,KAAKZ,GAAY,QAAQ,QAAQ,EAAE,IAAIjF,GAAiBG,EAAK,CAAC,QAAAH,EAAQ,MAAMA,EAAQ,WAAW,IAAIA,EAAQ,WAAWA,EAAQ,WAAW,EAAE,CAAC,QAAAA,EAAQ,MAAMA,EAAQ,UAAU,IAAIA,EAAQ,UAAUA,EAAQ,YAAY,CAAG,EAAE,EAAE,CAAC,CAAC,CAAC,CAAE,CAInZ+B,IAAUtB,GAAU,IAAI,CAACkE,GAAU,IAAItC,CAAS,CAAE,EAAE,CAACA,CAAS,CAAC,EAAE5B,GAAU,IAAI,CAACgE,GAAe,IAAInC,EAAU,EAAE,CAAE,EAAE,CAACA,CAAS,CAAC,EAAE7B,GAAU,IAAI,CAACqE,GAAU,IAAI3E,EAAK,QAAQ,QAAQ,CAAE,EAAE,CAACA,CAAI,CAAC,GAmC/L,IAAMkG,GAAgBC,GAAiB,EAAQC,GAAKC,GAAU,CAAClG,GAAa,QAAQkG,EAAS,IAAMC,EAAQtG,EAAK,CAAC,KAAKqG,CAAQ,EAAE,CAAC,IAAIA,CAAQ,EAAEvB,GAAY,QAAQ,SAAS,CAAC,GAAGwB,EAAQ,SAASJ,GAAgB,OAAO,QAAQ,CAAC,CAAE,EAAQK,GAAS,CAACC,EAAKC,EAAW,IAAI,CAAC,GAAG,CAACxG,GAAW,QAAQ,OAAO,GAAK,CAAC,aAAA6F,EAAY,EAAE7F,GAAW,QAAcyG,GAASZ,IAAcf,GAAS,GAAGqB,GAAKI,EAAKE,GAASD,EAAWC,EAAQ,CAAE,EAAQC,GAAUC,GAAO,IAAI,CAAC,GAAG,CAAC3G,GAAW,QAAQ,OAAO,GAAK,CAAC,gBAAA4F,EAAgB,aAAAC,EAAY,EAAE7F,GAAW,QAAc8F,GAAQ7B,EAAc,IAAI,EAAQ2C,GAAWf,GAAaf,GAAe+B,GAAYC,GAAM,EAAEhC,GAAS,EAAE,KAAK,MAAMgB,GAAQc,EAAU,CAAC,EAAMJ,GAAW,EAAKnE,IAAOC,IAAW,SAASA,IAAW,QAAQqE,GAAO,IAAEH,GAAW,IACzvBF,GAASO,GAAYF,EAAMH,EAAU,CAAE,EAErC,GAAG/E,IAAW,EAAG,OAAoBsF,EAAKC,GAAY,CAAC,CAAC,EAAG,IAAMC,GAAK,CAAC,EAAQC,GAAc,CAAC,EAAE,GAAGpC,GAAS,GAAG/B,IAAkB,CAACD,EAAc,CAAC,QAAQiD,EAAE,EAAEA,EAAEjB,GAASiB,IAAI,CAAC,IAAMoB,EAAWxF,GAAU,CAACoE,GAAG,GAAMkB,GAAK,KAAkBF,EAAKK,GAAI,CAAC,SAAS,CAAC,GAAGC,GAAS,MAAMrE,GAAQ,OAAOA,GAAQ,gBAAgBK,CAAQ,EAAE,YAAY3D,GAAiB,WAAWyH,EAAW,gBAAgB5D,GAAkB,QAAQC,GAAY,QAAQ,IAAI8D,GAAgB,IAAIhB,GAASP,CAAC,CAAC,EAAE,cAAc9B,EAAc,WAAWjE,GAAW,MAAM8E,GAAS,MAAMiB,EAAE,IAAI3C,GAAQ,QAAQD,GAAY,KAAKpD,CAAI,CAAC,CAAC,CAAE,CAAI0D,KAAUyD,GAAc,eAAeA,GAAc,qBAAqB,QAAQzD,EAAQ,MAAO,CAAC,OAAoB8D,EAAM,UAAU,CAAC,MAAMpC,GAAe,GAAGI,GAAa,SAAS,CAAcwB,EAAKS,EAAO,GAAG,CAAC,IAAI3C,GAAY,MAAMQ,GAAc,UAAU,mBAAmB,sBAAsBvC,EAAc,cAAc,QAAQ,YAAY,SAAS,QAAQ,IAAI5C,GAAa,QAAQ,OAAU,SAASwB,GAAS,IAAIF,EAAc,CAACiG,EAAMC,IAAqBX,EAAK,KAAK,CAAC,MAAM/B,GAAU,GAAGQ,GAAS,aAAa,GAAGkC,EAAM,CAAC,OAAOjG,CAAQ,GAAG,SAAsBkG,GAAaF,EAAM,CAAC,GAAGA,EAAM,MAAM,MAAM,CAAC,GAAGA,EAAM,OAAO,MAAM,GAAGxC,EAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesC,EAAM,WAAW,CAAC,MAAM,CAAC,GAAGK,GAAe,QAAQ5D,GAAa,QAAQ,OAAO,cAAcjE,EAAK,MAAM,QAAQ,EAAE,aAAa,+BAA+B,UAAU,4BAA4B,2BAA2B2D,EAAkB,SAAS,CAACzF,IAA4B8I,EAAKS,EAAO,OAAO,CAAC,IAAIrD,GAAM,UAAU,KAAK,SAAS,MAAM,CAAC,GAAGA,GAAM,YAAY,gBAAgBN,GAAU,MAAMF,EAAU,OAAOA,EAAU,aAAaC,GAAY,OAAQ7D,EAAQ,EAAH,GAAK,QAAQ2D,EAAkB,QAAQ,MAAM,EAAE,QAAQgD,GAAU,EAAE,EAAE,aAAa,WAAW,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBK,EAAK,MAAM,CAAC,SAAS,QAAQ,IAAI,GAAG,MAAMpD,EAAU,OAAOA,EAAU,IAAIG,IAAW,qEAAqE,CAAC,CAAC,CAAC,EAAE7F,IAA4B8I,EAAKS,EAAO,OAAO,CAAC,IAAIpD,GAAI,UAAU,KAAK,SAAS,MAAM,CAAC,GAAGA,GAAI,YAAY,gBAAgBP,GAAU,MAAMF,EAAU,OAAOA,EAAU,aAAaC,GAAY,OAAQ7D,EAAQ,EAAH,GAAK,QAAQ2D,EAAkB,QAAQ,MAAM,EAAE,QAAQgD,GAAU,CAAC,EAAE,aAAa,OAAO,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBK,EAAK,MAAM,CAAC,SAAS,QAAQ,IAAI,GAAG,MAAMpD,EAAU,OAAOA,EAAU,IAAII,IAAY,qEAAqE,CAAC,CAAC,CAAC,EAAEkD,GAAK,OAAO,EAAeF,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGc,GAAmB,KAAK9H,EAAK,MAAMkD,GAAU,IAAKlD,EAAW,QAAN,MAAc,UAAUA,EAAK,mBAAmB,mBAAmB,cAAcA,EAAK,MAAM,SAAS,OAAOA,EAAKkD,GAAU,QAAQ,aAAaC,GAAW,gBAAgBI,GAAe,GAAG4D,EAAa,EAAE,SAASD,EAAI,CAAC,EAAE,IAAI,CAAC,CAAC,EAAeF,EAAKe,GAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAyBnH,GAAS,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,eAAe,CAAC,cAAc,GAAM,iBAAiB,EAAK,EAAE,aAAa,CAAC,UAAU,OAAO,YAAY,EAAE,aAAa,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,CAAC,EAAE,aAAa,CAAC,EAAyBoH,GAAoBpH,GAAS,CAAC,MAAM,CAAC,KAAKqH,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,KAAK,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,GAAK,EAAK,EAAE,YAAY,CAAC,uBAAuB,oBAAoB,EAAE,wBAAwB,EAAI,EAAE,MAAM,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,KAAK,CAAC,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,MAAM,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,GAAGC,GAAe,aAAa,CAAC,KAAKD,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,OAAO,UAAU,SAAS,EAAE,aAAa,CAAC,OAAO,UAAU,SAAS,EAAE,aAAa,MAAM,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,EAAE,OAAOzG,GAAOA,EAAM,YAAY,SAAS,EAAE,aAAa,CAAC,KAAKyG,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,eAAe,GAAK,OAAOzG,GAAOA,EAAM,YAAY,SAAS,EAAE,WAAW,CAAC,KAAKyG,EAAY,KAAK,MAAM,SAAS,QAAQ,CAAC,OAAO,UAAU,MAAM,EAAE,aAAa,CAAC,OAAO,UAAU,MAAM,EAAE,aAAa,MAAM,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,EAAE,OAAOzG,GAAOA,EAAM,aAAa,SAAS,EAAE,WAAW,CAAC,KAAKyG,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,eAAe,GAAK,OAAOzG,GAAOA,EAAM,aAAa,MAAM,CAAC,CAAC,EAAE,WAAW,CAAC,KAAKyG,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,KAAK,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,EAAE,SAAS,CAAC,KAAKA,EAAY,KAAK,MAAM,OAAO,QAAQ,CAAC,QAAQ,SAAS,KAAK,EAAE,aAAa,CAAC,OAAO,SAAS,OAAO,EAAE,aAAa,SAAS,OAAOzG,GAAO,CAACA,EAAM,IAAI,EAAE,MAAM,CAAC,KAAKyG,EAAY,QAAQ,MAAM,QAAQ,aAAa,GAAM,OAAOzG,GAAO,CAACA,EAAM,IAAI,CAAC,CAAC,EAAE,WAAW,CAAC,KAAKyG,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,EAAK,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOzG,GAAO,CAACA,EAAM,WAAW,EAAE,UAAU,CAAC,KAAKyG,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOzG,GAAO,CAACA,EAAM,WAAW,EAAE,UAAU,CAAC,KAAKyG,EAAY,OAAO,MAAM,UAAU,OAAOzG,GAAO,CAACA,EAAM,YAAY,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,CAAC,EAAE,eAAe,CAAC,KAAKyG,EAAY,WAAW,MAAM,aAAa,OAAOzG,GAAO,CAACA,EAAM,WAAW,CAAC,CAAC,EAAE,eAAe,CAAC,KAAKyG,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,cAAc,CAAC,KAAKA,EAAY,QAAQ,MAAM,aAAa,aAAa,EAAK,EAAE,iBAAiB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,GAAM,OAAOzG,GAAOA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAKyG,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOzG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,UAAU,CAAC,KAAKyG,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOzG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAKyG,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOzG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAKyG,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOzG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAKyG,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,OAAOzG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,eAAe,CAAC,KAAKyG,EAAY,MAAM,MAAM,WAAW,aAAa,kBAAkB,OAAOzG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,WAAW,CAAC,KAAKyG,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAOzG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAKyG,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,GAAG,KAAK,GAAG,eAAe,GAAK,OAAOzG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,kBAAkB,CAAC,KAAKyG,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,OAAOzG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAKyG,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,KAAK,EAAE,OAAOzG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKyG,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,kBAAkB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,MAAM,MAAM,OAAO,aAAa,kBAAkB,OAAOzG,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAKyG,EAAY,MAAM,MAAM,WAAW,OAAOzG,GAAO,CAACA,EAAM,iBAAiB,EAAE,WAAW,CAAC,KAAKyG,EAAY,MAAM,MAAM,OAAO,OAAOzG,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAKyG,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,GAAG,OAAOzG,GAAO,CAACA,EAAM,iBAAiB,EAAE,YAAY,CAAC,KAAKyG,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAOzG,GAAO,CAACA,EAAM,iBAAiB,EAAE,aAAa,CAAC,KAAKyG,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOzG,GAAO,CAACA,EAAM,iBAAiB,CAAC,CAAC,EAAE,UAAU,CAAC,KAAKyG,EAAY,OAAO,MAAM,aAAa,YAAY,WAAW,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,CAAC,CAAC,CAAC,EAAE,SAASZ,GAAI,CAAC,cAAAnD,EAAc,WAAAjE,EAAW,WAAAmH,EAAW,gBAAAe,EAAgB,QAAQC,EAAkB,MAAAC,EAAM,MAAAV,EAAM,SAAAL,EAAS,YAAA5H,EAAY,IAAAoB,EAAI,QAAAgB,EAAQ,KAAA9B,EAAK,GAAGwB,CAAK,EAAE,CAAC,IAAM8G,EAAQjJ,GAAa6E,EAAc3E,GAAG,CAAC,GAAG,CAACU,EAAW,SAAS,aAAc,OAAO0H,IAAQ,EAAEQ,EAAgBC,EAAmB,IAAMvB,EAAW5G,EAAW,SAAS,aAAaoI,EAAYE,EAAU1B,EAAWc,EAAYa,EAAUD,EAAU1B,EAAsF,OAA1DtH,GAAGgJ,IAAYZ,EAAMU,EAAM,EAAE9I,EAAEiJ,EAAUb,IAAQU,EAAM,GAAqBF,EAAgBC,CAAkB,CAAC,EAAQK,EAAc3H,EAAI,EAAM4H,EAAI,CAAC1I,GAAM2H,EAAM,EAAEc,EAAc3G,EAAY6G,GAAO,CAAC3I,GAAM2H,IAAQU,EAAM,EAAEI,EAAc3G,EAAY8G,EAAM5I,GAAM2H,IAAQU,EAAM,EAAEI,EAAc3G,EAAY+G,EAAK7I,GAAM2H,EAAM,EAAEc,EAAc3G,EAAQ,OAAoBkF,EAAK,SAAS,CAAC,aAAa,kBAAkBW,EAAM,CAAC,GAAG,KAAK,SAAS,GAAGnG,EAAM,MAAM,CAAC,GAAG9B,EAAY,QAAQ,GAAGgJ,CAAG,MAAME,CAAK,MAAMD,EAAM,MAAME,CAAI,IAAI,EAAE,SAAsB7B,EAAKS,EAAO,IAAI,CAAC,MAAM,CAAC,GAAGH,EAAS,QAAAgB,CAAO,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASrB,IAAa,CAAC,OAAoBO,EAAM,UAAU,CAAC,MAAMsB,GAAkB,SAAS,CAAc9B,EAAK,MAAM,CAAC,MAAM+B,GAAY,SAAS,QAAG,CAAC,EAAe/B,EAAK,IAAI,CAAC,MAAMgC,GAAY,SAAS,oBAAoB,CAAC,EAAehC,EAAK,IAAI,CAAC,MAAMiC,GAAe,SAAS,4CAA4C,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASlB,IAAa,CAAC,OAAoBf,EAAK,MAAM,CAAC,wBAAwB,CAAC,OAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,sBAgB5oT,CAAC,CAAC,CAAE,CAAa,IAAM8B,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQC,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAE9e,IAAMC,GAAmB,CAAC,QAAQ,OAAO,SAAS,SAAS,MAAM,OAAO,OAAO,OAAO,SAAS,UAAU,EAAQC,GAAkB,CAAC,QAAQ,EAAE,OAAO,EAAE,UAAU,OAAO,SAAS,WAAW,QAAQ,OAAO,KAAK,WAAW,MAAM,OAAO,OAAO,MAAM,EAAQC,GAAiB,CAAC,OAAO,OAAO,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,WAAW,cAAc,OAAO,UAAU,OAAO,EAAE,QAAQ,CAAC,EAAQC,GAAe,CAAC,QAAQ,OAAO,eAAe,gBAAgB,WAAW,SAAS,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,cAAc,OAAO,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAC,EAE1lBC,GAAmB,CAAC,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,SAAS,WAAW,cAAc,MAAM,EAAQC,GAAS,CAAC,aAAa,MAAM,WAAW,QAAQ,OAAO,UAAU,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,QAAQ,CAAC,ECzHwN,IAAMC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,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,GAAU,CAAC,OAAO,aAAa,QAAQ,KAAK,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,MAAM,IAAI,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,OAAOF,GAAU,OAAO,GAAM,WAAW,GAAG,aAAa,OAAO,WAAWC,GAAY,QAAQ,UAAU,KAAK,QAAQ,EAAQE,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAAOE,EAAM,WAAW,eAAe,QAAQN,GAAwBM,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAM1B,IAAe0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAE0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAU4B,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAzC,EAAQ,UAAA0C,EAAU,GAAGC,CAAS,EAAExB,GAASK,CAAK,EAAO,CAAC,YAAAoB,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAArD,CAAQ,EAAEsD,GAAgB,CAAC,WAAA3D,GAAW,eAAe,YAAY,IAAIsC,EAAW,QAAA/B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ0D,EAAiB5B,GAAuBD,EAAM1B,CAAQ,EAAO,CAAC,sBAAAwD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAgBH,EAAsB,SAASI,KAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,YAAY,EAAI,EAAE,GAAG,CAAE,CAAC,EAAEQ,GAAmBf,EAAY,CAAC,QAAQa,CAAe,CAAC,EAAsD,IAAMG,EAAkBC,EAAGnE,GAAkB,GAArE,CAAa8C,EAAS,CAAuE,EAAE,OAAoB1B,EAAKgD,EAAY,CAAC,GAAGrB,GAAUT,EAAgB,SAAsBlB,EAAKC,GAAS,CAAC,QAAQjB,EAAS,QAAQ,GAAM,SAAsBgB,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsB8D,EAAM/C,EAAO,IAAI,CAAC,GAAG2B,EAAU,GAAGI,EAAgB,UAAUc,EAAGD,EAAkB,iBAAiBpB,EAAUK,CAAU,EAAE,mBAAmB,YAAY,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,IAAItB,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAG3C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEgD,EAAYI,CAAc,EAAE,SAAS,CAAclC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,KAAK,UAAU,MAAM,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,qEAAqE,UAAU,0CAA0C,CAAC,CAAC,CAAC,EAAevC,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,OAAOZ,GAAW,MAAM,CAAC,OAAO,EAAE,iBAAiBiD,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKX,EAAU,SAAS,CAAC,UAAU,CAAC,qBAAqB,oEAAoE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG9C,GAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiB,GAAI,CAAC,kFAAkF,gFAAgF,kRAAkR,wOAAwO,qIAAqI,GAAeA,EAAG,EAW3iMC,GAAgBC,GAAQzC,GAAUuC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,iBAAiBA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,EAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECX39B,IAAMC,GAAYC,EAASC,EAAM,EAAQC,GAAgBF,EAASG,EAAU,EAAQC,GAAYJ,EAASK,EAAM,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,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,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAmd,IAAMC,GAAU,CAAC,CAAC,MAAAC,EAAM,SAAAC,EAAS,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAKC,GAAaJ,CAAK,EAAE,OAAOE,EAASC,CAAI,CAAE,EAAQE,GAAU,CAAC,OAAO,aAAa,QAAQ,KAAK,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,MAAM,IAAI,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,OAAOF,GAAU,WAAW,GAAG,aAAa,OAAO,WAAWC,GAAY,QAAQ,UAAU,KAAK,QAAQ,EAAk5B,IAAME,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,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,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,EAAW,SAASJ,EAAMK,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,EAAY,mBAAAC,EAAmB,YAAAC,GAAY,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,EAAY,GAAGC,CAAS,EAAEjC,GAASI,CAAK,EAAO,CAAC,YAAA8B,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,GAAW,SAAAnC,CAAQ,EAAEoC,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,IAAI/B,EAAW,QAAAW,EAAQ,kBAAAqB,EAAiB,CAAC,EAAQC,EAAiBxC,GAAuBD,EAAME,CAAQ,EAAmFwC,GAAkBC,EAAGC,GAAkB,GAA5F,CAAa3B,GAAuBA,EAAS,CAAuE,EAAE,OAAoB1B,EAAKsD,EAAY,CAAC,GAAG3B,GAAUT,EAAgB,SAAsBlB,EAAKC,GAAS,CAAC,QAAQU,EAAS,QAAQ,GAAM,SAAsBX,EAAKT,GAAW,CAAC,MAAMgE,GAAY,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,GAAGoC,EAAU,GAAGI,EAAgB,UAAUU,EAAGD,GAAkB,iBAAiBzB,EAAUc,CAAU,EAAE,mBAAmB,YAAY,iBAAiBU,EAAiB,SAAS,YAAY,IAAIjC,EAAW,MAAM,CAAC,gBAAgB,+EAA+E,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGQ,CAAK,EAAE,GAAG+B,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEjB,EAAYI,CAAc,EAAE,SAAsBc,EAAMvD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBgD,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAC,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,EAAE,SAAS,CAAcO,EAAMvD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBgD,EAAiB,SAAS,YAAY,SAAS,CAAclD,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBgD,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAC,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,EAAE,SAAsBlD,EAAK0D,GAAmB,CAAC,SAAsB1D,EAAK2D,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,GAAK,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,WAAW,CAAC,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACC,GAAYC,GAAgBC,KAAyBN,EAAMO,GAAU,CAAC,SAAS,CAACH,IAAa,IAAI,CAAC,CAAC,UAAU7B,GAAmB,GAAGC,EAAW,EAAEgC,KAAUjC,KAAqB,GAAuBhC,EAAKsD,EAAY,CAAC,GAAG,aAAarB,EAAW,GAAG,SAAsBjC,EAAKkE,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUlC,EAAkB,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBgD,EAAiB,SAAS,YAAY,SAAsBlD,EAAK0D,GAAmB,CAAC,SAAsB1D,EAAK2D,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,GAAK,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,EAAE,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,WAAW,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACO,GAAWC,GAAeC,KAAwBrE,EAAKgE,GAAU,CAAC,SAASG,IAAY,IAAI,CAAC,CAAC,UAAUrC,GAAmB,GAAGC,EAAY,UAAUF,CAAkB,EAAEyC,MAASxC,KAAqB,GAAuB9B,EAAKsD,EAAY,CAAC,GAAG,aAAavB,CAAW,GAAG,SAAsB/B,EAAKkE,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUpC,EAAkB,EAAE,SAAsB9B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBgD,EAAiB,SAAS,YAAY,SAAsBlD,EAAKuE,EAA0B,CAAC,OAAO,GAAG,GAAGhD,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,GAAGiC,GAAqB,CAAC,UAAU,CAAC,GAAGjC,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,QAAQ,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAEgB,EAAYI,CAAc,EAAE,SAAsB3C,EAAKwE,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBtB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBlD,EAAKyE,GAAO,CAAC,UAAU,GAAK,UAAU,CAAC,YAAY,4EAA4E,YAAY,QAAQ,YAAY,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,OAAO,UAAU,qEAAqE,UAAU,4EAA4E,UAAU,iBAAiB,UAAUC,GAAkB7C,CAAkB,EAAE,GAAG2B,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEjB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEZ,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,EAAW,EAAG,EAAejC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBgD,EAAiB,SAAS,YAAY,SAAsBlD,EAAK2E,EAAS,CAAC,sBAAsB,GAAK,SAAsB3E,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,oCAAoC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,OAAO0E,GAAW,MAAM,CAAC,OAAO,EAAE,iBAAiB1B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGM,GAAqB,CAAC,UAAU,CAAC,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,kDAAkD,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,oCAAoC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBgD,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,2EAA2E,CAAC,CAAC,EAAeO,EAAMvD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBgD,EAAiB,SAAS,YAAY,SAAS,CAAclD,EAAK2E,EAAS,CAAC,sBAAsB,GAAK,SAAsB3E,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,OAAO0E,GAAW,MAAM,CAAC,OAAO,EAAE,iBAAiB1B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGM,GAAqB,CAAC,UAAU,CAAC,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,kDAAkD,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAe3C,EAAKuE,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,GAAGhD,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,GAAG,EAAE,EAAE,IAAI,KAAK,GAAGiC,GAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,OAAO,GAAGjC,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,QAAQ,GAAG,GAAG,EAAE,EAAE,OAAO,IAAI,CAAC,EAAEgB,EAAYI,CAAc,EAAE,SAAsB3C,EAAKwE,GAA8B,CAAC,UAAU,2BAA2B,iBAAiBtB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBlD,EAAK6E,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,uEAAuE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,yBAAyB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7E,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBgD,EAAiB,SAAS,YAAY,SAAsBO,EAAMvD,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiBgD,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,4EAA4E,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAC,UAAU,CAAC,wBAAwB,SAAS,sBAAsB,SAAS,uBAAuB,SAAS,qBAAqB,SAAS,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,CAAC,EAAE,SAAS,CAAclD,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBgD,EAAiB,SAAS,YAAY,SAAsBlD,EAAK0D,GAAmB,CAAC,SAAsB1D,EAAK2D,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,GAAK,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,WAAW,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACkB,GAAYC,GAAgBC,KAAyBhF,EAAKgE,GAAU,CAAC,SAASc,IAAa,IAAI,CAAC,CAAC,UAAU1C,GAAmB,GAAGC,GAAY,UAAUF,EAAmB,UAAUD,EAAkB,EAAE+C,MAAU/C,KAAqB,GAAGE,KAAqB,GAAuBpC,EAAKsD,EAAY,CAAC,GAAG,aAAajB,EAAW,GAAG,SAAsBrC,EAAKkE,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAU9B,EAAkB,EAAE,SAAsBpC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBgD,EAAiB,SAAS,YAAY,SAAsBlD,EAAKuE,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,GAAGhD,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,GAAG,IAAI,EAAE,EAAE,KAAK,EAAE,EAAE,GAAGiC,GAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,OAAO,GAAGjC,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,QAAQ,GAAG,GAAG,OAAO,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC,EAAEgB,EAAYI,CAAc,EAAE,SAAsB3C,EAAKwE,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBtB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,SAAsBlD,EAAKyE,GAAO,CAAC,UAAU,GAAK,UAAU,CAAC,YAAY,4EAA4E,YAAY,QAAQ,YAAY,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,qEAAqE,UAAU,4EAA4E,UAAUvC,GAAmB,UAAUwC,GAAkBvC,CAAkB,EAAE,GAAGqB,GAAqB,CAAC,UAAU,CAAC,UAAU,CAAC,YAAY,4EAA4E,YAAY,QAAQ,YAAY,GAAG,CAAC,CAAC,EAAEjB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEN,EAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBgD,EAAiB,SAAS,YAAY,SAAsBlD,EAAK2E,EAAS,CAAC,sBAAsB,GAAK,SAAsB3E,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,+BAA+B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,OAAO0E,GAAW,MAAM,CAAC,OAAO,EAAE,iBAAiB1B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGM,GAAqB,CAAC,UAAU,CAAC,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,kDAAkD,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,+BAA+B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAe3C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBgD,EAAiB,SAAS,YAAY,SAAsBlD,EAAKuE,EAA0B,CAAC,OAAO,GAAG,GAAGhD,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,GAAG,IAAI,EAAE,EAAE,KAAK,EAAE,GAAGiC,GAAqB,CAAC,UAAU,CAAC,GAAGjC,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,QAAQ,GAAG,GAAG,OAAO,EAAE,EAAE,GAAG,CAAC,CAAC,EAAEgB,EAAYI,CAAc,EAAE,SAAsB3C,EAAKwE,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBtB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBlD,EAAKkF,GAAO,CAAC,UAAU,GAAM,UAAU,GAAM,UAAU,GAAM,OAAO,OAAO,UAAU,UAAU,GAAG,YAAY,SAAS,YAAY,UAAU,eAAe,UAAU,GAAK,QAAQ,YAAY,MAAM,OAAO,UAAU,YAAY,UAAU,QAAQ,GAAG1B,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEjB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQwC,GAAI,CAAC,kFAAkF,kFAAkF,wTAAwT,iWAAiW,gRAAgR,yQAAyQ,4QAA4Q,qQAAqQ,gJAAgJ,2RAA2R,kIAAkI,gHAAgH,6QAA6Q,iKAAiK,yGAAyG,+QAA+Q,0UAA0U,2PAA2P,0PAA0P,0GAA0G,8QAA8Q,kRAAkR,+FAA+F,2MAA2M,2JAA2J,8DAA8D,gEAAgE,sNAAsN,iEAAiE,yFAAyF,6DAA6D,4EAA4E,yFAAyF,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EAUxn0BC,GAAgBC,GAAQzE,GAAUuE,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,aAAaA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,GAAY,GAAGC,GAAgB,GAAGC,GAAY,GAAGC,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECVz8G,IAAMC,GAAkBC,EAAW,SAASC,EAAMC,EAAI,CAAC,OAAoBC,EAAK,MAAM,CAAC,GAAGF,EAAM,IAAIC,EAAI,SAASD,EAAM,QAAQ,CAAC,CAAE,CAAC,EAAQG,GAAUC,EAAON,EAAI,EAAQO,GAAiBN,EAAW,CAACC,EAAMC,IAAM,CAAC,GAAK,CAAC,SAAAK,EAAS,SAAAC,EAAS,SAAAC,EAAS,GAAGC,CAAI,EAAET,EAAM,OAAOM,EAAsBJ,EAAKC,GAAU,CAAC,GAAGM,EAAK,SAASF,EAAS,IAAIN,EAAI,SAASO,CAAQ,CAAC,EAAeN,EAAK,MAAM,CAAC,GAAGO,EAAK,IAAIR,EAAI,SAASO,CAAQ,CAAC,CAAE,CAAC,EAAQE,GAAI;AAAA;AAAA;AAAA,6RAAgxEC,GAAS,CAAC,CAAC,KAAAC,EAAK,OAAAC,EAAO,GAAAC,EAAG,OAAAC,EAAO,MAAAC,EAAM,GAAGhB,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUY,GAAMZ,EAAM,WAAW,qEAAqE,UAAUe,GAAQf,EAAM,WAAW,oEAAoE,GAAUiB,GAA6BlB,EAAW,SAASC,EAAMC,EAAI,CAAC,GAAK,CAAC,MAAAiB,EAAM,UAAAC,EAAU,SAAAZ,EAAS,QAAAa,EAAQ,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEZ,GAASX,CAAK,EAAQwB,EAAKC,GAAe,aAAaf,EAAG,EAAE,OAAoBR,EAAKG,GAAI,CAAC,GAAGkB,EAAU,UAAUG,EAAG,eAAeP,CAAS,EAAE,SAASZ,EAAS,IAAIN,EAAI,KAAK,eAAe,MAAM,CAAC,YAAYoB,EAAU,YAAYC,EAAU,GAAGJ,CAAK,EAAE,QAAQ,YAAY,SAAsBhB,EAAK,MAAM,CAAC,KAAKsB,CAAI,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQG,GAAI,CAAC,qEAAqE,EAShqHC,GAAKC,GAAQZ,GAAUU,GAAI,cAAc,EAASG,GAAQF,GAAKG,GAAoBH,GAAK,CAAC,UAAU,CAAC,aAAa,8FAA8F,OAAO,GAAM,MAAM,OAAO,KAAKI,EAAY,KAAK,EAAE,UAAU,CAAC,aAAa,8FAA8F,OAAO,GAAM,MAAM,SAAS,KAAKA,EAAY,KAAK,CAAC,CAAC,ECT1G,IAAMC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,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,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,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,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,KAAK,YAAY,GAAG,YAAY,KAAK,YAAY,WAAW,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,EAAMxB,IAAewB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAU0B,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAvC,EAAQ,GAAGwC,CAAS,EAAEtB,GAASI,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAlD,CAAQ,EAAEmD,GAAgB,CAAC,WAAAxD,GAAW,eAAe,YAAY,IAAIoC,EAAW,QAAA7B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQuD,EAAiB3B,GAAuBD,EAAMxB,CAAQ,EAAO,CAAC,sBAAAqD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAeH,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,YAAY,EAAI,EAAE,GAAG,CAAE,CAAC,EAAQQ,EAAgBL,EAAsB,SAASI,IAAO,CAACP,EAAW,YAAY,EAAI,CAAE,CAAC,EAAQS,EAAYN,EAAsB,SAASI,IAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQU,EAAgBP,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,YAAY,EAAI,EAAE,GAAG,CAAE,CAAC,EAAEW,GAAmBlB,EAAY,CAAC,UAAUa,EAAe,UAAUI,EAAgB,UAAUF,CAAe,CAAC,EAAiC,IAAMI,EAAkBC,EAAGnE,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBmB,EAAKiD,EAAY,CAAC,GAAGvB,GAAUT,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQhB,EAAS,QAAQ,GAAM,SAAsBe,EAAKT,GAAW,CAAC,MAAMH,GAAY,GAAGL,GAAqB,CAAC,UAAU,CAAC,MAAMM,EAAW,EAAE,UAAU,CAAC,MAAMC,EAAW,CAAC,EAAEsC,EAAYI,CAAc,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,GAAGyB,EAAU,GAAGI,GAAgB,UAAUiB,EAAGD,EAAkB,gBAAgBtB,EAAUI,CAAU,EAAE,mBAAmB,OAAO,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,KAAK,GAAGQ,CAAK,EAAE,GAAGzC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,iBAAiB,EAAI,EAAE,UAAU,CAAC,mBAAmB,KAAK,iBAAiB,GAAK,MAAM6D,CAAW,EAAE,UAAU,CAAC,mBAAmB,aAAa,iBAAiB,EAAI,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,eAAe,cAAc,GAAK,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,4EAA4E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,4EAA4E,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,KAAK,UAAU,MAAM,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,qEAAqE,UAAU,2KAA2K,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQa,GAAI,CAAC,kFAAkF,kFAAkF,oTAAoT,oRAAoR,4KAA4K,8GAA8G,oEAAoE,+bAA+b,EAU3lNC,GAAgBC,GAAQzC,GAAUuC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,YAAYA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,OAAO,OAAO,aAAa,IAAI,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECVyL,IAAMM,GAAcC,EAASC,EAAQ,EAAQC,GAAUF,EAASG,EAAI,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,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,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAAmB,CAACF,EAAEC,IAAI,yBAAyBA,CAAC,GAASE,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,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,EAAM1B,IAAe0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAE0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAU4B,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAzC,EAAQ,GAAG0C,CAAS,EAAEtB,GAASI,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAApD,CAAQ,EAAEqD,GAAgB,CAAC,WAAA1D,GAAW,eAAe,YAAY,IAAIsC,EAAW,QAAA/B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQyD,EAAiB3B,GAAuBD,EAAM1B,CAAQ,EAAO,CAAC,sBAAAuD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAeH,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAWQ,GAAkB,EAAI,EAAE,IAAI,CAAE,CAAC,EAAEC,GAAmBhB,EAAY,CAAC,QAAQa,CAAc,CAAC,EAAiC,IAAMI,EAAkBC,EAAGnE,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBqB,EAAK+C,EAAY,CAAC,GAAGrB,GAAUT,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQlB,EAAS,QAAQ,GAAM,SAAsBiB,EAAKT,GAAW,CAAC,MAAML,GAAY,SAAsB8D,EAAM9C,EAAO,IAAI,CAAC,GAAGyB,EAAU,GAAGI,GAAgB,UAAUe,EAAGD,EAAkB,iBAAiBpB,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,gBAAgB,+EAA+E,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGQ,CAAK,EAAE,GAAG3C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAE+C,EAAYI,CAAc,EAAE,SAAS,CAAcgB,EAAM9C,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,kBAAkBlD,GAAmB,SAAS,CAAca,EAAKiD,EAA0B,CAAC,OAAO,GAAG,GAAG3B,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,KAAK,kBAAkB,IAAI,SAAsBtB,EAAKkD,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBb,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,IAAI,EAAE,kBAAkB/C,GAAmB,SAAsBU,EAAKzB,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,OAAO,GAAGM,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE+C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKiD,EAA0B,CAAC,OAAO,GAAG,GAAG3B,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,KAAK,kBAAkB,IAAI,SAAsBtB,EAAKkD,GAA8B,CAAC,UAAU,2BAA2B,iBAAiBb,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,IAAI,EAAE,kBAAkB/C,GAAmB,SAAsBU,EAAKzB,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,OAAO,GAAGM,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE+C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKiD,EAA0B,CAAC,OAAO,GAAG,GAAG3B,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,KAAK,kBAAkB,IAAI,SAAsBtB,EAAKkD,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBb,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,GAAG,EAAE,kBAAkB/C,GAAmB,SAAsBU,EAAKzB,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,OAAO,GAAGM,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE+C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKiD,EAA0B,CAAC,OAAO,GAAG,GAAG3B,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,KAAK,kBAAkB,IAAI,SAAsBtB,EAAKkD,GAA8B,CAAC,UAAU,2BAA2B,iBAAiBb,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,GAAG,EAAE,kBAAkB/C,GAAmB,SAAsBU,EAAKzB,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,OAAO,GAAGM,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE+C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKiD,EAA0B,CAAC,OAAO,GAAG,GAAG3B,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,KAAK,mBAAmB,IAAI,SAAsBtB,EAAKkD,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBb,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,kBAAkB/C,GAAmB,SAAsBU,EAAKzB,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,OAAO,GAAGM,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE+C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKiD,EAA0B,CAAC,OAAO,GAAG,GAAG3B,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,KAAK,kBAAkB,IAAI,SAAsBtB,EAAKkD,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBb,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,kBAAkB/C,GAAmB,SAAsBU,EAAKzB,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,OAAO,GAAGM,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE+C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKvB,GAAK,CAAC,SAAS,GAAK,UAAU,iBAAiB,iBAAiB4D,EAAiB,SAAS,YAAY,MAAM,CAAC,YAAY,wEAAwE,YAAY,wBAAwB,EAAE,kBAAkB/C,EAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ6D,GAAI,CAAC,kFAAkF,gFAAgF,6KAA6K,oNAAoN,6HAA6H,8HAA8H,6HAA6H,8HAA8H,4HAA4H,6HAA6H,2JAA2J,EAUx1UC,GAAgBC,GAAQ1C,GAAUwC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,uBAAuBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAG/E,GAAc,GAAGG,EAAS,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECVrG,IAAMkF,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,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,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAoBC,GAAO,CAAC,GAAG,OAAOA,GAAQ,SAAS,OAAOA,EAAM,GAAI,OAAO,SAASA,CAAK,EAAmB,OAAO,KAAK,IAAI,EAAEA,CAAK,EAAE,IAAK,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,CAAC,MAAAL,EAAM,SAAAM,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWV,GAAOO,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAAY,CAAC,SAAS,EAAE,KAAK,OAAO,EAAQC,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,aAAa,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAS,CAAC,CAAC,IAAAC,EAAI,OAAAC,EAAO,GAAAC,EAAG,OAAAC,EAAO,OAAAC,EAAO,OAAAC,EAAO,OAAAC,EAAO,OAAAC,EAAO,UAAAC,EAAU,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUH,GAAWG,EAAM,WAAW,GAAK,UAAUR,GAAQQ,EAAM,WAAW,UAAU,UAAUF,GAAOE,EAAM,WAAW,YAAY,UAAUN,GAAQM,EAAM,WAAW,UAAU,UAAUJ,GAAQI,EAAM,WAAW,UAAU,QAAQb,GAAwBa,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUL,GAAQK,EAAM,WAAW,UAAU,UAAUP,GAAQO,EAAM,WAAW,UAAU,UAAUX,GAAKW,EAAM,WAAW,EAAE,GAAUC,GAAuB,CAACD,EAAMpC,IAAeoC,EAAM,iBAAwBpC,EAAS,KAAK,GAAG,EAAEoC,EAAM,iBAAwBpC,EAAS,KAAK,GAAG,EAAUsC,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAnD,EAAQ,UAAAoD,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEtC,GAASY,CAAK,EAAO,CAAC,YAAA2B,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAtE,EAAQ,EAAEuE,GAAgB,CAAC,WAAA5E,GAAW,eAAe,YAAY,IAAIgD,EAAW,QAAAzC,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ2E,EAAiBnC,GAAuBD,EAAMpC,EAAQ,EAAO,CAAC,sBAAAyE,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAgBH,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQQ,GAAgBL,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQS,GAAgBN,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQU,GAAeP,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQW,GAAgBR,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQY,GAAgBT,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQa,EAAgBV,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQc,GAAgBX,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQe,GAAgBZ,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQgB,GAAgBb,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAEiB,GAAmBxB,EAAY,CAAC,QAAQa,GAAgB,UAAUM,GAAgB,UAAUD,GAAgB,UAAUH,GAAgB,UAAUE,GAAe,UAAUG,EAAgB,UAAUC,GAAgB,UAAUE,GAAgB,UAAUD,GAAgB,UAAUN,EAAe,CAAC,EAAsD,IAAMS,EAAkBC,EAAG7F,GAAkB,GAArE,CAAawD,EAAS,CAAuE,EAAE,OAAoBlC,EAAKwE,EAAY,CAAC,GAAGrC,GAAUT,EAAgB,SAAsB1B,EAAKE,GAAS,CAAC,QAAQpB,GAAS,QAAQ,GAAM,SAAsBkB,EAAKR,GAAW,CAAC,MAAMP,GAAY,SAAsBe,EAAKG,EAAO,IAAI,CAAC,GAAGyC,EAAU,GAAGI,EAAgB,UAAUuB,EAAGD,EAAkB,gBAAgBpC,EAAUY,CAAU,EAAE,mBAAmB,YAAY,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,IAAI7B,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAGrD,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEiE,EAAYI,CAAc,EAAE,SAAsBwB,EAAMtE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBmD,EAAiB,SAAS,YAAY,SAAS,CAActD,EAAKG,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiBmD,EAAiB,SAAS,YAAY,SAASX,GAAwB3C,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,MAAM,CAAC,OAAO,EAAE,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,YAAY,QAAQ,EAAE,EAAE,KAAKZ,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe+B,EAAMtE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,YAAYpE,GAAoBuD,CAAS,EAAE,KAAK,yGAAyG,WAAW,wGAAwG,EAAE,kBAAkBrD,GAAmB,SAAS,CAAcY,EAAKR,GAAW,CAAC,MAAMD,GAAY,GAAGX,GAAqB,CAAC,UAAU,CAAC,MAAM,MAAS,EAAE,UAAU,CAAC,MAAM,MAAS,EAAE,UAAU,CAAC,MAAM,MAAS,EAAE,UAAU,CAAC,MAAM,MAAS,EAAE,UAAU,CAAC,MAAM,MAAS,EAAE,UAAU,CAAC,MAAM,MAAS,EAAE,UAAU,CAAC,MAAM,MAAS,EAAE,UAAU,CAAC,MAAM,MAAS,EAAE,UAAU,CAAC,MAAM,MAAS,CAAC,EAAEiE,EAAYI,CAAc,EAAE,SAAsBjD,EAAKG,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,CAAC,EAAE,SAAsBtD,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,YAAY,WAAW,8EAA8E,EAAE,KAAKlB,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKR,GAAW,CAAC,GAAGZ,GAAqB,CAAC,UAAU,CAAC,MAAMqB,EAAW,CAAC,EAAE4C,EAAYI,CAAc,EAAE,SAAsBjD,EAAKG,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,CAAC,EAAE,SAAsBtD,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,YAAY,WAAW,8EAA8E,EAAE,KAAKjB,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerC,EAAKR,GAAW,CAAC,GAAGZ,GAAqB,CAAC,UAAU,CAAC,MAAMqB,EAAW,CAAC,EAAE4C,EAAYI,CAAc,EAAE,SAAsBjD,EAAKG,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,CAAC,EAAE,SAAsBtD,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,YAAY,WAAW,8EAA8E,EAAE,KAAKhB,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAKR,GAAW,CAAC,GAAGZ,GAAqB,CAAC,UAAU,CAAC,MAAMqB,EAAW,CAAC,EAAE4C,EAAYI,CAAc,EAAE,SAAsBjD,EAAKG,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAsBtD,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,YAAY,WAAW,8EAA8E,EAAE,KAAKf,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKR,GAAW,CAAC,GAAGZ,GAAqB,CAAC,UAAU,CAAC,MAAMqB,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,CAAC,EAAE4C,EAAYI,CAAc,EAAE,SAAsBjD,EAAKG,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAsBtD,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,YAAY,WAAW,8EAA8E,EAAE,KAAKd,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexC,EAAKG,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,CAAC,EAAE,SAAsBtD,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,YAAY,WAAW,8EAA8E,EAAE,KAAKlB,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAepC,EAAKR,GAAW,CAAC,GAAGZ,GAAqB,CAAC,UAAU,CAAC,MAAMqB,EAAW,CAAC,EAAE4C,EAAYI,CAAc,EAAE,SAAsBjD,EAAKG,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAsBtD,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,YAAY,QAAQ,EAAE,WAAW,8EAA8E,EAAE,KAAKjB,EAAU,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerC,EAAKR,GAAW,CAAC,GAAGZ,GAAqB,CAAC,UAAU,CAAC,MAAMqB,EAAW,CAAC,EAAE4C,EAAYI,CAAc,EAAE,SAAsBjD,EAAKG,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAsBtD,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,YAAY,WAAW,8EAA8E,EAAE,KAAKhB,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAKG,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,EAAE,CAAC,EAAE,SAAsBtD,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,YAAY,WAAW,8EAA8E,EAAE,KAAKf,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAevC,EAAKG,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,CAAC,EAAE,SAAsBtD,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,YAAY,WAAW,8EAA8E,EAAE,KAAKd,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAexC,EAAKG,EAAO,IAAI,CAAC,UAAU,eAAe,mBAAmB,QAAQ,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAsBtD,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,YAAY,QAAQ,GAAG,WAAW,8EAA8E,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemB,EAAMtE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,YAAYpE,GAAoBuD,CAAS,CAAC,EAAE,SAAS,CAAczC,EAAKG,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,QAAQ,CAAC,EAAE,SAAsBtD,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,YAAY,QAAQ,CAAC,EAAE,KAAKlB,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAepC,EAAKG,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,QAAQ,CAAC,EAAE,SAAsBtD,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKjB,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAerC,EAAKG,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,QAAQ,CAAC,EAAE,SAAsBtD,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKhB,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAetC,EAAKG,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,QAAQ,CAAC,EAAE,SAAsBtD,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKf,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAevC,EAAKG,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,QAAQ,CAAC,EAAE,SAAsBtD,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKd,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmC,GAAI,CAAC,kFAAkF,kFAAkF,wRAAwR,mRAAmR,+aAA+a,2mBAA2mB,0UAA0U,wkBAAwkB,iHAAiH,gSAAgS,ubAAub,ubAAub,ubAAub,wbAAwb,ubAAub,wbAAwb,wbAAwb,wbAAwb,ubAAub,wbAAwb,2aAA2a,GAAeA,EAAG,EAWt96BC,GAAgBC,GAAQzD,GAAUuD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,eAAeA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,UAAU,gBAAgB,GAAM,MAAM,UAAU,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,UAAU,gBAAgB,GAAM,MAAM,UAAU,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,UAAU,gBAAgB,GAAM,MAAM,UAAU,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,UAAU,gBAAgB,GAAM,MAAM,UAAU,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,UAAU,gBAAgB,GAAM,MAAM,UAAU,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAG,IAAI,EAAE,MAAM,MAAM,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,YAAY,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,aAAa,KAAKA,EAAY,OAAO,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,EAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECX94C,IAAMC,GAAWC,EAASC,EAAK,EAAQC,GAAaF,EAASG,EAAO,EAAQC,GAAYJ,EAASK,EAAM,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,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,GAAU,CAAC,OAAO,aAAa,QAAQ,KAAK,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,MAAM,IAAI,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,OAAOF,GAAU,aAAa,OAAO,WAAWC,GAAY,QAAQ,UAAU,KAAK,QAAQ,EAAsoB,IAAME,GAAU,CAAC,CAAC,MAAAC,EAAM,SAAAC,EAAS,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAKC,GAAaJ,CAAK,EAAE,OAAOE,EAASC,CAAI,CAAE,EAAQE,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAgvB,IAAMC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAS,CAAC,CAAC,KAAAC,EAAK,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,OAAAC,EAAO,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAAQE,EAAM,UAAU,UAAUH,GAAOG,EAAM,WAAW,SAAS,UAAUN,GAAMM,EAAM,UAAU,QAAQR,GAAwBQ,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,EAAW,SAASJ,EAAMK,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,mBAAAC,EAAmB,mBAAAC,GAAmB,YAAAC,EAAY,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,EAAY,GAAGC,CAAS,EAAErC,GAASO,CAAK,EAAO,CAAC,YAAA+B,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAApC,CAAQ,EAAEqC,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,IAAIhC,EAAW,QAAAW,EAAQ,kBAAAsB,EAAiB,CAAC,EAAQC,EAAiBzC,GAAuBD,EAAME,CAAQ,EAAO,CAAC,sBAAAyC,GAAsB,MAAAC,EAAK,EAAEC,GAAyBd,CAAW,EAAQe,GAAcH,GAAsB,SAASI,KAAO,CAACT,EAAW,WAAW,CAAE,CAAC,EAAQU,GAAcL,GAAsB,SAASI,KAAO,CAACT,EAAW,WAAW,CAAE,CAAC,EAAiIW,GAAkBC,EAAGC,GAAkB,GAA1I,CAAalC,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQmC,EAAY,IAAQrB,IAAc,YAAuC,OAAoB3C,EAAKiE,EAAY,CAAC,GAAGnC,GAAUT,EAAgB,SAAsBrB,EAAKC,GAAS,CAAC,QAAQa,EAAS,QAAQ,GAAM,SAAsBd,EAAKT,GAAW,CAAC,MAAM2E,GAAY,SAAsBC,EAAMjE,EAAO,IAAI,CAAC,GAAGwC,EAAU,GAAGI,EAAgB,UAAUgB,EAAGD,GAAkB,iBAAiBhC,EAAUe,CAAU,EAAE,mBAAmB,YAAY,iBAAiBU,EAAiB,SAAS,YAAY,IAAIlC,EAAW,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,GAAGQ,CAAK,EAAE,GAAGwC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEzB,EAAYI,CAAc,EAAE,SAAS,CAAcoB,EAAMjE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoD,EAAiB,SAAS,YAAY,SAAS,CAACU,EAAY,GAAgBhE,EAAKqE,EAA0B,CAAC,SAAsBrE,EAAKsE,GAA8B,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBhB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtD,EAAKuE,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,UAAU,QAAQ,GAAM,OAAO,qEAAqE,cAAc,GAAK,QAAQ,qEAAqE,QAAQ,SAAS,OAAO,uEAAuE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeJ,EAAMjE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoD,EAAiB,SAAS,YAAY,SAAS,CAActD,EAAKwE,EAAS,CAAC,sBAAsB,GAAK,SAAsBxE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,OAAOuE,GAAW,MAAM,CAAC,OAAO,EAAE,iBAAiBnB,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKtB,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEgC,EAAY,GAAgBhE,EAAKwE,EAAS,CAAC,sBAAsB,GAAK,SAAsBxE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,OAAOuE,GAAW,MAAM,CAAC,OAAO,EAAE,iBAAiBnB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMjE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoD,EAAiB,SAAS,YAAY,SAAS,CAActD,EAAKwE,EAAS,CAAC,sBAAsB,GAAK,SAAsBxE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,OAAOuE,GAAW,MAAM,CAAC,OAAO,EAAE,iBAAiBnB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,oEAAoE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGc,GAAqB,CAAC,UAAU,CAAC,SAAsBpE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyC,EAAYI,CAAc,CAAC,CAAC,EAAe/C,EAAKqE,EAA0B,CAAC,SAAsBrE,EAAKsE,GAA8B,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBhB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtD,EAAK0E,GAAQ,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,OAAO,cAAc,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,QAAQhB,GAAc,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGU,GAAqB,CAAC,UAAU,CAAC,MAAM,qEAAqE,cAAc,IAAI,QAAQR,EAAa,CAAC,EAAEjB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBoD,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,2EAA2E,CAAC,CAAC,EAAetD,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoD,EAAiB,SAAS,YAAY,MAAM,CAAC,KAAK,kEAAkE,WAAW,iEAAiE,EAAE,SAAS,CAAC,UAAU,CAAC,KAAK,OAAO,WAAW,MAAM,CAAC,EAAE,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoD,EAAiB,SAAS,YAAY,SAAsBtD,EAAK2E,GAAmB,CAAC,SAAsB3E,EAAK4E,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,GAAO,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,EAAE,EAAE,QAAQ,CAAC,CAAC,UAAU,CAAC,CAAC,KAAK,eAAe,MAAM5C,CAAS,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,UAAU,MAAM,aAAa,WAAW,KAAK,cAAc,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAMA,CAAS,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAAC6C,GAAWC,GAAeC,KAAwBhF,EAAKiF,GAAU,CAAC,SAASH,IAAY,IAAI,CAAC,CAAC,UAAU3C,GAAmB,GAAGE,EAAY,UAAUD,CAAkB,EAAE8C,MAAS/C,KAAqB,GAAGC,IAAqB,GAAuBpC,EAAKiE,EAAY,CAAC,GAAG,aAAa5B,CAAW,GAAG,SAAsBrC,EAAKmF,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAU/C,CAAkB,EAAE,SAAsBpC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoD,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,4EAA4E,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoD,EAAiB,SAAS,YAAY,SAAsBtD,EAAKwE,EAAS,CAAC,sBAAsB,GAAK,SAAsBxE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,iBAAiBoD,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,KAAKnB,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBoD,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,2EAA2E,CAAC,CAAC,EAAea,EAAMjE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoD,EAAiB,SAAS,YAAY,SAAS,CAActD,EAAKwE,EAAS,CAAC,sBAAsB,GAAK,SAAsBxE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,OAAOuE,GAAW,MAAM,CAAC,OAAO,EAAE,iBAAiBnB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetD,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoD,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtD,EAAK2E,GAAmB,CAAC,SAAsB3E,EAAK4E,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKQ,GAAK,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,EAAE,EAAE,OAAO,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,QAAQ,CAAC,CAAC,UAAU,CAAC,CAAC,KAAK,eAAe,MAAMlD,CAAS,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,UAAU,MAAM,aAAa,WAAW,KAAK,cAAc,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAMA,CAAS,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACmD,GAAYC,GAAgBC,KAAyBvF,EAAKiF,GAAU,CAAC,SAASI,IAAa,IAAI,CAAC,CAAC,UAAU7C,GAAmB,GAAGC,EAAY,UAAUF,EAAmB,UAAUD,EAAkB,EAAEkD,MAAUlD,KAAqB,GAAGE,KAAqB,GAAuBxC,EAAKiE,EAAY,CAAC,GAAG,aAAaxB,CAAW,GAAG,SAAsBzC,EAAKmF,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAU3C,EAAkB,EAAE,SAAsBxC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoD,EAAiB,SAAS,YAAY,SAAsBtD,EAAKqE,EAA0B,CAAC,OAAO,GAAG,GAAGD,GAAqB,CAAC,UAAU,CAAC,GAAG1C,GAAmB,GAAG,GAAG,IAAI,GAAG,GAAQ,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,GAAG,KAAK,CAAC,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,CAAC,CAAC,EAAEiB,EAAYI,CAAc,EAAE,SAAsB/C,EAAKsE,GAA8B,CAAC,UAAU,2BAA2B,iBAAiBhB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtD,EAAKyF,GAAO,CAAC,UAAU,GAAK,UAAU,CAAC,YAAY,4EAA4E,YAAY,QAAQ,YAAY,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,OAAO,UAAU,+EAA+E,UAAUnD,GAAmB,UAAUoD,GAAkBnD,CAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQkD,GAAI,CAAC,kFAAkF,kFAAkF,+TAA+T,uQAAuQ,gJAAgJ,ySAAyS,mKAAmK,8QAA8Q,qKAAqK,wGAAwG,8IAA8I,uSAAuS,sRAAsR,oQAAoQ,gSAAgS,iHAAiH,qRAAqR,4QAA4Q,sQAAsQ,yGAAyG,qFAAqF,oGAAoG,gFAAgF,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,EAAG,EAWrosBC,GAAgBC,GAAQ9E,GAAU4E,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,YAAYA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,SAAS,gBAAgB,GAAM,MAAM,OAAO,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,eAAe,4CAA4C,MAAM,SAAS,KAAKA,EAAY,wBAAwB,EAAE,UAAU,CAAC,eAAe,4CAA4C,MAAM,OAAO,KAAKA,EAAY,wBAAwB,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,GAAW,GAAGC,GAAa,GAAGC,GAAY,GAAGC,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECX73C,IAAMC,GAAgBC,EAASC,EAAU,EAAQC,GAAYF,EAASG,EAAM,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,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,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAU,CAAC,OAAO,aAAa,QAAQ,KAAK,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,MAAM,IAAI,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,OAAOF,GAAU,WAAW,GAAG,aAAa,OAAO,WAAWC,GAAY,QAAQ,UAAU,KAAK,QAAQ,EAAQE,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAmd,IAAMC,GAAU,CAAC,CAAC,MAAAC,EAAM,SAAAC,EAAS,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAKC,GAAaJ,CAAK,EAAE,OAAOE,EAASC,CAAI,CAAE,EAA+Y,IAAME,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,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,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,EAAW,SAASJ,EAAMK,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,EAAY,mBAAAC,EAAmB,YAAAC,GAAY,GAAGC,CAAS,EAAE7B,GAASI,CAAK,EAAO,CAAC,YAAA0B,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA/B,CAAQ,EAAEgC,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,IAAI3B,EAAW,QAAAW,EAAQ,kBAAAiB,EAAiB,CAAC,EAAQC,EAAiBpC,GAAuBD,EAAME,CAAQ,EAA0GoC,GAAkBC,EAAGC,GAAkB,GAAnH,CAAavB,GAAuBA,GAAuBA,EAAS,CAAuE,EAAE,OAAoB1B,EAAKkD,EAAY,CAAC,GAAGvB,GAAUT,EAAgB,SAAsBlB,EAAKC,GAAS,CAAC,QAAQU,EAAS,QAAQ,GAAM,SAAsBX,EAAKT,GAAW,CAAC,MAAM4D,GAAY,SAAsBnD,EAAKE,EAAO,IAAI,CAAC,GAAGgC,EAAU,GAAGI,EAAgB,UAAUU,EAAGD,GAAkB,gBAAgBrB,EAAUU,CAAU,EAAE,mBAAmB,YAAY,iBAAiBU,EAAiB,SAAS,YAAY,IAAI7B,EAAW,MAAM,CAAC,gBAAgB,+EAA+E,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGQ,CAAK,EAAE,GAAG2B,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEjB,EAAYI,CAAc,EAAE,SAAsBc,EAAMnD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB4C,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAC,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,EAAE,SAAS,CAAcO,EAAMnD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB4C,EAAiB,SAAS,YAAY,SAAS,CAAc9C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,OAAOqD,GAAW,MAAM,CAAC,OAAO,EAAE,iBAAiBT,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGM,GAAqB,CAAC,UAAU,CAAC,SAAsBpD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,kDAAkD,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC,CAAC,EAAEiC,EAAYI,CAAc,CAAC,CAAC,EAAevC,EAAKwD,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,GAAGjC,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,OAAO,EAAE,EAAE,GAAG,GAAG,EAAE,GAAG,GAAG6B,GAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,OAAO,GAAG7B,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,OAAO,EAAE,EAAE,GAAG,EAAE,EAAE,IAAI,CAAC,EAAEY,EAAYI,CAAc,EAAE,SAAsBvC,EAAKyD,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBX,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB9C,EAAK0D,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,qBAAqB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,yBAAyB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1D,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiB4C,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,4EAA4E,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAC,UAAU,CAAC,wBAAwB,SAAS,sBAAsB,SAAS,uBAAuB,SAAS,qBAAqB,SAAS,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,EAAE,SAAsB9C,EAAK2D,GAAmB,CAAC,SAAsB3D,EAAK4D,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,GAAK,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,WAAW,CAAC,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACC,EAAYC,EAAgBC,IAAyBX,EAAMY,GAAU,CAAC,SAAS,CAACH,GAAa,IAAI,CAAC,CAAC,UAAU9B,GAAmB,GAAGC,EAAW,EAAEiC,MAAUlC,KAAqB,GAAuBhC,EAAKkD,EAAY,CAAC,GAAG,aAAajB,EAAW,GAAG,SAAsBjC,EAAKmE,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUnC,EAAkB,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB4C,EAAiB,SAAS,YAAY,SAAsB9C,EAAK2D,GAAmB,CAAC,SAAsB3D,EAAK4D,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,GAAK,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,EAAE,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,WAAW,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACO,GAAWC,GAAeC,KAAwBtE,EAAKiE,GAAU,CAAC,SAASG,IAAY,IAAI,CAAC,CAAC,UAAUtC,EAAmB,GAAGC,GAAY,UAAUF,EAAkB,EAAE0C,MAASzC,IAAqB,GAAuB9B,EAAKkD,EAAY,CAAC,GAAG,aAAanB,EAAW,GAAG,SAAsB/B,EAAKmE,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUrC,CAAkB,EAAE,SAAsB9B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB4C,EAAiB,SAAS,YAAY,SAAsB9C,EAAKwD,EAA0B,CAAC,OAAO,GAAG,GAAGjC,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,OAAO,EAAE,EAAE,GAAG,GAAG,IAAI,KAAK,EAAE,EAAE,EAAE,GAAG6B,GAAqB,CAAC,UAAU,CAAC,MAAM,OAAO,GAAG7B,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,OAAO,EAAE,EAAE,GAAG,EAAE,IAAI,MAAM,EAAE,EAAE,CAAC,CAAC,EAAEY,EAAYI,CAAc,EAAE,SAAsBvC,EAAKyD,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBX,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB9C,EAAKwE,GAAO,CAAC,UAAU,GAAK,UAAU,CAAC,YAAY,4EAA4E,YAAY,QAAQ,YAAY,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,OAAO,UAAU,qEAAqE,UAAU,4EAA4E,UAAU,wBAAwB,UAAUC,GAAkB5C,EAAkB,EAAE,GAAGuB,GAAqB,CAAC,UAAU,CAAC,UAAU,CAAC,YAAY,4EAA4E,YAAY,QAAQ,YAAY,GAAG,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,EAAEjB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAER,EAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,EAAW,EAAG,EAAeoB,EAAMnD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB4C,EAAiB,SAAS,YAAY,SAAS,CAAcO,EAAMnD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB4C,EAAiB,SAAS,YAAY,SAAS,CAAc9C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,OAAOqD,GAAW,MAAM,CAAC,OAAO,EAAE,iBAAiBT,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGM,GAAqB,CAAC,UAAU,CAAC,SAAsBpD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,kDAAkD,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC,CAAC,EAAEiC,EAAYI,CAAc,CAAC,CAAC,EAAevC,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,OAAOqD,GAAW,MAAM,CAAC,OAAO,EAAE,iBAAiBT,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGM,GAAqB,CAAC,UAAU,CAAC,SAAsBpD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,kDAAkD,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,OAAOqD,GAAW,MAAM,CAAC,OAAO,EAAE,iBAAiBT,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGM,GAAqB,CAAC,UAAU,CAAC,SAAsBpD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,kDAAkD,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC,CAAC,EAAEiC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmC,GAAI,CAAC,kFAAkF,gFAAgF,0TAA0T,+VAA+V,0RAA0R,oIAAoI,wGAAwG,+PAA+P,4QAA4Q,sQAAsQ,wGAAwG,6RAA6R,yQAAyQ,iKAAiK,iIAAiI,+FAA+F,8EAA8E,0KAA0K,yFAAyF,8EAA8E,+DAA+D,iEAAiE,yFAAyF,+DAA+D,uHAAuH,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,+bAA+b,EAUx8oBC,GAAgBC,GAAQhE,GAAU8D,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,WAAWA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,GAAgB,GAAGC,GAAY,GAAGC,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECXjqH,IAAIC,GAAEC,GAAE,OAAO,OAAOC,GAAE,OAAO,eAAeC,GAAE,OAAO,yBAAyBC,GAAE,OAAO,oBAAoBC,GAAE,OAAO,eAAeC,GAAE,OAAO,UAAU,eAAeC,GAAE,CAAC,EAAEN,IAAI,UAAU,CAAC,OAAOA,MAAM,EAAEG,GAAE,CAAC,EAAE,CAAC,CAAC,IAAIH,EAAE,CAAC,QAAQ,CAAC,CAAC,GAAG,QAAQA,CAAC,EAAEA,EAAE,OAAQ,EAAEO,GAAE,CAAC,EAAEP,EAAEI,EAAEE,IAAI,CAAC,GAAGN,GAAa,OAAOA,GAAjB,UAAgC,OAAOA,GAAnB,WAAqB,QAAQO,KAAKJ,GAAEH,CAAC,EAAEK,GAAE,KAAK,EAAEE,CAAC,GAAGA,IAAIH,GAAGH,GAAE,EAAEM,EAAE,CAAC,IAAI,IAAIP,EAAEO,CAAC,EAAE,WAAW,EAAED,EAAEJ,GAAEF,EAAEO,CAAC,IAAID,EAAE,UAAU,CAAC,EAAE,OAAO,CAAE,EAAEE,GAAE,CAAC,EAAEN,EAAEC,KAAKA,EAAQ,GAAN,KAAQH,GAAEI,GAAE,CAAC,CAAC,EAAE,CAAC,EAAEG,GAIlc,CAACL,GAAG,GAAG,EAAE,WAAWC,EAAEF,GAAEE,EAAE,UAAU,CAAC,MAAM,EAAE,WAAW,EAAE,CAAC,EAAE,CAAC,GAAGM,GAAEH,GAAE,CAAC,4CAA4C,EAAEN,EAAE,CAAC,IAAIC,EAAE,EAAiB,UAAU,CAAC,SAASF,EAAEA,EAAEC,EAAE,CAAC,GAAe,OAAOD,GAAnB,WAAqB,MAAM,UAAU,uHAAuHA,EAAE,GAAG,EAAE,KAAK,aAAaA,EAAE,KAAK,cAAc,SAASA,EAAE,CAAC,GAAG,EAAE,CAACA,GAAQA,EAAE,QAAP,IAAc,MAAO,GAAE,IAAIC,EAAED,GAAGA,EAAE,aAAa,GAAYC,IAAT,OAAW,MAAO,KAAI,GAAa,OAAOA,GAAjB,UAAoBA,EAAE,EAAE,MAAM,UAAU,2CAA2CA,CAAC,EAAE,OAAOA,CAAE,EAAEA,CAAC,EAAE,KAAK,iBAAiB,SAASD,EAAE,CAAC,IAAIC,EAAED,GAAGA,EAAE,gBAAgB,GAAYC,IAAT,OAAW,OAAOG,EAAE,GAAe,OAAOH,GAAnB,WAAqB,MAAM,UAAU,uCAAuCA,CAAC,EAAE,OAAOA,CAAE,EAAEA,CAAC,EAAE,KAAK,YAAY,SAASD,EAAE,CAAC,IAAIC,EAAED,GAAGA,EAAE,WAAW,GAAYC,IAAT,OAAW,OAAO,SAASD,EAAE,CAAC,OAAOA,CAAE,EAAE,GAAe,OAAOC,GAAnB,WAAqB,MAAM,UAAU,kCAAkCA,CAAC,EAAE,OAAOA,CAAE,EAAEA,CAAC,EAAE,KAAK,UAAU,SAASD,EAAE,CAAC,GAAG,EAAE,CAACA,GAAQA,EAAE,QAAP,IAAc,OAAO,KAAK,IAAIC,EAAED,GAAGA,EAAE,SAAS,GAAYC,IAAT,OAAW,OAAsB,IAAI,IAAI,GAAUA,IAAP,KAAS,CAAC,IAAIC,EAAE,CAAC,MAAM,MAAM,SAAS,OAAO,EAAE,OAAO,SAASF,EAAE,CAAC,OAAOC,GAAe,OAAOA,EAAED,CAAC,GAAtB,UAAwB,CAAC,EAAE,GAAOE,EAAE,SAAN,EAAa,MAAM,UAAU,oCAAoCA,EAAE,KAAK,IAAI,CAAC,CAAE,CAAC,OAAOD,CAAE,EAAEA,CAAC,EAAE,KAAK,OAAO,KAAK,KAAK,KAAKA,GAAGA,EAAE,KAAKA,EAAE,KAAK,IAAK,CAAC,IAAIA,EAAED,EAAE,UAAU,OAAOC,EAAE,KAAK,SAASD,EAAE,CAAC,GAASA,GAAN,KAAQ,MAAM,UAAU,oEAAoE,OAAOA,CAAC,EAAE,GAAG,EAAE,IAAIC,EAAE,SAASD,EAAE,CAAC,IAAIC,EAAED,EAAE,OAAO,GAAUC,IAAP,MAAU,CAACA,EAAE,eAAeA,EAAE,KAAK,OAAOD,EAAE,cAAc,OAAOC,EAAE,IAAIC,EAAE,CAAC,cAAc,GAAG,KAAK,CAAC,EAAE,UAAU,CAAC,CAAC,EAAE,OAAOF,EAAE,OAAOE,EAAEF,EAAE,iBAAiB,UAAU,EAAE,SAASA,EAAEC,EAAE,CAAC,IAAIC,EAAE,GAAGD,EAAE,cAAc,GAAOA,EAAE,KAAK,SAAX,EAAkB,CAACK,EAAEL,CAAC,EAAE,MAAO,CAAC,GAAG,CAACC,EAAEF,EAAE,aAAaC,EAAE,IAAI,CAAE,OAAOC,EAAE,CAAC,OAAOG,EAAEL,EAAEC,EAAE,UAAU,sJAAsJ,OAAOC,CAAC,EAAE,GAAG,CAAC,CAAE,CAAC,GAAG,CAACA,GAAe,OAAOA,EAAE,MAArB,WAA0B,OAAOG,EAAEL,EAAEC,EAAE,UAAU,yJAAyJ,OAAOC,CAAC,EAAE,GAAG,CAAC,EAAEA,EAAE,KAAK,SAASF,EAAE,CAAC,GAAG,CAACO,EAAEP,CAAC,EAAE,MAAM,UAAU,qKAAqK,OAAOA,CAAC,EAAE,GAAG,EAAE,GAAGA,EAAE,SAASC,EAAE,KAAK,OAAO,MAAM,UAAU;AAAA;AAAA;AAAA,EAAuN,OAAOA,EAAE,IAAI,EAAE;AAAA;AAAA;AAAA,EAAgB,OAAOD,CAAC,CAAC,EAAEM,EAAEL,CAAC,EAAE,QAAQC,EAAE,EAAEA,EAAED,EAAE,UAAU,OAAOC,IAAI,CAAC,IAAIC,EAAEH,EAAEE,CAAC,EAAEC,aAAa,MAAMF,EAAE,UAAUC,CAAC,EAAE,OAAOC,CAAC,EAAEF,EAAE,UAAUC,CAAC,EAAE,QAAQC,CAAC,CAAE,CAAC,CAAC,EAAE,MAAM,SAASD,EAAE,CAACG,EAAEL,EAAEC,EAAEC,CAAC,CAAE,CAAC,CAAE,GAAGF,EAAEE,CAAC,CAAE,CAAC,EAAEA,CAAE,EAAE,IAAI,EAAEA,EAAE,KAAK,UAAUC,EAAE,KAAK,YAAYH,CAAC,EAAE,GAAGE,EAAE,CAAC,IAAIE,EAAEF,EAAE,IAAIC,CAAC,EAAE,GAAGC,EAAE,CAAC,IAAII,EAAEP,EAAE,YAAYA,EAAE,UAAU,CAAC,GAAG,OAAO,IAAI,QAAQ,SAASD,EAAE,CAACQ,EAAE,KAAK,UAAU,CAACR,EAAEI,CAAC,CAAE,CAAC,CAAE,CAAC,CAAE,CAAC,CAACH,EAAE,KAAK,KAAKD,CAAC,EAAE,IAAIS,GAAE,IAAI,QAAQ,SAAST,EAAEE,EAAE,CAACD,EAAE,UAAU,KAAK,CAAC,QAAQD,EAAE,OAAOE,CAAC,CAAC,CAAE,CAAC,EAAE,OAAOA,GAAGA,EAAE,IAAIC,EAAEM,EAAC,EAAEA,EAAE,EAAER,EAAE,SAAS,SAASD,EAAE,CAAC,GAAG,CAACO,EAAEP,CAAC,EAAE,MAAM,UAAU,0EAA0EA,EAAE,GAAG,EAAE,QAAQC,EAAE,CAAC,EAAEC,EAAE,EAAEA,EAAEF,EAAE,OAAOE,IAAID,EAAE,KAAK,KAAK,KAAKD,EAAEE,CAAC,CAAC,EAAE,MAAM,SAASF,EAAE,CAAC,OAAOA,CAAE,CAAC,CAAC,EAAE,OAAO,QAAQ,IAAIC,CAAC,CAAE,EAAEA,EAAE,MAAM,SAASD,EAAE,CAAC,IAAIC,EAAE,KAAK,UAAU,GAAGA,EAAE,CAAC,IAAIC,EAAE,KAAK,YAAYF,CAAC,EAAEC,EAAE,OAAOC,CAAC,CAAE,CAAC,OAAO,IAAK,EAAED,EAAE,SAAS,UAAU,CAAC,IAAID,EAAE,KAAK,UAAU,OAAOA,GAAGA,EAAE,MAAM,EAAE,IAAK,EAAEC,EAAE,MAAM,SAASD,EAAEC,EAAE,CAAC,IAAIC,EAAE,KAAK,UAAU,GAAGA,EAAE,CAAC,IAAIC,EAAEC,EAAE,KAAK,YAAYJ,CAAC,EAAWE,EAAE,IAAIE,CAAC,IAAhB,SAAoBH,aAAa,OAAOE,EAAE,QAAQ,OAAOF,CAAC,GAAG,MAAM,UAAU,CAAC,CAAC,EAAEE,EAAE,QAAQ,QAAQF,CAAC,EAAEC,EAAE,IAAIE,EAAED,CAAC,EAAG,CAAC,OAAO,IAAK,EAAEH,CAAE,EAAE,EAAEI,EAAY,OAAO,SAAjB,UAAsC,OAAO,QAAQ,UAA3B,WAAoC,SAASJ,EAAE,CAACE,IAAIA,EAAE,QAAQ,QAAQ,GAAGA,EAAE,KAAK,UAAU,CAAC,QAAQ,SAASF,CAAC,CAAE,CAAC,CAAE,EAAc,OAAO,cAAnB,WAAgC,SAASA,EAAE,CAAC,aAAaA,CAAC,CAAE,EAAE,SAASA,EAAE,CAAC,WAAWA,CAAC,CAAE,EAAE,SAASK,EAAEL,EAAEC,EAAEC,EAAE,CAACI,EAAEL,CAAC,EAAE,QAAQE,EAAE,EAAEA,EAAEF,EAAE,KAAK,OAAOE,IAAIH,EAAE,MAAMC,EAAE,KAAKE,CAAC,CAAC,EAAEF,EAAE,UAAUE,CAAC,EAAE,OAAOD,CAAC,CAAE,CAAC,SAASI,EAAEN,EAAE,CAAC,GAAGA,EAAE,UAAU,QAAQC,EAAE,EAAEA,EAAED,EAAE,UAAU,OAAOC,IAAID,EAAE,UAAUC,CAAC,EAAE,CAAE,CAAC,SAASM,EAAEP,EAAE,CAAC,OAAgB,OAAOA,GAAjB,UAA2BA,IAAP,MAAoB,OAAOA,EAAE,QAAnB,WAAgCA,EAAE,SAAN,GAAcA,EAAE,OAAO,GAAG,OAAO,UAAU,eAAe,KAAKA,EAAEA,EAAE,OAAO,CAAC,EAAG,CAACC,EAAE,QAAQ,CAAE,CAAC,CAAC,EAAEU,GAAEF,GAAEC,GAAE,CAAC,EAAEE,GAAE,CAAC,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,QAAQ,EAAE,QAAQ,CAAC,EAAEC,GAAE,KAAK,CAAC,WAAW,CAAC,OAAO,KAAK,MAAO,CAAC,aAAa,EAAE,CAAC,IAAIZ,EAAE,KAAK,MAAM,OAAO,GAAG,EAAE,KAAK,OAAO,GAAGA,GAAG,MAAM,MAAM,uBAAuB,CAAE,CAAC,WAAW,CAAC,IAAI,EAAEW,GAAE,MAAM,KAAK,aAAa,CAAC,EAAE,IAAIX,EAAE,KAAK,KAAK,SAAS,KAAK,MAAM,EAAE,OAAO,KAAK,QAAQ,EAAEA,CAAE,CAAC,YAAY,CAAC,IAAI,EAAEW,GAAE,OAAO,KAAK,aAAa,CAAC,EAAE,IAAIX,EAAE,KAAK,KAAK,UAAU,KAAK,MAAM,EAAE,OAAO,KAAK,QAAQ,EAAEA,CAAE,CAAC,YAAY,CAAC,IAAI,EAAEW,GAAE,OAAO,KAAK,aAAa,CAAC,EAAE,IAAIX,EAAE,KAAK,KAAK,UAAU,KAAK,MAAM,EAAE,OAAO,KAAK,QAAQ,EAAEA,CAAE,CAAC,YAAY,CAAC,IAAI,EAAE,KAAK,cAAc,EAAE,OAAO,OAAO,CAAC,CAAE,CAAC,eAAe,CAAC,IAAI,EAAEW,GAAE,UAAU,KAAK,aAAa,CAAC,EAAE,IAAIX,EAAE,KAAK,KAAK,aAAa,KAAK,MAAM,EAAE,OAAO,KAAK,QAAQ,EAAEA,CAAE,CAAC,UAAU,CAAC,IAAI,EAAEW,GAAE,KAAK,KAAK,aAAa,CAAC,EAAE,IAAIX,EAAE,KAAK,KAAK,QAAQ,KAAK,MAAM,EAAE,OAAO,KAAK,QAAQ,EAAEA,CAAE,CAAC,WAAW,CAAC,IAAI,EAAEW,GAAE,MAAM,KAAK,aAAa,CAAC,EAAE,IAAIX,EAAE,KAAK,KAAK,SAAS,KAAK,MAAM,EAAE,OAAO,KAAK,QAAQ,EAAEA,CAAE,CAAC,WAAW,CAAC,IAAI,EAAEW,GAAE,MAAM,KAAK,aAAa,CAAC,EAAE,IAAIX,EAAE,KAAK,KAAK,SAAS,KAAK,MAAM,EAAE,OAAO,KAAK,QAAQ,EAAEA,CAAE,CAAC,WAAW,CAAC,IAAI,EAAE,KAAK,aAAa,EAAE,OAAO,OAAO,CAAC,CAAE,CAAC,cAAc,CAAC,IAAI,EAAEW,GAAE,SAAS,KAAK,aAAa,CAAC,EAAE,IAAIX,EAAE,KAAK,KAAK,YAAY,KAAK,MAAM,EAAE,OAAO,KAAK,QAAQ,EAAEA,CAAE,CAAC,aAAa,CAAC,IAAI,EAAEW,GAAE,QAAQ,KAAK,aAAa,CAAC,EAAE,IAAIX,EAAE,KAAK,KAAK,WAAW,KAAK,MAAM,EAAE,OAAO,KAAK,QAAQ,EAAEA,CAAE,CAAC,aAAa,CAAC,IAAI,EAAEW,GAAE,QAAQ,KAAK,aAAa,CAAC,EAAE,IAAIX,EAAE,KAAK,KAAK,WAAW,KAAK,MAAM,EAAE,OAAO,KAAK,QAAQ,EAAEA,CAAE,CAAC,UAAU,EAAE,CAAC,IAAIA,EAAE,KAAK,OAAOC,EAAED,EAAE,EAAE,EAAE,KAAK,MAAM,SAASA,EAAEC,CAAC,EAAE,OAAO,KAAK,OAAOA,EAAE,CAAE,CAAC,YAAY,CAAC,IAAI,EAAE,KAAK,WAAW,EAAED,EAAE,KAAK,UAAU,CAAC,EAAE,OAAO,KAAK,QAAQ,OAAOA,CAAC,CAAE,CAAC,UAAU,CAAC,IAAI,EAAE,KAAK,WAAW,EAAE,OAAO,KAAK,MAAM,CAAC,CAAE,CAAC,YAAY,EAAE,CAAC,KAAK,MAAM,EAAE,KAAK,OAAO,EAAE,KAAK,KAAKa,GAAE,KAAK,KAAK,EAAE,KAAK,QAAQ,IAAI,WAAY,CAAC,EAAE,SAASA,GAAE,EAAE,CAAC,OAAO,IAAI,SAAS,EAAE,OAAO,EAAE,WAAW,EAAE,UAAU,CAAE,CAElpM,IAAIC,GAAe,OAAOC,GAApB,IAA2BC,GAAEF,IAAe,OAAOC,GAAO,qBAA1B,WACtC,SAASE,EAAE,KAAKjB,EAAE,CAAC,GAAG,CAAC,EAAE,MAAM,MAAM,mBAAmBA,EAAE,OAAO,EAAE,KAAKA,EAAE,KAAK,GAAG,EAAE,GAAG,CAAE,CAAC,SAASkB,GAAE,EAAE,CAAC,MAAM,MAAM,qBAAqB,CAAC,EAAE,CAAE,CAC9I,IAAiBC,GAAE,GAAG,GAAG,EAAE,EAAEC,GAAE,GAAG,EAAE,IAAI,EAAE,IAAIC,GAAE,GAAG,IAAI,EAAE,GAAG,EAAEC,GAAE,CAAC,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,KAAKF,GAAE,CAAC,EAAE,MAAMA,GAAE,EAAE,EAAE,MAAMA,GAAE,EAAE,EAAE,MAAM,OAAO,iBAAiB,SAAS,EAAE,OAAO,CAAC,GAAG,OAAO,EAAE,EAAE,EAAEG,GAAE,CAAC,MAAMJ,GAAE,CAAC,EAAE,OAAOA,GAAE,EAAE,EAAE,OAAOA,GAAE,EAAE,EAAE,OAAO,OAAO,iBAAiB,UAAU,OAAO,CAAC,GAAG,OAAO,EAAE,EAAE,OAAO,CAAC,EAAE,KAAKE,GAAE,CAAC,EAAE,MAAMA,GAAE,EAAE,EAAE,MAAMA,GAAE,EAAE,EAAE,MAAM,OAAO,iBAAiB,SAAS,OAAO,CAAC,GAAG,OAAO,EAAE,EAAE,OAAO,CAAC,CAAC,EAC5a,SAASG,GAAE,EAAE,CAAC,OAAO,OAAO,SAAS,CAAC,CAAE,CAAC,SAASC,GAAE,EAAE,CAAC,OAAc,IAAP,IAAS,CACvE,IAAIC,GAAE,MAAMC,EAAC,CAAC,OAAO,WAAWC,EAAE,CAAC,GAAG,CAACC,EAAE,EAAEC,CAAC,EAAEF,EAAE,MAAM,GAAG,EAAE,IAAI,MAAM,EAAE,OAAOG,EAAEP,GAAEK,CAAC,EAAE,iBAAiB,EAAEE,EAAEP,GAAE,CAAC,EAAE,gBAAgB,EAAEO,EAAEP,GAAEM,CAAC,EAAE,gBAAgB,EAAE,IAAIH,GAAEE,EAAE,EAAEC,CAAC,CAAE,CAAC,UAAU,CAAC,MAAM,GAAG,KAAK,OAAO,IAAI,KAAK,MAAM,IAAI,KAAK,MAAM,EAAG,CAAC,OAAO,KAAKF,EAAE,CAAC,IAAIC,EAAED,EAAE,WAAW,EAAE,EAAEA,EAAE,WAAW,EAAEE,EAAEF,EAAE,WAAW,EAAE,OAAO,IAAID,GAAEE,EAAE,EAAEC,CAAC,CAAE,CAAC,MAAMH,EAAE,CAACA,EAAE,YAAY,KAAK,OAAO,EAAEA,EAAE,YAAY,KAAK,MAAM,EAAEA,EAAE,YAAY,KAAK,MAAM,CAAE,CAAC,QAAQA,EAAE,CAAC,OAAO,KAAK,QAAQA,EAAE,QAAQ,GAAG,KAAK,QAAQA,EAAE,QAAQ,EAAE,KAAK,OAAOA,EAAE,OAAO,GAAG,KAAK,OAAOA,EAAE,OAAO,GAAGI,EAAE,KAAK,SAASJ,EAAE,MAAM,EAAE,EAAG,CAAC,YAAYA,EAAEC,EAAEC,EAAE,CAAC,KAAK,QAAQF,EAAE,KAAK,OAAOC,EAAE,KAAK,OAAOC,CAAE,CAAC,EAC9kB,SAASG,GAAE,EAAE,CAAC,GAAGP,GAAE,CAAC,EAAE,MAAO,GAAY,OAAO,EAAE,KAAK,CAAC,KAAKQ,EAAE,MAAM,MAAO,GAAa,KAAKA,EAAE,QAAQ,MAAO,GAAe,KAAKA,EAAE,MAAM,MAAO,GAAa,KAAKA,EAAE,KAAK,MAAO,GAAY,KAAKA,EAAE,KAAK,MAAO,GAAY,KAAKA,EAAE,KAAK,MAAO,GAAY,KAAKA,EAAE,gBAAgB,MAAO,IAAwB,KAAKA,EAAE,KAAK,MAAO,GAAY,KAAKA,EAAE,OAAO,MAAO,GAAc,KAAKA,EAAE,OAAO,MAAO,GAAc,KAAKA,EAAE,SAAS,MAAO,IAAiB,KAAKA,EAAE,OAAO,MAAO,IAAe,QAAQC,GAAE,CAAC,CAAE,CAAC,CAAC,SAASC,GAAEP,EAAE,CAAC,IAAI,EAAEA,EAAE,WAAW,EAAEQ,EAAE,CAAC,EAAE,QAAQN,EAAE,EAAEA,EAAE,EAAEA,IAAI,CAAC,IAAID,EAAEF,GAAE,KAAKC,CAAC,EAAEQ,EAAE,KAAKP,CAAC,CAAE,CAAC,MAAM,CAAC,KAAKI,EAAE,MAAM,MAAMG,CAAC,CAAE,CAAC,SAASC,GAAET,EAAE,EAAE,CAAC,QAAQQ,KAAKR,EAAE,YAAY,EAAE,MAAM,MAAM,EAAE,EAAE,OAAOD,GAAE,MAAMC,EAAEQ,CAAC,CAAE,CAAC,SAASE,GAAEV,EAAE,EAAEQ,EAAE,CAAC,IAAIN,EAAEF,EAAE,MAAM,OAAO,EAAE,EAAE,MAAM,OAAO,GAAGE,EAAE,EAAE,MAAO,GAAG,GAAGA,EAAE,EAAE,MAAO,GAAE,QAAQS,EAAE,EAAEA,EAAET,EAAES,IAAI,CAAC,IAAIT,EAAEF,EAAE,MAAMW,CAAC,EAAEC,EAAE,EAAE,MAAMD,CAAC,EAAEE,EAAEd,GAAE,QAAQG,EAAEU,EAAEJ,CAAC,EAAE,GAAOK,IAAJ,EAAM,OAAOA,CAAE,CAAC,MAAO,EAAE,CAAC,SAASC,GAAE,EAAE,CAAC,MAAM,CAAC,KAAKT,EAAE,QAAQ,MAAU,EAAE,UAAU,IAAhB,CAAiB,CAAE,CAAC,SAASU,GAAE,EAAEf,EAAE,CAAC,EAAE,WAAWA,EAAE,MAAM,EAAE,CAAC,CAAE,CAAC,SAASgB,GAAE,EAAEhB,EAAE,CAAC,OAAO,EAAE,MAAMA,EAAE,MAAM,GAAG,EAAE,MAAMA,EAAE,MAAM,EAAE,CAAE,CAAC,SAASiB,GAAE,EAAE,CAAC,MAAM,CAAC,KAAKZ,EAAE,MAAM,MAAM,EAAE,WAAW,CAAC,CAAE,CAAC,SAASa,GAAE,EAAElB,EAAE,CAAC,EAAE,YAAYA,EAAE,KAAK,CAAE,CAAC,SAASmB,GAAE,EAAEnB,EAAE,CAAC,OAAO,EAAE,MAAMA,EAAE,MAAM,GAAG,EAAE,MAAMA,EAAE,MAAM,EAAE,CAAE,CAAC,SAASoB,GAAE,EAAE,CAAC,IAAIpB,EAAE,EAAE,UAAU,EAAEC,EAAE,IAAI,KAAKD,CAAC,EAAE,MAAM,CAAC,KAAKK,EAAE,KAAK,MAAMJ,EAAE,YAAY,CAAC,CAAE,CAAC,SAASoB,GAAE,EAAErB,EAAE,CAAC,IAAIC,EAAE,IAAI,KAAKD,EAAE,KAAK,EAAE,EAAEC,EAAE,QAAQ,EAAE,EAAE,WAAW,CAAC,CAAE,CAAC,SAASqB,GAAE,EAAEtB,EAAE,CAAC,IAAIC,EAAE,IAAI,KAAK,EAAE,KAAK,EAAE,EAAE,IAAI,KAAKD,EAAE,KAAK,EAAE,OAAOC,EAAE,EAAE,GAAGA,EAAE,EAAE,EAAE,CAAE,CAAC,SAASsB,GAAE,EAAE,CAAC,MAAM,CAAC,KAAKlB,EAAE,KAAK,MAAM,EAAE,WAAW,CAAC,CAAE,CAAC,SAASmB,GAAE,EAAExB,EAAE,CAAC,EAAE,YAAYA,EAAE,KAAK,CAAE,CAAC,SAASyB,GAAE,EAAEzB,EAAE,CAAC,OAAO,EAAE,MAAMA,EAAE,MAAM,GAAG,EAAE,MAAMA,EAAE,MAAM,EAAE,CAAE,CAAC,SAAS0B,GAAE,EAAE,CAAC,MAAM,CAAC,KAAKrB,EAAE,KAAK,MAAM,EAAE,WAAW,CAAC,CAAE,CAAC,SAASsB,GAAE,EAAE3B,EAAE,CAAC,EAAE,YAAYA,EAAE,KAAK,CAAE,CAAC,SAAS4B,GAAE,EAAE5B,EAAE,CAAC,OAAO,EAAE,MAAMA,EAAE,MAAM,GAAG,EAAE,MAAMA,EAAE,MAAM,EAAE,CAAE,CAAC,SAAS6B,GAAE,EAAE,CAAC,MAAM,CAAC,KAAKxB,EAAE,KAAK,MAAM,EAAE,SAAS,CAAC,CAAE,CAAC,SAASyB,GAAE,EAAE9B,EAAE,CAAC,EAAE,UAAUA,EAAE,KAAK,CAAE,CAAC,SAAS+B,GAAG,EAAE/B,EAAE,CAAC,IAAIC,EAAE,KAAK,UAAU,EAAE,KAAK,EAAE,EAAE,KAAK,UAAUD,EAAE,KAAK,EAAE,OAAOC,EAAE,EAAE,GAAGA,EAAE,EAAE,EAAE,CAAE,CAAC,SAAS+B,GAAG,EAAE,CAAC,MAAM,CAAC,KAAK3B,EAAE,OAAO,MAAM,EAAE,YAAY,CAAC,CAAE,CAAC,SAAS4B,GAAG,EAAEjC,EAAE,CAAC,EAAE,aAAaA,EAAE,KAAK,CAAE,CAAC,SAASkC,GAAG,EAAElC,EAAE,CAAC,OAAO,EAAE,MAAMA,EAAE,MAAM,GAAG,EAAE,MAAMA,EAAE,MAAM,EAAE,CAAE,CAAC,SAASmC,GAAGnC,EAAE,CAAC,IAAI,EAAEA,EAAE,WAAW,EAAEQ,EAAE,CAAC,EAAE,QAAQN,EAAE,EAAEA,EAAE,EAAEA,IAAI,CAAC,IAAID,EAAED,EAAE,WAAW,EAAEQ,EAAEP,CAAC,EAAEF,GAAE,KAAKC,CAAC,CAAE,CAAC,MAAM,CAAC,KAAKK,EAAE,OAAO,MAAMG,CAAC,CAAE,CAAC,SAAS4B,GAAGpC,EAAE,EAAE,CAAC,IAAIQ,EAAE,OAAO,QAAQ,EAAE,KAAK,EAAE,OAAO,CAACP,EAAEC,CAAC,IAAIF,EAAE,YAAYQ,EAAE,MAAM,EAAEA,GAAGR,EAAE,YAAYC,CAAC,EAAEF,GAAE,MAAMC,EAAEE,CAAC,CAAE,CAAC,SAASmC,GAAGrC,EAAE,EAAEQ,EAAE,CAAC,IAAIN,EAAE,OAAO,KAAKF,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,OAAO,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,GAAGE,EAAE,OAAO,EAAE,OAAO,MAAO,GAAG,GAAGA,EAAE,OAAO,EAAE,OAAO,MAAO,GAAE,QAAQU,EAAE,EAAEA,EAAEV,EAAE,OAAOU,IAAI,CAAC,IAAIC,EAAEX,EAAEU,CAAC,EAAE0B,EAAE,EAAE1B,CAAC,EAAE,GAAGC,EAAEyB,EAAE,MAAO,GAAG,GAAGzB,EAAEyB,EAAE,MAAO,GAAE,IAAIC,EAAEvC,EAAE,MAAMa,CAAC,GAAG,KAAK2B,EAAE,EAAE,MAAMF,CAAC,GAAG,KAAKG,EAAE1C,GAAE,QAAQwC,EAAEC,EAAEhC,CAAC,EAAE,GAAOiC,IAAJ,EAAM,OAAOA,CAAE,CAAC,MAAO,EAAE,CAAC,SAASC,GAAG,EAAE,CAAC,MAAM,CAAC,KAAKrC,EAAE,gBAAgB,MAAM,EAAE,SAAS,CAAC,CAAE,CAAC,SAASsC,GAAG,EAAE3C,EAAE,CAAC,EAAE,UAAUA,EAAE,KAAK,CAAE,CAAC,SAAS4C,GAAG,EAAE5C,EAAE,CAAC,IAAIC,EAAE,KAAK,UAAU,EAAE,KAAK,EAAE,EAAE,KAAK,UAAUD,EAAE,KAAK,EAAE,OAAOC,EAAE,EAAE,GAAGA,EAAE,EAAE,EAAE,CAAE,CAAC,SAAS4C,GAAG,EAAE,CAAC,MAAM,CAAC,KAAKxC,EAAE,SAAS,MAAM,EAAE,WAAW,CAAC,CAAE,CAAC,SAASyC,GAAG,EAAE9C,EAAE,CAAC,EAAE,YAAYA,EAAE,KAAK,CAAE,CAAC,SAAS+C,GAAG,EAAE/C,EAAE,CAAC,IAAIC,EAAE,EAAE,MAAM,EAAED,EAAE,MAAM,OAAOC,EAAE,EAAE,GAAGA,EAAE,EAAE,EAAE,CAAE,CAAC,SAAS+C,GAAG,EAAE,CAAC,MAAM,CAAC,KAAK3C,EAAE,OAAO,MAAM,EAAE,WAAW,CAAC,CAAE,CAAC,SAAS4C,GAAG,EAAEjD,EAAE,CAAC,EAAE,YAAYA,EAAE,KAAK,CAAE,CAAC,SAASkD,GAAG,EAAElD,EAAEC,EAAE,CAAC,IAAI,EAAE,EAAE,MAAMC,EAAEF,EAAE,MAAM,OAAgCC,EAAE,OAA3B,IAAkC,EAAE,EAAE,MAAM,YAAY,EAAEC,EAAEF,EAAE,MAAM,YAAY,GAAG,EAAEE,EAAG,GAAG,EAAEA,EAAE,EAAE,CAAE,EAAE,GAAG,CAAC,EAAE,KAAK,SAASH,EAAE,CAAC,IAAIC,EAAED,EAAE,UAAU,EAAE,OAAOC,EAAE,CAAC,IAAK,GAAY,OAAO,KAAK,IAAK,GAAa,OAAOO,GAAER,CAAC,EAAE,IAAK,GAAe,OAAOe,GAAEf,CAAC,EAAE,IAAK,GAAa,OAAOkB,GAAElB,CAAC,EAAE,IAAK,GAAY,OAAOqB,GAAErB,CAAC,EAAE,IAAK,GAAY,OAAOwB,GAAExB,CAAC,EAAE,IAAK,GAAY,OAAO2B,GAAE3B,CAAC,EAAE,IAAK,GAAY,OAAO8B,GAAE9B,CAAC,EAAE,IAAK,GAAc,OAAOiC,GAAGjC,CAAC,EAAE,IAAK,GAAc,OAAOoC,GAAGpC,CAAC,EAAE,IAAK,IAAwB,OAAO2C,GAAG3C,CAAC,EAAE,IAAK,IAAiB,OAAO8C,GAAG9C,CAAC,EAAE,IAAK,IAAe,OAAOiD,GAAGjD,CAAC,EAAE,QAAQO,GAAEN,CAAC,CAAE,CAAC,EAAE,EAAE,MAAM,SAASD,EAAEC,EAAE,CAAC,IAAIC,EAAEG,GAAEJ,CAAC,EAAE,GAAGD,EAAE,WAAWE,CAAC,EAAE,CAACJ,GAAEG,CAAC,EAAE,OAAOA,EAAE,KAAK,CAAC,KAAKK,EAAE,MAAM,OAAOI,GAAEV,EAAEC,CAAC,EAAE,KAAKK,EAAE,QAAQ,OAAOU,GAAEhB,EAAEC,CAAC,EAAE,KAAKK,EAAE,MAAM,OAAOa,GAAEnB,EAAEC,CAAC,EAAE,KAAKK,EAAE,KAAK,OAAOgB,GAAEtB,EAAEC,CAAC,EAAE,KAAKK,EAAE,KAAK,OAAOmB,GAAEzB,EAAEC,CAAC,EAAE,KAAKK,EAAE,KAAK,OAAOsB,GAAE5B,EAAEC,CAAC,EAAE,KAAKK,EAAE,KAAK,OAAOyB,GAAE/B,EAAEC,CAAC,EAAE,KAAKK,EAAE,OAAO,OAAO4B,GAAGlC,EAAEC,CAAC,EAAE,KAAKK,EAAE,OAAO,OAAO+B,GAAGrC,EAAEC,CAAC,EAAE,KAAKK,EAAE,gBAAgB,OAAOsC,GAAG5C,EAAEC,CAAC,EAAE,KAAKK,EAAE,SAAS,OAAOyC,GAAG/C,EAAEC,CAAC,EAAE,KAAKK,EAAE,OAAO,OAAO4C,GAAGlD,EAAEC,CAAC,EAAE,QAAQM,GAAEN,CAAC,CAAE,CAAC,EAAE,EAAE,QAAQ,SAASD,EAAEC,EAAEC,EAAE,CAAC,IAAIO,EAAEJ,GAAEL,CAAC,EAAEG,EAAEE,GAAEJ,CAAC,EAAE,GAAGQ,EAAEN,EAAE,MAAO,GAAG,GAAGM,EAAEN,EAAE,MAAO,GAAE,GAAGL,GAAEE,CAAC,GAAGF,GAAEG,CAAC,EAAE,MAAO,GAAE,OAAOD,EAAE,KAAK,CAAC,KAAKM,EAAE,MAAM,OAAOF,EAAEH,EAAE,OAAOK,EAAE,KAAK,EAAEK,GAAEX,EAAEC,EAAEC,CAAC,EAAE,KAAKI,EAAE,QAAQ,OAAOF,EAAEH,EAAE,OAAOK,EAAE,OAAO,EAAEW,GAAEjB,EAAEC,CAAC,EAAE,KAAKK,EAAE,MAAM,OAAOF,EAAEH,EAAE,OAAOK,EAAE,KAAK,EAAEc,GAAEpB,EAAEC,CAAC,EAAE,KAAKK,EAAE,KAAK,OAAOF,EAAEH,EAAE,OAAOK,EAAE,IAAI,EAAEiB,GAAEvB,EAAEC,CAAC,EAAE,KAAKK,EAAE,KAAK,OAAOF,EAAEH,EAAE,OAAOK,EAAE,IAAI,EAAEoB,GAAE1B,EAAEC,CAAC,EAAE,KAAKK,EAAE,KAAK,OAAOF,EAAEH,EAAE,OAAOK,EAAE,IAAI,EAAEuB,GAAE7B,EAAEC,CAAC,EAAE,KAAKK,EAAE,KAAK,OAAOF,EAAEH,EAAE,OAAOK,EAAE,IAAI,EAAE0B,GAAGhC,EAAEC,CAAC,EAAE,KAAKK,EAAE,OAAO,OAAOF,EAAEH,EAAE,OAAOK,EAAE,MAAM,EAAE6B,GAAGnC,EAAEC,CAAC,EAAE,KAAKK,EAAE,OAAO,OAAOF,EAAEH,EAAE,OAAOK,EAAE,MAAM,EAAEgC,GAAGtC,EAAEC,EAAEC,CAAC,EAAE,KAAKI,EAAE,gBAAgB,OAAOF,EAAEH,EAAE,OAAOK,EAAE,eAAe,EAAEuC,GAAG7C,EAAEC,CAAC,EAAE,KAAKK,EAAE,SAAS,OAAOF,EAAEH,EAAE,OAAOK,EAAE,QAAQ,EAAE0C,GAAGhD,EAAEC,CAAC,EAAE,KAAKK,EAAE,OAAO,OAAOF,EAAEH,EAAE,OAAOK,EAAE,MAAM,EAAE6C,GAAGnD,EAAEC,EAAEC,CAAC,EAAE,QAAQK,GAAEP,CAAC,CAAE,CAAC,CAAE,GAAGA,KAAIA,GAAE,CAAC,EAAE,EACh5J,IAAogCoD,GAAG,EAAEC,GAAG,IAAIC,GAAG,CAAC,IACphC,IACA,IACA,IACA,IACA,GAAG,EAAEC,GAAG,MAAM,EAAEC,IAAI,CAAC,IAAIC,EAAE,EAAE,OAAO,CAAC,GAAG,CAAC,IAAI,EAAE,MAAM,MAAM,EAAED,CAAC,EAAE,GAAG,CAACF,GAAG,SAAS,EAAE,MAAM,GAAG,EAAEG,EAAEL,GAAG,OAAO,CAAE,OAAOM,EAAE,CAAC,GAAGF,GAAG,QAAQ,SAAS,EAAEC,EAAEL,GAAG,MAAMM,CAAE,CAAC,MAAMC,GAAGF,CAAC,CAAE,CAAC,EAAE,eAAeE,GAAG,EAAE,CAAC,IAAIH,EAAE,KAAK,MAAMH,IAAI,KAAK,OAAO,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,MAAM,IAAI,QAAQK,GAAG,CAAC,WAAWA,EAAEF,CAAC,CAAE,CAAC,CAAE,CACzR,eAAeI,GAAG,EAAEJ,EAAE,CAAC,IAAIC,EAAEI,GAAGL,CAAC,EAAE,EAAE,CAAC,EAAEM,EAAE,EAAE,QAAQJ,KAAKD,EAAE,EAAE,KAAK,GAAGC,EAAE,IAAI,IAAIA,EAAE,GAAG,CAAC,EAAE,EAAEI,GAAGJ,EAAE,GAAGA,EAAE,KAAK,IAAIK,EAAE,IAAI,IAAI,CAAC,EAAEC,EAAE,EAAE,KAAK,GAAG,EAAED,EAAE,aAAa,IAAI,QAAQC,CAAC,EAAE,IAAIC,EAAE,MAAMV,GAAGQ,CAAC,EAAE,GAASE,EAAE,SAAR,IAAe,MAAM,MAAM,mBAAmBA,EAAE,MAAM,IAAIA,EAAE,UAAU,EAAE,EAAE,IAAIC,EAAE,MAAMD,EAAE,YAAY,EAAEE,EAAE,IAAI,WAAWD,CAAC,EAAE,GAAGC,EAAE,SAASL,EAAE,MAAM,MAAM,4CAA4C,EAAE,IAAIM,EAAE,IAAIC,GAAGC,EAAE,EAAE,QAAQZ,KAAKD,EAAE,CAAC,IAAID,EAAEE,EAAE,GAAGA,EAAE,KAAKD,EAAEa,EAAEd,EAAEe,EAAEJ,EAAE,SAASG,EAAEb,CAAC,EAAEW,EAAE,MAAMV,EAAE,KAAKa,CAAC,EAAED,EAAEb,CAAE,CAAC,OAAOD,EAAE,IAAIE,GAAGU,EAAE,KAAKV,EAAE,KAAKA,EAAE,GAAGA,EAAE,IAAI,CAAC,CAAE,CAAC,IAAIW,GAAG,KAAK,CAAC,KAAK,EAAEb,EAAE,CAAC,QAAQC,KAAK,KAAK,OAAO,CAAC,GAAG,EAAEA,EAAE,MAAM,MAAM,GAAG,EAAEA,EAAE,IAAI,SAAS,GAAG,EAAED,EAAEC,EAAE,IAAI,MAAM,IAAI,EAAE,EAAEA,EAAE,MAAMK,EAAE,EAAEN,EAAE,OAAOC,EAAE,KAAK,MAAM,EAAEK,CAAC,CAAE,CAAC,MAAM,MAAM,cAAc,CAAE,CAAC,MAAM,EAAEN,EAAE,CAAC,IAAIC,EAAE,EAAE,EAAEA,EAAED,EAAE,OAAOM,EAAE,EAAEC,EAAE,KAAK,OAAO,OAAO,KAAKD,EAAEC,EAAED,IAAI,CAAC,IAAIJ,EAAE,KAAK,OAAOI,CAAC,EAAE,GAAGU,EAAEd,EAAE,eAAe,EAAE,EAAED,EAAEC,EAAE,KAAK,CAAC,GAAGD,EAAEC,EAAE,MAAM,CAAC,IAAIa,EAAEd,EAAEC,EAAE,MAAMI,EAAEJ,EAAE,KAAK,SAAS,EAAEa,CAAC,EAAEf,EAAEiB,GAAGX,EAAEN,CAAC,EAAEC,EAAEC,EAAE,KAAM,CAAC,KAAM,CAAC,CAAC,KAAKK,EAAED,EAAEC,IAAI,CAAC,IAAIL,EAAE,KAAK,OAAOK,EAAE,CAAC,EAAE,GAAGS,EAAEd,EAAE,eAAe,EAAE,EAAE,EAAEA,EAAE,OAAO,CAAC,GAAG,EAAEA,EAAE,IAAI,CAAC,IAAID,EAAE,EAAEC,EAAE,MAAMI,EAAEJ,EAAE,KAAK,SAASD,CAAC,EAAED,EAAEiB,GAAGjB,EAAEM,CAAC,EAAE,EAAEJ,EAAE,GAAI,CAAC,KAAM,CAAC,CAAC,IAAIM,EAAE,CAAC,MAAMP,EAAE,IAAI,EAAE,KAAKD,CAAC,EAAES,EAAEF,EAAED,EAAE,KAAK,OAAO,OAAOA,EAAEG,EAAED,CAAC,CAAE,CAAC,aAAa,CAAC,KAAK,OAAO,CAAC,CAAE,CAAC,EAAE,SAASS,GAAG,EAAEjB,EAAE,CAAC,IAAIC,EAAE,EAAE,OAAOD,EAAE,OAAO,EAAE,IAAI,WAAWC,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC,EAAE,EAAE,IAAID,EAAE,EAAE,MAAM,EAAE,CAAE,CAAC,SAASK,GAAG,EAAE,CAACW,EAAE,EAAE,OAAO,EAAE,8BAA8B,EAAE,IAAIhB,EAAE,CAAC,GAAG,CAAC,EAAE,KAAK,CAACE,EAAEF,IAAIE,EAAE,KAAKF,EAAE,IAAI,EAAEC,EAAE,CAAC,EAAE,QAAQC,KAAKF,EAAE,CAAC,IAAIA,EAAEC,EAAE,OAAO,EAAEc,EAAEd,EAAED,CAAC,EAAEe,GAAGb,EAAE,MAAMa,EAAE,GAAGd,EAAED,CAAC,EAAE,CAAC,KAAKe,EAAE,KAAK,GAAG,KAAK,IAAIA,EAAE,GAAGb,EAAE,EAAE,CAAC,EAAED,EAAE,KAAKC,CAAC,CAAE,CAAC,OAAOD,CAAE,CAC/8C,IAqC0rBiB,GAAG,MAAMC,EAAC,CAAC,OAAO,KAAK,EAAE,CAAC,IAAIC,EAAE,IAAID,GAAEE,EAAE,EAAE,WAAW,EAAE,QAAQF,EAAE,EAAEA,EAAEE,EAAEF,IAAI,CAAC,IAAIA,EAAE,EAAE,WAAW,EAAEE,EAAEC,GAAE,KAAK,CAAC,EAAEF,EAAE,SAASD,EAAEE,CAAC,CAAE,CAAC,OAAOD,CAAE,CAAC,MAAMD,EAAE,CAAC,OAAO,CAACI,EAAE,CAAC,IAAIJ,EAAE,YAAY,KAAK,OAAO,IAAI,EAAE,KAAK,QAAQA,EAAE,YAAYI,CAAC,EAAED,GAAE,MAAMH,EAAE,CAAC,CAAE,CAAC,SAAS,CAAC,IAAIG,EAAE,CAAC,EAAE,OAAO,CAACH,EAAEI,CAAC,IAAI,KAAK,OAAOD,EAAEH,CAAC,EAAEI,EAAE,OAAOD,CAAE,CAAC,SAASA,EAAEH,EAAE,CAAC,KAAK,OAAO,IAAIG,EAAEH,CAAC,CAAE,CAAC,SAASG,EAAE,CAAC,OAAO,KAAK,OAAO,IAAIA,CAAC,CAAE,CAAC,aAAa,CAAC,KAAK,OAAsB,IAAI,GAAI,CAAC,EAAEE,GAAG,KAAK,CAAC,WAAW,CAAC,OAAO,KAAK,eAAeC,GAAG,KAAK,GAAG,EAAE,KAAK,MAAM,GAAG,CAAC,GAAG,CAAC,EAAE,GAAG,MAAM,MAAM,mBAAmB,EAAE,MAAM,IAAI,EAAE,UAAU,EAAE,EAAE,IAAIN,EAAE,MAAM,EAAE,YAAY,EAAEI,EAAE,IAAI,WAAWJ,CAAC,EAAE,EAAE,IAAIO,GAAEH,CAAC,EAAEF,EAAE,CAAC,EAAEM,EAAE,EAAE,WAAW,EAAE,QAAQL,EAAE,EAAEA,EAAEK,EAAEL,IAAI,CAAC,IAAIA,EAAE,EAAE,UAAU,EAAEH,EAAED,GAAG,KAAK,CAAC,EAAEK,EAAE,EAAE,UAAU,EAAED,EAAEK,EAAE,IAAIC,GAAE,KAAK,GAAGN,EAAEC,CAAC,EAAEM,EAAEF,EAAE,SAAS,EAAEG,EAAE,CAAC,QAAQD,EAAE,KAAKV,EAAE,QAAQ,CAAC,EAAE,KAAK,WAAW,MAAMU,EAAEC,CAAC,EAAET,EAAE,KAAKS,CAAC,CAAE,CAAC,OAAOT,CAAE,CAAC,EAAE,KAAK,YAAa,CAAC,YAAY,EAAE,CAAC,OAAO,KAAK,WAAW,KAAK,CAAC,CAAE,CAAC,YAAY,EAAEF,EAAE,CAAC,KAAK,GAAG,EAAE,KAAK,IAAIA,EAAE,KAAK,WAAW,IAAIY,GAAE,QAAQ,MAAMT,GAAG,CAAC,IAAIH,EAAEG,EAAE,IAAIA,GAAG,CAAC,IAAIH,EAAES,GAAE,WAAWN,CAAC,EAAE,MAAM,CAAC,KAAKH,EAAE,OAAO,GAAGA,EAAE,OAAOA,EAAE,MAAM,CAAE,CAAC,EAAyB,OAArB,MAAMa,GAAG,KAAK,IAAIb,CAAC,GAAW,IAAI,CAACA,EAAEI,IAAI,CAAC,IAAIH,EAAE,IAAIM,GAAEP,CAAC,EAAEE,EAAEH,GAAG,KAAKE,CAAC,EAAEO,EAAEL,EAAEC,CAAC,EAAE,OAAOU,EAAEN,EAAE,iBAAiB,EAAE,CAAC,QAAQA,EAAE,KAAKN,EAAE,QAAQ,CAAC,CAAE,CAAC,CAAE,CAAC,CAAE,CAAC,EAAEa,GAAG,KAAK,CAAC,MAAM,WAAW,CAAkE,OAA3D,MAAM,QAAQ,IAAI,KAAK,OAAO,IAAI,MAAMZ,GAAGA,EAAE,UAAU,CAAC,CAAC,GAAW,KAAK,CAAE,CAAC,MAAM,aAAa,EAAE,CAAC,OAAO,QAAQ,IAAI,EAAE,IAAIA,GAAG,CAAC,IAAIH,EAAES,GAAE,WAAWN,CAAC,EAAEC,EAAE,KAAK,OAAOJ,EAAE,OAAO,EAAE,OAAOc,EAAEV,EAAE,eAAe,EAAEA,EAAE,YAAYD,CAAC,CAAE,CAAC,CAAC,CAAE,CAAC,aAAa,EAAEH,EAAE,CAAC,IAAII,EAAEK,GAAE,WAAW,EAAE,OAAO,EAAE,EAAEA,GAAE,WAAWT,EAAE,OAAO,EAAE,OAAOI,EAAE,QAAQ,CAAC,CAAE,CAAC,cAAcJ,EAAE,EAAEC,EAAE,CAAC,OAAOE,GAAE,QAAQH,EAAE,EAAEC,CAAC,CAAE,CAAC,YAAY,EAAE,CAAC,KAAK,QAAQ,EAAE,KAAK,OAAO,KAAK,QAAQ,OAAO,KAAK,QAAQ,KAAK,QAAQ,QAAQ,KAAK,gBAAgB,KAAK,QAAQ,gBAAgB,KAAK,OAAO,KAAK,QAAQ,OAAO,IAAI,CAACE,EAAEH,IAAI,IAAIK,GAAGL,EAAEG,CAAC,CAAC,CAAE,CAAC,ECxDl9E,IAAIa,GAAE,CAAC,EAAE,eAAsBC,GAAgB,EAAE,CAAC,IAAIC,EAAEF,GAAE,CAAC,EAAE,GAAGE,EAAE,OAAO,MAAMA,EAAE,CAAE,CCCqH,IAAIC,GAAE,CAAC,UAAU,CAAC,WAAW,GAAG,KAAKC,EAAE,KAAK,EAAE,GAAG,CAAC,WAAW,GAAG,KAAKA,EAAE,MAAM,EAAE,UAAU,CAAC,WAAW,GAAG,KAAKA,EAAE,KAAK,EAAE,WAAW,CAAC,WAAW,GAAG,KAAKA,EAAE,MAAM,EAAE,UAAU,CAAC,WAAW,CAAC,WAAW,GAAG,KAAKA,EAAE,MAAM,EAAE,WAAW,GAAG,KAAKA,EAAE,KAAK,EAAE,UAAU,CAAC,WAAW,GAAG,KAAKA,EAAE,IAAI,EAAE,eAAe,CAAC,WAAW,GAAG,KAAKA,EAAE,MAAM,EAAE,UAAU,CAAC,WAAW,GAAG,KAAKA,EAAE,MAAM,EAAE,UAAU,CAAC,WAAW,GAAG,KAAKA,EAAE,MAAM,EAAE,UAAU,CAAC,WAAW,CAAC,WAAW,GAAG,KAAKA,EAAE,MAAM,EAAE,WAAW,GAAG,KAAKA,EAAE,KAAK,CAAC,EAAEC,GAAE,IAAIC,GAAEC,GAAE,IAAIC,GAAEH,EAAC,EAAEI,GAAE,CAAC,qBAAqB,CAAC,QAAQ,IAAIC,GAAE,CAAC,OAAO,CAAC,IAAI,IAAI,wCAAwC,8FAA8F,EAAE,KAAK,QAAQ,YAAY,OAAO,CAAC,EAAE,QAAQ,CAAC,EAAE,gBAAgBC,GAAE,OAAOR,EAAC,CAAC,CAAC,EAAE,YAAY,YAAY,EAASS,GAAQH,GAAEI,GAAEJ,GAAE,CAAC,UAAU,CAAC,aAAa,GAAG,MAAM,QAAQ,KAAKL,EAAE,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAE,MAAM,EAAE,UAAU,CAAC,eAAe,4CAA4C,aAAa,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,MAAM,SAAS,KAAKA,EAAE,wBAAwB,EAAE,UAAU,CAAC,eAAe,4CAA4C,aAAa,CAAC,WAAW,EAAE,MAAM,OAAO,KAAKA,EAAE,wBAAwB,EAAE,UAAU,CAAC,aAAa,kGAAkG,MAAM,aAAa,KAAKA,EAAE,KAAK,EAAE,UAAU,CAAC,aAAa,yGAAyG,MAAM,WAAW,KAAKA,EAAE,KAAK,EAAE,UAAU,CAAC,iBAAiB,CAAC,EAAE,MAAM,OAAO,KAAKA,EAAE,IAAI,EAAE,eAAe,CAAC,eAAe,4CAA4C,MAAM,WAAW,KAAKA,EAAE,mBAAmB,EAAE,WAAW,CAAC,eAAe,4CAA4C,MAAM,OAAO,KAAKA,EAAE,mBAAmB,CAAC,CAAC,ECAi3B,IAAMU,GAAaC,EAASC,EAAO,EAAQC,GAAmCC,GAA0BC,EAAO,GAAG,EAAQC,GAAWL,EAASM,EAAK,EAAQC,GAAmCJ,GAA0BK,CAAS,EAAQC,GAAqCC,GAA6BN,EAAO,IAAI,CAAC,OAAO,YAAY,SAASO,GAAsB,QAAQ,WAAW,CAAC,EAAQC,GAAgBZ,EAASa,EAAU,EAAQC,GAAoBd,EAASe,EAAc,EAAQC,GAAmBhB,EAASiB,EAAa,EAAQC,GAAclB,EAASmB,EAAQ,EAAQC,GAAcpB,EAASqB,EAAQ,EAAQC,GAAyBtB,EAASuB,EAAmB,EAAQC,GAAcxB,EAASyB,EAAQ,EAAQC,GAAgB1B,EAAS2B,EAAU,EAAQC,GAAiB5B,EAAS6B,EAAW,EAAQC,GAAY9B,EAAS+B,EAAM,EAAQC,GAAiBhC,EAASiC,EAAW,EAAQC,GAAUlC,EAASmC,EAAI,EAAQC,GAAgBC,GAAOjC,EAAO,GAAG,EAAQkC,GAAY,CAAC,UAAU,6CAA6C,UAAU,sBAAsB,UAAU,8CAA8C,UAAU,oBAAoB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,EAAQC,GAAU,CAAC,OAAO,aAAa,QAAQ,KAAK,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,MAAM,IAAI,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,OAAOF,GAAU,WAAW,GAAG,aAAa,OAAO,WAAWC,GAAY,QAAQ,UAAU,KAAK,QAAQ,EAAQE,GAAY,CAAC,OAAOH,GAAU,OAAO,GAAM,WAAW,GAAG,aAAa,OAAO,WAAWC,GAAY,QAAQ,UAAU,KAAK,QAAQ,EAAQG,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAAY,CAAC,MAAM,GAAG,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,GAAG,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAU,CAAC,CAAC,MAAAC,EAAM,SAAAC,EAAS,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAKC,GAAaJ,CAAK,EAAE,OAAOE,EAASC,CAAI,CAAE,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,YAAY,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,GAA6BC,EAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,GAAY,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,EAAY,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,EAAY,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,GAAmB,mBAAAC,EAAmB,YAAAC,EAAY,mBAAAC,EAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,GAAGC,EAAS,EAAE/C,GAASI,CAAK,EAAQ4C,GAAeC,GAAQ,IAAID,GAAiB,OAAUnC,CAAY,EAAE,CAAC,OAAUA,CAAY,CAAC,EAAEqC,GAAYF,EAAQ,EAAE,GAAK,CAACG,EAAYC,EAAmB,EAAEC,GAA8BhC,EAAQpD,GAAY,EAAK,EAAQqF,GAAe,OAAmRC,GAAkBC,EAAGrF,GAAkB,GAApR,CAAagD,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQsC,EAAY,IAASvF,GAAU,EAAiBiF,IAAc,YAAtB,GAAmEO,EAAOC,GAAU,EAAQC,GAAa,IAAS1F,GAAU,EAAiB,EAAC,YAAY,YAAY,WAAW,EAAE,SAASiF,CAAW,EAAlE,GAAqGU,GAAUC,GAAkB,WAAW,EAAQC,GAAWtD,EAAO,IAAI,EAAQuD,GAAWF,GAAkB,WAAW,EAAQG,GAAWxD,EAAO,IAAI,EAAQyD,GAAa,IAAShG,GAAU,EAAiB,EAAC,YAAY,WAAW,EAAE,SAASiF,CAAW,EAAtD,GAAyFgB,GAAa,IAAQ,CAACjG,GAAU,GAAiBiF,IAAc,YAAuC,OAAAiB,GAAiB,CAAC,CAAC,EAAsBtE,EAAKuE,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAjG,EAAiB,EAAE,SAAsBkG,EAAMC,EAAY,CAAC,GAAGnD,GAAUT,EAAgB,SAAS,CAAcb,EAAKH,GAAU,CAAC,MAAM,kGAAkG,CAAC,EAAe2E,EAAMvI,EAAO,IAAI,CAAC,GAAGgH,GAAU,UAAUS,EAAGD,GAAkB,iBAAiBpC,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcpB,EAAK1D,GAAqC,CAAC,UAAU,gBAAgB,mBAAmB,4BAAkB,SAAsBkI,EAAMvI,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,SAAS,CAAcuI,EAAMvI,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,SAAS,CAAcuI,EAAMvI,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAc+D,EAAK/D,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsB+D,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBrD,EAAW2E,EAAS,CAAC,SAAsBH,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAC,eAA4BxE,EAAK,KAAK,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW2E,EAAS,CAAC,SAAsBH,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAC,eAA4BxE,EAAK,KAAK,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW2E,EAAS,CAAC,SAAsBH,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAC,eAA4BxE,EAAK,KAAK,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsBH,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAC,eAA4BxE,EAAK,KAAK,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,OAAOvB,GAAW,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,+FAA+F,qBAAqB,kDAAkD,0BAA0B,UAAU,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,wGAAwG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,OAAOtB,GAAY,MAAM,CAAC,wCAAwC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe8F,EAAMzI,GAAmC,CAAC,QAAQ6C,GAAW,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,UAAU,QAAQC,GAAW,UAAU,GAAK,SAAS,CAAC8E,EAAY,GAAgB3D,EAAK6E,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAK/D,EAAO,EAAE,CAAC,UAAU,8CAA8C,mBAAmB,iBAAiB,SAAsB+D,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGnC,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAK8E,EAA0B,CAAC,OAAO,GAAG,GAAG5D,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,SAAsBlB,EAAK3D,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB2D,EAAKlE,GAAQ,CAAC,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,4EAA4E,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6H,EAAY,GAAgB3D,EAAK/D,EAAO,IAAI,CAAC,UAAU,gCAAgC,mBAAmB,iBAAiB,SAAsB+D,EAAK+E,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4BhF,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGnC,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAK8E,EAA0B,CAAC,OAAO,GAAG,GAAG5D,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,SAAsBlB,EAAK3D,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB2D,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU2B,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsBhF,EAAKlE,GAAQ,CAAC,UAAU,iBAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUkJ,EAAc,CAAC,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehF,EAAK8E,EAA0B,CAAC,SAAsB9E,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,MAAS,EAAE,UAAU,CAAC,kBAAkB,MAAS,CAAC,EAAE,SAAsBrD,EAAK5D,GAAmC,CAAC,QAAQ8C,GAAW,UAAU,2BAA2B,wBAAwB,UAAU,QAAQL,GAAW,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,UAAU,GAAK,kBAAkB,GAAK,QAAQ,YAAY,kBAAkBC,GAAmB,SAAsBkB,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsBrD,EAAK7D,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,UAAU,QAAQ,GAAK,cAAc,GAAK,QAAQ,qEAAqE,QAAQ,SAAS,OAAO,uEAAuE,UAAU,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6D,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,sBAAiB,SAAsBwE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,sBAAiB,SAAS,CAACV,GAAa,GAAgB9D,EAAK8E,EAA0B,CAAC,OAAO,GAAG,GAAG5D,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,SAAsBlB,EAAK3D,EAAU,CAAC,UAAU,sEAAsE,mBAAmB,WAAW,KAAK,WAAW,OAAO,YAAY,QAAQ,YAAY,SAAsB2D,EAAKtD,GAAW,CAAC,UAAU,GAAK,UAAU,SAAS,OAAO,OAAO,GAAG,YAAY,UAAU,MAAM,SAAS,YAAY,UAAU,KAAK,KAAK,WAAW,UAAU,QAAQ,QAAQ,YAAY,UAAU,KAAK,MAAM,OAAO,UAAU,cAAc,UAAU,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8H,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcxE,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBrD,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,+LAA+L,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,+LAA+L,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGnC,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,EAAE,KAAK,EAAE,EAAE,UAAU,CAAC,OAAO,IAAI,MAAM,eAAeA,GAAmB,OAAO,OAAO,sCAAsC,EAAE,UAAU,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAK8E,EAA0B,CAAC,OAAO,IAAI,MAAM,gBAAgB5D,GAAmB,OAAO,OAAO,iDAAiD,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,EAAE,KAAK,GAAG,SAAsBlB,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC,EAAE,SAAsBrD,EAAK3D,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB2D,EAAKpD,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,YAAY,UAAU,GAAK,MAAM,CAAC,OAAO,OAAO,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkH,GAAa,GAAgB9D,EAAK,MAAM,CAAC,UAAU,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,sBAAiB,SAAsBwE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,sBAAiB,uBAAuB,GAAK,SAAS,CAAcxE,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAS8D,GAAa,GAAgB9D,EAAK8E,EAA0B,CAAC,OAAO,GAAG,MAAM,UAAU,GAAG5D,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,EAAE,EAAE,SAAsBlB,EAAK3D,EAAU,CAAC,UAAU,sEAAsE,OAAO,YAAY,QAAQ,YAAY,SAAsB2D,EAAKlD,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,aAAa,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekD,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBwE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcxE,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBrD,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,gDAAgD,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,gDAAgD,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,oLAAoL,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE8D,GAAa,GAAgB9D,EAAK,MAAM,CAAC,UAAU,2DAA2D,CAAC,EAAE8D,GAAa,GAAgB9D,EAAK,MAAM,CAAC,UAAU,0DAA0D,CAAC,EAAeA,EAAK8E,EAA0B,CAAC,SAAsB9E,EAAK3D,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB2D,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,EAAE,EAAE,YAAY,GAAG,eAAe,GAAK,WAAW,CAAC,MAAM,GAAM,KAAK,GAAK,SAAS,OAAO,CAAC,CAAC,EAAE,SAAsBrD,EAAK9C,GAAS,CAAC,MAAM,SAAS,UAAU,GAAG,YAAY,CAAC,UAAU,wEAAwE,aAAa,EAAE,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,KAAK,GAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,EAAE,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,GAAM,cAAc,EAAI,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAM,EAAE,MAAM,CAAc8C,EAAK/D,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsB+D,EAAKiF,GAAmB,CAAC,SAAsBjF,EAAKb,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK+F,GAAU,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,MAAM,YAAY,UAAU,CAAC,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,GAAO,KAAK,YAAY,EAAE,QAAQ,CAAC,CAAC,UAAU,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,aAAa,WAAW,KAAK,cAAc,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,KAAK,SAAS,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,CAAC,CAAC,EAAE,aAAa,aAAa,KAAK,cAAc,EAAE,CAAC,MAAM,YAAY,UAAU,CAAC,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,GAAK,KAAK,YAAY,EAAE,QAAQ,CAAC,CAAC,UAAU,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,aAAa,WAAW,KAAK,cAAc,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,KAAK,SAAS,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,CAAC,CAAC,EAAE,aAAa,aAAa,KAAK,cAAc,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACC,EAAWC,GAAeC,KAAwBvF,EAAKwF,GAAU,CAAC,SAASH,GAAY,IAAI,CAAC,CAAC,GAAGzD,GAAY,UAAUF,GAAmB,UAAUC,GAAmB,UAAUH,GAAmB,UAAUC,EAAkB,EAAEgE,MAASjE,KAAqB,GAAGG,KAAqB,GAAuB3B,EAAKyE,EAAY,CAAC,GAAG,aAAa7C,EAAW,GAAG,SAAsB5B,EAAK0F,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAU/D,EAAkB,EAAE,SAAsB3B,EAAK/D,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsB+D,EAAK8E,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsB9E,EAAK3D,EAAU,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB2D,EAAKhD,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUyE,GAAmB,SAAS,YAAY,UAAUD,GAAmB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAUE,GAAmB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,EAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5B,EAAK/D,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsB+D,EAAKiF,GAAmB,CAAC,SAAsBjF,EAAKb,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK+F,GAAU,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,MAAM,YAAY,UAAU,CAAC,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,GAAO,KAAK,YAAY,EAAE,QAAQ,CAAC,CAAC,UAAU,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,aAAa,WAAW,KAAK,cAAc,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,KAAK,SAAS,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,CAAC,CAAC,EAAE,aAAa,aAAa,KAAK,cAAc,EAAE,CAAC,MAAM,YAAY,UAAU,CAAC,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,GAAK,KAAK,YAAY,EAAE,QAAQ,CAAC,CAAC,UAAU,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,aAAa,WAAW,KAAK,cAAc,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,KAAK,SAAS,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,CAAC,CAAC,EAAE,aAAa,aAAa,KAAK,cAAc,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACO,EAAYC,GAAgBC,KAAyB7F,EAAKwF,GAAU,CAAC,SAASG,GAAa,IAAI,CAAC,CAAC,GAAG1D,GAAY,UAAUF,GAAmB,UAAUC,GAAmB,UAAUH,GAAmB,UAAUC,EAAkB,EAAEgE,MAAUjE,KAAqB,GAAGG,KAAqB,GAAuBhC,EAAKyE,EAAY,CAAC,GAAG,aAAaxC,EAAW,GAAG,SAAsBjC,EAAK0F,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAU1D,EAAkB,EAAE,SAAsBhC,EAAK/D,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsB+D,EAAK8E,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsB9E,EAAK3D,EAAU,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB2D,EAAKhD,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU8E,GAAmB,SAAS,YAAY,UAAUD,GAAmB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAUE,GAAmB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,EAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejC,EAAK/D,EAAO,IAAI,CAAC,UAAU,eAAe,SAAsB+D,EAAKiF,GAAmB,CAAC,SAAsBjF,EAAKb,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK+F,GAAU,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,MAAM,YAAY,UAAU,CAAC,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,GAAO,KAAK,YAAY,EAAE,QAAQ,CAAC,CAAC,UAAU,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,aAAa,WAAW,KAAK,cAAc,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,KAAK,SAAS,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,CAAC,CAAC,EAAE,aAAa,aAAa,KAAK,cAAc,EAAE,CAAC,MAAM,YAAY,UAAU,CAAC,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,GAAK,KAAK,YAAY,EAAE,QAAQ,CAAC,CAAC,UAAU,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,aAAa,WAAW,KAAK,cAAc,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,KAAK,SAAS,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,CAAC,CAAC,EAAE,aAAa,aAAa,KAAK,cAAc,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACW,EAAYC,GAAgBC,KAAyBjG,EAAKwF,GAAU,CAAC,SAASO,GAAa,IAAI,CAAC,CAAC,GAAGzD,GAAY,UAAUF,GAAmB,UAAUC,GAAmB,UAAUH,GAAmB,UAAUC,EAAkB,EAAE+D,MAAUhE,KAAqB,GAAGG,KAAqB,GAAuBrC,EAAKyE,EAAY,CAAC,GAAG,aAAanC,EAAW,GAAG,SAAsBtC,EAAK0F,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUrD,EAAkB,EAAE,SAAsBrC,EAAK/D,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsB+D,EAAK8E,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsB9E,EAAK3D,EAAU,CAAC,UAAU,2BAA2B,gBAAgB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB2D,EAAKhD,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUmF,GAAmB,SAAS,YAAY,UAAUD,GAAmB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAUE,GAAmB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,EAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAK/D,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsB+D,EAAKiF,GAAmB,CAAC,SAAsBjF,EAAKb,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK+F,GAAU,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,MAAM,YAAY,UAAU,CAAC,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,GAAO,KAAK,YAAY,EAAE,QAAQ,CAAC,CAAC,UAAU,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,aAAa,WAAW,KAAK,cAAc,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,KAAK,SAAS,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,CAAC,CAAC,EAAE,aAAa,aAAa,KAAK,cAAc,EAAE,CAAC,MAAM,YAAY,UAAU,CAAC,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,GAAK,KAAK,YAAY,EAAE,QAAQ,CAAC,CAAC,UAAU,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,aAAa,WAAW,KAAK,cAAc,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,KAAK,SAAS,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,CAAC,CAAC,EAAE,aAAa,aAAa,KAAK,cAAc,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACe,EAAYC,GAAgBC,KAAyBrG,EAAKwF,GAAU,CAAC,SAASW,GAAa,IAAI,CAAC,CAAC,GAAGxD,GAAY,UAAUF,GAAmB,UAAUC,GAAmB,UAAUH,GAAmB,UAAUC,EAAkB,EAAE8D,MAAU/D,KAAqB,GAAGG,KAAqB,GAAuB1C,EAAKyE,EAAY,CAAC,GAAG,aAAa9B,EAAW,GAAG,SAAsB3C,EAAK0F,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUhD,EAAkB,EAAE,SAAsB1C,EAAK/D,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsB+D,EAAK8E,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsB9E,EAAK3D,EAAU,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB2D,EAAKhD,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUwF,GAAmB,SAAS,YAAY,UAAUD,GAAmB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAUE,GAAmB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,EAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3C,EAAK/D,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsB+D,EAAKiF,GAAmB,CAAC,SAAsBjF,EAAKb,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK+F,GAAU,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,MAAM,YAAY,UAAU,CAAC,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,GAAO,KAAK,YAAY,EAAE,QAAQ,CAAC,CAAC,UAAU,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,aAAa,WAAW,KAAK,cAAc,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,KAAK,SAAS,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,CAAC,CAAC,EAAE,aAAa,aAAa,KAAK,cAAc,EAAE,CAAC,MAAM,YAAY,UAAU,CAAC,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,GAAK,KAAK,YAAY,EAAE,QAAQ,CAAC,CAAC,UAAU,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,aAAa,WAAW,KAAK,cAAc,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,KAAK,SAAS,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,CAAC,CAAC,EAAE,aAAa,aAAa,KAAK,cAAc,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACmB,EAAYC,GAAgBC,KAAyBzG,EAAKwF,GAAU,CAAC,SAASe,GAAa,IAAI,CAAC,CAAC,GAAGvD,GAAY,UAAUF,GAAmB,UAAUC,GAAmB,UAAUH,GAAmB,UAAUC,EAAkB,EAAE6D,MAAU9D,KAAqB,GAAGG,KAAqB,GAAuB/C,EAAKyE,EAAY,CAAC,GAAG,aAAazB,EAAW,GAAG,SAAsBhD,EAAK0F,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAU3C,EAAkB,EAAE,SAAsB/C,EAAK/D,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsB+D,EAAK8E,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsB9E,EAAK3D,EAAU,CAAC,UAAU,2BAA2B,gBAAgB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB2D,EAAKhD,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU6F,GAAmB,SAAS,YAAY,UAAUD,GAAmB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAUE,GAAmB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,EAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,MAAM,GAAM,KAAK,GAAK,SAAS,QAAQ,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehD,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,sBAAiB,SAAsBwE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,sBAAiB,SAAS,CAACV,GAAa,GAAgB9D,EAAK,MAAM,CAAC,UAAU,0DAA0D,CAAC,EAAewE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,mBAAmB,SAAS,CAAcxE,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBrD,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,iCAAiC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,iCAAiC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,sBAAsB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBrD,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,+FAA+F,qBAAqB,+CAA+C,0BAA0B,UAAU,uBAAuB,SAAS,0BAA0B,QAAQ,sBAAsB,oEAAoE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,+FAA+F,qBAAqB,kDAAkD,0BAA0B,UAAU,uBAAuB,SAAS,0BAA0B,QAAQ,sBAAsB,oEAAoE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,+FAA+F,qBAAqB,+CAA+C,0BAA0B,UAAU,uBAAuB,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,MAAM,CAAC,wCAAwC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewE,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,mBAAmB,SAAS,CAAcxE,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBrD,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,iCAAiC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,iCAAiC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,sBAAsB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBrD,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,+FAA+F,qBAAqB,+CAA+C,0BAA0B,UAAU,uBAAuB,SAAS,0BAA0B,QAAQ,sBAAsB,oEAAoE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,+FAA+F,qBAAqB,kDAAkD,0BAA0B,UAAU,uBAAuB,SAAS,0BAA0B,QAAQ,sBAAsB,oEAAoE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,+FAA+F,qBAAqB,+CAA+C,0BAA0B,UAAU,uBAAuB,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,MAAM,CAAC,wCAAwC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewE,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,mBAAmB,SAAS,CAAcxE,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBrD,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,sBAAsB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBrD,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,+FAA+F,qBAAqB,+CAA+C,0BAA0B,UAAU,uBAAuB,SAAS,0BAA0B,QAAQ,sBAAsB,oEAAoE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,+FAA+F,qBAAqB,kDAAkD,0BAA0B,UAAU,uBAAuB,SAAS,0BAA0B,QAAQ,sBAAsB,oEAAoE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,+FAA+F,qBAAqB,+CAA+C,0BAA0B,UAAU,uBAAuB,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,MAAM,CAAC,wCAAwC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewE,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,mBAAmB,SAAS,CAAcxE,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBrD,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,uCAAuC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,uCAAuC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,sBAAsB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBrD,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,+FAA+F,qBAAqB,+CAA+C,0BAA0B,UAAU,uBAAuB,SAAS,0BAA0B,QAAQ,sBAAsB,oEAAoE,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,+FAA+F,qBAAqB,kDAAkD,0BAA0B,UAAU,uBAAuB,SAAS,0BAA0B,QAAQ,sBAAsB,oEAAoE,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,+FAA+F,qBAAqB,+CAA+C,0BAA0B,UAAU,uBAAuB,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,MAAM,CAAC,wCAAwC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,sBAAiB,SAAsBwE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,sBAAiB,SAAS,CAACV,GAAa,GAAgB9D,EAAK8E,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ5D,GAAmB,OAAO,OAAO,uBAAuB,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,EAAE,SAAsBlB,EAAK3D,EAAU,CAAC,UAAU,sEAAsE,OAAO,YAAY,QAAQ,YAAY,SAAsB2D,EAAKlD,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,eAAe,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0H,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcxE,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBrD,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAewE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,SAAS,CAAcxE,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAsBwE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcxE,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,6FAA6F,qBAAqB,kDAAkD,0BAA0B,UAAU,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,uCAAuC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,+DAA+D,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOnC,GAAmB,OAAO,OAAO,iBAAiB,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,GAAG,GAAG,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,mCAAmC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,UAAU,CAAC,OAAO,IAAI,MAAM,OAAOA,GAAmB,OAAO,OAAO,iBAAiB,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAK8E,EAA0B,CAAC,OAAO,IAAI,MAAM,aAAa5D,GAAmB,OAAO,OAAO,8CAA8C,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,GAAG,SAAsBlB,EAAK3D,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB2D,EAAK5C,GAAoB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoH,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcxE,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,6FAA6F,qBAAqB,kDAAkD,0BAA0B,UAAU,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,kCAAkC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,uCAAuC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,8FAA8F,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOnC,GAAmB,OAAO,OAAO,iBAAiB,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,IAAI,GAAG,GAAG,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,mCAAmC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,EAAE,UAAU,CAAC,OAAO,IAAI,MAAM,OAAOA,GAAmB,OAAO,OAAO,iBAAiB,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAK8E,EAA0B,CAAC,OAAO,IAAI,MAAM,aAAa5D,GAAmB,OAAO,OAAO,8CAA8C,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,IAAI,GAAG,SAAsBlB,EAAK3D,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB2D,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBrD,EAAK1C,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekH,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,GAAGT,GAAU,IAAIE,GAAK,SAAS,CAAcO,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcxE,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,6FAA6F,qBAAqB,kDAAkD,0BAA0B,UAAU,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,uCAAuC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,6HAA6H,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOnC,GAAmB,OAAO,OAAO,iBAAiB,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,KAAK,GAAG,GAAG,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,mCAAmC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,EAAE,UAAU,CAAC,OAAO,IAAI,MAAM,OAAOA,GAAmB,OAAO,OAAO,iBAAiB,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAK8E,EAA0B,CAAC,OAAO,IAAI,MAAM,aAAa5D,GAAmB,OAAO,OAAO,8CAA8C,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,IAAI,GAAG,SAAsBlB,EAAK3D,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB2D,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBrD,EAAKxC,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,GAAGkE,GAAW,IAAIC,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeK,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,sBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,sBAAiB,SAAS,CAACV,GAAa,GAAgB9D,EAAK8E,EAA0B,CAAC,OAAO,GAAG,GAAG5D,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,SAAsBlB,EAAK3D,EAAU,CAAC,UAAU,sEAAsE,mBAAmB,WAAW,KAAK,WAAW,OAAO,YAAY,QAAQ,YAAY,SAAsB2D,EAAKtD,GAAW,CAAC,UAAU,GAAK,UAAU,SAAS,OAAO,OAAO,GAAG,YAAY,UAAU,MAAM,SAAS,YAAY,UAAU,aAAa,KAAK,WAAW,UAAU,UAAU,QAAQ,YAAY,UAAU,aAAa,MAAM,OAAO,UAAU,aAAa,UAAU,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesD,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBrD,EAAW2E,EAAS,CAAC,SAAsBH,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAC,iBAA8BxE,EAAK,KAAK,CAAC,CAAC,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsBH,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,CAAC,iBAA8BxE,EAAK,KAAK,CAAC,CAAC,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBwE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcxE,EAAK+E,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAAS4B,GAA6B3G,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOnC,GAAmB,OAAO,OAAO,iBAAiB,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,OAAO,iBAAiB,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAK8E,EAA0B,CAAC,OAAO,GAAG,MAAM,aAAa5D,GAAmB,OAAO,OAAO,mCAAmC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,SAAsBlB,EAAK3D,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB2D,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUsD,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB3G,EAAKtC,GAAY,CAAC,UAAU,iDAAiD,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAUiJ,EAAe,CAAC,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3G,EAAK+E,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAAS6B,GAA6B5G,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOnC,GAAmB,OAAO,OAAO,iBAAiB,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,OAAO,iBAAiB,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAK8E,EAA0B,CAAC,OAAO,GAAG,MAAM,aAAa5D,GAAmB,OAAO,OAAO,mCAAmC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,SAAsBlB,EAAK3D,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB2D,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUuD,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB5G,EAAKpC,GAAO,CAAC,UAAU,GAAM,UAAU,GAAK,UAAU,GAAK,OAAO,OAAO,UAAU,iBAAiB,GAAG,YAAY,SAAS,YAAY,UAAU,eAAe,UAAU,GAAK,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUgJ,EAAe,CAAC,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,YAAY,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5G,EAAK8E,EAA0B,CAAC,SAAsB9E,EAAK3D,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB2D,EAAKlC,GAAY,CAAC,MAAM,4EAA4E,kBAAkB,QAAQ,sBAAsB,SAAS,oBAAoB,OAAO,QAAQ,EAAE,KAAK,GAAM,OAAO,OAAO,WAAW,wEAAwE,WAAW,OAAO,UAAU,IAAI,GAAG,YAAY,SAAS,YAAY,UAAU,EAAE,cAAc,OAAO,OAAO,MAAM,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,SAAS,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0G,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,sBAAiB,SAAS,CAACJ,GAAa,GAAgBpE,EAAK,MAAM,CAAC,UAAU,4CAA4C,CAAC,EAAeA,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBrD,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,kFAAkF,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,kFAAkF,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAewE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcxE,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBwE,EAAMqC,GAAI,CAAC,UAAU,gBAAgB,QAAQ,EAAE,wBAAwB,GAAM,IAAI,s1SAAs1S,mBAAmB,GAAK,SAAS,CAAc7G,EAAK6G,GAAI,CAAC,UAAU,iBAAiB,QAAQ,EAAE,wBAAwB,GAAM,IAAI,uoBAAuoB,mBAAmB,EAAI,CAAC,EAAe7G,EAAK6G,GAAI,CAAC,UAAU,iBAAiB,QAAQ,EAAE,wBAAwB,GAAM,IAAI,8VAA8V,mBAAmB,EAAI,CAAC,EAAe7G,EAAK6G,GAAI,CAAC,UAAU,gBAAgB,QAAQ,EAAE,wBAAwB,GAAM,IAAI,sjBAAsjB,mBAAmB,EAAI,CAAC,EAAe7G,EAAK6G,GAAI,CAAC,UAAU,gBAAgB,QAAQ,EAAE,wBAAwB,GAAM,IAAI,whCAAwhC,mBAAmB,EAAI,CAAC,EAAe7G,EAAK6G,GAAI,CAAC,UAAU,gBAAgB,QAAQ,EAAE,wBAAwB,GAAM,IAAI,qmCAAqmC,mBAAmB,EAAI,CAAC,EAAe7G,EAAK6G,GAAI,CAAC,UAAU,iBAAiB,QAAQ,EAAE,wBAAwB,GAAM,IAAI,kmCAAkmC,mBAAmB,EAAI,CAAC,EAAe7G,EAAK6G,GAAI,CAAC,UAAU,iBAAiB,QAAQ,EAAE,wBAAwB,GAAM,IAAI,6jCAA6jC,mBAAmB,EAAI,CAAC,EAAe7G,EAAK6G,GAAI,CAAC,UAAU,gBAAgB,QAAQ,EAAE,wBAAwB,GAAM,IAAI,0jCAA0jC,mBAAmB,EAAI,CAAC,EAAe7G,EAAK6G,GAAI,CAAC,UAAU,iBAAiB,QAAQ,EAAE,wBAAwB,GAAM,IAAI,0mCAA0mC,mBAAmB,EAAI,CAAC,EAAe7G,EAAK6G,GAAI,CAAC,UAAU,gBAAgB,QAAQ,EAAE,wBAAwB,GAAM,IAAI,wjCAAwjC,mBAAmB,EAAI,CAAC,EAAe7G,EAAK6G,GAAI,CAAC,UAAU,iBAAiB,QAAQ,EAAE,wBAAwB,GAAM,IAAI,mjCAAmjC,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7G,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBrD,EAAW2E,EAAS,CAAC,SAAsBH,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,CAAC,OAAoBxE,EAAK,KAAK,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,OAAOtB,GAAY,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiF,EAAY,GAAgB3D,EAAK,MAAM,CAAC,UAAU,gCAAgC,mBAAmB,SAAS,CAAC,EAAewE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcxE,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,MAAM,QAAQyD,IAA2B5F,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,MAAM,EAAE,KAAK,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,yFAAyF,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,MAAM,QAAQ4F,IAA2B5F,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,yFAAyF,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,MAAM,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,yFAAyF,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsBlB,EAAK+G,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,MAAM,QAAQD,IAA2B5F,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,yFAAyF,OAAO,mQAAmQ,EAAE,UAAU,eAAe,mBAAmB,sEAAsE,CAAC,CAAC,CAAC,EAAelB,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBrD,EAAW2E,EAAS,CAAC,SAAsBH,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,CAAC,OAAoBxE,EAAK,KAAK,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,OAAOtB,GAAY,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiF,EAAY,GAAgB3D,EAAK,MAAM,CAAC,UAAU,gCAAgC,mBAAmB,SAAS,CAAC,EAAewE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcxE,EAAK,MAAM,CAAC,UAAU,eAAe,SAAsBA,EAAKhC,GAAK,CAAC,SAAS,GAAM,UAAU,iBAAiB,UAAU,GAAK,SAAS,WAAW,CAAC,CAAC,CAAC,EAAegC,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBrD,EAAW2E,EAAS,CAAC,SAAsBH,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,CAAC,SAAsBxE,EAAK,KAAK,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,OAAOtB,GAAY,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiF,EAAY,GAAgB3D,EAAK,MAAM,CAAC,UAAU,+BAA+B,mBAAmB,SAAS,CAAC,EAAewE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcxE,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBwE,EAAMqC,GAAI,CAAC,UAAU,gBAAgB,QAAQ,EAAE,wBAAwB,GAAM,IAAI,i1CAAi1C,mBAAmB,GAAK,SAAS,CAAc7G,EAAK6G,GAAI,CAAC,UAAU,iBAAiB,QAAQ,EAAE,wBAAwB,GAAM,IAAI,idAAid,mBAAmB,EAAI,CAAC,EAAe7G,EAAK6G,GAAI,CAAC,UAAU,gBAAgB,QAAQ,EAAE,wBAAwB,GAAM,IAAI,8nBAA8nB,mBAAmB,EAAI,CAAC,EAAe7G,EAAK6G,GAAI,CAAC,UAAU,iBAAiB,QAAQ,EAAE,wBAAwB,GAAM,IAAI,scAAsc,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7G,EAAK4E,EAAS,CAAC,sBAAsB,GAAK,SAAsB5E,EAAW2E,EAAS,CAAC,SAAsB3E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,OAAOtB,GAAY,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE2F,GAAa,GAAgBG,EAAMvG,GAAgB,CAAC,kBAAkB,CAAC,WAAWyB,EAAW,EAAE,sBAAsB,GAAM,gBAAgBD,GAAW,eAAeG,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIqE,GAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,4DAA4D,SAAS,CAAcjE,EAAK+E,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASiC,GAA6BhH,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQnC,GAAmB,OAAO,OAAO,qBAAqB,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAK8E,EAA0B,CAAC,OAAO,GAAG,SAAsB9E,EAAK3D,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB2D,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU2D,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBhH,EAAKpC,GAAO,CAAC,UAAU,GAAM,UAAU,GAAM,UAAU,GAAM,OAAO,OAAO,UAAU,YAAY,GAAG,YAAY,SAAS,YAAY,UAAU,eAAe,UAAU,GAAK,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUoJ,EAAe,CAAC,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,YAAY,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehH,EAAK+E,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASkC,GAA6BjH,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQnC,GAAmB,OAAO,OAAO,qBAAqB,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAK8E,EAA0B,CAAC,OAAO,GAAG,SAAsB9E,EAAK3D,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB2D,EAAK0E,EAAkB,CAAC,WAAWrB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU4D,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBjH,EAAKpC,GAAO,CAAC,UAAU,GAAM,UAAU,GAAM,UAAU,GAAM,OAAO,OAAO,UAAU,iBAAiB,GAAG,YAAY,SAAS,YAAY,UAAU,eAAe,UAAU,GAAK,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUqJ,EAAe,CAAC,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,YAAY,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejH,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQkH,GAAI,CAAC,kFAAkF,kFAAkF,sVAAsV,0dAA0d,sRAAsR,yTAAyT,wRAAwR,8QAA8Q,8WAA8W,oQAAoQ,sVAAsV,+nBAA+nB,iJAAiJ,ymBAAymB,qRAAqR,ybAAyb,uZAAuZ,6KAA6K,4UAA4U,+MAA+M,4mBAA4mB,+HAA+H,sKAAsK,gZAAgZ,oTAAoT,+HAA+H,sVAAsV,qRAAqR,8OAA8O,uLAAuL,qKAAqK,sYAAsY,iZAAiZ,2QAA2Q,2XAA2X,gZAAgZ,sTAAsT,0UAA0U,wkBAAwkB,0ZAA0Z,gaAAga,sKAAsK,8UAA8U,2NAA2N,4RAA4R,olBAAolB,qUAAqU,4RAA4R,qZAAqZ,wLAAwL,mlBAAmlB,wVAAwV,+NAA+N,mlBAAmlB,qSAAqS,8bAA8b,uWAAuW,wJAAwJ,4QAA4Q,8VAA8V,iRAAiR,gJAAgJ,2IAA2I,iQAAiQ,gSAAgS,yUAAyU,6WAA6W,kUAAkU,kFAAkF,yGAAyG,wGAAwG,uGAAuG,sGAAsG,qGAAqG,uGAAuG,uGAAuG,sGAAsG,wGAAwG,uGAAuG,wGAAwG,4SAA4S,gRAAgR,2KAA2K,2MAA2M,kFAAkF,yGAAyG,uGAAuG,yGAAyG,yjBAAyjB,kJAAkJ,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,6JAA6J,yKAAyK,qHAAqH,gcAAgc,gjGAAgjG,u8JAAu8J,0vCAA0vC,EAa53jIC,GAAgBC,GAAQ7G,GAAU2G,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,kBAAkBA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,kCAAkC,OAAO,SAAS,IAAI,wEAAwE,EAAE,CAAC,OAAO,iCAAiC,OAAO,SAAS,IAAI,wEAAwE,CAAC,CAAC,EAAE,GAAGvL,GAAa,GAAGM,GAAW,GAAGO,GAAgB,GAAGE,GAAoB,GAAGE,GAAmB,GAAGE,GAAc,GAAGE,GAAc,GAAGE,GAAyB,GAAGE,GAAc,GAAGE,GAAgB,GAAGE,GAAiB,GAAGE,GAAY,GAAGE,GAAiB,GAAGE,GAAU,GAAGwJ,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC9xF,IAAMC,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,6BAA+B,OAAO,yBAA2B,OAAO,kBAAoB,OAAO,oCAAsC,oMAA0O,sBAAwB,IAAI,yBAA2B,QAAQ,qBAAuB,wGAA4H,sBAAwB,OAAO,qBAAuB,OAAO,4BAA8B,OAAO,qBAAuB,OAAO,uBAAyB,EAAE,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["clamp", "e", "n", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "adjustment", "totalLen", "gotoDelta", "delta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "Z", "u", "motion", "child", "index", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "textEffect", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Skhe5ZIGa", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1ub7ump", "args", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText", "css", "FramerAn2frIzSz", "withCSS", "An2frIzSz_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "AppTagFonts", "getFonts", "xpgoXI0GH_default", "BeatingDotFonts", "ZhSmnymDz_default", "ButtonFonts", "wkSwvofZe_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation", "transition2", "textEffect", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "o9GCFaLm3BTfyI6pts", "b7KoZAUWaBTfyI6pts", "idBTfyI6pts", "b7KoZAUWaLkSMIg9pS", "idLkSMIg9pS", "sworHU7a4LmKEyu2x_", "o9GCFaLm3LmKEyu2x_", "b7KoZAUWaLmKEyu2x_", "idLmKEyu2x_", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "transition1", "addPropertyOverrides", "u", "ChildrenCanSuspend", "QueryData", "PcMCBg1DT_default", "collection1", "paginationInfo1", "loadMore1", "l", "index1", "PathVariablesContext", "collection", "paginationInfo", "loadMore", "index", "ComponentViewportProvider", "SmartComponentScopedContainer", "xpgoXI0GH_default", "toResponsiveImage", "RichText", "textEffect", "ZhSmnymDz_default", "collection2", "paginationInfo2", "loadMore2", "index2", "wkSwvofZe_default", "css", "FramerB39aTA4Go", "withCSS", "B39aTA4Go_default", "addPropertyControls", "ControlType", "addFonts", "AppTagFonts", "BeatingDotFonts", "ButtonFonts", "getFontsFromSharedStyle", "fonts", "Base", "Y", "props", "ref", "p", "MotionSVG", "motion", "SVG", "animated", "layoutId", "children", "rest", "svg", "getProps", "fill", "height", "id", "stroke", "width", "Component", "style", "className", "variant", "ltaPCKw1P", "PlBYddBt6", "restProps", "href", "useSVGTemplate", "cx", "css", "Icon", "withCSS", "qq2iMPGBb_default", "addPropertyControls", "ControlType", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppeareolyzx", "args", "onAppear1iwzwr8", "onTap9xx6ph", "onAppear1ry5yjr", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "css", "FramerRnwUaxcrb", "withCSS", "RnwUaxcrb_default", "addPropertyControls", "ControlType", "addFonts", "SkillDotFonts", "getFonts", "RnwUaxcrb_default", "IconFonts", "qq2iMPGBb_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearf9x053", "args", "CycleVariantState", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerfCatKhdS7", "withCSS", "fCatKhdS7_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "numberToPixelString", "value", "transformTemplate1", "_", "t", "transition2", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "transition3", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "gap", "height", "id", "label1", "label2", "label3", "label4", "label5", "showLabel", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "AuteqFZi8", "WuEWAhqT8", "mrsvahHX6", "VSMWnra3s", "RuKXuiKR0", "yF2PK3DXU", "IerL0xoGY", "alVjkW82b", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear125s4jt", "args", "onAppear1uo72m3", "onAppear1c72drs", "onAppearjuzji1", "onAppear1sxif46", "onAppear14mhocg", "onAppear1uscjs2", "onAppear1vz4r1y", "onAppear1njp2r8", "onAppear1vpx2yo", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText", "css", "FramerOvPo0ax8A", "withCSS", "OvPo0ax8A_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "VideoFonts", "getFonts", "Video", "FeatherFonts", "Icon", "AppTagFonts", "xpgoXI0GH_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "textEffect", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "toResponsiveImage", "value", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "apps", "height", "id", "name1", "skills", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "pQmj_wnQb", "kKdgyk_x8", "UCgBLdLga", "BiEQaYQtOyme_2PCKJ", "k5aeFbrgbyme_2PCKJ", "idyme_2PCKJ", "sworHU7a4c4o9EgZWg", "o9GCFaLm3c4o9EgZWg", "b7KoZAUWac4o9EgZWg", "idc4o9EgZWg", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onClickrqilj3", "args", "onClick16joc9", "scopingClassNames", "cx", "serializationHash", "isDisplayed", "LayoutGroup", "transition1", "u", "addPropertyOverrides", "ComponentViewportProvider", "SmartComponentScopedContainer", "Video", "RichText", "textEffect", "Icon", "ChildrenCanSuspend", "QueryData", "YLX2jRxJL_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "PcMCBg1DT_default", "collection1", "paginationInfo1", "loadMore1", "index1", "xpgoXI0GH_default", "toResponsiveImage", "css", "FramerUd5ahi2ld", "withCSS", "Ud5ahi2ld_default", "addPropertyControls", "ControlType", "addFonts", "VideoFonts", "FeatherFonts", "AppTagFonts", "getFontsFromSharedStyle", "fonts", "BeatingDotFonts", "getFonts", "ZhSmnymDz_default", "AppTagFonts", "xpgoXI0GH_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "textEffect", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "o9GCFaLm3FfXxc0oDV", "b7KoZAUWaFfXxc0oDV", "idFfXxc0oDV", "b7KoZAUWaWpC4zEuCm", "idWpC4zEuCm", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "transition1", "addPropertyOverrides", "u", "RichText", "textEffect", "ComponentViewportProvider", "SmartComponentScopedContainer", "ZhSmnymDz_default", "ChildrenCanSuspend", "QueryData", "PcMCBg1DT_default", "collection1", "paginationInfo1", "loadMore1", "l", "index1", "PathVariablesContext", "collection", "paginationInfo", "loadMore", "index", "xpgoXI0GH_default", "toResponsiveImage", "css", "FramerUeBBIsiGA", "withCSS", "UeBBIsiGA_default", "addPropertyControls", "ControlType", "addFonts", "BeatingDotFonts", "AppTagFonts", "getFontsFromSharedStyle", "fonts", "t", "e", "r", "n", "i", "s", "a", "o", "u", "l", "h", "c", "f", "g", "d", "y", "window", "v", "w", "m", "U", "S", "k", "L", "B", "F", "T", "N", "t", "e", "r", "i", "w", "O", "ControlType", "m", "x", "n", "P", "q", "s", "a", "o", "R", "_", "D", "j", "C", "J", "W", "$", "z", "G", "K", "H", "V", "X", "Q", "Y", "Z", "tt", "te", "tr", "tn", "ti", "ts", "ta", "u", "l", "h", "c", "to", "tu", "tl", "th", "tc", "tf", "tg", "td", "tp", "tv", "tw", "tm", "tI", "e", "r", "t", "tb", "tU", "tL", "i", "s", "a", "o", "u", "l", "h", "tS", "c", "n", "w", "tk", "tE", "e", "n", "i", "t", "r", "tM", "tI", "g", "s", "N", "a", "o", "c", "tU", "w", "tF", "e", "resolveRichText", "i", "a", "ControlType", "n", "QueryEngine", "u", "QueryCache", "d", "tF", "resolveRichText", "UCojIlrtA_default", "addPropertyControls", "NavLinkFonts", "getFonts", "lwFoI_BBF_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "VideoFonts", "Video", "ContainerWithOptimizedAppearEffect", "Container", "MotionDivDynamicViewportHeightb4t58h", "withCodeBoundaryForOverrides", "dynamicViewportHeight", "TextCycle2Fonts", "OvPo0ax8A_default", "AnimatedDemoB2Fonts", "DS9r1GSGd_default", "SectionKickerFonts", "An2frIzSz_default", "AIWorkerFonts", "Ud5ahi2ld_default", "CarouselFonts", "Carousel", "OrchestrationVisualFonts", "fCatKhdS7_default", "AutonomyFonts", "UeBBIsiGA_default", "EscalationFonts", "B39aTA4Go_default", "BookDemoCTAFonts", "TNqupsoRm_default", "ButtonFonts", "wkSwvofZe_default", "ShimmerGridFonts", "ShimmerGrid", "IconFonts", "q9bIvdKfq_default", "MotionDivWithFX", "withFX", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "textEffect", "textEffect1", "transition2", "animation1", "animation2", "transformTemplate1", "_", "t", "transition3", "animation3", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation4", "transition4", "transition5", "animation5", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "ytc4MoNXeGhkyzJbvF", "ZPje5k6WbGhkyzJbvF", "o9dy_A3poGhkyzJbvF", "Y5roUiS6SGhkyzJbvF", "idGhkyzJbvF", "ytc4MoNXeHTUgGBKUK", "ZPje5k6WbHTUgGBKUK", "o9dy_A3poHTUgGBKUK", "Y5roUiS6SHTUgGBKUK", "idHTUgGBKUK", "ytc4MoNXeEgW1qmlBr", "ZPje5k6WbEgW1qmlBr", "o9dy_A3poEgW1qmlBr", "Y5roUiS6SEgW1qmlBr", "idEgW1qmlBr", "ytc4MoNXeRcR2B5el8", "ZPje5k6WbRcR2B5el8", "o9dy_A3poRcR2B5el8", "Y5roUiS6SRcR2B5el8", "idRcR2B5el8", "ytc4MoNXeDhc6_aMRH", "ZPje5k6WbDhc6_aMRH", "o9dy_A3poDhc6_aMRH", "Y5roUiS6SDhc6_aMRH", "idDhc6_aMRH", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "isDisplayed1", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "isDisplayed2", "isDisplayed3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "x", "RichText", "Link", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "ChildrenCanSuspend", "UCojIlrtA_default", "YLX2jRxJL_default", "PcMCBg1DT_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "collection3", "paginationInfo3", "loadMore3", "index3", "collection4", "paginationInfo4", "loadMore4", "index4", "resolvedLinks1", "resolvedLinks2", "SVG", "getLoadingLazyAtYPosition", "Image2", "resolvedLinks3", "resolvedLinks4", "css", "FramerHKZVj5oAY", "withCSS", "HKZVj5oAY_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
