{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/P1XRxus9CQiWIYNrkBAa/Carousel.js", "ssg:https://framerusercontent.com/modules/FWjUS9NE478aslR55tPf/DKZK2LWBq5uwBqVt8ACH/xWXAPOWiX.js", "ssg:https://framerusercontent.com/modules/YQRh4v3QwOp6XFuwZKbN/wYFSgWvaXlon1ib8wTds/niEoC5qC9.js", "ssg:https://framerusercontent.com/modules/i4mRR66RMXYTaOWekFnS/x5DKcETqS4YSI6V7Jlcs/APMhPojmD.js", "ssg:https://framerusercontent.com/modules/9U07pYfcMDrUve9JRtOS/uO0bl7soYvGXmVtJKP3E/fKMMDuBkA.js", "ssg:https://framerusercontent.com/modules/5Aaigd1sEGcufwHhduvX/QSbHkNh8GhIL1orCkvaA/g5bagolnR.js", "ssg:https://framerusercontent.com/modules/u1OzDgiO0nM1Etz1yahh/nDo6fWlur7NJpIsVdvkY/GjQAB0YL7.js"],
  "sourcesContent": ["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,progress}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(()=>{startTransition(()=>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,MozMaskImage: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,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};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=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};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));/*if (snap && (snapEdge === \"start\" || snapEdge === \"end\") && delta >= 1)\n            delta = delta + 0.4 // this ensures it doesn't snap back to previous page*/gotoPage(currentPage+delta);};/**\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:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`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)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_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:[/*#__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\"})}),/*#__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=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.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\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (722666c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/hKQRAFXUGjCwOmkJPWLc/rbVYzRZoTvTGoChWxQfz/n2JwjoTO5.js\";const enabledGestures={GHI7p2abC:{hover:true},hHPH0321D:{hover:true},P_zIgZbxh:{hover:true},PTl6KGk4L:{hover:true},VIfFaRa5Z:{hover:true}};const cycleOrder=[\"GHI7p2abC\",\"hHPH0321D\",\"P_zIgZbxh\",\"PTl6KGk4L\",\"VIfFaRa5Z\",\"yip4swPmf\",\"xj6wtEKxT\"];const serializationHash=\"framer-40Upq\";const variantClassNames={GHI7p2abC:\"framer-v-1k4xfrj\",hHPH0321D:\"framer-v-1s6nhhu\",P_zIgZbxh:\"framer-v-1k9i1bv\",PTl6KGk4L:\"framer-v-e2o961\",VIfFaRa5Z:\"framer-v-u3qlio\",xj6wtEKxT:\"framer-v-1dp8oze\",yip4swPmf:\"framer-v-1ys7rb5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:80,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Arrow Button\":\"PTl6KGk4L\",\"CTA Button\":\"P_zIgZbxh\",\"Key Insights Button\":\"hHPH0321D\",\"Pricing Button\":\"VIfFaRa5Z\",\"Primary Button\":\"GHI7p2abC\",\"Variant 6\":\"yip4swPmf\",\"Variant 7\":\"xj6wtEKxT\"};const getProps=({height,id,link,title,width,...props})=>{return{...props,mRp99xCGq:title??props.mRp99xCGq??\"Get the App Now\",variant:humanReadableVariantMap[props.variant]??props.variant??\"GHI7p2abC\",X_oeBzhz2:link??props.X_oeBzhz2};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,mRp99xCGq,X_oeBzhz2,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"GHI7p2abC\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"PTl6KGk4L-hover\")return false;if([\"PTl6KGk4L\",\"yip4swPmf\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"hHPH0321D-hover\",\"P_zIgZbxh-hover\",\"PTl6KGk4L-hover\"].includes(gestureVariant))return true;if([\"hHPH0321D\",\"P_zIgZbxh\",\"PTl6KGk4L\",\"yip4swPmf\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:X_oeBzhz2,motionChild:true,nodeId:\"GHI7p2abC\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1k4xfrj\",className,classNames)} framer-11st25w`,\"data-framer-name\":\"Primary Button\",layoutDependency:layoutDependency,layoutId:\"GHI7p2abC\",ref:ref??ref1,style:{...style},...addPropertyOverrides({\"GHI7p2abC-hover\":{\"data-framer-name\":undefined},\"hHPH0321D-hover\":{\"data-framer-name\":undefined},\"P_zIgZbxh-hover\":{\"data-framer-name\":undefined},\"PTl6KGk4L-hover\":{\"data-framer-name\":undefined},\"VIfFaRa5Z-hover\":{\"data-framer-name\":undefined},hHPH0321D:{\"data-framer-name\":\"Key Insights Button\"},P_zIgZbxh:{\"data-framer-name\":\"CTA Button\"},PTl6KGk4L:{\"data-framer-name\":\"Arrow Button\"},VIfFaRa5Z:{\"data-framer-name\":\"Pricing Button\"},xj6wtEKxT:{\"data-framer-name\":\"Variant 7\"},yip4swPmf:{\"data-framer-name\":\"Variant 6\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aaf1hr\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"qqlbsVNJo\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-8k1zyx\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"Pkx_kXGiS\",style:{backgroundColor:\"var(--token-df56ec4b-06ca-4c93-95a6-01fd531ff2ed, rgb(10, 10, 10))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},variants:{\"GHI7p2abC-hover\":{backgroundColor:\"var(--token-0212da3f-c8ca-4b1b-9cfd-4813bfd6a4c3, rgb(137, 52, 254))\"},\"hHPH0321D-hover\":{backgroundColor:\"var(--token-0212da3f-c8ca-4b1b-9cfd-4813bfd6a4c3, rgb(137, 52, 254))\"},\"P_zIgZbxh-hover\":{backgroundColor:\"var(--token-0212da3f-c8ca-4b1b-9cfd-4813bfd6a4c3, rgb(137, 52, 254))\"},\"VIfFaRa5Z-hover\":{backgroundColor:\"var(--token-df56ec4b-06ca-4c93-95a6-01fd531ff2ed, rgb(10, 10, 10))\"},P_zIgZbxh:{backgroundColor:\"var(--token-072e68f8-d2b5-4f0a-b2cb-8138162b1f9f, rgb(255, 255, 255))\"},VIfFaRa5Z:{backgroundColor:\"var(--token-0212da3f-c8ca-4b1b-9cfd-4813bfd6a4c3, rgb(137, 52, 254))\"},xj6wtEKxT:{backgroundColor:\"var(--token-0212da3f-c8ca-4b1b-9cfd-4813bfd6a4c3, rgb(137, 52, 254))\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-llol2\",\"data-styles-preset\":\"n2JwjoTO5\",children:\"Get the App Now\"})}),className:\"framer-56c6ue\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ANZXNP8jk\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:mRp99xCGq,variants:{\"GHI7p2abC-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},P_zIgZbxh:{\"--extracted-r6o4lv\":\"var(--token-df56ec4b-06ca-4c93-95a6-01fd531ff2ed, rgb(10, 10, 10))\"},VIfFaRa5Z:{\"--extracted-r6o4lv\":\"rgb(252, 252, 253)\"},xj6wtEKxT:{\"--extracted-r6o4lv\":\"rgb(252, 252, 253)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"GHI7p2abC-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-llol2\",\"data-styles-preset\":\"n2JwjoTO5\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Get the App Now\"})})},\"P_zIgZbxh-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-llol2\",\"data-styles-preset\":\"n2JwjoTO5\",children:\"Get the App Now\"})})},\"VIfFaRa5Z-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-llol2\",\"data-styles-preset\":\"n2JwjoTO5\",children:\"Get the App Now\"})})},P_zIgZbxh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-llol2\",\"data-styles-preset\":\"n2JwjoTO5\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-df56ec4b-06ca-4c93-95a6-01fd531ff2ed, rgb(10, 10, 10)))\"},children:\"Get the App Now\"})})},VIfFaRa5Z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-llol2\",\"data-styles-preset\":\"n2JwjoTO5\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(252, 252, 253))\"},children:\"Get the App Now\"})})},xj6wtEKxT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldWxpcyBTYW5zIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Neulis Sans Regular\", \"Neulis Sans Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(252, 252, 253))\",\"--framer-text-transform\":\"lowercase\"},children:\"Get the App Now\"})}),fonts:[\"CUSTOM;Neulis Sans Regular\"]}},baseVariant,gestureVariant)})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-o6k9t1\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"VuJpFweiR\",style:{backgroundColor:\"var(--token-0212da3f-c8ca-4b1b-9cfd-4813bfd6a4c3, rgb(137, 52, 254))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},variants:{\"hHPH0321D-hover\":{backgroundColor:\"var(--token-df56ec4b-06ca-4c93-95a6-01fd531ff2ed, rgb(10, 10, 10))\"},\"P_zIgZbxh-hover\":{backgroundColor:\"var(--token-072e68f8-d2b5-4f0a-b2cb-8138162b1f9f, rgb(255, 255, 255))\"},\"PTl6KGk4L-hover\":{backgroundColor:\"var(--token-072e68f8-d2b5-4f0a-b2cb-8138162b1f9f, rgb(255, 255, 255))\"}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:16,pixelWidth:17,src:\"https://framerusercontent.com/images/qOH7WVtBBa8kD7L5sQ3MXAGIEw.svg\"},className:\"framer-qpq4xx\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"DMZ5IJuA3\",style:{rotate:0},variants:{\"hHPH0321D-hover\":{rotate:44},\"P_zIgZbxh-hover\":{rotate:44},\"PTl6KGk4L-hover\":{rotate:44}},...addPropertyOverrides({\"hHPH0321D-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||60)-0-48)/2+0+0)+0+16),pixelHeight:16,pixelWidth:17,src:\"https://framerusercontent.com/images/qOH7WVtBBa8kD7L5sQ3MXAGIEw.svg\"}},\"P_zIgZbxh-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||60)-0-(Math.max(0,((componentViewport?.height||60)-0-0)/1)*1+0))/2+0+0)+(0+(Math.max(0,((componentViewport?.height||60)-0-0)/1)*1-0-48)/2)+16),pixelHeight:16,pixelWidth:17,src:\"https://framerusercontent.com/images/rxqkz245sDfn9t6cGG5nFoIOzG4.svg\"}},\"PTl6KGk4L-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||60)-0-48)/2+0+0)+0+16),pixelHeight:16,pixelWidth:17,src:\"https://framerusercontent.com/images/rxqkz245sDfn9t6cGG5nFoIOzG4.svg\"}},hHPH0321D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||60)-0-(Math.max(0,((componentViewport?.height||60)-0-0)/1)*1+0))/2+0+0)+(0+(Math.max(0,((componentViewport?.height||60)-0-0)/1)*1-0-48)/2)+16),pixelHeight:16,pixelWidth:17,src:\"https://framerusercontent.com/images/qOH7WVtBBa8kD7L5sQ3MXAGIEw.svg\"}},P_zIgZbxh:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||60)-0-(Math.max(0,((componentViewport?.height||60)-0-0)/1)*1+0))/2+0+0)+(0+(Math.max(0,((componentViewport?.height||60)-0-0)/1)*1-0-48)/2)+16),pixelHeight:16,pixelWidth:17,src:\"https://framerusercontent.com/images/qOH7WVtBBa8kD7L5sQ3MXAGIEw.svg\"}},PTl6KGk4L:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||60)-0-(Math.max(0,((componentViewport?.height||60)-0-0)/1)*1+0))/2+0+0)+(0+(Math.max(0,((componentViewport?.height||60)-0-0)/1)*1-0-48)/2)+16),pixelHeight:16,pixelWidth:17,src:\"https://framerusercontent.com/images/qOH7WVtBBa8kD7L5sQ3MXAGIEw.svg\"}},yip4swPmf:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||60)-0-(Math.max(0,((componentViewport?.height||60)-0-0)/1)*1+0))/2+0+0)+(0+(Math.max(0,((componentViewport?.height||60)-0-0)/1)*1-0-40)/2)+12),pixelHeight:16,pixelWidth:17,src:\"https://framerusercontent.com/images/qOH7WVtBBa8kD7L5sQ3MXAGIEw.svg\"}}},baseVariant,gestureVariant)})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-40Upq.framer-11st25w, .framer-40Upq .framer-11st25w { display: block; }\",\".framer-40Upq.framer-1k4xfrj { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 60px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-40Upq .framer-1aaf1hr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-40Upq .framer-8k1zyx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: hidden; padding: 16px 32px 16px 32px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-40Upq .framer-56c6ue { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 0; }\",\".framer-40Upq .framer-o6k9t1 { 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: 16px; position: relative; width: min-content; }\",\".framer-40Upq .framer-qpq4xx { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-40Upq.framer-1k4xfrj, .framer-40Upq .framer-1aaf1hr, .framer-40Upq .framer-8k1zyx, .framer-40Upq .framer-o6k9t1 { gap: 0px; } .framer-40Upq.framer-1k4xfrj > *, .framer-40Upq .framer-8k1zyx > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-40Upq.framer-1k4xfrj > :first-child, .framer-40Upq .framer-8k1zyx > :first-child { margin-top: 0px; } .framer-40Upq.framer-1k4xfrj > :last-child, .framer-40Upq .framer-8k1zyx > :last-child { margin-bottom: 0px; } .framer-40Upq .framer-1aaf1hr > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-40Upq .framer-1aaf1hr > :first-child, .framer-40Upq .framer-o6k9t1 > :first-child { margin-left: 0px; } .framer-40Upq .framer-1aaf1hr > :last-child, .framer-40Upq .framer-o6k9t1 > :last-child { margin-right: 0px; } .framer-40Upq .framer-o6k9t1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-40Upq.framer-v-1s6nhhu .framer-o6k9t1 { overflow: hidden; will-change: var(--framer-will-change-override, transform); }\",\".framer-40Upq.framer-v-u3qlio.framer-1k4xfrj { width: 272px; }\",\".framer-40Upq.framer-v-u3qlio .framer-1aaf1hr, .framer-40Upq.framer-v-1dp8oze .framer-1aaf1hr { width: 100%; }\",\".framer-40Upq.framer-v-u3qlio .framer-8k1zyx, .framer-40Upq.framer-v-1dp8oze .framer-8k1zyx { flex: 1 0 0px; padding: 16px 24px 16px 24px; width: 1px; }\",\".framer-40Upq.framer-v-1ys7rb5.framer-1k4xfrj { cursor: unset; }\",\".framer-40Upq.framer-v-1ys7rb5 .framer-o6k9t1 { padding: 12px; }\",\".framer-40Upq.framer-v-1dp8oze.framer-1k4xfrj { cursor: unset; height: 40px; width: 175px; }\",\".framer-40Upq.framer-v-1k4xfrj.hover .framer-1aaf1hr, .framer-40Upq.framer-v-1k9i1bv.hover .framer-1aaf1hr { z-index: 1; }\",\".framer-40Upq.framer-v-1s6nhhu.hover .framer-1aaf1hr, .framer-40Upq.framer-v-e2o961.hover .framer-1aaf1hr { flex: none; height: min-content; z-index: 1; }\",\".framer-40Upq.framer-v-1s6nhhu.hover .framer-8k1zyx { align-self: stretch; height: auto; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 222\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"hHPH0321D\":{\"layout\":[\"auto\",\"fixed\"]},\"P_zIgZbxh\":{\"layout\":[\"auto\",\"fixed\"]},\"PTl6KGk4L\":{\"layout\":[\"auto\",\"fixed\"]},\"VIfFaRa5Z\":{\"layout\":[\"fixed\",\"fixed\"]},\"yip4swPmf\":{\"layout\":[\"auto\",\"fixed\"]},\"xj6wtEKxT\":{\"layout\":[\"fixed\",\"fixed\"]},\"Hywc3RwjL\":{\"layout\":[\"auto\",\"fixed\"]},\"WoMa5fB_k\":{\"layout\":[\"auto\",\"fixed\"]},\"znm4VKKig\":{\"layout\":[\"auto\",\"fixed\"]},\"k9JRco1Ie\":{\"layout\":[\"auto\",\"fixed\"]},\"lgasQqeLc\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"mRp99xCGq\":\"title\",\"X_oeBzhz2\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxWXAPOWiX=withCSS(Component,css,\"framer-40Upq\");export default FramerxWXAPOWiX;FramerxWXAPOWiX.displayName=\"Button\";FramerxWXAPOWiX.defaultProps={height:60,width:222};addPropertyControls(FramerxWXAPOWiX,{variant:{options:[\"GHI7p2abC\",\"hHPH0321D\",\"P_zIgZbxh\",\"PTl6KGk4L\",\"VIfFaRa5Z\",\"yip4swPmf\",\"xj6wtEKxT\"],optionTitles:[\"Primary Button\",\"Key Insights Button\",\"CTA Button\",\"Arrow Button\",\"Pricing Button\",\"Variant 6\",\"Variant 7\"],title:\"Variant\",type:ControlType.Enum},mRp99xCGq:{defaultValue:\"Get the App Now\",displayTextArea:false,title:\"Title\",type:ControlType.String},X_oeBzhz2:{title:\"Link\",type:ControlType.Link}});addFonts(FramerxWXAPOWiX,[{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:\"Neulis Sans Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/qovsYcZ6qODQnQF4R5oIh4yRz1w.woff2\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxWXAPOWiX\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"222\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"mRp99xCGq\\\":\\\"title\\\",\\\"X_oeBzhz2\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"hHPH0321D\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"P_zIgZbxh\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"PTl6KGk4L\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"VIfFaRa5Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yip4swPmf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"xj6wtEKxT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Hywc3RwjL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"WoMa5fB_k\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"znm4VKKig\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"k9JRco1Ie\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"lgasQqeLc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"60\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xWXAPOWiX.map", "// Generated by Framer (aba0f78)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-x7PEX .framer-styles-preset-1sfur21:not(.rich-text-wrapper), .framer-x7PEX .framer-styles-preset-1sfur21.rich-text-wrapper a { --framer-link-current-text-color: var(--token-77d0f6d9-2e2d-4d66-9d54-9ca36f24d1eb, #a05cff) /* {\"name\":\"text-soft-purple dark\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-0212da3f-c8ca-4b1b-9cfd-4813bfd6a4c3, #8934fe) /* {\"name\":\"soft purple\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, #5f6368); --framer-link-text-decoration: none; }'];export const className=\"framer-x7PEX\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d0dedfe)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,ResolveLinks,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/hKQRAFXUGjCwOmkJPWLc/rbVYzRZoTvTGoChWxQfz/n2JwjoTO5.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/YQRh4v3QwOp6XFuwZKbN/wYFSgWvaXlon1ib8wTds/niEoC5qC9.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/vwZvaID4fK3kf65yPkXg/PL9INUJAuwk3DfLWXUIH/S3qo4lpeK.js\";import Button from\"https://framerusercontent.com/modules/FWjUS9NE478aslR55tPf/DKZK2LWBq5uwBqVt8ACH/xWXAPOWiX.js\";const ButtonFonts=getFonts(Button);const PhosphorFonts=getFonts(Phosphor);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"eLQ28d76A\",\"pNcmXBx9Z\",\"vj2Xwj5V4\",\"rnP1pGH5N\",\"jiIjA1pLG\",\"QhMEeSNLE\",\"VByEngQZk\",\"oWjOYwysi\"];const serializationHash=\"framer-48DHV\";const variantClassNames={eLQ28d76A:\"framer-v-1eyycug\",jiIjA1pLG:\"framer-v-dm0762\",oWjOYwysi:\"framer-v-1p6wprm\",pNcmXBx9Z:\"framer-v-1q3zawe\",QhMEeSNLE:\"framer-v-vv2wc9\",rnP1pGH5N:\"framer-v-bm6diz\",VByEngQZk:\"framer-v-o8acxu\",vj2Xwj5V4:\"framer-v-1uc2f5p\"};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={bounce:.2,delay:.1,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};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={\"Desktop Close\":\"eLQ28d76A\",\"Desktop Open\":\"QhMEeSNLE\",\"Laptop Close\":\"pNcmXBx9Z\",\"Laptop Open\":\"VByEngQZk\",\"Phone Close\":\"rnP1pGH5N\",\"Phone Open\":\"jiIjA1pLG\",\"Tablet Close\":\"vj2Xwj5V4\",\"Tablet Open\":\"oWjOYwysi\"};const getProps=({height,id,link,visible,width,...props})=>{return{...props,TkHJE2O5U:visible??props.TkHJE2O5U??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"eLQ28d76A\",YJai0HkGP:link??props.YJai0HkGP};};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,TkHJE2O5U,YJai0HkGP,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"eLQ28d76A\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onClick1tjtxfa=activeVariantCallback(async(...args)=>{setVariant(\"QhMEeSNLE\");});const onClick1qauavh=activeVariantCallback(async(...args)=>{setVariant(\"VByEngQZk\");});const onClick1l6vg53=activeVariantCallback(async(...args)=>{setVariant(\"oWjOYwysi\");});const onClicku3buu2=activeVariantCallback(async(...args)=>{setVariant(\"jiIjA1pLG\");});const onClicke7jlem=activeVariantCallback(async(...args)=>{setVariant(\"rnP1pGH5N\");});const onClick1atj5sc=activeVariantCallback(async(...args)=>{setVariant(\"eLQ28d76A\");});const onClick1nleop4=activeVariantCallback(async(...args)=>{setVariant(\"pNcmXBx9Z\");});const onClick1ckbek0=activeVariantCallback(async(...args)=>{setVariant(\"vj2Xwj5V4\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"jiIjA1pLG\")return true;return false;};const router=useRouter();const isDisplayed1=value=>{if([\"rnP1pGH5N\",\"jiIjA1pLG\"].includes(baseVariant))return false;return value;};const isDisplayed2=value=>{if(baseVariant===\"rnP1pGH5N\")return value;return false;};const isDisplayed3=()=>{if([\"rnP1pGH5N\",\"jiIjA1pLG\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if([\"QhMEeSNLE\",\"VByEngQZk\",\"oWjOYwysi\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.header,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1eyycug\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop Close\",layoutDependency:layoutDependency,layoutId:\"eLQ28d76A\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-2015492e-58bb-4eda-95d2-e957d3857f47, rgb(218, 220, 224))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"blur(5px)\",backgroundColor:\"var(--token-5faac03b-3520-402e-b6b0-fae17c157fe3, rgb(255, 255, 255))\",WebkitBackdropFilter:\"blur(5px)\",...style},...addPropertyOverrides({jiIjA1pLG:{\"data-framer-name\":\"Phone Open\"},oWjOYwysi:{\"data-framer-name\":\"Tablet Open\"},pNcmXBx9Z:{\"data-framer-name\":\"Laptop Close\"},QhMEeSNLE:{\"data-framer-name\":\"Desktop Open\"},rnP1pGH5N:{\"data-framer-name\":\"Phone Close\"},VByEngQZk:{\"data-framer-name\":\"Laptop Open\"},vj2Xwj5V4:{\"data-framer-name\":\"Tablet Close\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-brwmlt\",\"data-framer-appear-id\":\"brwmlt\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"q8rZsjIaF\",optimized:true,children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"j_ASLr6HL\"},implicitPathVariables:undefined},{href:{webPageId:\"j_ASLr6HL\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,...addPropertyOverrides({jiIjA1pLG:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+4+76+0+250}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1d45r6o-container\",layoutDependency:layoutDependency,layoutId:\"AoiAl5Edg-container\",nodeId:\"AoiAl5Edg\",rendersWithMotion:true,scopeId:\"APMhPojmD\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"AoiAl5Edg\",layoutId:\"AoiAl5Edg\",mRp99xCGq:\"start for free\",style:{height:\"100%\",width:\"100%\"},variant:\"VIfFaRa5Z\",width:\"100%\",X_oeBzhz2:resolvedLinks[0],...addPropertyOverrides({jiIjA1pLG:{X_oeBzhz2:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ih5dp8\",layoutDependency:layoutDependency,layoutId:\"IpSY8xwQV\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15wbqip\",layoutDependency:layoutDependency,layoutId:\"GHTMUalud\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wn3ftd-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"htaAaazqi-container\",nodeId:\"htaAaazqi\",rendersWithMotion:true,scopeId:\"APMhPojmD\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2015492e-58bb-4eda-95d2-e957d3857f47, rgb(218, 220, 224))\",height:\"100%\",iconSearch:\"arrow-right\",iconSelection:\"House\",id:\"htaAaazqi\",layoutId:\"htaAaazqi\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-llol2\",\"data-styles-preset\":\"n2JwjoTO5\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104)))\"},children:\"about us\"})}),className:\"framer-p0r9h3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tpJYTdHMU\",style:{\"--extracted-r6o4lv\":\"var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b1ecg3\",layoutDependency:layoutDependency,layoutId:\"rgkCrsicW\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-o2yjen-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"cspV2qdg7-container\",nodeId:\"cspV2qdg7\",rendersWithMotion:true,scopeId:\"APMhPojmD\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2015492e-58bb-4eda-95d2-e957d3857f47, rgb(218, 220, 224))\",height:\"100%\",iconSearch:\"arrow-right\",iconSelection:\"House\",id:\"cspV2qdg7\",layoutId:\"cspV2qdg7\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-llol2\",\"data-styles-preset\":\"n2JwjoTO5\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104)))\"},children:\"plans\"})}),className:\"framer-19u7rit\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cdZFmagMU\",style:{\"--extracted-r6o4lv\":\"var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h9gdm8\",layoutDependency:layoutDependency,layoutId:\"hvQh6rBnr\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18accse-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mSGGqJqcd-container\",nodeId:\"mSGGqJqcd\",rendersWithMotion:true,scopeId:\"APMhPojmD\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2015492e-58bb-4eda-95d2-e957d3857f47, rgb(218, 220, 224))\",height:\"100%\",iconSearch:\"arrow-right\",iconSelection:\"House\",id:\"mSGGqJqcd\",layoutId:\"mSGGqJqcd\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-llol2\",\"data-styles-preset\":\"n2JwjoTO5\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104)))\"},children:\"reviews\"})}),className:\"framer-1bkq5zr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"znvMcYMJz\",style:{\"--extracted-r6o4lv\":\"var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xabi0g\",layoutDependency:layoutDependency,layoutId:\"kOA62dhMO\",style:{backgroundColor:\"var(--token-62e998ec-f9f5-4be0-aa39-32624276c662, rgb(242, 242, 242))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-np5bsd\",layoutDependency:layoutDependency,layoutId:\"dCRtZJgKY\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xujnxj-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"vs4mbF7mF-container\",nodeId:\"vs4mbF7mF\",rendersWithMotion:true,scopeId:\"APMhPojmD\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2015492e-58bb-4eda-95d2-e957d3857f47, rgb(218, 220, 224))\",height:\"100%\",iconSearch:\"arrow-right\",iconSelection:\"House\",id:\"vs4mbF7mF\",layoutId:\"vs4mbF7mF\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-llol2\",\"data-styles-preset\":\"n2JwjoTO5\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104)))\"},children:\"news\"})}),className:\"framer-vwipk1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JRmTrPje_\",style:{\"--extracted-r6o4lv\":\"var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t14pfw\",layoutDependency:layoutDependency,layoutId:\"Rr6pNYZFw\",style:{backgroundColor:\"var(--token-62e998ec-f9f5-4be0-aa39-32624276c662, rgb(242, 242, 242))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pdm41d\",layoutDependency:layoutDependency,layoutId:\"OQIEMNRsr\",style:{backgroundColor:\"var(--token-62e998ec-f9f5-4be0-aa39-32624276c662, rgb(242, 242, 242))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d6hd7q\",layoutDependency:layoutDependency,layoutId:\"O6_topkl0\",style:{backgroundColor:\"var(--token-62e998ec-f9f5-4be0-aa39-32624276c662, rgb(242, 242, 242))\"}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7md9bv\",layoutDependency:layoutDependency,layoutId:\"Yk0VzIidt\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13xx21x\",\"data-framer-name\":\"Home\",layoutDependency:layoutDependency,layoutId:\"j0AgJBLOG\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fHrEY_zLW\"},motionChild:true,nodeId:\"JBP15Kwsg\",scopeId:\"APMhPojmD\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-c60yx5 framer-li8nb3\",\"data-framer-name\":\"logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"JBP15Kwsg\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 139 29\"><path d=\"M 123.986 0.305 L 123.986 9.298 C 125.719 7.45 127.895 6.525 130.52 6.525 C 132.995 6.525 134.989 7.268 136.499 8.754 C 138.012 10.239 138.767 12.214 138.767 14.679 L 138.767 28.48 L 132.603 28.48 L 132.603 16.753 C 132.603 15.452 132.224 14.412 131.469 13.631 C 130.714 12.851 129.711 12.461 128.459 12.461 C 127.127 12.461 126.047 12.861 125.222 13.662 C 124.398 14.463 123.986 15.521 123.986 16.835 L 123.986 28.48 L 117.822 28.48 L 117.822 1.702 Z\" fill=\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(25, 25, 25))\"></path><path d=\"M 100.192 0.305 L 100.192 9.298 C 101.922 7.45 104.101 6.525 106.726 6.525 C 109.201 6.525 111.194 7.268 112.705 8.754 C 114.218 10.239 114.973 12.214 114.973 14.679 L 114.973 28.48 L 108.809 28.48 L 108.809 16.753 C 108.809 15.452 108.43 14.412 107.675 13.631 C 106.92 12.851 105.916 12.461 104.665 12.461 C 103.333 12.461 102.253 12.861 101.428 13.662 C 100.603 14.463 100.192 15.521 100.192 16.835 L 100.192 28.48 L 94.028 28.48 L 94.028 1.702 Z\" fill=\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(25, 25, 25))\"></path><path d=\"M 76.466 0 L 76.466 9.091 C 78.217 7.223 80.417 6.288 83.07 6.288 C 85.572 6.288 87.587 7.039 89.114 8.541 C 90.643 10.043 91.407 12.039 91.407 14.53 L 91.407 28.481 L 85.176 28.481 L 85.176 16.627 C 85.176 15.312 84.793 14.26 84.03 13.471 C 83.266 12.682 82.252 12.288 80.987 12.288 C 79.64 12.288 78.549 12.693 77.715 13.503 C 76.881 14.312 76.466 15.381 76.466 16.71 L 76.466 28.481 L 70.235 28.481 L 70.235 1.413 Z\" fill=\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(25, 25, 25))\"></path><path d=\"M 59.109 28.992 C 64.401 28.992 68.028 26.059 68.028 21.722 C 68.028 13.984 56.292 15.855 56.292 12.793 C 56.292 11.815 57.359 11.178 58.767 11.178 C 60.346 11.178 61.499 11.943 61.499 13.091 L 67.687 13.091 C 67.687 9.18 64.017 6.288 58.81 6.288 C 54.03 6.288 50.146 8.712 50.146 13.304 C 50.146 21.126 61.84 19.171 61.84 22.36 C 61.84 23.337 60.688 24.06 59.109 24.06 C 57.316 24.06 56.036 23.167 56.036 21.892 L 49.805 21.892 C 49.805 25.931 53.56 28.992 59.109 28.992 Z\" fill=\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(25, 25, 25))\"></path><path d=\"M 36.443 29 C 33.095 29 30.299 27.913 28.056 25.741 C 25.812 23.568 24.69 20.869 24.69 17.644 C 24.69 14.419 25.812 11.721 28.056 9.548 C 30.299 7.375 33.095 6.288 36.443 6.288 C 38.652 6.288 40.652 6.783 42.445 7.773 C 44.237 8.762 45.64 10.126 46.654 11.863 C 47.668 13.6 48.175 15.527 48.175 17.644 C 48.175 19.762 47.668 21.689 46.654 23.426 C 45.64 25.163 44.237 26.526 42.445 27.516 C 40.652 28.505 38.652 29 36.443 29 Z M 32.63 21.464 C 33.644 22.488 34.915 23 36.443 23 C 37.971 23 39.242 22.488 40.257 21.464 C 41.271 20.44 41.778 19.167 41.778 17.644 C 41.778 16.122 41.271 14.849 40.257 13.824 C 39.242 12.8 37.971 12.288 36.443 12.288 C 34.915 12.288 33.644 12.8 32.63 13.824 C 31.615 14.849 31.108 16.122 31.108 17.644 C 31.108 19.167 31.615 20.44 32.63 21.464 Z\" fill=\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(25, 25, 25))\"></path><path d=\"M 6.231 0 L 6.231 8.966 C 7.982 7.181 10.17 6.288 12.795 6.288 C 15.796 6.288 18.297 7.371 20.297 9.537 C 22.298 11.703 23.298 14.406 23.298 17.644 C 23.298 20.883 22.298 23.585 20.297 25.751 C 18.297 27.917 15.796 29 12.795 29 C 10.17 29 7.982 28.107 6.231 26.322 L 6.231 28.481 L 0 28.481 L 0 1.413 Z M 7.752 21.464 C 8.767 22.488 10.038 23 11.566 23 C 13.094 23 14.365 22.488 15.379 21.464 C 16.394 20.44 16.9 19.166 16.9 17.644 C 16.9 16.122 16.394 14.848 15.379 13.824 C 14.365 12.8 13.094 12.288 11.566 12.288 C 10.038 12.288 8.767 12.8 7.752 13.824 C 6.738 14.848 6.231 16.122 6.231 17.644 C 6.231 19.166 6.738 20.44 7.752 21.464 Z\" fill=\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(25, 25, 25))\"></path></svg>',svgContentId:10040698562,withExternalLayout:true,...addPropertyOverrides({jiIjA1pLG:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 129 27\"><path d=\"M 115.066 0.284 L 115.066 8.657 C 116.674 6.936 118.694 6.075 121.13 6.075 C 123.427 6.075 125.277 6.767 126.679 8.15 C 128.083 9.533 128.784 11.372 128.784 13.666 L 128.784 26.516 L 123.063 26.516 L 123.063 15.598 C 123.063 14.387 122.712 13.418 122.011 12.691 C 121.31 11.965 120.379 11.601 119.217 11.601 C 117.981 11.601 116.979 11.974 116.214 12.72 C 115.448 13.466 115.066 14.45 115.066 15.674 L 115.066 26.516 L 109.346 26.516 L 109.346 1.585 Z\" fill=\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(25, 25, 25))\"></path><path d=\"M 92.984 0.284 L 92.984 8.657 C 94.59 6.936 96.612 6.075 99.048 6.075 C 101.344 6.075 103.195 6.767 104.597 8.15 C 106 9.533 106.701 11.372 106.701 13.666 L 106.701 26.516 L 100.981 26.516 L 100.981 15.598 C 100.981 14.387 100.629 13.418 99.928 12.691 C 99.228 11.965 98.296 11.601 97.135 11.601 C 95.899 11.601 94.897 11.974 94.131 12.72 C 93.366 13.466 92.984 14.45 92.984 15.674 L 92.984 26.516 L 87.263 26.516 L 87.263 1.585 Z\" fill=\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(25, 25, 25))\"></path><path d=\"M 70.965 0 L 70.965 8.464 C 72.59 6.724 74.632 5.855 77.094 5.855 C 79.416 5.855 81.286 6.554 82.703 7.952 C 84.122 9.35 84.831 11.209 84.831 13.528 L 84.831 26.517 L 79.048 26.517 L 79.048 15.48 C 79.048 14.256 78.693 13.277 77.984 12.542 C 77.276 11.808 76.335 11.441 75.161 11.441 C 73.911 11.441 72.898 11.818 72.124 12.571 C 71.35 13.325 70.965 14.32 70.965 15.557 L 70.965 26.517 L 65.182 26.517 L 65.182 1.315 Z\" fill=\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(25, 25, 25))\"></path><path d=\"M 54.856 26.993 C 59.768 26.993 63.134 24.261 63.134 20.224 C 63.134 13.019 52.242 14.761 52.242 11.911 C 52.242 11.001 53.232 10.407 54.539 10.407 C 56.005 10.407 57.074 11.119 57.074 12.188 L 62.817 12.188 C 62.817 8.546 59.411 5.855 54.579 5.855 C 50.143 5.855 46.539 8.111 46.539 12.386 C 46.539 19.669 57.391 17.849 57.391 20.818 C 57.391 21.728 56.322 22.401 54.856 22.401 C 53.193 22.401 52.005 21.57 52.005 20.382 L 46.222 20.382 C 46.222 24.143 49.707 26.993 54.856 26.993 Z\" fill=\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(25, 25, 25))\"></path><path d=\"M 33.821 27 C 30.714 27 28.119 25.988 26.037 23.965 C 23.955 21.942 22.914 19.43 22.914 16.427 C 22.914 13.425 23.955 10.912 26.037 8.889 C 28.119 6.866 30.714 5.855 33.821 5.855 C 35.871 5.855 37.728 6.316 39.391 7.237 C 41.054 8.158 42.356 9.427 43.298 11.044 C 44.239 12.662 44.709 14.456 44.709 16.427 C 44.709 18.399 44.239 20.193 43.298 21.81 C 42.356 23.427 41.054 24.697 39.391 25.618 C 37.728 26.539 35.871 27 33.821 27 Z M 30.282 19.984 C 31.223 20.937 32.403 21.414 33.821 21.414 C 35.24 21.414 36.419 20.937 37.36 19.984 C 38.302 19.03 38.772 17.845 38.772 16.427 C 38.772 15.01 38.302 13.825 37.36 12.871 C 36.419 11.917 35.24 11.441 33.821 11.441 C 32.403 11.441 31.223 11.917 30.282 12.871 C 29.341 13.825 28.87 15.01 28.87 16.427 C 28.87 17.845 29.341 19.03 30.282 19.984 Z\" fill=\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(25, 25, 25))\"></path><path d=\"M 5.783 0 L 5.783 8.348 C 7.407 6.686 9.438 5.855 11.875 5.855 C 14.66 5.855 16.98 6.863 18.837 8.88 C 20.694 10.896 21.622 13.412 21.622 16.427 C 21.622 19.442 20.694 21.958 18.837 23.975 C 16.98 25.992 14.66 27 11.875 27 C 9.438 27 7.407 26.169 5.783 24.506 L 5.783 26.517 L 0 26.517 L 0 1.315 Z M 7.195 19.984 C 8.136 20.937 9.315 21.414 10.734 21.414 C 12.152 21.414 13.332 20.937 14.273 19.984 C 15.214 19.03 15.685 17.845 15.685 16.427 C 15.685 15.01 15.214 13.824 14.273 12.871 C 13.332 11.917 12.152 11.441 10.734 11.441 C 9.315 11.441 8.136 11.917 7.195 12.871 C 6.253 13.824 5.783 15.01 5.783 16.427 C 5.783 17.845 6.253 19.03 7.195 19.984 Z\" fill=\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(25, 25, 25))\"></path></svg>',svgContentId:10715246203},rnP1pGH5N:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 129 27\"><path d=\"M 115.066 0.284 L 115.066 8.657 C 116.674 6.936 118.694 6.075 121.13 6.075 C 123.427 6.075 125.277 6.767 126.679 8.15 C 128.083 9.533 128.784 11.372 128.784 13.666 L 128.784 26.516 L 123.063 26.516 L 123.063 15.598 C 123.063 14.387 122.712 13.418 122.011 12.691 C 121.31 11.965 120.379 11.601 119.217 11.601 C 117.981 11.601 116.979 11.974 116.214 12.72 C 115.448 13.466 115.066 14.45 115.066 15.674 L 115.066 26.516 L 109.346 26.516 L 109.346 1.585 Z\" fill=\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(25, 25, 25))\"></path><path d=\"M 92.984 0.284 L 92.984 8.657 C 94.59 6.936 96.612 6.075 99.048 6.075 C 101.344 6.075 103.195 6.767 104.597 8.15 C 106 9.533 106.701 11.372 106.701 13.666 L 106.701 26.516 L 100.981 26.516 L 100.981 15.598 C 100.981 14.387 100.629 13.418 99.928 12.691 C 99.228 11.965 98.296 11.601 97.135 11.601 C 95.899 11.601 94.897 11.974 94.131 12.72 C 93.366 13.466 92.984 14.45 92.984 15.674 L 92.984 26.516 L 87.263 26.516 L 87.263 1.585 Z\" fill=\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(25, 25, 25))\"></path><path d=\"M 70.965 0 L 70.965 8.464 C 72.59 6.724 74.632 5.855 77.094 5.855 C 79.416 5.855 81.286 6.554 82.703 7.952 C 84.122 9.35 84.831 11.209 84.831 13.528 L 84.831 26.517 L 79.048 26.517 L 79.048 15.48 C 79.048 14.256 78.693 13.277 77.984 12.542 C 77.276 11.808 76.335 11.441 75.161 11.441 C 73.911 11.441 72.898 11.818 72.124 12.571 C 71.35 13.325 70.965 14.32 70.965 15.557 L 70.965 26.517 L 65.182 26.517 L 65.182 1.315 Z\" fill=\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(25, 25, 25))\"></path><path d=\"M 54.856 26.993 C 59.768 26.993 63.134 24.261 63.134 20.224 C 63.134 13.019 52.242 14.761 52.242 11.911 C 52.242 11.001 53.232 10.407 54.539 10.407 C 56.005 10.407 57.074 11.119 57.074 12.188 L 62.817 12.188 C 62.817 8.546 59.411 5.855 54.579 5.855 C 50.143 5.855 46.539 8.111 46.539 12.386 C 46.539 19.669 57.391 17.849 57.391 20.818 C 57.391 21.728 56.322 22.401 54.856 22.401 C 53.193 22.401 52.005 21.57 52.005 20.382 L 46.222 20.382 C 46.222 24.143 49.707 26.993 54.856 26.993 Z\" fill=\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(25, 25, 25))\"></path><path d=\"M 33.821 27 C 30.714 27 28.119 25.988 26.037 23.965 C 23.955 21.942 22.914 19.43 22.914 16.427 C 22.914 13.425 23.955 10.912 26.037 8.889 C 28.119 6.866 30.714 5.855 33.821 5.855 C 35.871 5.855 37.728 6.316 39.391 7.237 C 41.054 8.158 42.356 9.427 43.298 11.044 C 44.239 12.662 44.709 14.456 44.709 16.427 C 44.709 18.399 44.239 20.193 43.298 21.81 C 42.356 23.427 41.054 24.697 39.391 25.618 C 37.728 26.539 35.871 27 33.821 27 Z M 30.282 19.984 C 31.223 20.937 32.403 21.414 33.821 21.414 C 35.24 21.414 36.419 20.937 37.36 19.984 C 38.302 19.03 38.772 17.845 38.772 16.427 C 38.772 15.01 38.302 13.825 37.36 12.871 C 36.419 11.917 35.24 11.441 33.821 11.441 C 32.403 11.441 31.223 11.917 30.282 12.871 C 29.341 13.825 28.87 15.01 28.87 16.427 C 28.87 17.845 29.341 19.03 30.282 19.984 Z\" fill=\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(25, 25, 25))\"></path><path d=\"M 5.783 0 L 5.783 8.348 C 7.407 6.686 9.438 5.855 11.875 5.855 C 14.66 5.855 16.98 6.863 18.837 8.88 C 20.694 10.896 21.622 13.412 21.622 16.427 C 21.622 19.442 20.694 21.958 18.837 23.975 C 16.98 25.992 14.66 27 11.875 27 C 9.438 27 7.407 26.169 5.783 24.506 L 5.783 26.517 L 0 26.517 L 0 1.315 Z M 7.195 19.984 C 8.136 20.937 9.315 21.414 10.734 21.414 C 12.152 21.414 13.332 20.937 14.273 19.984 C 15.214 19.03 15.685 17.845 15.685 16.427 C 15.685 15.01 15.214 13.824 14.273 12.871 C 13.332 11.917 12.152 11.441 10.734 11.441 C 9.315 11.441 8.136 11.917 7.195 12.871 C 6.253 13.824 5.783 15.01 5.783 16.427 C 5.783 17.845 6.253 19.03 7.195 19.984 Z\" fill=\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(25, 25, 25))\"></path></svg>',svgContentId:10715246203}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-agyvgf\",layoutDependency:layoutDependency,layoutId:\"ztyOWctN_\",children:[isDisplayed1(TkHJE2O5U)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"192px\",y:(componentViewport?.y||0)+0+0+10+2,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hfxal4-container\",layoutDependency:layoutDependency,layoutId:\"MHifhYCeQ-container\",nodeId:\"MHifhYCeQ\",rendersWithMotion:true,scopeId:\"APMhPojmD\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"MHifhYCeQ\",layoutId:\"MHifhYCeQ\",mRp99xCGq:\"start for free\",style:{height:\"100%\",width:\"100%\"},variant:\"VIfFaRa5Z\",width:\"100%\",X_oeBzhz2:YJai0HkGP})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rilikp-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"qWBmi3ZPz-container\",nodeId:\"qWBmi3ZPz\",rendersWithMotion:true,scopeId:\"APMhPojmD\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-21c6d2dd-0a7f-4a5f-844f-14f4bbf90075, rgb(128, 134, 139))\",height:\"100%\",iconSearch:\"list\",iconSelection:\"House\",id:\"qWBmi3ZPz\",layoutId:\"qWBmi3ZPz\",mirrored:false,onClick:onClick1tjtxfa,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({jiIjA1pLG:{iconSearch:\"x\",onClick:onClicke7jlem},oWjOYwysi:{iconSearch:\"x\",onClick:onClick1ckbek0},pNcmXBx9Z:{onClick:onClick1qauavh},QhMEeSNLE:{iconSearch:\"x\",onClick:onClick1atj5sc},rnP1pGH5N:{onClick:onClicku3buu2},VByEngQZk:{iconSearch:\"x\",onClick:onClick1nleop4},vj2Xwj5V4:{onClick:onClick1l6vg53}},baseVariant,gestureVariant)})})}),isDisplayed2(TkHJE2O5U)&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"j_ASLr6HL\"},implicitPathVariables:undefined},{href:{webPageId:\"j_ASLr6HL\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({rnP1pGH5N:{height:32,width:\"131px\",y:(componentViewport?.y||0)+4+0+0+10}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1soci1r-container\",layoutDependency:layoutDependency,layoutId:\"vtjJG5cPx-container\",nodeId:\"vtjJG5cPx\",rendersWithMotion:true,scopeId:\"APMhPojmD\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"vtjJG5cPx\",layoutId:\"vtjJG5cPx\",mRp99xCGq:\"start for free\",style:{height:\"100%\",width:\"100%\"},variant:\"xj6wtEKxT\",width:\"100%\",X_oeBzhz2:resolvedLinks1[0],...addPropertyOverrides({rnP1pGH5N:{X_oeBzhz2:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-gr7i21\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"q17aeYoSB\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-62e998ec-f9f5-4be0-aa39-32624276c662, rgb(242, 242, 242))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-d624bab6-2e79-4b2b-942d-b7a193232c83, rgb(248, 249, 250))\"},children:isDisplayed4()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1u2kvj0\",\"data-framer-appear-id\":\"1u2kvj0\",\"data-framer-name\":\"Links\",\"data-hide-scrollbars\":true,initial:animation1,layoutDependency:layoutDependency,layoutId:\"I862PeXD1\",optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19aazel\",\"data-styles-preset\":\"S3qo4lpeK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104)))\"},children:\"Home\"})}),className:\"framer-rs9h6y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"upWLKxZfZ\",style:{\"--extracted-r6o4lv\":\"var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({QhMEeSNLE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19aazel\",\"data-styles-preset\":\"S3qo4lpeK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fHrEY_zLW\"},motionChild:true,nodeId:\"upWLKxZfZ\",openInNewTab:false,scopeId:\"APMhPojmD\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sfur21\",\"data-styles-preset\":\"niEoC5qC9\",children:\"Home\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19aazel\",\"data-styles-preset\":\"S3qo4lpeK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104)))\"},children:\"Plans\"})}),className:\"framer-11t3gai\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ruSeg7Hed\",style:{\"--extracted-r6o4lv\":\"var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({QhMEeSNLE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19aazel\",\"data-styles-preset\":\"S3qo4lpeK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"j_ASLr6HL\"},motionChild:true,nodeId:\"ruSeg7Hed\",openInNewTab:false,scopeId:\"APMhPojmD\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sfur21\",\"data-styles-preset\":\"niEoC5qC9\",children:\"Plans\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19aazel\",\"data-styles-preset\":\"S3qo4lpeK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104)))\"},children:\"About us\"})}),className:\"framer-dbcmbk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"q00Fdo8yZ\",style:{\"--extracted-r6o4lv\":\"var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({QhMEeSNLE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19aazel\",\"data-styles-preset\":\"S3qo4lpeK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{CE3Ccv5Q4:\"founder-story\"},unresolvedPathSlugs:{CE3Ccv5Q4:{collectionId:\"oRXr591Ze\",collectionItemId:\"cCLByLGVA\"}},webPageId:\"M3V8u9rfQ\"},motionChild:true,nodeId:\"q00Fdo8yZ\",openInNewTab:false,scopeId:\"APMhPojmD\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sfur21\",\"data-styles-preset\":\"niEoC5qC9\",children:\"About us\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19aazel\",\"data-styles-preset\":\"S3qo4lpeK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104)))\"},children:\"Reviews\"})}),className:\"framer-3gaap7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cjxkOcrNz\",style:{\"--extracted-r6o4lv\":\"var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({QhMEeSNLE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19aazel\",\"data-styles-preset\":\"S3qo4lpeK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WcHYzP8ZT\"},motionChild:true,nodeId:\"cjxkOcrNz\",openInNewTab:false,scopeId:\"APMhPojmD\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sfur21\",\"data-styles-preset\":\"niEoC5qC9\",children:\"Reviews\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19aazel\",\"data-styles-preset\":\"S3qo4lpeK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104)))\"},children:\"Blog\"})}),className:\"framer-vgukeu\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Kr3WyHVNp\",style:{\"--extracted-r6o4lv\":\"var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({QhMEeSNLE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19aazel\",\"data-styles-preset\":\"S3qo4lpeK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Fez0xL2v6\"},motionChild:true,nodeId:\"Kr3WyHVNp\",openInNewTab:false,scopeId:\"APMhPojmD\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sfur21\",\"data-styles-preset\":\"niEoC5qC9\",children:\"Blog\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19aazel\",\"data-styles-preset\":\"S3qo4lpeK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104)))\"},children:\"Download\"})}),className:\"framer-1x9hwy9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dLB28MeKu\",style:{\"--extracted-r6o4lv\":\"var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({QhMEeSNLE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19aazel\",\"data-styles-preset\":\"S3qo4lpeK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://download.boshhh.com\",motionChild:true,nodeId:\"dLB28MeKu\",openInNewTab:true,scopeId:\"APMhPojmD\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sfur21\",\"data-styles-preset\":\"niEoC5qC9\",children:\"Download\"})})})})}},baseVariant,gestureVariant)})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-48DHV.framer-li8nb3, .framer-48DHV .framer-li8nb3 { display: block; }\",\".framer-48DHV.framer-1eyycug { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-48DHV .framer-brwmlt { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-48DHV .framer-1d45r6o-container { flex: none; height: 48px; position: relative; width: 100%; }\",\".framer-48DHV .framer-ih5dp8 { 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: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-48DHV .framer-15wbqip, .framer-48DHV .framer-1b1ecg3, .framer-48DHV .framer-1h9gdm8, .framer-48DHV .framer-np5bsd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 201px; justify-content: space-between; overflow: visible; padding: 0px 12px 0px 12px; position: relative; width: 100%; }\",\".framer-48DHV .framer-1wn3ftd-container, .framer-48DHV .framer-o2yjen-container, .framer-48DHV .framer-18accse-container, .framer-48DHV .framer-xujnxj-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-48DHV .framer-p0r9h3, .framer-48DHV .framer-19u7rit, .framer-48DHV .framer-1bkq5zr, .framer-48DHV .framer-vwipk1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-48DHV .framer-1xabi0g, .framer-48DHV .framer-1t14pfw, .framer-48DHV .framer-pdm41d, .framer-48DHV .framer-d6hd7q { flex: none; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-48DHV .framer-7md9bv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 72px; justify-content: space-between; max-width: 1240px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-48DHV .framer-13xx21x { 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-48DHV .framer-c60yx5 { flex: none; height: 29px; position: relative; text-decoration: none; width: 139px; }\",\".framer-48DHV .framer-agyvgf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 52px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-48DHV .framer-hfxal4-container { flex: none; height: 48px; position: relative; width: 192px; }\",\".framer-48DHV .framer-1rilikp-container { cursor: pointer; flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-48DHV .framer-1soci1r-container { flex: none; height: 32px; position: relative; width: 131px; }\",\".framer-48DHV .framer-gr7i21 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-48DHV .framer-1u2kvj0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1240px; overflow: hidden; overflow-x: auto; padding: 20px 0px 24px 0px; position: relative; width: 1240px; }\",\".framer-48DHV .framer-rs9h6y, .framer-48DHV .framer-11t3gai, .framer-48DHV .framer-dbcmbk, .framer-48DHV .framer-3gaap7, .framer-48DHV .framer-vgukeu, .framer-48DHV .framer-1x9hwy9 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-48DHV.framer-1eyycug, .framer-48DHV .framer-brwmlt, .framer-48DHV .framer-ih5dp8, .framer-48DHV .framer-13xx21x, .framer-48DHV .framer-agyvgf, .framer-48DHV .framer-gr7i21, .framer-48DHV .framer-1u2kvj0 { gap: 0px; } .framer-48DHV.framer-1eyycug > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-48DHV.framer-1eyycug > :first-child, .framer-48DHV .framer-brwmlt > :first-child, .framer-48DHV .framer-ih5dp8 > :first-child { margin-top: 0px; } .framer-48DHV.framer-1eyycug > :last-child, .framer-48DHV .framer-brwmlt > :last-child, .framer-48DHV .framer-ih5dp8 > :last-child { margin-bottom: 0px; } .framer-48DHV .framer-brwmlt > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-48DHV .framer-ih5dp8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-48DHV .framer-13xx21x > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-48DHV .framer-13xx21x > :first-child, .framer-48DHV .framer-agyvgf > :first-child, .framer-48DHV .framer-gr7i21 > :first-child, .framer-48DHV .framer-1u2kvj0 > :first-child { margin-left: 0px; } .framer-48DHV .framer-13xx21x > :last-child, .framer-48DHV .framer-agyvgf > :last-child, .framer-48DHV .framer-gr7i21 > :last-child, .framer-48DHV .framer-1u2kvj0 > :last-child { margin-right: 0px; } .framer-48DHV .framer-agyvgf > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-48DHV .framer-gr7i21 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-48DHV .framer-1u2kvj0 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",\".framer-48DHV.framer-v-1q3zawe.framer-1eyycug, .framer-48DHV.framer-v-o8acxu.framer-1eyycug { width: 992px; }\",\".framer-48DHV.framer-v-1q3zawe .framer-7md9bv, .framer-48DHV.framer-v-o8acxu .framer-7md9bv { max-width: 1000px; padding: 0px 30px 0px 30px; }\",\".framer-48DHV.framer-v-1uc2f5p.framer-1eyycug, .framer-48DHV.framer-v-1p6wprm.framer-1eyycug { width: 768px; }\",\".framer-48DHV.framer-v-1uc2f5p .framer-7md9bv, .framer-48DHV.framer-v-1p6wprm .framer-7md9bv { max-width: 768px; padding: 0px 20px 0px 20px; }\",\".framer-48DHV.framer-v-bm6diz.framer-1eyycug { padding: 4px 20px 4px 20px; width: 390px; }\",\".framer-48DHV.framer-v-bm6diz .framer-7md9bv { gap: 10px; height: min-content; justify-content: center; }\",\".framer-48DHV.framer-v-bm6diz .framer-c60yx5, .framer-48DHV.framer-v-dm0762 .framer-c60yx5 { height: 27px; width: 129px; }\",\".framer-48DHV.framer-v-bm6diz .framer-agyvgf { flex: 1 0 0px; gap: 16px; width: 1px; }\",\".framer-48DHV.framer-v-bm6diz .framer-1rilikp-container { height: 28px; order: 2; width: 28px; }\",\".framer-48DHV.framer-v-bm6diz .framer-1soci1r-container, .framer-48DHV.framer-v-dm0762 .framer-brwmlt, .framer-48DHV.framer-v-dm0762 .framer-1d45r6o-container, .framer-48DHV.framer-v-dm0762 .framer-1wn3ftd-container, .framer-48DHV.framer-v-dm0762 .framer-o2yjen-container, .framer-48DHV.framer-v-dm0762 .framer-18accse-container, .framer-48DHV.framer-v-dm0762 .framer-1xabi0g, .framer-48DHV.framer-v-dm0762 .framer-xujnxj-container { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-48DHV.framer-v-bm6diz .framer-7md9bv, .framer-48DHV.framer-v-bm6diz .framer-agyvgf { gap: 0px; } .framer-48DHV.framer-v-bm6diz .framer-7md9bv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-48DHV.framer-v-bm6diz .framer-7md9bv > :first-child, .framer-48DHV.framer-v-bm6diz .framer-agyvgf > :first-child { margin-left: 0px; } .framer-48DHV.framer-v-bm6diz .framer-7md9bv > :last-child, .framer-48DHV.framer-v-bm6diz .framer-agyvgf > :last-child { margin-right: 0px; } .framer-48DHV.framer-v-bm6diz .framer-agyvgf > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",\".framer-48DHV.framer-v-dm0762.framer-1eyycug { gap: 24px; padding: 4px 20px 32px 20px; width: 390px; }\",\".framer-48DHV.framer-v-dm0762 .framer-ih5dp8, .framer-48DHV.framer-v-dm0762 .framer-p0r9h3, .framer-48DHV.framer-v-dm0762 .framer-19u7rit, .framer-48DHV.framer-v-dm0762 .framer-1bkq5zr, .framer-48DHV.framer-v-dm0762 .framer-vwipk1 { order: 0; }\",\".framer-48DHV.framer-v-dm0762 .framer-15wbqip { height: 38px; order: 0; }\",\".framer-48DHV.framer-v-dm0762 .framer-1b1ecg3 { height: 38px; order: 2; }\",\".framer-48DHV.framer-v-dm0762 .framer-1h9gdm8 { height: 38px; order: 4; }\",\".framer-48DHV.framer-v-dm0762 .framer-np5bsd { height: 38px; order: 6; }\",\".framer-48DHV.framer-v-dm0762 .framer-1t14pfw { order: 3; }\",\".framer-48DHV.framer-v-dm0762 .framer-pdm41d { order: 7; }\",\".framer-48DHV.framer-v-dm0762 .framer-d6hd7q { order: 5; }\",\".framer-48DHV.framer-v-dm0762 .framer-7md9bv { gap: 10px; height: min-content; justify-content: center; order: 0; }\",\".framer-48DHV.framer-v-dm0762 .framer-agyvgf { flex: 1 0 0px; width: 1px; }\",\".framer-48DHV.framer-v-dm0762 .framer-1rilikp-container { height: 28px; width: 28px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-48DHV.framer-v-dm0762.framer-1eyycug, .framer-48DHV.framer-v-dm0762 .framer-7md9bv { gap: 0px; } .framer-48DHV.framer-v-dm0762.framer-1eyycug > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-48DHV.framer-v-dm0762.framer-1eyycug > :first-child { margin-top: 0px; } .framer-48DHV.framer-v-dm0762.framer-1eyycug > :last-child { margin-bottom: 0px; } .framer-48DHV.framer-v-dm0762 .framer-7md9bv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-48DHV.framer-v-dm0762 .framer-7md9bv > :first-child { margin-left: 0px; } .framer-48DHV.framer-v-dm0762 .framer-7md9bv > :last-child { margin-right: 0px; } }\",\".framer-48DHV.framer-v-vv2wc9 .framer-gr7i21, .framer-48DHV.framer-v-o8acxu .framer-gr7i21, .framer-48DHV.framer-v-1p6wprm .framer-gr7i21 { height: min-content; }\",\".framer-48DHV.framer-v-o8acxu .framer-1u2kvj0 { max-width: 1000px; padding: 20px 30px 24px 30px; width: 1000px; }\",\".framer-48DHV.framer-v-1p6wprm .framer-1u2kvj0 { max-width: 768px; padding: 20px 20px 24px 20px; width: 768px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-48DHV[data-border=\"true\"]::after, .framer-48DHV [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; }','.framer-48DHV[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-48DHV [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-48DHV[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-48DHV [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-48DHV[data-hide-scrollbars=\"true\"], .framer-48DHV [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 73\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"pNcmXBx9Z\":{\"layout\":[\"fixed\",\"auto\"]},\"vj2Xwj5V4\":{\"layout\":[\"fixed\",\"auto\"]},\"rnP1pGH5N\":{\"layout\":[\"fixed\",\"auto\"]},\"jiIjA1pLG\":{\"layout\":[\"fixed\",\"auto\"]},\"QhMEeSNLE\":{\"layout\":[\"fixed\",\"auto\"]},\"VByEngQZk\":{\"layout\":[\"fixed\",\"auto\"]},\"oWjOYwysi\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"TkHJE2O5U\":\"visible\",\"YJai0HkGP\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerAPMhPojmD=withCSS(Component,css,\"framer-48DHV\");export default FramerAPMhPojmD;FramerAPMhPojmD.displayName=\"navigation\";FramerAPMhPojmD.defaultProps={height:73,width:1440};addPropertyControls(FramerAPMhPojmD,{variant:{options:[\"eLQ28d76A\",\"pNcmXBx9Z\",\"vj2Xwj5V4\",\"rnP1pGH5N\",\"jiIjA1pLG\",\"QhMEeSNLE\",\"VByEngQZk\",\"oWjOYwysi\"],optionTitles:[\"Desktop Close\",\"Laptop Close\",\"Tablet Close\",\"Phone Close\",\"Phone Open\",\"Desktop Open\",\"Laptop Open\",\"Tablet Open\"],title:\"Variant\",type:ControlType.Enum},TkHJE2O5U:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean},YJai0HkGP:{title:\"Link\",type:ControlType.Link}});addFonts(FramerAPMhPojmD,[{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\"}]},...ButtonFonts,...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAPMhPojmD\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"73\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pNcmXBx9Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vj2Xwj5V4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rnP1pGH5N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jiIjA1pLG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QhMEeSNLE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VByEngQZk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oWjOYwysi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"TkHJE2O5U\\\":\\\"visible\\\",\\\"YJai0HkGP\\\":\\\"link\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./APMhPojmD.map", "// Generated by Framer (aba0f78)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/7VlgXxcHIzhipJKoQEhK/X6w2v3nvrBTEmHYhDIB4/Ijk4Qs6Tg.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/4hx5J2Dh9BnCNffaOvlT/gG4KSqemFieICtaBpxcz/yrsGIxqQ4.js\";const cycleOrder=[\"ZviN9F6HV\",\"jlmpcdoW3\"];const serializationHash=\"framer-19x58\";const variantClassNames={jlmpcdoW3:\"framer-v-1z0kgub\",ZviN9F6HV:\"framer-v-jfnts9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,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={Closed:\"ZviN9F6HV\",Open:\"jlmpcdoW3\"};const getProps=({answer,height,id,pricingLink,question,width,...props})=>{return{...props,T8rQFvSBR:answer??props.T8rQFvSBR??\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"ZviN9F6HV\",VbZpHih7_:pricingLink??props.VbZpHih7_??true,W88zB8mIG:question??props.W88zB8mIG??\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,W88zB8mIG,T8rQFvSBR,VbZpHih7_,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZviN9F6HV\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1lhlz5b=activeVariantCallback(async(...args)=>{setVariant(\"jlmpcdoW3\");});const onTapir5jh3=activeVariantCallback(async(...args)=>{setVariant(\"ZviN9F6HV\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"jlmpcdoW3\")return true;return false;};const isDisplayed1=value=>{if(baseVariant===\"jlmpcdoW3\")return value;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-jfnts9\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"ZviN9F6HV\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-62e998ec-f9f5-4be0-aa39-32624276c662, rgb(242, 242, 242))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-d624bab6-2e79-4b2b-942d-b7a193232c83, rgb(248, 249, 250))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({jlmpcdoW3:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-36m2vc\",\"data-border\":true,\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Y8S8vQA_I\",onTap:onTap1lhlz5b,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-62e998ec-f9f5-4be0-aa39-32624276c662, rgb(242, 242, 242))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-5faac03b-3520-402e-b6b0-fae17c157fe3, rgb(255, 255, 255))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},...addPropertyOverrides({jlmpcdoW3:{onTap:onTapir5jh3}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c91jic\",layoutDependency:layoutDependency,layoutId:\"sjFHEifbY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(25, 25, 25)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1545klp\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"HRlBlokGc\",style:{\"--extracted-r6o4lv\":\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(25, 25, 25))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6vgc5i\",layoutDependency:layoutDependency,layoutId:\"cIGyxLGzw\",style:{backgroundColor:\"var(--token-d624bab6-2e79-4b2b-942d-b7a193232c83, rgb(248, 249, 250))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x9zd11\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"KuLevHYt2\",style:{opacity:.3,rotate:0},variants:{jlmpcdoW3:{rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-4o9kfq\",layoutDependency:layoutDependency,layoutId:\"p0ymvrYGd\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19yw582\",layoutDependency:layoutDependency,layoutId:\"ZoBZeGzw2\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1imn2jt\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"MeKROLUhK\",style:{opacity:0},variants:{jlmpcdoW3:{opacity:1}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1288qtq\",\"data-styles-preset\":\"Ijk4Qs6Tg\",children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-hj9qr9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SKU2Mlkfs\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:T8rQFvSBR,variants:{jlmpcdoW3:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1(VbZpHih7_)&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1288qtq\",\"data-styles-preset\":\"Ijk4Qs6Tg\",children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-exb27e\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KQWlQhYq1\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:T8rQFvSBR,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jlmpcdoW3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1288qtq\",\"data-styles-preset\":\"Ijk4Qs6Tg\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"j_ASLr6HL\"},motionChild:true,nodeId:\"KQWlQhYq1\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19spalq\",\"data-styles-preset\":\"yrsGIxqQ4\",children:\"Start For Free Today\"})})})}),text:undefined}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-19x58.framer-g4ix7n, .framer-19x58 .framer-g4ix7n { display: block; }\",\".framer-19x58.framer-jfnts9 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 4px; position: relative; width: 667px; will-change: var(--framer-will-change-override, transform); }\",\".framer-19x58 .framer-36m2vc { -webkit-user-select: none; align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 20px 20px 28px; position: relative; user-select: none; width: 100%; }\",\".framer-19x58 .framer-1c91jic { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-19x58 .framer-1545klp { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-19x58 .framer-6vgc5i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 40px; }\",\".framer-19x58 .framer-x9zd11 { flex: none; height: 16px; overflow: hidden; position: relative; width: 16px; z-index: 1; }\",\".framer-19x58 .framer-4o9kfq { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-19x58 .framer-19yw582 { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-19x58 .framer-1imn2jt { 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: 81%; }\",\".framer-19x58 .framer-hj9qr9, .framer-19x58 .framer-exb27e { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-19x58.framer-jfnts9, .framer-19x58 .framer-36m2vc, .framer-19x58 .framer-6vgc5i, .framer-19x58 .framer-1imn2jt { gap: 0px; } .framer-19x58.framer-jfnts9 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-19x58.framer-jfnts9 > :first-child, .framer-19x58 .framer-36m2vc > :first-child, .framer-19x58 .framer-1imn2jt > :first-child { margin-top: 0px; } .framer-19x58.framer-jfnts9 > :last-child, .framer-19x58 .framer-36m2vc > :last-child, .framer-19x58 .framer-1imn2jt > :last-child { margin-bottom: 0px; } .framer-19x58 .framer-36m2vc > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-19x58 .framer-6vgc5i > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-19x58 .framer-6vgc5i > :first-child { margin-left: 0px; } .framer-19x58 .framer-6vgc5i > :last-child { margin-right: 0px; } .framer-19x58 .framer-1imn2jt > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-19x58.framer-v-1z0kgub .framer-1imn2jt { padding: 0px 20px 20px 0px; }\",\".framer-19x58.framer-v-1z0kgub .framer-hj9qr9 { order: 0; }\",\".framer-19x58.framer-v-1z0kgub .framer-exb27e { order: 1; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-19x58[data-border=\"true\"]::after, .framer-19x58 [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 98.5\n * @framerIntrinsicWidth 667\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jlmpcdoW3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\",\"VbZpHih7_\":\"pricingLink\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfKMMDuBkA=withCSS(Component,css,\"framer-19x58\");export default FramerfKMMDuBkA;FramerfKMMDuBkA.displayName=\"Row 2\";FramerfKMMDuBkA.defaultProps={height:98.5,width:667};addPropertyControls(FramerfKMMDuBkA,{variant:{options:[\"ZviN9F6HV\",\"jlmpcdoW3\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String},VbZpHih7_:{defaultValue:true,title:\"Pricing Link\",type:ControlType.Boolean}});addFonts(FramerfKMMDuBkA,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{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),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfKMMDuBkA\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"667\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\",\\\"VbZpHih7_\\\":\\\"pricingLink\\\"}\",\"framerIntrinsicHeight\":\"98.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jlmpcdoW3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fKMMDuBkA.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Row2 from\"https://framerusercontent.com/modules/9U07pYfcMDrUve9JRtOS/uO0bl7soYvGXmVtJKP3E/fKMMDuBkA.js\";const Row2Fonts=getFonts(Row2);const serializationHash=\"framer-z1Gpr\";const variantClassNames={u4cwAMAQ3:\"framer-v-183dces\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,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 getProps=({height,id,pricingLink,width,...props})=>{return{...props,JmIgZtlW8:pricingLink??props.JmIgZtlW8??true};};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,JmIgZtlW8,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"u4cwAMAQ3\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-183dces\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"u4cwAMAQ3\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:98,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hsq7jo-container\",layoutDependency:layoutDependency,layoutId:\"CFYJfaJ0V-container\",nodeId:\"CFYJfaJ0V\",rendersWithMotion:true,scopeId:\"g5bagolnR\",children:/*#__PURE__*/_jsx(Row2,{height:\"100%\",id:\"CFYJfaJ0V\",layoutId:\"CFYJfaJ0V\",style:{width:\"100%\"},T8rQFvSBR:\"Boshhh Mobile boosts your credit score through regular, on-time mobile payments. By building a positive credit history, our service improves your eligibility for loans and better financing options.\",variant:\"ZviN9F6HV\",VbZpHih7_:JmIgZtlW8,W88zB8mIG:\"How does Boshhh Mobile help improve my chances of loan approval?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:98,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+110,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xo6944-container\",layoutDependency:layoutDependency,layoutId:\"RyUn7gaoy-container\",nodeId:\"RyUn7gaoy\",rendersWithMotion:true,scopeId:\"g5bagolnR\",children:/*#__PURE__*/_jsx(Row2,{height:\"100%\",id:\"RyUn7gaoy\",layoutId:\"RyUn7gaoy\",style:{width:\"100%\"},T8rQFvSBR:\"Yes, our credit-building SIM plans reward you for prompt payments. Over time, these consistent payments help raise your credit score, making you more attractive to lenders.\\n\\n\",variant:\"ZviN9F6HV\",VbZpHih7_:JmIgZtlW8,W88zB8mIG:\"Can using Boshhh Mobile really enhance my credit score?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:98,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+220,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-koiqv4-container\",layoutDependency:layoutDependency,layoutId:\"nwBFtpyh0-container\",nodeId:\"nwBFtpyh0\",rendersWithMotion:true,scopeId:\"g5bagolnR\",children:/*#__PURE__*/_jsx(Row2,{height:\"100%\",id:\"nwBFtpyh0\",layoutId:\"nwBFtpyh0\",style:{width:\"100%\"},T8rQFvSBR:\"While results vary, many users notice improvements within a few months. Regular on-time payments contribute to a stronger credit profile, increasing your chances for loan approval over time.\",variant:\"ZviN9F6HV\",VbZpHih7_:JmIgZtlW8,W88zB8mIG:\"How soon can I expect to see a credit score improvement with Boshhh?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:98,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+330,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xpvy6e-container\",layoutDependency:layoutDependency,layoutId:\"odQhJ1gDc-container\",nodeId:\"odQhJ1gDc\",rendersWithMotion:true,scopeId:\"g5bagolnR\",children:/*#__PURE__*/_jsx(Row2,{height:\"100%\",id:\"odQhJ1gDc\",layoutId:\"odQhJ1gDc\",style:{width:\"100%\"},T8rQFvSBR:\"Absolutely. Beyond credit building, our affordable, flexible mobile plans help you manage costs. A healthier credit score opens doors to better loan terms, lower interest rates, and enhanced financial opportunities.\",variant:\"ZviN9F6HV\",VbZpHih7_:JmIgZtlW8,W88zB8mIG:\"Are there additional benefits for those seeking loans with Boshhh Mobile?\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-z1Gpr.framer-1qje0de, .framer-z1Gpr .framer-1qje0de { display: block; }\",\".framer-z1Gpr.framer-183dces { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1000px; }\",\".framer-z1Gpr .framer-hsq7jo-container, .framer-z1Gpr .framer-xo6944-container, .framer-z1Gpr .framer-koiqv4-container, .framer-z1Gpr .framer-1xpvy6e-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-z1Gpr.framer-183dces { gap: 0px; } .framer-z1Gpr.framer-183dces > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-z1Gpr.framer-183dces > :first-child { margin-top: 0px; } .framer-z1Gpr.framer-183dces > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 388\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"JmIgZtlW8\":\"pricingLink\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerg5bagolnR=withCSS(Component,css,\"framer-z1Gpr\");export default Framerg5bagolnR;Framerg5bagolnR.displayName=\"Accordion 2\";Framerg5bagolnR.defaultProps={height:388,width:1e3};addPropertyControls(Framerg5bagolnR,{JmIgZtlW8:{defaultValue:true,title:\"Pricing Link\",type:ControlType.Boolean}});addFonts(Framerg5bagolnR,[{explicitInter:true,fonts:[]},...Row2Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerg5bagolnR\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"388\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1000\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"JmIgZtlW8\\\":\\\"pricingLink\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./g5bagolnR.map", "// Generated by Framer (74b1a33)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/qXwaZoDLEi4Mb8WPlKZD/Puf14EqmVZtOxgATODUq/AnhW6ery9.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/7VlgXxcHIzhipJKoQEhK/X6w2v3nvrBTEmHYhDIB4/Ijk4Qs6Tg.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/0ccxQ7VARPhdhsWWHyjy/nIoklaIEdcoUelpGgnHU/nysMVyY4y.js\";const PhosphorFonts=getFonts(Phosphor);const serializationHash=\"framer-7TWqd\";const variantClassNames={nhEVHqgNl:\"framer-v-scqotu\"};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 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 getProps=({heading,height,id,lastStar,location,picture,text,title,width,...props})=>{return{...props,BLmdcS8NV:location??props.BLmdcS8NV??\"London, United Kingdom\",Nn3rbFR50:heading??props.Nn3rbFR50??'\"I\\'ve finally been approved for my personal loan with Barclays\"',OTZhoZaD6:title??props.OTZhoZaD6??\"Sarah White\",oxu2wJ5b_:picture??props.oxu2wJ5b_??{alt:\"\",src:\"https://framerusercontent.com/images/XIAlQSLJwdtDNAfjsDyV9uR99Y.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/XIAlQSLJwdtDNAfjsDyV9uR99Y.webp?scale-down-to=512 512w,https://framerusercontent.com/images/XIAlQSLJwdtDNAfjsDyV9uR99Y.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/XIAlQSLJwdtDNAfjsDyV9uR99Y.webp 1080w\"},x06hqvZRJ:text??props.x06hqvZRJ??\"My credit score jumped by 170 points! After months of trying, I\u2019ve finally been approved for a personal loan. Great service.\",XdZkwuJCj:lastStar??props.XdZkwuJCj??\"star-half\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,oxu2wJ5b_,Nn3rbFR50,x06hqvZRJ,XdZkwuJCj,OTZhoZaD6,BLmdcS8NV,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"nhEVHqgNl\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-scqotu\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"nhEVHqgNl\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-62e998ec-f9f5-4be0-aa39-32624276c662, rgb(242, 242, 242))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-d624bab6-2e79-4b2b-942d-b7a193232c83, rgb(248, 249, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g0jrvn\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"Va5ng5x9F\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-62e998ec-f9f5-4be0-aa39-32624276c662, rgb(242, 242, 242))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-5faac03b-3520-402e-b6b0-fae17c157fe3, rgb(255, 255, 255))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1udd060\",layoutDependency:layoutDependency,layoutId:\"UiGStpRF5\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+4+(((componentViewport?.height||351)-8-567)/2+0+0)+32+0+0),pixelHeight:1080,pixelWidth:1080,sizes:\"44px\",...toResponsiveImage(oxu2wJ5b_)},className:\"framer-1bvtidj\",layoutDependency:layoutDependency,layoutId:\"hBtuT4Djt\",style:{borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ho5af3\",layoutDependency:layoutDependency,layoutId:\"Fj02bQ_Ln\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-emf14z-container\",layoutDependency:layoutDependency,layoutId:\"O8E7BCyCg-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(249, 159, 51)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"O8E7BCyCg\",layoutId:\"O8E7BCyCg\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-108aq1x-container\",layoutDependency:layoutDependency,layoutId:\"QHbMRGuFn-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(249, 159, 51)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"QHbMRGuFn\",layoutId:\"QHbMRGuFn\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ees8jk-container\",layoutDependency:layoutDependency,layoutId:\"mkAJL5gHV-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(249, 159, 51)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"mkAJL5gHV\",layoutId:\"mkAJL5gHV\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lwa6ci-container\",layoutDependency:layoutDependency,layoutId:\"J3AAb0mw9-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(249, 159, 51)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"J3AAb0mw9\",layoutId:\"J3AAb0mw9\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lhiqxp-container\",layoutDependency:layoutDependency,layoutId:\"L3lEC2d0Q-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(249, 159, 51)\",height:\"100%\",iconSearch:XdZkwuJCj,iconSelection:\"House\",id:\"L3lEC2d0Q\",layoutId:\"L3lEC2d0Q\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pdwbl3\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"pKaup2GKM\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(25, 25, 25)))\"},children:'\"I\\'ve finally been approved for my personal loan with Barclays\"'})}),className:\"framer-dnpk12\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"FEGpragKW\",style:{\"--extracted-r6o4lv\":\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(25, 25, 25))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Nn3rbFR50,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1288qtq\",\"data-styles-preset\":\"Ijk4Qs6Tg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104)))\"},children:\"My credit score jumped by 170 points! After months of trying, I\u2019ve finally been approved for a personal loan. Great service.\"})}),className:\"framer-11l32c0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UXVIIM5bp\",style:{\"--extracted-r6o4lv\":\"var(--token-dafffb52-9247-4698-bc28-ae2ee782aa9a, rgb(95, 99, 104))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:x06hqvZRJ,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gbqzlf\",\"data-framer-name\":\"Designation & Image\",layoutDependency:layoutDependency,layoutId:\"knKp4mvxg\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-chjaiy\",\"data-framer-name\":\"Designation & Name\",layoutDependency:layoutDependency,layoutId:\"iTo5SxbKm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1q2m7w9\",\"data-styles-preset\":\"AnhW6ery9\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(25, 25, 25)))\"},children:\"Sarah White\"})}),className:\"framer-zmfirn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dS5bIpbjx\",style:{\"--extracted-r6o4lv\":\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(25, 25, 25))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:OTZhoZaD6,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wx42e9\",\"data-styles-preset\":\"nysMVyY4y\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-21c6d2dd-0a7f-4a5f-844f-14f4bbf90075, rgb(128, 134, 139)))\"},children:\"London, United Kingdom\"})}),className:\"framer-1m48fjt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oAq_pxV_U\",style:{\"--extracted-r6o4lv\":\"var(--token-21c6d2dd-0a7f-4a5f-844f-14f4bbf90075, rgb(128, 134, 139))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:BLmdcS8NV,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7TWqd.framer-zib1n7, .framer-7TWqd .framer-zib1n7 { display: block; }\",\".framer-7TWqd.framer-scqotu { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 4px; position: relative; width: 408px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7TWqd .framer-1g0jrvn { 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: 32px; position: relative; width: 100%; }\",\".framer-7TWqd .framer-1udd060 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7TWqd .framer-1bvtidj { flex: none; height: 44px; overflow: visible; position: relative; width: 44px; }\",\".framer-7TWqd .framer-ho5af3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-7TWqd .framer-emf14z-container, .framer-7TWqd .framer-108aq1x-container, .framer-7TWqd .framer-1ees8jk-container, .framer-7TWqd .framer-lwa6ci-container, .framer-7TWqd .framer-1lhiqxp-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-7TWqd .framer-pdwbl3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7TWqd .framer-dnpk12, .framer-7TWqd .framer-11l32c0, .framer-7TWqd .framer-1m48fjt { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7TWqd .framer-gbqzlf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7TWqd .framer-chjaiy { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-7TWqd .framer-zmfirn { flex: none; height: 24px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7TWqd.framer-scqotu, .framer-7TWqd .framer-1g0jrvn, .framer-7TWqd .framer-ho5af3, .framer-7TWqd .framer-pdwbl3, .framer-7TWqd .framer-gbqzlf, .framer-7TWqd .framer-chjaiy { gap: 0px; } .framer-7TWqd.framer-scqotu > *, .framer-7TWqd .framer-1g0jrvn > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-7TWqd.framer-scqotu > :first-child, .framer-7TWqd .framer-1g0jrvn > :first-child, .framer-7TWqd .framer-pdwbl3 > :first-child, .framer-7TWqd .framer-chjaiy > :first-child { margin-top: 0px; } .framer-7TWqd.framer-scqotu > :last-child, .framer-7TWqd .framer-1g0jrvn > :last-child, .framer-7TWqd .framer-pdwbl3 > :last-child, .framer-7TWqd .framer-chjaiy > :last-child { margin-bottom: 0px; } .framer-7TWqd .framer-ho5af3 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-7TWqd .framer-ho5af3 > :first-child, .framer-7TWqd .framer-gbqzlf > :first-child { margin-left: 0px; } .framer-7TWqd .framer-ho5af3 > :last-child, .framer-7TWqd .framer-gbqzlf > :last-child { margin-right: 0px; } .framer-7TWqd .framer-pdwbl3 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-7TWqd .framer-gbqzlf > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-7TWqd .framer-chjaiy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-7TWqd[data-border=\"true\"]::after, .framer-7TWqd [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 351\n * @framerIntrinsicWidth 408\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"oxu2wJ5b_\":\"picture\",\"Nn3rbFR50\":\"heading\",\"x06hqvZRJ\":\"text\",\"XdZkwuJCj\":\"lastStar\",\"OTZhoZaD6\":\"title\",\"BLmdcS8NV\":\"location\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGjQAB0YL7=withCSS(Component,css,\"framer-7TWqd\");export default FramerGjQAB0YL7;FramerGjQAB0YL7.displayName=\"Testimonial/Testimonial Single Card\";FramerGjQAB0YL7.defaultProps={height:351,width:408};addPropertyControls(FramerGjQAB0YL7,{oxu2wJ5b_:{__defaultAssetReference:\"data:framer/asset-reference,XIAlQSLJwdtDNAfjsDyV9uR99Y.webp?originalFilename=pictures_1.webp&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,XIAlQSLJwdtDNAfjsDyV9uR99Y.webp?originalFilename=pictures_1.webp&preferredSize=auto\"},title:\"picture\",type:ControlType.ResponsiveImage},Nn3rbFR50:{defaultValue:'\"I\\'ve finally been approved for my personal loan with Barclays\"',displayTextArea:false,title:\"heading\",type:ControlType.String},x06hqvZRJ:{defaultValue:\"My credit score jumped by 170 points! After months of trying, I\u2019ve finally been approved for a personal loan. Great service.\",displayTextArea:false,title:\"text\",type:ControlType.String},XdZkwuJCj:{defaultValue:\"star-half\",placeholder:\"Menu, Wifi, Box\u2026\",title:\"last-star\",type:ControlType.String},OTZhoZaD6:{defaultValue:\"Sarah White\",displayTextArea:false,title:\"Title\",type:ControlType.String},BLmdcS8NV:{defaultValue:\"London, United Kingdom\",displayTextArea:false,title:\"Location\",type:ControlType.String}});addFonts(FramerGjQAB0YL7,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{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\"}]},...PhosphorFonts,...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\":\"FramerGjQAB0YL7\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"408\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"351\",\"framerVariables\":\"{\\\"oxu2wJ5b_\\\":\\\"picture\\\",\\\"Nn3rbFR50\\\":\\\"heading\\\",\\\"x06hqvZRJ\\\":\\\"text\\\",\\\"XdZkwuJCj\\\":\\\"lastStar\\\",\\\"OTZhoZaD6\\\":\\\"title\\\",\\\"BLmdcS8NV\\\":\\\"location\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GjQAB0YL7.map"],
  "mappings": "64BAIG,SAASA,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,CAACC,GAAgB,IAAIH,EAAiBI,GAAO,WAAW,gBAAgB,EAAE,OAAO,CAAC,CAAE,EAAE,CAAC,CAAC,EAASL,CAAc,CAK/M,SAASM,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,EAAQC,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,GAAU,WAAAC,EAAW,aAAAC,GAAa,WAAAC,GAAW,YAAAC,GAAY,WAAAC,EAAU,EAAE9B,EAAkB,CAAC,cAAA+B,GAAc,iBAAAC,GAAiB,QAAAC,GAAQ,UAAAC,GAAU,WAAAC,GAAW,YAAAC,GAAY,QAAAC,GAAQ,SAAAC,GAAS,eAAAC,GAAe,kBAAAC,GAAkB,YAAAC,GAAY,SAAAC,CAAQ,EAAEtC,EAAoB,CAAC,kBAAAuC,GAAkB,UAAAC,GAAU,YAAAC,GAAY,UAAAC,GAAU,UAAAC,GAAU,WAAAC,GAAW,aAAAC,EAAY,EAAE/C,EAE5oBjB,EAAWf,EAAO,MAAS,EAG3BiB,GAAajB,EAAO,MAAS,EAI7BgF,GAAc/E,GAAe,CAAC,EAAQe,GAAoBiE,GAAW,CAACD,GAAc,IAAI/D,GAAa,UAAU,OAAUA,GAAa,QAAQgE,CAAS,CAAE,EAGzJlG,GAAcD,GAAW,EAEzBoG,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,EAAE3G,EAAa,EAAQ6G,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,EAAE7G,GAASyD,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,KAAY,WAAWwC,GAAU,MAAM,eAAevC,GAAY,CAAC,MAAMwC,GAAW,MAAM,QAAgBzC,KAAY,YAAWwC,GAAU,MAAM,QAAQ,IAAItC,EAAY,OAAO7B,CAAG,QAAQA,EAAI6B,EAAY,MAAMuC,GAAW,MAAM,QAAWtC,KAAa,WAAWqC,GAAU,OAAO,eAAepC,IAAa,CAAC,MAAMqC,GAAW,OAAO,QAAgBtC,KAAa,SAAQqC,GAAU,OAAO,QAAQ,IAAInC,EAAU,OAAOhC,CAAG,QAAQA,EAAIgC,EAAU,MAAMoC,GAAW,OAAO,QAAQ,IAAMC,GAAevD,EAAS,SAAS,OAAawD,GAAe,CAAC,GAAGC,GAAmB,QAAAvD,CAAO,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,aAAa3C,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,EAAWC,GAAoBC,GAAawF,GAAY,IAAI,CAAC,GAAG,CAAC1F,EAAW,QAAQ,OAAO,GAAK,CAAC,aAAA2F,EAAa,gBAAAC,EAAgB,aAAAC,EAAY,EAAE7F,EAAW,QAAc8F,EAAQ7B,GAAc,IAAI,EAAE,GAAG,CAAC0B,GAAc,CAACC,EAAgB,OAAO,GAAGD,EAAaC,EAAgB,CAACtH,GAAWwH,EAAQ,EAAE3B,GAAMhC,CAAc,EAAE7D,GAAWwH,EAAQD,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,GAAS3B,GAAM2B,EAAQF,EAAiBhG,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,EAO/qE,IAAIqG,EAAY,KAAK,KAAKL,EAAaC,CAAe,EAAM,MAAMI,CAAW,IAC7FA,EAAYvE,EAAS,MAAIuE,EAAYvE,GAAYuE,IAAclB,IAASC,GAAYiB,CAAW,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,GAAG,IAAMkG,GAAa,CAACC,EAAM1H,IAAS,CAAC,GAAG,CAACwB,EAAW,QAAQ,OAAO,GAAK,CAAC,QAAA8F,CAAO,EAAE9F,EAAW,QAAa,CAAC,SAAAmG,EAAQ,EAAEtB,GAAY,QAAYuB,EAAiBL,EAAEG,IAAQ,EAAE,EAAEC,GAAS,OAAO,EAAE,KAAMC,IAAe,QAAU,CAAC,IAAMC,GAAKF,GAASJ,CAAC,EAAQ5B,GAAMpE,EAAKsG,GAAK,WAAWA,GAAK,UAAgBC,GAAOvG,EAAKsG,GAAK,YAAYA,GAAK,aAAmBjC,GAAID,GAAMmC,GAAaC,GAAU,IAAOL,IAAQ,EAAoB3H,GAAS4F,GAAMC,GAAI5F,CAAM,EAAgB,EAAE+H,GAAWH,EAAajC,GAAe4B,IAAII,GAAS,OAAO,IAAGC,EAAahC,IAAc8B,IAAQ,KAAqB3H,GAAS4F,GAAMC,GAAI5F,CAAM,EAAgB+H,GAAWH,EAAahC,GAAa2B,IAAI,IAAGK,EAAajC,KAAQ4B,GAAGG,CAAM,CAAC,OAAOE,CAAa,EAAQI,GAAgBC,GAAiB,EAAQC,GAAKC,GAAU,CAACzG,GAAa,QAAQyG,EAAS,IAAMC,EAAQ7G,EAAK,CAAC,KAAK4G,CAAQ,EAAE,CAAC,IAAIA,CAAQ,EAAE9B,GAAY,QAAQ,SAAS,CAAC,GAAG+B,EAAQ,SAASJ,GAAgB,OAAO,QAAQ,CAAC,CAAE,EAAQK,GAASC,GAAM,CAAC,GAAG,CAAC9G,EAAW,QAAQ,OAAO,GAAK,CAAC,aAAA6F,CAAY,EAAE7F,EAAW,QAAQ0G,GAAKI,GAAMjB,GAAcf,GAAS,GAAG,CAAE,EAAQiC,GAAUb,GAAO,IAAI,CAAC,GAAG,CAAClG,EAAW,QAAQ,OAAO,GAAK,CAAC,gBAAA4F,EAAgB,aAAAC,CAAY,EAAE7F,EAAW,QAAc8F,GAAQ7B,GAAc,IAAI,EAAQ+C,EAAWnB,EAAaf,GAAemC,EAAYC,GAAM,EAAEpC,GAAS,EAAE,KAAK,MAAMgB,GAAQkB,CAAU,CAAC,EACt6CH,GAASI,EAAYf,CAAK,CAAE,EAE5G,GAAGzE,IAAW,EAAG,OAAoB0F,EAAKC,GAAY,CAAC,CAAC,EAAG,IAAMC,GAAK,CAAC,EAAQC,GAAc,CAAC,EAAE,GAAGxC,GAAS,GAAG/B,IAAkB,CAACD,GAAc,CAAC,QAAQiD,EAAE,EAAEA,EAAEjB,GAASiB,IAAI,CAAC,IAAMwB,EAAW5F,GAAU,CAACoE,GAAG,GAAMsB,GAAK,KAAkBF,EAAKK,GAAI,CAAC,SAAS,CAAC,GAAGC,GAAS,MAAMzE,GAAQ,OAAOA,GAAQ,gBAAgBK,EAAQ,EAAE,YAAY3D,GAAiB,WAAW6H,EAAW,gBAAgBhE,GAAkB,QAAQC,GAAY,QAAQ,IAAIqD,GAASd,CAAC,EAAE,cAAc9B,GAAc,WAAWjE,EAAW,MAAM8E,GAAS,MAAMiB,EAAE,IAAI3C,GAAQ,QAAQD,GAAY,KAAKpD,CAAI,CAAC,CAAC,CAAE,CAAI0D,IAAU6D,GAAc,eAAeA,GAAc,qBAAqBA,GAAc,kBAAkB,QAAQ7D,CAAQ,MAAO,CAAC,OAAoB,EAAM,UAAU,CAAC,MAAM0B,GAAe,GAAGI,GAAa,SAAS,CAAc4B,EAAKO,EAAO,GAAG,CAAC,IAAI7C,GAAY,MAAMQ,GAAc,UAAU,mBAAmB,sBAAsBvC,GAAc,cAAc,QAAQ,YAAY,SAAS,QAAQ,IAAI5C,GAAa,QAAQ,OAAU,SAASwB,GAAS,IAAIF,EAAc,CAACmG,EAAMC,IAAQ,CAAC,IAAIC,EAAa,OAAoBV,EAAK,KAAK,CAAC,MAAMnC,GAAU,GAAGQ,GAAS,aAAa,GAAGoC,EAAM,CAAC,OAAOnG,CAAQ,GAAG,SAAsBqG,GAAaH,EAAM,CAAC,GAAGA,EAAM,MAAM,MAAM,CAAC,IAAIE,EAAaF,EAAM,SAAS,MAAME,IAAe,OAAO,OAAOA,EAAa,MAAM,GAAG5C,EAAU,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,CAAC,EAAe,EAAM,WAAW,CAAC,MAAM,CAAC,GAAG8C,GAAe,QAAQ/D,GAAa,QAAQ,OAAO,cAAcjE,EAAK,MAAM,QAAQ,EAAE,aAAa,+BAA+B,UAAU,4BAA4B,2BAA2B2D,GAAkB,SAAS,CAAcyD,EAAKO,EAAO,OAAO,CAAC,IAAIvD,GAAM,UAAU,KAAK,SAAS,MAAM,CAAC,GAAGA,GAAM,YAAY,gBAAgBN,GAAU,MAAMF,GAAU,OAAOA,GAAU,aAAaC,GAAY,OAAQ7D,EAAQ,EAAH,GAAK,QAAQ2D,GAAkB,QAAQ,MAAM,EAAE,QAAQqD,GAAU,EAAE,EAAE,aAAa,WAAW,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBI,EAAK,MAAM,CAAC,SAAS,QAAQ,IAAI,GAAG,MAAMxD,GAAU,OAAOA,GAAU,IAAIG,IAAW,qEAAqE,CAAC,CAAC,CAAC,EAAeqD,EAAKO,EAAO,OAAO,CAAC,IAAItD,GAAI,UAAU,KAAK,SAAS,MAAM,CAAC,GAAGA,GAAI,YAAY,gBAAgBP,GAAU,MAAMF,GAAU,OAAOA,GAAU,aAAaC,GAAY,OAAQ7D,EAAQ,EAAH,GAAK,QAAQ2D,GAAkB,QAAQ,MAAM,EAAE,QAAQqD,GAAU,CAAC,EAAE,aAAa,OAAO,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBI,EAAK,MAAM,CAAC,SAAS,QAAQ,IAAI,GAAG,MAAMxD,GAAU,OAAOA,GAAU,IAAII,IAAY,qEAAqE,CAAC,CAAC,CAAC,EAAEsD,GAAK,OAAO,EAAeF,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGa,GAAmB,KAAKjI,EAAK,MAAMkD,GAAU,IAAKlD,EAAW,QAAN,MAAc,UAAUA,EAAK,mBAAmB,mBAAmB,cAAcA,EAAK,MAAM,SAAS,OAAOA,EAAKkD,GAAU,QAAQ,aAAaC,GAAW,gBAAgBI,GAAe,GAAGgE,EAAa,EAAE,SAASD,EAAI,CAAC,EAAE,IAAI,CAAC,CAAC,EAAeF,EAAKc,GAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAyBtH,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,EAAyBuH,EAAoBvH,GAAS,CAAC,MAAM,CAAC,KAAKwH,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,OAAO5G,GAAOA,EAAM,YAAY,SAAS,EAAE,aAAa,CAAC,KAAK4G,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,eAAe,GAAK,OAAO5G,GAAOA,EAAM,YAAY,SAAS,EAAE,WAAW,CAAC,KAAK4G,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,OAAO5G,GAAOA,EAAM,aAAa,SAAS,EAAE,WAAW,CAAC,KAAK4G,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,eAAe,GAAK,OAAO5G,GAAOA,EAAM,aAAa,MAAM,CAAC,CAAC,EAAE,WAAW,CAAC,KAAK4G,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,OAAO5G,GAAO,CAACA,EAAM,IAAI,EAAE,MAAM,CAAC,KAAK4G,EAAY,QAAQ,MAAM,QAAQ,aAAa,GAAM,OAAO5G,GAAO,CAACA,EAAM,IAAI,CAAC,CAAC,EAAE,WAAW,CAAC,KAAK4G,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,OAAO5G,GAAO,CAACA,EAAM,WAAW,EAAE,UAAU,CAAC,KAAK4G,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO5G,GAAO,CAACA,EAAM,WAAW,EAAE,UAAU,CAAC,KAAK4G,EAAY,OAAO,MAAM,UAAU,OAAO5G,GAAO,CAACA,EAAM,YAAY,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,CAAC,EAAE,eAAe,CAAC,KAAK4G,EAAY,WAAW,MAAM,aAAa,OAAO5G,GAAO,CAACA,EAAM,WAAW,CAAC,CAAC,EAAE,eAAe,CAAC,KAAK4G,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,OAAO5G,GAAOA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAK4G,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO5G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,UAAU,CAAC,KAAK4G,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO5G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAK4G,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO5G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAK4G,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO5G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAK4G,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,OAAO5G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,eAAe,CAAC,KAAK4G,EAAY,MAAM,MAAM,WAAW,aAAa,kBAAkB,OAAO5G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,WAAW,CAAC,KAAK4G,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO5G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAK4G,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,GAAG,KAAK,GAAG,eAAe,GAAK,OAAO5G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,kBAAkB,CAAC,KAAK4G,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,OAAO5G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAK4G,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,KAAK,EAAE,OAAO5G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,CAAC,CAAC,EAAE,YAAY,CAAC,KAAK4G,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,OAAO5G,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAK4G,EAAY,MAAM,MAAM,WAAW,OAAO5G,GAAO,CAACA,EAAM,iBAAiB,EAAE,WAAW,CAAC,KAAK4G,EAAY,MAAM,MAAM,OAAO,OAAO5G,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAK4G,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,GAAG,OAAO5G,GAAO,CAACA,EAAM,iBAAiB,EAAE,YAAY,CAAC,KAAK4G,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO5G,GAAO,CAACA,EAAM,iBAAiB,EAAE,aAAa,CAAC,KAAK4G,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO5G,GAAO,CAACA,EAAM,iBAAiB,CAAC,CAAC,EAAE,UAAU,CAAC,KAAK4G,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,SAASX,GAAI,CAAC,cAAAvD,EAAc,WAAAjE,EAAW,WAAAuH,EAAW,gBAAAc,EAAgB,QAAQC,EAAkB,MAAAC,EAAM,MAAAX,EAAM,SAAAH,EAAS,YAAAhI,EAAY,IAAAoB,EAAI,QAAAgB,EAAQ,KAAA9B,EAAK,GAAGwB,CAAK,EAAE,CAAC,IAAMiH,EAAQpJ,GAAa6E,EAAc3E,GAAG,CAAC,IAAImJ,EAAoBC,EAAqB,GAAG,EAAG,GAAAD,EAAoBzI,EAAW,WAAW,MAAMyI,IAAsB,SAAcA,EAAoB,cAAe,OAAOb,IAAQ,EAAES,EAAgBC,EAAmB,IAAMtB,IAAa0B,EAAqB1I,EAAW,WAAW,MAAM0I,IAAuB,OAAO,OAAOA,EAAqB,cAAcH,EAAYI,EAAU3B,EAAWY,EAAYgB,EAAUD,EAAU3B,EAAsF,OAA1D1H,GAAGqJ,IAAYf,EAAMW,EAAM,EAAEjJ,EAAEsJ,EAAUhB,IAAQW,EAAM,GAAqBF,EAAgBC,CAAkB,CAAC,EAAQO,EAAchI,EAAI,EAAMiI,EAAI,CAAC/I,GAAM6H,EAAM,EAAEiB,EAAchH,EAAYkH,EAAO,CAAChJ,GAAM6H,IAAQW,EAAM,EAAEM,EAAchH,EAAYmH,EAAMjJ,GAAM6H,IAAQW,EAAM,EAAEM,EAAchH,EAAYoH,EAAKlJ,GAAM6H,EAAM,EAAEiB,EAAchH,EAAQ,OAAoBsF,EAAK,SAAS,CAAC,aAAa,kBAAkBS,EAAM,CAAC,GAAG,KAAK,SAAS,GAAGrG,EAAM,MAAM,CAAC,GAAG9B,EAAY,QAAQ,GAAGqJ,CAAG,MAAME,CAAK,MAAMD,CAAM,MAAME,CAAI,IAAI,EAAE,SAAsB9B,EAAKO,EAAO,IAAI,CAAC,MAAM,CAAC,GAAGD,EAAS,QAAAe,CAAO,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASpB,IAAa,CAAC,OAAoB,EAAM,UAAU,CAAC,MAAM8B,GAAkB,SAAS,CAAc/B,EAAK,MAAM,CAAC,MAAMgC,GAAY,SAAS,QAAG,CAAC,EAAehC,EAAK,IAAI,CAAC,MAAMiC,GAAY,SAAS,oBAAoB,CAAC,EAAejC,EAAK,IAAI,CAAC,MAAMkC,GAAe,SAAS,4CAA4C,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASpB,IAAa,CAAC,OAAoBd,EAAK,MAAM,CAAC,wBAAwB,CAAC,OAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,sBAgBl7T,CAAC,CAAC,CAAE,CAAa,IAAM+B,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,ECtFuL,IAAMC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,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,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,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,eAAe,YAAY,aAAa,YAAY,sBAAsB,YAAY,iBAAiB,YAAY,iBAAiB,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAAOE,EAAM,WAAW,kBAAkB,QAAQP,GAAwBO,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUH,GAAMG,EAAM,SAAS,GAAUC,GAAuB,CAACD,EAAMxB,IAAewB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAU0B,GAA6B,EAAW,SAASF,EAAMG,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA/B,EAAQ,UAAAgC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAElB,GAASM,CAAK,EAAO,CAAC,YAAAa,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA5C,CAAQ,EAAE6C,GAAgB,CAAC,WAAAlD,GAAW,eAAe,YAAY,gBAAAD,GAAgB,QAAAQ,EAAQ,kBAAAL,EAAiB,CAAC,EAAQiD,EAAiBrB,GAAuBD,EAAMxB,CAAQ,EAA4D+C,EAAkBC,EAAGpD,GAAkB,GAArE,CAAaoC,EAAS,CAAuE,EAAQiB,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQ,EAAAV,IAAiB,mBAAkC,CAAC,YAAY,WAAW,EAAE,SAASJ,CAAW,GAAmCe,EAAa,IAAQ,IAAC,kBAAkB,kBAAkB,iBAAiB,EAAE,SAASX,CAAc,GAAiB,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,SAASJ,CAAW,GAAmCgB,GAAsBC,EAAM,EAAQC,EAAkBC,GAAqB,EAAE,OAAoB3C,EAAK4C,GAAY,CAAC,GAAGxB,GAAUoB,GAAgB,SAAsBxC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAK6C,EAAK,CAAC,KAAKvB,EAAU,YAAY,GAAK,OAAO,YAAY,SAAsBtB,EAAKE,EAAO,EAAE,CAAC,GAAGqB,EAAU,GAAGI,EAAgB,UAAU,GAAGQ,EAAGD,EAAkB,iBAAiBf,EAAUM,CAAU,CAAC,kBAAkB,mBAAmB,iBAAiB,iBAAiBQ,EAAiB,SAAS,YAAY,IAAInB,GAAKsB,EAAK,MAAM,CAAC,GAAGlB,CAAK,EAAE,GAAGjC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,qBAAqB,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEuC,EAAYI,CAAc,EAAE,SAAsB,EAAM1B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB+B,EAAiB,SAAS,YAAY,SAAS,CAACK,EAAY,GAAgBtC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB+B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,sEAAsE,EAAE,kBAAkB,CAAC,gBAAgB,sEAAsE,EAAE,kBAAkB,CAAC,gBAAgB,sEAAsE,EAAE,kBAAkB,CAAC,gBAAgB,oEAAoE,EAAE,UAAU,CAAC,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,gBAAgB,sEAAsE,EAAE,UAAU,CAAC,gBAAgB,sEAAsE,CAAC,EAAE,SAAsBjC,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB+B,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKZ,EAAU,SAAS,CAAC,kBAAkB,CAAC,qBAAqB,oBAAoB,EAAE,UAAU,CAAC,qBAAqB,oEAAoE,EAAE,UAAU,CAAC,qBAAqB,oBAAoB,EAAE,UAAU,CAAC,qBAAqB,oBAAoB,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGpC,GAAqB,CAAC,kBAAkB,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,CAAC,EAAE,kBAAkB,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,iBAAiB,CAAC,CAAC,CAAC,CAAC,EAAE,kBAAkB,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,iBAAiB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,uEAAuE,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,8CAA8C,0BAA0B,WAAW,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,4BAA4B,CAAC,CAAC,EAAEsB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEW,EAAa,GAAgBvC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB+B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,uEAAuE,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,oEAAoE,EAAE,kBAAkB,CAAC,gBAAgB,uEAAuE,EAAE,kBAAkB,CAAC,gBAAgB,uEAAuE,CAAC,EAAE,SAAsBjC,EAAK+C,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiBd,EAAiB,SAAS,YAAY,MAAM,CAAC,OAAO,CAAC,EAAE,SAAS,CAAC,kBAAkB,CAAC,OAAO,EAAE,EAAE,kBAAkB,CAAC,OAAO,EAAE,EAAE,kBAAkB,CAAC,OAAO,EAAE,CAAC,EAAE,GAAGhD,GAAqB,CAAC,kBAAkB,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ+D,IAA2BN,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,IAAI,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,EAAE,kBAAkB,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQM,IAA2BN,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,GAAG,CAAC,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,IAAI,GAAG,EAAE,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,CAAC,EAAE,kBAAkB,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQM,IAA2BN,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,IAAI,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQM,IAA2BN,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,GAAG,CAAC,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,IAAI,GAAG,EAAE,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQM,IAA2BN,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,GAAG,CAAC,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,IAAI,GAAG,EAAE,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQM,IAA2BN,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,GAAG,CAAC,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,IAAI,GAAG,EAAE,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQM,IAA2BN,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,GAAG,CAAC,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,IAAI,GAAG,EAAE,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,CAAC,EAAElB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQqB,GAAI,CAAC,kFAAkF,kFAAkF,0SAA0S,+QAA+Q,0VAA0V,4HAA4H,qRAAqR,qKAAqK,2/BAA2/B,kIAAkI,iEAAiE,iHAAiH,2JAA2J,mEAAmE,mEAAmE,+FAA+F,6HAA6H,6JAA6J,6FAA6F,GAAeA,EAAG,EASz2eC,GAAgBC,GAAQtC,GAAUoC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,SAASA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,iBAAiB,sBAAsB,aAAa,eAAe,iBAAiB,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,kBAAkB,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,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,sBAAsB,OAAO,SAAS,IAAI,wEAAwE,CAAC,CAAC,EAAE,GAAGM,EAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTn4EC,GAAU,UAAU,CAAC,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,2lBAA2lB,EAAeC,GAAU,eCAiV,IAAMC,GAAYC,GAASC,EAAM,EAAQC,GAAcF,GAASG,CAAQ,EAAQC,GAAyCC,GAA0BC,GAAOC,EAAO,GAAG,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAY,CAAC,OAAO,GAAG,MAAM,GAAG,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAU,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,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,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,GAASvB,EAAO,OAAawB,CAAQ,EAAQC,GAAwB,CAAC,gBAAgB,YAAY,eAAe,YAAY,eAAe,YAAY,cAAc,YAAY,cAAc,YAAY,aAAa,YAAY,eAAe,YAAY,cAAc,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,QAAAC,EAAQ,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAASE,EAAM,WAAW,GAAK,QAAQP,GAAwBO,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUH,GAAMG,EAAM,SAAS,GAAUC,GAAuB,CAACD,EAAM1B,IAAe0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAE0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAU4B,GAA6B,EAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAxC,EAAQ,UAAAyC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEzB,GAASM,CAAK,EAAO,CAAC,YAAAoB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAArD,CAAQ,EAAEsD,GAAgB,CAAC,WAAA3D,GAAW,eAAe,YAAY,IAAIqC,EAAW,QAAA9B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ0D,EAAiB5B,GAAuBD,EAAM1B,CAAQ,EAAO,CAAC,sBAAAwD,EAAsB,MAAAC,EAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAeH,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,GAAeL,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,GAAeN,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQU,GAAcP,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQW,GAAcR,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQY,GAAeT,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQa,GAAeV,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQc,GAAeX,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAA0Ge,GAAkBC,EAAGzE,GAAkB,GAAnH,CAAa6C,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQ6B,GAAY,IAAQxB,IAAc,YAA6CyB,GAAOC,GAAU,EAAQC,GAAajE,GAAW,CAAC,YAAY,WAAW,EAAE,SAASsC,CAAW,EAAS,GAAatC,EAAckE,GAAalE,GAAWsC,IAAc,YAAmBtC,EAAa,GAAcmE,GAAa,IAAQ,EAAC,YAAY,WAAW,EAAE,SAAS7B,CAAW,EAAmC8B,GAAa,IAAQ,GAAC,YAAY,YAAY,WAAW,EAAE,SAAS9B,CAAW,EAA6B,OAAoB9B,EAAK6D,GAAY,CAAC,GAAGnC,GAAUT,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQjB,EAAS,QAAQ,GAAM,SAAsBgB,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsB,EAAMT,EAAO,OAAO,CAAC,GAAGmD,EAAU,GAAGI,EAAgB,UAAUoB,EAAGD,GAAkB,iBAAiB3B,EAAUM,CAAU,EAAE,cAAc,GAAK,mBAAmB,gBAAgB,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIvB,EAAW,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,YAAY,gBAAgB,wEAAwE,qBAAqB,YAAY,GAAGQ,CAAK,EAAE,GAAG1C,EAAqB,CAAC,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,cAAc,CAAC,EAAEgD,EAAYI,CAAc,EAAE,SAAS,CAACoB,GAAY,GAAgB,EAAM/E,GAAyC,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQc,GAAU,UAAU,gBAAgB,wBAAwB,SAAS,QAAQC,GAAW,iBAAiBiD,EAAiB,SAAS,YAAY,UAAU,GAAK,SAAS,CAAcvC,EAAK8D,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4B/D,EAAKgE,EAA0B,CAAC,OAAO,GAAG,GAAGlF,EAAqB,CAAC,UAAU,CAAC,MAAM,QAAQwC,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,EAAEQ,EAAYI,CAAc,EAAE,SAAsBlC,EAAKiE,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB1B,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK5B,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,iBAAiB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU2F,EAAc,CAAC,EAAE,GAAGjF,EAAqB,CAAC,UAAU,CAAC,UAAUiF,EAAc,CAAC,CAAC,CAAC,EAAEjC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe,EAAMxD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB6D,EAAiB,SAAS,YAAY,SAAS,CAAc,EAAM7D,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB6D,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKgE,EAA0B,CAAC,SAAsBhE,EAAKiE,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB1B,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK1B,EAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,cAAc,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0B,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWE,EAAS,CAAC,SAAsBF,EAAKtB,EAAO,EAAE,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,sEAAsE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe,EAAM7D,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB6D,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKgE,EAA0B,CAAC,SAAsBhE,EAAKiE,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB1B,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK1B,EAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,cAAc,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0B,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWE,EAAS,CAAC,SAAsBF,EAAKtB,EAAO,EAAE,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,sEAAsE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe,EAAM7D,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB6D,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKgE,EAA0B,CAAC,SAAsBhE,EAAKiE,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB1B,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK1B,EAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,cAAc,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0B,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWE,EAAS,CAAC,SAAsBF,EAAKtB,EAAO,EAAE,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,sEAAsE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKtB,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,uEAAuE,CAAC,CAAC,EAAe,EAAM7D,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB6D,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKgE,EAA0B,CAAC,SAAsBhE,EAAKiE,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB1B,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK1B,EAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,cAAc,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0B,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWE,EAAS,CAAC,SAAsBF,EAAKtB,EAAO,EAAE,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,sEAAsE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKtB,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,uEAAuE,CAAC,CAAC,EAAevC,EAAKtB,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,uEAAuE,CAAC,CAAC,EAAevC,EAAKtB,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe,EAAM7D,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB6D,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKtB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB6D,EAAiB,SAAS,YAAY,SAAsBvC,EAAKmE,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBnE,EAAKoE,GAAI,CAAC,GAAG,IAAI,UAAU,8BAA8B,mBAAmB,OAAO,OAAO,WAAW,iBAAiB7B,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,4xHAA4xH,aAAa,YAAY,mBAAmB,GAAK,GAAGzD,EAAqB,CAAC,UAAU,CAAC,IAAI,+yHAA+yH,aAAa,WAAW,EAAE,UAAU,CAAC,IAAI,+yHAA+yH,aAAa,WAAW,CAAC,EAAEgD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe,EAAMxD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB6D,EAAiB,SAAS,YAAY,SAAS,CAACkB,GAAa9B,CAAS,GAAgB3B,EAAKgE,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAG1C,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,SAAsBtB,EAAKiE,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB1B,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK5B,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,iBAAiB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUwD,CAAS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5B,EAAKgE,EAA0B,CAAC,SAAsBhE,EAAKiE,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB1B,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK1B,EAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,OAAO,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,QAAQqE,EAAe,aAAa,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,OAAO,GAAG7D,EAAqB,CAAC,UAAU,CAAC,WAAW,IAAI,QAAQkE,EAAa,EAAE,UAAU,CAAC,WAAW,IAAI,QAAQG,EAAc,EAAE,UAAU,CAAC,QAAQN,EAAc,EAAE,UAAU,CAAC,WAAW,IAAI,QAAQI,EAAc,EAAE,UAAU,CAAC,QAAQF,EAAa,EAAE,UAAU,CAAC,WAAW,IAAI,QAAQG,EAAc,EAAE,UAAU,CAAC,QAAQJ,EAAc,CAAC,EAAEhB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwB,GAAa/B,CAAS,GAAgB3B,EAAK8D,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASO,GAA6BrE,EAAKgE,EAA0B,CAAC,GAAGlF,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAGwC,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,EAAEQ,EAAYI,CAAc,EAAE,SAAsBlC,EAAKiE,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB1B,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK5B,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,iBAAiB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUiG,EAAe,CAAC,EAAE,GAAGvF,EAAqB,CAAC,UAAU,CAAC,UAAUuF,EAAe,CAAC,CAAC,CAAC,EAAEvC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyB,GAAa,GAAgB3D,EAAKtB,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,uEAAuE,EAAE,SAASqB,GAAa,GAAgB,EAAMrF,GAAyC,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQc,GAAU,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,QAAQ,uBAAuB,GAAK,QAAQC,GAAW,iBAAiBiD,EAAiB,SAAS,YAAY,UAAU,GAAK,SAAS,CAAcvC,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWE,EAAS,CAAC,SAAsBF,EAAKtB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,sEAAsE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzD,EAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWE,EAAS,CAAC,SAAsBF,EAAKtB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAsBsB,EAAKmE,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsBnE,EAAKtB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoD,EAAYI,CAAc,CAAC,CAAC,EAAelC,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWE,EAAS,CAAC,SAAsBF,EAAKtB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,sEAAsE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzD,EAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWE,EAAS,CAAC,SAAsBF,EAAKtB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAsBsB,EAAKmE,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsBnE,EAAKtB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoD,EAAYI,CAAc,CAAC,CAAC,EAAelC,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWE,EAAS,CAAC,SAAsBF,EAAKtB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,sEAAsE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzD,EAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWE,EAAS,CAAC,SAAsBF,EAAKtB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAsBsB,EAAKmE,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,eAAe,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsBnE,EAAKtB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoD,EAAYI,CAAc,CAAC,CAAC,EAAelC,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWE,EAAS,CAAC,SAAsBF,EAAKtB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,sEAAsE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzD,EAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWE,EAAS,CAAC,SAAsBF,EAAKtB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAsBsB,EAAKmE,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsBnE,EAAKtB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoD,EAAYI,CAAc,CAAC,CAAC,EAAelC,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWE,EAAS,CAAC,SAAsBF,EAAKtB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,sEAAsE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzD,EAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWE,EAAS,CAAC,SAAsBF,EAAKtB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAsBsB,EAAKmE,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsBnE,EAAKtB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoD,EAAYI,CAAc,CAAC,CAAC,EAAelC,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWE,EAAS,CAAC,SAAsBF,EAAKtB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,sEAAsE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzD,EAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWE,EAAS,CAAC,SAAsBF,EAAKtB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAsBsB,EAAKmE,EAAK,CAAC,KAAK,8BAA8B,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,aAAa,GAAM,SAAsBnE,EAAKtB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQoC,GAAI,CAAC,kFAAkF,gFAAgF,yQAAyQ,mRAAmR,yGAAyG,wRAAwR,8WAA8W,kOAAkO,4MAA4M,4MAA4M,oRAAoR,oRAAoR,sHAAsH,8QAA8Q,yGAAyG,0HAA0H,0GAA0G,qQAAqQ,sUAAsU,sTAAsT,svDAAsvD,gHAAgH,iJAAiJ,iHAAiH,iJAAiJ,6FAA6F,4GAA4G,6HAA6H,yFAAyF,mGAAmG,gcAAgc,mtBAAmtB,yGAAyG,uPAAuP,4EAA4E,4EAA4E,4EAA4E,2EAA2E,8DAA8D,6DAA6D,6DAA6D,sHAAsH,8EAA8E,yFAAyF,8vBAA8vB,qKAAqK,oHAAoH,mHAAmH,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,gcAAgc,6JAA6J,yKAAyK,oHAAoH,EAUt2gDC,GAAgBC,GAAQ5D,GAAU0D,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,aAAaA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,gBAAgB,eAAe,eAAe,cAAc,aAAa,eAAe,cAAc,aAAa,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,UAAU,KAAKA,EAAY,OAAO,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,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,CAAC,CAAC,EAAE,GAAGrG,GAAY,GAAGG,GAAc,GAAGwG,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECVx1D,IAAMC,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,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,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,OAAO,YAAY,KAAK,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,OAAAC,EAAO,GAAAC,EAAG,YAAAC,EAAY,SAAAC,EAAS,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUN,GAAQM,EAAM,WAAW,4FAA4F,QAAQR,GAAwBQ,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUH,GAAaG,EAAM,WAAW,GAAK,UAAUF,GAAUE,EAAM,WAAW,2FAA2F,GAAUC,GAAuB,CAACD,EAAMzB,IAAeyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAEyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAU2B,GAA6B,EAAW,SAASF,EAAMG,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,UAAAiC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEpB,GAASO,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA9C,CAAQ,EAAE+C,GAAgB,CAAC,WAAApD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQmD,EAAiBtB,GAAuBD,EAAMzB,CAAQ,EAAO,CAAC,sBAAAiD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAaH,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAYL,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAmFS,EAAkBC,EAAG5D,GAAkB,GAA5F,CAAaqC,GAAuBA,EAAS,CAAuE,EAAQwB,GAAWC,EAAO,IAAI,EAAQC,GAAY,IAAQpB,IAAc,YAA6CqB,GAAavD,IAAWkC,IAAc,YAAmBlC,GAAa,GAAawD,GAAsBC,EAAM,EAAQC,GAAkBC,GAAqB,EAAE,OAAoBnD,EAAKoD,GAAY,CAAC,GAAG/B,GAAU2B,GAAgB,SAAsBhD,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGuB,EAAU,GAAGI,EAAgB,UAAUc,EAAGD,EAAkB,gBAAgBtB,EAAUO,CAAU,EAAE,cAAc,GAAK,mBAAmB,SAAS,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIpB,GAAK6B,GAAK,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGzB,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,MAAM,CAAC,EAAEyC,EAAYI,CAAc,EAAE,SAAsB,EAAM5B,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,WAAW,iBAAiB,GAAK,iBAAiBiC,EAAiB,SAAS,YAAY,MAAMI,EAAa,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,GAAGtD,GAAqB,CAAC,UAAU,CAAC,MAAMwD,CAAW,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAS,CAAc,EAAM5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBiC,EAAiB,SAAS,YAAY,SAAS,CAAcnC,EAAKqD,EAAS,CAAC,sBAAsB,GAAK,SAAsBrD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,2FAA2F,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,mBAAmB,EAAE,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKb,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetB,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsB,EAAMjC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,GAAG,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,EAAE,SAAS,CAAcnC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,eAAe,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,CAAC,EAAenC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,eAAe,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEW,GAAY,GAAgB,EAAM5C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAS,CAAcnC,EAAKqD,EAAS,CAAC,sBAAsB,GAAK,SAAsBrD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,2FAA2F,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,MAAM,QAAQ,EAAE,EAAE,KAAKZ,EAAU,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEwB,GAAavB,CAAS,GAAgBxB,EAAKqD,EAAS,CAAC,sBAAsB,GAAK,SAAsBrD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,2FAA2F,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKZ,EAAU,kBAAkB,MAAM,mBAAmB,GAAK,GAAGtC,GAAqB,CAAC,UAAU,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAsBF,EAAKsD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,aAAa,GAAM,SAAsBtD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,KAAK,MAAS,CAAC,EAAEwB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQyB,GAAI,CAAC,kFAAkF,gFAAgF,2UAA2U,2WAA2W,2RAA2R,oKAAoK,uQAAuQ,4HAA4H,oMAAoM,qMAAqM,4RAA4R,gPAAgP,skCAAskC,iFAAiF,8DAA8D,8DAA8D,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EASr+ZC,GAAgBC,GAAQ3C,GAAUyC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,QAAQA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,SAAS,MAAM,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,4FAA4F,gBAAgB,GAAK,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,4FAA4F,gBAAgB,GAAK,MAAM,SAAS,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,eAAe,KAAKA,EAAY,OAAO,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,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,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT1uE,IAAMC,GAAUC,GAASC,EAAI,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAyL,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,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,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,YAAAC,EAAY,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAAaE,EAAM,WAAW,EAAI,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6B,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAU,GAAGC,CAAS,EAAEzB,GAASK,CAAK,EAAO,CAAC,YAAAqB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA1B,CAAQ,EAAE2B,GAAgB,CAAC,eAAe,YAAY,IAAItB,EAAW,QAAAW,EAAQ,kBAAAY,EAAiB,CAAC,EAAQC,EAAiB9B,GAAuBD,EAAME,CAAQ,EAAuC8B,EAAkBC,EAAGC,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoB3C,EAAK4C,GAAY,CAAC,GAAGlB,GAAUT,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQU,EAAS,QAAQ,GAAM,SAAsBX,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsB,EAAMY,EAAO,IAAI,CAAC,GAAG2B,EAAU,GAAGI,EAAgB,UAAUS,EAAGD,EAAkB,iBAAiBhB,EAAUM,CAAU,EAAE,mBAAmB,YAAY,iBAAiBS,EAAiB,SAAS,YAAY,IAAIxB,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcxB,EAAK6C,EAA0B,CAAC,OAAO,GAAG,MAAMvB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,SAAsBtB,EAAK8C,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBN,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBxC,EAAK+C,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,wMAAwM,QAAQ,YAAY,UAAUnB,EAAU,UAAU,mEAAmE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5B,EAAK6C,EAA0B,CAAC,OAAO,GAAG,MAAMvB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,SAAsBtB,EAAK8C,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBN,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBxC,EAAK+C,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU;AAAA;AAAA,EAAmL,QAAQ,YAAY,UAAUnB,EAAU,UAAU,0DAA0D,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5B,EAAK6C,EAA0B,CAAC,OAAO,GAAG,MAAMvB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,SAAsBtB,EAAK8C,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBN,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBxC,EAAK+C,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,iMAAiM,QAAQ,YAAY,UAAUnB,EAAU,UAAU,uEAAuE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5B,EAAK6C,EAA0B,CAAC,OAAO,GAAG,MAAMvB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,SAAsBtB,EAAK8C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBN,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBxC,EAAK+C,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,0NAA0N,QAAQ,YAAY,UAAUnB,EAAU,UAAU,4EAA4E,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQoB,GAAI,CAAC,kFAAkF,kFAAkF,iRAAiR,iOAAiO,8WAA8W,EAS7vNC,GAAgBC,GAAQtC,GAAUoC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,cAAcA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,UAAU,CAAC,aAAa,GAAK,MAAM,eAAe,KAAKI,EAAY,OAAO,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGM,EAAS,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTqc,IAAMC,GAAcC,GAASC,CAAQ,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,EAAyL,IAAMC,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,OAAkBC,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAE,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWN,GAAOG,EAAO,WAAiBI,EAAmBC,EAAQ,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,GAAS,CAAC,CAAC,QAAAC,EAAQ,OAAAC,EAAO,GAAAC,EAAG,SAAAC,EAAS,SAAAC,EAAS,QAAAC,EAAQ,KAAAC,EAAK,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUL,GAAUK,EAAM,WAAW,yBAAyB,UAAUT,GAASS,EAAM,WAAW,kEAAmE,UAAUF,GAAOE,EAAM,WAAW,cAAc,UAAUJ,GAASI,EAAM,WAAW,CAAC,IAAI,GAAG,IAAI,yFAAyF,OAAO,sQAAsQ,EAAE,UAAUH,GAAMG,EAAM,WAAW,oIAA+H,UAAUN,GAAUM,EAAM,WAAW,WAAW,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6B,EAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE5B,GAASU,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAxB,CAAQ,EAAEyB,GAAgB,CAAC,eAAe,YAAY,QAAAhB,EAAQ,kBAAAiB,EAAiB,CAAC,EAAQC,EAAiB5B,GAAuBD,EAAME,CAAQ,EAA0G4B,GAAkBC,EAAGC,GAAkB,GAAnH,CAAavB,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQwB,EAAWC,EAAO,IAAI,EAAQC,GAAsBC,EAAM,EAAQC,GAAkBC,GAAqB,EAAE,OAAoBpD,EAAKqD,GAAY,CAAC,GAAG7B,GAAUyB,GAAgB,SAAsBjD,EAAKC,GAAS,CAAC,QAAQe,EAAS,QAAQ,GAAM,SAAsBhB,EAAKR,GAAW,CAAC,MAAMH,GAAY,SAAsBW,EAAKE,EAAO,IAAI,CAAC,GAAG8B,EAAU,GAAGI,EAAgB,UAAUS,EAAGD,GAAkB,gBAAgBrB,EAAUW,CAAU,EAAE,cAAc,GAAK,mBAAmB,YAAY,iBAAiBS,EAAiB,SAAS,YAAY,IAAIzB,GAAK6B,EAAK,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGzB,CAAK,EAAE,SAAsB,EAAMpB,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAc,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiByC,EAAiB,SAAS,YAAY,SAAS,CAAc3C,EAAKsD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,IAA2BJ,IAAmB,GAAG,GAAG,KAAKA,IAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,GAAG,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,GAAG7D,GAAkBoC,CAAS,CAAC,EAAE,UAAU,iBAAiB,iBAAiBiB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,CAAC,EAAe,EAAMzC,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiByC,EAAiB,SAAS,YAAY,SAAS,CAAc3C,EAAKwD,EAA0B,CAAC,SAAsBxD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByC,EAAiB,SAAS,sBAAsB,SAAsB3C,EAAKyD,EAAS,CAAC,MAAM,oBAAoB,OAAO,OAAO,WAAW,OAAO,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezD,EAAKwD,EAA0B,CAAC,SAAsBxD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByC,EAAiB,SAAS,sBAAsB,SAAsB3C,EAAKyD,EAAS,CAAC,MAAM,oBAAoB,OAAO,OAAO,WAAW,OAAO,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezD,EAAKwD,EAA0B,CAAC,SAAsBxD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByC,EAAiB,SAAS,sBAAsB,SAAsB3C,EAAKyD,EAAS,CAAC,MAAM,oBAAoB,OAAO,OAAO,WAAW,OAAO,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezD,EAAKwD,EAA0B,CAAC,SAAsBxD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByC,EAAiB,SAAS,sBAAsB,SAAsB3C,EAAKyD,EAAS,CAAC,MAAM,oBAAoB,OAAO,OAAO,WAAW,OAAO,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezD,EAAKwD,EAA0B,CAAC,SAAsBxD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByC,EAAiB,SAAS,sBAAsB,SAAsB3C,EAAKyD,EAAS,CAAC,MAAM,oBAAoB,OAAO,OAAO,WAAW5B,EAAU,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe,EAAM3B,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiByC,EAAiB,SAAS,YAAY,SAAS,CAAc3C,EAAK0D,EAAS,CAAC,sBAAsB,GAAK,SAAsB1D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,iEAAkE,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mBAAmB,EAAE,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKhB,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe3B,EAAK0D,EAAS,CAAC,sBAAsB,GAAK,SAAsB1D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,mIAA8H,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,sEAAsE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKf,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe5B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,sBAAsB,iBAAiByC,EAAiB,SAAS,YAAY,SAAsB,EAAMzC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,iBAAiByC,EAAiB,SAAS,YAAY,SAAS,CAAc3C,EAAK0D,EAAS,CAAC,sBAAsB,GAAK,SAAsB1D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKb,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe9B,EAAK0D,EAAS,CAAC,sBAAsB,GAAK,SAAsB1D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKZ,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ4B,GAAI,CAAC,kFAAkF,gFAAgF,uUAAuU,kRAAkR,0QAA0Q,kHAAkH,mRAAmR,2QAA2Q,uRAAuR,kOAAkO,4QAA4Q,gRAAgR,oKAAoK,+7CAA+7C,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,+bAA+b,EASlqgBC,GAAgBC,GAAQ5C,GAAU0C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,sCAAsCA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,UAAU,CAAC,wBAAwB,kHAAkH,gBAAgB,CAAC,IAAI,GAAG,eAAe,iHAAiH,EAAE,MAAM,UAAU,KAAKI,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,kEAAmE,gBAAgB,GAAM,MAAM,UAAU,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,oIAA+H,gBAAgB,GAAM,MAAM,OAAO,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,YAAY,YAAY,wBAAmB,MAAM,YAAY,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,cAAc,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,yBAAyB,gBAAgB,GAAM,MAAM,WAAW,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,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,GAAc,GAAGC,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "Z", "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", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "mRp99xCGq", "X_oeBzhz2", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerxWXAPOWiX", "withCSS", "xWXAPOWiX_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "ButtonFonts", "getFonts", "xWXAPOWiX_default", "PhosphorFonts", "Icon", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "visible", "width", "props", "createLayoutDependency", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "TkHJE2O5U", "YJai0HkGP", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onClick1tjtxfa", "args", "onClick1qauavh", "onClick1l6vg53", "onClicku3buu2", "onClicke7jlem", "onClick1atj5sc", "onClick1nleop4", "onClick1ckbek0", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "LayoutGroup", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "Link", "SVG", "resolvedLinks1", "css", "FramerAPMhPojmD", "withCSS", "APMhPojmD_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "pricingLink", "question", "width", "props", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W88zB8mIG", "T8rQFvSBR", "VbZpHih7_", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1lhlz5b", "args", "onTapir5jh3", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "RichText2", "Link", "css", "FramerfKMMDuBkA", "withCSS", "fKMMDuBkA_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "Row2Fonts", "getFonts", "fKMMDuBkA_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "pricingLink", "width", "props", "createLayoutDependency", "variants", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "JmIgZtlW8", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "fKMMDuBkA_default", "css", "Framerg5bagolnR", "withCSS", "g5bagolnR_default", "addPropertyControls", "ControlType", "addFonts", "Row2Fonts", "PhosphorFonts", "getFonts", "Icon", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "heading", "height", "id", "lastStar", "location", "picture", "text", "title", "width", "props", "createLayoutDependency", "variants", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "oxu2wJ5b_", "Nn3rbFR50", "x06hqvZRJ", "XdZkwuJCj", "OTZhoZaD6", "BLmdcS8NV", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "Icon", "RichText2", "css", "FramerGjQAB0YL7", "withCSS", "GjQAB0YL7_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFontsFromSharedStyle", "fonts"]
}
