{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/LNpN2DFkywgSPOXBM5OP/UYz6mvyUKWP1Luvimp8Z/P0rRpVz6w-0.js", "ssg:https://framerusercontent.com/modules/LNpN2DFkywgSPOXBM5OP/UYz6mvyUKWP1Luvimp8Z/P0rRpVz6w.js", "ssg:https://framer.com/m/hero-icons/Home.js@0.0.28", "ssg:https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js", "ssg:https://framerusercontent.com/modules/6MkXz3VNu52r9eBzQAGn/thMpbEQDan1Y3fkvz8Ur/uFr8_B4MH.js", "ssg:https://framerusercontent.com/modules/5bIOmagQWXSbfEezNUwH/ijBwxLKSEUYFvXJQ0Ybx/XLYQxiIQD.js", "ssg:https://framerusercontent.com/modules/b6nSsgW2W5NfLrwp7klj/cM6Z5LBYSCHWhPTRyDa7/augiA20Il.js", "ssg:https://framerusercontent.com/modules/sU1tZKh4F4qyYDCnGn4E/QMlO2dSXwpCpb4PHpe8A/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){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 infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* 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:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "export const v0=\"\u0E2D\u0E48\u0E32\u0E19\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4ba8877)\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*as sharedStyle from\"https://framerusercontent.com/modules/FlallyULL8aZDjq0GJC4/MuU68owNzQ1WpwRDKF0r/r_tcwDQx8.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/vftVAK3oIWir2ZAe1YFL/zgiCMD00M4V0DAqGPYVi/RFIaf0dg2.js\";import Tag from\"https://framerusercontent.com/modules/ksvG2CnidCWIB2kTjJhv/YY2SQJXrFdu2xTCgDiJZ/fsM9WIqH9.js\";import*as localizedValues from\"./P0rRpVz6w-0.js\";import Link from\"https://framerusercontent.com/modules/oFlO35M6RjjxdG5tGdMB/AUvXIa0CyZ95HAbwIDVx/Q5kh09LwU.js\";const TagFonts=getFonts(Tag);const LinkFonts=getFonts(Link);const serializationHash=\"framer-5UCD9\";const variantClassNames={eqjsKsYPL:\"framer-v-1dpqwmw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={X8A7hbOOX:localizedValues};function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}}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!==null&&value!==void 0?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=({description,height,id,image,link,title,width,...props})=>{var _ref,_ref1;return{...props,gwlp3nzDh:(_ref=title!==null&&title!==void 0?title:props.gwlp3nzDh)!==null&&_ref!==void 0?_ref:\"Title\",LHxcJtLoA:(_ref1=description!==null&&description!==void 0?description:props.LHxcJtLoA)!==null&&_ref1!==void 0?_ref1:\"Description\",vpYRXhjtq:link!==null&&link!==void 0?link:props.vpYRXhjtq,yb8UF3M_d:image!==null&&image!==void 0?image:props.yb8UF3M_d};};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,yb8UF3M_d,gwlp3nzDh,LHxcJtLoA,vpYRXhjtq,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"eqjsKsYPL\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();var _getLocalizedValue;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?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(serializationHash,...sharedStyleClassNames,\"framer-1dpqwmw\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"eqjsKsYPL\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||438)-0-534)/2+0+0)),sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(yb8UF3M_d),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-w9gav\",\"data-framer-name\":\"Post Image\",layoutDependency:layoutDependency,layoutId:\"us3FSXlHu\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jqq5zm\",layoutDependency:layoutDependency,layoutId:\"MjFsxFMx1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||438)-0-534)/2+0+0)+24+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cbk31w-container\",layoutDependency:layoutDependency,layoutId:\"Tn26_hfbZ-container\",children:/*#__PURE__*/_jsx(Tag,{height:\"100%\",id:\"Tn26_hfbZ\",layoutId:\"Tn26_hfbZ\",width:\"100%\",WudBNFm3I:\"Gold\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||438)-0-534)/2+0+0)+24+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h2refd-container\",layoutDependency:layoutDependency,layoutId:\"TWZ3XA74S-container\",children:/*#__PURE__*/_jsx(Tag,{height:\"100%\",id:\"TWZ3XA74S\",layoutId:\"TWZ3XA74S\",width:\"100%\",WudBNFm3I:\"Savings\"})})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3occcb\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"R9v8p4Qsp\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x42l9c\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"ijUG7FVIb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-10aby94\",\"data-styles-preset\":\"r_tcwDQx8\",children:\"Title\"})}),className:\"framer-idnm5i\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xWBD7QqQf\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:gwlp3nzDh,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1e2hnqn\",\"data-styles-preset\":\"RFIaf0dg2\",children:\"Description\"})}),className:\"framer-3sz8lq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IMUGLKkff\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.5},text:LHxcJtLoA,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||438)-0-534)/2+320+24)+0+162,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ibcl7j-container\",layoutDependency:layoutDependency,layoutId:\"OgXx27U38-container\",children:/*#__PURE__*/_jsx(Link,{dAwqVd25O:\"Home\",height:\"100%\",id:\"OgXx27U38\",layoutId:\"OgXx27U38\",oi_bZRIK1:vpYRXhjtq,QqUgp2We1:true,usWtPyspO:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Read More\",variant:\"kvfP0yKti\",width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5UCD9.framer-1obpa6w, .framer-5UCD9 .framer-1obpa6w { display: block; }\",\".framer-5UCD9.framer-1dpqwmw { 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: 0px; position: relative; width: 320px; }\",\".framer-5UCD9 .framer-w9gav { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 320px; justify-content: flex-end; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-5UCD9 .framer-1jqq5zm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-5UCD9 .framer-cbk31w-container, .framer-5UCD9 .framer-1h2refd-container, .framer-5UCD9 .framer-1ibcl7j-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-5UCD9 .framer-3occcb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5UCD9 .framer-1x42l9c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5UCD9 .framer-idnm5i, .framer-5UCD9 .framer-3sz8lq { flex: none; height: auto; 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-5UCD9.framer-1dpqwmw, .framer-5UCD9 .framer-w9gav, .framer-5UCD9 .framer-1jqq5zm, .framer-5UCD9 .framer-3occcb, .framer-5UCD9 .framer-1x42l9c { gap: 0px; } .framer-5UCD9.framer-1dpqwmw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-5UCD9.framer-1dpqwmw > :first-child, .framer-5UCD9 .framer-3occcb > :first-child, .framer-5UCD9 .framer-1x42l9c > :first-child { margin-top: 0px; } .framer-5UCD9.framer-1dpqwmw > :last-child, .framer-5UCD9 .framer-3occcb > :last-child, .framer-5UCD9 .framer-1x42l9c > :last-child { margin-bottom: 0px; } .framer-5UCD9 .framer-w9gav > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-5UCD9 .framer-w9gav > :first-child, .framer-5UCD9 .framer-1jqq5zm > :first-child { margin-left: 0px; } .framer-5UCD9 .framer-w9gav > :last-child, .framer-5UCD9 .framer-1jqq5zm > :last-child { margin-right: 0px; } .framer-5UCD9 .framer-1jqq5zm > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-5UCD9 .framer-3occcb > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-5UCD9 .framer-1x42l9c > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 438\n * @framerIntrinsicWidth 320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"yb8UF3M_d\":\"image\",\"gwlp3nzDh\":\"title\",\"LHxcJtLoA\":\"description\",\"vpYRXhjtq\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerP0rRpVz6w=withCSS(Component,css,\"framer-5UCD9\");export default FramerP0rRpVz6w;FramerP0rRpVz6w.displayName=\"Blog Card\";FramerP0rRpVz6w.defaultProps={height:438,width:320};addPropertyControls(FramerP0rRpVz6w,{yb8UF3M_d:{title:\"Image\",type:ControlType.ResponsiveImage},gwlp3nzDh:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},LHxcJtLoA:{defaultValue:\"Description\",displayTextArea:false,title:\"Description\",type:ControlType.String},vpYRXhjtq:{title:\"Link\",type:ControlType.Link}});addFonts(FramerP0rRpVz6w,[{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\"}]},...TagFonts,...LinkFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerP0rRpVz6w\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"320\",\"framerIntrinsicHeight\":\"438\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"yb8UF3M_d\\\":\\\"image\\\",\\\"gwlp3nzDh\\\":\\\"title\\\",\\\"LHxcJtLoA\\\":\\\"description\\\",\\\"vpYRXhjtq\\\":\\\"link\\\"}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "let Component;\nvar Home_default = (React) => {\n  if (!Component) {\n    const HomeIcon = React.forwardRef(function HomeIcon2({\n      title,\n      titleId,\n      ...props\n    }, svgRef) {\n      return /* @__PURE__ */ React.createElement(\"svg\", Object.assign({\n        xmlns: \"http://www.w3.org/2000/svg\",\n        viewBox: \"0 0 24 24\",\n        fill: \"currentColor\",\n        \"aria-hidden\": \"true\",\n        \"data-slot\": \"icon\",\n        ref: svgRef,\n        \"aria-labelledby\": titleId\n      }, props), title ? /* @__PURE__ */ React.createElement(\"title\", {\n        id: titleId\n      }, title) : null, /* @__PURE__ */ React.createElement(\"path\", {\n        d: \"M11.47 3.841a.75.75 0 0 1 1.06 0l8.69 8.69a.75.75 0 1 0 1.06-1.061l-8.689-8.69a2.25 2.25 0 0 0-3.182 0l-8.69 8.69a.75.75 0 1 0 1.061 1.06l8.69-8.689Z\"\n      }), /* @__PURE__ */ React.createElement(\"path\", {\n        d: \"m12 5.432 8.159 8.159c.03.03.06.058.091.086v6.198c0 1.035-.84 1.875-1.875 1.875H15a.75.75 0 0 1-.75-.75v-4.5a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0-.75.75V21a.75.75 0 0 1-.75.75H5.625a1.875 1.875 0 0 1-1.875-1.875v-6.198a2.29 2.29 0 0 0 .091-.086L12 5.432Z\"\n      }));\n    });\n    Component = HomeIcon;\n  }\n  return Component;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nexport {\n  __FramerMetadata__,\n  Home_default as default\n};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/hero-icons/Home.js@0.0.28\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"AcademicCap\",\"AdjustmentsVertical\",\"ArchiveBox\",\"ArchiveBoxArrowDown\",\"ArchiveBoxXMark\",\"ArrowDown\",\"ArrowDownCircle\",\"ArrowDownLeft\",\"ArrowDownOnSquare\",\"ArrowDownRight\",\"ArrowDownTray\",\"ArrowLeft\",\"ArrowLeftCircle\",\"ArrowLeftOnRectangle\",\"ArrowLongDown\",\"ArrowLongLeft\",\"ArrowLongRight\",\"ArrowLongUp\",\"ArrowPath\",\"ArrowRight\",\"ArrowRightCircle\",\"ArrowSmallDown\",\"ArrowSmallLeft\",\"ArrowSmallRight\",\"ArrowSmallUp\",\"ArrowTrendingDown\",\"ArrowTrendingUp\",\"ArrowUp\",\"ArrowUpCircle\",\"ArrowUpLeft\",\"ArrowUpOnSquare\",\"ArrowUpOnSquareStack\",\"ArrowUpRight\",\"ArrowUpTray\",\"ArrowUturnDown\",\"ArrowUturnLeft\",\"ArrowUturnRight\",\"ArrowUturnUp\",\"ArrowsPointingIn\",\"ArrowsPointingOut\",\"ArrowsRightLeft\",\"ArrowsUpDown\",\"AtSymbol\",\"Backspace\",\"Backward\",\"Banknotes\",\"Bars2\",\"Bars3\",\"Bars3BottomLeft\",\"Bars3BottomRight\",\"Bars3CenterLeft\",\"Bars4\",\"BarsArrowDown\",\"BarsArrowUp\",\"Battery0\",\"Battery100\",\"Battery50\",\"Beaker\",\"Bell\",\"BellAlert\",\"BellSlash\",\"BellSnooze\",\"Bolt\",\"BoltSlash\",\"BookOpen\",\"Bookmark\",\"BookmarkSlash\",\"BookmarkSquare\",\"Briefcase\",\"BugAnt\",\"BuildingLibrary\",\"BuildingOffice\",\"BuildingOffice2\",\"BuildingStorefront\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarDays\",\"Camera\",\"ChartBar\",\"ChartBarSquare\",\"ChartPie\",\"ChatBubbleLeft\",\"ChatBubbleLeftRight\",\"ChatBubbleOvalLeft\",\"Check\",\"CheckBadge\",\"CheckCircle\",\"ChevronDoubleDown\",\"ChevronDoubleLeft\",\"ChevronDoubleRight\",\"ChevronDoubleUp\",\"ChevronDown\",\"ChevronLeft\",\"ChevronRight\",\"ChevronUp\",\"ChevronUpDown\",\"CircleStack\",\"Clipboard\",\"ClipboardDocument\",\"Clock\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CodeBracket\",\"CodeBracketSquare\",\"Cog\",\"Cog6Tooth\",\"Cog8Tooth\",\"CommandLine\",\"ComputerDesktop\",\"CpuChip\",\"CreditCard\",\"Cube\",\"CubeTransparent\",\"CurrencyBangladeshi\",\"CurrencyDollar\",\"CurrencyEuro\",\"CurrencyPound\",\"CurrencyRupee\",\"CurrencyYen\",\"CursorArrowRays\",\"CursorArrowRipple\",\"DevicePhoneMobile\",\"DeviceTablet\",\"Document\",\"DocumentArrowDown\",\"DocumentArrowUp\",\"DocumentChartBar\",\"DocumentCheck\",\"DocumentDuplicate\",\"DocumentMinus\",\"DocumentPlus\",\"DocumentText\",\"EllipsisHorizontal\",\"EllipsisVertical\",\"Envelope\",\"EnvelopeOpen\",\"ExclamationCircle\",\"ExclamationTriangle\",\"Eye\",\"EyeDropper\",\"EyeSlash\",\"FaceFrown\",\"FaceSmile\",\"Film\",\"FingerPrint\",\"Fire\",\"Flag\",\"Folder\",\"FolderArrowDown\",\"FolderMinus\",\"FolderOpen\",\"FolderPlus\",\"Forward\",\"Funnel\",\"Gif\",\"Gift\",\"GiftTop\",\"GlobeAlt\",\"GlobeAmericas\",\"GlobeAsiaAustralia\",\"GlobeEuropeAfrica\",\"HandRaised\",\"HandThumbDown\",\"HandThumbUp\",\"Hashtag\",\"Heart\",\"Home\",\"HomeModern\",\"Identification\",\"Inbox\",\"InboxArrowDown\",\"InboxStack\",\"InformationCircle\",\"Key\",\"Language\",\"Lifebuoy\",\"LightBulb\",\"Link\",\"ListBullet\",\"LockClosed\",\"LockOpen\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"Map\",\"MapPin\",\"Megaphone\",\"Microphone\",\"Minus\",\"MinusCircle\",\"MinusSmall\",\"Moon\",\"MusicalNote\",\"Newspaper\",\"NoSymbol\",\"PaintBrush\",\"PaperAirplane\",\"PaperClip\",\"Pause\",\"PauseCircle\",\"Pencil\",\"PencilSquare\",\"Phone\",\"PhoneArrowDownLeft\",\"PhoneArrowUpRight\",\"PhoneXMark\",\"Photo\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Plus\",\"PlusCircle\",\"PlusSmall\",\"Power\",\"PresentationChartBar\",\"Printer\",\"PuzzlePiece\",\"QrCode\",\"QuestionMarkCircle\",\"QueueList\",\"Radio\",\"ReceiptPercent\",\"ReceiptRefund\",\"RectangleGroup\",\"RectangleStack\",\"RocketLaunch\",\"Rss\",\"Scale\",\"Scissors\",\"Server\",\"ServerStack\",\"Share\",\"ShieldCheck\",\"ShieldExclamation\",\"ShoppingBag\",\"ShoppingCart\",\"Signal\",\"SignalSlash\",\"Sparkles\",\"SpeakerWave\",\"SpeakerXMark\",\"Square2Stack\",\"Square3Stack3D\",\"Squares2X2\",\"SquaresPlus\",\"Star\",\"Stop\",\"StopCircle\",\"Sun\",\"Swatch\",\"TableCells\",\"Tag\",\"Ticket\",\"Trash\",\"Trophy\",\"Truck\",\"Tv\",\"User\",\"UserCircle\",\"UserGroup\",\"UserMinus\",\"UserPlus\",\"Users\",\"Variable\",\"VideoCamera\",\"VideoCameraSlash\",\"ViewColumns\",\"ViewfinderCircle\",\"Wallet\",\"Wifi\",\"Window\",\"Wrench\",\"WrenchScrewdriver\",\"XCircle\",\"XMark\",\"index\"];const moduleBaseUrl=\"https://framer.com/m/hero-icons/\";const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * HERO\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.28`;const module=await import(/* webpackIgnore: true */iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch{if(isMounted.current)setSelectedIcon(null);}}// Import module when new style or icon is selected\nuseEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/_jsx(NullState,{}):null;return /*#__PURE__*/_jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/_jsx(SelectedIcon,{style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Hero\";Icon.defaultProps={width:24,height:24,iconSelection:\"Home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Hero site](https://heroicons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Hero.map", "// Generated by Framer (6807895)\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 Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/yZiTNwbJ1zTDkuN6Yx5g/rbJpichNWLuXVEdwc8IN/LaTvsj3Za.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/vftVAK3oIWir2ZAe1YFL/zgiCMD00M4V0DAqGPYVi/RFIaf0dg2.js\";const HeroFonts=getFonts(Hero);const cycleOrder=[\"FMlaOqX2i\",\"CGjLICcqq\"];const serializationHash=\"framer-ALMCG\";const variantClassNames={CGjLICcqq:\"framer-v-1i2ge4v\",FMlaOqX2i:\"framer-v-tb4ik3\"};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 humanReadableVariantMap={Large:\"FMlaOqX2i\",Small:\"CGjLICcqq\"};const getProps=({content,height,id,image,name1,platform,width,...props})=>{return{...props,JmMjNsOxw:image??props.JmMjNsOxw,li0LeYq3P:platform??props.li0LeYq3P??\"From App Store\",Oz8GrRdeD:content??props.Oz8GrRdeD??\"Very helpful for building good saving habitsGreat app for building savings habits as I can save daily just starting with 20 baht, also very easy to use, with a smooth experience\",variant:humanReadableVariantMap[props.variant]??props.variant??\"FMlaOqX2i\",WK4Op76Ui:name1??props.WK4Op76Ui??\"Name\"};};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,Oz8GrRdeD,WK4Op76Ui,li0LeYq3P,JmMjNsOxw,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FMlaOqX2i\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-tb4ik3\",className,classNames),\"data-framer-name\":\"Large\",layoutDependency:layoutDependency,layoutId:\"FMlaOqX2i\",ref:ref??ref1,style:{backgroundColor:\"var(--token-3e3854cc-112d-4fe2-8cfa-6282ef53ab27, rgb(223, 200, 158))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05)\",...style},...addPropertyOverrides({CGjLICcqq:{\"data-framer-name\":\"Small\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ar60rp\",layoutDependency:layoutDependency,layoutId:\"zop6nXqle\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ar0hdn-container\",layoutDependency:layoutDependency,layoutId:\"TEohqWKpf-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-863704a3-9f6d-4262-af02-57b0eef4f931, rgb(10, 39, 73))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",id:\"TEohqWKpf\",layoutId:\"TEohqWKpf\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zluut8-container\",layoutDependency:layoutDependency,layoutId:\"wEfR8rmj7-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-863704a3-9f6d-4262-af02-57b0eef4f931, rgb(10, 39, 73))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",id:\"wEfR8rmj7\",layoutId:\"wEfR8rmj7\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-or77rb-container\",layoutDependency:layoutDependency,layoutId:\"kijKNS48_-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-863704a3-9f6d-4262-af02-57b0eef4f931, rgb(10, 39, 73))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",id:\"kijKNS48_\",layoutId:\"kijKNS48_\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a8bhbe-container\",layoutDependency:layoutDependency,layoutId:\"ex3gcRvh_-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-863704a3-9f6d-4262-af02-57b0eef4f931, rgb(10, 39, 73))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",id:\"ex3gcRvh_\",layoutId:\"ex3gcRvh_\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x00xu8-container\",layoutDependency:layoutDependency,layoutId:\"fCkUayzGI-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-863704a3-9f6d-4262-af02-57b0eef4f931, rgb(10, 39, 73))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",id:\"fCkUayzGI\",layoutId:\"fCkUayzGI\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-ippn1m\",\"data-styles-preset\":\"LaTvsj3Za\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-1aec0e91-debe-433e-9a42-f4a76313f9cf, rgb(30, 30, 30)))\"},children:\"Very helpful for building good saving habitsGreat app for building savings habits as I can save daily just starting with 20 baht, also very easy to use, with a smooth experience\"})}),className:\"framer-1lstfgi\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jC7lROUqq\",style:{\"--extracted-1w1cjl5\":\"var(--token-1aec0e91-debe-433e-9a42-f4a76313f9cf, rgb(30, 30, 30))\",\"--framer-paragraph-spacing\":\"0px\"},text:Oz8GrRdeD,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q14stf\",layoutDependency:layoutDependency,layoutId:\"riEUyHwvy\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+80+48),sizes:\"48px\",...toResponsiveImage(JmMjNsOxw),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-lomf8m\",layoutDependency:layoutDependency,layoutId:\"IykfyjJRC\",style:{borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"},...addPropertyOverrides({CGjLICcqq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+16+80+48),sizes:\"48px\",...toResponsiveImage(JmMjNsOxw),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q5a0i\",layoutDependency:layoutDependency,layoutId:\"q4Hr_OktO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-ippn1m\",\"data-styles-preset\":\"LaTvsj3Za\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-1aec0e91-debe-433e-9a42-f4a76313f9cf, rgb(30, 30, 30)))\"},children:\"Name\"})}),className:\"framer-1x14ie7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TbfnyqNo7\",style:{\"--extracted-1w1cjl5\":\"var(--token-1aec0e91-debe-433e-9a42-f4a76313f9cf, rgb(30, 30, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:WK4Op76Ui,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1e2hnqn\",\"data-styles-preset\":\"RFIaf0dg2\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1aec0e91-debe-433e-9a42-f4a76313f9cf, rgb(30, 30, 30)))\"},children:\"From App Store\"})}),className:\"framer-1slzwec\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pips6pP37\",style:{\"--extracted-r6o4lv\":\"var(--token-1aec0e91-debe-433e-9a42-f4a76313f9cf, rgb(30, 30, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:li0LeYq3P,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ALMCG.framer-1quq24x, .framer-ALMCG .framer-1quq24x { display: block; }\",\".framer-ALMCG.framer-tb4ik3 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 24px; position: relative; width: 320px; }\",\".framer-ALMCG .framer-ar60rp { 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: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ALMCG .framer-ar0hdn-container, .framer-ALMCG .framer-zluut8-container, .framer-ALMCG .framer-or77rb-container, .framer-ALMCG .framer-1a8bhbe-container, .framer-ALMCG .framer-1x00xu8-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-ALMCG .framer-1lstfgi, .framer-ALMCG .framer-1x14ie7, .framer-ALMCG .framer-1slzwec { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ALMCG .framer-q14stf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ALMCG .framer-lomf8m { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: hidden; position: relative; width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ALMCG .framer-1q5a0i { align-content: flex-start; align-items: flex-start; 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; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ALMCG.framer-tb4ik3, .framer-ALMCG .framer-ar60rp, .framer-ALMCG .framer-q14stf, .framer-ALMCG .framer-1q5a0i { gap: 0px; } .framer-ALMCG.framer-tb4ik3 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ALMCG.framer-tb4ik3 > :first-child, .framer-ALMCG .framer-1q5a0i > :first-child { margin-top: 0px; } .framer-ALMCG.framer-tb4ik3 > :last-child, .framer-ALMCG .framer-1q5a0i > :last-child { margin-bottom: 0px; } .framer-ALMCG .framer-ar60rp > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-ALMCG .framer-ar60rp > :first-child, .framer-ALMCG .framer-q14stf > :first-child { margin-left: 0px; } .framer-ALMCG .framer-ar60rp > :last-child, .framer-ALMCG .framer-q14stf > :last-child { margin-right: 0px; } .framer-ALMCG .framer-q14stf > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-ALMCG .framer-1q5a0i > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-ALMCG.framer-v-1i2ge4v.framer-tb4ik3 { padding: 16px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 298\n * @framerIntrinsicWidth 320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"CGjLICcqq\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Oz8GrRdeD\":\"content\",\"WK4Op76Ui\":\"name1\",\"li0LeYq3P\":\"platform\",\"JmMjNsOxw\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameruFr8_B4MH=withCSS(Component,css,\"framer-ALMCG\");export default FrameruFr8_B4MH;FrameruFr8_B4MH.displayName=\"Testimonial Card\";FrameruFr8_B4MH.defaultProps={height:298,width:320};addPropertyControls(FrameruFr8_B4MH,{variant:{options:[\"FMlaOqX2i\",\"CGjLICcqq\"],optionTitles:[\"Large\",\"Small\"],title:\"Variant\",type:ControlType.Enum},Oz8GrRdeD:{defaultValue:\"Very helpful for building good saving habitsGreat app for building savings habits as I can save daily just starting with 20 baht, also very easy to use, with a smooth experience\",displayTextArea:false,title:\"Content\",type:ControlType.String},WK4Op76Ui:{defaultValue:\"Name\",displayTextArea:false,title:\"Name\",type:ControlType.String},li0LeYq3P:{defaultValue:\"From App Store\",displayTextArea:false,title:\"Platform\",type:ControlType.String},JmMjNsOxw:{title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FrameruFr8_B4MH,[{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\"}]},...HeroFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruFr8_B4MH\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CGjLICcqq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"Oz8GrRdeD\\\":\\\"content\\\",\\\"WK4Op76Ui\\\":\\\"name1\\\",\\\"li0LeYq3P\\\":\\\"platform\\\",\\\"JmMjNsOxw\\\":\\\"image\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"320\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"298\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uFr8_B4MH.map", "// Generated by Framer (d275c2b)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"K8x7ws7iG\",\"YbEfZJPbd\",\"NsUR1oY_L\",\"LnOcgrk23\",\"UgCc0fWQ8\",\"yE5A4lGXN\",\"bNsZyklnu\"];const serializationHash=\"framer-RJN7r\";const variantClassNames={bNsZyklnu:\"framer-v-9jy4lj\",K8x7ws7iG:\"framer-v-1i441np\",LnOcgrk23:\"framer-v-le8fnh\",NsUR1oY_L:\"framer-v-eb1d9y\",UgCc0fWQ8:\"framer-v-1t9v0mb\",YbEfZJPbd:\"framer-v-1cdpe83\",yE5A4lGXN:\"framer-v-518ew1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Buy Gold\":\"YbEfZJPbd\",\"Open account\":\"K8x7ws7iG\",\"Variant 4\":\"LnOcgrk23\",\"Variant 5\":\"UgCc0fWQ8\",\"Variant 6\":\"yE5A4lGXN\",\"Variant 7\":\"bNsZyklnu\",Growing:\"NsUR1oY_L\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"K8x7ws7iG\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"K8x7ws7iG\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1i441np\",className,classNames),\"data-framer-name\":\"Open account\",layoutDependency:layoutDependency,layoutId:\"K8x7ws7iG\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({bNsZyklnu:{\"data-framer-name\":\"Variant 7\"},LnOcgrk23:{\"data-framer-name\":\"Variant 4\"},NsUR1oY_L:{\"data-framer-name\":\"Growing\"},UgCc0fWQ8:{\"data-framer-name\":\"Variant 5\"},YbEfZJPbd:{\"data-framer-name\":\"Buy Gold\"},yE5A4lGXN:{\"data-framer-name\":\"Variant 6\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:1e3,pixelWidth:1e3,sizes:\"1px\",src:\"https://framerusercontent.com/images/cyMxjRrw6gPrULTzPCSgFg2lXxA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/cyMxjRrw6gPrULTzPCSgFg2lXxA.png?scale-down-to=512 512w,https://framerusercontent.com/images/cyMxjRrw6gPrULTzPCSgFg2lXxA.png 1000w\"},className:\"framer-1fag9oi\",\"data-framer-name\":\"$42\",layoutDependency:layoutDependency,layoutId:\"E1D6YTa9P\",...addPropertyOverrides({bNsZyklnu:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:1e3,pixelWidth:1e3,sizes:\"1px\",src:\"https://framerusercontent.com/images/avZ5JACsP3h14YWYNvPNLJrplA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/avZ5JACsP3h14YWYNvPNLJrplA.png?scale-down-to=512 512w,https://framerusercontent.com/images/avZ5JACsP3h14YWYNvPNLJrplA.png 1000w\"}},LnOcgrk23:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:1e3,pixelWidth:1e3,sizes:\"1px\",src:\"https://framerusercontent.com/images/V3wvxGUatKlkTlIn9e2n7o58BI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/V3wvxGUatKlkTlIn9e2n7o58BI.png?scale-down-to=512 512w,https://framerusercontent.com/images/V3wvxGUatKlkTlIn9e2n7o58BI.png 1000w\"}},NsUR1oY_L:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:1e3,pixelWidth:1e3,sizes:\"1px\",src:\"https://framerusercontent.com/images/W7OGY2bdE6IPaQa6PA85yaN8R8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/W7OGY2bdE6IPaQa6PA85yaN8R8.png?scale-down-to=512 512w,https://framerusercontent.com/images/W7OGY2bdE6IPaQa6PA85yaN8R8.png 1000w\"}},UgCc0fWQ8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:1e3,pixelWidth:1e3,sizes:\"1px\",src:\"https://framerusercontent.com/images/hfKnQOmVdONL2UwfIyJdN1kRrI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/hfKnQOmVdONL2UwfIyJdN1kRrI.png?scale-down-to=512 512w,https://framerusercontent.com/images/hfKnQOmVdONL2UwfIyJdN1kRrI.png 1000w\"}},YbEfZJPbd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:1e3,pixelWidth:1e3,sizes:\"1px\",src:\"https://framerusercontent.com/images/KhLSpNK5vxcJYjEB95igrJxo.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/KhLSpNK5vxcJYjEB95igrJxo.png?scale-down-to=512 512w,https://framerusercontent.com/images/KhLSpNK5vxcJYjEB95igrJxo.png 1000w\"}},yE5A4lGXN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:1e3,pixelWidth:1e3,sizes:\"1px\",src:\"https://framerusercontent.com/images/ahtAaOkoD1KoGy5IFckhpDW7Drk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ahtAaOkoD1KoGy5IFckhpDW7Drk.png?scale-down-to=512 512w,https://framerusercontent.com/images/ahtAaOkoD1KoGy5IFckhpDW7Drk.png 1000w\"}}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RJN7r.framer-1i59j04, .framer-RJN7r .framer-1i59j04 { display: block; }\",\".framer-RJN7r.framer-1i441np { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 500px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 500px; will-change: var(--framer-will-change-override, transform); }\",\".framer-RJN7r .framer-1fag9oi { aspect-ratio: 1 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 500px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RJN7r.framer-1i441np { gap: 0px; } .framer-RJN7r.framer-1i441np > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-RJN7r.framer-1i441np > :first-child { margin-top: 0px; } .framer-RJN7r.framer-1i441np > :last-child { margin-bottom: 0px; } }\",\".framer-RJN7r.framer-v-1cdpe83.framer-1i441np, .framer-RJN7r.framer-v-eb1d9y.framer-1i441np, .framer-RJN7r.framer-v-le8fnh.framer-1i441np, .framer-RJN7r.framer-v-1t9v0mb.framer-1i441np, .framer-RJN7r.framer-v-518ew1.framer-1i441np, .framer-RJN7r.framer-v-9jy4lj.framer-1i441np { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 500px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 500\n * @framerIntrinsicWidth 500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"YbEfZJPbd\":{\"layout\":[\"fixed\",\"fixed\"]},\"NsUR1oY_L\":{\"layout\":[\"fixed\",\"fixed\"]},\"LnOcgrk23\":{\"layout\":[\"fixed\",\"fixed\"]},\"UgCc0fWQ8\":{\"layout\":[\"fixed\",\"fixed\"]},\"yE5A4lGXN\":{\"layout\":[\"fixed\",\"fixed\"]},\"bNsZyklnu\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXLYQxiIQD=withCSS(Component,css,\"framer-RJN7r\");export default FramerXLYQxiIQD;FramerXLYQxiIQD.displayName=\"Illustration\";FramerXLYQxiIQD.defaultProps={height:500,width:500};addPropertyControls(FramerXLYQxiIQD,{variant:{options:[\"K8x7ws7iG\",\"YbEfZJPbd\",\"NsUR1oY_L\",\"LnOcgrk23\",\"UgCc0fWQ8\",\"yE5A4lGXN\",\"bNsZyklnu\"],optionTitles:[\"Open account\",\"Buy Gold\",\"Growing\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerXLYQxiIQD,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXLYQxiIQD\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YbEfZJPbd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NsUR1oY_L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LnOcgrk23\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UgCc0fWQ8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yE5A4lGXN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bNsZyklnu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"500\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"500\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XLYQxiIQD.map", "// Generated by Framer (ff86393)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={X8A7hbOOX:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ff86393)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/ALzPzo9ZL7qsyNt6jnNi/Smooth_Scroll.js\";import Accordion from\"#framer/local/canvasComponent/caetojpWY/caetojpWY.js\";import Navigation from\"#framer/local/canvasComponent/FdKw2tah_/FdKw2tah_.js\";import Button from\"#framer/local/canvasComponent/fVta_LUbW/fVta_LUbW.js\";import BlogCard from\"#framer/local/canvasComponent/P0rRpVz6w/P0rRpVz6w.js\";import Link from\"#framer/local/canvasComponent/Q5kh09LwU/Q5kh09LwU.js\";import Footer from\"#framer/local/canvasComponent/qh5GVNxPA/qh5GVNxPA.js\";import DownloadNow from\"#framer/local/canvasComponent/sj9exvyqZ/sj9exvyqZ.js\";import TestimonialCard from\"#framer/local/canvasComponent/uFr8_B4MH/uFr8_B4MH.js\";import Illustration from\"#framer/local/canvasComponent/XLYQxiIQD/XLYQxiIQD.js\";import*as sharedStyle1 from\"#framer/local/css/HIrj5DzbA/HIrj5DzbA.js\";import*as sharedStyle3 from\"#framer/local/css/jhvtP72mc/jhvtP72mc.js\";import*as sharedStyle5 from\"#framer/local/css/jSlJKdPLT/jSlJKdPLT.js\";import*as sharedStyle2 from\"#framer/local/css/LaTvsj3Za/LaTvsj3Za.js\";import*as sharedStyle7 from\"#framer/local/css/mVllej59p/mVllej59p.js\";import*as sharedStyle from\"#framer/local/css/Nj_f5lQpn/Nj_f5lQpn.js\";import*as sharedStyle6 from\"#framer/local/css/r_tcwDQx8/r_tcwDQx8.js\";import*as sharedStyle4 from\"#framer/local/css/RFIaf0dg2/RFIaf0dg2.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const NavigationFonts=getFonts(Navigation);const ButtonFonts=getFonts(Button);const TickerFonts=getFonts(Ticker);const MotionDivWithFX=withFX(motion.div);const IllustrationFonts=getFonts(Illustration);const TestimonialCardFonts=getFonts(TestimonialCard);const LinkFonts=getFonts(Link);const AccordionFonts=getFonts(Accordion);const BlogCardFonts=getFonts(BlogCard);const DownloadNowFonts=getFonts(DownloadNow);const FooterFonts=getFonts(Footer);const breakpoints={J7_hi1gLw:\"(max-width: 809px)\",WbIAW4sv9:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-acf6i\";const variantClassNames={J7_hi1gLw:\"framer-v-170tn0w\",WbIAW4sv9:\"framer-v-y7cmz6\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"J7_hi1gLw\",Tablet:\"WbIAW4sv9\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-acf6i`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-acf6i`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const elementId=useRouteElementId(\"vWiEAjUMx\");const ref2=React.useRef(null);usePreloadLocalizedValues(activeLocale);const elementId1=useRouteElementId(\"wG7eXk8VT\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"X3CyE0_j7\");const ref4=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"J7_hi1gLw\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"WbIAW4sv9\")return false;return true;};const elementId3=useRouteElementId(\"dckOhkbsI\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"lwQrCzWOJ\");const ref6=React.useRef(null);const elementId5=useRouteElementId(\"x3NfseONg\");const ref7=React.useRef(null);const elementId6=useRouteElementId(\"xYf14Gmuf\");const ref8=React.useRef(null);const router=useRouter();const elementId7=useRouteElementId(\"VOtVAn6na\");const ref9=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];useCustomCursors({});var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15,_getLocalizedValue16,_getLocalizedValue17,_getLocalizedValue18,_getLocalizedValue19,_getLocalizedValue20,_getLocalizedValue21,_getLocalizedValue22,_getLocalizedValue23,_getLocalizedValue24,_getLocalizedValue25,_getLocalizedValue26,_getLocalizedValue27,_getLocalizedValue28,_getLocalizedValue29,_getLocalizedValue30,_getLocalizedValue31;return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kz0ybj-container\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"mXBun8ijM\",intensity:24,layoutId:\"mXBun8ijM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{y:200}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:124,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-yr8pmb-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{variant:\"OAMebRu0a\"},WbIAW4sv9:{variant:\"OAMebRu0a\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"UwuyCTjzj\",layoutId:\"UwuyCTjzj\",style:{width:\"100%\"},variant:\"hDVXjMypi\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-17mouuu\",\"data-framer-name\":\"Hero Section\",id:elementId,name:\"Hero Section\",ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-105z56f\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zkkq1t\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dfhwof\",\"data-framer-name\":\"Content/left\",name:\"Content/left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-legfp6\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{children:(_getLocalizedValue=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tkocc8\",\"data-styles-preset\":\"HIrj5DzbA\",style:{\"--framer-text-alignment\":\"center\"},children:\"SAVE IN YOUR GOLD PIGGY BANK\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue1=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-11jawlx\",\"data-styles-preset\":\"Nj_f5lQpn\",style:{\"--framer-text-alignment\":\"center\"},children:\"SAVE IN YOUR GOLD PIGGY BANK\"})}),className:\"framer-1ahfzph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue2=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-ippn1m\",\"data-styles-preset\":\"LaTvsj3Za\",style:{\"--framer-text-alignment\":\"center\"},children:\"Begin your journey to a secure future with KOON, your trusted partner in gold savings. Experience security, convenience at your fingertips.\"})}),className:\"framer-1q3h5rk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{y:532}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8f1iwr-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"rolPwovEd\",layoutId:\"rolPwovEd\",oDDU4UP5b:(_getLocalizedValue3=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:\"Download Now\",variant:\"L3fhhhp4v\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(612),pixelHeight:1950,pixelWidth:1920,sizes:\"max(100vw - 48px, 1px)\",src:\"https://framerusercontent.com/images/cX4YMYlGF1qhmilfYPDWbm8tw.svg\",srcSet:\"https://framerusercontent.com/images/cX4YMYlGF1qhmilfYPDWbm8tw.svg?scale-down-to=1024 1008w,https://framerusercontent.com/images/cX4YMYlGF1qhmilfYPDWbm8tw.svg 1920w\"}},WbIAW4sv9:{background:{alt:\"\",fit:\"fill\",pixelHeight:1950,pixelWidth:1920,sizes:\"max(100vw - 48px, 1px)\",src:\"https://framerusercontent.com/images/cX4YMYlGF1qhmilfYPDWbm8tw.svg\",srcSet:\"https://framerusercontent.com/images/cX4YMYlGF1qhmilfYPDWbm8tw.svg?scale-down-to=1024 1008w,https://framerusercontent.com/images/cX4YMYlGF1qhmilfYPDWbm8tw.svg 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1950,pixelWidth:1920,sizes:\"max(100vw - 160px, 1px)\",src:\"https://framerusercontent.com/images/cX4YMYlGF1qhmilfYPDWbm8tw.svg\",srcSet:\"https://framerusercontent.com/images/cX4YMYlGF1qhmilfYPDWbm8tw.svg?scale-down-to=1024 1008w,https://framerusercontent.com/images/cX4YMYlGF1qhmilfYPDWbm8tw.svg 1920w\"},className:\"framer-35pigc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(612),pixelHeight:2332,pixelWidth:2908,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Itg9ap4mtjo3GxuXBdwQHeTtI3E.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:2332,pixelWidth:2908,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Itg9ap4mtjo3GxuXBdwQHeTtI3E.png\"},className:\"framer-1bj6jzf\"})})})})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mjkjqz-container\",id:elementId1,ref:ref3,children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:120,height:\"100%\",hoverFactor:1,id:\"wG7eXk8VT\",layoutId:\"wG7eXk8VT\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zib5d4\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue4=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tkocc8\",\"data-styles-preset\":\"HIrj5DzbA\",children:\"\uD83C\uDDF9\uD83C\uDDED MADE IN THAILAND\"})}),className:\"framer-j29vxq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue5=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tkocc8\",\"data-styles-preset\":\"HIrj5DzbA\",children:\"\uD83C\uDDF9\uD83C\uDDED  MADE IN THAILAND\"})}),className:\"framer-e4koaf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue6=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tkocc8\",\"data-styles-preset\":\"HIrj5DzbA\",children:\"\uD83C\uDDF9\uD83C\uDDED  MADE IN THAILAND\"})}),className:\"framer-qyk4di\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2mhuhb\",\"data-framer-name\":\"Partnership\",id:elementId2,name:\"Partnership\",ref:ref4,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p9ji1\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12ipv62\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wa5su5\",\"data-framer-name\":\"Content/Left\",name:\"Content/Left\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue7=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1jmewe7\",\"data-styles-preset\":\"jhvtP72mc\",children:\"Trusted PARTNERS\"})}),className:\"framer-1r3mj5r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue8=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1e2hnqn\",\"data-styles-preset\":\"RFIaf0dg2\",children:\"KOON partners with renowned gold shops in Thailand to ensure your savings are secure and reliable. Our partners are industry leaders, known for their integrity and trustworthiness.\"})}),className:\"framer-16cv3qz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iw788c\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ypsmqc\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bfubra\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-158113o\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(1454),pixelHeight:120,pixelWidth:334,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/97imB2KrfvCxTzZwf5Jgn5Uy708.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:120,pixelWidth:334,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/97imB2KrfvCxTzZwf5Jgn5Uy708.svg\"},className:\"framer-13y0nlr\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue9=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9bulee\",\"data-styles-preset\":\"jSlJKdPLT\",children:\"A well-known gold shop in Thailand, recognized for its extensive experience in the gold industry.\"})}),className:\"framer-1pbus5u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5ymd62\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition(1472),pixelHeight:800,pixelWidth:800,sizes:\"160px\",src:\"https://framerusercontent.com/images/UWXCvw2GnVh4HFcnFVnuuP6EGvc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UWXCvw2GnVh4HFcnFVnuuP6EGvc.png?scale-down-to=512 512w,https://framerusercontent.com/images/UWXCvw2GnVh4HFcnFVnuuP6EGvc.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:800,pixelWidth:800,sizes:\"160px\",src:\"https://framerusercontent.com/images/UWXCvw2GnVh4HFcnFVnuuP6EGvc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UWXCvw2GnVh4HFcnFVnuuP6EGvc.png?scale-down-to=512 512w,https://framerusercontent.com/images/UWXCvw2GnVh4HFcnFVnuuP6EGvc.png 800w\"},className:\"framer-e74ucn\",\"data-framer-name\":\"object_2\",name:\"object_2\"})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-gjnke8 hidden-170tn0w\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7229ef\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qpn9rv\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-izmp7f\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(1612),pixelHeight:70,pixelWidth:222,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/v3QDltruuCy24cGZy2unYCvnv0.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:70,pixelWidth:222,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/v3QDltruuCy24cGZy2unYCvnv0.png\"},className:\"framer-mp8snn\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue10=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9bulee\",\"data-styles-preset\":\"jSlJKdPLT\",children:\"A prominent gold trading company in Thailand, specializing in gold investment products and services.\"})}),className:\"framer-xftfl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y6mt7c\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition(1630),pixelHeight:800,pixelWidth:800,sizes:\"160px\",src:\"https://framerusercontent.com/images/FtUtYf9MnSHNxJTZyrRykCxVS0c.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/FtUtYf9MnSHNxJTZyrRykCxVS0c.png?scale-down-to=512 512w,https://framerusercontent.com/images/FtUtYf9MnSHNxJTZyrRykCxVS0c.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:800,pixelWidth:800,sizes:\"160px\",src:\"https://framerusercontent.com/images/FtUtYf9MnSHNxJTZyrRykCxVS0c.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/FtUtYf9MnSHNxJTZyrRykCxVS0c.png?scale-down-to=512 512w,https://framerusercontent.com/images/FtUtYf9MnSHNxJTZyrRykCxVS0c.png 800w\"},className:\"framer-2pxmum\",\"data-framer-name\":\"object_2\",name:\"object_2\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4tcx0y\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1srtnlh\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(1770),pixelHeight:120,pixelWidth:500,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/pr2tr2KdqQw5aIpBIv7lEjKavg.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:120,pixelWidth:500,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/pr2tr2KdqQw5aIpBIv7lEjKavg.svg\"},className:\"framer-10cawhd\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue11=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9bulee\",\"data-styles-preset\":\"jSlJKdPLT\",children:\"Global leader in gold technology and retail providing a safe way to invest in gold digitally.\"})}),className:\"framer-h43dr0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18a5nj4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition(1788),pixelHeight:800,pixelWidth:800,sizes:\"160px\",src:\"https://framerusercontent.com/images/P8oc96pYX1l55HYjNDQ1z0PaAM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/P8oc96pYX1l55HYjNDQ1z0PaAM.png?scale-down-to=512 512w,https://framerusercontent.com/images/P8oc96pYX1l55HYjNDQ1z0PaAM.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:800,pixelWidth:800,sizes:\"160px\",src:\"https://framerusercontent.com/images/P8oc96pYX1l55HYjNDQ1z0PaAM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/P8oc96pYX1l55HYjNDQ1z0PaAM.png?scale-down-to=512 512w,https://framerusercontent.com/images/P8oc96pYX1l55HYjNDQ1z0PaAM.png 800w\"},className:\"framer-mqu29h\",\"data-framer-name\":\"object_2\",name:\"object_2\"})})})]})})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k8qi9d hidden-y7cmz6\",\"data-framer-name\":\"Content/Right\",name:\"Content/Right\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(1960),pixelHeight:2400,pixelWidth:2400,positionX:\"center\",positionY:\"center\",sizes:\"max(100vw - 48px, 1px)\",src:\"https://framerusercontent.com/images/irZseiZS8nWMCudsoYFFMOubLTs.png\",srcSet:\"https://framerusercontent.com/images/irZseiZS8nWMCudsoYFFMOubLTs.png?scale-down-to=512 512w,https://framerusercontent.com/images/irZseiZS8nWMCudsoYFFMOubLTs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/irZseiZS8nWMCudsoYFFMOubLTs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/irZseiZS8nWMCudsoYFFMOubLTs.png 2400w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:2400,pixelWidth:2400,positionX:\"center\",positionY:\"center\",sizes:\"max(max(100vw - 160px, 1px) / 2 - 64px, 1px)\",src:\"https://framerusercontent.com/images/irZseiZS8nWMCudsoYFFMOubLTs.png\",srcSet:\"https://framerusercontent.com/images/irZseiZS8nWMCudsoYFFMOubLTs.png?scale-down-to=512 512w,https://framerusercontent.com/images/irZseiZS8nWMCudsoYFFMOubLTs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/irZseiZS8nWMCudsoYFFMOubLTs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/irZseiZS8nWMCudsoYFFMOubLTs.png 2400w\"},className:\"framer-w654j7\"})})})]})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qxjaeh\",\"data-framer-name\":\"How it works\",id:elementId3,name:\"How it works\",ref:ref5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8gd3jk\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue12=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1jmewe7\",\"data-styles-preset\":\"jhvtP72mc\",children:\"How KOON Works\"})}),className:\"framer-g3a7qm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hyt235\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6spn31\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q023jx\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pgmlbf\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue13=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-10aby94\",\"data-styles-preset\":\"r_tcwDQx8\",children:\"Step 1 : Sign Up & Open Account\"})}),className:\"framer-1pl57zp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue14=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1e2hnqn\",\"data-styles-preset\":\"RFIaf0dg2\",children:\"Create your KOON account in just a few steps.\"})}),className:\"framer-i0lzmu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{height:342,width:\"calc(100vw - 48px)\",y:2874},WbIAW4sv9:{height:357,width:\"calc(100vw - 48px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:304,width:\"calc(100vw - 160px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-emmlc7-container\",children:/*#__PURE__*/_jsx(Illustration,{height:\"100%\",id:\"L4XHQcCfu\",layoutId:\"L4XHQcCfu\",style:{height:\"100%\",width:\"100%\"},variant:\"K8x7ws7iG\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lngp74\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-30c4gc\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue15=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-10aby94\",\"data-styles-preset\":\"r_tcwDQx8\",children:\"Step 2 : Save In Any Amount\"})}),className:\"framer-b9603g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue16=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue16!==void 0?_getLocalizedValue16:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1e2hnqn\",\"data-styles-preset\":\"RFIaf0dg2\",children:\"Save with any amount starting from 20 baht.\"})}),className:\"framer-c01se7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{height:342,width:\"calc(100vw - 48px)\",y:3442},WbIAW4sv9:{height:357,width:\"calc(100vw - 48px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:304,width:\"calc(100vw - 160px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16k8exb-container\",children:/*#__PURE__*/_jsx(Illustration,{height:\"100%\",id:\"nsykiTjVI\",layoutId:\"nsykiTjVI\",style:{height:\"100%\",width:\"100%\"},variant:\"YbEfZJPbd\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vo2w5s\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tgkdna\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue17=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue17!==void 0?_getLocalizedValue17:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-10aby94\",\"data-styles-preset\":\"r_tcwDQx8\",children:\"Step 3 : Watch Your Savings Grow\"})}),className:\"framer-172c3z9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue18=getLocalizedValue(\"v17\",activeLocale))!==null&&_getLocalizedValue18!==void 0?_getLocalizedValue18:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1e2hnqn\",\"data-styles-preset\":\"RFIaf0dg2\",children:\"Keep saving in gold to watch your wealth multiply.\"})}),className:\"framer-1qysxst\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{height:342,width:\"calc(100vw - 48px)\",y:4010},WbIAW4sv9:{height:357,width:\"calc(100vw - 48px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:304,width:\"calc(100vw - 160px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1veeih5-container\",children:/*#__PURE__*/_jsx(Illustration,{height:\"100%\",id:\"uKRdUSKvq\",layoutId:\"uKRdUSKvq\",style:{height:\"100%\",width:\"100%\"},variant:\"NsUR1oY_L\",width:\"100%\"})})})})]})]})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pdvzmv\",\"data-framer-name\":\"Why us\",id:elementId4,name:\"Why us\",ref:ref6,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1me5mxu\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue19=getLocalizedValue(\"v18\",activeLocale))!==null&&_getLocalizedValue19!==void 0?_getLocalizedValue19:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1jmewe7\",\"data-styles-preset\":\"jhvtP72mc\",style:{\"--framer-text-alignment\":\"center\"},children:\"KOON ADVANTAGE\"})}),className:\"framer-p4zsgn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fzgzvs\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r5m2gn\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o30t9k\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pkv31b\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{height:342,y:4632},WbIAW4sv9:{height:357}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:\"120px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rzo04y-container\",children:/*#__PURE__*/_jsx(Illustration,{height:\"100%\",id:\"M8mHQkIuA\",layoutId:\"M8mHQkIuA\",style:{height:\"100%\",width:\"100%\"},variant:\"LnOcgrk23\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7icwyr\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue20=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue20!==void 0?_getLocalizedValue20:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-10aby94\",\"data-styles-preset\":\"r_tcwDQx8\",style:{\"--framer-text-alignment\":\"center\"},children:\"Flexible Savings\"})}),className:\"framer-ocw23g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue21=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue21!==void 0?_getLocalizedValue21:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rgw9s1\",\"data-styles-preset\":\"mVllej59p\",style:{\"--framer-text-alignment\":\"center\"},children:\"Save starting from 20 Baht or more at your convenience.\"})}),className:\"framer-2v1x6a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yziypv\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{height:342,y:5232},WbIAW4sv9:{height:357}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:\"120px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qz0j37-container\",children:/*#__PURE__*/_jsx(Illustration,{height:\"100%\",id:\"TxczxSUNV\",layoutId:\"TxczxSUNV\",style:{height:\"100%\",width:\"100%\"},variant:\"UgCc0fWQ8\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1irlj3u\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue22=getLocalizedValue(\"v21\",activeLocale))!==null&&_getLocalizedValue22!==void 0?_getLocalizedValue22:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-10aby94\",\"data-styles-preset\":\"r_tcwDQx8\",style:{\"--framer-text-alignment\":\"center\"},children:\"100% Secure\"})}),className:\"framer-1wshyo2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue23=getLocalizedValue(\"v22\",activeLocale))!==null&&_getLocalizedValue23!==void 0?_getLocalizedValue23:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rgw9s1\",\"data-styles-preset\":\"mVllej59p\",style:{\"--framer-text-alignment\":\"center\"},children:\"Physical gold secured in vaults on blockchain technology.\"})}),className:\"framer-6lqb4p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6izsxd\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wb7vym\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{height:342,y:5832},WbIAW4sv9:{height:357}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:\"120px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-zsgund-container\",children:/*#__PURE__*/_jsx(Illustration,{height:\"100%\",id:\"cPfRo9gCy\",layoutId:\"cPfRo9gCy\",style:{height:\"100%\",width:\"100%\"},variant:\"yE5A4lGXN\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m54be0\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue24=getLocalizedValue(\"v23\",activeLocale))!==null&&_getLocalizedValue24!==void 0?_getLocalizedValue24:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-10aby94\",\"data-styles-preset\":\"r_tcwDQx8\",style:{\"--framer-text-alignment\":\"center\"},children:\"Easy Withdrawals\"})}),className:\"framer-1tbb07y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue25=getLocalizedValue(\"v24\",activeLocale))!==null&&_getLocalizedValue25!==void 0?_getLocalizedValue25:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rgw9s1\",\"data-styles-preset\":\"mVllej59p\",style:{\"--framer-text-alignment\":\"center\"},children:\"Withdraw your gold savings to cash, anytime.\"})}),className:\"framer-5qksxo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1himxcu\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{height:342,y:6432},WbIAW4sv9:{height:357}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:\"120px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-12ac6yo-container\",children:/*#__PURE__*/_jsx(Illustration,{height:\"100%\",id:\"jv0IuI5tw\",layoutId:\"jv0IuI5tw\",style:{height:\"100%\",width:\"100%\"},variant:\"bNsZyklnu\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13v59m6\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue26=getLocalizedValue(\"v25\",activeLocale))!==null&&_getLocalizedValue26!==void 0?_getLocalizedValue26:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-10aby94\",\"data-styles-preset\":\"r_tcwDQx8\",style:{\"--framer-text-alignment\":\"center\"},children:\"Gold Delivery\"})}),className:\"framer-euwayn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue27=getLocalizedValue(\"v26\",activeLocale))!==null&&_getLocalizedValue27!==void 0?_getLocalizedValue27:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rgw9s1\",\"data-styles-preset\":\"mVllej59p\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get physical gold delivered to your doorstep.\"})}),className:\"framer-1uyi7df\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9gdpur\",\"data-framer-name\":\"Testimonials\",name:\"Testimonials\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue28=getLocalizedValue(\"v27\",activeLocale))!==null&&_getLocalizedValue28!==void 0?_getLocalizedValue28:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1jmewe7\",\"data-styles-preset\":\"jhvtP72mc\",style:{\"--framer-text-alignment\":\"center\"},children:\"WITH 1000+ DOWNLOADS!\"})}),className:\"framer-1orpcss\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m9wz22\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16jflii\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{width:\"calc(100vw - 48px)\",y:7232},WbIAW4sv9:{width:\"max((100vw - 80px) / 3, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:298,width:\"max((100vw - 208px) / 3, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ejho55-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"rmlOTAhcC\",JmMjNsOxw:addImageAlt({src:\"https://framerusercontent.com/images/DWNWMHHuCZ6YD6ZomVEZi8rVEI.jpg\",srcSet:\"https://framerusercontent.com/images/DWNWMHHuCZ6YD6ZomVEZi8rVEI.jpg?scale-down-to=1024 678w,https://framerusercontent.com/images/DWNWMHHuCZ6YD6ZomVEZi8rVEI.jpg?scale-down-to=2048 1356w,https://framerusercontent.com/images/DWNWMHHuCZ6YD6ZomVEZi8rVEI.jpg 1987w\"},\"\"),layoutId:\"rmlOTAhcC\",li0LeYq3P:\"From App Store\",Oz8GrRdeD:\"\u0E43\u0E0A\u0E48\u0E07\u0E32\u0E19\u0E07\u0E48\u0E32\u0E22\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E0B\u0E37\u0E49\u0E2D\u0E17\u0E2D\u0E07\u0E44\u0E14\u0E49\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E23\u0E27\u0E14\u0E23\u0E27\u0E22  \u0E23\u0E30\u0E1A\u0E1A\u0E01\u0E32\u0E23\u0E08\u0E48\u0E32\u0E22\u0E40\u0E07\u0E34\u0E19\u0E41\u0E25\u0E30\u0E42\u0E1A\u0E23\u0E01\u0E40\u0E01\u0E2D\u0E23\u0E4C\u0E17\u0E2D\u0E07\u0E19\u0E48\u0E32\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E16\u0E37\u0E2D  \u0E08\u0E30\u0E0B\u0E37\u0E49\u0E2D\u0E17\u0E2D\u0E07\u0E40\u0E23\u0E37\u0E48\u0E2D\u0E22\u0E46\u0E40\u0E25\u0E22\u0E04\u0E23\u0E31\u0E1A\",style:{width:\"100%\"},variant:\"FMlaOqX2i\",width:\"100%\",WK4Op76Ui:\"dvarun92\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{width:\"calc(100vw - 48px)\",y:7546},WbIAW4sv9:{width:\"max((100vw - 80px) / 3, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:298,width:\"max((100vw - 208px) / 3, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q5hsf0-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"jAjZvieK8\",JmMjNsOxw:addImageAlt({src:\"https://framerusercontent.com/images/AO8cRkqSrcXlQSO3jWjRWP7k.jpg\",srcSet:\"https://framerusercontent.com/images/AO8cRkqSrcXlQSO3jWjRWP7k.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/AO8cRkqSrcXlQSO3jWjRWP7k.jpg?scale-down-to=2048 1367w,https://framerusercontent.com/images/AO8cRkqSrcXlQSO3jWjRWP7k.jpg?scale-down-to=4096 2735w,https://framerusercontent.com/images/AO8cRkqSrcXlQSO3jWjRWP7k.jpg 2832w\"},\"\"),layoutId:\"jAjZvieK8\",li0LeYq3P:\"From App Store\",Oz8GrRdeD:\"\u0E43\u0E0A\u0E49\u0E07\u0E48\u0E32\u0E22\u0E21\u0E32\u0E01\u0E01 \u0E43\u0E0A\u0E49\u0E07\u0E48\u0E32\u0E22 \u0E2D\u0E2D\u0E21\u0E07\u0E48\u0E32\u0E22 \u0E44\u0E21\u0E48\u0E22\u0E38\u0E48\u0E07\u0E22\u0E32\u0E01 \u0E02\u0E31\u0E49\u0E19\u0E15\u0E48\u0E33\u0E40\u0E1E\u0E35\u0E22\u0E07 20 \u0E1A\u0E32\u0E17 \u0E04\u0E37\u0E2D\u0E14\u0E35\u0E04\u0E48\u0E32\u0E32\u0E32 \u0E21\u0E32\u0E25\u0E2D\u0E07\u0E01\u0E31\u0E19\u0E19\u0E49\u0E32\u0E32\",style:{width:\"100%\"},variant:\"FMlaOqX2i\",width:\"100%\",WK4Op76Ui:\"MiNT20.\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{width:\"calc(100vw - 48px)\",y:7860},WbIAW4sv9:{width:\"max((100vw - 80px) / 3, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:298,width:\"max((100vw - 208px) / 3, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-mriowe-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"Gh1bvoc4Z\",JmMjNsOxw:addImageAlt({src:\"https://framerusercontent.com/images/5LGrgalAfGWDzmoEb0RaAQLNmY.jpg\",srcSet:\"https://framerusercontent.com/images/5LGrgalAfGWDzmoEb0RaAQLNmY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5LGrgalAfGWDzmoEb0RaAQLNmY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5LGrgalAfGWDzmoEb0RaAQLNmY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5LGrgalAfGWDzmoEb0RaAQLNmY.jpg 2370w\"},\"\"),layoutId:\"Gh1bvoc4Z\",li0LeYq3P:\"From App Store\",Oz8GrRdeD:\"Easy to register! It starts with only 20 THB to save gold. Perhaps I would be wealthy soon ><.\",style:{width:\"100%\"},variant:\"FMlaOqX2i\",width:\"100%\",WK4Op76Ui:\"otaropy\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jiaxih\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{width:\"calc(100vw - 48px)\",y:8174},WbIAW4sv9:{width:\"max((100vw - 80px) / 3, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:298,width:\"max((100vw - 208px) / 3, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-rnutix-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WbIAW4sv9:{variant:\"CGjLICcqq\"}},children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"KiVpyuC2o\",JmMjNsOxw:addImageAlt({src:\"https://framerusercontent.com/images/2NXa5RhhzeyGtZV1oTpJITYoeQE.jpg\",srcSet:\"https://framerusercontent.com/images/2NXa5RhhzeyGtZV1oTpJITYoeQE.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/2NXa5RhhzeyGtZV1oTpJITYoeQE.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/2NXa5RhhzeyGtZV1oTpJITYoeQE.jpg 2523w\"},\"\"),layoutId:\"KiVpyuC2o\",li0LeYq3P:\"From App Store\",Oz8GrRdeD:\"\u0E14\u0E35\u0E21\u0E32\u0E01\u0E2A\u0E30\u0E14\u0E27\u0E01\u0E21\u0E32\u0E01 \u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19\u0E2D\u0E2D\u0E21\u0E17\u0E2D\u0E07\u0E44\u0E14\u0E49\u0E41\u0E04\u0E48 20 \u0E1A\u0E32\u0E17 \u0E2D\u0E22\u0E32\u0E01\u0E43\u0E2B\u0E49\u0E21\u0E35\u0E41\u0E2B\u0E27\u0E19\u0E17\u0E2D\u0E07\u0E43\u0E2B\u0E49\u0E41\u0E25\u0E01\u0E14\u0E49\u0E27\u0E22\",style:{width:\"100%\"},variant:\"FMlaOqX2i\",width:\"100%\",WK4Op76Ui:\"p_e3cu\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{width:\"calc(100vw - 48px)\",y:8488},WbIAW4sv9:{width:\"max((100vw - 80px) / 3, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:298,width:\"max((100vw - 208px) / 3, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ubv68a-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"cYjxYEGxv\",JmMjNsOxw:addImageAlt({src:\"https://framerusercontent.com/images/k4E1QIcpDqA2y3B9VRB001hB4E.jpg\",srcSet:\"https://framerusercontent.com/images/k4E1QIcpDqA2y3B9VRB001hB4E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/k4E1QIcpDqA2y3B9VRB001hB4E.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/k4E1QIcpDqA2y3B9VRB001hB4E.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/k4E1QIcpDqA2y3B9VRB001hB4E.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/k4E1QIcpDqA2y3B9VRB001hB4E.jpg 5760w\"},\"\"),layoutId:\"cYjxYEGxv\",li0LeYq3P:\"From App Store\",Oz8GrRdeD:\"\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E19\u0E34\u0E2A\u0E31\u0E22\u0E01\u0E32\u0E23\u0E2D\u0E2D\u0E21\u0E44\u0E14\u0E49\u0E08\u0E23\u0E34\u0E07\u0E46 \u0E41\u0E2D\u0E1B\u0E43\u0E0A\u0E49\u0E07\u0E48\u0E32\u0E22 \u0E44\u0E21\u0E48\u0E2A\u0E31\u0E1A\u0E2A\u0E19  \u0E42\u0E2D\u0E19\u0E40\u0E07\u0E34\u0E19\u0E1C\u0E48\u0E32\u0E19 payment gateway \u0E21\u0E35\u0E04\u0E19\u0E01\u0E25\u0E32\u0E07\u0E2A\u0E1A\u0E32\u0E22\u0E43\u0E08\u0E14\u0E35  \u0E44\u0E21\u0E48\u0E15\u0E48\u0E2D\u0E15\u0E23\u0E07\u0E41\u0E2D\u0E1B\u0E18\u0E19\u0E32\u0E04\u0E32\u0E23\u0E43\u0E14\u0E46 \u0E43\u0E0A\u0E49 QR code Prompay  \u0E40\u0E01\u0E47\u0E1A\u0E17\u0E35\u0E48\u0E25\u0E30\u0E19\u0E49\u0E2D\u0E22\u0E46 \u0E19\u0E32\u0E19\u0E46 \u0E19\u0E48\u0E32\u0E2A\u0E19\u0E43\u0E08\u0E21\u0E32\u0E01\",style:{width:\"100%\"},variant:\"FMlaOqX2i\",width:\"100%\",WK4Op76Ui:\"Patt pt\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{width:\"calc(100vw - 48px)\",y:8802},WbIAW4sv9:{width:\"max((100vw - 80px) / 3, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:298,width:\"max((100vw - 208px) / 3, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-mh845i-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"NdL0DH8Yb\",JmMjNsOxw:addImageAlt({src:\"https://framerusercontent.com/images/OOuWMelYbKKmD6slksIKe7T4tRc.jpg\",srcSet:\"https://framerusercontent.com/images/OOuWMelYbKKmD6slksIKe7T4tRc.jpg?scale-down-to=1024 713w,https://framerusercontent.com/images/OOuWMelYbKKmD6slksIKe7T4tRc.jpg?scale-down-to=2048 1427w,https://framerusercontent.com/images/OOuWMelYbKKmD6slksIKe7T4tRc.jpg 2832w\"},\"\"),layoutId:\"NdL0DH8Yb\",li0LeYq3P:\"From App Store\",Oz8GrRdeD:\"Great app for building savings habits as I can save daily just starting with 20 baht, also very easy to use, with a smooth experience\",style:{width:\"100%\"},variant:\"FMlaOqX2i\",width:\"100%\",WK4Op76Ui:\"Saifon\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ekmajx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{width:\"calc(100vw - 48px)\",y:9116},WbIAW4sv9:{width:\"max((100vw - 80px) / 3, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:298,width:\"max((100vw - 208px) / 3, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ey3v2n-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"P8sbPNqK0\",JmMjNsOxw:addImageAlt({src:\"https://framerusercontent.com/images/V6m3YRzYwO76mDz9SCEXgOnTLY.jpg\",srcSet:\"https://framerusercontent.com/images/V6m3YRzYwO76mDz9SCEXgOnTLY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/V6m3YRzYwO76mDz9SCEXgOnTLY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/V6m3YRzYwO76mDz9SCEXgOnTLY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/V6m3YRzYwO76mDz9SCEXgOnTLY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/V6m3YRzYwO76mDz9SCEXgOnTLY.jpg 4186w\"},\"\"),layoutId:\"P8sbPNqK0\",li0LeYq3P:\"From App Store\",Oz8GrRdeD:\"\u0E41\u0E2D\u0E1B\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E07\u0E48\u0E32\u0E22\u0E21\u0E32\u0E01 \u0E44\u0E21\u0E48\u0E01\u0E35\u0E48\u0E04\u0E25\u0E34\u0E01\u0E01\u0E47\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E0B\u0E37\u0E49\u0E2D\u0E17\u0E2D\u0E07\u0E21\u0E32\u0E2D\u0E2D\u0E21\u0E44\u0E27\u0E49\u0E44\u0E14\u0E49\u0E41\u0E25\u0E49\u0E27\",style:{width:\"100%\"},variant:\"FMlaOqX2i\",width:\"100%\",WK4Op76Ui:\"Ryunakub\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{width:\"calc(100vw - 48px)\",y:9430},WbIAW4sv9:{width:\"max((100vw - 80px) / 3, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:298,width:\"max((100vw - 208px) / 3, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-fgi3rr-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"RifbCAfAa\",JmMjNsOxw:addImageAlt({src:\"https://framerusercontent.com/images/zadJsIefeNd1WFvg3AOiWF4Bxkw.jpg\",srcSet:\"https://framerusercontent.com/images/zadJsIefeNd1WFvg3AOiWF4Bxkw.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/zadJsIefeNd1WFvg3AOiWF4Bxkw.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/zadJsIefeNd1WFvg3AOiWF4Bxkw.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/zadJsIefeNd1WFvg3AOiWF4Bxkw.jpg 3261w\"},\"\"),layoutId:\"RifbCAfAa\",li0LeYq3P:\"From App Store\",Oz8GrRdeD:\"\u0E40\u0E1B\u0E47\u0E19\u0E41\u0E2D\u0E1B\u0E17\u0E35\u0E48\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E07\u0E48\u0E32\u0E22 \u0E17\u0E33\u0E15\u0E32\u0E21\u0E02\u0E31\u0E49\u0E19\u0E15\u0E2D\u0E19\u0E19\u0E34\u0E14\u0E40\u0E14\u0E35\u0E22\u0E27\u0E01\u0E47\u0E40\u0E23\u0E34\u0E48\u0E21\u0E2D\u0E2D\u0E21\u0E17\u0E2D\u0E07\u0E44\u0E14\u0E49\u0E40\u0E25\u0E22 \u0E14\u0E35\u0E15\u0E23\u0E07\u0E17\u0E35\u0E48\u0E40\u0E23\u0E34\u0E48\u0E21\u0E0B\u0E37\u0E49\u0E2D\u0E04\u0E23\u0E31\u0E49\u0E07\u0E25\u0E48\u0E30 20\u0E3F \u0E01\u0E47\u0E44\u0E14\u0E49\u0E41\u0E25\u0E49\u0E27 \u0E08\u0E30\u0E40\u0E17\u0E23\u0E14\u0E02\u0E32\u0E22\u0E01\u0E47\u0E17\u0E33\u0E44\u0E14\u0E49\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E23\u0E27\u0E14\u0E40\u0E23\u0E47\u0E27 \u0E17\u0E32\u0E07\u0E41\u0E2D\u0E1B support \u0E14\u0E35\u0E21\u0E32\u0E01\u0E15\u0E2D\u0E1A\u0E44\u0E14\u0E49\u0E17\u0E38\u0E01\u0E02\u0E49\u0E2D\u0E2A\u0E07\u0E2A\u0E31\u0E22 \u0E23\u0E39\u0E49\u0E2A\u0E36\u0E01\u0E1B\u0E25\u0E2D\u0E14\u0E20\u0E31\u0E22\u0E04\u0E48\u0E30\",style:{width:\"100%\"},variant:\"FMlaOqX2i\",width:\"100%\",WK4Op76Ui:\"ghjiijbh\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{width:\"calc(100vw - 48px)\",y:9744},WbIAW4sv9:{width:\"max((100vw - 80px) / 3, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:298,width:\"max((100vw - 208px) / 3, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-rds6md-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"j85Bm8VoZ\",JmMjNsOxw:addImageAlt({src:\"https://framerusercontent.com/images/V5tN9O4s42vpmPB0x2FsrKgsmrY.jpg\",srcSet:\"https://framerusercontent.com/images/V5tN9O4s42vpmPB0x2FsrKgsmrY.jpg?scale-down-to=1024 737w,https://framerusercontent.com/images/V5tN9O4s42vpmPB0x2FsrKgsmrY.jpg?scale-down-to=2048 1475w,https://framerusercontent.com/images/V5tN9O4s42vpmPB0x2FsrKgsmrY.jpg 2704w\"},\"\"),layoutId:\"j85Bm8VoZ\",li0LeYq3P:\"From App Store\",Oz8GrRdeD:\"\u0E0A\u0E2D\u0E1A\u0E41\u0E2D\u0E1E\u0E19\u0E35\u0E49\u0E21\u0E32\u0E01 \u0E2D\u0E2D\u0E21\u0E17\u0E2D\u0E07\u0E2D\u0E2D\u0E19\u0E44\u0E25\u0E19\u0E4C\u0E2A\u0E30\u0E14\u0E27\u0E01 \u0E0A\u0E2D\u0E1A\u0E2D\u0E2D\u0E21\u0E27\u0E31\u0E19\u0E25\u0E30 20 \u0E1A\u0E32\u0E17 \u0E43\u0E0A\u0E49\u0E40\u0E27\u0E25\u0E32\u0E44\u0E21\u0E48\u0E16\u0E36\u0E07 30 \u0E27\u0E34\u0E19\u0E32\u0E17\u0E35\u0E01\u0E47\u0E17\u0E33\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E40\u0E2A\u0E23\u0E47\u0E08\u0E41\u0E25\u0E49\u0E27 :)\",style:{width:\"100%\"},variant:\"FMlaOqX2i\",width:\"100%\",WK4Op76Ui:\"MinnieMick12\"})})})})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-a2dyiv\",\"data-framer-name\":\"FAQs\",id:elementId5,name:\"FAQs\",ref:ref7,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u5i9vy\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue29=getLocalizedValue(\"v28\",activeLocale))!==null&&_getLocalizedValue29!==void 0?_getLocalizedValue29:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1jmewe7\",\"data-styles-preset\":\"jhvtP72mc\",children:\"FAQs\"})}),className:\"framer-6154x5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{y:10212}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12h8dfw-container\",children:/*#__PURE__*/_jsx(Link,{dAwqVd25O:(_getLocalizedValue30=getLocalizedValue(\"v29\",activeLocale))!==null&&_getLocalizedValue30!==void 0?_getLocalizedValue30:\"Read All\",height:\"100%\",id:\"liMdEEkGa\",layoutId:\"liMdEEkGa\",QqUgp2We1:true,usWtPyspO:\"Link\",variant:\"nolS1VKF7\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sw0jxn\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{width:\"calc(100vw - 48px)\",y:10298},WbIAW4sv9:{width:\"calc(100vw - 48px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1712,width:\"calc(100vw - 160px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-j7h2wt-container\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"Wv5UWxgL6\",layoutId:\"Wv5UWxgL6\",style:{width:\"100%\"},variant:\"kV9FxJA8z\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dcsbn0\",\"data-framer-name\":\"Blog Section\",id:elementId6,name:\"Blog Section\",ref:ref8,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mrd7xn\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue31=getLocalizedValue(\"v30\",activeLocale))!==null&&_getLocalizedValue31!==void 0?_getLocalizedValue31:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1jmewe7\",\"data-styles-preset\":\"jhvtP72mc\",children:\"Articles\"})}),className:\"framer-zxlv3i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dwn7cm\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lVig_egHK\"},implicitPathVariables:undefined},{href:{webPageId:\"lVig_egHK\"},implicitPathVariables:undefined},{href:{webPageId:\"lVig_egHK\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/{var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2;return _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{width:\"calc(100vw - 48px)\",y:12266},WbIAW4sv9:{width:\"max(100vw - 48px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:438,width:\"1040px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-3bdk5f-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{LHxcJtLoA:(_getLocalizedValue=getLocalizedValue(\"v33\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"In an era marked by economic volatility, establishing a solid financial foundation has become more crucial than ever.\",vpYRXhjtq:resolvedLinks[2]},WbIAW4sv9:{vpYRXhjtq:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(BlogCard,{gwlp3nzDh:(_getLocalizedValue1=getLocalizedValue(\"v31\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"Gold: Your Beacon to Financial Security \",height:\"100%\",id:\"syD4GWj87\",layoutId:\"syD4GWj87\",LHxcJtLoA:(_getLocalizedValue2=getLocalizedValue(\"v32\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:\"In an era marked by economic volatility, establishing a solid financial foundation has become more crucial than ever\",style:{width:\"100%\"},vpYRXhjtq:resolvedLinks[0],width:\"100%\",yb8UF3M_d:addImageAlt({src:\"https://framerusercontent.com/images/svaWsxb1ZpDjj71YTZLLllcr5Vk.png\"},\"\")})})})})});}})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-l59ngf\",\"data-framer-name\":\"Download app\",id:elementId7,name:\"Download app\",ref:ref9,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{width:\"max(100vw - 48px, 1px)\",y:12864},WbIAW4sv9:{width:\"max(100vw - 48px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:540,width:\"max(100vw - 160px, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rv9ht5-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{variant:\"B9ziWhGHO\"},WbIAW4sv9:{variant:\"OQYcRUAr3\"}},children:/*#__PURE__*/_jsx(DownloadNow,{height:\"100%\",id:\"SiYBPbj3v\",layoutId:\"SiYBPbj3v\",style:{width:\"100%\"},variant:\"fPMq0H3B8\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{y:13484}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:184,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jek60h-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7_hi1gLw:{variant:\"MHij_MGVV\"},WbIAW4sv9:{variant:\"NPaB94Ski\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"akugUe_z6\",layoutId:\"akugUe_z6\",style:{width:\"100%\"},variant:\"eWJJw_dWM\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-acf6i { background: var(--token-39dabcfc-7beb-49a8-9ec3-f10dbbdceb3c, rgb(43, 43, 43)) /* {\"name\":\"Primary Black\"} */; }`,\".framer-acf6i.framer-lux5qc, .framer-acf6i .framer-lux5qc { display: block; }\",\".framer-acf6i.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-39dabcfc-7beb-49a8-9ec3-f10dbbdceb3c, #2b2b2b); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-acf6i .framer-kz0ybj-container, .framer-acf6i .framer-8f1iwr-container, .framer-acf6i .framer-12h8dfw-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-acf6i .framer-yr8pmb-container, .framer-acf6i .framer-ejho55-container, .framer-acf6i .framer-1q5hsf0-container, .framer-acf6i .framer-mriowe-container, .framer-acf6i .framer-rnutix-container, .framer-acf6i .framer-ubv68a-container, .framer-acf6i .framer-mh845i-container, .framer-acf6i .framer-ey3v2n-container, .framer-acf6i .framer-fgi3rr-container, .framer-acf6i .framer-rds6md-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-acf6i .framer-17mouuu, .framer-acf6i .framer-9gdpur { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-acf6i .framer-105z56f { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-acf6i .framer-zkkq1t { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-acf6i .framer-dfhwof { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 70%; }\",\".framer-acf6i .framer-legfp6, .framer-acf6i .framer-8gd3jk, .framer-acf6i .framer-1me5mxu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-acf6i .framer-1ahfzph, .framer-acf6i .framer-1q3h5rk, .framer-acf6i .framer-g3a7qm, .framer-acf6i .framer-p4zsgn { --framer-paragraph-spacing: 0px; -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; }\",\".framer-acf6i .framer-35pigc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-acf6i .framer-1bj6jzf { flex: none; height: 800px; overflow: hidden; position: relative; width: 80%; }\",\".framer-acf6i .framer-mjkjqz-container { flex: none; height: 120px; position: relative; width: 100%; }\",\".framer-acf6i .framer-zib5d4 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-acf6i .framer-j29vxq, .framer-acf6i .framer-e4koaf, .framer-acf6i .framer-qyk4di { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-acf6i .framer-2mhuhb { 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: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-acf6i .framer-1p9ji1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-acf6i .framer-12ipv62 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-acf6i .framer-1wa5su5 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50%; }\",\".framer-acf6i .framer-1r3mj5r, .framer-acf6i .framer-16cv3qz, .framer-acf6i .framer-1pbus5u, .framer-acf6i .framer-xftfl, .framer-acf6i .framer-h43dr0, .framer-acf6i .framer-1pl57zp, .framer-acf6i .framer-b9603g, .framer-acf6i .framer-172c3z9, .framer-acf6i .framer-ocw23g, .framer-acf6i .framer-2v1x6a, .framer-acf6i .framer-1wshyo2, .framer-acf6i .framer-6lqb4p, .framer-acf6i .framer-1tbb07y, .framer-acf6i .framer-5qksxo, .framer-acf6i .framer-euwayn, .framer-acf6i .framer-1uyi7df { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-acf6i .framer-1iw788c { align-content: center; align-items: center; 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-acf6i .framer-1ypsmqc, .framer-acf6i .framer-7229ef { 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-acf6i .framer-1bfubra, .framer-acf6i .framer-gjnke8, .framer-acf6i .framer-qpn9rv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 120px; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-acf6i .framer-158113o, .framer-acf6i .framer-izmp7f, .framer-acf6i .framer-1srtnlh { align-content: flex-start; align-items: flex-start; background-color: var(--token-863704a3-9f6d-4262-af02-57b0eef4f931, #0a2749); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-acf6i .framer-13y0nlr, .framer-acf6i .framer-mp8snn, .framer-acf6i .framer-10cawhd { align-content: center; align-items: center; aspect-ratio: 9.166666666666666 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 32px); justify-content: flex-start; padding: 0px; position: relative; width: 293px; z-index: 1; }\",\".framer-acf6i .framer-5ymd62, .framer-acf6i .framer-y6mt7c, .framer-acf6i .framer-18a5nj4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 2px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-acf6i .framer-e74ucn, .framer-acf6i .framer-2pxmum, .framer-acf6i .framer-mqu29h { aspect-ratio: 1 / 1; bottom: -46px; flex: none; overflow: visible; position: absolute; right: -60px; top: -112px; width: var(--framer-aspect-ratio-supported, 160px); z-index: 1; }\",\".framer-acf6i .framer-4tcx0y { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 120px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-acf6i .framer-1k8qi9d { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-acf6i .framer-w654j7 { aspect-ratio: 1 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 456px); overflow: hidden; position: relative; width: 1px; }\",\".framer-acf6i .framer-qxjaeh, .framer-acf6i .framer-pdvzmv, .framer-acf6i .framer-a2dyiv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-acf6i .framer-hyt235, .framer-acf6i .framer-1fzgzvs, .framer-acf6i .framer-1sw0jxn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-acf6i .framer-6spn31 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-acf6i .framer-1q023jx, .framer-acf6i .framer-lngp74, .framer-acf6i .framer-vo2w5s { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-acf6i .framer-1pgmlbf, .framer-acf6i .framer-30c4gc, .framer-acf6i .framer-tgkdna { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: 82px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-acf6i .framer-i0lzmu, .framer-acf6i .framer-c01se7, .framer-acf6i .framer-1qysxst { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.5; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-acf6i .framer-emmlc7-container, .framer-acf6i .framer-16k8exb-container, .framer-acf6i .framer-1veeih5-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 304px); position: relative; width: 100%; }\",\".framer-acf6i .framer-r5m2gn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-acf6i .framer-o30t9k, .framer-acf6i .framer-6izsxd { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-acf6i .framer-1pkv31b, .framer-acf6i .framer-yziypv, .framer-acf6i .framer-1wb7vym, .framer-acf6i .framer-1himxcu { align-content: center; align-items: center; background-color: var(--token-863704a3-9f6d-4262-af02-57b0eef4f931, #0a2749); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 298px; justify-content: center; padding: 24px; position: relative; width: 1px; }\",\".framer-acf6i .framer-1rzo04y-container, .framer-acf6i .framer-qz0j37-container, .framer-acf6i .framer-zsgund-container, .framer-acf6i .framer-12ac6yo-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 120px); position: relative; width: 120px; }\",\".framer-acf6i .framer-7icwyr, .framer-acf6i .framer-1irlj3u, .framer-acf6i .framer-1m54be0, .framer-acf6i .framer-13v59m6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-acf6i .framer-1orpcss { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-acf6i .framer-1m9wz22 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-acf6i .framer-16jflii, .framer-acf6i .framer-jiaxih, .framer-acf6i .framer-ekmajx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-acf6i .framer-1u5i9vy, .framer-acf6i .framer-1mrd7xn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-acf6i .framer-6154x5, .framer-acf6i .framer-zxlv3i { --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-acf6i .framer-j7h2wt-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-acf6i .framer-1dcsbn0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 80px; position: relative; width: 1200px; }\",\".framer-acf6i .framer-dwn7cm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-acf6i .framer-3bdk5f-container, .framer-acf6i .framer-1rv9ht5-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-acf6i .framer-l59ngf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-acf6i .framer-1jek60h-container { flex: none; height: auto; position: relative; width: 100%; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-acf6i.framer-72rtr7, .framer-acf6i .framer-17mouuu, .framer-acf6i .framer-105z56f, .framer-acf6i .framer-zkkq1t, .framer-acf6i .framer-dfhwof, .framer-acf6i .framer-legfp6, .framer-acf6i .framer-35pigc, .framer-acf6i .framer-zib5d4, .framer-acf6i .framer-2mhuhb, .framer-acf6i .framer-1p9ji1, .framer-acf6i .framer-12ipv62, .framer-acf6i .framer-1wa5su5, .framer-acf6i .framer-1iw788c, .framer-acf6i .framer-1ypsmqc, .framer-acf6i .framer-1bfubra, .framer-acf6i .framer-158113o, .framer-acf6i .framer-13y0nlr, .framer-acf6i .framer-5ymd62, .framer-acf6i .framer-gjnke8, .framer-acf6i .framer-7229ef, .framer-acf6i .framer-qpn9rv, .framer-acf6i .framer-izmp7f, .framer-acf6i .framer-mp8snn, .framer-acf6i .framer-y6mt7c, .framer-acf6i .framer-4tcx0y, .framer-acf6i .framer-1srtnlh, .framer-acf6i .framer-10cawhd, .framer-acf6i .framer-18a5nj4, .framer-acf6i .framer-1k8qi9d, .framer-acf6i .framer-qxjaeh, .framer-acf6i .framer-8gd3jk, .framer-acf6i .framer-hyt235, .framer-acf6i .framer-6spn31, .framer-acf6i .framer-1q023jx, .framer-acf6i .framer-1pgmlbf, .framer-acf6i .framer-lngp74, .framer-acf6i .framer-30c4gc, .framer-acf6i .framer-vo2w5s, .framer-acf6i .framer-tgkdna, .framer-acf6i .framer-pdvzmv, .framer-acf6i .framer-1me5mxu, .framer-acf6i .framer-1fzgzvs, .framer-acf6i .framer-r5m2gn, .framer-acf6i .framer-o30t9k, .framer-acf6i .framer-1pkv31b, .framer-acf6i .framer-7icwyr, .framer-acf6i .framer-yziypv, .framer-acf6i .framer-1irlj3u, .framer-acf6i .framer-6izsxd, .framer-acf6i .framer-1wb7vym, .framer-acf6i .framer-1m54be0, .framer-acf6i .framer-1himxcu, .framer-acf6i .framer-13v59m6, .framer-acf6i .framer-9gdpur, .framer-acf6i .framer-1m9wz22, .framer-acf6i .framer-16jflii, .framer-acf6i .framer-jiaxih, .framer-acf6i .framer-ekmajx, .framer-acf6i .framer-a2dyiv, .framer-acf6i .framer-1u5i9vy, .framer-acf6i .framer-1sw0jxn, .framer-acf6i .framer-1dcsbn0, .framer-acf6i .framer-1mrd7xn, .framer-acf6i .framer-dwn7cm, .framer-acf6i .framer-l59ngf { gap: 0px; } .framer-acf6i.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-acf6i.framer-72rtr7 > :first-child, .framer-acf6i .framer-17mouuu > :first-child, .framer-acf6i .framer-zkkq1t > :first-child, .framer-acf6i .framer-dfhwof > :first-child, .framer-acf6i .framer-legfp6 > :first-child, .framer-acf6i .framer-35pigc > :first-child, .framer-acf6i .framer-1wa5su5 > :first-child, .framer-acf6i .framer-1iw788c > :first-child, .framer-acf6i .framer-1bfubra > :first-child, .framer-acf6i .framer-158113o > :first-child, .framer-acf6i .framer-gjnke8 > :first-child, .framer-acf6i .framer-qpn9rv > :first-child, .framer-acf6i .framer-izmp7f > :first-child, .framer-acf6i .framer-4tcx0y > :first-child, .framer-acf6i .framer-1srtnlh > :first-child, .framer-acf6i .framer-qxjaeh > :first-child, .framer-acf6i .framer-8gd3jk > :first-child, .framer-acf6i .framer-hyt235 > :first-child, .framer-acf6i .framer-1q023jx > :first-child, .framer-acf6i .framer-1pgmlbf > :first-child, .framer-acf6i .framer-lngp74 > :first-child, .framer-acf6i .framer-30c4gc > :first-child, .framer-acf6i .framer-vo2w5s > :first-child, .framer-acf6i .framer-tgkdna > :first-child, .framer-acf6i .framer-pdvzmv > :first-child, .framer-acf6i .framer-1me5mxu > :first-child, .framer-acf6i .framer-1fzgzvs > :first-child, .framer-acf6i .framer-1pkv31b > :first-child, .framer-acf6i .framer-7icwyr > :first-child, .framer-acf6i .framer-yziypv > :first-child, .framer-acf6i .framer-1irlj3u > :first-child, .framer-acf6i .framer-1wb7vym > :first-child, .framer-acf6i .framer-1m54be0 > :first-child, .framer-acf6i .framer-1himxcu > :first-child, .framer-acf6i .framer-13v59m6 > :first-child, .framer-acf6i .framer-9gdpur > :first-child, .framer-acf6i .framer-16jflii > :first-child, .framer-acf6i .framer-jiaxih > :first-child, .framer-acf6i .framer-ekmajx > :first-child, .framer-acf6i .framer-a2dyiv > :first-child, .framer-acf6i .framer-1sw0jxn > :first-child, .framer-acf6i .framer-1dcsbn0 > :first-child { margin-top: 0px; } .framer-acf6i.framer-72rtr7 > :last-child, .framer-acf6i .framer-17mouuu > :last-child, .framer-acf6i .framer-zkkq1t > :last-child, .framer-acf6i .framer-dfhwof > :last-child, .framer-acf6i .framer-legfp6 > :last-child, .framer-acf6i .framer-35pigc > :last-child, .framer-acf6i .framer-1wa5su5 > :last-child, .framer-acf6i .framer-1iw788c > :last-child, .framer-acf6i .framer-1bfubra > :last-child, .framer-acf6i .framer-158113o > :last-child, .framer-acf6i .framer-gjnke8 > :last-child, .framer-acf6i .framer-qpn9rv > :last-child, .framer-acf6i .framer-izmp7f > :last-child, .framer-acf6i .framer-4tcx0y > :last-child, .framer-acf6i .framer-1srtnlh > :last-child, .framer-acf6i .framer-qxjaeh > :last-child, .framer-acf6i .framer-8gd3jk > :last-child, .framer-acf6i .framer-hyt235 > :last-child, .framer-acf6i .framer-1q023jx > :last-child, .framer-acf6i .framer-1pgmlbf > :last-child, .framer-acf6i .framer-lngp74 > :last-child, .framer-acf6i .framer-30c4gc > :last-child, .framer-acf6i .framer-vo2w5s > :last-child, .framer-acf6i .framer-tgkdna > :last-child, .framer-acf6i .framer-pdvzmv > :last-child, .framer-acf6i .framer-1me5mxu > :last-child, .framer-acf6i .framer-1fzgzvs > :last-child, .framer-acf6i .framer-1pkv31b > :last-child, .framer-acf6i .framer-7icwyr > :last-child, .framer-acf6i .framer-yziypv > :last-child, .framer-acf6i .framer-1irlj3u > :last-child, .framer-acf6i .framer-1wb7vym > :last-child, .framer-acf6i .framer-1m54be0 > :last-child, .framer-acf6i .framer-1himxcu > :last-child, .framer-acf6i .framer-13v59m6 > :last-child, .framer-acf6i .framer-9gdpur > :last-child, .framer-acf6i .framer-16jflii > :last-child, .framer-acf6i .framer-jiaxih > :last-child, .framer-acf6i .framer-ekmajx > :last-child, .framer-acf6i .framer-a2dyiv > :last-child, .framer-acf6i .framer-1sw0jxn > :last-child, .framer-acf6i .framer-1dcsbn0 > :last-child { margin-bottom: 0px; } .framer-acf6i .framer-17mouuu > *, .framer-acf6i .framer-qxjaeh > *, .framer-acf6i .framer-pdvzmv > *, .framer-acf6i .framer-9gdpur > *, .framer-acf6i .framer-a2dyiv > *, .framer-acf6i .framer-1dcsbn0 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-acf6i .framer-105z56f > *, .framer-acf6i .framer-2mhuhb > *, .framer-acf6i .framer-1k8qi9d > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-acf6i .framer-105z56f > :first-child, .framer-acf6i .framer-zib5d4 > :first-child, .framer-acf6i .framer-2mhuhb > :first-child, .framer-acf6i .framer-1p9ji1 > :first-child, .framer-acf6i .framer-12ipv62 > :first-child, .framer-acf6i .framer-1ypsmqc > :first-child, .framer-acf6i .framer-13y0nlr > :first-child, .framer-acf6i .framer-5ymd62 > :first-child, .framer-acf6i .framer-7229ef > :first-child, .framer-acf6i .framer-mp8snn > :first-child, .framer-acf6i .framer-y6mt7c > :first-child, .framer-acf6i .framer-10cawhd > :first-child, .framer-acf6i .framer-18a5nj4 > :first-child, .framer-acf6i .framer-1k8qi9d > :first-child, .framer-acf6i .framer-6spn31 > :first-child, .framer-acf6i .framer-r5m2gn > :first-child, .framer-acf6i .framer-o30t9k > :first-child, .framer-acf6i .framer-6izsxd > :first-child, .framer-acf6i .framer-1m9wz22 > :first-child, .framer-acf6i .framer-1u5i9vy > :first-child, .framer-acf6i .framer-1mrd7xn > :first-child, .framer-acf6i .framer-dwn7cm > :first-child, .framer-acf6i .framer-l59ngf > :first-child { margin-left: 0px; } .framer-acf6i .framer-105z56f > :last-child, .framer-acf6i .framer-zib5d4 > :last-child, .framer-acf6i .framer-2mhuhb > :last-child, .framer-acf6i .framer-1p9ji1 > :last-child, .framer-acf6i .framer-12ipv62 > :last-child, .framer-acf6i .framer-1ypsmqc > :last-child, .framer-acf6i .framer-13y0nlr > :last-child, .framer-acf6i .framer-5ymd62 > :last-child, .framer-acf6i .framer-7229ef > :last-child, .framer-acf6i .framer-mp8snn > :last-child, .framer-acf6i .framer-y6mt7c > :last-child, .framer-acf6i .framer-10cawhd > :last-child, .framer-acf6i .framer-18a5nj4 > :last-child, .framer-acf6i .framer-1k8qi9d > :last-child, .framer-acf6i .framer-6spn31 > :last-child, .framer-acf6i .framer-r5m2gn > :last-child, .framer-acf6i .framer-o30t9k > :last-child, .framer-acf6i .framer-6izsxd > :last-child, .framer-acf6i .framer-1m9wz22 > :last-child, .framer-acf6i .framer-1u5i9vy > :last-child, .framer-acf6i .framer-1mrd7xn > :last-child, .framer-acf6i .framer-dwn7cm > :last-child, .framer-acf6i .framer-l59ngf > :last-child { margin-right: 0px; } .framer-acf6i .framer-zkkq1t > *, .framer-acf6i .framer-dfhwof > *, .framer-acf6i .framer-1q023jx > *, .framer-acf6i .framer-lngp74 > *, .framer-acf6i .framer-vo2w5s > *, .framer-acf6i .framer-1pkv31b > *, .framer-acf6i .framer-yziypv > *, .framer-acf6i .framer-1wb7vym > *, .framer-acf6i .framer-1himxcu > *, .framer-acf6i .framer-16jflii > *, .framer-acf6i .framer-jiaxih > *, .framer-acf6i .framer-ekmajx > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-acf6i .framer-legfp6 > *, .framer-acf6i .framer-8gd3jk > *, .framer-acf6i .framer-1me5mxu > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-acf6i .framer-35pigc > *, .framer-acf6i .framer-1wa5su5 > *, .framer-acf6i .framer-1iw788c > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-acf6i .framer-zib5d4 > * { margin: 0px; margin-left: calc(120px / 2); margin-right: calc(120px / 2); } .framer-acf6i .framer-1p9ji1 > *, .framer-acf6i .framer-12ipv62 > *, .framer-acf6i .framer-6spn31 > *, .framer-acf6i .framer-dwn7cm > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-acf6i .framer-1ypsmqc > *, .framer-acf6i .framer-5ymd62 > *, .framer-acf6i .framer-7229ef > *, .framer-acf6i .framer-y6mt7c > *, .framer-acf6i .framer-18a5nj4 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-acf6i .framer-1bfubra > *, .framer-acf6i .framer-gjnke8 > *, .framer-acf6i .framer-qpn9rv > *, .framer-acf6i .framer-4tcx0y > *, .framer-acf6i .framer-hyt235 > *, .framer-acf6i .framer-1fzgzvs > *, .framer-acf6i .framer-1sw0jxn > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-acf6i .framer-158113o > *, .framer-acf6i .framer-izmp7f > *, .framer-acf6i .framer-1srtnlh > *, .framer-acf6i .framer-1pgmlbf > *, .framer-acf6i .framer-30c4gc > *, .framer-acf6i .framer-tgkdna > *, .framer-acf6i .framer-7icwyr > *, .framer-acf6i .framer-1irlj3u > *, .framer-acf6i .framer-1m54be0 > *, .framer-acf6i .framer-13v59m6 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-acf6i .framer-13y0nlr > *, .framer-acf6i .framer-mp8snn > *, .framer-acf6i .framer-10cawhd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-acf6i .framer-r5m2gn > *, .framer-acf6i .framer-o30t9k > *, .framer-acf6i .framer-6izsxd > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-acf6i .framer-1m9wz22 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-acf6i .framer-1u5i9vy > *, .framer-acf6i .framer-1mrd7xn > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-acf6i .framer-l59ngf > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-acf6i { background: var(--token-39dabcfc-7beb-49a8-9ec3-f10dbbdceb3c, rgb(43, 43, 43)) /* {\"name\":\"Primary Black\"} */; } .framer-acf6i.framer-72rtr7 { width: 810px; } .framer-acf6i .framer-17mouuu { padding: 80px 24px 48px 24px; } .framer-acf6i .framer-dfhwof { width: 80%; } .framer-acf6i .framer-1bj6jzf { width: 100%; } .framer-acf6i .framer-2mhuhb, .framer-acf6i .framer-qxjaeh, .framer-acf6i .framer-pdvzmv, .framer-acf6i .framer-9gdpur, .framer-acf6i .framer-a2dyiv, .framer-acf6i .framer-l59ngf { padding: 80px 24px 80px 24px; } .framer-acf6i .framer-1p9ji1, .framer-acf6i .framer-6spn31, .framer-acf6i .framer-dwn7cm { gap: 48px; } .framer-acf6i .framer-12ipv62 { align-content: center; align-items: center; flex-direction: column; } .framer-acf6i .framer-1wa5su5 { align-self: unset; height: min-content; order: 0; width: 100%; } .framer-acf6i .framer-izmp7f, .framer-acf6i .framer-1srtnlh { height: 120px; } .framer-acf6i .framer-1pgmlbf, .framer-acf6i .framer-30c4gc, .framer-acf6i .framer-tgkdna { height: min-content; } .framer-acf6i .framer-emmlc7-container, .framer-acf6i .framer-16k8exb-container, .framer-acf6i .framer-1veeih5-container { height: var(--framer-aspect-ratio-supported, 222px); } .framer-acf6i .framer-r5m2gn { flex-direction: column; } .framer-acf6i .framer-o30t9k, .framer-acf6i .framer-6izsxd { flex: none; width: 100%; } .framer-acf6i .framer-1m9wz22, .framer-acf6i .framer-16jflii, .framer-acf6i .framer-jiaxih, .framer-acf6i .framer-ekmajx { gap: 16px; } .framer-acf6i .framer-1dcsbn0 { padding: 80px 24px 80px 24px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-acf6i .framer-1p9ji1, .framer-acf6i .framer-12ipv62, .framer-acf6i .framer-6spn31, .framer-acf6i .framer-r5m2gn, .framer-acf6i .framer-1m9wz22, .framer-acf6i .framer-16jflii, .framer-acf6i .framer-jiaxih, .framer-acf6i .framer-ekmajx, .framer-acf6i .framer-dwn7cm { gap: 0px; } .framer-acf6i .framer-1p9ji1 > *, .framer-acf6i .framer-6spn31 > *, .framer-acf6i .framer-dwn7cm > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-acf6i .framer-1p9ji1 > :first-child, .framer-acf6i .framer-6spn31 > :first-child, .framer-acf6i .framer-1m9wz22 > :first-child, .framer-acf6i .framer-dwn7cm > :first-child { margin-left: 0px; } .framer-acf6i .framer-1p9ji1 > :last-child, .framer-acf6i .framer-6spn31 > :last-child, .framer-acf6i .framer-1m9wz22 > :last-child, .framer-acf6i .framer-dwn7cm > :last-child { margin-right: 0px; } .framer-acf6i .framer-12ipv62 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-acf6i .framer-12ipv62 > :first-child, .framer-acf6i .framer-r5m2gn > :first-child, .framer-acf6i .framer-16jflii > :first-child, .framer-acf6i .framer-jiaxih > :first-child, .framer-acf6i .framer-ekmajx > :first-child { margin-top: 0px; } .framer-acf6i .framer-12ipv62 > :last-child, .framer-acf6i .framer-r5m2gn > :last-child, .framer-acf6i .framer-16jflii > :last-child, .framer-acf6i .framer-jiaxih > :last-child, .framer-acf6i .framer-ekmajx > :last-child { margin-bottom: 0px; } .framer-acf6i .framer-r5m2gn > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-acf6i .framer-1m9wz22 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-acf6i .framer-16jflii > *, .framer-acf6i .framer-jiaxih > *, .framer-acf6i .framer-ekmajx > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-acf6i { background: var(--token-39dabcfc-7beb-49a8-9ec3-f10dbbdceb3c, rgb(43, 43, 43)) /* {\"name\":\"Primary Black\"} */; } .framer-acf6i.framer-72rtr7 { width: 390px; } .framer-acf6i .framer-17mouuu { padding: 80px 24px 48px 24px; } .framer-acf6i .framer-dfhwof { width: 100%; } .framer-acf6i .framer-35pigc { gap: 0px; } .framer-acf6i .framer-1bj6jzf { height: 400px; width: 100%; } .framer-acf6i .framer-2mhuhb { flex-direction: column; padding: 80px 24px 80px 24px; } .framer-acf6i .framer-1p9ji1 { flex: none; flex-direction: column; gap: 48px; width: 100%; } .framer-acf6i .framer-12ipv62, .framer-acf6i .framer-o30t9k, .framer-acf6i .framer-6izsxd { flex: none; flex-direction: column; width: 100%; } .framer-acf6i .framer-1wa5su5 { align-self: unset; height: min-content; width: 100%; } .framer-acf6i .framer-1ypsmqc, .framer-acf6i .framer-7229ef, .framer-acf6i .framer-r5m2gn { flex-direction: column; } .framer-acf6i .framer-1bfubra, .framer-acf6i .framer-4tcx0y, .framer-acf6i .framer-1k8qi9d, .framer-acf6i .framer-1q023jx, .framer-acf6i .framer-lngp74, .framer-acf6i .framer-vo2w5s, .framer-acf6i .framer-3bdk5f-container { flex: none; width: 100%; } .framer-acf6i .framer-qpn9rv, .framer-acf6i .framer-1pkv31b, .framer-acf6i .framer-yziypv, .framer-acf6i .framer-1wb7vym, .framer-acf6i .framer-1himxcu { flex: none; height: min-content; width: 100%; } .framer-acf6i .framer-w654j7 { height: var(--framer-aspect-ratio-supported, 200px); order: 0; } .framer-acf6i .framer-qxjaeh, .framer-acf6i .framer-pdvzmv, .framer-acf6i .framer-9gdpur, .framer-acf6i .framer-a2dyiv, .framer-acf6i .framer-l59ngf { padding: 80px 24px 80px 24px; } .framer-acf6i .framer-6spn31, .framer-acf6i .framer-dwn7cm { flex-direction: column; gap: 48px; } .framer-acf6i .framer-1pgmlbf, .framer-acf6i .framer-30c4gc, .framer-acf6i .framer-tgkdna { height: min-content; } .framer-acf6i .framer-emmlc7-container, .framer-acf6i .framer-16k8exb-container, .framer-acf6i .framer-1veeih5-container { height: var(--framer-aspect-ratio-supported, 200px); } .framer-acf6i .framer-1rzo04y-container, .framer-acf6i .framer-qz0j37-container, .framer-acf6i .framer-zsgund-container, .framer-acf6i .framer-12ac6yo-container { height: var(--framer-aspect-ratio-supported, 342px); } .framer-acf6i .framer-1m9wz22 { flex-direction: column; gap: 16px; } .framer-acf6i .framer-16jflii, .framer-acf6i .framer-jiaxih, .framer-acf6i .framer-ekmajx { flex: none; gap: 16px; width: 100%; } .framer-acf6i .framer-1dcsbn0 { padding: 80px 24px 80px 24px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-acf6i .framer-35pigc, .framer-acf6i .framer-2mhuhb, .framer-acf6i .framer-1p9ji1, .framer-acf6i .framer-12ipv62, .framer-acf6i .framer-1ypsmqc, .framer-acf6i .framer-7229ef, .framer-acf6i .framer-6spn31, .framer-acf6i .framer-r5m2gn, .framer-acf6i .framer-o30t9k, .framer-acf6i .framer-6izsxd, .framer-acf6i .framer-1m9wz22, .framer-acf6i .framer-16jflii, .framer-acf6i .framer-jiaxih, .framer-acf6i .framer-ekmajx, .framer-acf6i .framer-dwn7cm { gap: 0px; } .framer-acf6i .framer-35pigc > *, .framer-acf6i .framer-2mhuhb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-acf6i .framer-35pigc > :first-child, .framer-acf6i .framer-2mhuhb > :first-child, .framer-acf6i .framer-1p9ji1 > :first-child, .framer-acf6i .framer-12ipv62 > :first-child, .framer-acf6i .framer-1ypsmqc > :first-child, .framer-acf6i .framer-7229ef > :first-child, .framer-acf6i .framer-6spn31 > :first-child, .framer-acf6i .framer-r5m2gn > :first-child, .framer-acf6i .framer-o30t9k > :first-child, .framer-acf6i .framer-6izsxd > :first-child, .framer-acf6i .framer-1m9wz22 > :first-child, .framer-acf6i .framer-16jflii > :first-child, .framer-acf6i .framer-jiaxih > :first-child, .framer-acf6i .framer-ekmajx > :first-child, .framer-acf6i .framer-dwn7cm > :first-child { margin-top: 0px; } .framer-acf6i .framer-35pigc > :last-child, .framer-acf6i .framer-2mhuhb > :last-child, .framer-acf6i .framer-1p9ji1 > :last-child, .framer-acf6i .framer-12ipv62 > :last-child, .framer-acf6i .framer-1ypsmqc > :last-child, .framer-acf6i .framer-7229ef > :last-child, .framer-acf6i .framer-6spn31 > :last-child, .framer-acf6i .framer-r5m2gn > :last-child, .framer-acf6i .framer-o30t9k > :last-child, .framer-acf6i .framer-6izsxd > :last-child, .framer-acf6i .framer-1m9wz22 > :last-child, .framer-acf6i .framer-16jflii > :last-child, .framer-acf6i .framer-jiaxih > :last-child, .framer-acf6i .framer-ekmajx > :last-child, .framer-acf6i .framer-dwn7cm > :last-child { margin-bottom: 0px; } .framer-acf6i .framer-1p9ji1 > *, .framer-acf6i .framer-6spn31 > *, .framer-acf6i .framer-dwn7cm > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-acf6i .framer-12ipv62 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-acf6i .framer-1ypsmqc > *, .framer-acf6i .framer-7229ef > *, .framer-acf6i .framer-1m9wz22 > *, .framer-acf6i .framer-16jflii > *, .framer-acf6i .framer-jiaxih > *, .framer-acf6i .framer-ekmajx > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-acf6i .framer-r5m2gn > *, .framer-acf6i .framer-o30t9k > *, .framer-acf6i .framer-6izsxd > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6939\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WbIAW4sv9\":{\"layout\":[\"fixed\",\"auto\"]},\"J7_hi1gLw\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-acf6i\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6939,width:1200};addFonts(FrameraugiA20Il,[{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\"}]},...SmoothScrollFonts,...NavigationFonts,...ButtonFonts,...TickerFonts,...IllustrationFonts,...TestimonialCardFonts,...LinkFonts,...AccordionFonts,...BlogCardFonts,...DownloadNowFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"6939\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WbIAW4sv9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"J7_hi1gLw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "qnCAAgY,IAAMA,GAAqB,IAAUC,GAAsB,CAAC,KAAKC,GAAQ,eAAeA,OAAY,MAAMA,GAAQ,cAAcA,OAAY,IAAIA,GAAQ,eAAeA,OAAY,OAAOA,GAAQ,cAAcA,MAAW,EAAQC,GAA8B,OAAO,UAAY,KAAa,OAAO,UAAU,UAAU,oBAAqB,WAS/rB,SAARC,GAAwBC,EAAM,CAAY,GAAG,CAAC,MAAAC,EAAM,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,MAAAC,EAAM,YAAAC,EAAY,UAAAC,EAAU,UAAAC,EAAU,cAAAC,EAAc,YAAAC,EAAY,MAAAC,EAAK,EAAEf,EAAW,CAAC,YAAAgB,EAAY,SAAAC,EAAS,UAAAC,EAAU,UAAAC,GAAU,UAAAC,EAAS,EAAEN,EAAiB,CAAC,UAAAO,EAAU,WAAAC,CAAU,EAAET,EAAoBU,GAAanB,EAAe,GAAGC,OAAgBC,OAAkBC,OAAmBC,MAAgB,GAAGL,MAA8BqB,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAC5fC,GAAczB,EAAM,OAAO,OAAO,EAAQ0B,EAAYC,GAAS,MAAMF,EAAa,EAAQG,EAAYF,EAAY,EAAKhB,IAAY,KAAMA,EAAU,QAAQ,IAAMmB,GAAanB,IAAY,QAAQA,IAAY,QAAcd,GAAOkC,GAAe,CAAC,EAAQC,GAAYpC,GAAsBe,CAAS,EAAQsB,GAAUC,GAAarC,GAAOmC,EAAW,EAA4BG,GAAUC,EAAO,IAAI,EAAQC,EAAYC,GAAQ,IAAW,CAAcC,GAAU,EAAeA,GAAU,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,EAAkBC,GAAe,CAAC,EAAMC,GAAc,CAAC,EAA2BC,GAAY,EAAMC,GAAQ,EAAKtB,IAAUqB,GAAYlB,EAAY,KAAK,MAAM,GAAGA,CAAW,EAAE,EAAEmB,GAAQ,GAAM,CAACtB,GAAUK,GAAaW,EAAK,SAAQK,GAAY,KAAK,MAAML,EAAK,OAAOA,EAAK,SAAS,CAAC,EAAE,EAAEK,GAAY,KAAK,IAAIA,GAAYlD,EAAoB,EAAEmD,GAAQ,GAAiC,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAGnB,GAAaM,GAAU,QAAQ,CAAC,IAAMc,EAAanB,GAAaK,GAAU,QAAQ,YAAYA,GAAU,QAAQ,aAAmBe,EAAMb,EAAY,CAAC,EAAE,QAAQP,GAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,UAAU,EAAkMc,GAAtLd,EAAY,CAAC,EAAE,QAAQP,GAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,YAAYA,EAAY,CAAC,EAAE,QAAQ,UAAUA,EAAY,CAAC,EAAE,QAAQ,aAAa,GAA2Ba,EAAMhD,EAAIuC,GAAQ,CAAC,OAAOQ,EAAa,SAASE,CAAc,CAAC,EAAG,EAAE,CAAC,CAAC,EAAQC,GAAe5B,EAAS,CAAC,kBAAkB,MAAM,EAAE,CAAC,EAAwC,GAAGK,EAAY,CAChkD,GAAG,CAACL,EAAS,CAGE,IAAI6B,EAAcjB,EAAO,EAAI,EAAEkB,GAAU,KAAKC,GAAM,KAAKR,EAAO,EAASS,GAAOrB,GAAU,QAAQ,CAAC,CAAC,YAAAsB,CAAW,IAAI,CAAI,CAACJ,EAAc,UAAUI,EAAY,OAAOA,EAAY,SAASF,GAAM,KAAKR,EAAO,EAAGM,EAAc,QAAQ,EAAM,CAAC,GAAI,CAAC,CAAC,EAAGV,GAAef,GAAS,IAAIF,GAAc,CAACgC,EAAMC,IAAQ,CAAC,IAAIC,EAAaC,EAAcC,EAAcC,EAAc,IAAIC,EAAOL,IAAQ,IAAGK,EAAI3B,EAAY,CAAC,GAAMsB,IAAQjC,GAAc,OAAO,IAAGsC,EAAI3B,EAAY,CAAC,GAAG,IAAMG,GAAK,CAAC,MAAMnB,GAAWuC,EAAaF,EAAM,SAAS,MAAME,IAAe,OAAO,OAAOA,EAAa,MAAM,OAAO,OAAOtC,GAAYuC,EAAcH,EAAM,SAAS,MAAMG,IAAgB,OAAO,OAAOA,EAAc,OAAO,MAAM,EAAE,OAAoBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,IAAID,EAAI,MAAMxB,GAAK,SAAsB2B,GAAaT,EAAM,CAAC,MAAM,CAAC,IAAII,EAAcJ,EAAM,SAAS,MAAMI,IAAgB,OAAO,OAAOA,EAAc,MAAM,GAAGtB,GAAK,WAAW,EAAE,GAAGY,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAaC,EAAM,MAAS,GAAGI,EAAcL,EAAM,SAAS,MAAMK,IAAgB,OAAO,OAAOA,EAAc,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAG,GAAG,CAACvC,EAAU,QAAQ4C,EAAE,EAAEA,EAAEvB,GAAYuB,IAAKxB,GAAc,CAAC,GAAGA,GAAc,GAAGhB,GAAS,IAAIF,GAAc,CAACgC,EAAMW,IAAa,CAAC,IAAIT,EAAaC,EAAcC,EAAcC,EAAcO,GAAcC,GAAc,IAAM/B,GAAK,CAAC,MAAMnB,GAAWuC,EAAaF,EAAM,SAAS,MAAME,IAAe,OAAO,OAAOA,EAAa,MAAM,OAAO,OAAOtC,GAAYuC,EAAcH,EAAM,SAAS,MAAMG,IAAgB,OAAO,OAAOA,EAAc,OAAO,OAAO,WAAW,WAAW,EAAE,OAAoBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,MAAMzB,GAAK,cAAc,GAAK,SAAsB2B,GAAaT,EAAM,CAAC,IAAIU,EAAE,IAAIC,EAAW,MAAM,CAAC,IAAIP,EAAcJ,EAAM,SAAS,MAAMI,IAAgB,OAAO,OAAOA,EAAc,MAAM,MAAMzC,GAAW0C,EAAcL,EAAM,SAAS,MAAMK,IAAgB,OAAO,OAAOA,EAAc,MAAM,OAAO,OAAOzC,GAAYgD,GAAcZ,EAAM,SAAS,MAAMY,KAAgB,OAAO,OAAOA,GAAc,OAAO,OAAO,WAAW,EAAE,GAAGlB,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,SAASU,EAAE,MAAS,GAAGG,GAAcb,EAAM,SAAS,MAAMa,KAAgB,OAAO,OAAOA,GAAc,QAAQ,CAAC,EAAEH,EAAE,KAAKC,CAAU,CAAC,EAAED,EAAE,KAAKC,CAAU,CAAE,CAAC,CAAC,EAAI,IAAMG,EAAehC,EAAK,SAASA,EAAK,SAAS,KAAK,MAAMA,EAAK,OAAOA,EAAK,QAAQ,EAAQiC,GAAYrC,EAAO,IAAI,EAAQsC,GAAStC,EAAO,IAAI,EAAQuC,GAAKvC,EAAO,CAAC,EAAQwC,GAAQxC,EAAO,EAAK,EAAQyC,GAAgBC,GAAiB,EAAQC,GAAQ3C,EAAO,IAAI,EAAQ4C,EAAa5C,EAAO,IAAI,EAE7lF,GAAG,CAACZ,EAAS,CAAC,IAAMyD,EAASC,GAAU/C,EAAS,EAEzCrC,IAA+BwD,GAAU,IAAI,CAAC,GAAG,EAAAuB,IAAiB,CAACL,GAAgB,CAAC/D,GAAe,OAAAuE,EAAa,QAAQD,GAAQ,QAAQ,QAAQ,CAAC,UAAU,CAAC/C,GAAY,CAAC,EAAEA,GAAYwC,CAAc,CAAC,CAAC,EAAE,CAAC,SAAS,KAAK,IAAIA,CAAc,EAAE/D,EAAM,IAAI,WAAW,IAAS,OAAO,QAAQ,CAAC,EAAQ,IAAIuE,EAAa,QAAQ,OAAO,CAAE,EAAE,CAACtE,EAAY8D,EAAe/D,CAAK,CAAC,EACtX6C,GAAU,IAAI,CAAK0B,EAAa,UAAkBC,GAAUD,EAAa,QAAQ,YAAY,SAAUA,EAAa,QAAQ,KAAK,EAAW,CAACC,GAAUD,EAAa,QAAQ,YAAY,WAAWA,EAAa,QAAQ,MAAM,EAAG,EAAE,CAACC,CAAQ,CAAC,GAG9NE,GAAkBC,GAAG,CAAC,GAAG,CAACZ,GAAgBK,IAAiB/E,GAA+B,OAKnF2E,GAAY,UAAU,OAAMA,GAAY,QAAQW,GAAGA,EAAEA,EAAEX,GAAY,QAAqE,IAAIY,GAAjDX,GAAS,UAAU,KAAK,EAAEU,EAAEV,GAAS,UAA6BjE,EAAM,KAAQmE,GAAQ,UAASS,GAAO3E,GAAaiE,GAAK,SAASU,EAAMV,GAAK,QAAQW,GAAK,EAAEd,EAAeG,GAAK,OAAO,EAAED,GAAS,QAAQU,EAAMH,GAAgBpF,GAAO,IAAI8E,GAAK,OAAO,CAAE,CAAC,EAAe,IAAMY,GAAczD,GAAa,WAAW,YAAkB0D,GAAetE,EAAU,EAAQuE,GAAa,IAAIvE,EAAU,EAAQwE,GAAeC,GAAMxE,GAAU,EAAEqE,EAAc,EAAQI,GAAa,IAAIzE,GAAgB0E,GAAS,mBAAmBN,qBAAgCnE,OAAcsE,yBAAqCF,yBAAqCC,sBAAgCrE,OAAcwE,OAAkC,OAAI/D,EAAkWoC,EAAK,UAAU,CAAC,MAAM,CAAC,GAAG6B,GAAe,QAAQhD,GAAQ,gBAAgB9B,EAAY6E,GAAS,OAAU,aAAa7E,EAAY6E,GAAS,OAAU,UAAU7E,EAAY6E,GAAS,OAAU,SAAS5E,EAAS,UAAU,SAAS,QAAQM,EAAY,EAAE,IAAIY,GAAU,SAAsB4D,EAAMC,EAAO,GAAG,CAAC,IAAIjB,GAAQ,MAAM,CAAC,GAAGe,GAAe,IAAI5F,EAAI,IAAIS,IAAY,UAAUsF,GAAczB,CAAc,EAAE,CAACA,EAAe,OAAU,KAAK7D,IAAY,SAASsF,GAAczB,CAAc,EAAE,CAACA,EAAe,OAAU,WAAW5D,EAAU,SAAS,WAAW,cAAckB,GAAa,MAAM,SAAS,GAAGf,GAAM,WAAWS,EAAS,OAAO,YAAY,UAAU1B,GAA8BkC,GAAY,CAAC,EAAEC,EAAS,EAAE,aAAa,IAAI,CAAC2C,GAAQ,QAAQ,GAAQI,EAAa,UACz5DA,EAAa,QAAQ,aAAatE,EAAa,EAAE,aAAa,IAAI,CAACkE,GAAQ,QAAQ,GAASI,EAAa,UACzGA,EAAa,QAAQ,aAAa,EAAG,EAAE,SAAS,CAACrC,GAAeC,EAAa,CAAC,CAAC,CAAC,CAAC,EAF6wBmD,EAAM,UAAU,CAAC,MAAMG,GAAkB,SAAS,CAAcjC,EAAK,MAAM,CAAC,MAAMkC,GAAY,SAAS,QAAG,CAAC,EAAelC,EAAK,IAAI,CAAC,MAAMmC,GAAY,SAAS,oBAAoB,CAAC,EAAenC,EAAK,IAAI,CAAC,MAAMoC,GAAe,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAErjC,CAAyBtG,GAAO,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,cAAc,CAAC,UAAU,GAAK,WAAW,EAAI,EAAE,YAAY,CAAC,YAAY,GAAK,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,UAAU,EAAI,EAAyBuG,GAAoBvG,GAAO,CAAC,MAAM,CAAC,KAAKwG,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,IAAI,KAAK,IAAI,eAAe,GAAK,KAAK,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAgB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,aAAa,OAAO,wBAAwB,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKuG,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKuG,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKuG,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKuG,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,YAAY,8CAA8C,CAAC,CAAC,EAA0B,IAAMT,GAAe,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAAoBI,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,EAAgDV,GAAM,CAACa,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAAQT,GAAcU,GAAO,OAAOA,GAAQ,UAAU,CAAC,MAAMA,CAAK,EC7Bh5G,IAAAC,GAAA,GAAAC,GAAAD,GAAA,wBAAAE,GAAA,OAAAC,KAAO,IAAMC,GAAG,iFACHC,GAAqB,CAAC,QAAU,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECA2tB,IAAMC,GAASC,EAASC,EAAG,EAAQC,GAAUF,EAASG,EAAI,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAkO,IAAMC,GAAiB,CAAC,UAAUC,EAAe,EAAE,SAASC,GAAkBC,EAAIC,EAAO,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAOF,CAAG,EAAE,GAAGG,EAAO,OAAOA,EAAQF,EAAOA,EAAO,SAAU,CAAC,IAAMG,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAkBF,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBG,GAAW,CAAC,CAAC,MAAAH,EAAM,SAAAI,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWR,GAAmCK,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,YAAAC,EAAY,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,KAAAC,EAAK,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAM,MAAM,CAAC,GAAGF,EAAM,WAAWC,EAAKH,GAAmCE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,QAAQ,WAAWC,EAAMT,GAAqDO,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,cAAc,UAAUL,GAAgCG,EAAM,UAAU,UAAUJ,GAAmCI,EAAM,SAAS,CAAE,EAAQG,GAAuB,CAACH,EAAMI,IAAeJ,EAAM,iBAAwBI,EAAS,KAAK,GAAG,EAAEJ,EAAM,iBAAwBI,EAAS,KAAK,GAAG,EAAUC,GAA6BC,GAAW,SAASN,EAAMO,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,GAAGC,CAAS,EAAE3B,GAASQ,CAAK,EAAO,CAAC,YAAAoB,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAAvB,CAAQ,EAAEwB,GAAgB,CAAC,eAAe,YAAY,QAAAd,EAAQ,kBAAAe,EAAiB,CAAC,EAAQC,EAAiB3B,GAAuBH,EAAMI,CAAQ,EAAQ2B,GAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,GAAsB,CAAavB,GAAuBA,EAAS,EAAQwB,EAAkBC,GAAqB,EAAE,IAAIC,EAAmB,OAAoBlD,EAAKmD,EAAY,CAAC,GAAG1B,GAA4CoB,EAAgB,SAAsB7C,EAAKC,GAAS,CAAC,QAAQe,EAAS,QAAQ,GAAM,SAAsBhB,EAAKR,GAAW,CAAC,MAAMF,GAAY,SAAsB8D,EAAMlD,EAAO,IAAI,CAAC,GAAG6B,EAAU,GAAGI,EAAgB,UAAUkB,GAAGC,GAAkB,GAAGP,GAAsB,iBAAiBvB,EAAUS,CAAU,EAAE,mBAAmB,YAAY,iBAAiBS,EAAiB,SAAS,YAAY,IAAIvB,GAA6BwB,GAAK,MAAM,CAAC,GAAGpB,CAAK,EAAE,SAAS,CAAcvB,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAAwFR,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,MAAmEA,GAAkB,OAAQ,QAAQ,GAAGzD,GAAkBoC,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,EAAE,UAAU,eAAe,mBAAmB,aAAa,iBAAiBe,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBU,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBwC,EAAiB,SAAS,YAAY,SAAS,CAAc1C,EAAKyD,EAA0B,CAAC,OAAO,GAAG,GAAgET,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,GAAG,EAAE,SAAsBhD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBwC,EAAiB,SAAS,sBAAsB,SAAsB1C,EAAK0D,GAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,OAAO,UAAU,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1D,EAAKyD,EAA0B,CAAC,OAAO,GAAG,GAAgET,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,GAAG,EAAE,SAAsBhD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBwC,EAAiB,SAAS,sBAAsB,SAAsB1C,EAAK0D,GAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,OAAO,UAAU,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeN,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBwC,EAAiB,SAAS,YAAY,SAAS,CAAcU,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBwC,EAAiB,SAAS,YAAY,SAAS,CAAc1C,EAAK2D,EAAS,CAAC,sBAAsB,GAAK,SAAsB3D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBwC,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKd,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe5B,EAAK2D,EAAS,CAAC,sBAAsB,GAAK,SAAsB3D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBwC,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,YAAY,QAAQ,EAAE,EAAE,KAAKb,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe7B,EAAKyD,EAA0B,CAAC,OAAO,GAAG,GAAgET,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,EAAE,IAAI,SAAsBhD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBwC,EAAiB,SAAS,sBAAsB,SAAsB1C,EAAK4D,GAAK,CAAC,UAAU,OAAO,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU9B,EAAU,UAAU,GAAK,WAAWoB,EAAmBjE,GAAkB,KAAKmC,CAAY,KAAK,MAAM8B,IAAqB,OAAOA,EAAmB,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQW,GAAI,CAAC,kFAAkF,kFAAkF,4QAA4Q,4UAA4U,mRAAmR,0LAA0L,sRAAsR,mRAAmR,kMAAkM,wyCAAwyC,GAAeA,GAAI,GAAgBA,EAAG,EASn8VC,GAAgBC,GAAQ9C,GAAU4C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,YAAYA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,UAAU,CAAC,MAAM,QAAQ,KAAKI,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,QAAQ,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,cAAc,gBAAgB,GAAM,MAAM,cAAc,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,CAAC,CAAC,EAAE,GAAGM,GAAS,GAAGC,GAAU,GAAGC,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECVlwE,IAAIC,GACAC,GAAgBC,IACbF,KAsBHA,GArBiBE,EAAM,WAAW,SAAmB,CACnD,MAAAC,EACA,QAAAC,EACA,GAAGC,CACL,EAAGC,EAAQ,CACT,OAAuBJ,EAAM,cAAc,MAAO,OAAO,OAAO,CAC9D,MAAO,6BACP,QAAS,YACT,KAAM,eACN,cAAe,OACf,YAAa,OACb,IAAKI,EACL,kBAAmBF,CACrB,EAAGC,CAAK,EAAGF,EAAwBD,EAAM,cAAc,QAAS,CAC9D,GAAIE,CACN,EAAGD,CAAK,EAAI,KAAsBD,EAAM,cAAc,OAAQ,CAC5D,EAAG,uJACL,CAAC,EAAmBA,EAAM,cAAc,OAAQ,CAC9C,EAAG,gQACL,CAAC,CAAC,CACJ,CAAC,GAGIF,IC1B6e,IAAMO,GAAS,CAAC,cAAc,sBAAsB,aAAa,sBAAsB,kBAAkB,YAAY,kBAAkB,gBAAgB,oBAAoB,iBAAiB,gBAAgB,YAAY,kBAAkB,uBAAuB,gBAAgB,gBAAgB,iBAAiB,cAAc,YAAY,aAAa,mBAAmB,iBAAiB,iBAAiB,kBAAkB,eAAe,oBAAoB,kBAAkB,UAAU,gBAAgB,cAAc,kBAAkB,uBAAuB,eAAe,cAAc,iBAAiB,iBAAiB,kBAAkB,eAAe,mBAAmB,oBAAoB,kBAAkB,eAAe,WAAW,YAAY,WAAW,YAAY,QAAQ,QAAQ,kBAAkB,mBAAmB,kBAAkB,QAAQ,gBAAgB,cAAc,WAAW,aAAa,YAAY,SAAS,OAAO,YAAY,YAAY,aAAa,OAAO,YAAY,WAAW,WAAW,gBAAgB,iBAAiB,YAAY,SAAS,kBAAkB,iBAAiB,kBAAkB,qBAAqB,OAAO,aAAa,WAAW,eAAe,SAAS,WAAW,iBAAiB,WAAW,iBAAiB,sBAAsB,qBAAqB,QAAQ,aAAa,cAAc,oBAAoB,oBAAoB,qBAAqB,kBAAkB,cAAc,cAAc,eAAe,YAAY,gBAAgB,cAAc,YAAY,oBAAoB,QAAQ,QAAQ,iBAAiB,eAAe,cAAc,oBAAoB,MAAM,YAAY,YAAY,cAAc,kBAAkB,UAAU,aAAa,OAAO,kBAAkB,sBAAsB,iBAAiB,eAAe,gBAAgB,gBAAgB,cAAc,kBAAkB,oBAAoB,oBAAoB,eAAe,WAAW,oBAAoB,kBAAkB,mBAAmB,gBAAgB,oBAAoB,gBAAgB,eAAe,eAAe,qBAAqB,mBAAmB,WAAW,eAAe,oBAAoB,sBAAsB,MAAM,aAAa,WAAW,YAAY,YAAY,OAAO,cAAc,OAAO,OAAO,SAAS,kBAAkB,cAAc,aAAa,aAAa,UAAU,SAAS,MAAM,OAAO,UAAU,WAAW,gBAAgB,qBAAqB,oBAAoB,aAAa,gBAAgB,cAAc,UAAU,QAAQ,OAAO,aAAa,iBAAiB,QAAQ,iBAAiB,aAAa,oBAAoB,MAAM,WAAW,WAAW,YAAY,OAAO,aAAa,aAAa,WAAW,kBAAkB,uBAAuB,sBAAsB,MAAM,SAAS,YAAY,aAAa,QAAQ,cAAc,aAAa,OAAO,cAAc,YAAY,WAAW,aAAa,gBAAgB,YAAY,QAAQ,cAAc,SAAS,eAAe,QAAQ,qBAAqB,oBAAoB,aAAa,QAAQ,OAAO,aAAa,YAAY,OAAO,aAAa,YAAY,QAAQ,uBAAuB,UAAU,cAAc,SAAS,qBAAqB,YAAY,QAAQ,iBAAiB,gBAAgB,iBAAiB,iBAAiB,eAAe,MAAM,QAAQ,WAAW,SAAS,cAAc,QAAQ,cAAc,oBAAoB,cAAc,eAAe,SAAS,cAAc,WAAW,cAAc,eAAe,eAAe,iBAAiB,aAAa,cAAc,OAAO,OAAO,aAAa,MAAM,SAAS,aAAa,MAAM,SAAS,QAAQ,SAAS,QAAQ,KAAK,OAAO,aAAa,YAAY,YAAY,WAAW,QAAQ,WAAW,cAAc,mBAAmB,cAAc,mBAAmB,SAAS,OAAO,SAAS,SAAS,oBAAoB,UAAU,QAAQ,OAAO,EAAQC,GAAc,mCAAyCC,GAAsBF,GAAS,OAAO,CAACG,EAAIC,KAAOD,EAAIC,EAAI,YAAY,CAAC,EAAEA,EAAWD,GAAM,CAAC,CAAC,EAQ11I,SAASE,EAAKC,EAAM,CAAC,GAAK,CAAC,MAAAC,EAAM,aAAAC,EAAa,WAAAC,EAAW,cAAAC,EAAc,QAAAC,EAAQ,YAAAC,EAAY,UAAAC,EAAU,aAAAC,EAAa,aAAAC,EAAa,SAAAC,CAAQ,EAAEV,EAAYW,EAAUC,EAAO,EAAK,EAAQC,EAAQC,GAAiBpB,GAASQ,EAAaC,EAAWC,EAAcR,EAAqB,EACrR,CAACmB,EAAaC,CAAe,EAAEC,GAASJ,IAAU,OAAOK,GAAYC,EAAK,EAAE,IAAI,EACrF,eAAeC,IAAc,CAC7B,GAAG,CAA4D,IAAMC,GAAO,MAAM,OAA1D,GAAG1B,KAAgBkB,eAAyFF,EAAU,SAAQK,EAAgBK,GAAO,QAAQF,EAAK,CAAC,CAAE,MAAC,CAASR,EAAU,SAAQK,EAAgB,IAAI,CAAE,CAAC,CAChPM,GAAU,KAAKX,EAAU,QAAQ,GAAKS,GAAa,EAAQ,IAAI,CAACT,EAAU,QAAQ,EAAM,GAAI,CAACE,CAAO,CAAC,EAAgE,IAAMU,EAAnDC,GAAa,QAAQ,IAAIA,GAAa,OAAgDC,EAAKC,GAAU,CAAC,CAAC,EAAE,KAAK,OAAoBD,EAAKE,EAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,QAAAtB,EAAQ,aAAAG,EAAa,aAAAC,EAAa,YAAAH,EAAY,UAAAC,EAAU,SAASQ,EAA0BU,EAAKV,EAAa,CAAC,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,UAAUL,EAAS,eAAe,MAAS,EAAE,MAAMT,CAAK,CAAC,EAAEsB,CAAU,CAAC,CAAE,CAACxB,EAAK,YAAY,OAAOA,EAAK,aAAa,CAAC,MAAM,GAAG,OAAO,GAAG,cAAc,OAAO,WAAW,OAAO,MAAM,OAAO,aAAa,GAAK,SAAS,EAAK,EAAE6B,GAAoB7B,EAAK,CAAC,aAAa,CAAC,KAAK8B,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,SAAS,aAAa9B,EAAK,aAAa,YAAY,EAAE,cAAc,CAAC,KAAK8B,EAAY,KAAK,QAAQnC,GAAS,aAAaK,EAAK,aAAa,cAAc,MAAM,OAAO,OAAO,CAAC,CAAC,aAAAG,CAAY,IAAI,CAACA,EAAa,YAAY,iEAAiE,EAAE,WAAW,CAAC,KAAK2B,EAAY,OAAO,MAAM,OAAO,YAAY,wBAAmB,OAAO,CAAC,CAAC,aAAA3B,CAAY,IAAIA,CAAY,EAAE,SAAS,CAAC,KAAK2B,EAAY,QAAQ,aAAa,MAAM,cAAc,KAAK,aAAa9B,EAAK,aAAa,QAAQ,EAAE,MAAM,CAAC,KAAK8B,EAAY,MAAM,MAAM,QAAQ,aAAa9B,EAAK,aAAa,KAAK,EAAE,GAAG+B,EAAa,CAAC,ECXlpB,IAAMC,GAAUC,EAASC,CAAI,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAE,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWN,GAAOG,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,MAAM,YAAY,MAAM,WAAW,EAAQC,GAAS,CAAC,CAAC,QAAAC,EAAQ,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,MAAAC,EAAM,SAAAC,EAAS,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUJ,GAAOI,EAAM,UAAU,UAAUF,GAAUE,EAAM,WAAW,iBAAiB,UAAUP,GAASO,EAAM,WAAW,oLAAoL,QAAQT,GAAwBS,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUH,GAAOG,EAAM,WAAW,MAAM,GAAUC,GAAuB,CAACD,EAAM3B,IAAe2B,EAAM,iBAAwB3B,EAAS,KAAK,GAAG,EAAE2B,EAAM,iBAAwB3B,EAAS,KAAK,GAAG,EAAU6B,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAnC,EAAQ,UAAAoC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEvB,GAASQ,CAAK,EAAO,CAAC,YAAAgB,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAAlD,CAAQ,EAAEmD,GAAgB,CAAC,WAAAxD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQuD,EAAiBxB,GAAuBD,EAAM3B,CAAQ,EAAmFqD,EAAkBC,GAAG1D,GAAkB,GAA5F,CAAawC,GAAuBA,EAAS,CAAuE,EAAQmB,GAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAkBC,GAAqB,EAAE,OAAoB9C,EAAK+C,EAAY,CAAC,GAAGxB,GAAUoB,EAAgB,SAAsB3C,EAAKC,GAAS,CAAC,QAAQf,EAAS,QAAQ,GAAM,SAAsBc,EAAKR,GAAW,CAAC,MAAMH,GAAY,SAAsB2D,EAAM9C,EAAO,IAAI,CAAC,GAAG0B,EAAU,GAAGI,EAAgB,UAAUQ,GAAGD,EAAkB,gBAAgBjB,EAAUQ,CAAU,EAAE,mBAAmB,QAAQ,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,GAAKwB,GAAK,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,4QAA4Q,GAAGpB,CAAK,EAAE,GAAGrC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAE6C,EAAYI,CAAc,EAAE,SAAS,CAAce,EAAM9C,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoC,EAAiB,SAAS,YAAY,SAAS,CAActC,EAAKiD,EAA0B,CAAC,SAAsBjD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBoC,EAAiB,SAAS,sBAAsB,SAAsBtC,EAAKpB,EAAK,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,OAAO,cAAc,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoB,EAAKiD,EAA0B,CAAC,SAAsBjD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBoC,EAAiB,SAAS,sBAAsB,SAAsBtC,EAAKpB,EAAK,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,OAAO,cAAc,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoB,EAAKiD,EAA0B,CAAC,SAAsBjD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBoC,EAAiB,SAAS,sBAAsB,SAAsBtC,EAAKpB,EAAK,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,OAAO,cAAc,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoB,EAAKiD,EAA0B,CAAC,SAAsBjD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBoC,EAAiB,SAAS,sBAAsB,SAAsBtC,EAAKpB,EAAK,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,OAAO,cAAc,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoB,EAAKiD,EAA0B,CAAC,SAAsBjD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBoC,EAAiB,SAAS,sBAAsB,SAAsBtC,EAAKpB,EAAK,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,OAAO,cAAc,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoB,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,mLAAmL,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBoC,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,qEAAqE,6BAA6B,KAAK,EAAE,KAAKd,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAewB,EAAM9C,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoC,EAAiB,SAAS,YAAY,SAAS,CAActC,EAAKmD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQC,GAA2BP,GAAmB,GAAG,GAAG,GAAG,GAAG,EAAE,EAAE,MAAM,OAAO,GAAGvD,GAAkBqC,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,EAAE,UAAU,gBAAgB,iBAAiBW,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,EAAE,GAAGtD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQoE,GAA2BP,GAAmB,GAAG,GAAG,GAAG,GAAG,EAAE,EAAE,MAAM,OAAO,GAAGvD,GAAkBqC,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,CAAC,EAAEE,EAAYI,CAAc,CAAC,CAAC,EAAee,EAAM9C,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoC,EAAiB,SAAS,YAAY,SAAS,CAActC,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBoC,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKb,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAezB,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBoC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKZ,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ2B,GAAI,CAAC,kFAAkF,kFAAkF,8PAA8P,kRAAkR,qUAAqU,sPAAsP,gRAAgR,uOAAuO,wRAAwR,8jCAA8jC,kEAAkE,GAAeA,GAAI,GAAgBA,EAAG,EAS77ZC,GAAgBC,GAAQxC,GAAUsC,GAAI,cAAc,EAASG,EAAQF,GAAgBA,GAAgB,YAAY,mBAAmBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,QAAQ,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,oLAAoL,gBAAgB,GAAM,MAAM,UAAU,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,OAAO,gBAAgB,GAAM,MAAM,OAAO,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,iBAAiB,gBAAgB,GAAM,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,eAAe,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,GAAG5E,GAAU,GAAGkF,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT9zE,IAAMC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,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,GAAWC,EAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,WAAW,YAAY,eAAe,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,QAAQ,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMtB,IAAesB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAU0B,GAA6BC,GAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAA3C,CAAQ,EAAE4C,GAAgB,CAAC,WAAAjD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQgD,EAAiBpB,GAAuBH,EAAMtB,CAAQ,EAAQ8C,GAAWC,EAAO,IAAI,EAAQC,GAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBvC,EAAKwC,EAAY,CAAC,GAAGnB,GAA4Cc,GAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGoB,EAAU,GAAGI,EAAgB,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,GAAG,EAAE,UAAUe,GAAG1D,GAAkB,GAAGsD,EAAsB,iBAAiBjB,EAAUI,CAAU,EAAE,mBAAmB,eAAe,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6BkB,GAAK,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGd,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEsC,EAAYI,CAAc,EAAE,SAAsB3B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,MAAM,IAAI,yFAAyF,OAAO,wKAAwK,EAAE,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBV,EAAiB,SAAS,YAAY,GAAG/C,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,MAAM,IAAI,wFAAwF,OAAO,sKAAsK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,MAAM,IAAI,wFAAwF,OAAO,sKAAsK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,MAAM,IAAI,wFAAwF,OAAO,sKAAsK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,MAAM,IAAI,wFAAwF,OAAO,sKAAsK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,MAAM,IAAI,sFAAsF,OAAO,kKAAkK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,MAAM,IAAI,yFAAyF,OAAO,wKAAwK,CAAC,CAAC,EAAEsC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQgB,GAAI,CAAC,kFAAkF,kFAAkF,0TAA0T,8KAA8K,+WAA+W,oWAAoW,EAQvwPC,GAAgBC,GAAQhC,GAAU8B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,eAAeA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,eAAe,WAAW,UAAU,YAAY,YAAY,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRnhB,IAAMM,GAAiB,CAAC,UAAU,IAAIC,GAAU,IAAI,OAAO,4BAAkB,CAAC,CAAC,EAAiB,SAARC,EAAmCC,EAAIC,EAAO,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAO,KAAK,EAAEF,CAAG,EAAE,GAAGG,EAAM,OAAOA,EAAOF,EAAOA,EAAO,SAAU,CAAC,SAASG,GAAQH,EAAO,CAAC,IAAMI,EAAS,CAAC,EAAE,KAAMJ,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMI,EAAQJ,EAAO,QAAQ,EAAKI,GAAQD,EAAS,KAAKC,CAAO,EAAGL,EAAOA,EAAO,SAAU,GAAGI,EAAS,OAAO,EAAE,OAAO,QAAQ,IAAIA,CAAQ,CAAE,CAAQ,SAASE,GAA0BN,EAAO,CAAC,IAAMO,EAAeJ,GAAQH,CAAM,EAAE,GAAGO,EAAe,MAAMA,CAAe,CCAu4C,IAAMC,GAAkBC,EAASC,EAAY,EAAQC,GAAgBF,EAASG,EAAU,EAAQC,GAAYJ,EAASK,EAAM,EAAQC,GAAYN,EAASO,EAAM,EAAQC,GAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAkBX,EAASY,EAAY,EAAQC,GAAqBb,EAASc,CAAe,EAAQC,GAAUf,EAASgB,EAAI,EAAQC,GAAejB,EAASkB,EAAS,EAAQC,GAAcnB,EAASoB,EAAQ,EAAQC,GAAiBrB,EAASsB,EAAW,EAAQC,GAAYvB,EAASwB,EAAM,EAAQC,GAAY,CAAC,UAAU,qBAAqB,UAAU,6CAA6C,UAAU,qBAAqB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAASA,GAAiB,EAAQC,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAA6BC,GAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAQc,GAAU,IAAI,CAAC,IAAMC,EAAUrB,GAAiB,OAAUY,CAAY,EAAE,GAAGS,EAAU,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAU,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAU,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,GAAI,EAAE,CAAC,OAAUV,CAAY,CAAC,EAAQW,GAAmB,IAAI,CAAC,IAAMF,EAAUrB,GAAiB,OAAUY,CAAY,EAAqC,GAAnC,SAAS,MAAMS,EAAU,OAAO,GAAMA,EAAU,SAAS,CAAC,IAAIG,GAAyBA,EAAwB,SAAS,cAAc,uBAAuB,KAAK,MAAMA,IAA0B,QAAcA,EAAwB,aAAa,UAAUH,EAAU,QAAQ,EAAG,IAAMI,GAAQJ,EAAU,cAAc,GAAGI,GAAQ,CAAC,IAAMC,GAAK,SAAS,KAAKA,GAAK,UAAU,QAAQC,IAAGA,GAAE,WAAW,cAAc,GAAGD,GAAK,UAAU,OAAOC,EAAC,CAAC,EAAED,GAAK,UAAU,IAAI,GAAGL,EAAU,4BAA4B,EAAG,MAAM,IAAI,CAAII,IAAQ,SAAS,KAAK,UAAU,OAAO,GAAGJ,EAAU,4BAA4B,CAAE,CAAE,EAAE,CAAC,OAAUT,CAAY,CAAC,EAAE,GAAK,CAACgB,EAAYC,CAAmB,EAAEC,GAA8BZ,EAAQ5B,GAAY,EAAK,EAAQyC,EAAe,OAAgBC,EAAWC,EAAO,IAAI,EAAQC,EAAUC,GAAkB,WAAW,EAAQC,EAAWH,EAAO,IAAI,EAAEI,GAA0BzB,CAAY,EAAE,IAAM0B,GAAWH,GAAkB,WAAW,EAAQI,EAAWN,EAAO,IAAI,EAAQO,EAAWL,GAAkB,WAAW,EAAQM,EAAWR,EAAO,IAAI,EAAQS,GAAY,IAASnD,GAAU,EAAiBqC,IAAc,YAAtB,GAAmEe,GAAa,IAASpD,GAAU,EAAiBqC,IAAc,YAAtB,GAAmEgB,EAAWT,GAAkB,WAAW,EAAQU,EAAWZ,EAAO,IAAI,EAAQa,GAAWX,GAAkB,WAAW,EAAQY,EAAWd,EAAO,IAAI,EAAQe,GAAWb,GAAkB,WAAW,EAAQc,EAAWhB,EAAO,IAAI,EAAQiB,EAAWf,GAAkB,WAAW,EAAQgB,GAAWlB,EAAO,IAAI,EAAQmB,GAAOC,GAAU,EAAQC,GAAWnB,GAAkB,WAAW,EAAQoB,GAAWtB,EAAO,IAAI,EAAQuB,GAAsBC,GAAM,EAAQC,EAAsB,CAAa1C,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,EAAE2C,GAAiB,CAAC,CAAC,EAAE,IAAIC,EAAmBC,GAAoBC,GAAoBC,GAAoBC,GAAoBC,GAAoBC,GAAoBC,GAAoBC,EAAoBC,GAAoBC,GAAqBC,GAAqBC,GAAqBC,GAAqBC,GAAqBC,EAAqBC,GAAqBC,GAAqBC,GAAqBC,GAAqBC,GAAqBC,GAAqBC,EAAqBC,EAAqBC,EAAqBC,EAAqBC,EAAqBC,EAAqBC,EAAqBC,GAAqBC,GAAqBC,GAAqB,OAAoBC,EAAKC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAApG,EAAiB,EAAE,SAAsBqG,EAAMC,EAAY,CAAC,GAAG9E,GAA4CuC,GAAgB,SAAS,CAAcsC,EAAMvH,EAAO,IAAI,CAAC,GAAG4C,EAAU,UAAU6E,GAAGxG,GAAkB,GAAGkE,EAAsB,gBAAgB1C,CAAS,EAAE,IAAIL,GAA6BqB,EAAK,MAAM,CAAC,GAAGjB,CAAK,EAAE,SAAS,CAAc6E,EAAKK,EAA0B,CAAC,SAAsBL,EAAKM,EAAU,CAAC,UAAU,0BAA0B,SAAsBN,EAAK9H,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,GAAG,SAAS,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8H,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,GAAG,CAAC,EAAE,SAAsBgE,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBL,EAAKM,EAAU,CAAC,UAAU,0BAA0B,SAAsBN,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBgE,EAAK5H,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4H,EAAK,SAAS,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,GAAG1D,EAAU,KAAK,eAAe,IAAIE,EAAK,SAAsBwD,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,YAAY,SAAsBE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,KAAK,eAAe,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcF,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUgC,EAAmBwC,EAAkB,KAAKxF,CAAY,KAAK,MAAMgD,IAAqB,OAAOA,EAAgCgC,EAAWS,EAAS,CAAC,SAAsBT,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAUzC,GAAoBuC,EAAkB,KAAKxF,CAAY,KAAK,MAAMiD,KAAsB,OAAOA,GAAiC+B,EAAWS,EAAS,CAAC,SAAsBT,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAUxC,GAAoBsC,EAAkB,KAAKxF,CAAY,KAAK,MAAMkD,KAAsB,OAAOA,GAAiC8B,EAAWS,EAAS,CAAC,SAAsBT,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,6IAA6I,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,GAAG,CAAC,EAAE,SAAsBgE,EAAKK,EAA0B,CAAC,OAAO,GAAG,SAAsBL,EAAKM,EAAU,CAAC,UAAU,0BAA0B,SAAsBN,EAAK1H,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,WAAW6F,GAAoBqC,EAAkB,KAAKxF,CAAY,KAAK,MAAMmD,KAAsB,OAAOA,GAAoB,eAAe,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ2E,EAA0B,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,yBAAyB,IAAI,qEAAqE,OAAO,sKAAsK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,yBAAyB,IAAI,qEAAqE,OAAO,sKAAsK,CAAC,CAAC,EAAE,SAAsBX,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,0BAA0B,IAAI,qEAAqE,OAAO,sKAAsK,EAAE,UAAU,gBAAgB,SAAsBZ,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ2E,EAA0B,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBX,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeZ,EAAKK,EAA0B,CAAC,SAAsBL,EAAKM,EAAU,CAAC,UAAU,0BAA0B,GAAG5D,GAAW,IAAIC,EAAK,SAAsBqD,EAAKxH,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,IAAI,OAAO,OAAO,YAAY,EAAE,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAc0H,EAAMvH,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcqH,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAUtC,GAAoBoC,EAAkB,KAAKxF,CAAY,KAAK,MAAMoD,KAAsB,OAAOA,GAAiC4B,EAAWS,EAAS,CAAC,SAAsBT,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,qCAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAUrC,GAAoBmC,EAAkB,KAAKxF,CAAY,KAAK,MAAMqD,KAAsB,OAAOA,GAAiC2B,EAAWS,EAAS,CAAC,SAAsBT,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,sCAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAUpC,GAAoBkC,EAAkB,KAAKxF,CAAY,KAAK,MAAMsD,KAAsB,OAAOA,GAAiC0B,EAAWS,EAAS,CAAC,SAAsBT,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,sCAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKvH,GAAgB,CAAC,kBAAkB,CAAC,WAAWsB,EAAW,EAAE,sBAAsB,GAAM,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,GAAG4C,EAAW,KAAK,cAAc,IAAIC,EAAK,SAAsBmD,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,KAAK,eAAe,SAAS,CAAcF,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAUnC,GAAoBiC,EAAkB,KAAKxF,CAAY,KAAK,MAAMuD,KAAsB,OAAOA,GAAiCyB,EAAWS,EAAS,CAAC,SAAsBT,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAUlC,EAAoBgC,EAAkB,KAAKxF,CAAY,KAAK,MAAMwD,IAAsB,OAAOA,EAAiCwB,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,sLAAsL,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcF,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ2E,EAA0B,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,OAAO,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBX,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,OAAO,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeZ,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAUjC,GAAoB+B,EAAkB,KAAKxF,CAAY,KAAK,MAAMyD,KAAsB,OAAOA,GAAiCuB,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,mGAAmG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ2E,EAA0B,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,CAAC,CAAC,EAAE,SAAsBX,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE9D,GAAY,GAAgBkD,EAAK,MAAM,CAAC,UAAU,8BAA8B,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcF,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ2E,EAA0B,IAAI,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,OAAO,UAAU,SAAS,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBX,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,IAAI,UAAU,OAAO,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAeZ,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAUhC,GAAqB8B,EAAkB,KAAKxF,CAAY,KAAK,MAAM0D,KAAuB,OAAOA,GAAkCsB,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,sGAAsG,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ2E,EAA0B,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,CAAC,CAAC,EAAE,SAAsBX,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeZ,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcF,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ2E,EAA0B,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,OAAO,UAAU,SAAS,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBX,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,OAAO,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeZ,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAU/B,GAAqB6B,EAAkB,MAAMxF,CAAY,KAAK,MAAM2D,KAAuB,OAAOA,GAAkCqB,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,+FAA+F,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ2E,EAA0B,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,wFAAwF,OAAO,qKAAqK,CAAC,CAAC,EAAE,SAAsBX,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,wFAAwF,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE7D,GAAa,GAAgBiD,EAAK,MAAM,CAAC,UAAU,+BAA+B,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAsBA,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ2E,EAA0B,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,yBAAyB,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBX,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,+CAA+C,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAMzH,GAAgB,CAAC,kBAAkB,CAAC,WAAWsB,EAAW,EAAE,sBAAsB,GAAM,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,GAAGgD,EAAW,KAAK,eAAe,IAAIC,EAAK,SAAS,CAAc+C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAU9B,GAAqB4B,EAAkB,MAAMxF,CAAY,KAAK,MAAM4D,KAAuB,OAAOA,GAAkCoB,EAAWS,EAAS,CAAC,SAAsBT,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAAcF,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAU7B,GAAqB2B,EAAkB,MAAMxF,CAAY,KAAK,MAAM6D,KAAuB,OAAOA,GAAkCmB,EAAWS,EAAS,CAAC,SAAsBT,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,iCAAiC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAU5B,GAAqB0B,EAAkB,MAAMxF,CAAY,KAAK,MAAM8D,KAAuB,OAAOA,GAAkCkB,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,+CAA+C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,qBAAqB,EAAE,IAAI,EAAE,UAAU,CAAC,OAAO,IAAI,MAAM,oBAAoB,CAAC,EAAE,SAAsBgE,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,sBAAsB,SAAsBL,EAAKM,EAAU,CAAC,UAAU,0BAA0B,SAAsBN,EAAKnH,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqH,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAAcF,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAU3B,EAAqByB,EAAkB,MAAMxF,CAAY,KAAK,MAAM+D,IAAuB,OAAOA,EAAkCiB,EAAWS,EAAS,CAAC,SAAsBT,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,6BAA6B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAU1B,GAAqBwB,EAAkB,MAAMxF,CAAY,KAAK,MAAMgE,KAAuB,OAAOA,GAAkCgB,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,6CAA6C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,qBAAqB,EAAE,IAAI,EAAE,UAAU,CAAC,OAAO,IAAI,MAAM,oBAAoB,CAAC,EAAE,SAAsBgE,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,sBAAsB,SAAsBL,EAAKM,EAAU,CAAC,UAAU,2BAA2B,SAAsBN,EAAKnH,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqH,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAAcF,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAUzB,GAAqBuB,EAAkB,MAAMxF,CAAY,KAAK,MAAMiE,KAAuB,OAAOA,GAAkCe,EAAWS,EAAS,CAAC,SAAsBT,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,kCAAkC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAUxB,GAAqBsB,EAAkB,MAAMxF,CAAY,KAAK,MAAMkE,KAAuB,OAAOA,GAAkCc,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,oDAAoD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,qBAAqB,EAAE,IAAI,EAAE,UAAU,CAAC,OAAO,IAAI,MAAM,oBAAoB,CAAC,EAAE,SAAsBgE,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,sBAAsB,SAAsBL,EAAKM,EAAU,CAAC,UAAU,2BAA2B,SAAsBN,EAAKnH,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqH,EAAMzH,GAAgB,CAAC,kBAAkB,CAAC,WAAWsB,EAAW,EAAE,sBAAsB,GAAM,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,GAAGkD,GAAW,KAAK,SAAS,IAAIC,EAAK,SAAS,CAAc6C,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAUvB,GAAqBqB,EAAkB,MAAMxF,CAAY,KAAK,MAAMmE,KAAuB,OAAOA,GAAkCa,EAAWS,EAAS,CAAC,SAAsBT,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAsBE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcF,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,EAAE,IAAI,EAAE,UAAU,CAAC,OAAO,GAAG,CAAC,EAAE,SAAsBgE,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBL,EAAKM,EAAU,CAAC,UAAU,2BAA2B,SAAsBN,EAAKnH,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqH,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAAcF,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAUtB,GAAqBoB,EAAkB,MAAMxF,CAAY,KAAK,MAAMoE,KAAuB,OAAOA,GAAkCY,EAAWS,EAAS,CAAC,SAAsBT,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAUrB,GAAqBmB,EAAkB,MAAMxF,CAAY,KAAK,MAAMqE,KAAuB,OAAOA,GAAkCW,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,yDAAyD,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcF,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,EAAE,IAAI,EAAE,UAAU,CAAC,OAAO,GAAG,CAAC,EAAE,SAAsBgE,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBL,EAAKM,EAAU,CAAC,UAAU,0BAA0B,SAAsBN,EAAKnH,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqH,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAAcF,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAUpB,EAAqBkB,EAAkB,MAAMxF,CAAY,KAAK,MAAMsE,IAAuB,OAAOA,EAAkCU,EAAWS,EAAS,CAAC,SAAsBT,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAUnB,EAAqBiB,EAAkB,MAAMxF,CAAY,KAAK,MAAMuE,IAAuB,OAAOA,EAAkCS,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,2DAA2D,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcF,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,EAAE,IAAI,EAAE,UAAU,CAAC,OAAO,GAAG,CAAC,EAAE,SAAsBgE,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBL,EAAKM,EAAU,CAAC,UAAU,0BAA0B,SAAsBN,EAAKnH,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqH,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAAcF,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAUlB,EAAqBgB,EAAkB,MAAMxF,CAAY,KAAK,MAAMwE,IAAuB,OAAOA,EAAkCQ,EAAWS,EAAS,CAAC,SAAsBT,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAUjB,EAAqBe,EAAkB,MAAMxF,CAAY,KAAK,MAAMyE,IAAuB,OAAOA,EAAkCO,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,8CAA8C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcF,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,EAAE,IAAI,EAAE,UAAU,CAAC,OAAO,GAAG,CAAC,EAAE,SAAsBgE,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBL,EAAKM,EAAU,CAAC,UAAU,2BAA2B,SAAsBN,EAAKnH,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqH,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAAcF,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAUhB,EAAqBc,EAAkB,MAAMxF,CAAY,KAAK,MAAM0E,IAAuB,OAAOA,EAAkCM,EAAWS,EAAS,CAAC,SAAsBT,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAUf,EAAqBa,EAAkB,MAAMxF,CAAY,KAAK,MAAM2E,IAAuB,OAAOA,EAAkCK,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,+CAA+C,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,KAAK,eAAe,SAAS,CAAcF,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAUd,EAAqBY,EAAkB,MAAMxF,CAAY,KAAK,MAAM4E,IAAuB,OAAOA,EAAkCI,EAAWS,EAAS,CAAC,SAAsBT,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,qBAAqB,EAAE,IAAI,EAAE,UAAU,CAAC,MAAM,8BAA8B,CAAC,EAAE,SAAsBgE,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,gCAAgC,SAAsBL,EAAKM,EAAU,CAAC,UAAU,0BAA0B,SAAsBN,EAAKjH,EAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUkB,GAAY,CAAC,IAAI,sEAAsE,OAAO,oQAAoQ,EAAE,EAAE,EAAE,SAAS,YAAY,UAAU,iBAAiB,UAAU,qmBAA4G,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+F,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,qBAAqB,EAAE,IAAI,EAAE,UAAU,CAAC,MAAM,8BAA8B,CAAC,EAAE,SAAsBgE,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,gCAAgC,SAAsBL,EAAKM,EAAU,CAAC,UAAU,2BAA2B,SAAsBN,EAAKjH,EAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUkB,GAAY,CAAC,IAAI,oEAAoE,OAAO,yVAAyV,EAAE,EAAE,EAAE,SAAS,YAAY,UAAU,iBAAiB,UAAU,6bAAqF,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+F,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,qBAAqB,EAAE,IAAI,EAAE,UAAU,CAAC,MAAM,8BAA8B,CAAC,EAAE,SAAsBgE,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,gCAAgC,SAAsBL,EAAKM,EAAU,CAAC,UAAU,0BAA0B,SAAsBN,EAAKjH,EAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUkB,GAAY,CAAC,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,EAAE,EAAE,SAAS,YAAY,UAAU,iBAAiB,UAAU,iGAAiG,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiG,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,qBAAqB,EAAE,IAAI,EAAE,UAAU,CAAC,MAAM,8BAA8B,CAAC,EAAE,SAAsBgE,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,gCAAgC,SAAsBL,EAAKM,EAAU,CAAC,UAAU,0BAA0B,SAAsBN,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBgE,EAAKjH,EAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUkB,GAAY,CAAC,IAAI,uEAAuE,OAAO,uQAAuQ,EAAE,EAAE,EAAE,SAAS,YAAY,UAAU,iBAAiB,UAAU,6XAAuE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+F,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,qBAAqB,EAAE,IAAI,EAAE,UAAU,CAAC,MAAM,8BAA8B,CAAC,EAAE,SAAsBgE,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,gCAAgC,SAAsBL,EAAKM,EAAU,CAAC,UAAU,0BAA0B,SAAsBN,EAAKjH,EAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUkB,GAAY,CAAC,IAAI,sEAAsE,OAAO,6bAA6b,EAAE,EAAE,EAAE,SAAS,YAAY,UAAU,iBAAiB,UAAU,qwBAAwK,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+F,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,qBAAqB,EAAE,IAAI,EAAE,UAAU,CAAC,MAAM,8BAA8B,CAAC,EAAE,SAAsBgE,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,gCAAgC,SAAsBL,EAAKM,EAAU,CAAC,UAAU,0BAA0B,SAAsBN,EAAKjH,EAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUkB,GAAY,CAAC,IAAI,uEAAuE,OAAO,uQAAuQ,EAAE,EAAE,EAAE,SAAS,YAAY,UAAU,iBAAiB,UAAU,wIAAwI,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiG,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,qBAAqB,EAAE,IAAI,EAAE,UAAU,CAAC,MAAM,8BAA8B,CAAC,EAAE,SAAsBgE,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,gCAAgC,SAAsBL,EAAKM,EAAU,CAAC,UAAU,0BAA0B,SAAsBN,EAAKjH,EAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUkB,GAAY,CAAC,IAAI,sEAAsE,OAAO,6bAA6b,EAAE,EAAE,EAAE,SAAS,YAAY,UAAU,iBAAiB,UAAU,oVAA4D,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+F,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,qBAAqB,EAAE,IAAI,EAAE,UAAU,CAAC,MAAM,8BAA8B,CAAC,EAAE,SAAsBgE,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,gCAAgC,SAAsBL,EAAKM,EAAU,CAAC,UAAU,0BAA0B,SAAsBN,EAAKjH,EAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUkB,GAAY,CAAC,IAAI,uEAAuE,OAAO,qWAAqW,EAAE,EAAE,EAAE,SAAS,YAAY,UAAU,iBAAiB,UAAU,y/BAA2L,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+F,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,qBAAqB,EAAE,IAAI,EAAE,UAAU,CAAC,MAAM,8BAA8B,CAAC,EAAE,SAAsBgE,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,gCAAgC,SAAsBL,EAAKM,EAAU,CAAC,UAAU,0BAA0B,SAAsBN,EAAKjH,EAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUkB,GAAY,CAAC,IAAI,uEAAuE,OAAO,uQAAuQ,EAAE,EAAE,EAAE,SAAS,YAAY,UAAU,iBAAiB,UAAU,6fAAmG,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiG,EAAMzH,GAAgB,CAAC,kBAAkB,CAAC,WAAWsB,EAAW,EAAE,sBAAsB,GAAM,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,GAAGoD,GAAW,KAAK,OAAO,IAAIC,EAAK,SAAS,CAAc6C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcF,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAUb,GAAqBW,EAAkB,MAAMxF,CAAY,KAAK,MAAM6E,KAAuB,OAAOA,GAAkCG,EAAWS,EAAS,CAAC,SAAsBT,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,KAAK,CAAC,EAAE,SAAsBgE,EAAKK,EAA0B,CAAC,OAAO,GAAG,SAAsBL,EAAKM,EAAU,CAAC,UAAU,2BAA2B,SAAsBN,EAAK/G,GAAK,CAAC,WAAW6G,GAAqBU,EAAkB,MAAMxF,CAAY,KAAK,MAAM8E,KAAuB,OAAOA,GAAqB,WAAW,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,qBAAqB,EAAE,KAAK,EAAE,UAAU,CAAC,MAAM,oBAAoB,CAAC,EAAE,SAAsBgE,EAAKK,EAA0B,CAAC,OAAO,KAAK,MAAM,sBAAsB,SAAsBL,EAAKM,EAAU,CAAC,UAAU,0BAA0B,SAAsBN,EAAK7G,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+G,EAAMzH,GAAgB,CAAC,kBAAkB,CAAC,WAAWsB,EAAW,EAAE,sBAAsB,GAAM,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,GAAGsD,EAAW,KAAK,eAAe,IAAIC,GAAK,SAAS,CAAcyC,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,UAAUX,GAAqBS,EAAkB,MAAMxF,CAAY,KAAK,MAAM+E,KAAuB,OAAOA,GAAkCC,EAAWS,EAAS,CAAC,SAAsBT,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKa,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4B,CAAC,IAAI9C,EAAmBC,GAAoBC,GAAoB,OAAO8B,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,qBAAqB,EAAE,KAAK,EAAE,UAAU,CAAC,MAAM,wBAAwB,CAAC,EAAE,SAAsBgE,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsBL,EAAKM,EAAU,CAAC,UAAU,0BAA0B,SAAsBN,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,WAAWgC,EAAmBwC,EAAkB,MAAMxF,CAAY,KAAK,MAAMgD,IAAqB,OAAOA,EAAmB,wHAAwH,UAAU8C,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsBd,EAAK3G,GAAS,CAAC,WAAW4E,GAAoBuC,EAAkB,MAAMxF,CAAY,KAAK,MAAMiD,KAAsB,OAAOA,GAAoB,2CAA2C,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,WAAWC,GAAoBsC,EAAkB,MAAMxF,CAAY,KAAK,MAAMkD,KAAsB,OAAOA,GAAoB,uHAAuH,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU4C,EAAc,CAAC,EAAE,MAAM,OAAO,UAAU7G,GAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+F,EAAKvH,GAAgB,CAAC,kBAAkB,CAAC,WAAWsB,EAAW,EAAE,sBAAsB,GAAM,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,GAAG0D,GAAW,KAAK,eAAe,IAAIC,GAAK,SAAsBqC,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,yBAAyB,EAAE,KAAK,EAAE,UAAU,CAAC,MAAM,wBAAwB,CAAC,EAAE,SAAsBgE,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,0BAA0B,SAAsBL,EAAKM,EAAU,CAAC,UAAU,2BAA2B,SAAsBN,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBgE,EAAKzG,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyG,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,KAAK,CAAC,EAAE,SAAsBgE,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBL,EAAKM,EAAU,CAAC,UAAU,2BAA2B,SAAsBN,EAAKO,EAAkB,CAAC,WAAWvE,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBgE,EAAKvG,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuG,EAAK,MAAM,CAAC,UAAUI,GAAGxG,GAAkB,GAAGkE,CAAqB,EAAE,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiD,GAAI,CAAC,kFAAkF,IAAI3G,GAAS,gJAAgJ,gFAAgF,qVAAqV,yLAAyL,idAAid,+SAA+S,wcAAwc,iRAAiR,mRAAmR,2UAA2U,+UAA+U,gRAAgR,iHAAiH,yGAAyG,wQAAwQ,6SAA6S,4QAA4Q,qRAAqR,qQAAqQ,6RAA6R,8uBAA8uB,gRAAgR,2SAA2S,sTAAsT,+lBAA+lB,6YAA6Y,oUAAoU,iRAAiR,2QAA2Q,0cAA0c,8KAA8K,oVAAoV,6UAA6U,mRAAmR,oUAAoU,wUAAwU,gXAAgX,sPAAsP,mRAAmR,4SAA4S,qiBAAqiB,+RAA+R,2WAA2W,kPAAkP,uSAAuS,+UAA+U,2SAA2S,mRAAmR,oHAAoH,2RAA2R,4QAA4Q,mJAAmJ,qRAAqR,qHAAqH,6pWAA6pW,wDAAwDA,GAAS,u8GAAu8G,gCAAgCA,GAAS,kvKAAkvK,GAAe2G,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,EAAG,EASl42FC,GAAgBC,GAAQpG,GAAUkG,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGhJ,GAAkB,GAAGG,GAAgB,GAAGE,GAAY,GAAGE,GAAY,GAAGK,GAAkB,GAAGE,GAAqB,GAAGE,GAAU,GAAGE,GAAe,GAAGE,GAAc,GAAGE,GAAiB,GAAGE,GAAY,GAAG4H,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACx2E,IAAMC,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,sBAAwB,OAAO,yBAA2B,OAAO,oCAAsC,4JAA0L,qBAAuB,OAAO,sBAAwB,IAAI,uBAAyB,GAAG,yBAA2B,QAAQ,6BAA+B,MAAM,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "P0rRpVz6w_0_exports", "__export", "__FramerMetadata__", "v0", "v0", "__FramerMetadata__", "TagFonts", "getFonts", "fsM9WIqH9_default", "LinkFonts", "Q5kh09LwU_default", "serializationHash", "variantClassNames", "valuesByLocaleId", "P0rRpVz6w_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "description", "height", "id", "image", "link", "title", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "yb8UF3M_d", "gwlp3nzDh", "LHxcJtLoA", "vpYRXhjtq", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "fsM9WIqH9_default", "RichText2", "Q5kh09LwU_default", "css", "FramerP0rRpVz6w", "withCSS", "P0rRpVz6w_default", "addPropertyControls", "ControlType", "addFonts", "TagFonts", "LinkFonts", "getFontsFromSharedStyle", "fonts", "Component", "Home_default", "React", "title", "titleId", "props", "svgRef", "iconKeys", "moduleBaseUrl", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "Home_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "defaultEvents", "HeroFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "content", "height", "id", "image", "name1", "platform", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Oz8GrRdeD", "WK4Op76Ui", "li0LeYq3P", "JmMjNsOxw", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FrameruFr8_B4MH", "withCSS", "uFr8_B4MH_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", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "Image2", "css", "FramerXLYQxiIQD", "withCSS", "XLYQxiIQD_default", "addPropertyControls", "ControlType", "addFonts", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "SmoothScrollFonts", "getFonts", "SmoothScroll", "NavigationFonts", "FdKw2tah_default", "ButtonFonts", "fVta_LUbW_default", "TickerFonts", "Ticker", "MotionDivWithFX", "withFX", "motion", "IllustrationFonts", "XLYQxiIQD_default", "TestimonialCardFonts", "uFr8_B4MH_default", "LinkFonts", "Q5kh09LwU_default", "AccordionFonts", "caetojpWY_default", "BlogCardFonts", "P0rRpVz6w_default", "DownloadNowFonts", "sj9exvyqZ_default", "FooterFonts", "qh5GVNxPA_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "addImageAlt", "image", "alt", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "usePreloadLocalizedValues", "elementId1", "ref3", "elementId2", "ref4", "isDisplayed", "isDisplayed1", "elementId3", "ref5", "elementId4", "ref6", "elementId5", "ref7", "elementId6", "ref8", "router", "useRouter", "elementId7", "ref9", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "_getLocalizedValue16", "_getLocalizedValue17", "_getLocalizedValue18", "_getLocalizedValue19", "_getLocalizedValue20", "_getLocalizedValue21", "_getLocalizedValue22", "_getLocalizedValue23", "_getLocalizedValue24", "_getLocalizedValue25", "_getLocalizedValue26", "_getLocalizedValue27", "_getLocalizedValue28", "_getLocalizedValue29", "_getLocalizedValue30", "_getLocalizedValue31", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "getLocalizedValue", "x", "RichText2", "getLoadingLazyAtYPosition", "Image2", "ResolveLinks", "resolvedLinks", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
