{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/6JOOq0J4jJwKLuCYV3wM/fHRW4NnOxUgLetuW9Na3/UoWAphQar.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/C31a5jsoI7tLti4X41zP/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/tQ341jf12eUB9gYxSxSa/YWBcKYzg4KSHD38OEWKk/HYV9UcWC3.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/zi2ksjeDMFP1VVqM7dRc/moEONwlbsy0D3sE98DNr/Ik8K2sJjy.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/pRdOoKolpF8tbobR4NEh/lBQUmliRV1K7Og5CSoh4/M3gmzJ9XV.js\";import Button from\"https://framerusercontent.com/modules/iumcJtvQc9ZIhZ2j1tWn/YicCOOIEpgA3QBbZ5mFc/hlGmKlNiA.js\";const RichTextWithFX=withFX(RichText);const ButtonFonts=getFonts(Button);const PhosphorFonts=getFonts(Phosphor);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"r4Bulp1YD\",\"nvd4GFMsh\",\"x5Di1wIPd\",\"hd6tQ1QKf\"];const serializationHash=\"framer-W9Yg3\";const variantClassNames={hd6tQ1QKf:\"framer-v-sj2zt0\",nvd4GFMsh:\"framer-v-19upysy\",r4Bulp1YD:\"framer-v-5hgaiu\",x5Di1wIPd:\"framer-v-wirj9m\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:20};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const animation2={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const animation3={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:20};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Services - Grid\":\"hd6tQ1QKf\",\"Variant 1\":\"r4Bulp1YD\",\"Variant 2\":\"nvd4GFMsh\",\"Variant 3\":\"x5Di1wIPd\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"r4Bulp1YD\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"r4Bulp1YD\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"hd6tQ1QKf\")return false;return true;};const router=useRouter();const isDisplayed1=()=>{if(baseVariant===\"hd6tQ1QKf\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-5hgaiu\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"r4Bulp1YD\",ref:refBinding,style:{backgroundColor:\"var(--token-26624dc4-9cfe-4dc0-8dc0-8f3d8f33be8d, rgb(255, 252, 239))\",...style},...addPropertyOverrides({hd6tQ1QKf:{\"data-framer-name\":\"Services - Grid\"},nvd4GFMsh:{\"data-framer-name\":\"Variant 2\"},x5Di1wIPd:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jay41d\",layoutDependency:layoutDependency,layoutId:\"gqHgw4Wn3\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10t70rk\",layoutDependency:layoutDependency,layoutId:\"XB59UAwYw\",style:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rkcv0q\",layoutDependency:layoutDependency,layoutId:\"L6Pwr_2Zr\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-6rzkns\",\"data-styles-preset\":\"HYV9UcWC3\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(0, 0, 0))\"},children:\"Our Services\"})}),className:\"framer-wty8z\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FBW9DNV7j\",style:{\"--extracted-1of0zx5\":\"rgb(0, 0, 0)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({hd6tQ1QKf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-6rzkns\",\"data-styles-preset\":\"HYV9UcWC3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(0, 0, 0))\"},children:\"Our Services\"})}),transformTemplate:transformTemplate1}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-vj1gox\",\"data-styles-preset\":\"M3gmzJ9XV\",children:\"High-Impact Design & Development Services for Businesses in Jaipur\"})}),className:\"framer-k26h21\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rUc2_HSzn\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{hd6tQ1QKf:{\"--extracted-1qn201a\":\"var(--token-242edd6b-a1d9-48b9-a926-f5b8bc457ecb, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({hd6tQ1QKf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{className:\"framer-styles-preset-vj1gox\",\"data-styles-preset\":\"M3gmzJ9XV\",children:[\"High-impact  \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1qn201a, var(--token-242edd6b-a1d9-48b9-a926-f5b8bc457ecb, rgb(0, 0, 0)))\"},children:\"design & development\"}),\" services\"]})})}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SShzcrxeV\"},implicitPathVariables:undefined},{href:{webPageId:\"SShzcrxeV\"},implicitPathVariables:undefined},{href:{webPageId:\"SShzcrxeV\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+(80+((componentViewport?.height||2243.5)-160-2198)/2)+0+60+146,...addPropertyOverrides({nvd4GFMsh:{y:(componentViewport?.y||0)+(40+((componentViewport?.height||200)-80-2440)/2)+0+0+60+146},x5Di1wIPd:{y:(componentViewport?.y||0)+(40+((componentViewport?.height||2251)-80-2478)/2)+0+0+60+146}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3plivx-container\",layoutDependency:layoutDependency,layoutId:\"puY03IEQ_-container\",nodeId:\"puY03IEQ_\",rendersWithMotion:true,scopeId:\"UoWAphQar\",children:/*#__PURE__*/_jsx(Button,{bTObTIRMg:resolvedLinks[0],height:\"100%\",id:\"puY03IEQ_\",layoutId:\"puY03IEQ_\",O9VdYIURJ:\"Get Started\",variant:\"bCkLrCfdn\",width:\"100%\",...addPropertyOverrides({nvd4GFMsh:{bTObTIRMg:resolvedLinks[1]},x5Di1wIPd:{bTObTIRMg:resolvedLinks[2]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-e6k3sv\",layoutDependency:layoutDependency,layoutId:\"YYvaB7QdW\",style:{backgroundColor:\"var(--token-26624dc4-9cfe-4dc0-8dc0-8f3d8f33be8d, rgb(255, 252, 239))\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xizq7l\",layoutDependency:layoutDependency,layoutId:\"iWruPGCiN\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{hd6tQ1QKf:{backgroundColor:\"var(--token-26624dc4-9cfe-4dc0-8dc0-8f3d8f33be8d, rgb(255, 252, 239))\"}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-id9q8n\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"cV9V89Oiu\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(36, 89, 237, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-242edd6b-a1d9-48b9-a926-f5b8bc457ecb, rgb(0, 0, 0))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(36, 89, 237, 0.35995), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(36, 89, 237, 0.31779), 0px 10px 10px -3.75px rgba(36, 89, 237, 0.125)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mnpbnn\",layoutDependency:layoutDependency,layoutId:\"BBQeSu2pw\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-atz1wr-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"BMmjukDnF-container\",nodeId:\"BMmjukDnF\",rendersWithMotion:true,scopeId:\"UoWAphQar\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"PaintBrush\",id:\"BMmjukDnF\",layoutId:\"BMmjukDnF\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-vj1gox\",\"data-styles-preset\":\"M3gmzJ9XV\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\"},children:\"Website Development  & SEO\"})}),className:\"framer-y16r8e\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ld7DcXp9A\",style:{\"--extracted-1of0zx5\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-v7vase\",\"data-styles-preset\":\"Ik8K2sJjy\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"We build high-performing, SEO-optimized websites that drive traffic and conversions. With custom website design, fast loading speeds, and local SEO, we help businesses rank higher and attract quality leads.\"})}),className:\"framer-4p8wxy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kCBdSmKJz\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uItC_1XoG\"},implicitPathVariables:undefined},{href:{webPageId:\"uItC_1XoG\"},implicitPathVariables:undefined},{href:{webPageId:\"uItC_1XoG\"},implicitPathVariables:undefined},{href:{webPageId:\"uItC_1XoG\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+(80+((componentViewport?.height||2243.5)-160-2198)/2)+0+66+0+40+0+50+219,...addPropertyOverrides({hd6tQ1QKf:{y:undefined},nvd4GFMsh:{y:(componentViewport?.y||0)+(40+((componentViewport?.height||200)-80-2440)/2)+0+276+66+0+40+0+39+219},x5Di1wIPd:{y:(componentViewport?.y||0)+(40+((componentViewport?.height||2251)-80-2478)/2)+0+272+66+0+40+0+39+219}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-z9q4iz-container\",layoutDependency:layoutDependency,layoutId:\"JDPohjrGi-container\",nodeId:\"JDPohjrGi\",rendersWithMotion:true,scopeId:\"UoWAphQar\",children:/*#__PURE__*/_jsx(Button,{bTObTIRMg:resolvedLinks1[0],height:\"100%\",id:\"JDPohjrGi\",layoutId:\"JDPohjrGi\",O9VdYIURJ:\"Get Started\",variant:\"ev09z4hlo\",width:\"100%\",...addPropertyOverrides({hd6tQ1QKf:{bTObTIRMg:resolvedLinks1[3]},nvd4GFMsh:{bTObTIRMg:resolvedLinks1[1]},x5Di1wIPd:{bTObTIRMg:resolvedLinks1[2]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dq2idr\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"pqTtymdVW\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(36, 89, 237, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-242edd6b-a1d9-48b9-a926-f5b8bc457ecb, rgb(0, 0, 0))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(36, 89, 237, 0.35995), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(36, 89, 237, 0.31779), 0px 10px 10px -3.75px rgba(36, 89, 237, 0.125)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c1j53w\",layoutDependency:layoutDependency,layoutId:\"TC6lZPhCo\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wp0g8p-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Z8zRqAL70-container\",nodeId:\"Z8zRqAL70\",rendersWithMotion:true,scopeId:\"UoWAphQar\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"BoundingBox\",id:\"Z8zRqAL70\",layoutId:\"Z8zRqAL70\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-vj1gox\",\"data-styles-preset\":\"M3gmzJ9XV\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\"},children:\"Social Media Management\"})}),className:\"framer-zf1444\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JPxrqfzgt\",style:{\"--extracted-1of0zx5\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-v7vase\",\"data-styles-preset\":\"Ik8K2sJjy\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Grow your brand with data-driven social media strategies. From content creation and audience engagement to social media management and performance tracking, we help businesses maximize their online presence.\"})}),className:\"framer-o8bw1e\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"thL9E2EPi\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uItC_1XoG\"},implicitPathVariables:undefined},{href:{webPageId:\"uItC_1XoG\"},implicitPathVariables:undefined},{href:{webPageId:\"uItC_1XoG\"},implicitPathVariables:undefined},{href:{webPageId:\"uItC_1XoG\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+(80+((componentViewport?.height||2243.5)-160-2198)/2)+0+66+0+40+429+32+219,...addPropertyOverrides({hd6tQ1QKf:{y:undefined},nvd4GFMsh:{y:(componentViewport?.y||0)+(40+((componentViewport?.height||200)-80-2440)/2)+0+276+66+0+40+407+39+219},x5Di1wIPd:{y:(componentViewport?.y||0)+(40+((componentViewport?.height||2251)-80-2478)/2)+0+272+66+0+40+407+39+219}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fw8hu3-container\",layoutDependency:layoutDependency,layoutId:\"GKX9EAhuP-container\",nodeId:\"GKX9EAhuP\",rendersWithMotion:true,scopeId:\"UoWAphQar\",children:/*#__PURE__*/_jsx(Button,{bTObTIRMg:resolvedLinks2[0],height:\"100%\",id:\"GKX9EAhuP\",layoutId:\"GKX9EAhuP\",O9VdYIURJ:\"Get Started\",variant:\"ev09z4hlo\",width:\"100%\",...addPropertyOverrides({hd6tQ1QKf:{bTObTIRMg:resolvedLinks2[3]},nvd4GFMsh:{bTObTIRMg:resolvedLinks2[1]},x5Di1wIPd:{bTObTIRMg:resolvedLinks2[2]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q0tquo\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"W3PzO0D7Q\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(36, 89, 237, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-242edd6b-a1d9-48b9-a926-f5b8bc457ecb, rgb(0, 0, 0))\",borderBottomLeftRadius:56,borderBottomRightRadius:56,borderTopLeftRadius:56,borderTopRightRadius:56,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(36, 89, 237, 0.35995), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(36, 89, 237, 0.31779), 0px 10px 10px -3.75px rgba(36, 89, 237, 0.125)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i7851o\",layoutDependency:layoutDependency,layoutId:\"JZyZLMmmM\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1xzu9qe\",layoutDependency:layoutDependency,layoutId:\"NZKTokCxc\",style:{backgroundColor:\"var(--token-242edd6b-a1d9-48b9-a926-f5b8bc457ecb, rgb(0, 0, 0))\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-m6d6vj\",layoutDependency:layoutDependency,layoutId:\"NuF_Rkign\",style:{backgroundColor:\"var(--token-242edd6b-a1d9-48b9-a926-f5b8bc457ecb, rgb(0, 0, 0))\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lqpx3w-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"wFVzJV2BV-container\",nodeId:\"wFVzJV2BV\",rendersWithMotion:true,scopeId:\"UoWAphQar\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"DeviceMobileSpeaker\",id:\"wFVzJV2BV\",layoutId:\"wFVzJV2BV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-vj1gox\",\"data-styles-preset\":\"M3gmzJ9XV\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\"},children:\"Facebook Ads\"})}),className:\"framer-1t8f68t\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AxYtMZ_PU\",style:{\"--extracted-1of0zx5\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-v7vase\",\"data-styles-preset\":\"Ik8K2sJjy\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Get high-converting Facebook ad campaigns designed to generate leads and sales. We specialize in precise audience targeting, creative ad design, and A/B testing, ensuring a better ROI on every campaign.\"})}),className:\"framer-1r4qvu7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"J0rar3vOk\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uItC_1XoG\"},implicitPathVariables:undefined},{href:{webPageId:\"uItC_1XoG\"},implicitPathVariables:undefined},{href:{webPageId:\"uItC_1XoG\"},implicitPathVariables:undefined},{href:{webPageId:\"uItC_1XoG\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+(80+((componentViewport?.height||2243.5)-160-2198)/2)+0+66+0+40+822+32+234,...addPropertyOverrides({hd6tQ1QKf:{y:undefined},nvd4GFMsh:{y:(componentViewport?.y||0)+(40+((componentViewport?.height||200)-80-2440)/2)+0+276+66+0+40+814+32+234},x5Di1wIPd:{y:(componentViewport?.y||0)+(40+((componentViewport?.height||2251)-80-2478)/2)+0+272+66+0+40+814+39+234}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-iprlib-container\",layoutDependency:layoutDependency,layoutId:\"wghgi2Y6I-container\",nodeId:\"wghgi2Y6I\",rendersWithMotion:true,scopeId:\"UoWAphQar\",children:/*#__PURE__*/_jsx(Button,{bTObTIRMg:resolvedLinks3[0],height:\"100%\",id:\"wghgi2Y6I\",layoutId:\"wghgi2Y6I\",O9VdYIURJ:\"Get Started\",variant:\"ev09z4hlo\",width:\"100%\",...addPropertyOverrides({hd6tQ1QKf:{bTObTIRMg:resolvedLinks3[3]},nvd4GFMsh:{bTObTIRMg:resolvedLinks3[1]},x5Di1wIPd:{bTObTIRMg:resolvedLinks3[2]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pzxxi1\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"tNObNfV6e\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(36, 89, 237, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-242edd6b-a1d9-48b9-a926-f5b8bc457ecb, rgb(0, 0, 0))\",borderBottomLeftRadius:56,borderBottomRightRadius:56,borderTopLeftRadius:56,borderTopRightRadius:56,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(36, 89, 237, 0.35995), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(36, 89, 237, 0.31779), 0px 10px 10px -3.75px rgba(36, 89, 237, 0.125)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gqlgpt\",layoutDependency:layoutDependency,layoutId:\"q86MQssYg\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-pe8t1d\",layoutDependency:layoutDependency,layoutId:\"cfnVVj0OP\",style:{backgroundColor:\"var(--token-242edd6b-a1d9-48b9-a926-f5b8bc457ecb, rgb(0, 0, 0))\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"},children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-8oyui3\",layoutDependency:layoutDependency,layoutId:\"mDYZATtj3\",style:{backgroundColor:\"var(--token-242edd6b-a1d9-48b9-a926-f5b8bc457ecb, rgb(0, 0, 0))\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8hfta4-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"xM_te3pDC-container\",nodeId:\"xM_te3pDC\",rendersWithMotion:true,scopeId:\"UoWAphQar\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"PaintBrush\",id:\"xM_te3pDC\",layoutId:\"xM_te3pDC\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-vj1gox\",\"data-styles-preset\":\"M3gmzJ9XV\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\"},children:\"Email Marketing \"})}),className:\"framer-lwck87\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RKRBI4Juq\",style:{\"--extracted-1of0zx5\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-v7vase\",\"data-styles-preset\":\"Ik8K2sJjy\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Turn leads into loyal customers with personalized email campaigns. Our automated sequences, promotional emails, and targeted messaging drive engagement and increase conversions.\"})}),className:\"framer-1kn0ia8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tXdIEnGoX\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uItC_1XoG\"},implicitPathVariables:undefined},{href:{webPageId:\"uItC_1XoG\"},implicitPathVariables:undefined},{href:{webPageId:\"uItC_1XoG\"},implicitPathVariables:undefined},{href:{webPageId:\"uItC_1XoG\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+(80+((componentViewport?.height||2243.5)-160-2198)/2)+0+66+0+40+1230+32+234,...addPropertyOverrides({hd6tQ1QKf:{y:undefined},nvd4GFMsh:{y:(componentViewport?.y||0)+(40+((componentViewport?.height||200)-80-2440)/2)+0+276+66+0+40+1222+32+234},x5Di1wIPd:{y:(componentViewport?.y||0)+(40+((componentViewport?.height||2251)-80-2478)/2)+0+272+66+0+40+1236+39+234}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2f7bjc-container\",layoutDependency:layoutDependency,layoutId:\"OW1SwPUMi-container\",nodeId:\"OW1SwPUMi\",rendersWithMotion:true,scopeId:\"UoWAphQar\",children:/*#__PURE__*/_jsx(Button,{bTObTIRMg:resolvedLinks4[0],height:\"100%\",id:\"OW1SwPUMi\",layoutId:\"OW1SwPUMi\",O9VdYIURJ:\"Get Started\",variant:\"ev09z4hlo\",width:\"100%\",...addPropertyOverrides({hd6tQ1QKf:{bTObTIRMg:resolvedLinks4[3]},nvd4GFMsh:{bTObTIRMg:resolvedLinks4[1]},x5Di1wIPd:{bTObTIRMg:resolvedLinks4[2]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1avefed\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"V0dvLFvye\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(36, 89, 237, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-242edd6b-a1d9-48b9-a926-f5b8bc457ecb, rgb(0, 0, 0))\",borderBottomLeftRadius:56,borderBottomRightRadius:56,borderTopLeftRadius:56,borderTopRightRadius:56,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(36, 89, 237, 0.35995), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(36, 89, 237, 0.31779), 0px 10px 10px -3.75px rgba(36, 89, 237, 0.125)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13qlby1\",layoutDependency:layoutDependency,layoutId:\"P7E8vkU_R\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-sjstsf\",layoutDependency:layoutDependency,layoutId:\"yVJPtnlVq\",style:{backgroundColor:\"var(--token-242edd6b-a1d9-48b9-a926-f5b8bc457ecb, rgb(0, 0, 0))\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-4dn39z\",layoutDependency:layoutDependency,layoutId:\"bC7hgjVGn\",style:{backgroundColor:\"var(--token-242edd6b-a1d9-48b9-a926-f5b8bc457ecb, rgb(0, 0, 0))\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-176zp9k-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"aHacAcZym-container\",nodeId:\"aHacAcZym\",rendersWithMotion:true,scopeId:\"UoWAphQar\",transformTemplate:transformTemplate2,...addPropertyOverrides({hd6tQ1QKf:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Code\",id:\"aHacAcZym\",layoutId:\"aHacAcZym\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-vj1gox\",\"data-styles-preset\":\"M3gmzJ9XV\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\"},children:\"Google Ads \"})}),className:\"framer-1o1b65w\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ukpdIn9mb\",style:{\"--extracted-1of0zx5\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-v7vase\",\"data-styles-preset\":\"Ik8K2sJjy\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Boost visibility and generate leads with expertly managed Google Ads. We optimize search and display ad campaignswith keyword targeting, landing page optimization, and performance tracking for maximum results.\"})}),className:\"framer-1hc77gi\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RQxWk2OWX\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uItC_1XoG\"},implicitPathVariables:undefined},{href:{webPageId:\"uItC_1XoG\"},implicitPathVariables:undefined},{href:{webPageId:\"uItC_1XoG\"},implicitPathVariables:undefined},{href:{webPageId:\"uItC_1XoG\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+(80+((componentViewport?.height||2243.5)-160-2198)/2)+0+66+0+40+1638+32+234,...addPropertyOverrides({hd6tQ1QKf:{y:undefined},nvd4GFMsh:{y:(componentViewport?.y||0)+(40+((componentViewport?.height||200)-80-2440)/2)+0+276+66+0+40+1630+32+234},x5Di1wIPd:{y:(componentViewport?.y||0)+(40+((componentViewport?.height||2251)-80-2478)/2)+0+272+66+0+40+1658+39+234}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zrq3ht-container\",layoutDependency:layoutDependency,layoutId:\"NoDrBAc8q-container\",nodeId:\"NoDrBAc8q\",rendersWithMotion:true,scopeId:\"UoWAphQar\",children:/*#__PURE__*/_jsx(Button,{bTObTIRMg:resolvedLinks5[0],height:\"100%\",id:\"NoDrBAc8q\",layoutId:\"NoDrBAc8q\",O9VdYIURJ:\"Get Started\",variant:\"ev09z4hlo\",width:\"100%\",...addPropertyOverrides({hd6tQ1QKf:{bTObTIRMg:resolvedLinks5[3]},nvd4GFMsh:{bTObTIRMg:resolvedLinks5[1]},x5Di1wIPd:{bTObTIRMg:resolvedLinks5[2]}},baseVariant,gestureVariant)})})})})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-i1twap\",layoutDependency:layoutDependency,layoutId:\"SlwfCrryR\"})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-W9Yg3.framer-t4upvk, .framer-W9Yg3 .framer-t4upvk { display: block; }\",\".framer-W9Yg3.framer-5hgaiu { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 80px 16px 80px 16px; position: relative; width: 1400px; }\",\".framer-W9Yg3 .framer-jay41d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; z-index: 1; }\",\".framer-W9Yg3 .framer-10t70rk { align-content: flex-start; align-items: flex-start; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 60px 0px 0px 0px; position: sticky; top: 0px; width: 1px; z-index: 1; }\",\".framer-W9Yg3 .framer-rkcv0q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W9Yg3 .framer-wty8z, .framer-W9Yg3 .framer-k26h21, .framer-W9Yg3 .framer-y16r8e, .framer-W9Yg3 .framer-zf1444, .framer-W9Yg3 .framer-1t8f68t, .framer-W9Yg3 .framer-lwck87, .framer-W9Yg3 .framer-1o1b65w { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-W9Yg3 .framer-3plivx-container, .framer-W9Yg3 .framer-z9q4iz-container, .framer-W9Yg3 .framer-1fw8hu3-container, .framer-W9Yg3 .framer-iprlib-container, .framer-W9Yg3 .framer-2f7bjc-container, .framer-W9Yg3 .framer-zrq3ht-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-W9Yg3 .framer-e6k3sv { align-content: center; align-items: center; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 66px 0px 66px 0px; position: relative; width: 1px; }\",\".framer-W9Yg3 .framer-xizq7l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-W9Yg3 .framer-id9q8n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px 32px 50px 32px; position: sticky; top: 20px; width: 100%; z-index: 1; }\",\".framer-W9Yg3 .framer-mnpbnn, .framer-W9Yg3 .framer-c1j53w, .framer-W9Yg3 .framer-1i7851o, .framer-W9Yg3 .framer-gqlgpt, .framer-W9Yg3 .framer-13qlby1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W9Yg3 .framer-atz1wr-container, .framer-W9Yg3 .framer-wp0g8p-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); position: relative; width: 32px; }\",\".framer-W9Yg3 .framer-4p8wxy, .framer-W9Yg3 .framer-o8bw1e, .framer-W9Yg3 .framer-1r4qvu7, .framer-W9Yg3 .framer-1kn0ia8, .framer-W9Yg3 .framer-1hc77gi { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-W9Yg3 .framer-1dq2idr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px; position: sticky; top: 40px; width: 100%; z-index: 1; }\",\".framer-W9Yg3 .framer-1q0tquo, .framer-W9Yg3 .framer-pzxxi1, .framer-W9Yg3 .framer-1avefed { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px; position: sticky; top: 140px; width: 100%; z-index: 1; }\",\".framer-W9Yg3 .framer-1xzu9qe, .framer-W9Yg3 .framer-pe8t1d, .framer-W9Yg3 .framer-sjstsf { flex: none; height: 50px; overflow: visible; position: relative; width: 50px; }\",\".framer-W9Yg3 .framer-m6d6vj, .framer-W9Yg3 .framer-8oyui3, .framer-W9Yg3 .framer-4dn39z { flex: none; height: 50px; left: calc(5.580357142857165% - 50px / 2); overflow: visible; position: absolute; top: calc(22.321428571428594% - 50px / 2); width: 50px; }\",\".framer-W9Yg3 .framer-1lqpx3w-container { aspect-ratio: 1 / 1; bottom: -12px; flex: none; height: var(--framer-aspect-ratio-supported, 35px); position: absolute; right: -4px; width: 32px; }\",\".framer-W9Yg3 .framer-8hfta4-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); left: 0px; position: absolute; top: 0px; width: 32px; }\",\".framer-W9Yg3 .framer-176zp9k-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 38px); left: 48%; position: absolute; top: 54%; width: 32px; }\",\".framer-W9Yg3 .framer-i1twap { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 60px; height: min-content; justify-content: flex-start; min-height: 269px; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-W9Yg3.framer-5hgaiu, .framer-W9Yg3 .framer-jay41d, .framer-W9Yg3 .framer-10t70rk, .framer-W9Yg3 .framer-rkcv0q, .framer-W9Yg3 .framer-e6k3sv, .framer-W9Yg3 .framer-xizq7l, .framer-W9Yg3 .framer-id9q8n, .framer-W9Yg3 .framer-mnpbnn, .framer-W9Yg3 .framer-1dq2idr, .framer-W9Yg3 .framer-c1j53w, .framer-W9Yg3 .framer-1q0tquo, .framer-W9Yg3 .framer-1i7851o, .framer-W9Yg3 .framer-pzxxi1, .framer-W9Yg3 .framer-gqlgpt, .framer-W9Yg3 .framer-1avefed, .framer-W9Yg3 .framer-13qlby1, .framer-W9Yg3 .framer-i1twap { gap: 0px; } .framer-W9Yg3.framer-5hgaiu > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-W9Yg3.framer-5hgaiu > :first-child, .framer-W9Yg3 .framer-jay41d > :first-child, .framer-W9Yg3 .framer-i1twap > :first-child { margin-left: 0px; } .framer-W9Yg3.framer-5hgaiu > :last-child, .framer-W9Yg3 .framer-jay41d > :last-child, .framer-W9Yg3 .framer-i1twap > :last-child { margin-right: 0px; } .framer-W9Yg3 .framer-jay41d > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-W9Yg3 .framer-10t70rk > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-W9Yg3 .framer-10t70rk > :first-child, .framer-W9Yg3 .framer-rkcv0q > :first-child, .framer-W9Yg3 .framer-e6k3sv > :first-child, .framer-W9Yg3 .framer-xizq7l > :first-child, .framer-W9Yg3 .framer-id9q8n > :first-child, .framer-W9Yg3 .framer-mnpbnn > :first-child, .framer-W9Yg3 .framer-1dq2idr > :first-child, .framer-W9Yg3 .framer-c1j53w > :first-child, .framer-W9Yg3 .framer-1q0tquo > :first-child, .framer-W9Yg3 .framer-1i7851o > :first-child, .framer-W9Yg3 .framer-pzxxi1 > :first-child, .framer-W9Yg3 .framer-gqlgpt > :first-child, .framer-W9Yg3 .framer-1avefed > :first-child, .framer-W9Yg3 .framer-13qlby1 > :first-child { margin-top: 0px; } .framer-W9Yg3 .framer-10t70rk > :last-child, .framer-W9Yg3 .framer-rkcv0q > :last-child, .framer-W9Yg3 .framer-e6k3sv > :last-child, .framer-W9Yg3 .framer-xizq7l > :last-child, .framer-W9Yg3 .framer-id9q8n > :last-child, .framer-W9Yg3 .framer-mnpbnn > :last-child, .framer-W9Yg3 .framer-1dq2idr > :last-child, .framer-W9Yg3 .framer-c1j53w > :last-child, .framer-W9Yg3 .framer-1q0tquo > :last-child, .framer-W9Yg3 .framer-1i7851o > :last-child, .framer-W9Yg3 .framer-pzxxi1 > :last-child, .framer-W9Yg3 .framer-gqlgpt > :last-child, .framer-W9Yg3 .framer-1avefed > :last-child, .framer-W9Yg3 .framer-13qlby1 > :last-child { margin-bottom: 0px; } .framer-W9Yg3 .framer-rkcv0q > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-W9Yg3 .framer-e6k3sv > *, .framer-W9Yg3 .framer-xizq7l > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-W9Yg3 .framer-id9q8n > *, .framer-W9Yg3 .framer-mnpbnn > *, .framer-W9Yg3 .framer-1dq2idr > *, .framer-W9Yg3 .framer-c1j53w > *, .framer-W9Yg3 .framer-1q0tquo > *, .framer-W9Yg3 .framer-1i7851o > *, .framer-W9Yg3 .framer-pzxxi1 > *, .framer-W9Yg3 .framer-gqlgpt > *, .framer-W9Yg3 .framer-1avefed > *, .framer-W9Yg3 .framer-13qlby1 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-W9Yg3 .framer-i1twap > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } }\",\".framer-W9Yg3.framer-v-19upysy.framer-5hgaiu, .framer-W9Yg3.framer-v-wirj9m.framer-5hgaiu { padding: 40px 16px 40px 16px; }\",\".framer-W9Yg3.framer-v-19upysy .framer-jay41d { flex: 1 0 0px; flex-direction: column; gap: 20px; padding: 0px 16px 0px 16px; width: 1px; }\",\".framer-W9Yg3.framer-v-19upysy .framer-10t70rk { flex: none; order: 0; position: relative; top: unset; width: 100%; }\",\".framer-W9Yg3.framer-v-19upysy .framer-e6k3sv { flex: none; gap: 40px; order: 1; padding: 66px 0px 40px 0px; width: 100%; }\",\".framer-W9Yg3.framer-v-19upysy .framer-id9q8n, .framer-W9Yg3.framer-v-19upysy .framer-1dq2idr, .framer-W9Yg3.framer-v-wirj9m .framer-id9q8n, .framer-W9Yg3.framer-v-wirj9m .framer-1dq2idr, .framer-W9Yg3.framer-v-wirj9m .framer-1q0tquo, .framer-W9Yg3.framer-v-wirj9m .framer-pzxxi1, .framer-W9Yg3.framer-v-wirj9m .framer-1avefed { padding: 39px 32px 39px 32px; }\",\".framer-W9Yg3.framer-v-19upysy .framer-176zp9k-container, .framer-W9Yg3.framer-v-wirj9m .framer-176zp9k-container { height: var(--framer-aspect-ratio-supported, 35px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-W9Yg3.framer-v-19upysy .framer-jay41d, .framer-W9Yg3.framer-v-19upysy .framer-e6k3sv { gap: 0px; } .framer-W9Yg3.framer-v-19upysy .framer-jay41d > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-W9Yg3.framer-v-19upysy .framer-jay41d > :first-child, .framer-W9Yg3.framer-v-19upysy .framer-e6k3sv > :first-child { margin-top: 0px; } .framer-W9Yg3.framer-v-19upysy .framer-jay41d > :last-child, .framer-W9Yg3.framer-v-19upysy .framer-e6k3sv > :last-child { margin-bottom: 0px; } .framer-W9Yg3.framer-v-19upysy .framer-e6k3sv > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",\".framer-W9Yg3.framer-v-wirj9m .framer-jay41d { flex: 1 0 0px; flex-direction: column; gap: 16px; padding: 0px 16px 0px 16px; width: 1px; }\",\".framer-W9Yg3.framer-v-wirj9m .framer-10t70rk { flex: none; position: relative; top: unset; width: 100%; }\",\".framer-W9Yg3.framer-v-wirj9m .framer-e6k3sv { flex: none; gap: 40px; padding: 66px 0px 40px 0px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-W9Yg3.framer-v-wirj9m .framer-jay41d, .framer-W9Yg3.framer-v-wirj9m .framer-e6k3sv { gap: 0px; } .framer-W9Yg3.framer-v-wirj9m .framer-jay41d > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-W9Yg3.framer-v-wirj9m .framer-jay41d > :first-child, .framer-W9Yg3.framer-v-wirj9m .framer-e6k3sv > :first-child { margin-top: 0px; } .framer-W9Yg3.framer-v-wirj9m .framer-jay41d > :last-child, .framer-W9Yg3.framer-v-wirj9m .framer-e6k3sv > :last-child { margin-bottom: 0px; } .framer-W9Yg3.framer-v-wirj9m .framer-e6k3sv > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",\".framer-W9Yg3.framer-v-sj2zt0.framer-5hgaiu { padding: 0px 16px 0px 16px; }\",\".framer-W9Yg3.framer-v-sj2zt0 .framer-jay41d { align-content: center; align-items: center; flex-direction: column; gap: 16px; padding: 39px 0px 39px 0px; }\",\".framer-W9Yg3.framer-v-sj2zt0 .framer-10t70rk { align-content: center; align-items: center; flex: none; gap: 16px; max-width: 800px; padding: 0px; position: relative; top: unset; width: 100%; }\",\".framer-W9Yg3.framer-v-sj2zt0 .framer-rkcv0q { gap: 29px; min-height: 112px; order: 0; }\",\".framer-W9Yg3.framer-v-sj2zt0 .framer-wty8z { left: -32px; order: 1; position: absolute; top: 50%; width: 800px; z-index: 1; }\",\".framer-W9Yg3.framer-v-sj2zt0 .framer-k26h21 { bottom: -28px; order: 0; position: absolute; right: -88px; width: 800px; z-index: 1; }\",\".framer-W9Yg3.framer-v-sj2zt0 .framer-e6k3sv { flex: none; flex-direction: row; flex-wrap: wrap; padding: 20px 0px 20px 0px; width: 100%; }\",\".framer-W9Yg3.framer-v-sj2zt0 .framer-xizq7l { flex: 1 0 0px; order: 0; width: 1px; }\",\".framer-W9Yg3.framer-v-sj2zt0 .framer-id9q8n { height: 276px; padding: 32px; }\",\".framer-W9Yg3.framer-v-sj2zt0 .framer-mnpbnn { order: 0; }\",\".framer-W9Yg3.framer-v-sj2zt0 .framer-4p8wxy { order: 1; }\",\".framer-W9Yg3.framer-v-sj2zt0 .framer-z9q4iz-container { order: 2; }\",\".framer-W9Yg3.framer-v-sj2zt0 .framer-176zp9k-container { bottom: 2px; height: var(--framer-aspect-ratio-supported, 35px); left: unset; right: -4px; top: unset; }\",\".framer-W9Yg3.framer-v-sj2zt0 .framer-i1twap { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-W9Yg3.framer-v-sj2zt0 .framer-jay41d, .framer-W9Yg3.framer-v-sj2zt0 .framer-10t70rk, .framer-W9Yg3.framer-v-sj2zt0 .framer-rkcv0q, .framer-W9Yg3.framer-v-sj2zt0 .framer-e6k3sv { gap: 0px; } .framer-W9Yg3.framer-v-sj2zt0 .framer-jay41d > *, .framer-W9Yg3.framer-v-sj2zt0 .framer-10t70rk > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-W9Yg3.framer-v-sj2zt0 .framer-jay41d > :first-child, .framer-W9Yg3.framer-v-sj2zt0 .framer-10t70rk > :first-child, .framer-W9Yg3.framer-v-sj2zt0 .framer-rkcv0q > :first-child { margin-top: 0px; } .framer-W9Yg3.framer-v-sj2zt0 .framer-jay41d > :last-child, .framer-W9Yg3.framer-v-sj2zt0 .framer-10t70rk > :last-child, .framer-W9Yg3.framer-v-sj2zt0 .framer-rkcv0q > :last-child { margin-bottom: 0px; } .framer-W9Yg3.framer-v-sj2zt0 .framer-rkcv0q > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-W9Yg3.framer-v-sj2zt0 .framer-e6k3sv > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-W9Yg3.framer-v-sj2zt0 .framer-e6k3sv > :first-child { margin-left: 0px; } .framer-W9Yg3.framer-v-sj2zt0 .framer-e6k3sv > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-W9Yg3[data-border=\"true\"]::after, .framer-W9Yg3 [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 2243.5\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nvd4GFMsh\":{\"layout\":[\"fixed\",\"auto\"]},\"x5Di1wIPd\":{\"layout\":[\"fixed\",\"auto\"]},\"hd6tQ1QKf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUoWAphQar=withCSS(Component,css,\"framer-W9Yg3\");export default FramerUoWAphQar;FramerUoWAphQar.displayName=\"services\";FramerUoWAphQar.defaultProps={height:2243.5,width:1400};addPropertyControls(FramerUoWAphQar,{variant:{options:[\"r4Bulp1YD\",\"nvd4GFMsh\",\"x5Di1wIPd\",\"hd6tQ1QKf\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Services - Grid\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerUoWAphQar,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ButtonFonts,...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUoWAphQar\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nvd4GFMsh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"x5Di1wIPd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hd6tQ1QKf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"2243.5\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UoWAphQar.map"],
  "mappings": "krBAAgY,IAAMA,GAAqB,IAAUC,GAAsB,CAAC,KAAKC,GAAQ,eAAeA,CAAM,MAAM,MAAMA,GAAQ,cAAcA,CAAM,MAAM,IAAIA,GAAQ,eAAeA,CAAM,MAAM,OAAOA,GAAQ,cAAcA,CAAM,KAAK,EAAQC,GAA8B,OAAO,UAAY,KAAa,OAAO,UAAU,UAAU,oBAAqB,WAS/rB,SAARC,GAAwBC,EAAM,CAAY,GAAG,CAAC,MAAAC,EAAM,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,GAAW,aAAAC,GAAa,cAAAC,EAAc,YAAAC,GAAY,MAAAC,EAAM,YAAAC,EAAY,UAAAC,EAAU,UAAAC,GAAU,cAAAC,EAAc,YAAAC,GAAY,MAAAC,EAAK,EAAEf,EAAW,CAAC,YAAAgB,EAAY,SAAAC,EAAS,UAAAC,GAAU,UAAAC,GAAU,UAAAC,EAAS,EAAEN,GAAiB,CAAC,UAAAO,EAAU,WAAAC,CAAU,EAAET,EAAoBU,GAAanB,EAAe,GAAGC,EAAU,MAAMC,EAAY,MAAMC,CAAa,MAAMC,EAAW,KAAK,GAAGL,CAAO,KAAuBqB,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAC5fC,EAAczB,EAAM,OAAO,OAAO,EAAQ0B,EAAYC,GAAS,MAAMF,CAAa,EAAQG,EAAYF,EAAY,EAAKhB,IAAY,KAAMA,EAAU,QAAQ,IAAMmB,EAAanB,IAAY,QAAQA,IAAY,QAAcd,GAAOkC,GAAe,CAAC,EAAQC,GAAYpC,GAAsBe,CAAS,EAAQsB,GAAUC,GAAarC,GAAOmC,EAAW,EAA4BG,EAAUC,EAAO,IAAI,EAAQC,EAAYC,GAAQ,IAAW,CAAcC,GAAU,EAAeA,GAAU,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,EAAkBC,GAAe,CAAC,EAAMC,GAAc,CAAC,EAA2BC,EAAY,EAAMC,GAAQ,EAAKtB,IAAUqB,EAAYlB,EAAY,KAAK,MAAM,GAAGA,CAAW,EAAE,EAAEmB,GAAQ,GAAM,CAACtB,GAAUK,GAAaW,EAAK,SAAQK,EAAY,KAAK,MAAML,EAAK,OAAOA,EAAK,SAAS,CAAC,EAAE,EAAEK,EAAY,KAAK,IAAIA,EAAYlD,EAAoB,EAAEmD,GAAQ,GAAiC,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAGnB,GAAaM,EAAU,QAAQ,CAAC,IAAMc,EAAanB,EAAaK,EAAU,QAAQ,YAAYA,EAAU,QAAQ,aAAmBe,EAAMb,EAAY,CAAC,EAAE,QAAQP,EAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,UAAU,EAAkMc,GAAtLd,EAAY,CAAC,EAAE,QAAQP,EAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,YAAYA,EAAY,CAAC,EAAE,QAAQ,UAAUA,EAAY,CAAC,EAAE,QAAQ,aAAa,GAA2Ba,EAAMhD,EAAIuC,GAAQ,CAAC,OAAOQ,EAAa,SAASE,CAAc,CAAC,CAAE,CAAC,EAAE,CAAC,CAAC,EAAQC,GAAe5B,EAAS,CAAC,kBAAkB,MAAM,EAAE,CAAC,EAAwC,GAAGK,EAAY,CAChkD,GAAG,CAACL,EAAS,CAGE,IAAI6B,EAAcjB,EAAO,EAAI,EAAEkB,GAAU,KAAKC,GAAM,KAAKR,EAAO,EAASS,GAAOrB,EAAU,QAAQ,CAAC,CAAC,YAAAsB,CAAW,IAAI,CAAI,CAACJ,EAAc,UAAUI,EAAY,OAAOA,EAAY,SAASF,GAAM,KAAKR,EAAO,EAAGM,EAAc,QAAQ,EAAM,CAAC,GAAI,CAAC,CAAC,CAAE,CAACV,GAAef,GAAS,IAAIF,EAAc,CAACgC,EAAMC,IAAQ,CAAC,IAAIC,EAAaC,EAAcC,EAAcC,EAAc,IAAIC,EAAOL,IAAQ,IAAGK,EAAI3B,EAAY,CAAC,GAAMsB,IAAQjC,EAAc,OAAO,IAAGsC,EAAI3B,EAAY,CAAC,GAAG,IAAMG,EAAK,CAAC,MAAMnB,GAAWuC,EAAaF,EAAM,SAAS,MAAME,IAAe,OAAO,OAAOA,EAAa,MAAM,OAAO,OAAOtC,GAAYuC,EAAcH,EAAM,SAAS,MAAMG,IAAgB,OAAO,OAAOA,EAAc,OAAO,MAAM,EAAE,OAAoBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,IAAID,EAAI,MAAMxB,EAAK,SAAsB2B,GAAaT,EAAM,CAAC,MAAM,CAAC,IAAII,EAAcJ,EAAM,SAAS,MAAMI,IAAgB,OAAO,OAAOA,EAAc,MAAM,GAAGtB,EAAK,WAAW,EAAE,GAAGY,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAaC,EAAM,MAAS,GAAGI,EAAcL,EAAM,SAAS,MAAMK,IAAgB,OAAO,OAAOA,EAAc,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAE,CAAC,GAAG,CAACvC,EAAU,QAAQ4C,EAAE,EAAEA,EAAEvB,EAAYuB,IAAKxB,GAAc,CAAC,GAAGA,GAAc,GAAGhB,GAAS,IAAIF,EAAc,CAACgC,EAAMW,IAAa,CAAC,IAAIT,EAAaC,EAAcC,EAAcC,EAAcO,EAAcC,GAAc,IAAM/B,GAAK,CAAC,MAAMnB,GAAWuC,EAAaF,EAAM,SAAS,MAAME,IAAe,OAAO,OAAOA,EAAa,MAAM,OAAO,OAAOtC,GAAYuC,EAAcH,EAAM,SAAS,MAAMG,IAAgB,OAAO,OAAOA,EAAc,OAAO,OAAO,WAAW,WAAW,EAAE,OAAoBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,MAAMzB,GAAK,cAAc,GAAK,SAAsB2B,GAAaT,EAAM,CAAC,IAAIU,EAAE,IAAIC,EAAW,MAAM,CAAC,IAAIP,EAAcJ,EAAM,SAAS,MAAMI,IAAgB,OAAO,OAAOA,EAAc,MAAM,MAAMzC,GAAW0C,EAAcL,EAAM,SAAS,MAAMK,IAAgB,OAAO,OAAOA,EAAc,MAAM,OAAO,OAAOzC,GAAYgD,EAAcZ,EAAM,SAAS,MAAMY,IAAgB,OAAO,OAAOA,EAAc,OAAO,OAAO,WAAW,EAAE,GAAGlB,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,SAASU,EAAE,MAAS,GAAGG,GAAcb,EAAM,SAAS,MAAMa,KAAgB,OAAO,OAAOA,GAAc,QAAQ,CAAC,EAAEH,EAAE,KAAKC,CAAU,CAAC,EAAED,EAAE,KAAKC,CAAU,CAAE,CAAC,CAAC,EAAI,IAAMG,EAAehC,EAAK,SAASA,EAAK,SAAS,KAAK,MAAMA,EAAK,OAAOA,EAAK,QAAQ,EAAQiC,GAAYrC,EAAO,IAAI,EAAQsC,GAAStC,EAAO,IAAI,EAAQuC,GAAKvC,EAAO,CAAC,EAAQwC,GAAQxC,EAAO,EAAK,EAAQyC,GAAgBC,GAAiB,EAAQC,GAAQ3C,EAAO,IAAI,EAAQ4C,EAAa5C,EAAO,IAAI,EAE7lF,GAAG,CAACZ,EAAS,CAAC,IAAMyD,EAASC,GAAU/C,CAAS,EAEzCrC,IAA+BwD,GAAU,IAAI,CAAC,GAAG,EAAAuB,IAAiB,CAACL,GAAgB,CAAC/D,GAAe,OAAAuE,EAAa,QAAQD,GAAQ,QAAQ,QAAQ,CAAC,UAAU,CAAC/C,GAAY,CAAC,EAAEA,GAAYwC,CAAc,CAAC,CAAC,EAAE,CAAC,SAAS,KAAK,IAAIA,CAAc,EAAE/D,EAAM,IAAI,WAAW,IAAS,OAAO,QAAQ,CAAC,EAAQ,IAAIuE,EAAa,QAAQ,OAAO,CAAE,EAAE,CAACtE,EAAY8D,EAAe/D,CAAK,CAAC,EACtX6C,GAAU,IAAI,CAAK0B,EAAa,UAAkBC,GAAUD,EAAa,QAAQ,YAAY,SAAUA,EAAa,QAAQ,KAAK,EAAW,CAACC,GAAUD,EAAa,QAAQ,YAAY,WAAWA,EAAa,QAAQ,MAAM,EAAG,EAAE,CAACC,CAAQ,CAAC,GAG9NE,GAAkBC,GAAG,CAAC,GAAG,CAACZ,GAAgBK,IAAiB/E,GAA+B,OAKnF2E,GAAY,UAAU,OAAMA,GAAY,QAAQW,GAAGA,EAAEA,EAAEX,GAAY,QAAqE,IAAIY,GAAjDX,GAAS,UAAU,KAAK,EAAEU,EAAEV,GAAS,UAA6BjE,EAAM,KAAQmE,GAAQ,UAASS,GAAO3E,GAAaiE,GAAK,SAASU,EAAMV,GAAK,QAAQW,GAAK,EAAEd,EAAeG,GAAK,OAAO,EAAED,GAAS,QAAQU,EAAMH,GAAgBpF,GAAO,IAAI8E,GAAK,OAAO,CAAE,CAAC,CAAG,CAAY,IAAMY,GAAczD,EAAa,WAAW,YAAkB0D,GAAetE,GAAU,EAAQuE,GAAa,IAAIvE,GAAU,EAAQwE,GAAeC,GAAMxE,GAAU,EAAEqE,EAAc,EAAQI,GAAa,IAAIzE,GAAgB0E,GAAS,mBAAmBN,EAAa,mBAAmBnE,EAAS,KAAKsE,EAAc,uBAAuBF,EAAc,uBAAuBC,EAAY,oBAAoBrE,EAAS,KAAKwE,EAAY,KAAsB,OAAI/D,EAAkWoC,EAAK,UAAU,CAAC,MAAM,CAAC,GAAG6B,GAAe,QAAQhD,GAAQ,gBAAgB9B,EAAY6E,GAAS,OAAU,aAAa7E,EAAY6E,GAAS,OAAU,UAAU7E,EAAY6E,GAAS,OAAU,SAAS5E,EAAS,UAAU,SAAS,QAAQM,EAAY,EAAE,IAAIY,EAAU,SAAsB4D,EAAMC,EAAO,GAAG,CAAC,IAAIjB,GAAQ,MAAM,CAAC,GAAGe,GAAe,IAAI5F,EAAI,IAAIS,IAAY,UAAUsF,GAAczB,CAAc,EAAE,CAACA,EAAe,OAAU,KAAK7D,IAAY,SAASsF,GAAczB,CAAc,EAAE,CAACA,EAAe,OAAU,WAAW5D,GAAU,SAAS,WAAW,cAAckB,EAAa,MAAM,SAAS,GAAGf,GAAM,WAAWS,EAAS,OAAO,YAAY,UAAU1B,GAA8BkC,GAAY,CAAC,EAAEC,EAAS,EAAE,aAAa,IAAI,CAAC2C,GAAQ,QAAQ,GAAQI,EAAa,UACz5DA,EAAa,QAAQ,aAAatE,EAAa,EAAE,aAAa,IAAI,CAACkE,GAAQ,QAAQ,GAASI,EAAa,UACzGA,EAAa,QAAQ,aAAa,EAAG,EAAE,SAAS,CAACrC,GAAeC,EAAa,CAAC,CAAC,CAAC,CAAC,EAF6wBmD,EAAM,UAAU,CAAC,MAAMG,GAAkB,SAAS,CAAcjC,EAAK,MAAM,CAAC,MAAMkC,GAAY,SAAS,QAAG,CAAC,EAAelC,EAAK,IAAI,CAAC,MAAMmC,GAAY,SAAS,oBAAoB,CAAC,EAAenC,EAAK,IAAI,CAAC,MAAMoC,GAAe,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAErjC,CAAyBtG,GAAO,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,cAAc,CAAC,UAAU,GAAK,WAAW,EAAI,EAAE,YAAY,CAAC,YAAY,GAAK,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,UAAU,EAAI,EAAyBuG,GAAoBvG,GAAO,CAAC,MAAM,CAAC,KAAKwG,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,IAAI,KAAK,IAAI,eAAe,GAAK,KAAK,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAgB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,aAAa,OAAO,wBAAwB,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKuG,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKuG,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKuG,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKuG,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,YAAY,8CAA8C,CAAC,CAAC,EAA0B,IAAMT,GAAe,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAAoBI,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQC,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAAgDV,GAAM,CAACa,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAAQT,GAAcU,GAAO,OAAOA,GAAQ,UAAU,CAAC,MAAMA,CAAK,EC5B54E,IAAMC,EAAeC,GAAOC,EAAQ,EAAQC,GAAYC,GAASC,CAAM,EAAQC,GAAcF,GAASG,CAAQ,EAAQC,EAAgBP,GAAOQ,EAAO,GAAG,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,EAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,EAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,EAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWF,EAAY,EAAE,EAAE,EAAE,EAAE,EAAQG,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,EAAW,CAAC,QAAQ,GAAG,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,EAAW,CAAC,QAAQ,GAAG,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWP,EAAY,EAAE,EAAE,EAAE,EAAE,EAAQQ,GAAmB,CAACJ,EAAEC,IAAI,yBAAyBA,CAAC,GAASI,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAOE,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,GAAS5B,EAAO,OAAa6B,CAAQ,EAAQC,GAAwB,CAAC,kBAAkB,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAM7B,IAAe6B,EAAM,iBAAwB7B,EAAS,KAAK,GAAG,EAAE6B,EAAM,iBAAwB7B,EAAS,KAAK,GAAG,EAAU+B,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,GAAa,UAAAC,EAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,GAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA5C,EAAQ,GAAG6C,EAAS,EAAEtB,GAASI,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,GAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAAvD,CAAQ,EAAEwD,GAAgB,CAAC,WAAA7D,GAAW,eAAe,YAAY,IAAIyC,EAAW,QAAAlC,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ4D,EAAiB3B,GAAuBD,EAAM7B,CAAQ,EAA0G0D,EAAkBC,GAAG/D,GAAkB,GAAnH,CAAaiD,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQe,EAAY,IAAQZ,IAAc,YAA6Ca,EAAOC,GAAU,EAAQC,EAAa,IAAQf,IAAc,YAAuC,OAAoB3B,EAAK2C,EAAY,CAAC,GAAGlB,GAAUT,EAAgB,SAAsBhB,EAAKC,GAAS,CAAC,QAAQtB,EAAS,QAAQ,GAAM,SAAsBqB,EAAKT,GAAW,CAAC,MAAMT,EAAY,SAAsBkB,EAAK3B,EAAO,IAAI,CAAC,GAAGqD,GAAU,GAAGI,EAAgB,UAAUQ,GAAGD,EAAkB,gBAAgBb,EAAUI,EAAU,EAAE,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,gBAAgB,wEAAwE,GAAGQ,EAAK,EAAE,GAAG9C,EAAqB,CAAC,UAAU,CAAC,mBAAmB,iBAAiB,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEkD,EAAYI,CAAc,EAAE,SAAsBa,EAAMvE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB+D,EAAiB,SAAS,YAAY,SAAS,CAAcQ,EAAMvE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB+D,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAcQ,EAAMvE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB+D,EAAiB,SAAS,YAAY,SAAS,CAAcpC,EAAKpC,EAAe,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBC,EAAU,eAAeC,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,SAAsBgB,EAAWE,EAAS,CAAC,SAAsBF,EAAK3B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,wCAAwC,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,MAAM,CAAC,OAAO,EAAE,iBAAiB+D,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,eAAe,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG3D,EAAqB,CAAC,UAAU,CAAC,SAAsBuB,EAAWE,EAAS,CAAC,SAAsBF,EAAK3B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,wCAAwC,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,kBAAkBY,EAAkB,CAAC,EAAE0C,EAAYI,CAAc,CAAC,CAAC,EAAe/B,EAAKpC,EAAe,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBC,EAAU,eAAeC,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,SAAsBgB,EAAWE,EAAS,CAAC,SAAsBF,EAAK3B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,oEAAoE,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB+D,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,SAAS,CAAC,UAAU,CAAC,sBAAsB,iEAAiE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG3D,EAAqB,CAAC,UAAU,CAAC,SAAsBuB,EAAWE,EAAS,CAAC,SAAsB0C,EAAMvE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAC,gBAA6B2B,EAAK3B,EAAO,KAAK,CAAC,MAAM,CAAC,sBAAsB,2FAA2F,EAAE,SAAS,sBAAsB,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEQ,EAAY,GAAgBvC,EAAK6C,EAAa,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,GAA4B9C,EAAK+C,EAA0B,CAAC,OAAO,GAAG,GAAG1B,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,QAAQ,IAAI,MAAM,GAAG,EAAE,GAAG,IAAI,GAAG5C,EAAqB,CAAC,UAAU,CAAC,GAAG4C,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,MAAM,GAAG,EAAE,EAAE,GAAG,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,MAAM,GAAG,MAAM,GAAG,EAAE,EAAE,GAAG,GAAG,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsB/B,EAAKgD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBZ,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAK/B,EAAO,CAAC,UAAU6E,EAAc,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,cAAc,QAAQ,YAAY,MAAM,OAAO,GAAGrE,EAAqB,CAAC,UAAU,CAAC,UAAUqE,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAEnB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAK3B,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB+D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,uEAAuE,EAAE,SAAsBQ,EAAMvE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB+D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kBAAkB,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,uEAAuE,CAAC,EAAE,SAAS,CAAcQ,EAAMvE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiB+D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,kEAAkE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,iNAAiN,EAAE,SAAS,CAAcQ,EAAMvE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB+D,EAAiB,SAAS,YAAY,SAAS,CAAcpC,EAAK+C,EAA0B,CAAC,SAAsB/C,EAAKgD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiBZ,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAK7B,EAAS,CAAC,MAAM,qBAAqB,OAAO,OAAO,WAAW,QAAQ,cAAc,aAAa,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAKpC,EAAe,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBC,EAAU,eAAeC,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,SAAsBgB,EAAWE,EAAS,CAAC,SAAsBF,EAAK3B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8CAA8C,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB+D,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKpC,EAAe,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBC,EAAU,eAAeC,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,SAAsBgB,EAAWE,EAAS,CAAC,SAAsBF,EAAK3B,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,gNAAgN,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB+D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAepC,EAAK6C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASI,GAA6BjD,EAAK+C,EAA0B,CAAC,OAAO,GAAG,GAAG1B,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,QAAQ,IAAI,MAAM,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,GAAG5C,EAAqB,CAAC,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,GAAG4C,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,MAAM,GAAG,EAAE,IAAI,GAAG,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,MAAM,GAAG,MAAM,GAAG,EAAE,IAAI,GAAG,EAAE,GAAG,EAAE,GAAG,GAAG,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsB/B,EAAKgD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBZ,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAK/B,EAAO,CAAC,UAAUgF,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,cAAc,QAAQ,YAAY,MAAM,OAAO,GAAGxE,EAAqB,CAAC,UAAU,CAAC,UAAUwE,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAEtB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMvE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB+D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,kEAAkE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,iNAAiN,EAAE,SAAS,CAAcQ,EAAMvE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB+D,EAAiB,SAAS,YAAY,SAAS,CAAcpC,EAAK+C,EAA0B,CAAC,SAAsB/C,EAAKgD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiBZ,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAK7B,EAAS,CAAC,MAAM,qBAAqB,OAAO,OAAO,WAAW,QAAQ,cAAc,cAAc,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAKpC,EAAe,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBC,EAAU,eAAeC,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,SAAsBgB,EAAWE,EAAS,CAAC,SAAsBF,EAAK3B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8CAA8C,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB+D,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKpC,EAAe,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBC,EAAU,eAAeC,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,SAAsBgB,EAAWE,EAAS,CAAC,SAAsBF,EAAK3B,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,iNAAiN,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB+D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAepC,EAAK6C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASK,GAA6BlD,EAAK+C,EAA0B,CAAC,OAAO,GAAG,GAAG1B,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,QAAQ,IAAI,MAAM,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,GAAG,IAAI,GAAG5C,EAAqB,CAAC,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,GAAG4C,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,MAAM,GAAG,EAAE,IAAI,GAAG,EAAE,GAAG,IAAI,GAAG,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,MAAM,GAAG,MAAM,GAAG,EAAE,IAAI,GAAG,EAAE,GAAG,IAAI,GAAG,GAAG,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsB/B,EAAKgD,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBZ,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAK/B,EAAO,CAAC,UAAUiF,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,cAAc,QAAQ,YAAY,MAAM,OAAO,GAAGzE,EAAqB,CAAC,UAAU,CAAC,UAAUyE,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAEvB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMvE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB+D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,kEAAkE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,iNAAiN,EAAE,SAAS,CAAcQ,EAAMvE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB+D,EAAiB,SAAS,YAAY,SAAS,CAAcpC,EAAK5B,EAAgB,CAAC,kBAAkB,CAAC,WAAWU,CAAW,EAAE,sBAAsB,GAAK,gBAAgBM,EAAW,eAAeC,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,iBAAiB,iBAAiB+C,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kEAAkE,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,EAAE,SAAsBpC,EAAK5B,EAAgB,CAAC,kBAAkB,CAAC,WAAWU,CAAW,EAAE,sBAAsB,GAAK,gBAAgBM,EAAW,eAAeC,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,gBAAgB,iBAAiB+C,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kEAAkE,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,EAAE,SAAsBpC,EAAK+C,EAA0B,CAAC,SAAsB/C,EAAKgD,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiBZ,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAK7B,EAAS,CAAC,MAAM,qBAAqB,OAAO,OAAO,WAAW,QAAQ,cAAc,sBAAsB,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAKpC,EAAe,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBC,EAAU,eAAeC,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,SAAsBgB,EAAWE,EAAS,CAAC,SAAsBF,EAAK3B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8CAA8C,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB+D,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKpC,EAAe,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBC,EAAU,eAAeC,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,SAAsBgB,EAAWE,EAAS,CAAC,SAAsBF,EAAK3B,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,4MAA4M,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB+D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAepC,EAAK6C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASM,GAA6BnD,EAAK+C,EAA0B,CAAC,OAAO,GAAG,GAAG1B,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,QAAQ,IAAI,MAAM,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,GAAG,IAAI,GAAG5C,EAAqB,CAAC,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,GAAG4C,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,MAAM,GAAG,EAAE,IAAI,GAAG,EAAE,GAAG,IAAI,GAAG,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,MAAM,GAAG,MAAM,GAAG,EAAE,IAAI,GAAG,EAAE,GAAG,IAAI,GAAG,GAAG,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsB/B,EAAKgD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBZ,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAK/B,EAAO,CAAC,UAAUkF,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,cAAc,QAAQ,YAAY,MAAM,OAAO,GAAG1E,EAAqB,CAAC,UAAU,CAAC,UAAU0E,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAExB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMvE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiB+D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,kEAAkE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,iNAAiN,EAAE,SAAS,CAAcQ,EAAMvE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB+D,EAAiB,SAAS,YAAY,SAAS,CAAcQ,EAAMxE,EAAgB,CAAC,kBAAkB,CAAC,WAAWU,CAAW,EAAE,sBAAsB,GAAK,gBAAgBM,EAAW,eAAeC,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,gBAAgB,iBAAiB+C,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kEAAkE,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,EAAE,SAAS,CAAcpC,EAAK5B,EAAgB,CAAC,kBAAkB,CAAC,WAAWU,CAAW,EAAE,sBAAsB,GAAK,gBAAgBM,EAAW,eAAeC,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,gBAAgB,iBAAiB+C,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kEAAkE,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,EAAepC,EAAK+C,EAA0B,CAAC,SAAsB/C,EAAKgD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiBZ,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAK7B,EAAS,CAAC,MAAM,qBAAqB,OAAO,OAAO,WAAW,QAAQ,cAAc,aAAa,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAKpC,EAAe,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBC,EAAU,eAAeC,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,SAAsBgB,EAAWE,EAAS,CAAC,SAAsBF,EAAK3B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8CAA8C,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB+D,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKpC,EAAe,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBC,EAAU,eAAeC,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,SAAsBgB,EAAWE,EAAS,CAAC,SAAsBF,EAAK3B,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,mLAAmL,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB+D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAepC,EAAK6C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASO,GAA6BpD,EAAK+C,EAA0B,CAAC,OAAO,GAAG,GAAG1B,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,QAAQ,IAAI,MAAM,GAAG,EAAE,GAAG,EAAE,GAAG,KAAK,GAAG,IAAI,GAAG5C,EAAqB,CAAC,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,GAAG4C,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,MAAM,GAAG,EAAE,IAAI,GAAG,EAAE,GAAG,KAAK,GAAG,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,MAAM,GAAG,MAAM,GAAG,EAAE,IAAI,GAAG,EAAE,GAAG,KAAK,GAAG,GAAG,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsB/B,EAAKgD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBZ,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAK/B,EAAO,CAAC,UAAUmF,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,cAAc,QAAQ,YAAY,MAAM,OAAO,GAAG3E,EAAqB,CAAC,UAAU,CAAC,UAAU2E,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAEzB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMvE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB+D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,kEAAkE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,iNAAiN,EAAE,SAAS,CAAcQ,EAAMvE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB+D,EAAiB,SAAS,YAAY,SAAS,CAAcpC,EAAK5B,EAAgB,CAAC,kBAAkB,CAAC,WAAWU,CAAW,EAAE,sBAAsB,GAAK,gBAAgBM,EAAW,eAAeC,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,gBAAgB,iBAAiB+C,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kEAAkE,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,EAAE,SAAsBpC,EAAK5B,EAAgB,CAAC,kBAAkB,CAAC,WAAWU,CAAW,EAAE,sBAAsB,GAAK,gBAAgBM,EAAW,eAAeC,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,gBAAgB,iBAAiB+C,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kEAAkE,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,EAAE,SAAsBpC,EAAK+C,EAA0B,CAAC,SAAsB/C,EAAKgD,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiBZ,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,kBAAkB9C,GAAmB,GAAGb,EAAqB,CAAC,UAAU,CAAC,kBAAkB,MAAS,CAAC,EAAEkD,EAAYI,CAAc,EAAE,SAAsB/B,EAAK7B,EAAS,CAAC,MAAM,qBAAqB,OAAO,OAAO,WAAW,QAAQ,cAAc,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAKpC,EAAe,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBC,EAAU,eAAeC,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,SAAsBgB,EAAWE,EAAS,CAAC,SAAsBF,EAAK3B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8CAA8C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB+D,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKpC,EAAe,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBC,EAAU,eAAeC,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,SAAsBgB,EAAWE,EAAS,CAAC,SAAsBF,EAAK3B,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,mNAAmN,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB+D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAepC,EAAK6C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASQ,GAA6BrD,EAAK+C,EAA0B,CAAC,OAAO,GAAG,GAAG1B,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,QAAQ,IAAI,MAAM,GAAG,EAAE,GAAG,EAAE,GAAG,KAAK,GAAG,IAAI,GAAG5C,EAAqB,CAAC,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,GAAG4C,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,MAAM,GAAG,EAAE,IAAI,GAAG,EAAE,GAAG,KAAK,GAAG,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,MAAM,GAAG,MAAM,GAAG,EAAE,IAAI,GAAG,EAAE,GAAG,KAAK,GAAG,GAAG,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsB/B,EAAKgD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBZ,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAK/B,EAAO,CAAC,UAAUoF,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,cAAc,QAAQ,YAAY,MAAM,OAAO,GAAG5E,EAAqB,CAAC,UAAU,CAAC,UAAU4E,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE1B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEW,EAAa,GAAgB1C,EAAK3B,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB+D,EAAiB,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQkB,GAAI,CAAC,kFAAkF,gFAAgF,kRAAkR,uSAAuS,gUAAgU,4RAA4R,4WAA4W,iTAAiT,oSAAoS,kSAAkS,iUAAiU,sZAAsZ,2MAA2M,iTAAiT,mTAAmT,iXAAiX,8KAA8K,mQAAmQ,gMAAgM,wLAAwL,yLAAyL,kTAAkT,gwGAAgwG,8HAA8H,8IAA8I,wHAAwH,8HAA8H,2WAA2W,4KAA4K,2tBAA2tB,6IAA6I,6GAA6G,mHAAmH,mtBAAmtB,8EAA8E,8JAA8J,oMAAoM,2FAA2F,iIAAiI,wIAAwI,8IAA8I,wFAAwF,iFAAiF,6DAA6D,6DAA6D,uEAAuE,qKAAqK,4EAA4E,+vCAA+vC,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,+bAA+b,EAQ3rlDC,EAAgBC,GAAQ9C,GAAU4C,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,WAAWA,EAAgB,aAAa,CAAC,OAAO,OAAO,MAAM,IAAI,EAAEG,GAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,YAAY,YAAY,iBAAiB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,EAAgB,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,GAAGxF,GAAY,GAAGG,GAAc,GAAG2F,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "RichTextWithFX", "withFX", "RichText2", "ButtonFonts", "getFonts", "hlGmKlNiA_default", "PhosphorFonts", "Icon", "MotionDivWithFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "transformTemplate1", "_", "t", "animation2", "animation3", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "isDisplayed1", "LayoutGroup", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "css", "FramerUoWAphQar", "withCSS", "UoWAphQar_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
