{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js", "ssg:https://framerusercontent.com/modules/t3p3wNUJu642xd5hSVu5/IJPLAOaXTbscc9gwh5ia/iyjw79Qxc.js", "ssg:https://framerusercontent.com/modules/RUexKNbWvrB0HY8GR7mM/UyXdVgDYmoJjJKVa2wFA/Text_Color_Animation_1.js", "ssg:https://framerusercontent.com/modules/BMEnXTNYO0eyp3UwOt0A/DOds4ZsjNzuUX4WabZTg/Text_Color_Animation_2.js", "ssg:https://framerusercontent.com/modules/ztWh7IZtRLuMsM4D02t3/pyv2Vr7nToiz8Y1faVAX/Text_Color_Animation_3.js", "ssg:https://framerusercontent.com/modules/xw4zXHH0PzNgvBbfiVgj/d1mtI6hH3CW4tV8aY50V/Text_Color_Animation_4.js", "ssg:https://framerusercontent.com/modules/yBkY06fAioxl1YKuVQNp/6N07PYFR7mO4dRGOMzhK/Text_Color_Animation.js", "ssg:https://framerusercontent.com/modules/hZba63m8F5Z6WDinRjn9/KI47d4z4EW1BsQfQWs18/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 MAX_AREA=5e6;const CSS_VAR_NAME=\"--ticker-offset\";const supportsWaapi=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";let supportsRegisterProperty=true;if(typeof window!==\"undefined\"){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){supportsRegisterProperty=false;}}/**\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 axis=isHorizontal?\"X\":\"Y\";const minus=direction===\"left\"||direction===\"top\"?\"-\":\"\";const transform=useTransform(()=>`translate${axis}(${minus}${offset.get()}px)`);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null,childrenArea: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;}const fullChildrenArea=size.childrenArea===null?null:size.childrenArea*(duplicateBy+1);const isLayerTooBig=fullChildrenArea===null?null:fullChildrenArea>MAX_AREA;/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const[firstChild,lastChild]=childrenRef;const childrenLeft=firstChild.current?firstChild.current.offsetLeft:0;const childrenRight=lastChild.current?lastChild.current.offsetLeft+lastChild.current.offsetWidth:0;const childrenTop=firstChild.current?firstChild.current.offsetTop:0;const childrenBottom=lastChild.current?lastChild.current.offsetTop+lastChild.current.offsetHeight:0;const childrenWidth=childrenRight-childrenLeft;const childrenHeight=childrenBottom-childrenTop;const childrenArea=childrenWidth*childrenHeight;const childrenLength=(isHorizontal?childrenWidth:childrenHeight)+gap;setSize({parent:parentLength,children:childrenLength,childrenArea});}},[]);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)})},index+\"-original\");});}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:isLayerTooBig===true?\"auto\":\"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(supportsWaapi&&(!isLayerTooBig||isLayerTooBig&&supportsRegisterProperty)){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed||isLayerTooBig===null){return;}if(isLayerTooBig){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){}}/**\n                 * If the layer is too big we want to animate a CSS variable instead of the transform\n                 * to avoid promoting the layer to the GPU.\n                 */const keyframes=isLayerTooBig?{[CSS_VAR_NAME]:[\"0px\",`${minus}${animateToValue}px`]}:{transform:[`translate${axis}(0px)`,`translate${axis}(${minus}${animateToValue}px)`]};animationRef.current=listRef.current.animate(keyframes,{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed,isLayerTooBig]);// 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||supportsWaapi){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||isLayerTooBig?\"auto\":\"transform\",transform:supportsWaapi?isLayerTooBig?`translate${axis}(var(${CSS_VAR_NAME}))`:\"none\":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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (4ba8877)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/8lAybsgGF8oXGDE4byES/p4iTctVdScWj4phX5AY8/IKpw7apex.js\";const cycleOrder=[\"ujBYBnyBU\",\"LHnhc4YdG\"];const serializationHash=\"framer-T8vQR\";const variantClassNames={LHnhc4YdG:\"framer-v-xf9o65\",ujBYBnyBU:\"framer-v-9kaw4x\"};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:40,delay:0,mass:1,stiffness:400,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.create(React.Fragment);const humanReadableVariantMap={Closed:\"ujBYBnyBU\",Open:\"LHnhc4YdG\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"ujBYBnyBU\",W88zB8mIG:(_ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref2!==void 0?_ref2:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,W88zB8mIG,T8rQFvSBR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ujBYBnyBU\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap9xwb83=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"LHnhc4YdG\");});const onTap6g7vd0=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"ujBYBnyBU\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"LHnhc4YdG\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-9kaw4x\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ujBYBnyBU\",onTap:onTap9xwb83,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.15)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(10px)\",...style},...addPropertyOverrides({LHnhc4YdG:{\"data-framer-name\":\"Open\",onTap:onTap6g7vd0}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16nbt5j\",\"data-framer-name\":\"Question\",layoutDependency:layoutDependency,layoutId:\"i9iOVAlCL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1aolpk1\",\"data-styles-preset\":\"IKpw7apex\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4aeeaa4b-46e6-4fce-8549-44f0960b791c, rgba(255, 255, 255, 0.76)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1mn4zfp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QI2CofAZi\",style:{\"--extracted-r6o4lv\":\"var(--token-4aeeaa4b-46e6-4fce-8549-44f0960b791c, rgba(255, 255, 255, 0.76))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n4vbjg\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"luuD9MEs0\",style:{rotate:0},variants:{LHnhc4YdG:{rotate:90}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-elt9k7\",layoutDependency:layoutDependency,layoutId:\"AWpTr9cWg\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18ojka0\",\"data-framer-name\":\"Ellipse\",layoutDependency:layoutDependency,layoutId:\"msLmfKRN8\",style:{borderBottomLeftRadius:500,borderBottomRightRadius:500,borderTopLeftRadius:500,borderTopRightRadius:500,filter:\"blur(70px)\",WebkitFilter:\"blur(70px)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1clnlgw\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"Dt_JhS7FE\",style:{background:\"conic-gradient(from 0deg at 50% 50%, #343A40 0deg, hsl(0, 0%, 100%) 118.37837837837837deg, hsl(0, 20%, 98%) 162.16216216216213deg)\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"}})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xxerll\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"UpXxo1F5J\",style:{opacity:0},variants:{LHnhc4YdG:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1aolpk1\",\"data-styles-preset\":\"IKpw7apex\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f15315ac-b41a-43ec-bd08-0120f2f478b3, rgb(255, 255, 255)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1wfymgv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uq662hsaH\",style:{\"--extracted-r6o4lv\":\"var(--token-f15315ac-b41a-43ec-bd08-0120f2f478b3, rgb(255, 255, 255))\",opacity:.6},text:T8rQFvSBR,variants:{LHnhc4YdG:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-T8vQR.framer-loff93, .framer-T8vQR .framer-loff93 { display: block; }\",\".framer-T8vQR.framer-9kaw4x { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-T8vQR .framer-16nbt5j { -webkit-user-select: none; 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: flex-start; overflow: visible; padding: 20px; position: relative; user-select: none; width: 100%; }\",\".framer-T8vQR .framer-1mn4zfp { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-T8vQR .framer-1n4vbjg { flex: none; height: 16px; overflow: hidden; position: relative; width: 16px; z-index: 1; }\",\".framer-T8vQR .framer-elt9k7 { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-T8vQR .framer-18ojka0 { flex: none; height: 400px; left: -376px; overflow: visible; position: absolute; top: -141px; width: 400px; z-index: 1; }\",\".framer-T8vQR .framer-1clnlgw { flex: none; height: 300px; left: calc(50.00000000000002% - 300px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 300px / 2); width: 300px; will-change: var(--framer-will-change-override, transform); }\",\".framer-T8vQR .framer-1xxerll { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 20px; position: relative; width: 100%; }\",\".framer-T8vQR .framer-1wfymgv { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-T8vQR.framer-9kaw4x, .framer-T8vQR .framer-16nbt5j, .framer-T8vQR .framer-1xxerll { gap: 0px; } .framer-T8vQR.framer-9kaw4x > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-T8vQR.framer-9kaw4x > :first-child, .framer-T8vQR .framer-1xxerll > :first-child { margin-top: 0px; } .framer-T8vQR.framer-9kaw4x > :last-child, .framer-T8vQR .framer-1xxerll > :last-child { margin-bottom: 0px; } .framer-T8vQR .framer-16nbt5j > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-T8vQR .framer-16nbt5j > :first-child { margin-left: 0px; } .framer-T8vQR .framer-16nbt5j > :last-child { margin-right: 0px; } .framer-T8vQR .framer-1xxerll > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-T8vQR.framer-v-xf9o65.framer-9kaw4x { gap: 20px; }\",\".framer-T8vQR.framer-v-xf9o65 .framer-16nbt5j { padding: 20px 20px 0px 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-T8vQR.framer-v-xf9o65.framer-9kaw4x { gap: 0px; } .framer-T8vQR.framer-v-xf9o65.framer-9kaw4x > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-T8vQR.framer-v-xf9o65.framer-9kaw4x > :first-child { margin-top: 0px; } .framer-T8vQR.framer-v-xf9o65.framer-9kaw4x > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-T8vQR[data-border=\"true\"]::after, .framer-T8vQR [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 112\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"LHnhc4YdG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Frameriyjw79Qxc=withCSS(Component,css,\"framer-T8vQR\");export default Frameriyjw79Qxc;Frameriyjw79Qxc.displayName=\"Row Copy 2\";Frameriyjw79Qxc.defaultProps={height:112,width:400};addPropertyControls(Frameriyjw79Qxc,{variant:{options:[\"ujBYBnyBU\",\"LHnhc4YdG\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(Frameriyjw79Qxc,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameriyjw79Qxc\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LHnhc4YdG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./iyjw79Qxc.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef}from\"react\";import{motion,useAnimation}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";export default function TextColorAnimation({text,fontSize,fontFamily,fontWeight,textAlign,color01,color02,Duration,delay,replays}){const controls=useAnimation();const textRef=useRef();useEffect(()=>{const observer=new IntersectionObserver(async([entry])=>{if(entry.isIntersecting){await new Promise(resolve=>setTimeout(resolve,delay*1e3))// delay before animation starts\n;controls.start(\"visible\");}else if(!entry.isIntersecting&&replays){controls.start(\"hidden\");}});observer.observe(textRef.current);return()=>observer.disconnect();},[Duration,controls,color01,delay,replays]);return /*#__PURE__*/_jsx(\"div\",{style:{fontSize:`${fontSize}px`,fontFamily:fontFamily,fontWeight:fontWeight,width:\"100%\",whiteSpace:\"nowrap\",color:color01,textAlign:textAlign},ref:textRef,children:/*#__PURE__*/_jsxs(\"span\",{style:{position:\"relative\",display:\"inline-block\"},children:[text,/*#__PURE__*/_jsx(motion.span,{style:{position:\"absolute\",overflow:\"hidden\",whiteSpace:\"nowrap\",color:color02,top:0,left:0,width:\"0%\"},animate:controls,initial:{width:\"0%\"},variants:{visible:{width:\"100%\"},hidden:{width:\"0%\"}},transition:{duration:Duration},children:text})]})});}addPropertyControls(TextColorAnimation,{text:{type:ControlType.String,defaultValue:\"Hello, World!\"},fontSize:{type:ControlType.Number,defaultValue:16,min:1,max:200,unit:\"px\"},fontFamily:{type:ControlType.String,defaultValue:\"Arial\"},fontWeight:{type:ControlType.Enum,defaultValue:\"400\",options:[\"100\",\"200\",\"300\",\"400\",\"500\",\"600\",\"700\",\"800\",\"900\"]},textAlign:{title:\"Text Align\",type:ControlType.Enum,displaySegmentedControl:true,optionTitles:[\"Left\",\"Center\",\"Right\"],options:[\"left\",\"center\",\"right\"]},color01:{title:\"Color 01\",type:ControlType.Color,defaultValue:\"#333\"},color02:{title:\"Color 02\",type:ControlType.Color,defaultValue:\"#fff\"},Duration:{type:ControlType.Number,defaultValue:1,min:.1,max:10,step:.1},delay:{title:\"Delay\",type:ControlType.Number,defaultValue:0,min:0,max:10,step:.1},replays:{title:\"Replays\",type:ControlType.Boolean,defaultValue:true}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TextColorAnimation\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Text_Color_Animation_1.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef}from\"react\";import{motion,useAnimation}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";export default function TextColorAnimation({text,fontSize,fontFamily,fontWeight,textAlign,color01,color02,Duration,delay,replays}){const controls=useAnimation();const textRef=useRef();useEffect(()=>{const observer=new IntersectionObserver(async([entry])=>{if(entry.isIntersecting){await new Promise(resolve=>setTimeout(resolve,delay*1e3))// delay before animation starts\n;controls.start(\"visible\");}else if(!entry.isIntersecting&&replays){controls.start(\"hidden\");}});observer.observe(textRef.current);return()=>observer.disconnect();},[Duration,controls,color01,delay,replays]);return /*#__PURE__*/_jsx(\"div\",{style:{fontSize:`${fontSize}px`,fontFamily:fontFamily,fontWeight:fontWeight,width:\"100%\",whiteSpace:\"nowrap\",color:color01,textAlign:textAlign},ref:textRef,children:/*#__PURE__*/_jsxs(\"span\",{style:{position:\"relative\",display:\"inline-block\"},children:[text,/*#__PURE__*/_jsx(motion.span,{style:{position:\"absolute\",overflow:\"hidden\",whiteSpace:\"nowrap\",color:color02,top:0,left:0,width:\"0%\"},animate:controls,initial:{width:\"0%\"},variants:{visible:{width:\"100%\"},hidden:{width:\"0%\"}},transition:{duration:Duration},children:text})]})});}addPropertyControls(TextColorAnimation,{text:{type:ControlType.String,defaultValue:\"Hello, World!\"},fontSize:{type:ControlType.Number,defaultValue:16,min:1,max:200,unit:\"px\"},fontFamily:{type:ControlType.String,defaultValue:\"Arial\"},fontWeight:{type:ControlType.Enum,defaultValue:\"400\",options:[\"100\",\"200\",\"300\",\"400\",\"500\",\"600\",\"700\",\"800\",\"900\"]},textAlign:{title:\"Text Align\",type:ControlType.Enum,displaySegmentedControl:true,optionTitles:[\"Left\",\"Center\",\"Right\"],options:[\"left\",\"center\",\"right\"]},color01:{title:\"Color 01\",type:ControlType.Color,defaultValue:\"#333\"},color02:{title:\"Color 02\",type:ControlType.Color,defaultValue:\"#fff\"},Duration:{type:ControlType.Number,defaultValue:1,min:.1,max:10,step:.1},delay:{title:\"Delay\",type:ControlType.Number,defaultValue:0,min:0,max:10,step:.1},replays:{title:\"Replays\",type:ControlType.Boolean,defaultValue:true}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TextColorAnimation\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Text_Color_Animation_2.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef}from\"react\";import{motion,useAnimation}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";export default function TextColorAnimation({text,fontSize,fontFamily,fontWeight,textAlign,color01,color02,Duration,delay,replays}){const controls=useAnimation();const textRef=useRef();useEffect(()=>{const observer=new IntersectionObserver(async([entry])=>{if(entry.isIntersecting){await new Promise(resolve=>setTimeout(resolve,delay*1e3))// delay before animation starts\n;controls.start(\"visible\");}else if(!entry.isIntersecting&&replays){controls.start(\"hidden\");}});observer.observe(textRef.current);return()=>observer.disconnect();},[Duration,controls,color01,delay,replays]);return /*#__PURE__*/_jsx(\"div\",{style:{fontSize:`${fontSize}px`,fontFamily:fontFamily,fontWeight:fontWeight,width:\"100%\",whiteSpace:\"nowrap\",color:color01,textAlign:textAlign},ref:textRef,children:/*#__PURE__*/_jsxs(\"span\",{style:{position:\"relative\",display:\"inline-block\"},children:[text,/*#__PURE__*/_jsx(motion.span,{style:{position:\"absolute\",overflow:\"hidden\",whiteSpace:\"nowrap\",color:color02,top:0,left:0,width:\"0%\"},animate:controls,initial:{width:\"0%\"},variants:{visible:{width:\"100%\"},hidden:{width:\"0%\"}},transition:{duration:Duration},children:text})]})});}addPropertyControls(TextColorAnimation,{text:{type:ControlType.String,defaultValue:\"Hello, World!\"},fontSize:{type:ControlType.Number,defaultValue:16,min:1,max:200,unit:\"px\"},fontFamily:{type:ControlType.String,defaultValue:\"Arial\"},fontWeight:{type:ControlType.Enum,defaultValue:\"400\",options:[\"100\",\"200\",\"300\",\"400\",\"500\",\"600\",\"700\",\"800\",\"900\"]},textAlign:{title:\"Text Align\",type:ControlType.Enum,displaySegmentedControl:true,optionTitles:[\"Left\",\"Center\",\"Right\"],options:[\"left\",\"center\",\"right\"]},color01:{title:\"Color 01\",type:ControlType.Color,defaultValue:\"#333\"},color02:{title:\"Color 02\",type:ControlType.Color,defaultValue:\"#fff\"},Duration:{type:ControlType.Number,defaultValue:1,min:.1,max:10,step:.1},delay:{title:\"Delay\",type:ControlType.Number,defaultValue:0,min:0,max:10,step:.1},replays:{title:\"Replays\",type:ControlType.Boolean,defaultValue:true}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TextColorAnimation\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Text_Color_Animation_3.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef}from\"react\";import{motion,useAnimation}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";export default function TextColorAnimation({text,fontSize,fontFamily,fontWeight,textAlign,color01,color02,Duration,delay,replays}){const controls=useAnimation();const textRef=useRef();useEffect(()=>{const observer=new IntersectionObserver(async([entry])=>{if(entry.isIntersecting){await new Promise(resolve=>setTimeout(resolve,delay*1e3))// delay before animation starts\n;controls.start(\"visible\");}else if(!entry.isIntersecting&&replays){controls.start(\"hidden\");}});observer.observe(textRef.current);return()=>observer.disconnect();},[Duration,controls,color01,delay,replays]);return /*#__PURE__*/_jsx(\"div\",{style:{fontSize:`${fontSize}px`,fontFamily:fontFamily,fontWeight:fontWeight,width:\"100%\",whiteSpace:\"nowrap\",color:color01,textAlign:textAlign},ref:textRef,children:/*#__PURE__*/_jsxs(\"span\",{style:{position:\"relative\",display:\"inline-block\"},children:[text,/*#__PURE__*/_jsx(motion.span,{style:{position:\"absolute\",overflow:\"hidden\",whiteSpace:\"nowrap\",color:color02,top:0,left:0,width:\"0%\"},animate:controls,initial:{width:\"0%\"},variants:{visible:{width:\"100%\"},hidden:{width:\"0%\"}},transition:{duration:Duration},children:text})]})});}addPropertyControls(TextColorAnimation,{text:{type:ControlType.String,defaultValue:\"Hello, World!\"},fontSize:{type:ControlType.Number,defaultValue:16,min:1,max:200,unit:\"px\"},fontFamily:{type:ControlType.String,defaultValue:\"Arial\"},fontWeight:{type:ControlType.Enum,defaultValue:\"400\",options:[\"100\",\"200\",\"300\",\"400\",\"500\",\"600\",\"700\",\"800\",\"900\"]},textAlign:{title:\"Text Align\",type:ControlType.Enum,displaySegmentedControl:true,optionTitles:[\"Left\",\"Center\",\"Right\"],options:[\"left\",\"center\",\"right\"]},color01:{title:\"Color 01\",type:ControlType.Color,defaultValue:\"#333\"},color02:{title:\"Color 02\",type:ControlType.Color,defaultValue:\"#fff\"},Duration:{type:ControlType.Number,defaultValue:1,min:.1,max:10,step:.1},delay:{title:\"Delay\",type:ControlType.Number,defaultValue:0,min:0,max:10,step:.1},replays:{title:\"Replays\",type:ControlType.Boolean,defaultValue:true}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TextColorAnimation\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Text_Color_Animation_4.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef}from\"react\";import{motion,useAnimation}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";export default function TextColorAnimation({text,fontSize,fontFamily,fontWeight,textAlign,color01,color02,Duration,delay,replays}){const controls=useAnimation();const textRef=useRef();useEffect(()=>{const observer=new IntersectionObserver(async([entry])=>{if(entry.isIntersecting){await new Promise(resolve=>setTimeout(resolve,delay*1e3))// delay before animation starts\n;controls.start(\"visible\");}else if(!entry.isIntersecting&&replays){controls.start(\"hidden\");}});observer.observe(textRef.current);return()=>observer.disconnect();},[Duration,controls,color01,delay,replays]);return /*#__PURE__*/_jsx(\"div\",{style:{fontSize:`${fontSize}px`,fontFamily:fontFamily,fontWeight:fontWeight,width:\"100%\",whiteSpace:\"nowrap\",color:color01,textAlign:textAlign},ref:textRef,children:/*#__PURE__*/_jsxs(\"span\",{style:{position:\"relative\",display:\"inline-block\"},children:[text,/*#__PURE__*/_jsx(motion.span,{style:{position:\"absolute\",overflow:\"hidden\",whiteSpace:\"nowrap\",color:color02,top:0,left:0,width:\"0%\"},animate:controls,initial:{width:\"0%\"},variants:{visible:{width:\"100%\"},hidden:{width:\"0%\"}},transition:{duration:Duration},children:text})]})});}addPropertyControls(TextColorAnimation,{text:{type:ControlType.String,defaultValue:\"Hello, World!\"},fontSize:{type:ControlType.Number,defaultValue:16,min:1,max:200,unit:\"px\"},fontFamily:{type:ControlType.String,defaultValue:\"Arial\"},fontWeight:{type:ControlType.Enum,defaultValue:\"400\",options:[\"100\",\"200\",\"300\",\"400\",\"500\",\"600\",\"700\",\"800\",\"900\"]},textAlign:{title:\"Text Align\",type:ControlType.Enum,displaySegmentedControl:true,optionTitles:[\"Left\",\"Center\",\"Right\"],options:[\"left\",\"center\",\"right\"]},color01:{title:\"Color 01\",type:ControlType.Color,defaultValue:\"#333\"},color02:{title:\"Color 02\",type:ControlType.Color,defaultValue:\"#fff\"},Duration:{type:ControlType.Number,defaultValue:1,min:.1,max:10,step:.1},delay:{title:\"Delay\",type:ControlType.Number,defaultValue:0,min:0,max:10,step:.1},replays:{title:\"Replays\",type:ControlType.Boolean,defaultValue:true}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TextColorAnimation\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Text_Color_Animation.map", "// Generated by Framer (ddd30d5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/qXyG1UgqGGx5DS4G9abM/Smooth_Scroll.js\";import Blended from\"#framer/local/canvasComponent/BE1xHckvY/BE1xHckvY.js\";import FooterDarkCopy2 from\"#framer/local/canvasComponent/cpk8xy3s1/cpk8xy3s1.js\";import RowCopy2 from\"#framer/local/canvasComponent/iyjw79Qxc/iyjw79Qxc.js\";import Topbar from\"#framer/local/canvasComponent/jlxrNzbWX/jlxrNzbWX.js\";import More from\"#framer/local/canvasComponent/v_sphz5pK/v_sphz5pK.js\";import TextColorAnimation1 from\"#framer/local/codeFile/FmwnR5h/Text_Color_Animation_1.js\";import TextColorAnimation2 from\"#framer/local/codeFile/tKPT6x3/Text_Color_Animation_2.js\";import TextColorAnimation3 from\"#framer/local/codeFile/hm8qM5C/Text_Color_Animation_3.js\";import TextColorAnimation4 from\"#framer/local/codeFile/umqgl6o/Text_Color_Animation_4.js\";import TextColorAnimation from\"#framer/local/codeFile/KFGleN5/Text_Color_Animation.js\";import*as sharedStyle3 from\"#framer/local/css/bI6GKu_j6/bI6GKu_j6.js\";import*as sharedStyle4 from\"#framer/local/css/bwJstp0Sm/bwJstp0Sm.js\";import*as sharedStyle6 from\"#framer/local/css/eBsU9RYp1/eBsU9RYp1.js\";import*as sharedStyle1 from\"#framer/local/css/gi5VpTiRD/gi5VpTiRD.js\";import*as sharedStyle from\"#framer/local/css/hw4U1GXBX/hw4U1GXBX.js\";import*as sharedStyle5 from\"#framer/local/css/IKpw7apex/IKpw7apex.js\";import*as sharedStyle2 from\"#framer/local/css/w8ue0e0VA/w8ue0e0VA.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const TopbarFonts=getFonts(Topbar);const ContainerWithFX=withFX(Container);const MotionDivWithFX=withFX(motion.div);const MoreFonts=getFonts(More);const TextColorAnimationFonts=getFonts(TextColorAnimation);const TextColorAnimation1Fonts=getFonts(TextColorAnimation1);const TextColorAnimation2Fonts=getFonts(TextColorAnimation2);const TextColorAnimation3Fonts=getFonts(TextColorAnimation3);const TextColorAnimation4Fonts=getFonts(TextColorAnimation4);const TickerFonts=getFonts(Ticker);const MotionSectionWithFX=withFX(motion.section);const ImageWithFX=withFX(Image);const RowCopy2Fonts=getFonts(RowCopy2);const SmoothScrollFonts=getFonts(SmoothScroll);const FooterDarkCopy2Fonts=getFonts(FooterDarkCopy2);const BlendedFonts=getFonts(Blended);const breakpoints={f_FlAyAUN:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\",XUJ0YgY4t:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-tLhZr\";const variantClassNames={f_FlAyAUN:\"framer-v-1522uis\",WQLkyLRf1:\"framer-v-72rtr7\",XUJ0YgY4t:\"framer-v-1ifbpu9\"};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:35,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-64};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition3={delay:0,duration:6,ease:[0,0,1,1],type:\"tween\"};const animation1={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition4={delay:0,duration:3,ease:[0,0,1,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const transition5={damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:80};const transition6={bounce:.25,delay:0,duration:.6,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition6,y:-20};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"f_FlAyAUN\",Tablet:\"XUJ0YgY4t\"};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 cursor={component:Blended,transition:transition1,variant:\"YynTAoeqB\"};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-tLhZr`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-tLhZr`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"f_FlAyAUN\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"f_FlAyAUN\")return false;return true;};const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];useCustomCursors({\"1dgplbu\":cursor});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),\"data-framer-cursor\":\"1dgplbu\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:800,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yj4cd7-container\",layoutScroll:true,style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Topbar,{height:\"100%\",id:\"asv2Ci_Vf\",layoutId:\"asv2Ci_Vf\",style:{width:\"100%\"},variant:\"gVPnxU5j5\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-nujp5a\",\"data-framer-name\":\"Header Title 1\",name:\"Header Title 1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1ej7zyg\",\"data-styles-preset\":\"hw4U1GXBX\",children:\"Your brand is your story, \"}),/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1ej7zyg\",\"data-styles-preset\":\"hw4U1GXBX\",children:\"make it unforgettable.\"})]}),className:\"framer-17h202l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fonqmc\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:.8,className:\"framer-gjgmxb\",\"data-framer-name\":\"Conic\",name:\"Conic\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2zbo02\",\"data-framer-name\":\"Conic\",name:\"Conic\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pmrc75\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:1,className:\"framer-198ospl\",\"data-framer-name\":\"Conic\",name:\"Conic\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rh3722\",\"data-framer-name\":\"Spacer\",name:\"Spacer\"}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6sgsgw\",\"data-framer-name\":\"Header Title 2\",name:\"Header Title 2\",style:{transformPerspective:1200},children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q8ydsr hidden-72rtr7 hidden-1ifbpu9\",\"data-framer-name\":\"Title - Mobile\",name:\"Title - Mobile\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.76)\"},children:\"Re\"})}),className:\"framer-pdwmbu\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"act\"})}),className:\"framer-1m5norx\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11sq4n6\",\"data-framer-name\":\"Title 1\",name:\"Title 1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-106v828\",\"data-styles-preset\":\"gi5VpTiRD\",children:\"Br\"})}),className:\"framer-1w2q3zz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-106v828\",\"data-styles-preset\":\"gi5VpTiRD\",style:{\"--framer-text-color\":\"var(--token-f15315ac-b41a-43ec-bd08-0120f2f478b3, rgb(255, 255, 255))\"},children:\"anding\"})}),className:\"framer-cx76rs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-106v828\",\"data-styles-preset\":\"gi5VpTiRD\",children:\"Re\"})}),className:\"framer-n1sfoy hidden-1522uis\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-106v828\",\"data-styles-preset\":\"gi5VpTiRD\",style:{\"--framer-text-color\":\"var(--token-f15315ac-b41a-43ec-bd08-0120f2f478b3, rgb(255, 255, 255))\"},children:\"act\"})}),className:\"framer-1707mxb hidden-1522uis\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1so9hi0\",\"data-framer-name\":\"Title 2 and 3\",name:\"Title 2 and 3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-106v828\",\"data-styles-preset\":\"gi5VpTiRD\",children:\"I\"})}),className:\"framer-181sq2n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-106v828\",\"data-styles-preset\":\"gi5VpTiRD\",children:\"O\"})}),className:\"framer-f3sfci\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-106v828\",\"data-styles-preset\":\"gi5VpTiRD\",children:\"N\"})}),className:\"framer-w1c5em\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-106v828\",\"data-styles-preset\":\"gi5VpTiRD\",children:\"S\"})}),className:\"framer-1epgb0m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-qo9ac5\",\"data-framer-name\":\"Shape Your Story\",name:\"Shape Your Story\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tfa8rk\",\"data-framer-name\":\"Section\",name:\"Section\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-190hpva\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s3efmf\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i5qs45\",\"data-framer-name\":\"Conic\",name:\"Conic\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8ucmlw\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-199x3fc\",\"data-framer-name\":\"Conic\",name:\"Conic\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wd0hye\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-na32ws\",\"data-styles-preset\":\"w8ue0e0VA\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f15315ac-b41a-43ec-bd08-0120f2f478b3, rgb(255, 255, 255))\"},children:\"Shape Your Story\"})}),className:\"framer-1aht0bk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XUJ0YgY4t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sgwvmq\",\"data-styles-preset\":\"bI6GKu_j6\",children:\"Crafting Brand Identities, One Shape at a Time.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1sgwvmq\",\"data-styles-preset\":\"bI6GKu_j6\",children:[\"Crafting Brand Identities, \",/*#__PURE__*/_jsx(\"br\",{}),\"One Shape at a Time.\"]})}),className:\"framer-3jjaev\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"OjBgIaEdG\"},implicitPathVariables:undefined},{href:{webPageId:\"OjBgIaEdG\"},implicitPathVariables:undefined},{href:{webPageId:\"OjBgIaEdG\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{y:1431},XUJ0YgY4t:{y:1599}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:1636.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1os0n0d-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{Yam6_iTbw:resolvedLinks[2]},XUJ0YgY4t:{Yam6_iTbw:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(More,{height:\"100%\",id:\"ZMmWaJkhG\",layoutId:\"ZMmWaJkhG\",M3tCFfzoo:\"Explore\",style:{height:\"100%\"},variant:\"DjVi46eeq\",width:\"100%\",Yam6_iTbw:resolvedLinks[0]})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition(1493),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/nvlaZYazz5DFnY7aGG92QUQyzkk.png\"}},XUJ0YgY4t:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition(1643),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/nvlaZYazz5DFnY7aGG92QUQyzkk.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition(1253),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/nvlaZYazz5DFnY7aGG92QUQyzkk.png\"},className:\"framer-pow4b7\",\"data-framer-name\":\"Image 1\",name:\"Image 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition(1581),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/Sn27nOXNY5DT2XeQN3ysDUHGL8.png\"}},XUJ0YgY4t:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition(1787.2899159663866),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/Sn27nOXNY5DT2XeQN3ysDUHGL8.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition(1474),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/Sn27nOXNY5DT2XeQN3ysDUHGL8.png\"},className:\"framer-1b02e2b\",\"data-framer-name\":\"Image 2\",name:\"Image 2\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-158mfhz\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-rf31ke\",\"data-framer-name\":\"Conic\",name:\"Conic\"})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-kefcdu\",\"data-framer-name\":\"Your Brand\",name:\"Your Brand\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-npa13j\",\"data-framer-name\":\"Message\",name:\"Message\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b7yn27\",\"data-framer-name\":\"Frame 1\",name:\"Frame 1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kwcspa-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{fontSize:19,textAlign:\"center\"},XUJ0YgY4t:{fontSize:42}},children:/*#__PURE__*/_jsx(TextColorAnimation,{color01:\"var(--token-03b19346-ebcf-47dd-a882-8c67d132e2c8, rgb(51, 51, 51))\",color02:\"var(--token-f15315ac-b41a-43ec-bd08-0120f2f478b3, rgb(255, 255, 255))\",delay:.5,Duration:2,fontFamily:\"Inter\",fontSize:60,fontWeight:\"800\",height:\"100%\",id:\"nheptZ0UG\",layoutId:\"nheptZ0UG\",replays:true,style:{width:\"100%\"},text:\"Your brand is not what you say it is,\",textAlign:\"left\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ofo6ld-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{fontSize:19,textAlign:\"center\"},XUJ0YgY4t:{fontSize:42}},children:/*#__PURE__*/_jsx(TextColorAnimation1,{color01:\"var(--token-03b19346-ebcf-47dd-a882-8c67d132e2c8, rgb(51, 51, 51))\",color02:\"var(--token-4aeeaa4b-46e6-4fce-8549-44f0960b791c, rgba(255, 255, 255, 0.76))\",delay:.5,Duration:2,fontFamily:\"Inter\",fontSize:60,fontWeight:\"800\",height:\"100%\",id:\"E0mufj8kV\",layoutId:\"E0mufj8kV\",replays:true,style:{width:\"100%\"},text:\"it's what they say it is. \",textAlign:\"left\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xldzmk-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{fontSize:19,textAlign:\"center\"},XUJ0YgY4t:{fontSize:42}},children:/*#__PURE__*/_jsx(TextColorAnimation2,{color01:\"var(--token-03b19346-ebcf-47dd-a882-8c67d132e2c8, rgb(51, 51, 51))\",color02:\"var(--token-f15315ac-b41a-43ec-bd08-0120f2f478b3, rgb(255, 255, 255))\",delay:.5,Duration:2,fontFamily:\"Inter\",fontSize:60,fontWeight:\"800\",height:\"100%\",id:\"pCeaxhOGl\",layoutId:\"pCeaxhOGl\",replays:true,style:{width:\"100%\"},text:\"Build it wisely,\",textAlign:\"left\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9nli2b\",\"data-framer-name\":\"Frame 3\",name:\"Frame 3\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19n54gs-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{fontSize:19,textAlign:\"center\"},XUJ0YgY4t:{fontSize:42}},children:/*#__PURE__*/_jsx(TextColorAnimation3,{color01:\"var(--token-03b19346-ebcf-47dd-a882-8c67d132e2c8, rgb(51, 51, 51))\",color02:\"var(--token-4aeeaa4b-46e6-4fce-8549-44f0960b791c, rgba(255, 255, 255, 0.76))\",delay:.5,Duration:2,fontFamily:\"Inter\",fontSize:60,fontWeight:\"800\",height:\"100%\",id:\"WJj6ZvgGu\",layoutId:\"WJj6ZvgGu\",replays:true,style:{width:\"100%\"},text:\"Nurture it consistently, \",textAlign:\"left\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p37icm-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{fontSize:19,textAlign:\"center\"},XUJ0YgY4t:{fontSize:42}},children:/*#__PURE__*/_jsx(TextColorAnimation4,{color01:\"var(--token-03b19346-ebcf-47dd-a882-8c67d132e2c8, rgb(51, 51, 51))\",color02:\"var(--token-f15315ac-b41a-43ec-bd08-0120f2f478b3, rgb(255, 255, 255))\",delay:.5,Duration:2,fontFamily:\"Inter\",fontSize:60,fontWeight:\"800\",height:\"100%\",id:\"PMP2Relwy\",layoutId:\"PMP2Relwy\",replays:true,style:{width:\"100%\"},text:\"and let it speak for itself.\",textAlign:\"left\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-ak5tey\",\"data-framer-name\":\"Brand\",name:\"Brand\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nzy9mf\",\"data-framer-name\":\"Section\",name:\"Section\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mx8xve\",\"data-framer-name\":\"Brand Identity\",name:\"Brand Identity\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hsdgk0\",\"data-framer-name\":\"Spacer\",name:\"Spacer\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-g45odl\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-gvibkb\",\"data-framer-name\":\"Conic\",name:\"Conic\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition(3178.5),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/k7zVWvOd98LI45LtjbZQKnyGE.png\"}},XUJ0YgY4t:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition(3585.5),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/k7zVWvOd98LI45LtjbZQKnyGE.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition(3237),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/k7zVWvOd98LI45LtjbZQKnyGE.png\"},className:\"framer-hk59qp\",\"data-framer-name\":\"Image\",name:\"Image\",whileHover:animation5})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w4cxz5\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iornsi\",\"data-framer-name\":\"Conic\",name:\"Conic\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vhu0ka\",\"data-framer-name\":\"Texts\",name:\"Texts\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ogaXgRwqS:\"brand-identity\"},unresolvedPathSlugs:{ogaXgRwqS:{collectionId:\"SkWECZhOg\",collectionItemId:\"aFEpSCnQt\"}},webPageId:\"myJK8SKkn\"},implicitPathVariables:undefined},{href:{pathVariables:{ogaXgRwqS:\"brand-identity\"},unresolvedPathSlugs:{ogaXgRwqS:{collectionId:\"SkWECZhOg\",collectionItemId:\"aFEpSCnQt\"}},webPageId:\"myJK8SKkn\"},implicitPathVariables:undefined},{href:{pathVariables:{ogaXgRwqS:\"brand-identity\"},unresolvedPathSlugs:{ogaXgRwqS:{collectionId:\"SkWECZhOg\",collectionItemId:\"aFEpSCnQt\"}},webPageId:\"myJK8SKkn\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{y:3562},XUJ0YgY4t:{y:4080}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:3706,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15713nk-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{Yam6_iTbw:resolvedLinks1[2]},XUJ0YgY4t:{Yam6_iTbw:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(More,{height:\"100%\",id:\"fy0r8zrDj\",layoutId:\"fy0r8zrDj\",M3tCFfzoo:\"More\",style:{height:\"100%\"},variant:\"DjVi46eeq\",width:\"100%\",Yam6_iTbw:resolvedLinks1[0]})})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sgwvmq\",\"data-styles-preset\":\"bI6GKu_j6\",children:\"Brand Identity\"})}),className:\"framer-1qctngi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hy1ld3\",\"data-framer-name\":\"Brand Value\",name:\"Brand Value\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18lw4a0\",\"data-framer-name\":\"Spacer\",name:\"Spacer\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qlhgu3\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-8vi1l3\",\"data-framer-name\":\"Conic\",name:\"Conic\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition(3730.5),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/vMvuQpsPpBVu6v278LuyGmHf9J8.png\"}},XUJ0YgY4t:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition(4266.5),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/vMvuQpsPpBVu6v278LuyGmHf9J8.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition(3237),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/vMvuQpsPpBVu6v278LuyGmHf9J8.png\"},className:\"framer-g4pgnv\",\"data-framer-name\":\"Image\",name:\"Image\",whileHover:animation5})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wc3uti\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n8wxr5\",\"data-framer-name\":\"Conic\",name:\"Conic\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-161e1pu\",\"data-framer-name\":\"Texts\",name:\"Texts\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ogaXgRwqS:\"brand-value\"},unresolvedPathSlugs:{ogaXgRwqS:{collectionId:\"SkWECZhOg\",collectionItemId:\"PNTf1t0Cf\"}},webPageId:\"myJK8SKkn\"},implicitPathVariables:undefined},{href:{pathVariables:{ogaXgRwqS:\"brand-value\"},unresolvedPathSlugs:{ogaXgRwqS:{collectionId:\"SkWECZhOg\",collectionItemId:\"PNTf1t0Cf\"}},webPageId:\"myJK8SKkn\"},implicitPathVariables:undefined},{href:{pathVariables:{ogaXgRwqS:\"brand-value\"},unresolvedPathSlugs:{ogaXgRwqS:{collectionId:\"SkWECZhOg\",collectionItemId:\"PNTf1t0Cf\"}},webPageId:\"myJK8SKkn\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{y:4114},XUJ0YgY4t:{y:4761}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:3706,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1itd6xj-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{Yam6_iTbw:resolvedLinks2[2]},XUJ0YgY4t:{Yam6_iTbw:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(More,{height:\"100%\",id:\"XK3TYLiXa\",layoutId:\"XK3TYLiXa\",M3tCFfzoo:\"More\",style:{height:\"100%\"},variant:\"DjVi46eeq\",width:\"100%\",Yam6_iTbw:resolvedLinks2[0]})})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sgwvmq\",\"data-styles-preset\":\"bI6GKu_j6\",children:\"Brand Value\"})}),className:\"framer-1h83e6s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1uibda0\",\"data-framer-name\":\"Our Services\",name:\"Our Services\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-na32ws\",\"data-styles-preset\":\"w8ue0e0VA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our Services\"})}),className:\"framer-1vmvjd1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yvoinz-container\",\"data-framer-name\":\"Services\",name:\"Services\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{speed:35}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"j6UtqQqxd\",layoutId:\"j6UtqQqxd\",name:\"Services\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8oed0z\",\"data-framer-name\":\"Service\",name:\"Service\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bre96b\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-lk4l61\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5z0uxn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-11dmyei\",\"data-styles-preset\":\"bwJstp0Sm\",children:[\"AI-Enhanced \",/*#__PURE__*/_jsx(\"br\",{}),\"Customer Support\"]})}),className:\"framer-pzyp3i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1aolpk1\",\"data-styles-preset\":\"IKpw7apex\",style:{\"--framer-text-color\":\"var(--token-53cfa195-ba4f-4057-b79b-5cd9a06549ac, rgb(102, 102, 102))\"},children:\"Our AI-powered chatbots and real-time sentiment analysis provide quick, personalized assistance, ensuring customer satisfaction while streamlining support operations.\"})}),className:\"framer-1wxernd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zhtwtr\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dgk290\",\"data-framer-name\":\"Conic\",name:\"Conic\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x059lh\",\"data-framer-name\":\"Service\",name:\"Service\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pm29zb\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ij2mm5\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rkemjg\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-11dmyei\",\"data-styles-preset\":\"bwJstp0Sm\",children:[\"Personalized Product \",/*#__PURE__*/_jsx(\"br\",{}),\"Recommendations\"]})}),className:\"framer-fsj384\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1aolpk1\",\"data-styles-preset\":\"IKpw7apex\",style:{\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"We harness AI algorithms to provide individualized product suggestions, driving higher conversion rates and increased customer engagement in the e-commerce realm.\"})}),className:\"framer-g1b6gx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1515bd1\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1su85\",\"data-framer-name\":\"Conic\",name:\"Conic\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2ozlnh\",\"data-framer-name\":\"Service\",name:\"Service\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mxlsgv\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-vo2ugw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fw4p5s\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-11dmyei\",\"data-styles-preset\":\"bwJstp0Sm\",children:[\"AI-Optimized \",/*#__PURE__*/_jsx(\"br\",{}),\"Marketing Campaigns\"]})}),className:\"framer-b5l8k5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1aolpk1\",\"data-styles-preset\":\"IKpw7apex\",style:{\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Our AI expertise enables predictive analytics and automated ad placement, resulting in reduced ad spend and enhanced conversion rates, maximizing the return on investment.\"})}),className:\"framer-th1t2r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yvqhwq\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cqx8jk\",\"data-framer-name\":\"Conic\",name:\"Conic\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-173dvfv\",\"data-framer-name\":\"Service\",name:\"Service\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d3iko9\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ms21ds\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cc43ho\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-11dmyei\",\"data-styles-preset\":\"bwJstp0Sm\",children:[\"Innovative AI Solutions\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-1puv0wn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1aolpk1\",\"data-styles-preset\":\"IKpw7apex\",style:{\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"We continuously develop cutting-edge AI technologies, providing customized solutions that evolve to meet the ever-changing needs of our clients.\"})}),className:\"framer-13m54y2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tf6o6\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-aafe8n\",\"data-framer-name\":\"Conic\",name:\"Conic\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i42bdz\",\"data-framer-name\":\"Service\",name:\"Service\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a9mkm2\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-pth2l3\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11j559t\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-11dmyei\",\"data-styles-preset\":\"bwJstp0Sm\",children:[\"Quality and \",/*#__PURE__*/_jsx(\"br\",{}),\"Style Products\"]})}),className:\"framer-l7ku9g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1aolpk1\",\"data-styles-preset\":\"IKpw7apex\",style:{\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"IONS delivers premium products known for their exquisite design and attention to detail, adding a touch of luxury and elegance to everyday life.\"})}),className:\"framer-1e5sdpn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nl22fl\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-90pljf\",\"data-framer-name\":\"Conic\",name:\"Conic\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kmi5rw\",\"data-framer-name\":\"Service\",name:\"Service\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hp15qv\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-pya5vu\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19dhalq\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-11dmyei\",\"data-styles-preset\":\"bwJstp0Sm\",children:[\"Ongoing Evolution\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-a1415b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1aolpk1\",\"data-styles-preset\":\"IKpw7apex\",style:{\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Our commitment to staying at the forefront of AI innovation means we continuously refine and adapt our solutions to changing technology and customer requirements, ensuring we remain industry leaders.\"})}),className:\"framer-112b8vo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-oiesjf\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-oc32zm\",\"data-framer-name\":\"Conic\",name:\"Conic\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1egq8kq\",\"data-framer-name\":\"Service\",name:\"Service\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hi2tav\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-z5p49q\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qnwrrx\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-11dmyei\",\"data-styles-preset\":\"bwJstp0Sm\",children:[\"Customer-Centric \",/*#__PURE__*/_jsx(\"br\",{}),\"Approach\"]})}),className:\"framer-stxdc3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1aolpk1\",\"data-styles-preset\":\"IKpw7apex\",style:{\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"At IONS, our customer-centric approach is our guiding principle. We leverage AI to enhance the overall customer experience, consistently surpassing their expectations.\"})}),className:\"framer-174fql2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tks6b8\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-d43kf6\",\"data-framer-name\":\"Conic\",name:\"Conic\"})})]})],speed:40,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18zxlbd\",\"data-framer-name\":\"Projects\",name:\"Projects\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-na32ws\",\"data-styles-preset\":\"w8ue0e0VA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Projects in the Pipeline\"})}),className:\"framer-1kdn2uj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pz28mv\",\"data-border\":true,\"data-framer-name\":\"Project\",name:\"Project\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:5388,intrinsicWidth:9579,loading:getLoadingLazyAtYPosition(5064),pixelHeight:5388,pixelWidth:9579,positionX:\"center\",positionY:\"center\",sizes:\"340px\",src:\"https://framerusercontent.com/images/Qg2nfgnpUIllDC1tQCZQi27hv4.jpg\",srcSet:\"https://framerusercontent.com/images/Qg2nfgnpUIllDC1tQCZQi27hv4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Qg2nfgnpUIllDC1tQCZQi27hv4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qg2nfgnpUIllDC1tQCZQi27hv4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Qg2nfgnpUIllDC1tQCZQi27hv4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/Qg2nfgnpUIllDC1tQCZQi27hv4.jpg 9579w\"}},XUJ0YgY4t:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:5388,intrinsicWidth:9579,loading:getLoadingLazyAtYPosition(5881),pixelHeight:5388,pixelWidth:9579,positionX:\"center\",positionY:\"center\",sizes:\"356px\",src:\"https://framerusercontent.com/images/Qg2nfgnpUIllDC1tQCZQi27hv4.jpg\",srcSet:\"https://framerusercontent.com/images/Qg2nfgnpUIllDC1tQCZQi27hv4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Qg2nfgnpUIllDC1tQCZQi27hv4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qg2nfgnpUIllDC1tQCZQi27hv4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Qg2nfgnpUIllDC1tQCZQi27hv4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/Qg2nfgnpUIllDC1tQCZQi27hv4.jpg 9579w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:5388,intrinsicWidth:9579,loading:getLoadingLazyAtYPosition(4826),pixelHeight:5388,pixelWidth:9579,positionX:\"center\",positionY:\"center\",sizes:\"560px\",src:\"https://framerusercontent.com/images/Qg2nfgnpUIllDC1tQCZQi27hv4.jpg\",srcSet:\"https://framerusercontent.com/images/Qg2nfgnpUIllDC1tQCZQi27hv4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Qg2nfgnpUIllDC1tQCZQi27hv4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qg2nfgnpUIllDC1tQCZQi27hv4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Qg2nfgnpUIllDC1tQCZQi27hv4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/Qg2nfgnpUIllDC1tQCZQi27hv4.jpg 9579w\"},className:\"framer-dpnioy\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5rwzfm\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-jkkifi\",\"data-framer-name\":\"Conic\",name:\"Conic\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nbjyks\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-na32ws\",\"data-styles-preset\":\"w8ue0e0VA\",children:\"Project X, Y & Z\"})}),className:\"framer-hi7aoy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sgwvmq\",\"data-styles-preset\":\"bI6GKu_j6\",style:{\"--framer-text-color\":\"var(--token-b2ef7ff1-cced-4b8c-b113-ea496bac1c41, rgb(136, 136, 136))\"},children:\"IONs has harnessed AI to transform customer support, product recommendations, and marketing efficiency, enhancing customer satisfaction over the past 2 to 3 years.\"})}),className:\"framer-11zzkpu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"c41B4y2q_\"},implicitPathVariables:undefined},{href:{webPageId:\"c41B4y2q_\"},implicitPathVariables:undefined},{href:{webPageId:\"c41B4y2q_\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{y:5670},XUJ0YgY4t:{y:6209.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:5252,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12d1rbt-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{Yam6_iTbw:resolvedLinks3[2]},XUJ0YgY4t:{Yam6_iTbw:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(More,{height:\"100%\",id:\"uX7GrvCms\",layoutId:\"uX7GrvCms\",M3tCFfzoo:\"Discover\",style:{height:\"100%\"},variant:\"DjVi46eeq\",width:\"100%\",Yam6_iTbw:resolvedLinks3[0]})})})})})})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ixei77-container\",\"data-framer-name\":\"Banner\",name:\"Banner\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"PUZwpuLnS\",layoutId:\"PUZwpuLnS\",name:\"Banner\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2u5838\",\"data-framer-name\":\"Banner\",name:\"Banner\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--token-f15315ac-b41a-43ec-bd08-0120f2f478b3, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"IONS: Redefining the Future with AI Power!\"})}),className:\"framer-ul1lbs\",fonts:[\"Inter-ExtraBold\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2u5838\",\"data-framer-name\":\"Banner\",name:\"Banner\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--token-f15315ac-b41a-43ec-bd08-0120f2f478b3, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"IONS: Redefining the Future with AI Power!\"})}),className:\"framer-ul1lbs\",fonts:[\"Inter-ExtraBold\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})],speed:100,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1vpetcn\",\"data-framer-name\":\"IONS AI\",name:\"IONS AI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3005,intrinsicWidth:4508,loading:getLoadingLazyAtYPosition(6103),pixelHeight:3005,pixelWidth:4508,sizes:\"min(max(100vw - 50px, 1px), 1200px)\",src:\"https://framerusercontent.com/images/7lZpm1SKTdeiRI0fw2bwkLrCyvc.jpg\",srcSet:\"https://framerusercontent.com/images/7lZpm1SKTdeiRI0fw2bwkLrCyvc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7lZpm1SKTdeiRI0fw2bwkLrCyvc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7lZpm1SKTdeiRI0fw2bwkLrCyvc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7lZpm1SKTdeiRI0fw2bwkLrCyvc.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/7lZpm1SKTdeiRI0fw2bwkLrCyvc.jpg 4508w\"}},XUJ0YgY4t:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3005,intrinsicWidth:4508,loading:getLoadingLazyAtYPosition(6641),pixelHeight:3005,pixelWidth:4508,sizes:\"min(max(100vw - 60px, 1px), 1200px)\",src:\"https://framerusercontent.com/images/7lZpm1SKTdeiRI0fw2bwkLrCyvc.jpg\",srcSet:\"https://framerusercontent.com/images/7lZpm1SKTdeiRI0fw2bwkLrCyvc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7lZpm1SKTdeiRI0fw2bwkLrCyvc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7lZpm1SKTdeiRI0fw2bwkLrCyvc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7lZpm1SKTdeiRI0fw2bwkLrCyvc.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/7lZpm1SKTdeiRI0fw2bwkLrCyvc.jpg 4508w\"}}},children:/*#__PURE__*/_jsxs(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,as:\"figure\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:3005,intrinsicWidth:4508,loading:getLoadingLazyAtYPosition(5777),pixelHeight:3005,pixelWidth:4508,sizes:\"min(max(100vw - 80px, 1px), 1200px)\",src:\"https://framerusercontent.com/images/7lZpm1SKTdeiRI0fw2bwkLrCyvc.jpg\",srcSet:\"https://framerusercontent.com/images/7lZpm1SKTdeiRI0fw2bwkLrCyvc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7lZpm1SKTdeiRI0fw2bwkLrCyvc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7lZpm1SKTdeiRI0fw2bwkLrCyvc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7lZpm1SKTdeiRI0fw2bwkLrCyvc.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/7lZpm1SKTdeiRI0fw2bwkLrCyvc.jpg 4508w\"},className:\"framer-14k13ce\",\"data-framer-name\":\"Sculpt your canvas\",name:\"Sculpt your canvas\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-na32ws\",\"data-styles-preset\":\"w8ue0e0VA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f15315ac-b41a-43ec-bd08-0120f2f478b3, rgb(255, 255, 255))\"},children:\"Sculpt Your Canvas with IONS AI\"})}),className:\"framer-1ogqk5g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sgwvmq\",\"data-styles-preset\":\"bI6GKu_j6\",children:\"Mold Identities with Each Element\"})}),className:\"framer-1g1bp2h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xmc167\",\"data-framer-name\":\"Overlay\",name:\"Overlay\"}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"KOx_APZHN\"},implicitPathVariables:undefined},{href:{webPageId:\"KOx_APZHN\"},implicitPathVariables:undefined},{href:{webPageId:\"KOx_APZHN\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{y:6489.5},XUJ0YgY4t:{y:6983.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:6193,children:/*#__PURE__*/_jsx(Container,{className:\"framer-p7r3yd-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{Yam6_iTbw:resolvedLinks4[2]},XUJ0YgY4t:{Yam6_iTbw:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(More,{height:\"100%\",id:\"gBMLTen5C\",layoutId:\"gBMLTen5C\",M3tCFfzoo:\"Explore\",style:{height:\"100%\"},variant:\"eKSSSQduu\",width:\"100%\",Yam6_iTbw:resolvedLinks4[0]})})})})})})]})})}),/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uja89t\",\"data-framer-name\":\"Testimonials\",name:\"Testimonials\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8yq0xw\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-na32ws\",\"data-styles-preset\":\"w8ue0e0VA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Here's what users commonly express about us\"})}),className:\"framer-1u1wk0m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dtrz1v-container\",\"data-framer-name\":\"Testimonials\",name:\"Testimonials\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{padding:15,paddingBottom:15,paddingLeft:15,paddingRight:15,paddingTop:15}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"KmzzD_auA\",layoutId:\"KmzzD_auA\",name:\"Testimonials\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oab8ts\",\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q1t9aq\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k1z5kc\",\"data-framer-name\":\"Conic\",name:\"Conic\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nt1k0n\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-106hp3o\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5165,intrinsicWidth:3772,pixelHeight:5165,pixelWidth:3772,sizes:\"50px\",src:\"https://framerusercontent.com/images/WBOAxUkqCP4Mr2g0h4uFyImHGs.jpg\",srcSet:\"https://framerusercontent.com/images/WBOAxUkqCP4Mr2g0h4uFyImHGs.jpg?scale-down-to=1024 747w,https://framerusercontent.com/images/WBOAxUkqCP4Mr2g0h4uFyImHGs.jpg?scale-down-to=2048 1495w,https://framerusercontent.com/images/WBOAxUkqCP4Mr2g0h4uFyImHGs.jpg?scale-down-to=4096 2991w,https://framerusercontent.com/images/WBOAxUkqCP4Mr2g0h4uFyImHGs.jpg 3772w\"},className:\"framer-1oo7sfk\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16c5vfy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11dmyei\",\"data-styles-preset\":\"bwJstp0Sm\",children:\"Eva Elle\"})}),className:\"framer-mjzxv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1aolpk1\",\"data-styles-preset\":\"IKpw7apex\",style:{\"--framer-text-color\":\"var(--token-b2ef7ff1-cced-4b8c-b113-ea496bac1c41, rgb(136, 136, 136))\"},children:\"@evaelle\"})}),className:\"framer-ha9eno\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1aolpk1\",\"data-styles-preset\":\"IKpw7apex\",style:{\"--framer-text-color\":\"var(--token-53cfa195-ba4f-4057-b79b-5cd9a06549ac, rgb(102, 102, 102))\"},children:\"IONS provided us with a cutting-edge AI solution that revolutionized our financial data analysis. Their platform streamlined our processes, improved accuracy, and saved us valuable time. IONS is the partner you need for staying ahead in the finance industry.\"})}),className:\"framer-p36zoq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15zndtt\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2xe1uw\",\"data-framer-name\":\"Conic\",name:\"Conic\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ay8rbq\",\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-polz0m\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qheh8w\",\"data-framer-name\":\"Conic\",name:\"Conic\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yf7v68\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f9e1o4\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4252,intrinsicWidth:3402,pixelHeight:4252,pixelWidth:3402,sizes:\"50px\",src:\"https://framerusercontent.com/images/fN9VFsDgMiwjqHFfETtl0WtwUE.jpg\",srcSet:\"https://framerusercontent.com/images/fN9VFsDgMiwjqHFfETtl0WtwUE.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/fN9VFsDgMiwjqHFfETtl0WtwUE.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/fN9VFsDgMiwjqHFfETtl0WtwUE.jpg?scale-down-to=4096 3277w,https://framerusercontent.com/images/fN9VFsDgMiwjqHFfETtl0WtwUE.jpg 3402w\"},className:\"framer-1hq0afx\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14mysga\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11dmyei\",\"data-styles-preset\":\"bwJstp0Sm\",children:\"Guy Mccoy\"})}),className:\"framer-etpign\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1aolpk1\",\"data-styles-preset\":\"IKpw7apex\",style:{\"--framer-text-color\":\"var(--token-b2ef7ff1-cced-4b8c-b113-ea496bac1c41, rgb(136, 136, 136))\"},children:\"@mccoy\"})}),className:\"framer-esd2x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1aolpk1\",\"data-styles-preset\":\"IKpw7apex\",style:{\"--framer-text-color\":\"var(--token-53cfa195-ba4f-4057-b79b-5cd9a06549ac, rgb(102, 102, 102))\"},children:\"Working with IONS has been a game-changer for our healthcare facility. Their AI-driven patient management system has enhanced our efficiency, reduced errors, and improved patient care. IONS has truly transformed how we deliver healthcare services.\"})}),className:\"framer-urhidg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o3zz4a\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16kxcbg\",\"data-framer-name\":\"Conic\",name:\"Conic\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5jvjt7\",\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vjeys\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cowq79\",\"data-framer-name\":\"Conic\",name:\"Conic\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wbkk0\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b10kf8\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5250,intrinsicWidth:3514,pixelHeight:5250,pixelWidth:3514,sizes:\"50px\",src:\"https://framerusercontent.com/images/49ugYrKvomSH82W9C8hsSZtJtE.jpg\",srcSet:\"https://framerusercontent.com/images/49ugYrKvomSH82W9C8hsSZtJtE.jpg?scale-down-to=1024 685w,https://framerusercontent.com/images/49ugYrKvomSH82W9C8hsSZtJtE.jpg?scale-down-to=2048 1370w,https://framerusercontent.com/images/49ugYrKvomSH82W9C8hsSZtJtE.jpg?scale-down-to=4096 2741w,https://framerusercontent.com/images/49ugYrKvomSH82W9C8hsSZtJtE.jpg 3514w\"},className:\"framer-1u86jgr\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jk992n\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11dmyei\",\"data-styles-preset\":\"bwJstp0Sm\",children:\"Kayla Ray\"})}),className:\"framer-jkapk9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1aolpk1\",\"data-styles-preset\":\"IKpw7apex\",style:{\"--framer-text-color\":\"var(--token-b2ef7ff1-cced-4b8c-b113-ea496bac1c41, rgb(136, 136, 136))\"},children:\"@kayray\"})}),className:\"framer-cwrslv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1aolpk1\",\"data-styles-preset\":\"IKpw7apex\",style:{\"--framer-text-color\":\"var(--token-53cfa195-ba4f-4057-b79b-5cd9a06549ac, rgb(102, 102, 102))\"},children:\"Education meets innovation with IONS. Their AI-driven learning platforms have personalized education for our students, enhancing their learning experiences. IONS has redefined how we approach education in the 21st century.\"})}),className:\"framer-65cc17\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gezusv\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10xz4us\",\"data-framer-name\":\"Conic\",name:\"Conic\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r4twh4\",\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-evktl\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ol92wu\",\"data-framer-name\":\"Conic\",name:\"Conic\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t3wms3\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jnwpai\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3600,intrinsicWidth:2400,pixelHeight:3600,pixelWidth:2400,sizes:\"50px\",src:\"https://framerusercontent.com/images/FIpSHMNfJN6drUwyQ9iP6oos.jpg\",srcSet:\"https://framerusercontent.com/images/FIpSHMNfJN6drUwyQ9iP6oos.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/FIpSHMNfJN6drUwyQ9iP6oos.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/FIpSHMNfJN6drUwyQ9iP6oos.jpg 2400w\"},className:\"framer-1g30yel\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hrczc8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11dmyei\",\"data-styles-preset\":\"bwJstp0Sm\",children:\"Jessica Bard\"})}),className:\"framer-bh60ck\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1aolpk1\",\"data-styles-preset\":\"IKpw7apex\",style:{\"--framer-text-color\":\"var(--token-b2ef7ff1-cced-4b8c-b113-ea496bac1c41, rgb(136, 136, 136))\"},children:\"@Jess\"})}),className:\"framer-18b56ft\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1aolpk1\",\"data-styles-preset\":\"IKpw7apex\",style:{\"--framer-text-color\":\"var(--token-53cfa195-ba4f-4057-b79b-5cd9a06549ac, rgb(102, 102, 102))\"},children:\"IONS' predictive maintenance system has helped us avoid costly breakdowns and maximize production efficiency. IONS is an essential partner for any manufacturing company looking to thrive in a competitive market.\"})}),className:\"framer-1579gz3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18ot57r\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lcv4rh\",\"data-framer-name\":\"Conic\",name:\"Conic\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-158oq49\",\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k6j9oi\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w92u2\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,pixelHeight:4e3,pixelWidth:6e3,sizes:\"50px\",src:\"https://framerusercontent.com/images/bP58b36eL9FcCfGEUpnOwHjC6rs.jpg\",srcSet:\"https://framerusercontent.com/images/bP58b36eL9FcCfGEUpnOwHjC6rs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bP58b36eL9FcCfGEUpnOwHjC6rs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bP58b36eL9FcCfGEUpnOwHjC6rs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bP58b36eL9FcCfGEUpnOwHjC6rs.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/bP58b36eL9FcCfGEUpnOwHjC6rs.jpg 6000w\"},className:\"framer-zi59gj\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nde29d\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11dmyei\",\"data-styles-preset\":\"bwJstp0Sm\",children:\"John Welsh\"})}),className:\"framer-1956bw8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1aolpk1\",\"data-styles-preset\":\"IKpw7apex\",style:{\"--framer-text-color\":\"var(--token-b2ef7ff1-cced-4b8c-b113-ea496bac1c41, rgb(136, 136, 136))\"},children:\"@JWelsh\"})}),className:\"framer-ny0lsg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1aolpk1\",\"data-styles-preset\":\"IKpw7apex\",style:{\"--framer-text-color\":\"var(--token-53cfa195-ba4f-4057-b79b-5cd9a06549ac, rgb(102, 102, 102))\"},children:\"I can't say enough about how IONS has transformed our retail business. Their AI-powered inventory management and demand forecasting tools have minimized stockouts and overstock issues. Our profitability has soared, thanks to IONS!\"})}),className:\"framer-wd9hwq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3owsxv\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qaj458\",\"data-framer-name\":\"Conic\",name:\"Conic\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-68w51d\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k6kuup\",\"data-framer-name\":\"Conic\",name:\"Conic\"})})]})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-19qo3e7\",\"data-framer-name\":\"Trusted\",name:\"Trusted\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1712cpg\",\"data-framer-name\":\"Trusted by\",name:\"Trusted by\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-m4tmgs\",\"data-styles-preset\":\"eBsU9RYp1\",style:{\"--framer-text-alignment\":\"center\"},children:\"Trusted by Visionary Brands\"})}),className:\"framer-11j7d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-bo6feh-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:100,height:\"100%\",hoverFactor:1,id:\"y1u1Ljgps\",layoutId:\"y1u1Ljgps\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-no9d19\",\"data-framer-name\":\"Logo 1\",layout:\"position\",name:\"Logo 1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 53 53\"><path d=\"M 26.497 13.802 C 26.497 20.528 21.05 25.98 14.33 25.98 L 2.163 25.98 L 2.163 13.802 C 2.163 7.076 7.611 1.624 14.33 1.624 C 21.05 1.624 26.497 7.076 26.497 13.802 Z M 26.497 38.159 C 26.497 31.433 31.945 25.98 38.664 25.98 L 50.831 25.98 L 50.831 38.159 C 50.831 44.884 45.384 50.337 38.664 50.337 C 31.945 50.337 26.497 44.884 26.497 38.159 Z M 2.163 38.159 C 2.163 44.884 7.611 50.337 14.33 50.337 L 26.497 50.337 L 26.497 38.159 C 26.497 31.433 21.05 25.98 14.33 25.98 C 7.611 25.98 2.163 31.433 2.163 38.159 Z M 50.831 13.802 C 50.831 7.076 45.384 1.624 38.664 1.624 L 26.497 1.624 L 26.497 13.802 C 26.497 20.528 31.945 25.98 38.664 25.98 C 45.384 25.98 50.831 20.528 50.831 13.802 Z\" fill=\"hsl(0, 0%, 100%)\"></path></svg>',svgContentId:12375553048,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wwkehy\",\"data-framer-name\":\"Logo 2\",layout:\"position\",name:\"Logo 2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 107 55\"><path d=\"M 2.765 31.832 L 5.794 31.832 L 5.794 46.811 L 2.765 46.811 Z M 7.551 41.679 C 7.547 39.479 8.858 37.492 10.873 36.647 C 12.888 35.802 15.21 36.264 16.754 37.819 C 18.299 39.374 18.762 41.714 17.928 43.747 C 17.094 45.781 15.127 47.107 12.945 47.107 C 11.511 47.124 10.131 46.558 9.116 45.537 C 8.101 44.516 7.537 43.125 7.551 41.679 Z M 15.287 41.679 C 15.253 40.383 14.19 39.357 12.905 39.379 C 11.62 39.402 10.592 40.464 10.603 41.761 C 10.614 43.057 11.659 44.102 12.945 44.102 C 13.582 44.121 14.197 43.869 14.642 43.409 C 15.087 42.948 15.321 42.321 15.287 41.679 Z\" fill=\"hsl(0, 0%, 100%)\"></path><path d=\"M 30.516 36.547 L 30.516 46.302 C 30.516 49.755 27.84 51.211 25.133 51.211 C 23.193 51.357 21.334 50.398 20.316 48.726 L 22.921 47.208 C 23.344 48.069 24.245 48.582 25.194 48.502 C 25.812 48.607 26.444 48.415 26.902 47.984 C 27.361 47.553 27.595 46.932 27.536 46.302 L 27.536 45.356 C 26.814 46.252 25.712 46.747 24.568 46.69 C 21.713 46.69 19.398 44.355 19.398 41.475 C 19.398 38.596 21.713 36.261 24.568 36.261 C 25.711 36.209 26.812 36.703 27.537 37.595 L 27.537 36.577 Z M 27.537 41.475 C 27.578 40.462 27.004 39.526 26.088 39.109 C 25.171 38.692 24.095 38.879 23.369 39.581 C 22.644 40.283 22.414 41.359 22.789 42.3 C 23.163 43.241 24.067 43.858 25.073 43.859 C 25.722 43.905 26.36 43.672 26.829 43.218 C 27.299 42.764 27.556 42.131 27.537 41.475 Z M 32.263 41.679 C 32.259 39.479 33.57 37.492 35.585 36.647 C 37.6 35.802 39.921 36.264 41.466 37.819 C 43.01 39.374 43.474 41.714 42.64 43.747 C 41.806 45.781 39.838 47.107 37.656 47.107 C 36.222 47.124 34.843 46.558 33.828 45.537 C 32.813 44.515 32.249 43.125 32.263 41.679 Z M 39.999 41.679 C 39.966 40.383 38.903 39.355 37.617 39.377 C 36.331 39.399 35.303 40.462 35.314 41.759 C 35.324 43.056 36.37 44.102 37.656 44.102 C 38.29 44.115 38.9 43.861 39.341 43.401 C 39.781 42.941 40.013 42.318 39.979 41.679 Z M 44.452 33.797 C 44.452 32.773 45.275 31.943 46.291 31.943 C 47.306 31.943 48.129 32.773 48.129 33.797 C 48.129 34.821 47.306 35.651 46.291 35.651 C 45.278 35.645 44.458 34.819 44.452 33.797 Z M 44.766 36.547 L 47.795 36.547 L 47.795 46.811 L 44.766 46.811 L 44.766 36.548 Z M 61.004 41.679 C 61.078 43.05 60.606 44.393 59.695 45.412 C 58.783 46.43 57.506 47.041 56.147 47.107 C 55.003 47.162 53.893 46.704 53.117 45.855 L 53.117 50.946 L 50.087 50.946 L 50.087 36.548 L 53.117 36.548 L 53.117 37.515 C 53.893 36.666 55.003 36.207 56.147 36.262 C 57.505 36.328 58.78 36.936 59.692 37.953 C 60.604 38.97 61.076 40.311 61.004 41.68 Z M 57.974 41.679 C 57.941 40.346 56.853 39.287 55.531 39.298 C 54.209 39.309 53.14 40.387 53.129 41.721 C 53.117 43.054 54.168 44.15 55.49 44.184 C 56.159 44.227 56.814 43.976 57.286 43.496 C 57.759 43.016 58.002 42.354 57.954 41.679 L 57.975 41.679 Z M 70.437 43.736 C 70.437 46.099 68.416 47.107 66.195 47.107 C 64.379 47.269 62.648 46.302 61.822 44.663 L 64.468 43.146 C 64.689 43.909 65.409 44.413 66.195 44.357 C 66.933 44.357 67.297 44.123 67.297 43.715 C 67.297 42.585 62.247 43.187 62.247 39.642 C 62.247 37.402 64.125 36.272 66.286 36.272 C 67.91 36.222 69.433 37.065 70.264 38.472 L 67.609 39.877 C 67.369 39.328 66.831 38.972 66.236 38.97 C 65.711 38.97 65.387 39.174 65.387 39.55 C 65.427 40.722 70.437 39.939 70.437 43.736 Z M 81.585 36.547 L 81.585 46.811 L 78.556 46.811 L 78.556 45.855 C 77.841 46.718 76.759 47.183 75.647 47.107 C 73.628 47.107 71.84 45.63 71.84 42.85 L 71.84 36.547 L 74.869 36.547 L 74.869 42.403 C 74.816 42.908 74.991 43.411 75.345 43.772 C 75.7 44.133 76.197 44.314 76.698 44.265 C 77.808 44.265 78.587 43.614 78.587 42.158 L 78.587 36.547 Z M 99.096 40.518 L 99.096 46.811 L 96.068 46.811 L 96.068 40.783 C 96.068 39.765 95.574 39.092 94.604 39.092 C 93.635 39.092 93.008 39.815 93.008 41.027 L 93.008 46.811 L 89.978 46.811 L 89.978 40.783 C 89.978 39.765 89.494 39.092 88.513 39.092 C 87.535 39.092 86.928 39.815 86.928 41.027 L 86.928 46.811 L 83.9 46.811 L 83.9 36.548 L 86.928 36.548 L 86.928 37.495 C 87.572 36.645 88.598 36.181 89.655 36.262 C 90.718 36.21 91.73 36.724 92.322 37.617 C 93.008 36.685 94.122 36.173 95.27 36.262 C 97.572 36.262 99.099 37.953 99.099 40.519 Z M 101.682 36.485 C 102.932 36.485 103.944 35.464 103.944 34.205 C 103.944 32.945 102.932 31.924 101.682 31.924 C 100.433 31.924 99.42 32.945 99.42 34.205 C 99.42 35.464 100.433 36.485 101.682 36.485 Z\" fill=\"hsl(0, 0%, 100%)\"></path><path d=\"M 37.05 24.061 C 42.901 24.061 47.644 19.279 47.644 13.379 C 47.644 7.479 42.901 2.696 37.05 2.696 C 31.2 2.696 26.457 7.479 26.457 13.379 C 26.457 19.278 31.199 24.061 37.05 24.061 Z\" fill=\"hsl(0, 0%, 100%)\"></path><path d=\"M 60.731 24.061 C 66.582 24.061 71.325 19.279 71.325 13.379 C 71.325 7.479 66.582 2.696 60.731 2.696 C 54.882 2.696 50.137 7.479 50.137 13.379 C 50.137 19.278 54.88 24.061 60.731 24.061 Z\" fill=\"hsl(0, 0%, 100%)\"></path><path d=\"M 23.962 2.696 L 2.785 2.696 L 2.785 24.051 L 23.962 24.051 Z\" fill=\"hsl(0, 0%, 100%)\"></path></svg>',svgContentId:10039910167,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-l3f7zp\",\"data-framer-name\":\"Logo 3\",layout:\"position\",name:\"Logo 3\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 186 49\"><path d=\"M 55.514 15.117 L 60.031 15.117 L 60.031 33.327 L 55.514 33.327 Z M 61.822 26.452 C 61.822 21.948 64.593 19.261 68.869 19.261 C 73.145 19.261 75.915 21.948 75.915 26.452 C 75.915 30.955 73.205 33.657 68.869 33.657 C 64.533 33.657 61.822 31.03 61.822 26.452 Z M 71.383 26.452 C 71.383 23.975 70.405 22.518 68.869 22.518 C 67.333 22.518 66.369 24.02 66.369 26.452 C 66.369 28.884 67.318 30.355 68.869 30.355 C 70.42 30.355 71.383 28.974 71.383 26.467 Z M 77.617 34.213 L 81.953 34.213 C 82.377 35.152 83.369 35.701 84.392 35.564 C 86.109 35.564 87.012 34.633 87.012 33.282 L 87.012 30.76 L 86.922 30.76 C 86.185 32.342 84.557 33.317 82.811 33.222 C 79.514 33.222 77.331 30.715 77.331 26.407 C 77.331 22.098 79.408 19.381 82.871 19.381 C 84.674 19.31 86.331 20.364 87.027 22.023 L 87.027 19.516 L 91.544 19.516 L 91.544 33.177 C 91.544 36.465 88.638 38.506 84.347 38.506 C 80.357 38.506 77.873 36.72 77.617 34.228 Z M 87.027 26.437 C 87.027 24.245 86.018 22.864 84.422 22.864 C 82.826 22.864 81.848 24.23 81.848 26.437 C 81.848 28.643 82.811 29.889 84.422 29.889 C 86.033 29.889 87.027 28.673 87.027 26.452 Z M 93.245 26.437 C 93.245 21.933 96.016 19.246 100.292 19.246 C 104.568 19.246 107.353 21.933 107.353 26.437 C 107.353 30.94 104.643 33.642 100.292 33.642 C 95.941 33.642 93.245 31.03 93.245 26.452 Z M 102.806 26.437 C 102.806 23.96 101.828 22.503 100.292 22.503 C 98.756 22.503 97.868 24.02 97.868 26.467 C 97.868 28.914 98.816 30.37 100.352 30.37 C 101.888 30.37 102.806 28.974 102.806 26.467 Z M 109.07 16.243 C 109.046 15.313 109.586 14.461 110.439 14.084 C 111.292 13.707 112.289 13.88 112.964 14.523 C 113.639 15.165 113.858 16.15 113.519 17.017 C 113.181 17.884 112.352 18.462 111.419 18.48 C 110.807 18.522 110.206 18.308 109.76 17.889 C 109.315 17.47 109.064 16.884 109.07 16.273 Z M 109.07 19.546 L 113.587 19.546 L 113.587 33.327 L 109.07 33.327 Z M 129.983 26.437 C 129.983 30.94 127.981 33.507 124.548 33.507 C 122.745 33.623 121.061 32.604 120.332 30.955 L 120.242 30.955 L 120.242 37.741 L 115.725 37.741 L 115.725 19.516 L 120.242 19.516 L 120.242 21.978 L 120.332 21.978 C 121.028 20.302 122.701 19.24 124.518 19.321 C 127.981 19.381 130.044 21.963 130.044 26.467 Z M 125.466 26.437 C 125.466 24.245 124.458 22.849 122.877 22.849 C 121.296 22.849 120.287 24.26 120.272 26.437 C 120.257 28.613 121.296 30.009 122.877 30.009 C 124.458 30.009 125.466 28.643 125.466 26.467 Z M 137.738 19.231 C 141.487 19.231 143.76 21.002 143.866 23.839 L 139.755 23.839 C 139.755 22.864 138.942 22.248 137.692 22.248 C 136.443 22.248 135.886 22.729 135.886 23.434 C 135.886 24.14 136.383 24.365 137.391 24.575 L 140.282 25.161 C 143.038 25.746 144.212 26.857 144.212 28.944 C 144.212 31.796 141.607 33.627 137.768 33.627 C 133.928 33.627 131.414 31.796 131.218 28.989 L 135.569 28.989 C 135.705 30.009 136.518 30.61 137.843 30.61 C 139.168 30.61 139.77 30.175 139.77 29.454 C 139.77 28.733 139.349 28.583 138.265 28.358 L 135.66 27.803 C 132.965 27.247 131.549 25.821 131.549 23.719 C 131.579 21.017 134.004 19.261 137.738 19.261 Z M 159.284 33.297 L 154.932 33.297 L 154.932 30.73 L 154.842 30.73 C 154.349 32.506 152.682 33.699 150.837 33.597 C 149.448 33.676 148.094 33.151 147.123 32.157 C 146.153 31.164 145.662 29.8 145.778 28.418 L 145.778 19.516 L 150.295 19.516 L 150.295 27.382 C 150.295 29.019 151.138 29.889 152.538 29.889 C 153.203 29.89 153.835 29.606 154.274 29.109 C 154.711 28.61 154.912 27.949 154.827 27.292 L 154.827 19.516 L 159.344 19.516 Z M 161.467 19.516 L 165.833 19.516 L 165.833 22.173 L 165.924 22.173 C 166.416 20.424 168.031 19.227 169.853 19.261 C 171.722 19.112 173.393 20.418 173.693 22.263 L 173.783 22.263 C 174.343 20.412 176.092 19.176 178.029 19.261 C 179.929 19.195 181.653 20.36 182.298 22.143 C 182.505 22.72 182.591 23.334 182.546 23.945 L 182.546 33.327 L 178.029 33.327 L 178.029 25.146 C 178.029 23.644 177.351 22.954 176.087 22.954 C 175.516 22.949 174.971 23.191 174.593 23.617 C 174.215 24.043 174.04 24.611 174.114 25.176 L 174.114 33.327 L 169.823 33.327 L 169.823 25.085 C 169.823 23.704 169.146 22.954 167.911 22.954 C 167.334 22.953 166.784 23.199 166.401 23.63 C 166.018 24.06 165.839 24.634 165.908 25.206 L 165.908 33.327 L 161.391 33.327 Z M 42.881 15.943 C 42.115 14.196 41.101 12.568 39.87 11.109 C 34.904 5.047 26.886 2.369 19.259 4.226 C 11.633 6.083 5.755 12.144 4.151 19.806 C 2.546 27.469 5.5 35.368 11.744 40.113 C 13.212 41.251 14.834 42.175 16.562 42.86 C 18.985 43.85 21.578 44.36 24.196 44.361 C 35.448 44.336 44.559 35.239 44.567 24.02 C 44.571 21.24 43.997 18.49 42.881 15.943 Z M 24.181 7.791 C 26.533 7.791 28.854 8.303 30.986 9.293 C 30.467 9.517 29.92 9.673 29.36 9.758 C 25.577 10.304 22.606 13.267 22.058 17.039 C 21.817 19.162 20.112 20.824 17.978 21.017 C 14.194 21.563 11.223 24.526 10.675 28.298 C 10.585 29.277 10.166 30.198 9.486 30.91 C 7.101 25.886 7.464 19.993 10.448 15.297 C 13.432 10.601 18.621 7.757 24.196 7.761 Z M 11.729 34.528 C 11.91 34.363 12.09 34.213 12.271 34.033 C 13.611 32.738 14.47 31.029 14.71 29.184 C 14.808 28.147 15.272 27.178 16.02 26.452 C 16.74 25.704 17.71 25.245 18.745 25.161 C 22.529 24.615 25.5 21.652 26.048 17.88 C 26.113 16.795 26.58 15.773 27.358 15.012 C 28.096 14.279 29.074 13.837 30.113 13.766 C 31.805 13.534 33.384 12.784 34.63 11.619 C 36.049 12.794 37.252 14.206 38.183 15.793 C 38.126 15.87 38.061 15.94 37.988 16.003 C 37.269 16.757 36.301 17.226 35.263 17.324 C 31.475 17.861 28.498 20.828 27.96 24.605 C 27.741 26.736 26.048 28.418 23.91 28.628 C 20.116 29.17 17.129 32.13 16.562 35.909 C 16.481 36.643 16.228 37.347 15.824 37.966 C 14.28 37.052 12.896 35.89 11.729 34.528 Z M 24.181 40.323 C 22.653 40.325 21.133 40.112 19.664 39.692 C 20.167 38.759 20.492 37.741 20.628 36.69 C 20.845 34.564 22.531 32.884 24.663 32.667 C 28.452 32.127 31.431 29.162 31.98 25.386 C 32.198 23.26 33.883 21.579 36.015 21.362 C 37.404 21.182 38.727 20.667 39.87 19.861 C 41.156 24.723 40.112 29.904 37.042 33.893 C 33.973 37.882 29.223 40.228 24.181 40.248 Z\" fill=\"hsl(0, 0%, 100%)\"></path></svg>',svgContentId:10351379501,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-494duu\",\"data-framer-name\":\"Logo 4\",layout:\"position\",name:\"Logo 4\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 117 46\"><path d=\"M 69.543 12.271 C 57.187 -0.116 37.154 -0.116 24.798 12.271 L 47.171 34.702 L 69.544 12.271 Z\" fill=\"hsl(0, 0%, 100%)\" opacity=\"0.5\"></path><path d=\"M 47.199 34.733 C 53.133 40.682 61.18 44.024 69.572 44.024 C 77.963 44.024 86.011 40.682 91.945 34.733 L 69.571 12.303 L 47.199 34.734 Z\" fill=\"hsl(0, 0%, 100%)\"></path><path d=\"M 47.143 34.729 C 34.787 47.116 14.754 47.116 2.398 34.729 L 24.771 12.298 Z\" fill=\"hsl(0, 0%, 100%)\"></path><path d=\"M 69.599 12.276 C 75.532 6.327 83.58 2.985 91.971 2.985 C 100.363 2.985 108.411 6.327 114.344 12.276 L 91.971 34.707 Z\" fill=\"hsl(0, 0%, 100%)\" opacity=\"0.5\"></path></svg>',svgContentId:12257620931,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-rk76b6\",\"data-framer-name\":\"Logo 5\",layout:\"position\",name:\"Logo 5\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 102 43\"><path d=\"M 72.959 0 L 101.88 0 L 76.903 42.157 L 47.982 42.157 Z\" fill=\"hsl(0, 0%, 100%)\"></path><path d=\"M 46.667 0 L 67.701 0 L 42.724 42.157 L 21.69 42.157 Z\" fill=\"hsl(0, 0%, 100%)\" opacity=\"0.5\"></path><path d=\"M 25.634 0 L 41.409 0 L 16.432 42.157 L 0.657 42.157 Z\" fill=\"hsl(0, 0%, 100%)\" opacity=\"0.2\"></path></svg>',svgContentId:11534780142,withExternalLayout:true})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-151ymix\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ynysad\",\"data-framer-name\":\"Conic\",name:\"Conic\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wd1824\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-17plhmh\",\"data-framer-name\":\"Conic\",name:\"Conic\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b3gdlb\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-17dh5al\",\"data-framer-name\":\"Conic\",name:\"Conic\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-4b00u8 hidden-1522uis\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-uw6n04\",\"data-framer-name\":\"Conic\",name:\"Conic\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-33ftpx hidden-1522uis\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c7uzxw\",\"data-framer-name\":\"Conic\",name:\"Conic\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-bn8lsk hidden-1522uis\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b0hd5r\",\"data-framer-name\":\"Conic\",name:\"Conic\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hxk48j hidden-1522uis\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-xq3hg0\",\"data-framer-name\":\"Conic\",name:\"Conic\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-xa0r89 hidden-1522uis\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-nh8wli\",\"data-framer-name\":\"Conic\",name:\"Conic\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i1xzz0\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-a8cigr\",\"data-framer-name\":\"Conic\",name:\"Conic\"})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-gmli8b\",\"data-framer-name\":\"Review\",name:\"Review\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dd986x\",\"data-framer-name\":\"Review\",name:\"Review\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-akdd0f\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-goqlhe\",\"data-framer-name\":\"Conic\",name:\"Conic\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qr14bu\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16bgioo\",\"data-framer-name\":\"Conic\",name:\"Conic\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pnbjm0\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wx59p6\",\"data-framer-name\":\"Conic\",name:\"Conic\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13yom93\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-29pk9s\",\"data-framer-name\":\"Conic\",name:\"Conic\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i4zaty\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-soxxpv\",\"data-framer-name\":\"Conic\",name:\"Conic\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ikyl2y\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-rf3tx1\",\"data-framer-name\":\"Conic\",name:\"Conic\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-na32ws\",\"data-styles-preset\":\"w8ue0e0VA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Review\"})}),className:\"framer-3s0nk6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kgi4bu\",\"data-framer-name\":\"Review\",name:\"Review\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sgwvmq\",\"data-styles-preset\":\"bI6GKu_j6\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-53cfa195-ba4f-4057-b79b-5cd9a06549ac, rgb(102, 102, 102))\"},children:\"\u201CFramer offers unrivaled versatility for crafting modern websites. Its intuitive interface and robust design tools make it a top choice for web developers. Whether you're a beginner or an expert, Framer empowers you to create visually stunning and responsive web experiences with ease.\u201D\"})}),className:\"framer-qaasub\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xl6pwm\",\"data-framer-name\":\"Frame\",name:\"Frame\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:4219,intrinsicWidth:3999,loading:getLoadingLazyAtYPosition(8337.8),pixelHeight:4219,pixelWidth:3999,positionX:\"center\",positionY:\"center\",sizes:\"60px\",src:\"https://framerusercontent.com/images/40InGbGLgywIZQhpl6WHYY9vco.jpg\",srcSet:\"https://framerusercontent.com/images/40InGbGLgywIZQhpl6WHYY9vco.jpg?scale-down-to=1024 970w,https://framerusercontent.com/images/40InGbGLgywIZQhpl6WHYY9vco.jpg?scale-down-to=2048 1941w,https://framerusercontent.com/images/40InGbGLgywIZQhpl6WHYY9vco.jpg?scale-down-to=4096 3882w,https://framerusercontent.com/images/40InGbGLgywIZQhpl6WHYY9vco.jpg 3999w\"}},XUJ0YgY4t:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:4219,intrinsicWidth:3999,loading:getLoadingLazyAtYPosition(8971.8),pixelHeight:4219,pixelWidth:3999,positionX:\"center\",positionY:\"center\",sizes:\"60px\",src:\"https://framerusercontent.com/images/40InGbGLgywIZQhpl6WHYY9vco.jpg\",srcSet:\"https://framerusercontent.com/images/40InGbGLgywIZQhpl6WHYY9vco.jpg?scale-down-to=1024 970w,https://framerusercontent.com/images/40InGbGLgywIZQhpl6WHYY9vco.jpg?scale-down-to=2048 1941w,https://framerusercontent.com/images/40InGbGLgywIZQhpl6WHYY9vco.jpg?scale-down-to=4096 3882w,https://framerusercontent.com/images/40InGbGLgywIZQhpl6WHYY9vco.jpg 3999w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:4219,intrinsicWidth:3999,loading:getLoadingLazyAtYPosition(8287.8),pixelHeight:4219,pixelWidth:3999,positionX:\"center\",positionY:\"center\",sizes:\"60px\",src:\"https://framerusercontent.com/images/40InGbGLgywIZQhpl6WHYY9vco.jpg\",srcSet:\"https://framerusercontent.com/images/40InGbGLgywIZQhpl6WHYY9vco.jpg?scale-down-to=1024 970w,https://framerusercontent.com/images/40InGbGLgywIZQhpl6WHYY9vco.jpg?scale-down-to=2048 1941w,https://framerusercontent.com/images/40InGbGLgywIZQhpl6WHYY9vco.jpg?scale-down-to=4096 3882w,https://framerusercontent.com/images/40InGbGLgywIZQhpl6WHYY9vco.jpg 3999w\"},className:\"framer-4i86iv\",\"data-framer-name\":\"Avatar\",name:\"Avatar\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dvo65d\",\"data-framer-name\":\"Frame\",name:\"Frame\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11dmyei\",\"data-styles-preset\":\"bwJstp0Sm\",style:{\"--framer-text-alignment\":\"center\"},children:\"Uzair J.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11dmyei\",\"data-styles-preset\":\"bwJstp0Sm\",children:\"Uzair J.\"})}),className:\"framer-1kxqz0h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1aolpk1\",\"data-styles-preset\":\"IKpw7apex\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-53cfa195-ba4f-4057-b79b-5cd9a06549ac, rgb(102, 102, 102))\"},children:\"@uzairj\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1aolpk1\",\"data-styles-preset\":\"IKpw7apex\",style:{\"--framer-text-color\":\"var(--token-53cfa195-ba4f-4057-b79b-5cd9a06549ac, rgb(102, 102, 102))\"},children:\"@uzairj\"})}),className:\"framer-qg0e0y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]})}),/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18pa795\",\"data-framer-name\":\"FAQ\",name:\"FAQ\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-na32ws\",\"data-styles-preset\":\"w8ue0e0VA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Frequently Asked Questions\"})}),className:\"framer-19bx9yh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1djpfsj\",\"data-framer-name\":\"Frame\",name:\"Frame\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{width:\"min(100vw - 50px, 1000px)\",y:8801.8},XUJ0YgY4t:{width:\"min(100vw - 60px, 700px)\",y:9446.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:\"min(100vw - 80px, 1000px)\",y:8762.8,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pp9v0u-container\",\"data-framer-name\":\"Question 1\",name:\"Question 1\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RowCopy2,{height:\"100%\",id:\"lA9WWeQW8\",layoutId:\"lA9WWeQW8\",name:\"Question 1\",style:{width:\"100%\"},T8rQFvSBR:\"IONS specializes in AI-driven services, including AI-Enhanced Customer Support, Personalized Product Recommendations, AI-Optimized Marketing Campaigns, Innovative AI Solutions, Predictive Analytics for Business Growth, and Intelligent Workflow Automation.\",variant:\"ujBYBnyBU\",W88zB8mIG:\"What services does IONS offer?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{width:\"min(100vw - 50px, 1000px)\",y:8938.8},XUJ0YgY4t:{width:\"min(100vw - 60px, 700px)\",y:9583.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:\"min(100vw - 80px, 1000px)\",y:8899.8,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vfszsm-container\",\"data-framer-name\":\"Question 2\",name:\"Question 2\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RowCopy2,{height:\"100%\",id:\"gEzT9GxtQ\",layoutId:\"gEzT9GxtQ\",name:\"Question 2\",style:{width:\"100%\"},T8rQFvSBR:\"Our AI-Enhanced Customer Support uses chatbots and automation to quickly respond to customer inquiries, providing efficient support that enhances user experience and satisfaction.\",variant:\"ujBYBnyBU\",W88zB8mIG:\"How does AI-Enhanced Customer Support work?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{width:\"min(100vw - 50px, 1000px)\",y:9075.8},XUJ0YgY4t:{width:\"min(100vw - 60px, 700px)\",y:9720.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:\"min(100vw - 80px, 1000px)\",y:9036.8,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xnn8mr-container\",\"data-framer-name\":\"Question 3\",name:\"Question 3\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RowCopy2,{height:\"100%\",id:\"jev37akka\",layoutId:\"jev37akka\",name:\"Question 3\",style:{width:\"100%\"},T8rQFvSBR:\"Absolutely! We utilize AI to analyze user preferences and behaviors, delivering personalized recommendations that increase customer engagement and sales.\",variant:\"ujBYBnyBU\",W88zB8mIG:\"Can IONS help with personalized product recommendations for my e-commerce site?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{width:\"min(100vw - 50px, 1000px)\",y:9212.8},XUJ0YgY4t:{width:\"min(100vw - 60px, 700px)\",y:9857.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:\"min(100vw - 80px, 1000px)\",y:9173.8,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pada5p-container\",\"data-framer-name\":\"Question 4\",name:\"Question 4\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RowCopy2,{height:\"100%\",id:\"hJn2so7sc\",layoutId:\"hJn2so7sc\",name:\"Question 4\",style:{width:\"100%\"},T8rQFvSBR:\"IONS' AI-optimized marketing leverages advanced targeting and analytics to boost campaign performance, ensuring your message reaches the right audience at the right time.\",variant:\"ujBYBnyBU\",W88zB8mIG:\"How can AI-Optimized Marketing Campaigns benefit my business?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{width:\"min(100vw - 50px, 1000px)\",y:9349.8},XUJ0YgY4t:{width:\"min(100vw - 60px, 700px)\",y:9994.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:\"min(100vw - 80px, 1000px)\",y:9310.8,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xcolyy-container\",\"data-framer-name\":\"Question 5\",name:\"Question 5\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RowCopy2,{height:\"100%\",id:\"kJyoq2Ebf\",layoutId:\"kJyoq2Ebf\",name:\"Question 5\",style:{width:\"100%\"},T8rQFvSBR:\"Our Predictive Analytics service uses data forecasting to identify upcoming trends, enabling you to make strategic decisions that drive growth and prepare for market shifts.\",variant:\"ujBYBnyBU\",W88zB8mIG:\"What are Predictive Analytics, and how can they help my business?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{width:\"min(100vw - 50px, 1000px)\",y:9486.8},XUJ0YgY4t:{width:\"min(100vw - 60px, 700px)\",y:10131.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:\"min(100vw - 80px, 1000px)\",y:9447.8,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qiafpo-container\",\"data-framer-name\":\"Question 6\",name:\"Question 6\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RowCopy2,{height:\"100%\",id:\"a5Dqxo3Fs\",layoutId:\"a5Dqxo3Fs\",name:\"Question 6\",style:{width:\"100%\"},T8rQFvSBR:\"IONS offers customized AI solutions tailored to your unique business challenges, driving innovation, improving efficiency, and unlocking new growth opportunities.\",variant:\"ujBYBnyBU\",W88zB8mIG:\"Why should I choose IONS for AI solutions?\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7k2242-container\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"ygo08C7iU\",intensity:16,layoutId:\"ygo08C7iU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{y:9848.8},XUJ0YgY4t:{y:10543.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:338,width:\"100vw\",y:9859.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-89q2m8-container\",\"data-framer-name\":\"Footer\",name:\"Footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f_FlAyAUN:{variant:\"pQULaJL4h\"},XUJ0YgY4t:{variant:\"iR1dDKwPT\"}},children:/*#__PURE__*/_jsx(FooterDarkCopy2,{height:\"100%\",id:\"kd72pFp6Z\",layoutId:\"kd72pFp6Z\",name:\"Footer\",style:{width:\"100%\"},variant:\"PiTBvLAF_\",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-tLhZr { background: hsl(0, 0%, 0%); }`,\".framer-tLhZr.framer-lux5qc, .framer-tLhZr .framer-lux5qc { display: block; }\",\".framer-tLhZr.framer-72rtr7 { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 170px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-tLhZr .framer-1yj4cd7-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-tLhZr .framer-nujp5a { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 80px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-tLhZr .framer-17h202l, .framer-tLhZr .framer-pdwmbu, .framer-tLhZr .framer-1m5norx, .framer-tLhZr .framer-1w2q3zz, .framer-tLhZr .framer-cx76rs, .framer-tLhZr .framer-n1sfoy, .framer-tLhZr .framer-1707mxb, .framer-tLhZr .framer-181sq2n, .framer-tLhZr .framer-f3sfci, .framer-tLhZr .framer-w1c5em, .framer-tLhZr .framer-1epgb0m { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-tLhZr .framer-1fonqmc { -webkit-filter: blur(70px); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; filter: blur(70px); flex: none; height: 400px; overflow: visible; position: relative; width: 400px; z-index: 1; }\",\".framer-tLhZr .framer-gjgmxb { background: conic-gradient(from 0deg at 50% 50%, #f1eaea 0deg, #CED4DA 43.54026837547084deg, #ADB5BD 106.69924423399361deg, #212529 181.45945945945948deg, #343A40 207.56756756756758deg, #343A40 247.13513513513516deg, #6C757D 306.00000000000006deg); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; bottom: -372px; flex: none; left: -21px; opacity: 0.8; overflow: hidden; position: absolute; right: 21px; top: 372px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLhZr .framer-2zbo02, .framer-tLhZr .framer-goqlhe, .framer-tLhZr .framer-16bgioo, .framer-tLhZr .framer-1wx59p6, .framer-tLhZr .framer-29pk9s, .framer-tLhZr .framer-soxxpv, .framer-tLhZr .framer-rf3tx1 { background: conic-gradient(from 0deg at 50% 50%, #343A40 0deg, #ffffff 118.37837837837837deg, hsl(0, 20%, 98%) 162.16216216216213deg); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: 300px; left: calc(50.00000000000002% - 300px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 300px / 2); width: 300px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLhZr .framer-pmrc75 { -webkit-filter: blur(32px); aspect-ratio: 1 / 1; border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; filter: blur(32px); flex: none; height: var(--framer-aspect-ratio-supported, 300px); left: 0px; mix-blend-mode: overlay; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-tLhZr .framer-198ospl { background: conic-gradient(from 0deg at 50% 50%, #bdbdbd 0deg, hsl(0, 0%, 14%) 180deg, hsl(0, 0%, 4%) 360deg); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; bottom: 0px; flex: none; overflow: hidden; position: absolute; right: -8px; top: 0px; width: 300px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLhZr .framer-1rh3722 { flex: none; height: 110px; overflow: hidden; position: relative; width: 100%; }\",\".framer-tLhZr .framer-6sgsgw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-tLhZr .framer-1q8ydsr { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-tLhZr .framer-11sq4n6 { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-tLhZr .framer-1so9hi0 { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-tLhZr .framer-qo9ac5, .framer-tLhZr .framer-1vpetcn, .framer-tLhZr .framer-gmli8b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-tLhZr .framer-1tfa8rk { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: hidden; padding: 0px 20px 0px 60px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-tLhZr .framer-190hpva { flex: none; height: 320px; left: -24px; overflow: visible; position: absolute; top: -61px; width: 283px; z-index: 1; }\",\".framer-tLhZr .framer-1s3efmf { -webkit-filter: blur(32px); aspect-ratio: 1 / 1; border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; bottom: 0px; filter: blur(32px); flex: none; height: var(--framer-aspect-ratio-supported, 283px); left: 0px; mix-blend-mode: overlay; overflow: visible; position: absolute; right: 0px; }\",\".framer-tLhZr .framer-1i5qs45 { background: conic-gradient(from 0deg at 50% 50%, #bdbdbd 0deg, hsl(0, 0%, 14%) 180deg, hsl(0, 0%, 4%) 360deg); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: 136px; left: 17px; overflow: hidden; position: absolute; top: 23px; width: 150px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLhZr .framer-8ucmlw { -webkit-filter: blur(100px); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; filter: blur(100px); flex: none; height: 166px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-tLhZr .framer-199x3fc { background: conic-gradient(from 0deg at 50% 50%, #343A40 0deg, #ffffff 118.37837837837837deg, hsl(0, 20%, 98%) 162.16216216216213deg); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: 91px; left: 25px; overflow: hidden; position: absolute; top: 30px; width: 119px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLhZr .framer-wd0hye { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-tLhZr .framer-1aht0bk, .framer-tLhZr .framer-pzyp3i, .framer-tLhZr .framer-fsj384, .framer-tLhZr .framer-b5l8k5, .framer-tLhZr .framer-1puv0wn, .framer-tLhZr .framer-l7ku9g, .framer-tLhZr .framer-a1415b, .framer-tLhZr .framer-stxdc3, .framer-tLhZr .framer-hi7aoy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-tLhZr .framer-3jjaev, .framer-tLhZr .framer-1wxernd, .framer-tLhZr .framer-g1b6gx, .framer-tLhZr .framer-th1t2r, .framer-tLhZr .framer-13m54y2, .framer-tLhZr .framer-1e5sdpn, .framer-tLhZr .framer-112b8vo, .framer-tLhZr .framer-174fql2, .framer-tLhZr .framer-11zzkpu, .framer-tLhZr .framer-1u1wk0m, .framer-tLhZr .framer-p36zoq, .framer-tLhZr .framer-urhidg, .framer-tLhZr .framer-65cc17, .framer-tLhZr .framer-1579gz3, .framer-tLhZr .framer-wd9hwq { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-tLhZr .framer-1os0n0d-container, .framer-tLhZr .framer-15713nk-container, .framer-tLhZr .framer-1itd6xj-container, .framer-tLhZr .framer-12d1rbt-container, .framer-tLhZr .framer-p7r3yd-container { flex: none; height: 42px; position: relative; width: auto; }\",\".framer-tLhZr .framer-pow4b7 { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: 1 0 0px; height: 505px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-tLhZr .framer-1b02e2b { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; bottom: 43px; flex: none; height: 241px; left: 18px; overflow: hidden; position: absolute; width: 284px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-tLhZr .framer-158mfhz { -webkit-filter: blur(100px); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; bottom: 1px; filter: blur(100px); flex: none; height: 203px; overflow: visible; position: absolute; right: -40px; width: 195px; z-index: 1; }\",\".framer-tLhZr .framer-rf31ke { background: conic-gradient(from 0deg at 50% 50%, #343A40 0deg, #ffffff 118.37837837837837deg, hsl(0, 20%, 98%) 162.16216216216213deg); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; bottom: -48px; flex: none; height: 170px; overflow: hidden; position: absolute; right: -7px; width: 178px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLhZr .framer-kefcdu { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 40px 60px 40px; position: relative; width: 100%; }\",\".framer-tLhZr .framer-npa13j { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1200px; padding: 0px; position: relative; width: 100%; }\",\".framer-tLhZr .framer-1b7yn27, .framer-tLhZr .framer-9nli2b { 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-tLhZr .framer-1kwcspa-container, .framer-tLhZr .framer-ofo6ld-container, .framer-tLhZr .framer-1xldzmk-container, .framer-tLhZr .framer-19n54gs-container, .framer-tLhZr .framer-1p37icm-container, .framer-tLhZr .framer-1pp9v0u-container, .framer-tLhZr .framer-1vfszsm-container, .framer-tLhZr .framer-1xnn8mr-container, .framer-tLhZr .framer-1pada5p-container, .framer-tLhZr .framer-xcolyy-container, .framer-tLhZr .framer-qiafpo-container, .framer-tLhZr .framer-89q2m8-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-tLhZr .framer-ak5tey { 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: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-tLhZr .framer-nzy9mf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tLhZr .framer-mx8xve, .framer-tLhZr .framer-1hy1ld3 { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 590px; justify-content: space-between; overflow: hidden; padding: 20px 30px 20px 30px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-tLhZr .framer-hsdgk0, .framer-tLhZr .framer-18lw4a0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; min-height: 36px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tLhZr .framer-g45odl, .framer-tLhZr .framer-1qlhgu3 { -webkit-filter: blur(100px); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; filter: blur(100px); flex: none; height: 125px; left: 129px; overflow: visible; position: absolute; top: -51px; width: 97px; z-index: 1; }\",\".framer-tLhZr .framer-gvibkb, .framer-tLhZr .framer-8vi1l3 { background: conic-gradient(from 0deg at 50% 50%, #343A40 0deg, #ffffff 118.37837837837837deg, hsl(0, 20%, 98%) 162.16216216216213deg); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; bottom: -64px; flex: none; left: -243px; overflow: hidden; position: absolute; top: -65px; width: 257px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLhZr .framer-hk59qp, .framer-tLhZr .framer-g4pgnv { flex: none; height: 430px; overflow: hidden; position: relative; width: 430px; }\",\".framer-tLhZr .framer-1w4cxz5, .framer-tLhZr .framer-wc3uti { -webkit-filter: blur(100px); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; bottom: 3px; filter: blur(100px); flex: none; height: 118px; left: calc(48.51851851851854% - 119px / 2); overflow: visible; position: absolute; width: 119px; z-index: 1; }\",\".framer-tLhZr .framer-1iornsi, .framer-tLhZr .framer-1n8wxr5 { background: conic-gradient(from 0deg at 50% 50%, #343A40 0deg, #ffffff 118.37837837837837deg, hsl(0, 20%, 98%) 162.16216216216213deg); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; bottom: -172px; flex: none; height: 251px; overflow: hidden; position: absolute; right: -244px; width: 257px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLhZr .framer-1vhu0ka, .framer-tLhZr .framer-161e1pu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tLhZr .framer-1qctngi, .framer-tLhZr .framer-1h83e6s { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-tLhZr .framer-1uibda0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-tLhZr .framer-1vmvjd1, .framer-tLhZr .framer-1kdn2uj { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-tLhZr .framer-1yvoinz-container { flex: none; height: 430px; max-width: 1200px; position: relative; width: 100%; }\",\".framer-tLhZr .framer-8oed0z, .framer-tLhZr .framer-x059lh, .framer-tLhZr .framer-2ozlnh, .framer-tLhZr .framer-173dvfv, .framer-tLhZr .framer-1i42bdz, .framer-tLhZr .framer-kmi5rw, .framer-tLhZr .framer-1egq8kq { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 390px; justify-content: center; overflow: hidden; padding: 15px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-tLhZr .framer-bre96b, .framer-tLhZr .framer-1pm29zb, .framer-tLhZr .framer-mxlsgv, .framer-tLhZr .framer-1d3iko9, .framer-tLhZr .framer-1a9mkm2, .framer-tLhZr .framer-1hp15qv, .framer-tLhZr .framer-1hi2tav { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 100%; justify-content: flex-start; padding: 30px; position: relative; width: 1px; }\",\".framer-tLhZr .framer-lk4l61, .framer-tLhZr .framer-1ij2mm5, .framer-tLhZr .framer-vo2ugw, .framer-tLhZr .framer-1ms21ds, .framer-tLhZr .framer-pth2l3, .framer-tLhZr .framer-pya5vu, .framer-tLhZr .framer-z5p49q, .framer-tLhZr .framer-106hp3o, .framer-tLhZr .framer-f9e1o4, .framer-tLhZr .framer-b10kf8, .framer-tLhZr .framer-1jnwpai, .framer-tLhZr .framer-1w92u2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tLhZr .framer-5z0uxn, .framer-tLhZr .framer-1rkemjg, .framer-tLhZr .framer-1fw4p5s, .framer-tLhZr .framer-cc43ho, .framer-tLhZr .framer-16c5vfy, .framer-tLhZr .framer-14mysga, .framer-tLhZr .framer-1jk992n, .framer-tLhZr .framer-1hrczc8, .framer-tLhZr .framer-1nde29d { 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; }\",\".framer-tLhZr .framer-zhtwtr, .framer-tLhZr .framer-1515bd1, .framer-tLhZr .framer-yvqhwq, .framer-tLhZr .framer-1tf6o6, .framer-tLhZr .framer-nl22fl, .framer-tLhZr .framer-oiesjf, .framer-tLhZr .framer-1tks6b8, .framer-tLhZr .framer-1q1t9aq, .framer-tLhZr .framer-polz0m, .framer-tLhZr .framer-1vjeys, .framer-tLhZr .framer-evktl, .framer-tLhZr .framer-3owsxv { -webkit-filter: blur(100px); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; filter: blur(100px); flex: none; height: 122px; left: 373px; overflow: visible; position: absolute; top: -82px; width: 121px; z-index: 1; }\",\".framer-tLhZr .framer-1dgk290, .framer-tLhZr .framer-1su85, .framer-tLhZr .framer-cqx8jk, .framer-tLhZr .framer-aafe8n, .framer-tLhZr .framer-90pljf, .framer-tLhZr .framer-oc32zm, .framer-tLhZr .framer-d43kf6, .framer-tLhZr .framer-1k1z5kc, .framer-tLhZr .framer-qheh8w, .framer-tLhZr .framer-1cowq79, .framer-tLhZr .framer-1ol92wu, .framer-tLhZr .framer-1qaj458 { background: conic-gradient(from 0deg at 50% 50%, #343A40 0deg, #ffffff 118.37837837837837deg, hsl(0, 20%, 98%) 162.16216216216213deg); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; bottom: -16px; flex: none; height: 127px; left: -158px; overflow: hidden; position: absolute; width: 133px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLhZr .framer-11j559t, .framer-tLhZr .framer-19dhalq, .framer-tLhZr .framer-qnwrrx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 200px; }\",\".framer-tLhZr .framer-18zxlbd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-tLhZr .framer-pz28mv { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(0, 0, 0, 0); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 590px; justify-content: space-between; max-width: 1200px; overflow: hidden; padding: 0px 50px 0px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-tLhZr .framer-dpnioy { flex: none; height: 590px; overflow: hidden; position: relative; width: 560px; }\",\".framer-tLhZr .framer-5rwzfm { -webkit-filter: blur(100px); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; bottom: 0px; filter: blur(100px); flex: none; height: 99px; left: 428px; overflow: visible; position: absolute; width: 112px; z-index: 1; }\",\".framer-tLhZr .framer-jkkifi { background: conic-gradient(from 0deg at 50% 50%, #343A40 0deg, #ffffff 118.37837837837837deg, hsl(0, 20%, 98%) 162.16216216216213deg); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; bottom: -172px; flex: none; height: 251px; overflow: hidden; position: absolute; right: -688px; width: 582px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLhZr .framer-1nbjyks { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 460px; }\",\".framer-tLhZr .framer-ixei77-container { flex: none; height: 161px; max-width: 1200px; position: relative; width: 100%; }\",\".framer-tLhZr .framer-2u5838 { background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; height: 140px; overflow: hidden; position: relative; width: 1012px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLhZr .framer-ul1lbs { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 30px; position: absolute; top: 49%; transform: translateY(-50%); white-space: pre; width: auto; }\",\".framer-tLhZr .framer-14k13ce { align-content: center; align-items: center; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 600px; justify-content: center; max-width: 1200px; overflow: hidden; padding: 60px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLhZr .framer-1ogqk5g { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-tLhZr .framer-1g1bp2h { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 390px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-tLhZr .framer-xmc167 { background-color: rgba(0, 0, 0, 0.5); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-tLhZr .framer-uja89t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-tLhZr .framer-8yq0xw { 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: 670px; }\",\".framer-tLhZr .framer-1dtrz1v-container { flex: none; height: 503px; position: relative; width: 100%; }\",\".framer-tLhZr .framer-1oab8ts, .framer-tLhZr .framer-ay8rbq, .framer-tLhZr .framer-5jvjt7, .framer-tLhZr .framer-r4twh4, .framer-tLhZr .framer-158oq49 { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 410px; justify-content: center; overflow: hidden; padding: 15px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-tLhZr .framer-1nt1k0n, .framer-tLhZr .framer-yf7v68, .framer-tLhZr .framer-1wbkk0, .framer-tLhZr .framer-1t3wms3, .framer-tLhZr .framer-k6j9oi { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 1px; justify-content: flex-start; padding: 30px; position: relative; width: 100%; }\",\".framer-tLhZr .framer-1oo7sfk, .framer-tLhZr .framer-1hq0afx, .framer-tLhZr .framer-1u86jgr, .framer-tLhZr .framer-1g30yel, .framer-tLhZr .framer-zi59gj { aspect-ratio: 1 / 1; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLhZr .framer-mjzxv, .framer-tLhZr .framer-ha9eno, .framer-tLhZr .framer-etpign, .framer-tLhZr .framer-esd2x, .framer-tLhZr .framer-jkapk9, .framer-tLhZr .framer-cwrslv, .framer-tLhZr .framer-bh60ck, .framer-tLhZr .framer-18b56ft, .framer-tLhZr .framer-1956bw8, .framer-tLhZr .framer-ny0lsg, .framer-tLhZr .framer-11j7d, .framer-tLhZr .framer-3s0nk6, .framer-tLhZr .framer-1kxqz0h, .framer-tLhZr .framer-qg0e0y, .framer-tLhZr .framer-19bx9yh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-tLhZr .framer-15zndtt, .framer-tLhZr .framer-o3zz4a, .framer-tLhZr .framer-gezusv, .framer-tLhZr .framer-18ot57r, .framer-tLhZr .framer-68w51d { -webkit-filter: blur(100px); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; bottom: -61px; filter: blur(100px); flex: none; height: 110px; left: 58px; overflow: visible; position: absolute; width: 109px; z-index: 1; }\",\".framer-tLhZr .framer-2xe1uw, .framer-tLhZr .framer-16kxcbg, .framer-tLhZr .framer-10xz4us, .framer-tLhZr .framer-1lcv4rh, .framer-tLhZr .framer-1k6kuup { background: conic-gradient(from 0deg at 50% 50%, #343A40 0deg, #ffffff 118.37837837837837deg, hsl(0, 20%, 98%) 162.16216216216213deg); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; bottom: -219px; flex: none; height: 314px; overflow: hidden; position: absolute; right: -193px; width: 206px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLhZr .framer-19qo3e7 { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 40px 60px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-tLhZr .framer-1712cpg { align-content: center; align-items: center; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 56px 40px 56px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-tLhZr .framer-bo6feh-container { flex: none; height: 120px; position: relative; width: 100%; }\",\".framer-tLhZr .framer-no9d19 { height: 53px; position: relative; width: 53px; }\",\".framer-tLhZr .framer-1wwkehy { height: 55px; position: relative; width: 107px; }\",\".framer-tLhZr .framer-l3f7zp { height: 49px; position: relative; width: 186px; }\",\".framer-tLhZr .framer-494duu { height: 46px; position: relative; width: 117px; }\",\".framer-tLhZr .framer-rk76b6 { height: 43px; position: relative; width: 102px; }\",\".framer-tLhZr .framer-151ymix { -webkit-filter: blur(100px); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; bottom: -61px; filter: blur(100px); flex: none; height: 110px; left: -108px; overflow: visible; position: absolute; width: 109px; z-index: 1; }\",\".framer-tLhZr .framer-ynysad, .framer-tLhZr .framer-17plhmh, .framer-tLhZr .framer-17dh5al, .framer-tLhZr .framer-uw6n04, .framer-tLhZr .framer-1c7uzxw, .framer-tLhZr .framer-1b0hd5r, .framer-tLhZr .framer-xq3hg0, .framer-tLhZr .framer-nh8wli, .framer-tLhZr .framer-a8cigr { background: conic-gradient(from 0deg at 50% 50%, #343A40 0deg, #ffffff 118.37837837837837deg, hsl(0, 20%, 98%) 162.16216216216213deg); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; bottom: -219px; flex: none; height: 314px; opacity: 0.5; overflow: hidden; position: absolute; right: -193px; width: 206px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLhZr .framer-wd1824 { -webkit-filter: blur(100px); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; bottom: -61px; filter: blur(100px); flex: none; height: 110px; left: 57px; overflow: visible; position: absolute; width: 109px; z-index: 1; }\",\".framer-tLhZr .framer-1b3gdlb { -webkit-filter: blur(100px); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; bottom: -61px; filter: blur(100px); flex: none; height: 110px; left: 235px; overflow: visible; position: absolute; width: 109px; z-index: 1; }\",\".framer-tLhZr .framer-4b00u8 { -webkit-filter: blur(100px); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; bottom: -61px; filter: blur(100px); flex: none; height: 110px; left: 402px; overflow: visible; position: absolute; width: 109px; z-index: 1; }\",\".framer-tLhZr .framer-33ftpx { -webkit-filter: blur(100px); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; bottom: -122px; filter: blur(100px); flex: none; height: 110px; left: 402px; overflow: visible; position: absolute; width: 109px; z-index: 1; }\",\".framer-tLhZr .framer-bn8lsk { -webkit-filter: blur(100px); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; bottom: -61px; filter: blur(100px); flex: none; height: 110px; overflow: visible; position: absolute; right: 420px; width: 109px; z-index: 1; }\",\".framer-tLhZr .framer-1hxk48j { -webkit-filter: blur(100px); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; bottom: -122px; filter: blur(100px); flex: none; height: 110px; overflow: visible; position: absolute; right: 426px; width: 109px; z-index: 1; }\",\".framer-tLhZr .framer-xa0r89 { -webkit-filter: blur(100px); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; bottom: -61px; filter: blur(100px); flex: none; height: 110px; left: 788px; overflow: visible; position: absolute; width: 109px; z-index: 1; }\",\".framer-tLhZr .framer-i1xzz0 { -webkit-filter: blur(100px); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; bottom: -86px; filter: blur(100px); flex: none; height: 110px; overflow: visible; position: absolute; right: 122px; width: 109px; z-index: 1; }\",\".framer-tLhZr .framer-1dd986x { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 61px 40px 61px 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-tLhZr .framer-akdd0f { -webkit-filter: blur(70px); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; filter: blur(70px); flex: none; height: 400px; left: -376px; overflow: visible; position: absolute; top: -141px; width: 400px; z-index: 1; }\",\".framer-tLhZr .framer-1qr14bu { -webkit-filter: blur(70px); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; filter: blur(70px); flex: none; height: 400px; overflow: visible; position: absolute; right: -375px; top: -125px; width: 400px; z-index: 1; }\",\".framer-tLhZr .framer-pnbjm0 { -webkit-filter: blur(70px); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; bottom: -125px; filter: blur(70px); flex: none; height: 400px; left: -376px; overflow: visible; position: absolute; width: 400px; z-index: 1; }\",\".framer-tLhZr .framer-13yom93 { -webkit-filter: blur(70px); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; bottom: -109px; filter: blur(70px); flex: none; height: 400px; overflow: visible; position: absolute; right: -375px; width: 400px; z-index: 1; }\",\".framer-tLhZr .framer-i4zaty { -webkit-filter: blur(70px); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; filter: blur(70px); flex: none; height: 400px; left: -376px; overflow: visible; position: absolute; top: calc(47.09090909090911% - 400px / 2); width: 400px; z-index: 1; }\",\".framer-tLhZr .framer-ikyl2y { -webkit-filter: blur(70px); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; filter: blur(70px); flex: none; height: 400px; overflow: visible; position: absolute; right: -375px; top: calc(47.09090909090911% - 400px / 2); width: 400px; z-index: 1; }\",\".framer-tLhZr .framer-kgi4bu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-tLhZr .framer-qaasub { flex: none; height: auto; max-width: 700px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-tLhZr .framer-xl6pwm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-tLhZr .framer-4i86iv { aspect-ratio: 1 / 1; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: hidden; position: relative; width: 60px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLhZr .framer-1dvo65d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-tLhZr .framer-18pa795 { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLhZr .framer-1djpfsj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tLhZr .framer-7k2242-container { flex: none; height: auto; position: relative; width: auto; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tLhZr.framer-72rtr7, .framer-tLhZr .framer-nujp5a, .framer-tLhZr .framer-6sgsgw, .framer-tLhZr .framer-1q8ydsr, .framer-tLhZr .framer-11sq4n6, .framer-tLhZr .framer-1so9hi0, .framer-tLhZr .framer-qo9ac5, .framer-tLhZr .framer-wd0hye, .framer-tLhZr .framer-kefcdu, .framer-tLhZr .framer-npa13j, .framer-tLhZr .framer-1b7yn27, .framer-tLhZr .framer-9nli2b, .framer-tLhZr .framer-ak5tey, .framer-tLhZr .framer-nzy9mf, .framer-tLhZr .framer-1uibda0, .framer-tLhZr .framer-8oed0z, .framer-tLhZr .framer-bre96b, .framer-tLhZr .framer-lk4l61, .framer-tLhZr .framer-5z0uxn, .framer-tLhZr .framer-x059lh, .framer-tLhZr .framer-1pm29zb, .framer-tLhZr .framer-1ij2mm5, .framer-tLhZr .framer-1rkemjg, .framer-tLhZr .framer-2ozlnh, .framer-tLhZr .framer-mxlsgv, .framer-tLhZr .framer-vo2ugw, .framer-tLhZr .framer-1fw4p5s, .framer-tLhZr .framer-173dvfv, .framer-tLhZr .framer-1d3iko9, .framer-tLhZr .framer-1ms21ds, .framer-tLhZr .framer-cc43ho, .framer-tLhZr .framer-1i42bdz, .framer-tLhZr .framer-1a9mkm2, .framer-tLhZr .framer-pth2l3, .framer-tLhZr .framer-11j559t, .framer-tLhZr .framer-kmi5rw, .framer-tLhZr .framer-1hp15qv, .framer-tLhZr .framer-pya5vu, .framer-tLhZr .framer-19dhalq, .framer-tLhZr .framer-1egq8kq, .framer-tLhZr .framer-1hi2tav, .framer-tLhZr .framer-z5p49q, .framer-tLhZr .framer-qnwrrx, .framer-tLhZr .framer-18zxlbd, .framer-tLhZr .framer-1nbjyks, .framer-tLhZr .framer-1vpetcn, .framer-tLhZr .framer-14k13ce, .framer-tLhZr .framer-uja89t, .framer-tLhZr .framer-8yq0xw, .framer-tLhZr .framer-1oab8ts, .framer-tLhZr .framer-1nt1k0n, .framer-tLhZr .framer-106hp3o, .framer-tLhZr .framer-16c5vfy, .framer-tLhZr .framer-ay8rbq, .framer-tLhZr .framer-yf7v68, .framer-tLhZr .framer-f9e1o4, .framer-tLhZr .framer-14mysga, .framer-tLhZr .framer-5jvjt7, .framer-tLhZr .framer-1wbkk0, .framer-tLhZr .framer-b10kf8, .framer-tLhZr .framer-1jk992n, .framer-tLhZr .framer-r4twh4, .framer-tLhZr .framer-1t3wms3, .framer-tLhZr .framer-1jnwpai, .framer-tLhZr .framer-1hrczc8, .framer-tLhZr .framer-158oq49, .framer-tLhZr .framer-k6j9oi, .framer-tLhZr .framer-1w92u2, .framer-tLhZr .framer-1nde29d, .framer-tLhZr .framer-19qo3e7, .framer-tLhZr .framer-1712cpg, .framer-tLhZr .framer-gmli8b, .framer-tLhZr .framer-1dd986x, .framer-tLhZr .framer-kgi4bu, .framer-tLhZr .framer-xl6pwm, .framer-tLhZr .framer-1dvo65d, .framer-tLhZr .framer-18pa795, .framer-tLhZr .framer-1djpfsj { gap: 0px; } .framer-tLhZr.framer-72rtr7 > *, .framer-tLhZr .framer-5z0uxn > *, .framer-tLhZr .framer-1rkemjg > *, .framer-tLhZr .framer-1fw4p5s > *, .framer-tLhZr .framer-cc43ho > *, .framer-tLhZr .framer-11j559t > *, .framer-tLhZr .framer-19dhalq > *, .framer-tLhZr .framer-qnwrrx > *, .framer-tLhZr .framer-16c5vfy > *, .framer-tLhZr .framer-14mysga > *, .framer-tLhZr .framer-1jk992n > *, .framer-tLhZr .framer-1hrczc8 > *, .framer-tLhZr .framer-1nde29d > *, .framer-tLhZr .framer-1dvo65d > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-tLhZr.framer-72rtr7 > :first-child, .framer-tLhZr .framer-nujp5a > :first-child, .framer-tLhZr .framer-6sgsgw > :first-child, .framer-tLhZr .framer-wd0hye > :first-child, .framer-tLhZr .framer-kefcdu > :first-child, .framer-tLhZr .framer-npa13j > :first-child, .framer-tLhZr .framer-1b7yn27 > :first-child, .framer-tLhZr .framer-9nli2b > :first-child, .framer-tLhZr .framer-ak5tey > :first-child, .framer-tLhZr .framer-1uibda0 > :first-child, .framer-tLhZr .framer-bre96b > :first-child, .framer-tLhZr .framer-5z0uxn > :first-child, .framer-tLhZr .framer-1pm29zb > :first-child, .framer-tLhZr .framer-1rkemjg > :first-child, .framer-tLhZr .framer-mxlsgv > :first-child, .framer-tLhZr .framer-1fw4p5s > :first-child, .framer-tLhZr .framer-1d3iko9 > :first-child, .framer-tLhZr .framer-cc43ho > :first-child, .framer-tLhZr .framer-1a9mkm2 > :first-child, .framer-tLhZr .framer-11j559t > :first-child, .framer-tLhZr .framer-1hp15qv > :first-child, .framer-tLhZr .framer-19dhalq > :first-child, .framer-tLhZr .framer-1hi2tav > :first-child, .framer-tLhZr .framer-qnwrrx > :first-child, .framer-tLhZr .framer-18zxlbd > :first-child, .framer-tLhZr .framer-1nbjyks > :first-child, .framer-tLhZr .framer-14k13ce > :first-child, .framer-tLhZr .framer-uja89t > :first-child, .framer-tLhZr .framer-8yq0xw > :first-child, .framer-tLhZr .framer-1oab8ts > :first-child, .framer-tLhZr .framer-1nt1k0n > :first-child, .framer-tLhZr .framer-16c5vfy > :first-child, .framer-tLhZr .framer-ay8rbq > :first-child, .framer-tLhZr .framer-yf7v68 > :first-child, .framer-tLhZr .framer-14mysga > :first-child, .framer-tLhZr .framer-5jvjt7 > :first-child, .framer-tLhZr .framer-1wbkk0 > :first-child, .framer-tLhZr .framer-1jk992n > :first-child, .framer-tLhZr .framer-r4twh4 > :first-child, .framer-tLhZr .framer-1t3wms3 > :first-child, .framer-tLhZr .framer-1hrczc8 > :first-child, .framer-tLhZr .framer-158oq49 > :first-child, .framer-tLhZr .framer-k6j9oi > :first-child, .framer-tLhZr .framer-1nde29d > :first-child, .framer-tLhZr .framer-19qo3e7 > :first-child, .framer-tLhZr .framer-1712cpg > :first-child, .framer-tLhZr .framer-1dd986x > :first-child, .framer-tLhZr .framer-kgi4bu > :first-child, .framer-tLhZr .framer-1dvo65d > :first-child, .framer-tLhZr .framer-18pa795 > :first-child, .framer-tLhZr .framer-1djpfsj > :first-child { margin-top: 0px; } .framer-tLhZr.framer-72rtr7 > :last-child, .framer-tLhZr .framer-nujp5a > :last-child, .framer-tLhZr .framer-6sgsgw > :last-child, .framer-tLhZr .framer-wd0hye > :last-child, .framer-tLhZr .framer-kefcdu > :last-child, .framer-tLhZr .framer-npa13j > :last-child, .framer-tLhZr .framer-1b7yn27 > :last-child, .framer-tLhZr .framer-9nli2b > :last-child, .framer-tLhZr .framer-ak5tey > :last-child, .framer-tLhZr .framer-1uibda0 > :last-child, .framer-tLhZr .framer-bre96b > :last-child, .framer-tLhZr .framer-5z0uxn > :last-child, .framer-tLhZr .framer-1pm29zb > :last-child, .framer-tLhZr .framer-1rkemjg > :last-child, .framer-tLhZr .framer-mxlsgv > :last-child, .framer-tLhZr .framer-1fw4p5s > :last-child, .framer-tLhZr .framer-1d3iko9 > :last-child, .framer-tLhZr .framer-cc43ho > :last-child, .framer-tLhZr .framer-1a9mkm2 > :last-child, .framer-tLhZr .framer-11j559t > :last-child, .framer-tLhZr .framer-1hp15qv > :last-child, .framer-tLhZr .framer-19dhalq > :last-child, .framer-tLhZr .framer-1hi2tav > :last-child, .framer-tLhZr .framer-qnwrrx > :last-child, .framer-tLhZr .framer-18zxlbd > :last-child, .framer-tLhZr .framer-1nbjyks > :last-child, .framer-tLhZr .framer-14k13ce > :last-child, .framer-tLhZr .framer-uja89t > :last-child, .framer-tLhZr .framer-8yq0xw > :last-child, .framer-tLhZr .framer-1oab8ts > :last-child, .framer-tLhZr .framer-1nt1k0n > :last-child, .framer-tLhZr .framer-16c5vfy > :last-child, .framer-tLhZr .framer-ay8rbq > :last-child, .framer-tLhZr .framer-yf7v68 > :last-child, .framer-tLhZr .framer-14mysga > :last-child, .framer-tLhZr .framer-5jvjt7 > :last-child, .framer-tLhZr .framer-1wbkk0 > :last-child, .framer-tLhZr .framer-1jk992n > :last-child, .framer-tLhZr .framer-r4twh4 > :last-child, .framer-tLhZr .framer-1t3wms3 > :last-child, .framer-tLhZr .framer-1hrczc8 > :last-child, .framer-tLhZr .framer-158oq49 > :last-child, .framer-tLhZr .framer-k6j9oi > :last-child, .framer-tLhZr .framer-1nde29d > :last-child, .framer-tLhZr .framer-19qo3e7 > :last-child, .framer-tLhZr .framer-1712cpg > :last-child, .framer-tLhZr .framer-1dd986x > :last-child, .framer-tLhZr .framer-kgi4bu > :last-child, .framer-tLhZr .framer-1dvo65d > :last-child, .framer-tLhZr .framer-18pa795 > :last-child, .framer-tLhZr .framer-1djpfsj > :last-child { margin-bottom: 0px; } .framer-tLhZr .framer-nujp5a > *, .framer-tLhZr .framer-kefcdu > *, .framer-tLhZr .framer-1b7yn27 > *, .framer-tLhZr .framer-9nli2b > *, .framer-tLhZr .framer-ak5tey > *, .framer-tLhZr .framer-8yq0xw > *, .framer-tLhZr .framer-1oab8ts > *, .framer-tLhZr .framer-ay8rbq > *, .framer-tLhZr .framer-5jvjt7 > *, .framer-tLhZr .framer-r4twh4 > *, .framer-tLhZr .framer-158oq49 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-tLhZr .framer-6sgsgw > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-tLhZr .framer-1q8ydsr > *, .framer-tLhZr .framer-nzy9mf > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-tLhZr .framer-1q8ydsr > :first-child, .framer-tLhZr .framer-11sq4n6 > :first-child, .framer-tLhZr .framer-1so9hi0 > :first-child, .framer-tLhZr .framer-qo9ac5 > :first-child, .framer-tLhZr .framer-nzy9mf > :first-child, .framer-tLhZr .framer-8oed0z > :first-child, .framer-tLhZr .framer-lk4l61 > :first-child, .framer-tLhZr .framer-x059lh > :first-child, .framer-tLhZr .framer-1ij2mm5 > :first-child, .framer-tLhZr .framer-2ozlnh > :first-child, .framer-tLhZr .framer-vo2ugw > :first-child, .framer-tLhZr .framer-173dvfv > :first-child, .framer-tLhZr .framer-1ms21ds > :first-child, .framer-tLhZr .framer-1i42bdz > :first-child, .framer-tLhZr .framer-pth2l3 > :first-child, .framer-tLhZr .framer-kmi5rw > :first-child, .framer-tLhZr .framer-pya5vu > :first-child, .framer-tLhZr .framer-1egq8kq > :first-child, .framer-tLhZr .framer-z5p49q > :first-child, .framer-tLhZr .framer-1vpetcn > :first-child, .framer-tLhZr .framer-106hp3o > :first-child, .framer-tLhZr .framer-f9e1o4 > :first-child, .framer-tLhZr .framer-b10kf8 > :first-child, .framer-tLhZr .framer-1jnwpai > :first-child, .framer-tLhZr .framer-1w92u2 > :first-child, .framer-tLhZr .framer-gmli8b > :first-child, .framer-tLhZr .framer-xl6pwm > :first-child { margin-left: 0px; } .framer-tLhZr .framer-1q8ydsr > :last-child, .framer-tLhZr .framer-11sq4n6 > :last-child, .framer-tLhZr .framer-1so9hi0 > :last-child, .framer-tLhZr .framer-qo9ac5 > :last-child, .framer-tLhZr .framer-nzy9mf > :last-child, .framer-tLhZr .framer-8oed0z > :last-child, .framer-tLhZr .framer-lk4l61 > :last-child, .framer-tLhZr .framer-x059lh > :last-child, .framer-tLhZr .framer-1ij2mm5 > :last-child, .framer-tLhZr .framer-2ozlnh > :last-child, .framer-tLhZr .framer-vo2ugw > :last-child, .framer-tLhZr .framer-173dvfv > :last-child, .framer-tLhZr .framer-1ms21ds > :last-child, .framer-tLhZr .framer-1i42bdz > :last-child, .framer-tLhZr .framer-pth2l3 > :last-child, .framer-tLhZr .framer-kmi5rw > :last-child, .framer-tLhZr .framer-pya5vu > :last-child, .framer-tLhZr .framer-1egq8kq > :last-child, .framer-tLhZr .framer-z5p49q > :last-child, .framer-tLhZr .framer-1vpetcn > :last-child, .framer-tLhZr .framer-106hp3o > :last-child, .framer-tLhZr .framer-f9e1o4 > :last-child, .framer-tLhZr .framer-b10kf8 > :last-child, .framer-tLhZr .framer-1jnwpai > :last-child, .framer-tLhZr .framer-1w92u2 > :last-child, .framer-tLhZr .framer-gmli8b > :last-child, .framer-tLhZr .framer-xl6pwm > :last-child { margin-right: 0px; } .framer-tLhZr .framer-11sq4n6 > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-tLhZr .framer-1so9hi0 > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-tLhZr .framer-qo9ac5 > *, .framer-tLhZr .framer-8oed0z > *, .framer-tLhZr .framer-x059lh > *, .framer-tLhZr .framer-2ozlnh > *, .framer-tLhZr .framer-173dvfv > *, .framer-tLhZr .framer-1i42bdz > *, .framer-tLhZr .framer-kmi5rw > *, .framer-tLhZr .framer-1egq8kq > *, .framer-tLhZr .framer-1vpetcn > *, .framer-tLhZr .framer-gmli8b > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-tLhZr .framer-wd0hye > *, .framer-tLhZr .framer-1nbjyks > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-tLhZr .framer-npa13j > *, .framer-tLhZr .framer-kgi4bu > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-tLhZr .framer-1uibda0 > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-tLhZr .framer-bre96b > *, .framer-tLhZr .framer-1pm29zb > *, .framer-tLhZr .framer-mxlsgv > *, .framer-tLhZr .framer-1d3iko9 > *, .framer-tLhZr .framer-1a9mkm2 > *, .framer-tLhZr .framer-1hp15qv > *, .framer-tLhZr .framer-1hi2tav > *, .framer-tLhZr .framer-1nt1k0n > *, .framer-tLhZr .framer-yf7v68 > *, .framer-tLhZr .framer-1wbkk0 > *, .framer-tLhZr .framer-1t3wms3 > *, .framer-tLhZr .framer-k6j9oi > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-tLhZr .framer-lk4l61 > *, .framer-tLhZr .framer-1ij2mm5 > *, .framer-tLhZr .framer-vo2ugw > *, .framer-tLhZr .framer-1ms21ds > *, .framer-tLhZr .framer-pth2l3 > *, .framer-tLhZr .framer-pya5vu > *, .framer-tLhZr .framer-z5p49q > *, .framer-tLhZr .framer-106hp3o > *, .framer-tLhZr .framer-f9e1o4 > *, .framer-tLhZr .framer-b10kf8 > *, .framer-tLhZr .framer-1jnwpai > *, .framer-tLhZr .framer-1w92u2 > *, .framer-tLhZr .framer-xl6pwm > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-tLhZr .framer-18zxlbd > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-tLhZr .framer-14k13ce > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-tLhZr .framer-uja89t > *, .framer-tLhZr .framer-1712cpg > *, .framer-tLhZr .framer-18pa795 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-tLhZr .framer-19qo3e7 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-tLhZr .framer-1dd986x > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-tLhZr .framer-1djpfsj > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-tLhZr { background: hsl(0, 0%, 0%); } .framer-tLhZr.framer-72rtr7 { width: 810px; } .framer-tLhZr .framer-nujp5a { padding: 0px 0px 150px 0px; } .framer-tLhZr .framer-1fonqmc { height: 317px; width: 355px; } .framer-tLhZr .framer-gjgmxb { bottom: -412px; right: -13px; } .framer-tLhZr .framer-1rh3722 { height: 130px; } .framer-tLhZr .framer-11sq4n6 { gap: 70px; } .framer-tLhZr .framer-qo9ac5, .framer-tLhZr .framer-ak5tey, .framer-tLhZr .framer-18zxlbd, .framer-tLhZr .framer-1vpetcn, .framer-tLhZr .framer-uja89t, .framer-tLhZr .framer-gmli8b, .framer-tLhZr .framer-18pa795 { padding: 100px 30px 100px 30px; } .framer-tLhZr .framer-1tfa8rk { flex-direction: column; gap: 0px; justify-content: center; padding: 75px 0px 20px 0px; } .framer-tLhZr .framer-wd0hye { flex: none; gap: 14px; padding: 2px 40px 2px 40px; width: 100%; } .framer-tLhZr .framer-pow4b7 { flex: none; height: 418px; width: 526px; } .framer-tLhZr .framer-1b02e2b { bottom: unset; height: 291px; left: calc(30.12820512820515% - 344px / 2); top: calc(69.32773109243699% - 291px / 2); width: 344px; } .framer-tLhZr .framer-kefcdu, .framer-tLhZr .framer-19qo3e7 { padding: 60px 30px 60px 30px; } .framer-tLhZr .framer-nzy9mf { flex-direction: column; } .framer-tLhZr .framer-mx8xve, .framer-tLhZr .framer-1hy1ld3 { flex: none; height: 641px; width: 100%; } .framer-tLhZr .framer-pz28mv { height: 399px; padding: 0px; } .framer-tLhZr .framer-dpnioy { height: 399px; width: 356px; } .framer-tLhZr .framer-jkkifi { right: -299px; width: 366px; } .framer-tLhZr .framer-1nbjyks { flex: 1 0 0px; gap: 33px; padding: 25px; width: 1px; } .framer-tLhZr .framer-ixei77-container { width: 809px; } .framer-tLhZr .framer-14k13ce { height: 453px; order: 0; } .framer-tLhZr .framer-xmc167 { top: calc(49.88962472406183% - 100% / 2); } .framer-tLhZr .framer-8yq0xw { width: 565px; } .framer-tLhZr .framer-1dtrz1v-container { height: 470px; } .framer-tLhZr .framer-151ymix { left: -116px; } .framer-tLhZr .framer-wd1824 { left: 58px; } .framer-tLhZr .framer-1b3gdlb { left: 246px; } .framer-tLhZr .framer-4b00u8 { left: unset; right: 218px; } .framer-tLhZr .framer-33ftpx { left: unset; right: 107px; } .framer-tLhZr .framer-bn8lsk { right: 404px; } .framer-tLhZr .framer-1hxk48j { right: 501px; } .framer-tLhZr .framer-xa0r89 { left: unset; right: 40px; } .framer-tLhZr .framer-i1xzz0 { right: -56px; } .framer-tLhZr .framer-qaasub { max-width: 600px; } .framer-tLhZr .framer-1djpfsj { max-width: 700px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tLhZr .framer-11sq4n6, .framer-tLhZr .framer-1tfa8rk, .framer-tLhZr .framer-wd0hye, .framer-tLhZr .framer-nzy9mf, .framer-tLhZr .framer-1nbjyks { gap: 0px; } .framer-tLhZr .framer-11sq4n6 > * { margin: 0px; margin-left: calc(70px / 2); margin-right: calc(70px / 2); } .framer-tLhZr .framer-11sq4n6 > :first-child { margin-left: 0px; } .framer-tLhZr .framer-11sq4n6 > :last-child { margin-right: 0px; } .framer-tLhZr .framer-1tfa8rk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-tLhZr .framer-1tfa8rk > :first-child, .framer-tLhZr .framer-wd0hye > :first-child, .framer-tLhZr .framer-nzy9mf > :first-child, .framer-tLhZr .framer-1nbjyks > :first-child { margin-top: 0px; } .framer-tLhZr .framer-1tfa8rk > :last-child, .framer-tLhZr .framer-wd0hye > :last-child, .framer-tLhZr .framer-nzy9mf > :last-child, .framer-tLhZr .framer-1nbjyks > :last-child { margin-bottom: 0px; } .framer-tLhZr .framer-wd0hye > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-tLhZr .framer-nzy9mf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-tLhZr .framer-1nbjyks > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-tLhZr { background: hsl(0, 0%, 0%); } .framer-tLhZr.framer-72rtr7 { padding: 220px 0px 0px 0px; width: 390px; } .framer-tLhZr .framer-1fonqmc { height: 197px; width: 155px; } .framer-tLhZr .framer-gjgmxb { bottom: -308px; left: -92px; right: -59px; top: 175px; } .framer-tLhZr .framer-2zbo02 { height: 232px; left: -27px; right: -28px; top: -101px; width: unset; } .framer-tLhZr .framer-pmrc75 { bottom: -201px; height: var(--framer-aspect-ratio-supported, 219px); left: unset; right: -14px; top: unset; width: 219px; } .framer-tLhZr .framer-198ospl { bottom: unset; height: 156px; left: 27px; right: unset; top: 18px; width: 106px; } .framer-tLhZr .framer-1rh3722 { height: 60px; } .framer-tLhZr .framer-6sgsgw, .framer-tLhZr .framer-1b7yn27, .framer-tLhZr .framer-9nli2b { gap: 20px; } .framer-tLhZr .framer-1q8ydsr, .framer-tLhZr .framer-bo6feh-container, .framer-tLhZr .framer-1djpfsj { order: 1; } .framer-tLhZr .framer-11sq4n6 { gap: 40px; order: 0; } .framer-tLhZr .framer-1so9hi0 { gap: 70px; order: 2; } .framer-tLhZr .framer-qo9ac5, .framer-tLhZr .framer-ak5tey, .framer-tLhZr .framer-1vpetcn, .framer-tLhZr .framer-gmli8b { padding: 100px 25px 100px 25px; } .framer-tLhZr .framer-1tfa8rk { flex-direction: column; gap: 0px; justify-content: center; padding: 40px 10px 15px 10px; } .framer-tLhZr .framer-wd0hye { flex: none; gap: 25px; padding: 20px; width: 100%; } .framer-tLhZr .framer-pow4b7 { flex: none; height: 264px; width: 320px; } .framer-tLhZr .framer-1b02e2b { bottom: unset; height: 176px; left: calc(30.03300330033006% - 178px / 2); top: calc(66.66666666666669% - 176px / 2); width: 178px; } .framer-tLhZr .framer-kefcdu { padding: 25px; } .framer-tLhZr .framer-npa13j { gap: 25px; } .framer-tLhZr .framer-nzy9mf, .framer-tLhZr .framer-xl6pwm { flex-direction: column; } .framer-tLhZr .framer-mx8xve, .framer-tLhZr .framer-1hy1ld3 { flex: none; height: 512px; padding: 20px; width: 100%; } .framer-tLhZr .framer-hk59qp, .framer-tLhZr .framer-g4pgnv { height: 337px; width: 242px; } .framer-tLhZr .framer-1uibda0, .framer-tLhZr .framer-uja89t { gap: 50px; padding: 50px 0px 100px 0px; } .framer-tLhZr .framer-1vmvjd1, .framer-tLhZr .framer-1kdn2uj { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-tLhZr .framer-18zxlbd { padding: 0px 25px 100px 25px; } .framer-tLhZr .framer-pz28mv { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; height: min-content; justify-content: center; padding: 0px 0px 30px 0px; } .framer-tLhZr .framer-dpnioy { height: 276px; width: 340px; } .framer-tLhZr .framer-jkkifi { left: -338px; right: unset; width: 350px; } .framer-tLhZr .framer-1nbjyks { gap: 48px; padding: 0px 30px 0px 30px; width: 100%; } .framer-tLhZr .framer-ixei77-container { width: 391px; } .framer-tLhZr .framer-14k13ce { height: 541px; } .framer-tLhZr .framer-xmc167 { top: calc(49.90757855822553% - 100% / 2); } .framer-tLhZr .framer-8yq0xw { padding: 0px 25px 0px 25px; width: 100%; } .framer-tLhZr .framer-1dtrz1v-container { height: 478px; } .framer-tLhZr .framer-19qo3e7 { padding: 60px 25px 60px 25px; } .framer-tLhZr .framer-1712cpg { gap: 120px; padding: 0px; } .framer-tLhZr .framer-11j7d, .framer-tLhZr .framer-19bx9yh { order: 0; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-tLhZr .framer-151ymix { left: -153px; order: 4; } .framer-tLhZr .framer-wd1824 { left: 28px; order: 2; } .framer-tLhZr .framer-1b3gdlb { order: 3; } .framer-tLhZr .framer-i1xzz0 { order: 6; } .framer-tLhZr .framer-1dvo65d { align-content: center; align-items: center; } .framer-tLhZr .framer-18pa795 { gap: 70px; padding: 50px 25px 50px 25px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tLhZr .framer-6sgsgw, .framer-tLhZr .framer-11sq4n6, .framer-tLhZr .framer-1so9hi0, .framer-tLhZr .framer-1tfa8rk, .framer-tLhZr .framer-wd0hye, .framer-tLhZr .framer-npa13j, .framer-tLhZr .framer-1b7yn27, .framer-tLhZr .framer-9nli2b, .framer-tLhZr .framer-nzy9mf, .framer-tLhZr .framer-1uibda0, .framer-tLhZr .framer-pz28mv, .framer-tLhZr .framer-1nbjyks, .framer-tLhZr .framer-uja89t, .framer-tLhZr .framer-1712cpg, .framer-tLhZr .framer-xl6pwm, .framer-tLhZr .framer-18pa795 { gap: 0px; } .framer-tLhZr .framer-6sgsgw > *, .framer-tLhZr .framer-1b7yn27 > *, .framer-tLhZr .framer-9nli2b > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-tLhZr .framer-6sgsgw > :first-child, .framer-tLhZr .framer-1tfa8rk > :first-child, .framer-tLhZr .framer-wd0hye > :first-child, .framer-tLhZr .framer-npa13j > :first-child, .framer-tLhZr .framer-1b7yn27 > :first-child, .framer-tLhZr .framer-9nli2b > :first-child, .framer-tLhZr .framer-nzy9mf > :first-child, .framer-tLhZr .framer-1uibda0 > :first-child, .framer-tLhZr .framer-pz28mv > :first-child, .framer-tLhZr .framer-1nbjyks > :first-child, .framer-tLhZr .framer-uja89t > :first-child, .framer-tLhZr .framer-1712cpg > :first-child, .framer-tLhZr .framer-xl6pwm > :first-child, .framer-tLhZr .framer-18pa795 > :first-child { margin-top: 0px; } .framer-tLhZr .framer-6sgsgw > :last-child, .framer-tLhZr .framer-1tfa8rk > :last-child, .framer-tLhZr .framer-wd0hye > :last-child, .framer-tLhZr .framer-npa13j > :last-child, .framer-tLhZr .framer-1b7yn27 > :last-child, .framer-tLhZr .framer-9nli2b > :last-child, .framer-tLhZr .framer-nzy9mf > :last-child, .framer-tLhZr .framer-1uibda0 > :last-child, .framer-tLhZr .framer-pz28mv > :last-child, .framer-tLhZr .framer-1nbjyks > :last-child, .framer-tLhZr .framer-uja89t > :last-child, .framer-tLhZr .framer-1712cpg > :last-child, .framer-tLhZr .framer-xl6pwm > :last-child, .framer-tLhZr .framer-18pa795 > :last-child { margin-bottom: 0px; } .framer-tLhZr .framer-11sq4n6 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-tLhZr .framer-11sq4n6 > :first-child, .framer-tLhZr .framer-1so9hi0 > :first-child { margin-left: 0px; } .framer-tLhZr .framer-11sq4n6 > :last-child, .framer-tLhZr .framer-1so9hi0 > :last-child { margin-right: 0px; } .framer-tLhZr .framer-1so9hi0 > * { margin: 0px; margin-left: calc(70px / 2); margin-right: calc(70px / 2); } .framer-tLhZr .framer-1tfa8rk > *, .framer-tLhZr .framer-pz28mv > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-tLhZr .framer-wd0hye > *, .framer-tLhZr .framer-npa13j > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-tLhZr .framer-nzy9mf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-tLhZr .framer-1uibda0 > *, .framer-tLhZr .framer-uja89t > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-tLhZr .framer-1nbjyks > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-tLhZr .framer-1712cpg > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-tLhZr .framer-xl6pwm > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-tLhZr .framer-18pa795 > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-tLhZr[data-border=\"true\"]::after, .framer-tLhZr [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9163\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"XUJ0YgY4t\":{\"layout\":[\"fixed\",\"auto\"]},\"f_FlAyAUN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-tLhZr\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:9163,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\"},{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{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/PONfPc6h4EPYwJliXQBmjVx7QxI.woff2\",weight:\"800\"},{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/zsnJN7Z1wdzUvepJniD3rbvJIyU.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/UrzZBOy7RyJEWAZGduzOeHiHuY.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/996sR9SfSDuYELz8oHhDOcErkY.woff2\",weight:\"800\"},{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/ftN1HpyPVJEoEb4q36SOrNdLXU.woff2\",weight:\"800\"},{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/jN39PDxZWEwjG7Csryx3JN2r2Y.woff2\",weight:\"800\"},{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/JAur4lGGSGRGyrFi59JSIKqVgU.woff2\",weight:\"800\"}]},...TopbarFonts,...MoreFonts,...TextColorAnimationFonts,...TextColorAnimation1Fonts,...TextColorAnimation2Fonts,...TextColorAnimation3Fonts,...TextColorAnimation4Fonts,...TickerFonts,...RowCopy2Fonts,...SmoothScrollFonts,...FooterDarkCopy2Fonts,...BlendedFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"9163\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XUJ0YgY4t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f_FlAyAUN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "2qCAAgY,IAAMA,GAAqB,IAAUC,GAAS,IAAUC,GAAa,kBAAwBC,GAAc,OAAO,UAAY,KAAa,OAAO,UAAU,UAAU,oBAAqB,WAAeC,GAAyB,GAAK,GAAG,OAAOC,EAAS,IAAa,GAAG,CAACA,EAAO,IAAI,iBAAiB,CAAC,KAAKH,GAAa,OAAO,WAAW,aAAa,MAAM,SAAS,EAAK,CAAC,CAAE,MAAC,CAASE,GAAyB,EAAM,CASxwB,SAARE,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,GAAY,SAAAC,GAAS,UAAAC,EAAU,UAAAC,EAAU,UAAAC,CAAS,EAAEN,EAAiB,CAAC,UAAAO,EAAU,WAAAC,EAAU,EAAET,EAAoBU,GAAanB,EAAe,GAAGC,OAAgBC,OAAkBC,OAAmBC,MAAgB,GAAGL,MAA8BqB,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAC5fC,GAAczB,EAAM,OAAO,OAAO,EAAQ0B,GAAYC,GAAS,MAAMF,EAAa,EAAQG,GAAYF,GAAY,EAAKhB,IAAY,KAAMA,EAAU,QAAQ,IAAMmB,GAAanB,IAAY,QAAQA,IAAY,QAAcoB,GAAOC,GAAe,CAAC,EAAQC,GAAKH,GAAa,IAAI,IAAUI,GAAMvB,IAAY,QAAQA,IAAY,MAAM,IAAI,GAASwB,GAAUC,GAAa,IAAI,YAAYH,MAAQC,KAAQH,GAAO,IAAI,MAAM,EAA4BM,GAAUC,EAAO,IAAI,EAAQC,GAAYC,GAAQ,IAAW,CAAcC,GAAU,EAAeA,GAAU,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,KAAK,aAAa,IAAI,CAAC,EAAkBC,GAAe,CAAC,EAAMC,GAAc,CAAC,EAA2BC,GAAY,EAAMC,GAAQ,EAAKxB,IAAUuB,GAAYpB,GAAY,KAAK,MAAM,GAAGA,EAAW,EAAE,EAAEqB,GAAQ,GAAM,CAACxB,GAAUK,IAAaa,EAAK,SAAQK,GAAY,KAAK,MAAML,EAAK,OAAOA,EAAK,SAAS,CAAC,EAAE,EAAEK,GAAY,KAAK,IAAIA,GAAYtD,EAAoB,EAAEuD,GAAQ,GAAG,IAAMC,GAAiBP,EAAK,eAAe,KAAK,KAAKA,EAAK,cAAcK,GAAY,GAASG,EAAcD,KAAmB,KAAK,KAAKA,GAAiBvD,GAA6CyD,GAAQC,GAAY,IAAI,CAAC,GAAGvB,IAAaQ,GAAU,QAAQ,CAAC,IAAMgB,EAAavB,GAAaO,GAAU,QAAQ,YAAYA,GAAU,QAAQ,aAAkB,CAACiB,EAAWC,CAAS,EAAEhB,GAAkBiB,EAAaF,EAAW,QAAQA,EAAW,QAAQ,WAAW,EAAQG,EAAcF,EAAU,QAAQA,EAAU,QAAQ,WAAWA,EAAU,QAAQ,YAAY,EAAQG,EAAYJ,EAAW,QAAQA,EAAW,QAAQ,UAAU,EAAQK,EAAeJ,EAAU,QAAQA,EAAU,QAAQ,UAAUA,EAAU,QAAQ,aAAa,EAAQK,GAAcH,EAAcD,EAAmBK,GAAeF,EAAeD,EAAkBI,GAAaF,GAAcC,GAAqBE,IAAgBjC,GAAa8B,GAAcC,IAAgB3D,EAAIyC,GAAQ,CAAC,OAAOU,EAAa,SAASU,GAAe,aAAAD,EAAY,CAAC,EAAG,EAAE,CAAC,CAAC,EAAQE,GAAexC,EAAS,CAAC,kBAAkB,MAAM,EAAE,CAAC,EAAwC,GAAGK,GAAY,CACjkE,GAAG,CAACL,EAAS,CAGE,IAAIyC,EAAc3B,EAAO,EAAI,EAAE4B,EAAU,KAAKC,GAAM,KAAKhB,EAAO,EAASiB,GAAO/B,GAAU,QAAQ,CAAC,CAAC,YAAAgC,CAAW,IAAI,CAAI,CAACJ,EAAc,UAAUI,EAAY,OAAOA,EAAY,SAASF,GAAM,KAAKhB,EAAO,EAAGc,EAAc,QAAQ,EAAM,CAAC,GAAI,CAAC,CAAC,EAAGpB,GAAejB,GAAS,IAAIF,GAAc,CAAC4C,EAAMC,IAAQ,CAAC,IAAIC,EAAaC,EAAcC,EAAcC,EAAc,IAAIC,EAAOL,IAAQ,IAAGK,EAAIrC,GAAY,CAAC,GAAMgC,IAAQ7C,GAAc,OAAO,IAAGkD,EAAIrC,GAAY,CAAC,GAAG,IAAMG,GAAK,CAAC,MAAMrB,GAAWmD,EAAaF,EAAM,SAAS,MAAME,IAAe,OAAO,OAAOA,EAAa,MAAM,OAAO,OAAOlD,IAAYmD,EAAcH,EAAM,SAAS,MAAMG,IAAgB,OAAO,OAAOA,EAAc,OAAO,MAAM,EAAE,OAAoBI,EAAKC,GAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,IAAID,EAAI,MAAMlC,GAAK,SAAsBqC,GAAaT,EAAM,CAAC,MAAM,CAAC,IAAII,EAAcJ,EAAM,SAAS,MAAMI,IAAgB,OAAO,OAAOA,EAAc,MAAM,GAAGhC,GAAK,WAAW,EAAE,GAAGsB,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,EAAEJ,EAAM,WAAW,CAAE,CAAC,EAAG,GAAG,CAAC/C,EAAU,QAAQwD,EAAE,EAAEA,EAAEjC,GAAYiC,IAAKlC,GAAc,CAAC,GAAGA,GAAc,GAAGlB,GAAS,IAAIF,GAAc,CAAC4C,EAAMW,IAAa,CAAC,IAAIT,EAAaC,EAAcC,EAAcC,EAAcO,GAAcC,GAAc,IAAMzC,GAAK,CAAC,MAAMrB,GAAWmD,EAAaF,EAAM,SAAS,MAAME,IAAe,OAAO,OAAOA,EAAa,MAAM,OAAO,OAAOlD,IAAYmD,EAAcH,EAAM,SAAS,MAAMG,IAAgB,OAAO,OAAOA,EAAc,OAAO,OAAO,WAAWvB,IAAgB,GAAK,OAAO,WAAW,EAAE,OAAoB2B,EAAKC,GAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,MAAMnC,GAAK,cAAc,GAAK,SAAsBqC,GAAaT,EAAM,CAAC,IAAIU,EAAE,IAAIC,EAAW,MAAM,CAAC,IAAIP,EAAcJ,EAAM,SAAS,MAAMI,IAAgB,OAAO,OAAOA,EAAc,MAAM,MAAMrD,GAAWsD,EAAcL,EAAM,SAAS,MAAMK,IAAgB,OAAO,OAAOA,EAAc,MAAM,OAAO,OAAOrD,IAAY4D,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,EAAe1C,EAAK,SAASA,EAAK,SAAS,KAAK,MAAMA,EAAK,OAAOA,EAAK,QAAQ,EAAQ2C,GAAY/C,EAAO,IAAI,EAAQgD,GAAShD,EAAO,IAAI,EAAQiD,GAAKjD,EAAO,CAAC,EAAQkD,GAAQlD,EAAO,EAAK,EAAQmD,GAAgBC,GAAiB,EAAQC,GAAQrD,EAAO,IAAI,EAAQsD,EAAatD,EAAO,IAAI,EAE3oF,GAAG,CAACd,EAAS,CAAC,IAAMqE,EAASC,GAAUzD,EAAS,EAEzCzC,KAAgB,CAACsD,GAAeA,GAAerD,KAA2BqE,EAAU,IAAI,CAAC,GAAGuB,IAAiB,CAACL,GAAgB,CAAC3E,GAAOyC,IAAgB,KAAM,OAAQ,GAAGA,EAAe,GAAG,CAACpD,EAAO,IAAI,iBAAiB,CAAC,KAAKH,GAAa,OAAO,WAAW,aAAa,MAAM,SAAS,EAAK,CAAC,CAAE,MAAC,CAAS,CAGpS,IAAMoG,EAAU7C,EAAc,CAAC,CAACvD,EAAY,EAAE,CAAC,MAAM,GAAGuC,KAAQkD,KAAkB,CAAC,EAAE,CAAC,UAAU,CAAC,YAAYnD,UAAY,YAAYA,MAAQC,KAAQkD,MAAmB,CAAC,EAAE,OAAAQ,EAAa,QAAQD,GAAQ,QAAQ,QAAQI,EAAU,CAAC,SAAS,KAAK,IAAIX,CAAc,EAAE3E,EAAM,IAAI,WAAW,IAAS,OAAO,QAAQ,CAAC,EAAQ,IAAImF,EAAa,QAAQ,OAAO,CAAE,EAAE,CAAClF,EAAY0E,EAAe3E,EAAMyC,CAAa,CAAC,EAClagB,EAAU,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,GAG9NG,GAAkBC,GAAG,CAAC,GAAG,CAACb,GAAgBK,IAAiB7F,GAAe,OAKnEyF,GAAY,UAAU,OAAMA,GAAY,QAAQY,GAAGA,EAAEA,EAAEZ,GAAY,QAAqE,IAAIa,GAAjDZ,GAAS,UAAU,KAAK,EAAEW,EAAEX,GAAS,UAA6B7E,EAAM,KAAQ+E,GAAQ,UAASU,GAAOxF,GAAa6E,GAAK,SAASW,EAAMX,GAAK,QAAQY,GAAK,EAAEf,EAAeG,GAAK,OAAO,EAAED,GAAS,QAAQW,EAAMJ,GAAgB9D,GAAO,IAAIwD,GAAK,OAAO,CAAE,CAAC,EAAe,IAAMa,GAActE,GAAa,WAAW,YAAkBuE,GAAenF,EAAU,EAAQoF,GAAa,IAAIpF,EAAU,EAAQqF,GAAeC,GAAMrF,EAAU,EAAEkF,EAAc,EAAQI,GAAa,IAAItF,EAAgBuF,GAAS,mBAAmBN,qBAAgChF,MAAcmF,yBAAqCF,yBAAqCC,sBAAgClF,MAAcqF,OAAkC,OAAI5E,GAAkWgD,EAAK,UAAU,CAAC,MAAM,CAAC,GAAG8B,GAAe,QAAQ3D,GAAQ,gBAAgBhC,GAAY0F,GAAS,OAAU,aAAa1F,GAAY0F,GAAS,OAAU,UAAU1F,GAAY0F,GAAS,OAAU,SAASzF,GAAS,UAAU,SAAS,QAAQM,EAAY,EAAE,IAAIc,GAAU,SAAsBuE,EAAMC,EAAO,GAAG,CAAC,IAAIlB,GAAQ,MAAM,CAAC,GAAGgB,GAAe,IAAIzG,EAAI,IAAIS,IAAY,UAAUmG,GAAc1B,CAAc,EAAE,CAACA,EAAe,OAAU,KAAKzE,IAAY,SAASmG,GAAc1B,CAAc,EAAE,CAACA,EAAe,OAAU,WAAWxE,EAAU,SAAS,WAAW,cAAckB,GAAa,MAAM,SAAS,GAAGf,GAAM,WAAWS,GAAU0B,EAAc,OAAO,YAAY,UAAUtD,GAAcsD,EAAc,YAAYjB,UAAYtC,OAAiB,OAAOwC,EAAS,EAAE,aAAa,IAAI,CAACqD,GAAQ,QAAQ,GAAQI,EAAa,UACv8DA,EAAa,QAAQ,aAAalF,EAAa,EAAE,aAAa,IAAI,CAAC8E,GAAQ,QAAQ,GAASI,EAAa,UACzGA,EAAa,QAAQ,aAAa,EAAG,EAAE,SAAS,CAAC/C,GAAeC,EAAa,CAAC,CAAC,CAAC,CAAC,EAF6wB8D,EAAM,UAAU,CAAC,MAAMG,GAAkB,SAAS,CAAclC,EAAK,MAAM,CAAC,MAAMmC,GAAY,SAAS,QAAG,CAAC,EAAenC,EAAK,IAAI,CAAC,MAAMoC,GAAY,SAAS,oBAAoB,CAAC,EAAepC,EAAK,IAAI,CAAC,MAAMqC,GAAe,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAErjC,CAAyBnH,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,EAAyBoH,EAAoBpH,GAAO,CAAC,MAAM,CAAC,KAAKqH,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,OAAOpH,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKoH,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOpH,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKoH,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOpH,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKoH,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOpH,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKoH,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,EC/B38F,IAAMC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,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,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,OAAO,YAAY,KAAK,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,OAAAC,EAAO,GAAAC,EAAG,SAAAC,EAAS,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAuCC,EAAMC,EAAM,MAAM,CAAC,GAAGJ,EAAM,WAAWC,EAAKN,GAAsCK,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,4FAA4F,SAASE,GAAOD,EAAuCT,GAAwBO,EAAM,OAAO,KAAK,MAAME,IAAyC,OAAOA,EAAuCF,EAAM,WAAW,MAAMG,IAAQ,OAAOA,EAAM,YAAY,WAAWC,EAAMN,GAA4CE,EAAM,aAAa,MAAMI,IAAQ,OAAOA,EAAM,2FAA2F,CAAE,EAAQC,GAAuB,CAACL,EAAMxB,IAAewB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAU8B,GAA6BC,GAAW,SAASP,EAAMQ,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAApC,EAAQ,UAAAqC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEvB,GAASM,CAAK,EAAO,CAAC,YAAAkB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,GAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAAjD,CAAQ,EAAEkD,GAAgB,CAAC,WAAAvD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQsD,EAAiBtB,GAAuBL,EAAMxB,CAAQ,EAAO,CAAC,sBAAAoD,EAAsB,MAAAC,EAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAYH,EAAsB,SAASI,KAAO,CAACR,GAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAYL,EAAsB,SAASI,KAAO,CAACR,GAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQS,GAAWC,EAAO,IAAI,EAAQC,GAAY,IAAQlB,IAAc,YAA6CmB,GAAsBC,GAAM,EAAQC,GAAsB,CAAa1B,EAAS,EAAQ2B,GAAkBC,GAAqB,EAAE,OAAoBpD,EAAKqD,GAAY,CAAC,GAAG5B,GAA4CuB,GAAgB,SAAsBhD,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBgE,EAAMpD,EAAO,IAAI,CAAC,GAAG0B,EAAU,GAAGI,EAAgB,UAAUuB,GAAGxE,GAAkB,GAAGmE,GAAsB,gBAAgB1B,EAAUM,CAAU,EAAE,cAAc,GAAK,mBAAmB,SAAS,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,MAAMI,GAAY,IAAIvB,GAA6B0B,GAAK,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,4BAA4B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,aAAa,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,qBAAqB,aAAa,GAAGtB,CAAK,EAAE,GAAGtC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,MAAM2D,CAAW,CAAC,EAAEf,EAAYI,EAAc,EAAE,SAAS,CAAcqB,EAAMpD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiBoC,EAAiB,SAAS,YAAY,SAAS,CAActC,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,uGAAuG,EAAE,SAAS,2FAA2F,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBoC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,+EAA+E,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKZ,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe1B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBoC,EAAiB,SAAS,YAAY,MAAM,CAAC,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,EAAE,SAAsBtC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBoC,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,OAAO,aAAa,aAAa,YAAY,EAAE,SAAsBtC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBoC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,qIAAqI,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAES,GAAY,GAAgB/C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBoC,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAsBtC,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,2FAA2F,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBoC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,QAAQ,EAAE,EAAE,KAAKX,EAAU,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ8B,GAAI,CAAC,kFAAkF,gFAAgF,2VAA2V,yUAAyU,uKAAuK,6HAA6H,oMAAoM,2JAA2J,sQAAsQ,4SAA4S,mNAAmN,o2BAAo2B,6DAA6D,iFAAiF,2aAA2a,GAAeA,GAAI,+bAA+b,EAS78WC,GAAgBC,GAAQ1C,GAAUwC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,aAAaA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,SAAS,MAAM,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,4FAA4F,gBAAgB,GAAK,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,4FAA4F,gBAAgB,GAAK,MAAM,SAAS,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,EAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECVjpE,SAARC,GAAoC,CAAC,KAAAC,EAAK,SAAAC,EAAS,WAAAC,EAAW,WAAAC,EAAW,UAAAC,EAAU,QAAAC,EAAQ,QAAAC,EAAQ,SAAAC,EAAS,MAAAC,EAAM,QAAAC,CAAO,EAAE,CAAC,IAAMC,EAASC,EAAa,EAAQC,EAAQC,EAAO,EAAE,OAAAC,EAAU,IAAI,CAAC,IAAMC,EAAS,IAAI,qBAAqB,MAAM,CAACC,CAAK,IAAI,CAAIA,EAAM,gBAAgB,MAAM,IAAI,QAAQC,GAAS,WAAWA,EAAQT,EAAM,GAAG,CAAC,EAChhBE,EAAS,MAAM,SAAS,GAAW,CAACM,EAAM,gBAAgBP,GAASC,EAAS,MAAM,QAAQ,CAAG,CAAC,EAAE,OAAAK,EAAS,QAAQH,EAAQ,OAAO,EAAQ,IAAIG,EAAS,WAAW,CAAE,EAAE,CAACR,EAASG,EAASL,EAAQG,EAAMC,CAAO,CAAC,EAAsBS,EAAK,MAAM,CAAC,MAAM,CAAC,SAAS,GAAGjB,MAAa,WAAWC,EAAW,WAAWC,EAAW,MAAM,OAAO,WAAW,SAAS,MAAME,EAAQ,UAAUD,CAAS,EAAE,IAAIQ,EAAQ,SAAsBO,EAAM,OAAO,CAAC,MAAM,CAAC,SAAS,WAAW,QAAQ,cAAc,EAAE,SAAS,CAACnB,EAAkBkB,EAAKE,EAAO,KAAK,CAAC,MAAM,CAAC,SAAS,WAAW,SAAS,SAAS,WAAW,SAAS,MAAMd,EAAQ,IAAI,EAAE,KAAK,EAAE,MAAM,IAAI,EAAE,QAAQI,EAAS,QAAQ,CAAC,MAAM,IAAI,EAAE,SAAS,CAAC,QAAQ,CAAC,MAAM,MAAM,EAAE,OAAO,CAAC,MAAM,IAAI,CAAC,EAAE,WAAW,CAAC,SAASH,CAAQ,EAAE,SAASP,CAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAACqB,EAAoBtB,GAAmB,CAAC,KAAK,CAAC,KAAKuB,EAAY,OAAO,aAAa,eAAe,EAAE,SAAS,CAAC,KAAKA,EAAY,OAAO,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,aAAa,OAAO,EAAE,WAAW,CAAC,KAAKA,EAAY,KAAK,aAAa,MAAM,QAAQ,CAAC,MAAM,MAAM,MAAM,MAAM,MAAM,MAAM,MAAM,MAAM,KAAK,CAAC,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,KAAK,wBAAwB,GAAK,aAAa,CAAC,OAAO,SAAS,OAAO,EAAE,QAAQ,CAAC,OAAO,SAAS,OAAO,CAAC,EAAE,QAAQ,CAAC,MAAM,WAAW,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,QAAQ,CAAC,MAAM,WAAW,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,SAAS,CAAC,KAAKA,EAAY,OAAO,aAAa,EAAE,IAAI,GAAG,IAAI,GAAG,KAAK,EAAE,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,OAAO,aAAa,EAAE,IAAI,EAAE,IAAI,GAAG,KAAK,EAAE,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,QAAQ,aAAa,EAAI,CAAC,CAAC,ECDh6C,SAARC,GAAoC,CAAC,KAAAC,EAAK,SAAAC,EAAS,WAAAC,EAAW,WAAAC,EAAW,UAAAC,EAAU,QAAAC,EAAQ,QAAAC,EAAQ,SAAAC,EAAS,MAAAC,EAAM,QAAAC,CAAO,EAAE,CAAC,IAAMC,EAASC,EAAa,EAAQC,EAAQC,EAAO,EAAE,OAAAC,EAAU,IAAI,CAAC,IAAMC,EAAS,IAAI,qBAAqB,MAAM,CAACC,CAAK,IAAI,CAAIA,EAAM,gBAAgB,MAAM,IAAI,QAAQC,GAAS,WAAWA,EAAQT,EAAM,GAAG,CAAC,EAChhBE,EAAS,MAAM,SAAS,GAAW,CAACM,EAAM,gBAAgBP,GAASC,EAAS,MAAM,QAAQ,CAAG,CAAC,EAAE,OAAAK,EAAS,QAAQH,EAAQ,OAAO,EAAQ,IAAIG,EAAS,WAAW,CAAE,EAAE,CAACR,EAASG,EAASL,EAAQG,EAAMC,CAAO,CAAC,EAAsBS,EAAK,MAAM,CAAC,MAAM,CAAC,SAAS,GAAGjB,MAAa,WAAWC,EAAW,WAAWC,EAAW,MAAM,OAAO,WAAW,SAAS,MAAME,EAAQ,UAAUD,CAAS,EAAE,IAAIQ,EAAQ,SAAsBO,EAAM,OAAO,CAAC,MAAM,CAAC,SAAS,WAAW,QAAQ,cAAc,EAAE,SAAS,CAACnB,EAAkBkB,EAAKE,EAAO,KAAK,CAAC,MAAM,CAAC,SAAS,WAAW,SAAS,SAAS,WAAW,SAAS,MAAMd,EAAQ,IAAI,EAAE,KAAK,EAAE,MAAM,IAAI,EAAE,QAAQI,EAAS,QAAQ,CAAC,MAAM,IAAI,EAAE,SAAS,CAAC,QAAQ,CAAC,MAAM,MAAM,EAAE,OAAO,CAAC,MAAM,IAAI,CAAC,EAAE,WAAW,CAAC,SAASH,CAAQ,EAAE,SAASP,CAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAACqB,EAAoBtB,GAAmB,CAAC,KAAK,CAAC,KAAKuB,EAAY,OAAO,aAAa,eAAe,EAAE,SAAS,CAAC,KAAKA,EAAY,OAAO,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,aAAa,OAAO,EAAE,WAAW,CAAC,KAAKA,EAAY,KAAK,aAAa,MAAM,QAAQ,CAAC,MAAM,MAAM,MAAM,MAAM,MAAM,MAAM,MAAM,MAAM,KAAK,CAAC,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,KAAK,wBAAwB,GAAK,aAAa,CAAC,OAAO,SAAS,OAAO,EAAE,QAAQ,CAAC,OAAO,SAAS,OAAO,CAAC,EAAE,QAAQ,CAAC,MAAM,WAAW,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,QAAQ,CAAC,MAAM,WAAW,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,SAAS,CAAC,KAAKA,EAAY,OAAO,aAAa,EAAE,IAAI,GAAG,IAAI,GAAG,KAAK,EAAE,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,OAAO,aAAa,EAAE,IAAI,EAAE,IAAI,GAAG,KAAK,EAAE,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,QAAQ,aAAa,EAAI,CAAC,CAAC,ECDh6C,SAARC,GAAoC,CAAC,KAAAC,EAAK,SAAAC,EAAS,WAAAC,EAAW,WAAAC,EAAW,UAAAC,EAAU,QAAAC,EAAQ,QAAAC,EAAQ,SAAAC,EAAS,MAAAC,EAAM,QAAAC,CAAO,EAAE,CAAC,IAAMC,EAASC,EAAa,EAAQC,EAAQC,EAAO,EAAE,OAAAC,EAAU,IAAI,CAAC,IAAMC,EAAS,IAAI,qBAAqB,MAAM,CAACC,CAAK,IAAI,CAAIA,EAAM,gBAAgB,MAAM,IAAI,QAAQC,GAAS,WAAWA,EAAQT,EAAM,GAAG,CAAC,EAChhBE,EAAS,MAAM,SAAS,GAAW,CAACM,EAAM,gBAAgBP,GAASC,EAAS,MAAM,QAAQ,CAAG,CAAC,EAAE,OAAAK,EAAS,QAAQH,EAAQ,OAAO,EAAQ,IAAIG,EAAS,WAAW,CAAE,EAAE,CAACR,EAASG,EAASL,EAAQG,EAAMC,CAAO,CAAC,EAAsBS,EAAK,MAAM,CAAC,MAAM,CAAC,SAAS,GAAGjB,MAAa,WAAWC,EAAW,WAAWC,EAAW,MAAM,OAAO,WAAW,SAAS,MAAME,EAAQ,UAAUD,CAAS,EAAE,IAAIQ,EAAQ,SAAsBO,EAAM,OAAO,CAAC,MAAM,CAAC,SAAS,WAAW,QAAQ,cAAc,EAAE,SAAS,CAACnB,EAAkBkB,EAAKE,EAAO,KAAK,CAAC,MAAM,CAAC,SAAS,WAAW,SAAS,SAAS,WAAW,SAAS,MAAMd,EAAQ,IAAI,EAAE,KAAK,EAAE,MAAM,IAAI,EAAE,QAAQI,EAAS,QAAQ,CAAC,MAAM,IAAI,EAAE,SAAS,CAAC,QAAQ,CAAC,MAAM,MAAM,EAAE,OAAO,CAAC,MAAM,IAAI,CAAC,EAAE,WAAW,CAAC,SAASH,CAAQ,EAAE,SAASP,CAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAACqB,EAAoBtB,GAAmB,CAAC,KAAK,CAAC,KAAKuB,EAAY,OAAO,aAAa,eAAe,EAAE,SAAS,CAAC,KAAKA,EAAY,OAAO,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,aAAa,OAAO,EAAE,WAAW,CAAC,KAAKA,EAAY,KAAK,aAAa,MAAM,QAAQ,CAAC,MAAM,MAAM,MAAM,MAAM,MAAM,MAAM,MAAM,MAAM,KAAK,CAAC,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,KAAK,wBAAwB,GAAK,aAAa,CAAC,OAAO,SAAS,OAAO,EAAE,QAAQ,CAAC,OAAO,SAAS,OAAO,CAAC,EAAE,QAAQ,CAAC,MAAM,WAAW,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,QAAQ,CAAC,MAAM,WAAW,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,SAAS,CAAC,KAAKA,EAAY,OAAO,aAAa,EAAE,IAAI,GAAG,IAAI,GAAG,KAAK,EAAE,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,OAAO,aAAa,EAAE,IAAI,EAAE,IAAI,GAAG,KAAK,EAAE,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,QAAQ,aAAa,EAAI,CAAC,CAAC,ECDh6C,SAARC,GAAoC,CAAC,KAAAC,EAAK,SAAAC,EAAS,WAAAC,EAAW,WAAAC,EAAW,UAAAC,EAAU,QAAAC,EAAQ,QAAAC,EAAQ,SAAAC,EAAS,MAAAC,EAAM,QAAAC,CAAO,EAAE,CAAC,IAAMC,EAASC,EAAa,EAAQC,EAAQC,EAAO,EAAE,OAAAC,EAAU,IAAI,CAAC,IAAMC,EAAS,IAAI,qBAAqB,MAAM,CAACC,CAAK,IAAI,CAAIA,EAAM,gBAAgB,MAAM,IAAI,QAAQC,GAAS,WAAWA,EAAQT,EAAM,GAAG,CAAC,EAChhBE,EAAS,MAAM,SAAS,GAAW,CAACM,EAAM,gBAAgBP,GAASC,EAAS,MAAM,QAAQ,CAAG,CAAC,EAAE,OAAAK,EAAS,QAAQH,EAAQ,OAAO,EAAQ,IAAIG,EAAS,WAAW,CAAE,EAAE,CAACR,EAASG,EAASL,EAAQG,EAAMC,CAAO,CAAC,EAAsBS,EAAK,MAAM,CAAC,MAAM,CAAC,SAAS,GAAGjB,MAAa,WAAWC,EAAW,WAAWC,EAAW,MAAM,OAAO,WAAW,SAAS,MAAME,EAAQ,UAAUD,CAAS,EAAE,IAAIQ,EAAQ,SAAsBO,EAAM,OAAO,CAAC,MAAM,CAAC,SAAS,WAAW,QAAQ,cAAc,EAAE,SAAS,CAACnB,EAAkBkB,EAAKE,EAAO,KAAK,CAAC,MAAM,CAAC,SAAS,WAAW,SAAS,SAAS,WAAW,SAAS,MAAMd,EAAQ,IAAI,EAAE,KAAK,EAAE,MAAM,IAAI,EAAE,QAAQI,EAAS,QAAQ,CAAC,MAAM,IAAI,EAAE,SAAS,CAAC,QAAQ,CAAC,MAAM,MAAM,EAAE,OAAO,CAAC,MAAM,IAAI,CAAC,EAAE,WAAW,CAAC,SAASH,CAAQ,EAAE,SAASP,CAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAACqB,EAAoBtB,GAAmB,CAAC,KAAK,CAAC,KAAKuB,EAAY,OAAO,aAAa,eAAe,EAAE,SAAS,CAAC,KAAKA,EAAY,OAAO,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,aAAa,OAAO,EAAE,WAAW,CAAC,KAAKA,EAAY,KAAK,aAAa,MAAM,QAAQ,CAAC,MAAM,MAAM,MAAM,MAAM,MAAM,MAAM,MAAM,MAAM,KAAK,CAAC,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,KAAK,wBAAwB,GAAK,aAAa,CAAC,OAAO,SAAS,OAAO,EAAE,QAAQ,CAAC,OAAO,SAAS,OAAO,CAAC,EAAE,QAAQ,CAAC,MAAM,WAAW,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,QAAQ,CAAC,MAAM,WAAW,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,SAAS,CAAC,KAAKA,EAAY,OAAO,aAAa,EAAE,IAAI,GAAG,IAAI,GAAG,KAAK,EAAE,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,OAAO,aAAa,EAAE,IAAI,EAAE,IAAI,GAAG,KAAK,EAAE,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,QAAQ,aAAa,EAAI,CAAC,CAAC,ECDh6C,SAARC,GAAoC,CAAC,KAAAC,EAAK,SAAAC,EAAS,WAAAC,EAAW,WAAAC,EAAW,UAAAC,EAAU,QAAAC,EAAQ,QAAAC,EAAQ,SAAAC,EAAS,MAAAC,EAAM,QAAAC,CAAO,EAAE,CAAC,IAAMC,EAASC,EAAa,EAAQC,EAAQC,EAAO,EAAE,OAAAC,EAAU,IAAI,CAAC,IAAMC,EAAS,IAAI,qBAAqB,MAAM,CAACC,CAAK,IAAI,CAAIA,EAAM,gBAAgB,MAAM,IAAI,QAAQC,GAAS,WAAWA,EAAQT,EAAM,GAAG,CAAC,EAChhBE,EAAS,MAAM,SAAS,GAAW,CAACM,EAAM,gBAAgBP,GAASC,EAAS,MAAM,QAAQ,CAAG,CAAC,EAAE,OAAAK,EAAS,QAAQH,EAAQ,OAAO,EAAQ,IAAIG,EAAS,WAAW,CAAE,EAAE,CAACR,EAASG,EAASL,EAAQG,EAAMC,CAAO,CAAC,EAAsBS,EAAK,MAAM,CAAC,MAAM,CAAC,SAAS,GAAGjB,MAAa,WAAWC,EAAW,WAAWC,EAAW,MAAM,OAAO,WAAW,SAAS,MAAME,EAAQ,UAAUD,CAAS,EAAE,IAAIQ,EAAQ,SAAsBO,EAAM,OAAO,CAAC,MAAM,CAAC,SAAS,WAAW,QAAQ,cAAc,EAAE,SAAS,CAACnB,EAAkBkB,EAAKE,EAAO,KAAK,CAAC,MAAM,CAAC,SAAS,WAAW,SAAS,SAAS,WAAW,SAAS,MAAMd,EAAQ,IAAI,EAAE,KAAK,EAAE,MAAM,IAAI,EAAE,QAAQI,EAAS,QAAQ,CAAC,MAAM,IAAI,EAAE,SAAS,CAAC,QAAQ,CAAC,MAAM,MAAM,EAAE,OAAO,CAAC,MAAM,IAAI,CAAC,EAAE,WAAW,CAAC,SAASH,CAAQ,EAAE,SAASP,CAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAACqB,EAAoBtB,GAAmB,CAAC,KAAK,CAAC,KAAKuB,EAAY,OAAO,aAAa,eAAe,EAAE,SAAS,CAAC,KAAKA,EAAY,OAAO,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,aAAa,OAAO,EAAE,WAAW,CAAC,KAAKA,EAAY,KAAK,aAAa,MAAM,QAAQ,CAAC,MAAM,MAAM,MAAM,MAAM,MAAM,MAAM,MAAM,MAAM,KAAK,CAAC,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,KAAK,wBAAwB,GAAK,aAAa,CAAC,OAAO,SAAS,OAAO,EAAE,QAAQ,CAAC,OAAO,SAAS,OAAO,CAAC,EAAE,QAAQ,CAAC,MAAM,WAAW,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,QAAQ,CAAC,MAAM,WAAW,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,SAAS,CAAC,KAAKA,EAAY,OAAO,aAAa,EAAE,IAAI,GAAG,IAAI,GAAG,KAAK,EAAE,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,OAAO,aAAa,EAAE,IAAI,EAAE,IAAI,GAAG,KAAK,EAAE,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,QAAQ,aAAa,EAAI,CAAC,CAAC,ECAgZ,IAAMC,GAAYC,EAASC,EAAM,EAAQC,EAAgBC,GAAOC,CAAS,EAAQC,EAAgBF,GAAOG,EAAO,GAAG,EAAQC,GAAUP,EAASQ,EAAI,EAAQC,GAAwBT,EAASU,EAAkB,EAAQC,GAAyBX,EAASU,EAAmB,EAAQE,GAAyBZ,EAASU,EAAmB,EAAQG,GAAyBb,EAASU,EAAmB,EAAQI,GAAyBd,EAASU,EAAmB,EAAQK,GAAYf,EAASgB,EAAM,EAAQC,GAAoBd,GAAOG,EAAO,OAAO,EAAQY,GAAYf,GAAOgB,CAAK,EAAQC,GAAcpB,EAASqB,EAAQ,EAAQC,GAAkBtB,EAASuB,EAAY,EAAQC,GAAqBxB,EAASyB,EAAe,EAAQC,GAAa1B,EAAS2B,EAAO,EAAQC,GAAY,CAAC,UAAU,qBAAqB,UAAU,sBAAsB,UAAU,4CAA4C,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,IAAUC,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,IAAI,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,EAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,EAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,EAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,EAAY,EAAE,EAAE,EAAE,EAAE,EAAQE,GAAY,CAAC,OAAO,IAAI,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,GAAG,EAAQE,GAAmB,CAACX,EAAEC,IAAI,oBAAoBA,IAAUW,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,GAAO,CAAC,UAAU9B,GAAQ,WAAWK,GAAY,QAAQ,WAAW,EAAQ0B,GAA6BC,GAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAElB,GAASI,CAAK,EAAQe,EAAU,IAAI,CAAC,IAAMC,EAAUtB,GAAiB,OAAUa,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,EAAUtB,GAAiB,OAAUa,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,EAAQJ,EAAU,cAAc,GAAGI,EAAQ,CAAC,IAAMC,EAAK,SAAS,KAAKA,EAAK,UAAU,QAAQC,IAAGA,GAAE,WAAW,cAAc,GAAGD,EAAK,UAAU,OAAOC,EAAC,CAAC,EAAED,EAAK,UAAU,IAAI,GAAGL,EAAU,4BAA4B,EAAG,MAAM,IAAI,CAAII,GAAQ,SAAS,KAAK,UAAU,OAAO,GAAGJ,EAAU,4BAA4B,CAAE,CAAE,EAAE,CAAC,OAAUT,CAAY,CAAC,EAAE,GAAK,CAACgB,EAAYC,CAAmB,EAAEC,GAA8BZ,EAAQvC,GAAY,EAAK,EAAQoD,EAAe,OAAgBC,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQ,CAACtD,GAAU,GAAiBgD,IAAc,YAA6CO,EAAa,IAASvD,GAAU,EAAiBgD,IAAc,YAAtB,GAAmEQ,GAAOC,GAAU,EAAQC,GAAsBC,GAAM,EAAQC,GAAsB,CAAaxB,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,EAAE,OAAAyB,GAAiB,CAAC,UAAUjC,EAAM,CAAC,EAAsBkC,EAAKC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAA7D,EAAiB,EAAE,SAAsB8D,EAAMC,GAAY,CAAC,GAAG5B,GAA4CqB,GAAgB,SAAS,CAAcM,EAAMvF,EAAO,IAAI,CAAC,GAAG8D,EAAU,UAAU2B,GAAGjE,GAAkB,GAAG2D,GAAsB,gBAAgBxB,CAAS,EAAE,qBAAqB,UAAU,IAAIL,GAA6BqB,EAAK,MAAM,CAAC,GAAGjB,CAAK,EAAE,SAAS,CAAc2B,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,EAAE,SAAsBL,EAAKzF,EAAgB,CAAC,kBAAkB,CAAC,WAAW+B,EAAW,EAAE,sBAAsB,GAAM,0BAA0B,CAAC,UAAU,OAAO,OAAOC,EAAS,EAAE,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,aAAa,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkBC,GAAmB,SAAsBwD,EAAK1F,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0F,EAAK,SAAS,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,KAAK,iBAAiB,SAAsBA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBJ,EAAYK,EAAS,CAAC,SAAS,CAAcP,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,4BAA4B,CAAC,EAAeA,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,wBAAwB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeE,EAAMxF,EAAgB,CAAC,eAAekC,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,OAAO,yBAAyBD,GAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcqD,EAAKtF,EAAgB,CAAC,eAAeoC,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,GAAY,gBAAgB,GAAM,gBAAgB,GAAG,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,EAAemD,EAAKtF,EAAgB,CAAC,eAAeoC,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,GAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,SAAsBmD,EAAKtF,EAAgB,CAAC,eAAekC,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,OAAO,yBAAyBD,GAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBqD,EAAKtF,EAAgB,CAAC,eAAeoC,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,GAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemD,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,QAAQ,CAAC,EAAeE,EAAMxF,EAAgB,CAAC,kBAAkB,CAAC,WAAWsC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,iBAAiB,KAAK,iBAAiB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAACuC,EAAY,GAAgBU,EAAM,MAAM,CAAC,UAAU,8CAA8C,mBAAmB,iBAAiB,KAAK,iBAAiB,SAAS,CAAcF,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,wCAAwC,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,2BAA2B,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,wCAAwC,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,oBAAoB,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcF,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEP,EAAa,GAAgBO,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,+BAA+B,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEP,EAAa,GAAgBO,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,gCAAgC,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAS,CAAcF,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,KAAK,mBAAmB,SAAsBE,EAAMxF,EAAgB,CAAC,kBAAkB,CAAC,WAAWsC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAciD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcF,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBc,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,iDAAiD,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBL,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,8BAA2CF,EAAK,KAAK,CAAC,CAAC,EAAE,sBAAsB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKS,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,GAA4BV,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,IAAI,EAAE,UAAU,CAAC,EAAE,IAAI,CAAC,EAAE,SAAsBc,EAAKK,EAA0B,CAAC,OAAO,GAAG,EAAE,OAAO,SAAsBL,EAAKvF,EAAU,CAAC,UAAU,2BAA2B,SAAsBuF,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUwB,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsBV,EAAKnF,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,UAAU,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU6F,EAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQyB,EAA0B,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQA,EAA0B,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBX,EAAKxE,EAAM,CAAC,GAAG,SAAS,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQmF,EAA0B,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBX,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQyB,EAA0B,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQA,EAA0B,kBAAkB,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBX,EAAKxE,EAAM,CAAC,GAAG,SAAS,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQmF,EAA0B,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeX,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,KAAK,aAAa,SAAsBE,EAAMxF,EAAgB,CAAC,kBAAkB,CAAC,WAAWsC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAciD,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcF,EAAKK,EAA0B,CAAC,SAAsBL,EAAKvF,EAAU,CAAC,UAAU,2BAA2B,SAAsBuF,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS,GAAG,UAAU,QAAQ,EAAE,UAAU,CAAC,SAAS,EAAE,CAAC,EAAE,SAAsBc,EAAKjF,GAAmB,CAAC,QAAQ,qEAAqE,QAAQ,wEAAwE,MAAM,GAAG,SAAS,EAAE,WAAW,QAAQ,SAAS,GAAG,WAAW,MAAM,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAK,MAAM,CAAC,MAAM,MAAM,EAAE,KAAK,wCAAwC,UAAU,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiF,EAAKK,EAA0B,CAAC,SAAsBL,EAAKvF,EAAU,CAAC,UAAU,0BAA0B,SAAsBuF,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS,GAAG,UAAU,QAAQ,EAAE,UAAU,CAAC,SAAS,EAAE,CAAC,EAAE,SAAsBc,EAAKjF,GAAoB,CAAC,QAAQ,qEAAqE,QAAQ,+EAA+E,MAAM,GAAG,SAAS,EAAE,WAAW,QAAQ,SAAS,GAAG,WAAW,MAAM,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAK,MAAM,CAAC,MAAM,MAAM,EAAE,KAAK,6BAA6B,UAAU,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiF,EAAKK,EAA0B,CAAC,SAAsBL,EAAKvF,EAAU,CAAC,UAAU,2BAA2B,SAAsBuF,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS,GAAG,UAAU,QAAQ,EAAE,UAAU,CAAC,SAAS,EAAE,CAAC,EAAE,SAAsBc,EAAKjF,GAAoB,CAAC,QAAQ,qEAAqE,QAAQ,wEAAwE,MAAM,GAAG,SAAS,EAAE,WAAW,QAAQ,SAAS,GAAG,WAAW,MAAM,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAK,MAAM,CAAC,MAAM,MAAM,EAAE,KAAK,mBAAmB,UAAU,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemF,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcF,EAAKK,EAA0B,CAAC,SAAsBL,EAAKvF,EAAU,CAAC,UAAU,2BAA2B,SAAsBuF,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS,GAAG,UAAU,QAAQ,EAAE,UAAU,CAAC,SAAS,EAAE,CAAC,EAAE,SAAsBc,EAAKjF,GAAoB,CAAC,QAAQ,qEAAqE,QAAQ,+EAA+E,MAAM,GAAG,SAAS,EAAE,WAAW,QAAQ,SAAS,GAAG,WAAW,MAAM,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAK,MAAM,CAAC,MAAM,MAAM,EAAE,KAAK,4BAA4B,UAAU,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiF,EAAKK,EAA0B,CAAC,SAAsBL,EAAKvF,EAAU,CAAC,UAAU,2BAA2B,SAAsBuF,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS,GAAG,UAAU,QAAQ,EAAE,UAAU,CAAC,SAAS,EAAE,CAAC,EAAE,SAAsBc,EAAKjF,GAAoB,CAAC,QAAQ,qEAAqE,QAAQ,wEAAwE,MAAM,GAAG,SAAS,EAAE,WAAW,QAAQ,SAAS,GAAG,WAAW,MAAM,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAK,MAAM,CAAC,MAAM,MAAM,EAAE,KAAK,+BAA+B,UAAU,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiF,EAAK,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,SAAsBE,EAAMxF,EAAgB,CAAC,kBAAkB,CAAC,WAAWsC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAciD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,KAAK,iBAAiB,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,QAAQ,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeA,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQyB,EAA0B,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,oEAAoE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQA,EAA0B,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,oEAAoE,CAAC,CAAC,EAAE,SAAsBX,EAAKxE,EAAM,CAAC,GAAG,SAAS,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQmF,EAA0B,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,WAAWxD,EAAU,CAAC,CAAC,CAAC,EAAe6C,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAAcF,EAAKS,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,gBAAgB,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,gBAAgB,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,gBAAgB,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASG,GAA6BZ,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,IAAI,EAAE,UAAU,CAAC,EAAE,IAAI,CAAC,EAAE,SAAsBc,EAAKK,EAA0B,CAAC,OAAO,GAAG,EAAE,KAAK,SAAsBL,EAAKvF,EAAU,CAAC,UAAU,2BAA2B,SAAsBuF,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU0B,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBZ,EAAKnF,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,OAAO,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU+F,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeZ,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,cAAc,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,QAAQ,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeA,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQyB,EAA0B,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQA,EAA0B,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBX,EAAKxE,EAAM,CAAC,GAAG,SAAS,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQmF,EAA0B,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,WAAWxD,EAAU,CAAC,CAAC,CAAC,EAAe6C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAAcF,EAAKS,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,aAAa,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,aAAa,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,aAAa,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASI,GAA6Bb,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,IAAI,EAAE,UAAU,CAAC,EAAE,IAAI,CAAC,EAAE,SAAsBc,EAAKK,EAA0B,CAAC,OAAO,GAAG,EAAE,KAAK,SAAsBL,EAAKvF,EAAU,CAAC,UAAU,2BAA2B,SAAsBuF,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU2B,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBb,EAAKnF,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,OAAO,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUgG,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeb,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,aAAa,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,EAAeE,EAAM5E,GAAoB,CAAC,kBAAkB,CAAC,WAAW0B,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,KAAK,eAAe,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc+C,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKK,EAA0B,CAAC,SAAsBL,EAAKzF,EAAgB,CAAC,kBAAkB,CAAC,WAAWyC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,mBAAmB,WAAW,KAAK,WAAW,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB+C,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,EAAE,CAAC,EAAE,SAAsBc,EAAK3E,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,KAAK,WAAW,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAc6E,EAAMvF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsBqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsBqF,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBL,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,eAA4BF,EAAK,KAAK,CAAC,CAAC,EAAE,kBAAkB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,wKAAwK,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsBqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsBqF,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBL,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,wBAAqCF,EAAK,KAAK,CAAC,CAAC,EAAE,iBAAiB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oBAAoB,EAAE,SAAS,oKAAoK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKrF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAsBqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,eAAe,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsBqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsBqF,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBL,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,gBAA6BF,EAAK,KAAK,CAAC,CAAC,EAAE,qBAAqB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oBAAoB,EAAE,SAAS,6KAA6K,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsBqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsBqF,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBL,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,0BAAuCF,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oBAAoB,EAAE,SAAS,kJAAkJ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsBqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsBqF,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBL,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,eAA4BF,EAAK,KAAK,CAAC,CAAC,EAAE,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oBAAoB,EAAE,SAAS,kJAAkJ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsBqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsBqF,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBL,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,oBAAiCF,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oBAAoB,EAAE,SAAS,yMAAyM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsBqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsBqF,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBL,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,oBAAiCF,EAAK,KAAK,CAAC,CAAC,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oBAAoB,EAAE,SAAS,yKAAyK,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKrF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAsBqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,SAAS,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuF,EAAM5E,GAAoB,CAAC,kBAAkB,CAAC,WAAW0B,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,WAAW,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc+C,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeE,EAAMxF,EAAgB,CAAC,kBAAkB,CAAC,WAAWsC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,UAAU,KAAK,UAAU,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc+C,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQyB,EAA0B,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,6bAA6b,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQA,EAA0B,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,6bAA6b,CAAC,CAAC,EAAE,SAAsBX,EAAKxE,EAAM,CAAC,GAAG,SAAS,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQmF,EAA0B,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,6bAA6b,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAeX,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcF,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,qKAAqK,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKS,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,SAASK,GAA6Bd,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,IAAI,EAAE,UAAU,CAAC,EAAE,MAAM,CAAC,EAAE,SAAsBc,EAAKK,EAA0B,CAAC,OAAO,GAAG,EAAE,KAAK,SAAsBL,EAAKvF,EAAU,CAAC,UAAU,2BAA2B,SAAsBuF,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU4B,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBd,EAAKnF,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,WAAW,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUiG,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAed,EAAKK,EAA0B,CAAC,SAAsBL,EAAKvF,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,SAAS,KAAK,SAAS,SAAsBuF,EAAK3E,GAAO,CAAC,UAAU,SAAS,UAAU,QAAQ,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,EAAE,GAAG,YAAY,SAAS,YAAY,KAAK,SAAS,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAc2E,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,SAAS,SAAsBqF,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,4CAA4C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,iBAAiB,EAAE,kBAAkB5C,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe4C,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,SAAS,SAAsBqF,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,4CAA4C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,iBAAiB,EAAE,kBAAkB5C,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,IAAI,MAAM,CAAC,OAAO,OAAO,SAAS,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4C,EAAK,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQyB,EAA0B,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,sCAAsC,IAAI,uEAAuE,OAAO,kcAAkc,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQA,EAA0B,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,sCAAsC,IAAI,uEAAuE,OAAO,kcAAkc,CAAC,CAAC,EAAE,SAAsBT,EAAM3E,GAAY,CAAC,kBAAkB,CAAC,WAAWyB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,GAAG,SAAS,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ0D,EAA0B,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,sCAAsC,IAAI,uEAAuE,OAAO,kcAAkc,EAAE,UAAU,iBAAiB,mBAAmB,qBAAqB,KAAK,qBAAqB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcX,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,iCAAiC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,mCAAmC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,SAAS,CAAC,EAAeA,EAAKS,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,SAASM,GAA6Bf,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,MAAM,CAAC,EAAE,SAAsBc,EAAKK,EAA0B,CAAC,OAAO,GAAG,EAAE,KAAK,SAAsBL,EAAKvF,EAAU,CAAC,UAAU,0BAA0B,SAAsBuF,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU6B,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBf,EAAKnF,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,UAAU,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUkG,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeb,EAAM5E,GAAoB,CAAC,kBAAkB,CAAC,WAAW0B,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,KAAK,eAAe,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc+C,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,6CAA6C,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKK,EAA0B,CAAC,SAAsBL,EAAKzF,EAAgB,CAAC,kBAAkB,CAAC,WAAWyC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,mBAAmB,eAAe,KAAK,eAAe,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB+C,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,aAAa,GAAG,WAAW,EAAE,CAAC,EAAE,SAAsBc,EAAK3E,GAAO,CAAC,UAAU,SAAS,UAAU,MAAM,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,KAAK,eAAe,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAc6E,EAAMvF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,cAAc,SAAS,CAAcqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAsBqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAcqF,EAAKxE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,sEAAsE,OAAO,iWAAiW,EAAE,UAAU,gBAAgB,CAAC,EAAe0E,EAAMvF,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAcqF,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,oQAAoQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKrF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAsBqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,KAAK,cAAc,SAAS,CAAcqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAcqF,EAAKxE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,sEAAsE,OAAO,iWAAiW,EAAE,UAAU,gBAAgB,CAAC,EAAe0E,EAAMvF,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAcqF,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,yPAAyP,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,KAAK,cAAc,SAAS,CAAcqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAcqF,EAAKxE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,sEAAsE,OAAO,iWAAiW,EAAE,UAAU,gBAAgB,CAAC,EAAe0E,EAAMvF,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAcqF,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,gOAAgO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,KAAK,cAAc,SAAS,CAAcqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,eAAe,mBAAmB,UAAU,KAAK,UAAU,SAAsBqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAcqF,EAAKxE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,oEAAoE,OAAO,8PAA8P,EAAE,UAAU,gBAAgB,CAAC,EAAe0E,EAAMvF,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAcqF,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,qNAAqN,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKrF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAsBqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,cAAc,SAAS,CAAcuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcuF,EAAMvF,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAcqF,EAAKxE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,OAAO,IAAI,uEAAuE,OAAO,kcAAkc,EAAE,UAAU,eAAe,CAAC,EAAe0E,EAAMvF,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAcqF,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,wOAAwO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBqF,EAAKrF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqF,EAAK,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAsBE,EAAMxF,EAAgB,CAAC,kBAAkB,CAAC,WAAWsC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,KAAK,aAAa,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc+C,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,6BAA6B,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKK,EAA0B,CAAC,SAAsBL,EAAKzF,EAAgB,CAAC,kBAAkB,CAAC,WAAWyC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB+C,EAAK3E,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,CAAc2E,EAAKgB,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,OAAO,WAAW,KAAK,SAAS,QAAQ,EAAE,IAAI,20BAA20B,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAehB,EAAKgB,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,OAAO,WAAW,KAAK,SAAS,QAAQ,EAAE,IAAI,k7JAAk7J,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAehB,EAAKgB,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,OAAO,WAAW,KAAK,SAAS,QAAQ,EAAE,IAAI,o/LAAo/L,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAehB,EAAKgB,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,OAAO,WAAW,KAAK,SAAS,QAAQ,EAAE,IAAI,4tBAA4tB,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAehB,EAAKgB,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,OAAO,WAAW,KAAK,SAAS,QAAQ,EAAE,IAAI,8aAA8a,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAEP,EAAa,GAAgBO,EAAK,MAAM,CAAC,UAAU,+BAA+B,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAEP,EAAa,GAAgBO,EAAK,MAAM,CAAC,UAAU,+BAA+B,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAEP,EAAa,GAAgBO,EAAK,MAAM,CAAC,UAAU,+BAA+B,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAEP,EAAa,GAAgBO,EAAK,MAAM,CAAC,UAAU,gCAAgC,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAEP,EAAa,GAAgBO,EAAK,MAAM,CAAC,UAAU,+BAA+B,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,SAAS,SAAsBE,EAAMxF,EAAgB,CAAC,kBAAkB,CAAC,WAAWsC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,SAAS,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc+C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,SAAS,SAAS,CAAcF,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,0SAAgS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAAcF,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQyB,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAO,IAAI,sEAAsE,OAAO,iWAAiW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQA,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAO,IAAI,sEAAsE,OAAO,iWAAiW,CAAC,CAAC,EAAE,SAAsBX,EAAKxE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQmF,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAO,IAAI,sEAAsE,OAAO,iWAAiW,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,QAAQ,CAAC,CAAC,CAAC,EAAeT,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAAcF,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBc,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBc,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,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,EAAeE,EAAM5E,GAAoB,CAAC,kBAAkB,CAAC,WAAW0B,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,MAAM,KAAK,MAAM,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc+C,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAAcF,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,4BAA4B,EAAE,MAAM,EAAE,UAAU,CAAC,MAAM,2BAA2B,EAAE,MAAM,CAAC,EAAE,SAAsBc,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,4BAA4B,EAAE,OAAO,SAAsBL,EAAKzF,EAAgB,CAAC,kBAAkB,CAAC,WAAWyC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,mBAAmB,aAAa,KAAK,aAAa,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB+C,EAAKtE,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,aAAa,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,kQAAkQ,QAAQ,YAAY,UAAU,iCAAiC,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesE,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,4BAA4B,EAAE,MAAM,EAAE,UAAU,CAAC,MAAM,2BAA2B,EAAE,MAAM,CAAC,EAAE,SAAsBc,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,4BAA4B,EAAE,OAAO,SAAsBL,EAAKzF,EAAgB,CAAC,kBAAkB,CAAC,WAAWyC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,mBAAmB,aAAa,KAAK,aAAa,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB+C,EAAKtE,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,aAAa,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,sLAAsL,QAAQ,YAAY,UAAU,8CAA8C,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesE,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,4BAA4B,EAAE,MAAM,EAAE,UAAU,CAAC,MAAM,2BAA2B,EAAE,MAAM,CAAC,EAAE,SAAsBc,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,4BAA4B,EAAE,OAAO,SAAsBL,EAAKzF,EAAgB,CAAC,kBAAkB,CAAC,WAAWyC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,mBAAmB,aAAa,KAAK,aAAa,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB+C,EAAKtE,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,aAAa,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,4JAA4J,QAAQ,YAAY,UAAU,kFAAkF,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesE,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,4BAA4B,EAAE,MAAM,EAAE,UAAU,CAAC,MAAM,2BAA2B,EAAE,MAAM,CAAC,EAAE,SAAsBc,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,4BAA4B,EAAE,OAAO,SAAsBL,EAAKzF,EAAgB,CAAC,kBAAkB,CAAC,WAAWyC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,mBAAmB,aAAa,KAAK,aAAa,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB+C,EAAKtE,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,aAAa,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,6KAA6K,QAAQ,YAAY,UAAU,gEAAgE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesE,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,4BAA4B,EAAE,MAAM,EAAE,UAAU,CAAC,MAAM,2BAA2B,EAAE,MAAM,CAAC,EAAE,SAAsBc,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,4BAA4B,EAAE,OAAO,SAAsBL,EAAKzF,EAAgB,CAAC,kBAAkB,CAAC,WAAWyC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,mBAAmB,aAAa,KAAK,aAAa,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB+C,EAAKtE,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,aAAa,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,gLAAgL,QAAQ,YAAY,UAAU,oEAAoE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesE,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,4BAA4B,EAAE,MAAM,EAAE,UAAU,CAAC,MAAM,2BAA2B,EAAE,OAAO,CAAC,EAAE,SAAsBc,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,4BAA4B,EAAE,OAAO,SAAsBL,EAAKzF,EAAgB,CAAC,kBAAkB,CAAC,WAAWyC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,mBAAmB,aAAa,KAAK,aAAa,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB+C,EAAKtE,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,aAAa,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,qKAAqK,QAAQ,YAAY,UAAU,6CAA6C,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesE,EAAKK,EAA0B,CAAC,SAAsBL,EAAKvF,EAAU,CAAC,UAAU,0BAA0B,SAAsBuF,EAAKpE,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,GAAG,SAAS,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoE,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,OAAO,CAAC,EAAE,SAAsBc,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,OAAO,SAAsBL,EAAKvF,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,SAAS,KAAK,SAAS,SAAsBuF,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBc,EAAKlE,GAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,SAAS,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekE,EAAK,MAAM,CAAC,UAAUI,GAAGjE,GAAkB,GAAG2D,EAAqB,EAAE,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmB,GAAI,CAAC,kFAAkF,IAAI5D,GAAS,6DAA6D,gFAAgF,gTAAgT,qKAAqK,4SAA4S,2fAA2f,oTAAoT,0kBAA0kB,8rBAA8rB,8YAA8Y,+aAA+a,kHAAkH,kSAAkS,8TAA8T,8TAA8T,+TAA+T,2VAA2V,8hBAA8hB,yJAAyJ,kZAAkZ,ibAAib,wUAAwU,wcAAwc,mRAAmR,sfAAsf,mmBAAmmB,4QAA4Q,2TAA2T,qVAAqV,iVAAiV,6cAA6c,yUAAyU,8bAA8b,8SAA8S,wiBAAwiB,iSAAiS,+RAA+R,wiBAAwiB,yTAAyT,4WAA4W,yeAAye,gJAAgJ,6YAA6Y,gfAAgf,wSAAwS,6NAA6N,gSAAgS,mKAAmK,6HAA6H,qqBAAqqB,gmBAAgmB,8lBAA8lB,+gBAA+gB,0pBAA0pB,4xBAA4xB,qVAAqV,kSAAkS,wqBAAwqB,kHAAkH,8UAA8U,gdAAgd,uQAAuQ,4HAA4H,6UAA6U,gPAAgP,4dAA4d,+QAA+Q,sNAAsN,2OAA2O,kSAAkS,gRAAgR,0GAA0G,2mBAA2mB,iiBAAiiB,+dAA+d,qnBAAqnB,0cAA0c,4kBAA4kB,khBAAkhB,4fAA4f,yGAAyG,kFAAkF,oFAAoF,mFAAmF,mFAAmF,mFAAmF,mVAAmV,ktBAAktB,gVAAgV,kVAAkV,iVAAiV,kVAAkV,kVAAkV,oVAAoV,iVAAiV,kVAAkV,uiBAAuiB,8UAA8U,gVAAgV,iVAAiV,mVAAmV,4WAA4W,6WAA6W,mSAAmS,yMAAyM,uRAAuR,mWAAmW,8RAA8R,ygBAAygB,oSAAoS,oHAAoH,8yaAA8ya,wDAAwDA,GAAS,2tHAA2tH,gCAAgCA,GAAS,8gOAA8gO,GAAe4D,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,+bAA+b,EASr/pKC,GAAgBC,GAAQpD,GAAUkD,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,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG9G,GAAY,GAAGQ,GAAU,GAAGE,GAAwB,GAAGE,GAAyB,GAAGC,GAAyB,GAAGC,GAAyB,GAAGC,GAAyB,GAAGC,GAAY,GAAGK,GAAc,GAAGE,GAAkB,GAAGE,GAAqB,GAAGE,GAAa,GAAGuF,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,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC57K,IAAMC,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,6BAA+B,OAAO,sBAAwB,OAAO,uBAAyB,GAAG,yBAA2B,QAAQ,qBAAuB,OAAO,oCAAsC,4JAA0L,sBAAwB,IAAI,yBAA2B,MAAM,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["MAX_DUPLICATED_ITEMS", "MAX_AREA", "CSS_VAR_NAME", "supportsWaapi", "supportsRegisterProperty", "window", "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", "offset", "useMotionValue", "axis", "minus", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "fullChildrenArea", "isLayerTooBig", "measure", "te", "parentLength", "firstChild", "lastChild", "childrenLeft", "childrenRight", "childrenTop", "childrenBottom", "childrenWidth", "childrenHeight", "childrenArea", "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", "keyframes", "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", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W88zB8mIG", "T8rQFvSBR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap9xwb83", "args", "onTap6g7vd0", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "Frameriyjw79Qxc", "withCSS", "iyjw79Qxc_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "TextColorAnimation", "text", "fontSize", "fontFamily", "fontWeight", "textAlign", "color01", "color02", "Duration", "delay", "replays", "controls", "useAnimation", "textRef", "pe", "ue", "observer", "entry", "resolve", "p", "u", "motion", "addPropertyControls", "ControlType", "TextColorAnimation", "text", "fontSize", "fontFamily", "fontWeight", "textAlign", "color01", "color02", "Duration", "delay", "replays", "controls", "useAnimation", "textRef", "pe", "ue", "observer", "entry", "resolve", "p", "u", "motion", "addPropertyControls", "ControlType", "TextColorAnimation", "text", "fontSize", "fontFamily", "fontWeight", "textAlign", "color01", "color02", "Duration", "delay", "replays", "controls", "useAnimation", "textRef", "pe", "ue", "observer", "entry", "resolve", "p", "u", "motion", "addPropertyControls", "ControlType", "TextColorAnimation", "text", "fontSize", "fontFamily", "fontWeight", "textAlign", "color01", "color02", "Duration", "delay", "replays", "controls", "useAnimation", "textRef", "pe", "ue", "observer", "entry", "resolve", "p", "u", "motion", "addPropertyControls", "ControlType", "TextColorAnimation", "text", "fontSize", "fontFamily", "fontWeight", "textAlign", "color01", "color02", "Duration", "delay", "replays", "controls", "useAnimation", "textRef", "pe", "ue", "observer", "entry", "resolve", "p", "u", "motion", "addPropertyControls", "ControlType", "TopbarFonts", "getFonts", "jlxrNzbWX_default", "ContainerWithFX", "withFX", "Container", "MotionDivWithFX", "motion", "MoreFonts", "v_sphz5pK_default", "TextColorAnimationFonts", "TextColorAnimation", "TextColorAnimation1Fonts", "TextColorAnimation2Fonts", "TextColorAnimation3Fonts", "TextColorAnimation4Fonts", "TickerFonts", "Ticker", "MotionSectionWithFX", "ImageWithFX", "Image2", "RowCopy2Fonts", "iyjw79Qxc_default", "SmoothScrollFonts", "SmoothScroll", "FooterDarkCopy2Fonts", "cpk8xy3s1_default", "BlendedFonts", "BE1xHckvY_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "transition3", "animation1", "transition4", "animation2", "animation3", "transition5", "animation4", "transition6", "animation5", "transformTemplate2", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "cursor", "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", "isDisplayed", "isDisplayed1", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "RichText2", "x", "PropertyOverrides2", "ResolveLinks", "resolvedLinks", "getLoadingLazyAtYPosition", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "SVG", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
