{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@studio-freight/lenis@1.0.42/dist/lenis.mjs", "ssg:https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/ALzPzo9ZL7qsyNt6jnNi/Smooth_Scroll.js", "ssg:https://framerusercontent.com/modules/gYVYXSMbCn7wmGlzzuY4/g8CPa01PRs0fangRbLaQ/bpuY1axuP.js", "ssg:https://framerusercontent.com/modules/9SywMomwS0DCCt17iUZc/J8OCUrNfedorRFSt6xsI/hWSKck1Ec.js", "ssg:https://framerusercontent.com/modules/2XJ0Rt30RNpXu2o0J63e/RjxKooEDWdjkCif3w1sY/nNqB6paTP.js", "ssg:https://framerusercontent.com/modules/xabB3DxHl7x8akpSybGa/pyzTIxpWxxFjdExglM7A/QqKid7zfw.js", "ssg:https://framerusercontent.com/modules/hqARrVGROQKsoMncx4CG/tSxrx8r5t8SmNPgRn6Ve/RWOiFLPVh.js", "ssg:https://framerusercontent.com/modules/vd3anqApotKuEsYmQBVO/nlpovPG5XHOFuO7Wh9OK/SfrqHw1x_.js", "ssg:https://framerusercontent.com/modules/83eniBdNRKs8RDbwGBHJ/ApF2Y9wvaZExqXP39KZB/augiA20Il.js"],
  "sourcesContent": ["function t(e,i,s){return Math.max(e,Math.min(i,s))}class Animate{advance(e){if(!this.isRunning)return;let i=!1;if(this.lerp)this.value=(s=this.value,o=this.to,n=60*this.lerp,r=e,function(e,i,s){return(1-s)*e+s*i}(s,o,1-Math.exp(-n*r))),Math.round(this.value)===this.to&&(this.value=this.to,i=!0);else{this.currentTime+=e;const s=t(0,this.currentTime/this.duration,1);i=s>=1;const o=i?1:this.easing(s);this.value=this.from+(this.to-this.from)*o}var s,o,n,r;this.onUpdate?.(this.value,i),i&&this.stop()}stop(){this.isRunning=!1}fromTo(e,i,{lerp:s=.1,duration:o=1,easing:n=(e=>e),onStart:r,onUpdate:l}){this.from=this.value=e,this.to=i,this.lerp=s,this.duration=o,this.easing=n,this.currentTime=0,this.isRunning=!0,r?.(),this.onUpdate=l}}class Dimensions{constructor({wrapper:e,content:i,autoResize:s=!0,debounce:o=250}={}){this.wrapper=e,this.content=i,s&&(this.debouncedResize=function(e,i){let s;return function(){let o=arguments,n=this;clearTimeout(s),s=setTimeout((function(){e.apply(n,o)}),i)}}(this.resize,o),this.wrapper===window?window.addEventListener(\"resize\",this.debouncedResize,!1):(this.wrapperResizeObserver=new ResizeObserver(this.debouncedResize),this.wrapperResizeObserver.observe(this.wrapper)),this.contentResizeObserver=new ResizeObserver(this.debouncedResize),this.contentResizeObserver.observe(this.content)),this.resize()}destroy(){this.wrapperResizeObserver?.disconnect(),this.contentResizeObserver?.disconnect(),window.removeEventListener(\"resize\",this.debouncedResize,!1)}resize=()=>{this.onWrapperResize(),this.onContentResize()};onWrapperResize=()=>{this.wrapper===window?(this.width=window.innerWidth,this.height=window.innerHeight):(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)};onContentResize=()=>{this.wrapper===window?(this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth):(this.scrollHeight=this.wrapper.scrollHeight,this.scrollWidth=this.wrapper.scrollWidth)};get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}}class Emitter{constructor(){this.events={}}emit(e,...i){let s=this.events[e]||[];for(let e=0,o=s.length;e<o;e++)s[e](...i)}on(e,i){return this.events[e]?.push(i)||(this.events[e]=[i]),()=>{this.events[e]=this.events[e]?.filter((e=>i!==e))}}off(e,i){this.events[e]=this.events[e]?.filter((e=>i!==e))}destroy(){this.events={}}}const e=100/6;class VirtualScroll{constructor(e,{wheelMultiplier:i=1,touchMultiplier:s=1}){this.element=e,this.wheelMultiplier=i,this.touchMultiplier=s,this.touchStart={x:null,y:null},this.emitter=new Emitter,window.addEventListener(\"resize\",this.onWindowResize,!1),this.onWindowResize(),this.element.addEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.addEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.addEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.addEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}on(e,i){return this.emitter.on(e,i)}destroy(){this.emitter.destroy(),window.removeEventListener(\"resize\",this.onWindowResize,!1),this.element.removeEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.removeEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.removeEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.removeEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}onTouchStart=e=>{const{clientX:i,clientY:s}=e.targetTouches?e.targetTouches[0]:e;this.touchStart.x=i,this.touchStart.y=s,this.lastDelta={x:0,y:0},this.emitter.emit(\"scroll\",{deltaX:0,deltaY:0,event:e})};onTouchMove=e=>{const{clientX:i,clientY:s}=e.targetTouches?e.targetTouches[0]:e,o=-(i-this.touchStart.x)*this.touchMultiplier,n=-(s-this.touchStart.y)*this.touchMultiplier;this.touchStart.x=i,this.touchStart.y=s,this.lastDelta={x:o,y:n},this.emitter.emit(\"scroll\",{deltaX:o,deltaY:n,event:e})};onTouchEnd=e=>{this.emitter.emit(\"scroll\",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:e})};onWheel=i=>{let{deltaX:s,deltaY:o,deltaMode:n}=i;s*=1===n?e:2===n?this.windowWidth:1,o*=1===n?e:2===n?this.windowHeight:1,s*=this.wheelMultiplier,o*=this.wheelMultiplier,this.emitter.emit(\"scroll\",{deltaX:s,deltaY:o,event:i})};onWindowResize=()=>{this.windowWidth=window.innerWidth,this.windowHeight=window.innerHeight}}class Lenis{constructor({wrapper:e=window,content:i=document.documentElement,wheelEventsTarget:s=e,eventsTarget:o=s,smoothWheel:n=!0,syncTouch:r=!1,syncTouchLerp:l=.075,touchInertiaMultiplier:h=35,duration:a,easing:c=(e=>Math.min(1,1.001-Math.pow(2,-10*e))),lerp:d=!a&&.1,infinite:p=!1,orientation:u=\"vertical\",gestureOrientation:m=\"vertical\",touchMultiplier:v=1,wheelMultiplier:g=1,autoResize:S=!0,__experimental__naiveDimensions:w=!1}={}){this.__isSmooth=!1,this.__isScrolling=!1,this.__isStopped=!1,this.__isLocked=!1,this.onVirtualScroll=({deltaX:e,deltaY:i,event:s})=>{if(s.ctrlKey)return;const o=s.type.includes(\"touch\"),n=s.type.includes(\"wheel\");if(this.options.syncTouch&&o&&\"touchstart\"===s.type&&!this.isStopped&&!this.isLocked)return void this.reset();const r=0===e&&0===i,l=\"vertical\"===this.options.gestureOrientation&&0===i||\"horizontal\"===this.options.gestureOrientation&&0===e;if(r||l)return;let h=s.composedPath();if(h=h.slice(0,h.indexOf(this.rootElement)),h.find((e=>{var i,s,r,l,h;return(null===(i=e.hasAttribute)||void 0===i?void 0:i.call(e,\"data-lenis-prevent\"))||o&&(null===(s=e.hasAttribute)||void 0===s?void 0:s.call(e,\"data-lenis-prevent-touch\"))||n&&(null===(r=e.hasAttribute)||void 0===r?void 0:r.call(e,\"data-lenis-prevent-wheel\"))||(null===(l=e.classList)||void 0===l?void 0:l.contains(\"lenis\"))&&!(null===(h=e.classList)||void 0===h?void 0:h.contains(\"lenis-stopped\"))})))return;if(this.isStopped||this.isLocked)return void s.preventDefault();if(this.isSmooth=this.options.syncTouch&&o||this.options.smoothWheel&&n,!this.isSmooth)return this.isScrolling=!1,void this.animate.stop();s.preventDefault();let a=i;\"both\"===this.options.gestureOrientation?a=Math.abs(i)>Math.abs(e)?i:e:\"horizontal\"===this.options.gestureOrientation&&(a=e);const c=o&&this.options.syncTouch,d=o&&\"touchend\"===s.type&&Math.abs(a)>5;d&&(a=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+a,Object.assign({programmatic:!1},c?{lerp:d?this.options.syncTouchLerp:1}:{lerp:this.options.lerp,duration:this.options.duration,easing:this.options.easing}))},this.onNativeScroll=()=>{if(!this.__preventNextScrollEvent&&!this.isScrolling){const e=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.velocity=0,this.direction=Math.sign(this.animatedScroll-e),this.emit()}},window.lenisVersion=\"1.0.42\",e!==document.documentElement&&e!==document.body||(e=window),this.options={wrapper:e,content:i,wheelEventsTarget:s,eventsTarget:o,smoothWheel:n,syncTouch:r,syncTouchLerp:l,touchInertiaMultiplier:h,duration:a,easing:c,lerp:d,infinite:p,gestureOrientation:m,orientation:u,touchMultiplier:v,wheelMultiplier:g,autoResize:S,__experimental__naiveDimensions:w},this.animate=new Animate,this.emitter=new Emitter,this.dimensions=new Dimensions({wrapper:e,content:i,autoResize:S}),this.toggleClassName(\"lenis\",!0),this.velocity=0,this.isLocked=!1,this.isStopped=!1,this.isSmooth=r||n,this.isScrolling=!1,this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener(\"scroll\",this.onNativeScroll,!1),this.virtualScroll=new VirtualScroll(o,{touchMultiplier:v,wheelMultiplier:g}),this.virtualScroll.on(\"scroll\",this.onVirtualScroll)}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener(\"scroll\",this.onNativeScroll,!1),this.virtualScroll.destroy(),this.dimensions.destroy(),this.toggleClassName(\"lenis\",!1),this.toggleClassName(\"lenis-smooth\",!1),this.toggleClassName(\"lenis-scrolling\",!1),this.toggleClassName(\"lenis-stopped\",!1),this.toggleClassName(\"lenis-locked\",!1)}on(e,i){return this.emitter.on(e,i)}off(e,i){return this.emitter.off(e,i)}setScroll(e){this.isHorizontal?this.rootElement.scrollLeft=e:this.rootElement.scrollTop=e}resize(){this.dimensions.resize()}emit(){this.emitter.emit(\"scroll\",this)}reset(){this.isLocked=!1,this.isScrolling=!1,this.animatedScroll=this.targetScroll=this.actualScroll,this.velocity=0,this.animate.stop()}start(){this.isStopped&&(this.isStopped=!1,this.reset())}stop(){this.isStopped||(this.isStopped=!0,this.animate.stop(),this.reset())}raf(e){const i=e-(this.time||e);this.time=e,this.animate.advance(.001*i)}scrollTo(e,{offset:i=0,immediate:s=!1,lock:o=!1,duration:n=this.options.duration,easing:r=this.options.easing,lerp:l=!n&&this.options.lerp,onComplete:h,force:a=!1,programmatic:c=!0}={}){if(!this.isStopped&&!this.isLocked||a){if([\"top\",\"left\",\"start\"].includes(e))e=0;else if([\"bottom\",\"right\",\"end\"].includes(e))e=this.limit;else{let s;if(\"string\"==typeof e?s=document.querySelector(e):(null==e?void 0:e.nodeType)&&(s=e),s){if(this.options.wrapper!==window){const e=this.options.wrapper.getBoundingClientRect();i-=this.isHorizontal?e.left:e.top}const o=s.getBoundingClientRect();e=(this.isHorizontal?o.left:o.top)+this.animatedScroll}}if(\"number\"==typeof e){if(e+=i,e=Math.round(e),this.options.infinite?c&&(this.targetScroll=this.animatedScroll=this.scroll):e=t(0,e,this.limit),s)return this.animatedScroll=this.targetScroll=e,this.setScroll(this.scroll),this.reset(),void(null==h||h(this));if(!c){if(e===this.targetScroll)return;this.targetScroll=e}this.animate.fromTo(this.animatedScroll,e,{duration:n,easing:r,lerp:l,onStart:()=>{o&&(this.isLocked=!0),this.isScrolling=!0},onUpdate:(e,i)=>{this.isScrolling=!0,this.velocity=e-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=e,this.setScroll(this.scroll),c&&(this.targetScroll=e),i||this.emit(),i&&(this.reset(),this.emit(),null==h||h(this),this.__preventNextScrollEvent=!0,requestAnimationFrame((()=>{delete this.__preventNextScrollEvent})))}})}}}get rootElement(){return this.options.wrapper===window?document.documentElement:this.options.wrapper}get limit(){return this.options.__experimental__naiveDimensions?this.isHorizontal?this.rootElement.scrollWidth-this.rootElement.clientWidth:this.rootElement.scrollHeight-this.rootElement.clientHeight:this.dimensions.limit[this.isHorizontal?\"x\":\"y\"]}get isHorizontal(){return\"horizontal\"===this.options.orientation}get actualScroll(){return this.isHorizontal?this.rootElement.scrollLeft:this.rootElement.scrollTop}get scroll(){return this.options.infinite?(e=this.animatedScroll,i=this.limit,(e%i+i)%i):this.animatedScroll;var e,i}get progress(){return 0===this.limit?1:this.scroll/this.limit}get isSmooth(){return this.__isSmooth}set isSmooth(e){this.__isSmooth!==e&&(this.__isSmooth=e,this.toggleClassName(\"lenis-smooth\",e))}get isScrolling(){return this.__isScrolling}set isScrolling(e){this.__isScrolling!==e&&(this.__isScrolling=e,this.toggleClassName(\"lenis-scrolling\",e))}get isStopped(){return this.__isStopped}set isStopped(e){this.__isStopped!==e&&(this.__isStopped=e,this.toggleClassName(\"lenis-stopped\",e))}get isLocked(){return this.__isLocked}set isLocked(e){this.__isLocked!==e&&(this.__isLocked=e,this.toggleClassName(\"lenis-locked\",e))}get className(){let e=\"lenis\";return this.isStopped&&(e+=\" lenis-stopped\"),this.isLocked&&(e+=\" lenis-locked\"),this.isScrolling&&(e+=\" lenis-scrolling\"),this.isSmooth&&(e+=\" lenis-smooth\"),e}toggleClassName(e,i){this.rootElement.classList.toggle(e,i),this.emitter.emit(\"className change\",this)}}export{Lenis as default};\n//# sourceMappingURL=lenis.mjs.map\n", "import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import Lenis from\"@studio-freight/lenis\";import{useEffect,useRef}from\"react\";/**\n * @framerDisableUnlink\n */export default function SmoothScroll(props){const{intensity}=props;const lenis=useRef(null);useEffect(()=>{if(lenis.current)lenis.current.scrollTo(0,{immediate:true});},[lenis]);useEffect(()=>{const overlayElement=document.getElementById(\"overlay\");if(overlayElement){const handleMutation=(mutationsList,observer)=>{for(const mutation of mutationsList){if(mutation.type===\"childList\"){const hasChildren=overlayElement.children.length>0;if(hasChildren){// Check if the html tag has the style \"overflow: hidden;\"\nconst htmlElement=document.documentElement;const computedStyle=window.getComputedStyle(htmlElement);const isOverflowHidden=computedStyle.getPropertyValue(\"overflow\")===\"hidden\";if(isOverflowHidden){lenis.current.stop();}else{lenis.current.start();}}else{lenis.current.start();}}}};const observer=new MutationObserver(handleMutation);const config={childList:true};observer.observe(overlayElement,config);return()=>observer.disconnect();}},[]);useEffect(()=>{lenis.current=new Lenis({duration:intensity/10});const raf=time=>{lenis.current.raf(time);requestAnimationFrame(raf);};requestAnimationFrame(raf);return()=>{lenis.current.destroy();lenis.current=null;};},[]);return /*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"style\",{children:`\n      html.lenis {\n        height: auto;\n      }\n\n      .lenis.lenis-smooth {\n        scroll-behavior: auto !important;\n      }\n\n      .lenis.lenis-smooth [data-lenis-prevent] {\n        overscroll-behavior: contain;\n      }\n\n      .lenis.lenis-stopped {\n        overflow: hidden;\n      }\n\n      .lenis.lenis-scrolling iframe {\n        pointer-events: none;\n      }\n    `})});}SmoothScroll.displayName=\"Smooth Scroll\";addPropertyControls(SmoothScroll,{intensity:{title:\"Intensity\",type:ControlType.Number,defaultValue:10}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SmoothScroll\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Smooth_Scroll.map", "// Generated by Framer (90417e1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={E0vsIkX05:{hover:true}};const serializationHash=\"framer-hieCq\";const variantClassNames={E0vsIkX05:\"framer-v-2hwk2t\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"E0vsIkX05\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://x.com/whoworksthere\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-2hwk2t\",className,classNames)} framer-10y6kbp`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"E0vsIkX05\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"E0vsIkX05-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6vhdw1\",\"data-framer-name\":\"Frame 1618873000\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"yTiuEoocm\",style:{opacity:1},svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"16\" cy=\"16\" r=\"16\" fill=\"url(#paint0_linear_238_142)\"/>\\n<path d=\"M17.7124 14.789L24.4132 7H22.8253L17.0072 13.7633L12.3601 7H7L14.0271 17.2272L7 25.3955H8.5879L14.732 18.2529L19.6399 25.3955H25L17.7117 14.789H17.7124ZM15.5374 17.3173L14.8254 16.2989L9.16 8.19534H11.5992L16.1713 14.7349L16.8832 15.7533L22.826 24.2542H20.3868L15.5374 17.3173Z\" fill=\"white\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_238_142\" x1=\"16\" y1=\"0\" x2=\"16\" y2=\"32\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#6C5CE7\"/>\\n<stop offset=\"1\" stop-color=\"#574AE2\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',variants:{\"E0vsIkX05-hover\":{opacity:.7}},withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hieCq.framer-10y6kbp, .framer-hieCq .framer-10y6kbp { display: block; }\",\".framer-hieCq.framer-2hwk2t { cursor: pointer; height: 32px; overflow: hidden; position: relative; text-decoration: none; width: 32px; }\",\".framer-hieCq .framer-6vhdw1 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 32\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"j9LN5izfR\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbpuY1axuP=withCSS(Component,css,\"framer-hieCq\");export default FramerbpuY1axuP;FramerbpuY1axuP.displayName=\"Social in bio - X\";FramerbpuY1axuP.defaultProps={height:32,width:32};addFonts(FramerbpuY1axuP,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbpuY1axuP\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"32\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"j9LN5izfR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"32\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bpuY1axuP.map", "// Generated by Framer (d2515d1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/f5KOEqdhbN4Ucv9Ko8AO/eepRBAhuAENlRa3ChTGd/IV0eGN2zF.js\";const cycleOrder=[\"sOtQz3tya\",\"Eb1wTFuEn\",\"zaJM89RxV\"];const serializationHash=\"framer-8LGcP\";const variantClassNames={Eb1wTFuEn:\"framer-v-126gvrg\",sOtQz3tya:\"framer-v-1w1evu8\",zaJM89RxV:\"framer-v-en1e8i\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"sOtQz3tya\",Phone:\"zaJM89RxV\",Tablet:\"Eb1wTFuEn\"};const getProps=({height,id,imageYesNo,name1,position,saaSLeadsTestimonial,text,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5;return{...props,DKfrvUrU_:(_ref=text!==null&&text!==void 0?text:props.DKfrvUrU_)!==null&&_ref!==void 0?_ref:\"Been using SaasyDB for months and it's the best SaaS database out there, which is also affordable. 10/10, I highly recommend getting that sweet data.\",fCyFxjOgD:(_ref1=position!==null&&position!==void 0?position:props.fCyFxjOgD)!==null&&_ref1!==void 0?_ref1:\"Founder of Salesforge & Mailforge\",j_aEbPsGn:(_ref2=saaSLeadsTestimonial!==null&&saaSLeadsTestimonial!==void 0?saaSLeadsTestimonial:props.j_aEbPsGn)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/OpBrmj5uFPz1bq3KHDkr4dJWPY.jpg\"},PYcxkElfD:(_ref3=name1!==null&&name1!==void 0?name1:props.PYcxkElfD)!==null&&_ref3!==void 0?_ref3:\"Frank\",TjjaoHZbe:(_ref4=imageYesNo!==null&&imageYesNo!==void 0?imageYesNo:props.TjjaoHZbe)!==null&&_ref4!==void 0?_ref4:true,variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"sOtQz3tya\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,DKfrvUrU_,j_aEbPsGn,PYcxkElfD,fCyFxjOgD,TjjaoHZbe,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sOtQz3tya\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1w1evu8\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"sOtQz3tya\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(246, 246, 247)\",...style},...addPropertyOverrides({Eb1wTFuEn:{\"data-framer-name\":\"Tablet\"},zaJM89RxV:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j5gv7l\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"xnUZIXjGW\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"95%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 49, 53))\"},children:\"Been using SaasyDB for months and it's the best SaaS database out there, which is also affordable. 10/10.\"})}),className:\"framer-1gc5bjl\",\"data-framer-name\":\"Quote\",fonts:[\"GF;Figtree-500\"],layoutDependency:layoutDependency,layoutId:\"KYDF53ID7\",style:{\"--extracted-r6o4lv\":\"rgb(51, 49, 53)\",\"--framer-paragraph-spacing\":\"48px\"},text:DKfrvUrU_,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Eb1wTFuEn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"38px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 49, 53))\"},children:\"Been using SaasyDB for months and it's the best SaaS database out there, which is also affordable. 10/10.\"})})},zaJM89RxV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"38px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 49, 53))\"},children:\"Been using SaasyDB for months and it's the best SaaS database out there, which is also affordable. 10/10.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a0k9lh\",\"data-framer-name\":\"Avatar and text\",layoutDependency:layoutDependency,layoutId:\"AmcxDnzM3\",children:[TjjaoHZbe&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",sizes:\"64px\",...toResponsiveImage(j_aEbPsGn),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-14j6b62\",\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"q1NevQJDG\",style:{borderBottomLeftRadius:200,borderBottomRightRadius:200,borderTopLeftRadius:200,borderTopRightRadius:200},...addPropertyOverrides({zaJM89RxV:{background:{alt:\"\",fit:\"stretch\",sizes:\"40px\",...toResponsiveImage(j_aEbPsGn),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t5ynjl\",\"data-framer-name\":\"Text and supporting text\",layoutDependency:layoutDependency,layoutId:\"bmKc5nFmn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\"',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(51, 49, 53, 1))\"},children:\"Frank\"})})}),className:\"framer-q55ryp\",\"data-framer-name\":\"Text\",fonts:[\"GF;Figtree-500\"],layoutDependency:layoutDependency,layoutId:\"Bzcr77eDo\",style:{\"--extracted-1w3ko1f\":\"rgba(51, 49, 53, 1)\",\"--framer-paragraph-spacing\":\"18px\"},text:PYcxkElfD,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-49fev7\",\"data-styles-preset\":\"IV0eGN2zF\",style:{\"--framer-text-alignment\":\"center\"},children:\"Founder of Salesforge & Mailforge\"})}),className:\"framer-4gntg8\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x4acN8ZkT\",style:{\"--framer-paragraph-spacing\":\"16px\"},text:fCyFxjOgD,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8LGcP.framer-e6tch4, .framer-8LGcP .framer-e6tch4 { display: block; }\",\".framer-8LGcP.framer-1w1evu8 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 112px 0px 112px 0px; position: relative; width: 1200px; }\",\".framer-8LGcP .framer-j5gv7l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-8LGcP .framer-1gc5bjl { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1216px; word-break: break-word; word-wrap: break-word; }\",\".framer-8LGcP .framer-a0k9lh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 90%; }\",\".framer-8LGcP .framer-14j6b62 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 64px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 64px; }\",\".framer-8LGcP .framer-t5ynjl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8LGcP .framer-q55ryp, .framer-8LGcP .framer-4gntg8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8LGcP.framer-1w1evu8, .framer-8LGcP .framer-j5gv7l, .framer-8LGcP .framer-a0k9lh, .framer-8LGcP .framer-14j6b62, .framer-8LGcP .framer-t5ynjl { gap: 0px; } .framer-8LGcP.framer-1w1evu8 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-8LGcP.framer-1w1evu8 > :first-child, .framer-8LGcP .framer-j5gv7l > :first-child, .framer-8LGcP .framer-a0k9lh > :first-child, .framer-8LGcP .framer-14j6b62 > :first-child, .framer-8LGcP .framer-t5ynjl > :first-child { margin-top: 0px; } .framer-8LGcP.framer-1w1evu8 > :last-child, .framer-8LGcP .framer-j5gv7l > :last-child, .framer-8LGcP .framer-a0k9lh > :last-child, .framer-8LGcP .framer-14j6b62 > :last-child, .framer-8LGcP .framer-t5ynjl > :last-child { margin-bottom: 0px; } .framer-8LGcP .framer-j5gv7l > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-8LGcP .framer-a0k9lh > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-8LGcP .framer-14j6b62 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-8LGcP .framer-t5ynjl > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",\".framer-8LGcP.framer-v-126gvrg.framer-1w1evu8 { height: 507px; padding: 64px 32px 64px 32px; width: 810px; }\",\".framer-8LGcP.framer-v-126gvrg .framer-1gc5bjl { max-width: 620px; width: 84%; }\",\".framer-8LGcP.framer-v-126gvrg .framer-a0k9lh { width: 84%; }\",\".framer-8LGcP.framer-v-en1e8i.framer-1w1evu8 { height: 488px; padding: 56px 24px 56px 24px; width: 390px; }\",\".framer-8LGcP.framer-v-en1e8i .framer-j5gv7l { padding: 0px; }\",\".framer-8LGcP.framer-v-en1e8i .framer-1gc5bjl { max-width: 633px; width: 100%; }\",\".framer-8LGcP.framer-v-en1e8i .framer-14j6b62 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 40px); width: 40px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 533\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Eb1wTFuEn\":{\"layout\":[\"fixed\",\"fixed\"]},\"zaJM89RxV\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"DKfrvUrU_\":\"text\",\"j_aEbPsGn\":\"saaSLeadsTestimonial\",\"PYcxkElfD\":\"name1\",\"fCyFxjOgD\":\"position\",\"TjjaoHZbe\":\"imageYesNo\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerhWSKck1Ec=withCSS(Component,css,\"framer-8LGcP\");export default FramerhWSKck1Ec;FramerhWSKck1Ec.displayName=\"Quote section\";FramerhWSKck1Ec.defaultProps={height:533,width:1200};addPropertyControls(FramerhWSKck1Ec,{variant:{options:[\"sOtQz3tya\",\"Eb1wTFuEn\",\"zaJM89RxV\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},DKfrvUrU_:{defaultValue:\"Been using SaasyDB for months and it's the best SaaS database out there, which is also affordable. 10/10, I highly recommend getting that sweet data.\",displayTextArea:true,title:\"Text\",type:ControlType.String},j_aEbPsGn:{__defaultAssetReference:\"data:framer/asset-reference,OpBrmj5uFPz1bq3KHDkr4dJWPY.jpg?originalFilename=frank.jpg&preferredSize=auto\",title:\"SaaS leads testimonial\",type:ControlType.ResponsiveImage},PYcxkElfD:{defaultValue:\"Frank\",displayTextArea:false,title:\"Name\",type:ControlType.String},fCyFxjOgD:{defaultValue:\"Founder of Salesforge & Mailforge\",displayTextArea:false,title:\"Position\",type:ControlType.String},TjjaoHZbe:{defaultValue:true,title:\"Image yes no\",type:ControlType.Boolean}});addFonts(FramerhWSKck1Ec,[{explicitInter:true,fonts:[{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5bwkEU4HTy.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhWSKck1Ec\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerVariables\":\"{\\\"DKfrvUrU_\\\":\\\"text\\\",\\\"j_aEbPsGn\\\":\\\"saaSLeadsTestimonial\\\",\\\"PYcxkElfD\\\":\\\"name1\\\",\\\"fCyFxjOgD\\\":\\\"position\\\",\\\"TjjaoHZbe\\\":\\\"imageYesNo\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"533\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Eb1wTFuEn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zaJM89RxV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hWSKck1Ec.map", "// Generated by Framer (1e08357)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"pJvxDXPrC\",\"T3uRBsxjz\"];const serializationHash=\"framer-mZJoL\";const variantClassNames={pJvxDXPrC:\"framer-v-1lsowj1\",T3uRBsxjz:\"framer-v-1xc9wp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={black:\"pJvxDXPrC\",gray:\"T3uRBsxjz\"};const getProps=({funding,height,id,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,nu0MAb8QM:(_ref=funding!==null&&funding!==void 0?funding:props.nu0MAb8QM)!==null&&_ref!==void 0?_ref:\"Series A\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"pJvxDXPrC\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,nu0MAb8QM,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pJvxDXPrC\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1lsowj1\",className,classNames),\"data-framer-name\":\"black\",layoutDependency:layoutDependency,layoutId:\"pJvxDXPrC\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-a5efbe3e-2300-4df9-bd68-ccb83b66c45e, rgb(45, 52, 54))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},variants:{T3uRBsxjz:{backgroundColor:\"var(--token-a8abcc39-c9a6-4340-a663-a36b8cb0d635, rgb(239, 239, 240))\"}},...addPropertyOverrides({T3uRBsxjz:{\"data-framer-name\":\"gray\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Series A\"})}),className:\"framer-4haa6t\",fonts:[\"GF;Figtree-500\"],layoutDependency:layoutDependency,layoutId:\"U8eRq9iWH\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:nu0MAb8QM,variants:{T3uRBsxjz:{\"--extracted-r6o4lv\":\"var(--token-a5efbe3e-2300-4df9-bd68-ccb83b66c45e, rgb(45, 52, 54)) \"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({T3uRBsxjz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a5efbe3e-2300-4df9-bd68-ccb83b66c45e, rgb(45, 52, 54)) )\"},children:\"Series A\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mZJoL.framer-1l2pupu, .framer-mZJoL .framer-1l2pupu { display: block; }\",\".framer-mZJoL.framer-1lsowj1 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 32px; justify-content: center; overflow: hidden; padding: 0px 16px 0px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-mZJoL .framer-4haa6t { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mZJoL.framer-1lsowj1 { gap: 0px; } .framer-mZJoL.framer-1lsowj1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-mZJoL.framer-1lsowj1 > :first-child { margin-left: 0px; } .framer-mZJoL.framer-1lsowj1 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 99\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"T3uRBsxjz\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"nu0MAb8QM\":\"funding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernNqB6paTP=withCSS(Component,css,\"framer-mZJoL\");export default FramernNqB6paTP;FramernNqB6paTP.displayName=\"Bento chip\";FramernNqB6paTP.defaultProps={height:32,width:99};addPropertyControls(FramernNqB6paTP,{variant:{options:[\"pJvxDXPrC\",\"T3uRBsxjz\"],optionTitles:[\"black\",\"gray\"],title:\"Variant\",type:ControlType.Enum},nu0MAb8QM:{defaultValue:\"Series A\",displayTextArea:false,title:\"Funding\",type:ControlType.String}});addFonts(FramernNqB6paTP,[{explicitInter:true,fonts:[{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5bwkEU4HTy.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernNqB6paTP\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"T3uRBsxjz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"nu0MAb8QM\\\":\\\"funding\\\"}\",\"framerIntrinsicHeight\":\"32\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"99\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nNqB6paTP.map", "// Generated by Framer (90417e1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={AYJYo9kBf:{hover:true}};const serializationHash=\"framer-YLYFw\";const variantClassNames={AYJYo9kBf:\"framer-v-xx0g9o\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,link,width,...props})=>{return{...props,dRiTRklNo:link!==null&&link!==void 0?link:props.dRiTRklNo};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,dRiTRklNo,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"AYJYo9kBf\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:dRiTRklNo,openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-xx0g9o\",className,classNames)} framer-1xg2stl`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"AYJYo9kBf\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:1,...style},variants:{\"AYJYo9kBf-hover\":{opacity:.7}},...addPropertyOverrides({\"AYJYo9kBf-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-o40qrd\",\"data-framer-name\":\"Frame 1618873001\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"JiWpMuzan\",svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"16\" cy=\"16\" r=\"16\" fill=\"url(#paint0_linear_238_144)\"/>\\n<path d=\"M7 8.99807C7 8.41891 7.20271 7.94111 7.60811 7.56467C8.01351 7.18822 8.54055 7 9.18919 7C9.82626 7 10.3417 7.18532 10.7355 7.55598C11.1409 7.93822 11.3436 8.43628 11.3436 9.05019C11.3436 9.60618 11.1467 10.0695 10.7529 10.4402C10.3475 10.8224 9.81467 11.0135 9.15444 11.0135H9.13707C8.49999 11.0135 7.98456 10.8224 7.59073 10.4402C7.19691 10.0579 7 9.57721 7 8.99807ZM7.22587 24.2008V12.5946H11.083V24.2008H7.22587ZM13.2201 24.2008H17.0772V17.7201C17.0772 17.3147 17.1236 17.0019 17.2162 16.7819C17.3784 16.388 17.6245 16.055 17.9546 15.7828C18.2847 15.5106 18.6988 15.3745 19.1969 15.3745C20.4942 15.3745 21.1429 16.249 21.1429 17.9981V24.2008H25V17.5463C25 15.832 24.5946 14.5319 23.7838 13.6458C22.973 12.7597 21.9016 12.3166 20.5695 12.3166C19.0753 12.3166 17.9112 12.9595 17.0772 14.2452V14.2799H17.0598L17.0772 14.2452V12.5946H13.2201C13.2432 12.9652 13.2548 14.1177 13.2548 16.0521C13.2548 17.9865 13.2432 20.7027 13.2201 24.2008Z\" fill=\"white\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_238_144\" x1=\"16\" y1=\"0\" x2=\"16\" y2=\"32\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#6C5CE7\"/>\\n<stop offset=\"1\" stop-color=\"#574AE2\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YLYFw.framer-1xg2stl, .framer-YLYFw .framer-1xg2stl { display: block; }\",\".framer-YLYFw.framer-xx0g9o { cursor: pointer; height: 32px; overflow: hidden; position: relative; text-decoration: none; width: 32px; }\",\".framer-YLYFw .framer-o40qrd { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 32\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"h1XGzwNDF\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"dRiTRklNo\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQqKid7zfw=withCSS(Component,css,\"framer-YLYFw\");export default FramerQqKid7zfw;FramerQqKid7zfw.displayName=\"Social in bio LinkedIn\";FramerQqKid7zfw.defaultProps={height:32,width:32};addPropertyControls(FramerQqKid7zfw,{dRiTRklNo:{title:\"Link\",type:ControlType.Link}});addFonts(FramerQqKid7zfw,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQqKid7zfw\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"32\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"dRiTRklNo\\\":\\\"link\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"h1XGzwNDF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"32\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QqKid7zfw.map", "// Generated by Framer (a417fcb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={Zdq_g2JwC:{hover:true}};const cycleOrder=[\"Zdq_g2JwC\",\"YDVrLpK_v\"];const serializationHash=\"framer-v2NzQ\";const variantClassNames={YDVrLpK_v:\"framer-v-lcabgu\",Zdq_g2JwC:\"framer-v-1qwcllx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variable 1\":\"Zdq_g2JwC\",Open:\"YDVrLpK_v\"};const getProps=({answer,height,id,question,visible3,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,BLQ5PCN2o:(_ref=answer!==null&&answer!==void 0?answer:props.BLQ5PCN2o)!==null&&_ref!==void 0?_ref:\"Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit mollit. Exercitation veniam consequat sunt nostrud amet.\",HarGEbN1c:(_ref1=visible3!==null&&visible3!==void 0?visible3:props.HarGEbN1c)!==null&&_ref1!==void 0?_ref1:true,variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"Zdq_g2JwC\",YuzWhCQ4N:(_ref3=question!==null&&question!==void 0?question:props.YuzWhCQ4N)!==null&&_ref3!==void 0?_ref3:\"Question\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,YuzWhCQ4N,BLQ5PCN2o,HarGEbN1c,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Zdq_g2JwC\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1sy3gse=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"YDVrLpK_v\");});const onTap71p0ir=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"Zdq_g2JwC\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"YDVrLpK_v\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"YDVrLpK_v\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:HarGEbN1c&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1qwcllx\",className,classNames),\"data-framer-name\":\"Variable 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Zdq_g2JwC\",onTap:onTap1sy3gse,ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},...addPropertyOverrides({\"Zdq_g2JwC-hover\":{\"data-framer-name\":undefined},YDVrLpK_v:{\"data-framer-name\":\"Open\",onTap:onTap71p0ir}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ckzxp7\",layoutDependency:layoutDependency,layoutId:\"Nrk9ZwksJ\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13mtf9g\",layoutDependency:layoutDependency,layoutId:\"AzqGs3xxr\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-txvyz0\",layoutDependency:layoutDependency,layoutId:\"plTlv94FK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 49, 53))\"},children:\"Where do you get your data?\"})}),className:\"framer-1hrnob1\",fonts:[\"GF;Figtree-700\"],layoutDependency:layoutDependency,layoutId:\"CZV1TXyf5\",style:{\"--extracted-r6o4lv\":\"rgb(51, 49, 53)\",\"--framer-paragraph-spacing\":\"0px\"},text:YuzWhCQ4N,verticalAlignment:\"center\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-195hyc1\",\"data-framer-name\":\"Minus\",fill:\"black\",intrinsicHeight:3,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"YC36fyUDS\",svg:'<svg width=\"16\" height=\"3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path stroke=\"#733BEC\" stroke-width=\"2.5\" stroke-linecap=\"round\" d=\"M1.25 1.658h13.5\"/></svg>',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ubrc53\",\"data-framer-name\":\"Vector\",fill:\"black\",intrinsicHeight:17,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"D4gJgweNH\",svg:'<svg width=\"16\" height=\"17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M8.643 7.765v.5h6.214a.643.643 0 1 1 0 1.286H8.643v6.214a.643.643 0 1 1-1.286 0V9.551H1.143a.643.643 0 1 1 0-1.286h6.214V2.051a.643.643 0 1 1 1.286 0v5.714Z\" fill=\"#733BEC\" stroke=\"#733BEC\"/></svg>',withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c2c07f8e-c6ba-4560-adff-c4905175923d, rgb(103, 102, 109)))\"},children:\"Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit mollit. Exercitation veniam consequat sunt nostrud amet.\"})}),className:\"framer-39apjl\",fonts:[\"GF;Figtree-regular\"],layoutDependency:layoutDependency,layoutId:\"dozUN5Xbc\",style:{\"--extracted-r6o4lv\":\"var(--token-c2c07f8e-c6ba-4560-adff-c4905175923d, rgb(103, 102, 109))\",\"--framer-paragraph-spacing\":\"0px\"},text:BLQ5PCN2o,verticalAlignment:\"center\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-v2NzQ.framer-9suntz, .framer-v2NzQ .framer-9suntz { display: block; }\",\".framer-v2NzQ.framer-1qwcllx { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1072px; overflow: visible; padding: 12px 0px 12px 0px; position: relative; width: 1024px; }\",\".framer-v2NzQ .framer-ckzxp7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 100%; z-index: 2; }\",\".framer-v2NzQ .framer-13mtf9g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-v2NzQ .framer-txvyz0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 90%; }\",\".framer-v2NzQ .framer-1hrnob1 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-v2NzQ .framer-195hyc1 { aspect-ratio: 5.333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 3px); position: relative; width: 16px; }\",\".framer-v2NzQ .framer-1ubrc53 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-v2NzQ .framer-39apjl { flex: none; height: auto; max-width: 960px; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-v2NzQ.framer-1qwcllx, .framer-v2NzQ .framer-ckzxp7, .framer-v2NzQ .framer-txvyz0 { gap: 0px; } .framer-v2NzQ.framer-1qwcllx > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-v2NzQ.framer-1qwcllx > :first-child, .framer-v2NzQ .framer-ckzxp7 > :first-child { margin-top: 0px; } .framer-v2NzQ.framer-1qwcllx > :last-child, .framer-v2NzQ .framer-ckzxp7 > :last-child { margin-bottom: 0px; } .framer-v2NzQ .framer-ckzxp7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-v2NzQ .framer-txvyz0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-v2NzQ .framer-txvyz0 > :first-child { margin-left: 0px; } .framer-v2NzQ .framer-txvyz0 > :last-child { margin-right: 0px; } }\",\".framer-v2NzQ.framer-v-lcabgu .framer-txvyz0 { flex-wrap: wrap; }\",\".framer-v2NzQ.framer-v-1qwcllx.hover .framer-ckzxp7 { overflow: visible; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 104\n * @framerIntrinsicWidth 1024\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1072px\",null,null]},\"YDVrLpK_v\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1072px\",null,null]},\"GYBYiOK9R\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1072px\",null,null]}}}\n * @framerVariables {\"YuzWhCQ4N\":\"question\",\"BLQ5PCN2o\":\"answer\",\"HarGEbN1c\":\"visible3\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRWOiFLPVh=withCSS(Component,css,\"framer-v2NzQ\");export default FramerRWOiFLPVh;FramerRWOiFLPVh.displayName=\"Open\";FramerRWOiFLPVh.defaultProps={height:104,width:1024};addPropertyControls(FramerRWOiFLPVh,{variant:{options:[\"Zdq_g2JwC\",\"YDVrLpK_v\"],optionTitles:[\"Variable 1\",\"Open\"],title:\"Variant\",type:ControlType.Enum},YuzWhCQ4N:{defaultValue:\"Question\",displayTextArea:false,title:\"Question\",type:ControlType.String},BLQ5PCN2o:{defaultValue:\"Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit mollit. Exercitation veniam consequat sunt nostrud amet.\",displayTextArea:true,title:\"Answer\",type:ControlType.String},HarGEbN1c:{defaultValue:true,title:\"Visible 3\",type:ControlType.Boolean}});addFonts(FramerRWOiFLPVh,[{explicitInter:true,fonts:[{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_eYR15bwkEU4HTy.woff2\",weight:\"700\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5bwkEU4HTy.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRWOiFLPVh\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"YuzWhCQ4N\\\":\\\"question\\\",\\\"BLQ5PCN2o\\\":\\\"answer\\\",\\\"HarGEbN1c\\\":\\\"visible3\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1072px\\\",null,null]},\\\"YDVrLpK_v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1072px\\\",null,null]},\\\"GYBYiOK9R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1072px\\\",null,null]}}}\",\"framerIntrinsicHeight\":\"104\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1024\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RWOiFLPVh.map", "// Generated by Framer (90417e1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={QffOiJdwe:{hover:true,pressed:true},UL7pPNTpP:{hover:true,pressed:true}};const cycleOrder=[\"QffOiJdwe\",\"UL7pPNTpP\"];const serializationHash=\"framer-w7hco\";const variantClassNames={QffOiJdwe:\"framer-v-njc8qc\",UL7pPNTpP:\"framer-v-98nhq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Social - twitter\":\"UL7pPNTpP\",\"Social-Linkedin\":\"QffOiJdwe\"};const getProps=({height,id,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"QffOiJdwe\",wftN4sdyv:link!==null&&link!==void 0?link:props.wftN4sdyv};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,wftN4sdyv,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QffOiJdwe\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"UL7pPNTpP-hover\",\"UL7pPNTpP-pressed\"].includes(gestureVariant))return false;if(baseVariant===\"UL7pPNTpP\")return false;return true;};const isDisplayed1=()=>{if([\"UL7pPNTpP-hover\",\"UL7pPNTpP-pressed\"].includes(gestureVariant))return true;if(baseVariant===\"UL7pPNTpP\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:wftN4sdyv,openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-njc8qc\",className,classNames)} framer-1gjg3no`,\"data-framer-name\":\"Social-Linkedin\",layoutDependency:layoutDependency,layoutId:\"QffOiJdwe\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,...style},variants:{\"QffOiJdwe-hover\":{backgroundColor:\"var(--token-0ce0eb38-7f4c-49d8-bc9e-d6144b7b69e9, rgb(115, 59, 236))\",borderBottomLeftRadius:31,borderBottomRightRadius:31,borderTopLeftRadius:31,borderTopRightRadius:31},\"QffOiJdwe-pressed\":{backgroundColor:\"rgb(54, 2, 168)\",borderBottomLeftRadius:31,borderBottomRightRadius:31,borderTopLeftRadius:31,borderTopRightRadius:31},\"UL7pPNTpP-hover\":{backgroundColor:\"var(--token-0ce0eb38-7f4c-49d8-bc9e-d6144b7b69e9, rgb(115, 59, 236))\",borderBottomLeftRadius:31,borderBottomRightRadius:31,borderTopLeftRadius:31,borderTopRightRadius:31},\"UL7pPNTpP-pressed\":{backgroundColor:\"rgb(54, 2, 168)\",borderBottomLeftRadius:31,borderBottomRightRadius:31,borderTopLeftRadius:31,borderTopRightRadius:31}},...addPropertyOverrides({\"QffOiJdwe-hover\":{\"data-framer-name\":undefined},\"QffOiJdwe-pressed\":{\"data-framer-name\":undefined},\"UL7pPNTpP-hover\":{\"data-framer-name\":undefined},\"UL7pPNTpP-pressed\":{\"data-framer-name\":undefined},UL7pPNTpP:{\"data-framer-name\":\"Social - twitter\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-m4r5vs\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:14,layoutDependency:layoutDependency,layoutId:\"tZXeBFfWs\",svg:'<svg width=\"14\" height=\"16\" viewBox=\"-1 -1 14 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6 0.460938C7.5913 0.460938 9.11742 1.09308 10.2426 2.2183C11.3679 3.34352 12 4.86964 12 6.46094V13.4609H8V6.46094C8 5.9305 7.78929 5.4218 7.41421 5.04672C7.03914 4.67165 6.53043 4.46094 6 4.46094C5.46957 4.46094 4.96086 4.67165 4.58579 5.04672C4.21071 5.4218 4 5.9305 4 6.46094V13.4609H0V6.46094C0 4.86964 0.632141 3.34352 1.75736 2.2183C2.88258 1.09308 4.4087 0.460938 6 0.460938V0.460938Z\" stroke=\"#DBD6FE\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-371lkd\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:6,layoutDependency:layoutDependency,layoutId:\"ivzUnHdTo\",svg:'<svg width=\"6\" height=\"15\" viewBox=\"-1 -1 6 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4 0.460938H0V12.4609H4V0.460938Z\" stroke=\"#DBD6FE\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true,...addPropertyOverrides({\"QffOiJdwe-hover\":{fill:\"rgb(255, 255, 255)\"},\"QffOiJdwe-pressed\":{fill:\"rgb(255, 255, 255)\"}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-189km1e\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:6,layoutDependency:layoutDependency,layoutId:\"Zn_WIfM2V\",svg:'<svg width=\"6\" height=\"7\" viewBox=\"-1 -1 6 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2 4.46094C3.10457 4.46094 4 3.56551 4 2.46094C4 1.35637 3.10457 0.460938 2 0.460938C0.89543 0.460938 0 1.35637 0 2.46094C0 3.56551 0.89543 4.46094 2 4.46094Z\" stroke=\"#DBD6FE\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true,...addPropertyOverrides({\"QffOiJdwe-hover\":{fill:\"rgb(255, 255, 255)\"},\"QffOiJdwe-pressed\":{fill:\"rgb(255, 255, 255)\"}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pjdbhe\",\"data-framer-name\":\"icon-twitter\",layoutDependency:layoutDependency,layoutId:\"dVrv0ZAlm\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-125ee3k\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"zgMwy7sjq\",svg:'<svg width=\"24\" height=\"21\" viewBox=\"-1 -1 24 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22 0.470993C21.0424 1.14647 19.9821 1.6631 18.86 2.00099C18.2577 1.3085 17.4573 0.817685 16.567 0.594919C15.6767 0.372154 14.7395 0.428189 13.8821 0.755447C13.0247 1.0827 12.2884 1.66539 11.773 2.42471C11.2575 3.18403 10.9877 4.08333 11 5.00099V6.00099C9.24263 6.04656 7.50127 5.65681 5.93101 4.86644C4.36074 4.07607 3.01032 2.90963 2 1.47099C2 1.47099 -2 10.471 7 14.471C4.94053 15.869 2.48716 16.5699 0 16.471C9 21.471 20 16.471 20 4.97099C19.9991 4.69245 19.9723 4.41459 19.92 4.14099C20.9406 3.13449 21.6608 1.86371 22 0.470993V0.470993Z\" stroke=\"#DBD6FE\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-w7hco.framer-1gjg3no, .framer-w7hco .framer-1gjg3no { display: block; }\",\".framer-w7hco.framer-njc8qc { cursor: pointer; height: 40px; overflow: hidden; position: relative; text-decoration: none; width: 40px; }\",\".framer-w7hco .framer-m4r5vs { bottom: 13px; flex: none; left: 17px; position: absolute; right: 11px; top: 15px; }\",\".framer-w7hco .framer-371lkd { bottom: 13px; flex: none; left: 9px; position: absolute; right: 27px; top: 16px; }\",\".framer-w7hco .framer-189km1e { bottom: 28px; flex: none; left: 9px; position: absolute; right: 27px; top: 9px; }\",\".framer-w7hco .framer-1pjdbhe { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-w7hco .framer-125ee3k { bottom: 13px; flex: none; left: 8px; position: absolute; right: 10px; top: 9px; }\",\".framer-w7hco.framer-v-njc8qc.hover.framer-njc8qc, .framer-w7hco.framer-v-njc8qc.pressed.framer-njc8qc, .framer-w7hco.framer-v-98nhq.hover.framer-njc8qc, .framer-w7hco.framer-v-98nhq.pressed.framer-njc8qc { will-change: var(--framer-will-change-override, transform); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"UL7pPNTpP\":{\"layout\":[\"fixed\",\"fixed\"]},\"ijv06QzcH\":{\"layout\":[\"fixed\",\"fixed\"]},\"FVuPLvztL\":{\"layout\":[\"fixed\",\"fixed\"]},\"CS_aAIUyR\":{\"layout\":[\"fixed\",\"fixed\"]},\"RXarAvQW1\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"wftN4sdyv\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSfrqHw1x_=withCSS(Component,css,\"framer-w7hco\");export default FramerSfrqHw1x_;FramerSfrqHw1x_.displayName=\"Social-Linkedin\";FramerSfrqHw1x_.defaultProps={height:40,width:40};addPropertyControls(FramerSfrqHw1x_,{variant:{options:[\"QffOiJdwe\",\"UL7pPNTpP\"],optionTitles:[\"Social-Linkedin\",\"Social - twitter\"],title:\"Variant\",type:ControlType.Enum},wftN4sdyv:{title:\"Link\",type:ControlType.Link}});addFonts(FramerSfrqHw1x_,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSfrqHw1x_\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UL7pPNTpP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ijv06QzcH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FVuPLvztL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CS_aAIUyR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RXarAvQW1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"40\",\"framerVariables\":\"{\\\"wftN4sdyv\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SfrqHw1x_.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/ALzPzo9ZL7qsyNt6jnNi/Smooth_Scroll.js\";import PricingChart from\"#framer/local/canvasComponent/bdtDUlTiw/bdtDUlTiw.js\";import SocialInBioX from\"#framer/local/canvasComponent/bpuY1axuP/bpuY1axuP.js\";import Testimonial from\"#framer/local/canvasComponent/c2xKedBxq/c2xKedBxq.js\";import Navigation from\"#framer/local/canvasComponent/FOxz6MnyF/FOxz6MnyF.js\";import QuoteSection from\"#framer/local/canvasComponent/hWSKck1Ec/hWSKck1Ec.js\";import LeftFooterMenu from\"#framer/local/canvasComponent/j43PLsL_1/j43PLsL_1.js\";import BentoChip from\"#framer/local/canvasComponent/nNqB6paTP/nNqB6paTP.js\";import SocialInBioLinkedIn from\"#framer/local/canvasComponent/QqKid7zfw/QqKid7zfw.js\";import Open from\"#framer/local/canvasComponent/RWOiFLPVh/RWOiFLPVh.js\";import SocialLinkedin from\"#framer/local/canvasComponent/SfrqHw1x_/SfrqHw1x_.js\";import CTA from\"#framer/local/canvasComponent/ZOQDJ71U2/ZOQDJ71U2.js\";import*as sharedStyle4 from\"#framer/local/css/aIPw376Gg/aIPw376Gg.js\";import*as sharedStyle3 from\"#framer/local/css/IV0eGN2zF/IV0eGN2zF.js\";import*as sharedStyle from\"#framer/local/css/pqyPgHeok/pqyPgHeok.js\";import*as sharedStyle5 from\"#framer/local/css/Q_Q95SyOG/Q_Q95SyOG.js\";import*as sharedStyle2 from\"#framer/local/css/qdgxseT5f/qdgxseT5f.js\";import*as sharedStyle1 from\"#framer/local/css/zzY1MWZJH/zzY1MWZJH.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const NavigationFonts=getFonts(Navigation);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const CTAFonts=getFonts(CTA);const RichTextWithFX=withFX(RichText);const QuoteSectionFonts=getFonts(QuoteSection);const YouTubeFonts=getFonts(YouTube);const ImageWithFX=withFX(Image);const BentoChipFonts=getFonts(BentoChip);const MotionDivWithFX=withFX(motion.div);const PricingChartFonts=getFonts(PricingChart);const SocialInBioXFonts=getFonts(SocialInBioX);const SocialInBioLinkedInFonts=getFonts(SocialInBioLinkedIn);const TestimonialFonts=getFonts(Testimonial);const OpenFonts=getFonts(Open);const LeftFooterMenuFonts=getFonts(LeftFooterMenu);const SocialLinkedinFonts=getFonts(SocialLinkedin);const breakpoints={hglYA8Z8c:\"(max-width: 809px)\",KokRw0B3q:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-9idpE\";const variantClassNames={hglYA8Z8c:\"framer-v-1wku0uz\",KokRw0B3q:\"framer-v-gnn1eb\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={delay:0,duration:.85,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:.3,duration:.85,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={delay:.6,duration:.85,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:32};const transition4={delay:.1,duration:.4,ease:[.5,0,.88,.77],type:\"tween\"};const transition5={delay:0,duration:.6,ease:[.12,.23,.5,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.1,skewX:0,skewY:0,x:0,y:100};const transition6={damping:20,delay:0,mass:2,stiffness:120,type:\"spring\"};const transition7={damping:20,delay:.2,mass:2,stiffness:120,type:\"spring\"};const transition8={damping:20,delay:.4,mass:2,stiffness:120,type:\"spring\"};const transition9={damping:20,delay:.6,mass:2,stiffness:120,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"hglYA8Z8c\",Tablet:\"KokRw0B3q\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"hglYA8Z8c\")return true;return false;};const elementId=useRouteElementId(\"jSc6awD1d\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"WT40jMIpc\");const ref2=React.useRef(null);const router=useRouter();const elementId2=useRouteElementId(\"I2EymfSiM\");const ref3=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"hglYA8Z8c\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y6mmmt-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"R08Sh1X67\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"R08Sh1X67\",intensity:10,layoutId:\"R08Sh1X67\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{height:69}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-r0f08f-container\",layoutScroll:true,nodeId:\"OdACgryqt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{style:{width:\"100%\"},variant:\"eTWRuWg9_\"},KokRw0B3q:{variant:\"JDgg__443\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"OdACgryqt\",layoutId:\"OdACgryqt\",style:{height:\"100%\",width:\"100%\"},variant:\"qoCRSFtfV\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1122,intrinsicWidth:2880,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:1122,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/KkxLqlfoi06qWKnfOmVXfkSxgr8.png\",srcSet:\"https://framerusercontent.com/images/KkxLqlfoi06qWKnfOmVXfkSxgr8.png?scale-down-to=512 512w,https://framerusercontent.com/images/KkxLqlfoi06qWKnfOmVXfkSxgr8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KkxLqlfoi06qWKnfOmVXfkSxgr8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/KkxLqlfoi06qWKnfOmVXfkSxgr8.png 2880w\"},transformTemplate:undefined},KokRw0B3q:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1122,intrinsicWidth:2880,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-177),pixelHeight:1122,pixelWidth:2880,sizes:\"2000px\",src:\"https://framerusercontent.com/images/KkxLqlfoi06qWKnfOmVXfkSxgr8.png\",srcSet:\"https://framerusercontent.com/images/KkxLqlfoi06qWKnfOmVXfkSxgr8.png?scale-down-to=512 512w,https://framerusercontent.com/images/KkxLqlfoi06qWKnfOmVXfkSxgr8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KkxLqlfoi06qWKnfOmVXfkSxgr8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/KkxLqlfoi06qWKnfOmVXfkSxgr8.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1122,intrinsicWidth:2880,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-130),pixelHeight:1122,pixelWidth:2880,sizes:\"2000px\",src:\"https://framerusercontent.com/images/KkxLqlfoi06qWKnfOmVXfkSxgr8.png\",srcSet:\"https://framerusercontent.com/images/KkxLqlfoi06qWKnfOmVXfkSxgr8.png?scale-down-to=512 512w,https://framerusercontent.com/images/KkxLqlfoi06qWKnfOmVXfkSxgr8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KkxLqlfoi06qWKnfOmVXfkSxgr8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/KkxLqlfoi06qWKnfOmVXfkSxgr8.png 2880w\"},className:\"framer-1axi3jd\",\"data-framer-name\":\"Wave\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rbunqr\",\"data-framer-name\":\"Early Bird offer\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5efbe3e-2300-4df9-bd68-ccb83b66c45e, rgb(45, 52, 54))\"},children:\"Early Bird Pricing available\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-a5efbe3e-2300-4df9-bd68-ccb83b66c45e, rgb(45, 52, 54))\"},children:\"Early Bird Pricing available\"})}),className:\"framer-l0ep2q\",\"data-framer-name\":\"ENDING SOON Get your Early Bird Offer - Pay once, get leads forever\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-29yi7w hidden-72rtr7 hidden-gnn1eb\",\"data-framer-name\":\"Early Bird offer\",id:elementId,ref:ref1})]}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-yqv3ul\",\"data-framer-name\":\"Above the fold\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r8a7pz\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1agqjco\",\"data-framer-name\":\"Frame 8\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qpa013\",\"data-framer-name\":\"Frame 8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(254, 227, 198)\",\"--framer-text-transform\":\"uppercase\"},children:\"a database of 300,000+ employee leads at 10,000+ SaaS companies\"})})},KokRw0B3q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(254, 227, 198)\",\"--framer-text-transform\":\"uppercase\"},children:\"a database of 300,000+ employee leads at 10,000+ SaaS companies\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(254, 227, 198)\",\"--framer-text-transform\":\"uppercase\"},children:\"a database of 300,000+ employee leads at 10,000+ SaaS companies\"})}),className:\"framer-1aqjv7p\",\"data-framer-appear-id\":\"1aqjv7p\",\"data-framer-name\":\"10,000+ SaaS companies lead database\",fonts:[\"GF;Figtree-regular\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-dqlp60\",\"data-styles-preset\":\"pqyPgHeok\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get the Leads of a Whole Company, \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"One Credit at a Time \"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-dqlp60\",\"data-styles-preset\":\"pqyPgHeok\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Get the Leads of a Whole Company, \",/*#__PURE__*/_jsx(\"br\",{}),\"One Credit at a Time \"]})}),className:\"framer-mjc4cb\",\"data-framer-appear-id\":\"mjc4cb\",\"data-framer-name\":\"Get the Leads of a Whole Company, One Credit at a Time\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8l6349\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1yzz335\",\"data-styles-preset\":\"zzY1MWZJH\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book more meetings with the right decision makers with the most extensive and cost-effective SaaS database ever. \"})}),className:\"framer-16grxrm\",\"data-framer-appear-id\":\"16grxrm\",\"data-framer-name\":\"Book more meetings with the right decision makers with the most extensive and cost-effective SaaS database ever.\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Q3OqcZ7w3\"},implicitPathVariables:undefined},{href:{webPageId:\"Q3OqcZ7w3\"},implicitPathVariables:undefined},{href:{webPageId:\"Q3OqcZ7w3\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 288px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ulvqh8-container\",nodeId:\"s24alhU6j\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{QdKU2ZVjo:resolvedLinks[2],style:{maxWidth:\"100%\",width:\"100%\"}},KokRw0B3q:{QdKU2ZVjo:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"s24alhU6j\",layoutId:\"s24alhU6j\",QdKU2ZVjo:resolvedLinks[0],QOsfpEQvp:\"GET MORE LEADS\",variant:\"wJwzUsbOe\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uwhs45\",\"data-framer-name\":\"Benefits\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fobf7c\",\"data-framer-name\":\"Crossline\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1234zsl\",\"data-styles-preset\":\"qdgxseT5f\",children:[\"More Leads, more clients. \",/*#__PURE__*/_jsx(\"br\",{}),\"Simple as that. \"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1234zsl\",\"data-styles-preset\":\"qdgxseT5f\",children:[\"More Leads, more clients.\",/*#__PURE__*/_jsx(\"br\",{}),\"Simple as that. \"]})}),className:\"framer-1mtkpob\",\"data-framer-name\":\"More Leads, more clients. Simple as that.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(103, 102, 109)\"},children:\"Feeling squeezed by overpriced databases that charge you per lead? With SaasyDB one credit unlocks unlimited access to a company\u2019s contacts. \"})}),fonts:[\"GF;Figtree-regular\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-49fev7\",\"data-styles-preset\":\"IV0eGN2zF\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Feeling squeezed by overpriced databases that charge you per lead?\",/*#__PURE__*/_jsx(\"br\",{}),\"With saasyDB one credit unlocks unlimited access to a company\u2019s contacts. \"]})}),className:\"framer-1hfitxm\",\"data-framer-name\":\"Feeling squeezed by overpriced databases that charge you per lead?\\u2028With SaasyDB one credit unlocks unlimited access to a company\u2019s contacts.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1akkgtd\",\"data-framer-name\":\"Benefit stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cqrqza\",\"data-framer-name\":\"Frame 1321314601\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-rspv6j\",\"data-framer-name\":\"Frame 1980\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:66,intrinsicWidth:61,svg:'<svg width=\"61\" height=\"66\" viewBox=\"0 0 61 66\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.5\" y=\"0.839844\" width=\"60\" height=\"64.32\" rx=\"30\" fill=\"#F4F3FF\"/>\\n<path d=\"M20.8602 28.8401V21.2001C20.8602 19.1738 21.6651 17.2305 23.0979 15.7978C24.5307 14.365 26.474 13.5601 28.5002 13.5601C30.5265 13.5601 32.4697 14.365 33.9025 15.7978C35.3353 17.2305 36.1402 19.1738 36.1402 21.2001M28.5002 36.4801V40.3001M17.0402 47.9401H39.9602C40.9733 47.9401 41.945 47.5376 42.6614 46.8212C43.3778 46.1048 43.7802 45.1332 43.7802 44.1201V32.6601C43.7802 31.6469 43.3778 30.6753 42.6614 29.9589C41.945 29.2425 40.9733 28.8401 39.9602 28.8401H17.0402C16.0271 28.8401 15.0555 29.2425 14.3391 29.9589C13.6227 30.6753 13.2202 31.6469 13.2202 32.6601V44.1201C13.2202 45.1332 13.6227 46.1048 14.3391 46.8212C15.0555 47.5376 16.0271 47.9401 17.0402 47.9401Z\" stroke=\"#733BEC\" stroke-width=\"1.8\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s8mtlh\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KokRw0B3q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1w0sgu9\",\"data-styles-preset\":\"aIPw376Gg\",style:{\"--framer-text-alignment\":\"left\"},children:\"Paying for SINGLE contacts? Absolute nonsense\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1w0sgu9\",\"data-styles-preset\":\"aIPw376Gg\",children:\"Paying for SINGLE contacts? Absolute nonsense\"})}),className:\"framer-1dagdy3\",\"data-framer-name\":\"Paying for SINGLE contacts? Absolute nonsense\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KokRw0B3q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-49fev7\",\"data-styles-preset\":\"IV0eGN2zF\",style:{\"--framer-text-alignment\":\"left\"},children:\"Access all employees' information for a company with a single credit. Forget about high costs and restrictive credit systems. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-49fev7\",\"data-styles-preset\":\"IV0eGN2zF\",style:{\"--framer-text-alignment\":\"center\"},children:\"Access all employees' information for a company with a single credit. Forget about high costs and restrictive credit systems. \"})}),className:\"framer-178raop\",\"data-framer-name\":\"Access a company\u2019s contact information with a single credit. Forget about high costs and restrictive credit systems.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b5sx5i\",\"data-framer-name\":\"Frame 1321314601\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-8pllar\",\"data-framer-name\":\"Frame 1980\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:72,intrinsicWidth:72,svg:'<svg width=\"72\" height=\"72\" viewBox=\"0 0 72 72\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"72\" height=\"72\" rx=\"36\" fill=\"#F4F3FF\"/>\\n<path d=\"M21.242 50.2325C25.4388 47.8603 30.1792 46.6172 35 46.6245C40 46.6245 44.694 47.9345 48.758 50.2325M41 34.6245C41 36.2158 40.3679 37.7419 39.2426 38.8672C38.1174 39.9924 36.5913 40.6245 35 40.6245C33.4087 40.6245 31.8826 39.9924 30.7574 38.8672C29.6321 37.7419 29 36.2158 29 34.6245C29 33.0332 29.6321 31.5071 30.7574 30.3819C31.8826 29.2567 33.4087 28.6245 35 28.6245C36.5913 28.6245 38.1174 29.2567 39.2426 30.3819C40.3679 31.5071 41 33.0332 41 34.6245ZM53 38.6245C53 40.9883 52.5344 43.329 51.6298 45.5128C50.7252 47.6967 49.3994 49.681 47.7279 51.3524C46.0565 53.0239 44.0722 54.3498 41.8883 55.2543C39.7044 56.1589 37.3638 56.6245 35 56.6245C32.6362 56.6245 30.2956 56.1589 28.1117 55.2543C25.9278 54.3498 23.9435 53.0239 22.2721 51.3524C20.6006 49.681 19.2748 47.6967 18.3702 45.5128C17.4656 43.329 17 40.9883 17 38.6245C17 33.8506 18.8964 29.2722 22.2721 25.8966C25.6477 22.5209 30.2261 20.6245 35 20.6245C39.7739 20.6245 44.3523 22.5209 47.7279 25.8966C51.1036 29.2722 53 33.8506 53 38.6245Z\" stroke=\"#733BEC\" stroke-width=\"1.8\" stroke-linecap=\"round\"/>\\n<path d=\"M48.7903 12.9271C49.0903 12.0061 50.3933 12.0061 50.6923 12.9271L52.2113 17.6011C52.2767 17.8016 52.4038 17.9763 52.5744 18.1002C52.745 18.2241 52.9504 18.2909 53.1613 18.2911H58.0763C59.0453 18.2911 59.4473 19.5311 58.6643 20.1011L54.6883 22.9891C54.5175 23.1132 54.3904 23.2883 54.3252 23.4891C54.26 23.6899 54.26 23.9063 54.3253 24.1071L55.8433 28.7811C56.1433 29.7031 55.0883 30.4691 54.3053 29.8991L50.3293 27.0111C50.1584 26.8869 49.9526 26.8199 49.7413 26.8199C49.53 26.8199 49.3242 26.8869 49.1533 27.0111L45.1773 29.8991C44.3943 30.4691 43.3393 29.7021 43.6393 28.7811L45.1573 24.1071C45.2226 23.9063 45.2226 23.6899 45.1574 23.4891C45.0922 23.2883 44.9651 23.1132 44.7943 22.9891L40.8183 20.1011C40.0343 19.5311 40.4383 18.2911 41.4063 18.2911H46.3203C46.5314 18.2911 46.737 18.2244 46.9078 18.1005C47.0787 17.9765 47.2059 17.8017 47.2713 17.6011L48.7903 12.9271Z\" fill=\"#F4F3FF\" stroke=\"#733BEC\" stroke-width=\"1.8\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kqin73\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KokRw0B3q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1w0sgu9\",\"data-styles-preset\":\"aIPw376Gg\",style:{\"--framer-text-alignment\":\"left\"},children:\"CEOs just don\u2019t like being bombarded\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1w0sgu9\",\"data-styles-preset\":\"aIPw376Gg\",children:\"CEOs just don\u2019t like being bombarded\"})}),className:\"framer-ngvsd2\",\"data-framer-name\":\"Paying for SINGLE contacts? Absolute nonsense\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KokRw0B3q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-49fev7\",\"data-styles-preset\":\"IV0eGN2zF\",style:{\"--framer-text-alignment\":\"left\"},children:\"Exclusive contacts you won\u2019t find anywhere else. Connect with the right people without overwhelming for higher response rates.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-49fev7\",\"data-styles-preset\":\"IV0eGN2zF\",style:{\"--framer-text-alignment\":\"center\"},children:\"Exclusive contacts you won\u2019t find anywhere else. Connect with the right people without overwhelming for higher response rates.\"})}),className:\"framer-12w6ulz\",\"data-framer-name\":\"Access a company\u2019s contact information with a single credit. Forget about high costs and restrictive credit systems.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vxmgmt\",\"data-framer-name\":\"Frame 1321314601\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1rbeoxv\",\"data-framer-name\":\"Frame 1980\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:72,intrinsicWidth:73,svg:'<svg width=\"73\" height=\"72\" viewBox=\"0 0 73 72\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.5\" width=\"72\" height=\"72\" rx=\"36\" fill=\"#F4F3FF\"/>\\n<path d=\"M25.5 28V20M41.5 28V20M23.5 36H43.5M19.5 56H47.5C48.5609 56 49.5783 55.5786 50.3284 54.8284C51.0786 54.0783 51.5 53.0609 51.5 52V28C51.5 26.9391 51.0786 25.9217 50.3284 25.1716C49.5783 24.4214 48.5609 24 47.5 24H19.5C18.4391 24 17.4217 24.4214 16.6716 25.1716C15.9214 25.9217 15.5 26.9391 15.5 28V52C15.5 53.0609 15.9214 54.0783 16.6716 54.8284C17.4217 55.5786 18.4391 56 19.5 56Z\" stroke=\"#733BEC\" stroke-width=\"1.8\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<circle cx=\"56.1771\" cy=\"20.8231\" r=\"10.6771\" fill=\"#F4F3FF\"/>\\n<path d=\"M48.9165 13.4166V17.6875H49.4136M49.4136 17.6875C49.9807 16.285 50.997 15.1104 52.3033 14.3476C53.6096 13.5848 55.1321 13.2769 56.6322 13.4723C58.1322 13.6677 59.5251 14.3552 60.5924 15.4272C61.6598 16.4991 62.3413 17.8949 62.5302 19.3958M49.4136 17.6875H53.1873M62.5832 27.0833V22.8125H62.0869M62.0869 22.8125C61.519 24.2141 60.5024 25.3878 59.1963 26.15C57.8901 26.9121 56.368 27.2196 54.8684 27.0243C53.3688 26.829 51.9763 26.1419 50.9089 25.0707C49.8415 23.9994 49.1594 22.6044 48.9695 21.1041M62.0869 22.8125H58.3123\" stroke=\"#733BEC\" stroke-width=\"1.5375\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ykgfkx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KokRw0B3q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1w0sgu9\",\"data-styles-preset\":\"aIPw376Gg\",style:{\"--framer-text-alignment\":\"left\"},children:\"Stop wasting time chasing wrong details\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1w0sgu9\",\"data-styles-preset\":\"aIPw376Gg\",children:\"Stop wasting time chasing wrong details\"})}),className:\"framer-dhk9c\",\"data-framer-name\":\"Paying for SINGLE contacts? Absolute nonsense\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KokRw0B3q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-49fev7\",\"data-styles-preset\":\"IV0eGN2zF\",style:{\"--framer-text-alignment\":\"left\"},children:\"Ongoing database updates, on a regular basis. Say goodbye to bounced emails and outdated company information.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-49fev7\",\"data-styles-preset\":\"IV0eGN2zF\",style:{\"--framer-text-alignment\":\"center\"},children:\"Ongoing database updates, on a regular basis. Say goodbye to bounced emails and outdated company information.\"})}),className:\"framer-1f4vm7b\",\"data-framer-name\":\"Access a company\u2019s contact information with a single credit. Forget about high costs and restrictive credit systems.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:533,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1olj2pj-container\",nodeId:\"d9Jz6aeEd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{variant:\"zaJM89RxV\"},KokRw0B3q:{variant:\"Eb1wTFuEn\"}},children:/*#__PURE__*/_jsx(QuoteSection,{DKfrvUrU_:\"Been using SaasyDB for months and it's the best SaaS database out there, which is also affordable. 10/10, I highly recommend getting that sweet data.\",fCyFxjOgD:\"Founder of Salesforge & Mailforge\",height:\"100%\",id:\"d9Jz6aeEd\",layoutId:\"d9Jz6aeEd\",PYcxkElfD:\"Frank\",style:{width:\"100%\"},TjjaoHZbe:true,variant:\"sOtQz3tya\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{background:{alt:\"\",fit:\"fit\",pixelHeight:1478,pixelWidth:3002,positionX:\"center\",positionY:\"center\",sizes:`min(1440px, ${componentViewport?.width||\"100vw\"})`,src:\"https://framerusercontent.com/images/Dmtm1Og8yW33ArmAuStVBbegKq0.png\",srcSet:\"https://framerusercontent.com/images/Dmtm1Og8yW33ArmAuStVBbegKq0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Dmtm1Og8yW33ArmAuStVBbegKq0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Dmtm1Og8yW33ArmAuStVBbegKq0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Dmtm1Og8yW33ArmAuStVBbegKq0.png 3002w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1478,pixelWidth:3002,positionX:\"center\",positionY:\"center\",sizes:\"1440px\",src:\"https://framerusercontent.com/images/Dmtm1Og8yW33ArmAuStVBbegKq0.png\",srcSet:\"https://framerusercontent.com/images/Dmtm1Og8yW33ArmAuStVBbegKq0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Dmtm1Og8yW33ArmAuStVBbegKq0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Dmtm1Og8yW33ArmAuStVBbegKq0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Dmtm1Og8yW33ArmAuStVBbegKq0.png 3002w\"},className:\"framer-2ursbh\",\"data-framer-name\":\"VSL\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ss0jnj\",\"data-framer-name\":\"Subscribe 2\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1234zsl\",\"data-styles-preset\":\"qdgxseT5f\",children:\"See saasyDB in action\"})}),className:\"framer-e68wvj\",\"data-framer-name\":\"Get early access\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jwttkm\",\"data-framer-name\":\"Macbook\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k0cctq\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-qudldj\",\"data-framer-name\":\"case\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:665,intrinsicWidth:1168,svg:'<svg width=\"1168\" height=\"665\" viewBox=\"0 0 1168 665\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_di_118_43)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M81.1201 25.7605C81.1201 11.5333 92.6535 0 106.881 0H1062.81C1077.04 0 1088.57 11.5334 1088.57 25.7605V625.662C1088.57 639.89 1077.04 651.423 1062.81 651.423H106.881C92.6535 651.423 81.1201 639.89 81.1201 625.662V25.7605Z\" fill=\"#2D3436\"/>\\n</g>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 643.286H1168V651.155H0V643.286Z\" fill=\"#BABABA\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M480.827 643.286H689.12V643.286C689.12 646.546 686.478 649.188 683.218 649.188H486.728C483.469 649.188 480.827 646.546 480.827 643.286V643.286Z\" fill=\"url(#paint0_linear_118_43)\" fill-opacity=\"0.5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M186.88 664.925C28.079 664.925 0 651.155 0 651.155L585.947 649.188L1168 651.155C1168 651.155 1140 664.925 981.12 664.925H585.947H186.88Z\" fill=\"url(#paint1_linear_118_43)\"/>\\n<defs>\\n<filter id=\"filter0_di_118_43\" x=\"81.1201\" y=\"0\" width=\"1007.45\" height=\"653.074\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1.65132\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_118_43\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_118_43\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1.65132\"/>\\n<feGaussianBlur stdDeviation=\"0.825658\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect2_innerShadow_118_43\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_118_43\" x1=\"480.827\" y1=\"649.188\" x2=\"689.12\" y2=\"649.188\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BCBDBF\"/>\\n<stop offset=\"0.0975965\" stop-color=\"#D8D8DF\"/>\\n<stop offset=\"0.888214\" stop-color=\"#D8D8DF\"/>\\n<stop offset=\"1\" stop-color=\"#ADAABD\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_118_43\" x1=\"0\" y1=\"649.188\" x2=\"0\" y2=\"664.925\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#C1C1C1\"/>\\n<stop offset=\"1\" stop-color=\"#0B0B0B\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d7rggd\",\"data-framer-name\":\"Screen\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i0j20u-container\",isModuleExternal:true,nodeId:\"akRxurmgh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"akRxurmgh\",isMixedBorderRadius:false,isRed:true,layoutId:\"akRxurmgh\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=V7qDZ84yk7U\",width:\"100%\"})})})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6txlcd\",\"data-framer-name\":\"Subscribe 2\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1234zsl\",\"data-styles-preset\":\"qdgxseT5f\",children:\"The saasyDB difference\"})}),className:\"framer-2wycjf\",\"data-framer-name\":\"Get early access\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-90ba9\",\"data-framer-name\":\"Features Large\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tqk12t\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2hdkrq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{background:{alt:\"saasyDB has more leads per company on average than other databases\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1180,pixelWidth:1971,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/KmW5sIs7BXTjc5waUdhTL3bz1UA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/KmW5sIs7BXTjc5waUdhTL3bz1UA.png?scale-down-to=512 512w,https://framerusercontent.com/images/KmW5sIs7BXTjc5waUdhTL3bz1UA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KmW5sIs7BXTjc5waUdhTL3bz1UA.png 1971w\"}},KokRw0B3q:{background:{alt:\"saasyDB has more leads per company on average than other databases\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1180,pixelWidth:1971,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/KmW5sIs7BXTjc5waUdhTL3bz1UA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/KmW5sIs7BXTjc5waUdhTL3bz1UA.png?scale-down-to=512 512w,https://framerusercontent.com/images/KmW5sIs7BXTjc5waUdhTL3bz1UA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KmW5sIs7BXTjc5waUdhTL3bz1UA.png 1971w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"saasyDB has more leads per company on average than other databases\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1180,pixelWidth:1971,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px)`,src:\"https://framerusercontent.com/images/KmW5sIs7BXTjc5waUdhTL3bz1UA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/KmW5sIs7BXTjc5waUdhTL3bz1UA.png?scale-down-to=512 512w,https://framerusercontent.com/images/KmW5sIs7BXTjc5waUdhTL3bz1UA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KmW5sIs7BXTjc5waUdhTL3bz1UA.png 1971w\"},className:\"framer-7x5vy0\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m602b5\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"More leads per company than other databases\"})}),className:\"framer-kajgss\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Using our unique research system, we uncover more employee profiles than the competition has\"})}),className:\"framer-af94oe\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18nt3zh\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14dj3m7\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Leads not found in other databases\"})})},KokRw0B3q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Leads not found in other databases\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Leads not found in other databases\"})}),className:\"framer-xa9w5b\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"More than just the CEO's email and generic inboxes, our system unearths employee profiles, from low-level to C-Suite. Find your ideal champion or target.\"})}),className:\"framer-2ps0gc\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{background:{alt:\"Find leads not found in other databases\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1024,pixelWidth:1024,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/fz2rxZ7bN21qWThzZUQeMrAsY.png\",srcSet:\"https://framerusercontent.com/images/fz2rxZ7bN21qWThzZUQeMrAsY.png?scale-down-to=512 512w,https://framerusercontent.com/images/fz2rxZ7bN21qWThzZUQeMrAsY.png 1024w\"}},KokRw0B3q:{background:{alt:\"Find leads not found in other databases\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1024,pixelWidth:1024,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/fz2rxZ7bN21qWThzZUQeMrAsY.png\",srcSet:\"https://framerusercontent.com/images/fz2rxZ7bN21qWThzZUQeMrAsY.png?scale-down-to=512 512w,https://framerusercontent.com/images/fz2rxZ7bN21qWThzZUQeMrAsY.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Find leads not found in other databases\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1024,pixelWidth:1024,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px)`,src:\"https://framerusercontent.com/images/fz2rxZ7bN21qWThzZUQeMrAsY.png\",srcSet:\"https://framerusercontent.com/images/fz2rxZ7bN21qWThzZUQeMrAsY.png?scale-down-to=512 512w,https://framerusercontent.com/images/fz2rxZ7bN21qWThzZUQeMrAsY.png 1024w\"},className:\"framer-lmxyly\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uqhrk7\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{background:{alt:\"One credit unlocks everyone at a company\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1024,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/RRikNb9zqVf6CRD0rD4EK5GDRDM.png\",srcSet:\"https://framerusercontent.com/images/RRikNb9zqVf6CRD0rD4EK5GDRDM.png?scale-down-to=512 512w,https://framerusercontent.com/images/RRikNb9zqVf6CRD0rD4EK5GDRDM.png 1024w\"}},KokRw0B3q:{background:{alt:\"One credit unlocks everyone at a company\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1024,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/RRikNb9zqVf6CRD0rD4EK5GDRDM.png\",srcSet:\"https://framerusercontent.com/images/RRikNb9zqVf6CRD0rD4EK5GDRDM.png?scale-down-to=512 512w,https://framerusercontent.com/images/RRikNb9zqVf6CRD0rD4EK5GDRDM.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"One credit unlocks everyone at a company\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1024,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px)`,src:\"https://framerusercontent.com/images/RRikNb9zqVf6CRD0rD4EK5GDRDM.png\",srcSet:\"https://framerusercontent.com/images/RRikNb9zqVf6CRD0rD4EK5GDRDM.png?scale-down-to=512 512w,https://framerusercontent.com/images/RRikNb9zqVf6CRD0rD4EK5GDRDM.png 1024w\"},className:\"framer-bxb4ty\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e0wdco\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"A credit unlocks \",/*#__PURE__*/_jsx(\"em\",{children:\"every\"}),\" employee\"]})}),className:\"framer-xlq3p9\",fonts:[\"GF;Inter-700\",\"GF;Inter-700italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"So that you can take more of an account based marketing approach, one credit unlocks every employee at a company, so that you can keep pitching people until you get the company itself as your client\"})}),className:\"framer-qt7p9x\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dj8syq\",\"data-framer-name\":\"Feature Bento\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g421qb\",\"data-framer-name\":\"Max width\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1234zsl\",\"data-styles-preset\":\"qdgxseT5f\",children:\"Features to help you close high-stakes deals with minimal effort.\"})}),className:\"framer-1b201wk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4v7fz1\",\"data-framer-name\":\"Bento grid\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-154xrcf\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fdrrxt\",\"data-framer-name\":\"Frame 1321314604\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f9i47j\",\"data-framer-name\":\"Frame 1321314604\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-wezww3\",\"data-styles-preset\":\"Q_Q95SyOG\",style:{\"--framer-text-color\":\"var(--token-0ce0eb38-7f4c-49d8-bc9e-d6144b7b69e9, rgb(115, 59, 236))\"},children:\"extensive saas database\"})}),className:\"framer-t60b2t\",\"data-framer-name\":\"Gifting\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1w0sgu9\",\"data-styles-preset\":\"aIPw376Gg\",style:{\"--framer-text-alignment\":\"left\"},children:[\"The novel outreach approach that significantly \",/*#__PURE__*/_jsx(\"br\",{}),\"boosts your reply rates: using fresh leads\"]})}),className:\"framer-1rx3y5s\",\"data-framer-name\":\"Lorem ipsum\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-c2c07f8e-c6ba-4560-adff-c4905175923d, rgb(103, 102, 109))\"},children:\"Reach out to people who aren't constantly getting pitched. Our unique b2b research system fills the database with unique leads that aren't used by other marketers.\"})}),className:\"framer-1ffu6o6\",\"data-framer-name\":\"Tu trouveras ci-dessous un fichier te permettant de d\\xe9marrer \\xe0 ton aise ton propre bento. Si tu souhaites aller plus loin et avoir un fichier avec des \\xe9l\\xe9ments d\\xe9j\\xe0 design\\xe9, je te conseille de te rendre sur mon gumroad pour t\\xe9l\\xe9charger le fichier avec les d\\xe9mos.\",fonts:[\"GF;Figtree-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1922tfp\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1078,intrinsicWidth:2626,pixelHeight:1302,pixelWidth:2864,sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px) - 32px, 430px) * 1.0029)`,src:\"https://framerusercontent.com/images/f850e1lBCHJ94ae8gBacIBdxmgs.png\",srcSet:\"https://framerusercontent.com/images/f850e1lBCHJ94ae8gBacIBdxmgs.png?scale-down-to=512 512w,https://framerusercontent.com/images/f850e1lBCHJ94ae8gBacIBdxmgs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/f850e1lBCHJ94ae8gBacIBdxmgs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/f850e1lBCHJ94ae8gBacIBdxmgs.png 2864w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1078,intrinsicWidth:2626,pixelHeight:1302,pixelWidth:2864,sizes:\"579.92px\",src:\"https://framerusercontent.com/images/f850e1lBCHJ94ae8gBacIBdxmgs.png\",srcSet:\"https://framerusercontent.com/images/f850e1lBCHJ94ae8gBacIBdxmgs.png?scale-down-to=512 512w,https://framerusercontent.com/images/f850e1lBCHJ94ae8gBacIBdxmgs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/f850e1lBCHJ94ae8gBacIBdxmgs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/f850e1lBCHJ94ae8gBacIBdxmgs.png 2864w\"},className:\"framer-1whnbiz\",\"data-border\":true,\"data-framer-name\":\"Group_1321314612_2_\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1224,intrinsicWidth:1063,pixelHeight:1224,pixelWidth:1063,sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px) - 32px, 430px) * 0.6848)`,src:\"https://framerusercontent.com/images/EXRXS2wbvRcffzzp44JO5Ez9wMY.png\",srcSet:\"https://framerusercontent.com/images/EXRXS2wbvRcffzzp44JO5Ez9wMY.png?scale-down-to=1024 889w,https://framerusercontent.com/images/EXRXS2wbvRcffzzp44JO5Ez9wMY.png 1063w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:250,delay:0,duration:.3,ease:[.44,0,.56,1],mass:64,stiffness:250,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:42}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-21}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1224,intrinsicWidth:1063,pixelHeight:1224,pixelWidth:1063,sizes:\"396px\",src:\"https://framerusercontent.com/images/EXRXS2wbvRcffzzp44JO5Ez9wMY.png\",srcSet:\"https://framerusercontent.com/images/EXRXS2wbvRcffzzp44JO5Ez9wMY.png?scale-down-to=1024 889w,https://framerusercontent.com/images/EXRXS2wbvRcffzzp44JO5Ez9wMY.png 1063w\"},className:\"framer-1eomi3h\",\"data-framer-name\":\"Vector_2_\",transformTemplate:transformTemplate2})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qx9uhm\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ysfp1u\",\"data-framer-name\":\"Frame 1321314604\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dkqi95\",\"data-framer-name\":\"Frame 1321314604\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5orb20\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-wezww3\",\"data-styles-preset\":\"Q_Q95SyOG\",style:{\"--framer-text-color\":\"var(--token-0ce0eb38-7f4c-49d8-bc9e-d6144b7b69e9, rgb(115, 59, 236))\"},children:\"precision targeting\"})}),className:\"framer-1er0qk3\",\"data-framer-name\":\"Gifting\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1w0sgu9\",\"data-styles-preset\":\"aIPw376Gg\",style:{\"--framer-text-alignment\":\"left\"},children:\"Build trust with the exact people who will convert and ensure repeat business\"})}),className:\"framer-1m11h3e\",\"data-framer-name\":\"Gifting\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-49fev7\",\"data-styles-preset\":\"IV0eGN2zF\",children:\"AI-assisted job role and department standardization helps you find the right people to pitch, so you get more replies.\"})}),className:\"framer-1lfyb8r\",\"data-framer-name\":\"Tu trouveras ci-dessous un fichier te permettant de d\\xe9marrer \\xe0 ton aise ton propre bento. Si tu souhaites aller plus loin et avoir un fichier avec des \\xe9l\\xe9ments d\\xe9j\\xe0 design\\xe9, je te conseille de te rendre sur mon gumroad pour t\\xe9l\\xe9charger le fichier avec les d\\xe9mos.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aaw9cn\",children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"More leads per company\",fit:\"fill\",intrinsicHeight:80,intrinsicWidth:80,pixelHeight:80,pixelWidth:80,src:\"https://framerusercontent.com/images/GyNt6Ew9Ic3eDzc1ut4CCT6uvnY.png\"},className:\"framer-wa1xna\",\"data-framer-name\":\"Frame_1982\"}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:80,intrinsicWidth:80,pixelHeight:80,pixelWidth:80,src:\"https://framerusercontent.com/images/LxC8Bnn57N1NcTt2Ln58YNVhhVE.png\"},className:\"framer-6gy1ln\",\"data-framer-name\":\"Frame_1984\"}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:80,intrinsicWidth:80,pixelHeight:80,pixelWidth:80,src:\"https://framerusercontent.com/images/POdCVcRmxppSQYrtxaaLQYnTuvk.png\"},className:\"framer-5zliok\",\"data-framer-name\":\"Frame_1983\"}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:80,intrinsicWidth:80,pixelHeight:80,pixelWidth:80,src:\"https://framerusercontent.com/images/4wSOVuJzn95EijcNK02s8jBxS4.png\"},className:\"framer-1yunbrm\",\"data-framer-name\":\"Frame_1985\"})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1224,intrinsicWidth:1063,pixelHeight:1224,pixelWidth:1063,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px) - 32px, 430px)`,src:\"https://framerusercontent.com/images/EXRXS2wbvRcffzzp44JO5Ez9wMY.png\",srcSet:\"https://framerusercontent.com/images/EXRXS2wbvRcffzzp44JO5Ez9wMY.png?scale-down-to=1024 889w,https://framerusercontent.com/images/EXRXS2wbvRcffzzp44JO5Ez9wMY.png 1063w\"}},KokRw0B3q:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1224,intrinsicWidth:1063,pixelHeight:1224,pixelWidth:1063,sizes:\"366px\",src:\"https://framerusercontent.com/images/EXRXS2wbvRcffzzp44JO5Ez9wMY.png\",srcSet:\"https://framerusercontent.com/images/EXRXS2wbvRcffzzp44JO5Ez9wMY.png?scale-down-to=1024 889w,https://framerusercontent.com/images/EXRXS2wbvRcffzzp44JO5Ez9wMY.png 1063w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1224,intrinsicWidth:1063,pixelHeight:1224,pixelWidth:1063,sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px) - 128px, 1200px) - 48px) / 3, 200px)`,src:\"https://framerusercontent.com/images/EXRXS2wbvRcffzzp44JO5Ez9wMY.png\",srcSet:\"https://framerusercontent.com/images/EXRXS2wbvRcffzzp44JO5Ez9wMY.png?scale-down-to=1024 889w,https://framerusercontent.com/images/EXRXS2wbvRcffzzp44JO5Ez9wMY.png 1063w\"},className:\"framer-9jjmgw\",\"data-framer-name\":\"Vector_2_\",style:{rotate:105},transformTemplate:transformTemplate2})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s0fgiw\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pod3iw\",\"data-framer-name\":\"Frame 1321314604\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bec5w7\",\"data-framer-name\":\"Frame 1321314604\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-wezww3\",\"data-styles-preset\":\"Q_Q95SyOG\",style:{\"--framer-text-color\":\"var(--token-0ce0eb38-7f4c-49d8-bc9e-d6144b7b69e9, rgb(115, 59, 236))\"},children:\"More EMAIL TARGETs\"})}),className:\"framer-qgntcp\",\"data-framer-name\":\"Gifting\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1w0sgu9\",\"data-styles-preset\":\"aIPw376Gg\",style:{\"--framer-text-alignment\":\"left\"},children:\"Way more than just founder and CEO email addresses\"})}),className:\"framer-2pfq\",\"data-framer-name\":\"Gifting\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-49fev7\",\"data-styles-preset\":\"IV0eGN2zF\",children:\"Reveal a whole company\u2019s employee data. Using our unique algorithm we will provide you with up to hundreds of employee profiles per company. \"})}),className:\"framer-7ps8n4\",\"data-framer-name\":\"Tu trouveras ci-dessous un fichier te permettant de d\\xe9marrer \\xe0 ton aise ton propre bento. Si tu souhaites aller plus loin et avoir un fichier avec des \\xe9l\\xe9ments d\\xe9j\\xe0 design\\xe9, je te conseille de te rendre sur mon gumroad pour t\\xe9l\\xe9charger le fichier avec les d\\xe9mos.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:250,delay:0,duration:.3,ease:[.44,0,.56,1],mass:64,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.85,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:336,intrinsicWidth:512,pixelHeight:336,pixelWidth:512,src:\"https://framerusercontent.com/images/hbV8bfOEKaD8Eua2zSGpcYqUZdE.png\"},className:\"framer-th8dr\",\"data-framer-name\":\"Frame_1618873014\",transformTemplate:transformTemplate2})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nj2kk3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fsy4kx\",\"data-framer-name\":\"Frame 1321314604\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dwu6y8\",\"data-framer-name\":\"Frame 1321314604\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-wezww3\",\"data-styles-preset\":\"Q_Q95SyOG\",style:{\"--framer-text-color\":\"var(--token-0ce0eb38-7f4c-49d8-bc9e-d6144b7b69e9, rgb(115, 59, 236))\"},children:\"complete Employee info\"})}),className:\"framer-1wr515q\",\"data-framer-name\":\"Gifting\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1w0sgu9\",\"data-styles-preset\":\"aIPw376Gg\",style:{\"--framer-text-alignment\":\"left\"},children:\"Contact information that adapts to your outreach strategy\"})}),className:\"framer-ppk8bk\",\"data-framer-name\":\"Gifting\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-49fev7\",\"data-styles-preset\":\"IV0eGN2zF\",children:\"Whether you\u2019re networking on LinkedIn, doing cold email marketing or reaching out locally, this list will give you all the information in one shot.\"})}),className:\"framer-dgis12\",\"data-framer-name\":\"Tu trouveras ci-dessous un fichier te permettant de d\\xe9marrer \\xe0 ton aise ton propre bento. Si tu souhaites aller plus loin et avoir un fichier avec des \\xe9l\\xe9ments d\\xe9j\\xe0 design\\xe9, je te conseille de te rendre sur mon gumroad pour t\\xe9l\\xe9charger le fichier avec les d\\xe9mos.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{background:{alt:\"More profiles per company\",fit:\"fill\",intrinsicHeight:432,intrinsicWidth:936,pixelHeight:432,pixelWidth:936,sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px) - 32px, 430px) * 0.88)`,src:\"https://framerusercontent.com/images/XzPrONBA83XFIGjqSkR1KW4PgXM.png\",srcSet:\"https://framerusercontent.com/images/XzPrONBA83XFIGjqSkR1KW4PgXM.png?scale-down-to=512 512w,https://framerusercontent.com/images/XzPrONBA83XFIGjqSkR1KW4PgXM.png 936w\"}},KokRw0B3q:{background:{alt:\"More profiles per company\",fit:\"fill\",intrinsicHeight:432,intrinsicWidth:936,pixelHeight:432,pixelWidth:936,sizes:\"322.08px\",src:\"https://framerusercontent.com/images/XzPrONBA83XFIGjqSkR1KW4PgXM.png\",srcSet:\"https://framerusercontent.com/images/XzPrONBA83XFIGjqSkR1KW4PgXM.png?scale-down-to=512 512w,https://framerusercontent.com/images/XzPrONBA83XFIGjqSkR1KW4PgXM.png 936w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"More profiles per company\",fit:\"fill\",intrinsicHeight:432,intrinsicWidth:936,pixelHeight:432,pixelWidth:936,sizes:`calc(max((min(max(${componentViewport?.width||\"100vw\"}, 1px) - 128px, 1200px) - 48px) / 3, 200px) * 0.88)`,src:\"https://framerusercontent.com/images/XzPrONBA83XFIGjqSkR1KW4PgXM.png\",srcSet:\"https://framerusercontent.com/images/XzPrONBA83XFIGjqSkR1KW4PgXM.png?scale-down-to=512 512w,https://framerusercontent.com/images/XzPrONBA83XFIGjqSkR1KW4PgXM.png 936w\"},className:\"framer-mvwzpy\",\"data-framer-name\":\"Frame_1618873012_1_\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:250,delay:0,duration:.3,ease:[.44,0,.56,1],mass:64,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:44}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:284,intrinsicWidth:506,pixelHeight:284,pixelWidth:506,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/lZSR9O0tXLQO530DpxFh6jAd28.png\"},className:\"framer-1aht0zu\",\"data-framer-name\":\"Mask_group_4_\",transformTemplate:transformTemplate2})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qyjupg\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vbkj7m\",\"data-framer-name\":\"Frame 1321314604\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13qjj6\",\"data-framer-name\":\"Frame 1321314604\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-wezww3\",\"data-styles-preset\":\"Q_Q95SyOG\",style:{\"--framer-text-color\":\"var(--token-0ce0eb38-7f4c-49d8-bc9e-d6144b7b69e9, rgb(115, 59, 236))\"},children:\"FUNDING ROUNDS AND COMPANY GROWTH\"})}),className:\"framer-2qb8g5\",\"data-framer-name\":\"Gifting\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1w0sgu9\",\"data-styles-preset\":\"aIPw376Gg\",style:{\"--framer-text-alignment\":\"left\"},children:\"Stop guessing what kind of offers to pitch to be relevant\"})}),className:\"framer-140byef\",\"data-framer-name\":\"Gifting\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-49fev7\",\"data-styles-preset\":\"IV0eGN2zF\",children:\"We review and re-research our database on a regular basis. Look into the latest information about freshly-funded and growing companies.\"})}),className:\"framer-bj8okg\",\"data-framer-name\":\"Tu trouveras ci-dessous un fichier te permettant de d\\xe9marrer \\xe0 ton aise ton propre bento. Si tu souhaites aller plus loin et avoir un fichier avec des \\xe9l\\xe9ments d\\xe9j\\xe0 design\\xe9, je te conseille de te rendre sur mon gumroad pour t\\xe9l\\xe9charger le fichier avec les d\\xe9mos.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4dnagf\",\"data-framer-name\":\"Funding rounds scroll \",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-200,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:200,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1otm9ai\",\"data-framer-name\":\"row 1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xrcpjo-container\",\"data-framer-name\":\"1\",name:\"1\",nodeId:\"phRVVlmzE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BentoChip,{height:\"100%\",id:\"phRVVlmzE\",layoutId:\"phRVVlmzE\",name:\"1\",nu0MAb8QM:\"Pre-Seed\",style:{height:\"100%\"},variant:\"pJvxDXPrC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-skxxz1-container\",\"data-framer-name\":\"2\",name:\"2\",nodeId:\"m_yiObIq1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BentoChip,{height:\"100%\",id:\"m_yiObIq1\",layoutId:\"m_yiObIq1\",name:\"2\",nu0MAb8QM:\"Seed stage\",style:{height:\"100%\"},variant:\"pJvxDXPrC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-aw0slh-container\",\"data-framer-name\":\"3\",name:\"3\",nodeId:\"UO9AVknGn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BentoChip,{height:\"100%\",id:\"UO9AVknGn\",layoutId:\"UO9AVknGn\",name:\"3\",nu0MAb8QM:\"Series A\",style:{height:\"100%\"},variant:\"pJvxDXPrC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1izqb2z-container\",\"data-framer-name\":\"4\",name:\"4\",nodeId:\"pVyXdfVRS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BentoChip,{height:\"100%\",id:\"pVyXdfVRS\",layoutId:\"pVyXdfVRS\",name:\"4\",nu0MAb8QM:\"Series B\",style:{height:\"100%\"},variant:\"pJvxDXPrC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rrjy3n-container\",\"data-framer-name\":\"5\",name:\"5\",nodeId:\"a7jqEPOdL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BentoChip,{height:\"100%\",id:\"a7jqEPOdL\",layoutId:\"a7jqEPOdL\",name:\"5\",nu0MAb8QM:\"Series C\",style:{height:\"100%\"},variant:\"pJvxDXPrC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ssqgu9-container\",\"data-framer-name\":\"6\",name:\"6\",nodeId:\"pvl0I4LQ5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BentoChip,{height:\"100%\",id:\"pvl0I4LQ5\",layoutId:\"pvl0I4LQ5\",name:\"6\",nu0MAb8QM:\"Series D\",style:{height:\"100%\"},variant:\"pJvxDXPrC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wabrvb-container\",\"data-framer-name\":\"7\",name:\"7\",nodeId:\"CKHzZuQZQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BentoChip,{height:\"100%\",id:\"CKHzZuQZQ\",layoutId:\"CKHzZuQZQ\",name:\"7\",nu0MAb8QM:\"Grant\",style:{height:\"100%\"},variant:\"pJvxDXPrC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jy7rh7-container\",\"data-framer-name\":\"8\",name:\"8\",nodeId:\"qkgBl0q0o\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BentoChip,{height:\"100%\",id:\"qkgBl0q0o\",layoutId:\"qkgBl0q0o\",name:\"8\",nu0MAb8QM:\"Bridge\",style:{height:\"100%\"},variant:\"pJvxDXPrC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8xmg7y-container\",\"data-framer-name\":\"9\",name:\"9\",nodeId:\"TsYgv2NE6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BentoChip,{height:\"100%\",id:\"TsYgv2NE6\",layoutId:\"TsYgv2NE6\",name:\"9\",nu0MAb8QM:\"IPO\",style:{height:\"100%\"},variant:\"pJvxDXPrC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})}),className:\"framer-ngemn0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:160,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-160,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-q0r9xz\",\"data-framer-name\":\"row 2\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yipit7-container\",\"data-framer-name\":\"1\",name:\"1\",nodeId:\"sAgKjaSU6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BentoChip,{height:\"100%\",id:\"sAgKjaSU6\",layoutId:\"sAgKjaSU6\",name:\"1\",nu0MAb8QM:\"Pre-Seed\",style:{height:\"100%\"},variant:\"T3uRBsxjz\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xw7ovi-container\",\"data-framer-name\":\"9\",name:\"9\",nodeId:\"KtkLcBaCT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BentoChip,{height:\"100%\",id:\"KtkLcBaCT\",layoutId:\"KtkLcBaCT\",name:\"9\",nu0MAb8QM:\"IPO\",style:{height:\"100%\"},variant:\"T3uRBsxjz\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bpdtdy-container\",\"data-framer-name\":\"3\",name:\"3\",nodeId:\"yb7y0aIxm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BentoChip,{height:\"100%\",id:\"yb7y0aIxm\",layoutId:\"yb7y0aIxm\",name:\"3\",nu0MAb8QM:\"Series A\",style:{height:\"100%\"},variant:\"T3uRBsxjz\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-118q3cw-container\",\"data-framer-name\":\"2\",name:\"2\",nodeId:\"HirQfw8oi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BentoChip,{height:\"100%\",id:\"HirQfw8oi\",layoutId:\"HirQfw8oi\",name:\"2\",nu0MAb8QM:\"Seed stage\",style:{height:\"100%\"},variant:\"T3uRBsxjz\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a8f9ki-container\",\"data-framer-name\":\"4\",name:\"4\",nodeId:\"saHkea09G\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BentoChip,{height:\"100%\",id:\"saHkea09G\",layoutId:\"saHkea09G\",name:\"4\",nu0MAb8QM:\"Series B\",style:{height:\"100%\"},variant:\"T3uRBsxjz\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1byktlv-container\",\"data-framer-name\":\"7\",name:\"7\",nodeId:\"qDtL8xc1e\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BentoChip,{height:\"100%\",id:\"qDtL8xc1e\",layoutId:\"qDtL8xc1e\",name:\"7\",nu0MAb8QM:\"Grant\",style:{height:\"100%\"},variant:\"T3uRBsxjz\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oju3op-container\",\"data-framer-name\":\"5\",name:\"5\",nodeId:\"nKgSI0z_f\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BentoChip,{height:\"100%\",id:\"nKgSI0z_f\",layoutId:\"nKgSI0z_f\",name:\"5\",nu0MAb8QM:\"Series c\",style:{height:\"100%\"},variant:\"T3uRBsxjz\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9jn5o7-container\",\"data-framer-name\":\"8\",name:\"8\",nodeId:\"w7TRjUYB9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BentoChip,{height:\"100%\",id:\"w7TRjUYB9\",layoutId:\"w7TRjUYB9\",name:\"8\",nu0MAb8QM:\"Bridge\",style:{height:\"100%\"},variant:\"T3uRBsxjz\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yq0iim-container\",\"data-framer-name\":\"6\",name:\"6\",nodeId:\"bhh3SrmDX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BentoChip,{height:\"100%\",id:\"bhh3SrmDX\",layoutId:\"bhh3SrmDX\",name:\"6\",nu0MAb8QM:\"Series D\",style:{height:\"100%\"},variant:\"T3uRBsxjz\",width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ry08af\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ivq43a\",\"data-framer-name\":\"Frame 1321314658\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mz8tlf\",\"data-framer-name\":\"Frame 1321314658\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-wezww3\",\"data-styles-preset\":\"Q_Q95SyOG\",style:{\"--framer-text-color\":\"var(--token-0ce0eb38-7f4c-49d8-bc9e-d6144b7b69e9, rgb(115, 59, 236))\"},children:\"It's all saas\"})}),className:\"framer-15kaa3q\",\"data-framer-name\":\"Lorem ipsum\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1w0sgu9\",\"data-styles-preset\":\"aIPw376Gg\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a5efbe3e-2300-4df9-bd68-ccb83b66c45e, rgb(45, 52, 54))\"},children:[\"Unlike other databases, we \",/*#__PURE__*/_jsx(\"em\",{children:\"only\"}),\" focus on SaaS companies\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1w0sgu9\",\"data-styles-preset\":\"aIPw376Gg\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Unlike other databases, we \",/*#__PURE__*/_jsx(\"em\",{children:\"only\"}),\" focus on SaaS companies\"]})}),className:\"framer-1rvvcyt\",\"data-framer-name\":\"Lorem ipsum\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-49fev7\",\"data-styles-preset\":\"IV0eGN2zF\",children:\"It's hard to be sure if organizations in other databases are really SaaS companies, but it's the only thing we focus on.\"})}),className:\"framer-fekcqo\",\"data-framer-name\":\"Tu trouveras ci-dessous un fichier te permettant de d\\xe9marrer \\xe0 ton aise ton propre bento. Si tu souhaites aller plus loin et avoir un fichier avec des \\xe9l\\xe9ments d\\xe9j\\xe0 design\\xe9, je te conseille de te rendre sur mon gumroad pour t\\xe9l\\xe9charger le fichier avec les d\\xe9mos.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7xawj2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-17fll7u\",\"data-framer-name\":\"Ellipse\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:182,intrinsicWidth:232,svg:'<svg width=\"232\" height=\"182\" viewBox=\"0 0 232 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.0845 129.386C-7.25824 84.2833 59.2655 83.0431 32.2633 51.8161C5.26116 20.5891 62.3578 9.13569 108.786 6.48394C184.802 2.14233 253.689 49.8195 214.28 85.6588C174.871 121.498 210.221 155.525 182.449 167.761C154.676 179.998 23.4272 174.488 8.0845 129.386Z\" fill=\"#D85B77\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-tvhc8q hidden-1wku0uz\",\"data-framer-name\":\"Group\",children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:250,delay:0,duration:.3,ease:[.44,0,.56,1],mass:64,stiffness:250,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:300,y:300}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"SaaS company database\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"657px\",src:\"https://framerusercontent.com/images/u8HCVYF4hFFr1YV4kgD3wBEkp98.png\",srcSet:\"https://framerusercontent.com/images/u8HCVYF4hFFr1YV4kgD3wBEkp98.png?scale-down-to=512 512w,https://framerusercontent.com/images/u8HCVYF4hFFr1YV4kgD3wBEkp98.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/u8HCVYF4hFFr1YV4kgD3wBEkp98.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/u8HCVYF4hFFr1YV4kgD3wBEkp98.png 3427w\"},className:\"framer-lzgcsr\",\"data-framer-name\":\"Table\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i99lz6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w642xz\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q7grj7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7xmswq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-wezww3\",\"data-styles-preset\":\"Q_Q95SyOG\",style:{\"--framer-text-color\":\"var(--token-0ce0eb38-7f4c-49d8-bc9e-d6144b7b69e9, rgb(115, 59, 236))\"},children:\"UNLIMITED LEADS FOREVER\"})}),className:\"framer-1ccnzf1\",\"data-framer-name\":\"Lorem ipsum\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"25.7px\",\"--framer-text-color\":\"var(--token-5c30e846-bf26-4526-aa00-57f0e59f636a, rgb(195, 59, 95))\",\"--framer-text-transform\":\"inherit\"},children:\"(Limited time only)\"})}),className:\"framer-11myfg4\",\"data-framer-name\":\"Lorem ipsum\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1w0sgu9\",\"data-styles-preset\":\"aIPw376Gg\",style:{\"--framer-text-alignment\":\"left\"},children:'Until we come out of beta, we\\'re selling lifetime deals, including a \"Golden Ticket\" package where you have access to all of our data forever, for a one time fee.'})}),className:\"framer-1kyp44c\",\"data-framer-name\":\"Lorem ipsum\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.google.com/forms/d/e/1FAIpQLScAI_UWY6mLvr0Vd3aTGB-BmII5XBkIZAvRRLHuJgRxsGSv9Q/viewform\",motionChild:true,nodeId:\"Uor29365_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-ydbut6 framer-lux5qc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--token-0ce0eb38-7f4c-49d8-bc9e-d6144b7b69e9, rgb(115, 59, 236))\"},children:\"Apply now\"})}),className:\"framer-1ajnctk\",\"data-framer-name\":\"Lorem ipsum\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1oszdjl\",\"data-framer-name\":\"Vector_1_\",fill:\"black\",intrinsicHeight:14,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.293.299a1 1 0 0 1 1.414 0l6 6a1 1 0 0 1 0 1.414l-6 6a1 1 0 0 1-1.414-1.414l4.293-4.293H1a1 1 0 0 1 0-2h11.586L8.293 1.713a1 1 0 0 1 0-1.414Z\" fill=\"#733BEC\"/></svg>',withExternalLayout:true})]})})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9qf1g\",\"data-framer-name\":\"Subscribe 2\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1234zsl\",\"data-styles-preset\":\"qdgxseT5f\",children:\"Early Bird Pricing\"})}),className:\"framer-21fy3i\",\"data-framer-name\":\"Get early access\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{width:\"390px\"},KokRw0B3q:{width:\"791px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1034,width:\"1201px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q5beci-container\",nodeId:\"HIoK1ooea\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{variant:\"O3wGHeivJ\"},KokRw0B3q:{variant:\"WWUNsh43a\"}},children:/*#__PURE__*/_jsx(PricingChart,{height:\"100%\",id:\"HIoK1ooea\",layoutId:\"HIoK1ooea\",style:{width:\"100%\"},variant:\"HKJxFGHlF\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ogqhsa\",\"data-framer-name\":\"Stack with background\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2524,intrinsicWidth:3e3,pixelHeight:2524,pixelWidth:3e3,sizes:`min(${componentViewport?.width||\"100vw\"} * 2.63, 810px)`,src:\"https://framerusercontent.com/images/7yJT3mBlqgXr2yhhBVJpQkVqOu8.png\",srcSet:\"https://framerusercontent.com/images/7yJT3mBlqgXr2yhhBVJpQkVqOu8.png?scale-down-to=512 512w,https://framerusercontent.com/images/7yJT3mBlqgXr2yhhBVJpQkVqOu8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7yJT3mBlqgXr2yhhBVJpQkVqOu8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7yJT3mBlqgXr2yhhBVJpQkVqOu8.png 3000w\"}},KokRw0B3q:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2524,intrinsicWidth:3e3,pixelHeight:2524,pixelWidth:3e3,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.8815)`,src:\"https://framerusercontent.com/images/7yJT3mBlqgXr2yhhBVJpQkVqOu8.png\",srcSet:\"https://framerusercontent.com/images/7yJT3mBlqgXr2yhhBVJpQkVqOu8.png?scale-down-to=512 512w,https://framerusercontent.com/images/7yJT3mBlqgXr2yhhBVJpQkVqOu8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7yJT3mBlqgXr2yhhBVJpQkVqOu8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7yJT3mBlqgXr2yhhBVJpQkVqOu8.png 3000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2524,intrinsicWidth:3e3,pixelHeight:2524,pixelWidth:3e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/7yJT3mBlqgXr2yhhBVJpQkVqOu8.png\",srcSet:\"https://framerusercontent.com/images/7yJT3mBlqgXr2yhhBVJpQkVqOu8.png?scale-down-to=512 512w,https://framerusercontent.com/images/7yJT3mBlqgXr2yhhBVJpQkVqOu8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7yJT3mBlqgXr2yhhBVJpQkVqOu8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7yJT3mBlqgXr2yhhBVJpQkVqOu8.png 3000w\"},className:\"framer-1yg3cjw\",\"data-framer-name\":\"Blob\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:120}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-urvmgj\",\"data-framer-name\":\"Audience\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mnbtbz\",\"data-framer-name\":\"Frame 1321314613\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1234zsl\",\"data-styles-preset\":\"qdgxseT5f\",children:\"Why choose saasyDB?\"})}),className:\"framer-oyksfa\",\"data-framer-name\":\"Why choose SaasyDB?\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xybeqd\",\"data-framer-name\":\"Frame 1321314614\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f2nm8q\",\"data-border\":true,\"data-framer-name\":\"Blog post card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{background:{alt:\"Founders running campaigns to SaaS companies\",fit:\"fill\",sizes:\"294px\",src:\"https://framerusercontent.com/images/wiC1Zfuj8zaahcub1NBL8XyFviE.jpg\",srcSet:\"https://framerusercontent.com/images/wiC1Zfuj8zaahcub1NBL8XyFviE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wiC1Zfuj8zaahcub1NBL8XyFviE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wiC1Zfuj8zaahcub1NBL8XyFviE.jpg 1920w\"}},KokRw0B3q:{background:{alt:\"Founders running campaigns to SaaS companies\",fit:\"fill\",sizes:\"294.6943px\",src:\"https://framerusercontent.com/images/wiC1Zfuj8zaahcub1NBL8XyFviE.jpg\",srcSet:\"https://framerusercontent.com/images/wiC1Zfuj8zaahcub1NBL8XyFviE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wiC1Zfuj8zaahcub1NBL8XyFviE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wiC1Zfuj8zaahcub1NBL8XyFviE.jpg 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Founders running campaigns to SaaS companies\",fit:\"fill\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 176px)`,src:\"https://framerusercontent.com/images/wiC1Zfuj8zaahcub1NBL8XyFviE.jpg\",srcSet:\"https://framerusercontent.com/images/wiC1Zfuj8zaahcub1NBL8XyFviE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wiC1Zfuj8zaahcub1NBL8XyFviE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wiC1Zfuj8zaahcub1NBL8XyFviE.jpg 1920w\"},className:\"framer-1mi480p\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ivup0c\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mmdx0v\",\"data-framer-name\":\"Heading and subheading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-wezww3\",\"data-styles-preset\":\"Q_Q95SyOG\",children:\"SOLOPRENEURS AND FOUNDERS\"})}),className:\"framer-1kxjq1u\",\"data-framer-name\":\"Subheading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-njak2f\",\"data-framer-name\":\"Heading and text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-49fev7\",\"data-styles-preset\":\"IV0eGN2zF\",children:\"Seize more opportunities while you cut costs too with a budget-friendly solution for more connections. \"})}),className:\"framer-naz9k2\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xayy83\",\"data-border\":true,\"data-framer-name\":\"Blog post card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{background:{alt:\"Cold email to SaaS companies\",fit:\"fill\",sizes:\"294px\",src:\"https://framerusercontent.com/images/nKQSoQN4TGXQWKwnWgDPiOoULU.jpg\",srcSet:\"https://framerusercontent.com/images/nKQSoQN4TGXQWKwnWgDPiOoULU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nKQSoQN4TGXQWKwnWgDPiOoULU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nKQSoQN4TGXQWKwnWgDPiOoULU.jpg 1950w\"}},KokRw0B3q:{background:{alt:\"Cold email to SaaS companies\",fit:\"fill\",sizes:\"295.225px\",src:\"https://framerusercontent.com/images/nKQSoQN4TGXQWKwnWgDPiOoULU.jpg\",srcSet:\"https://framerusercontent.com/images/nKQSoQN4TGXQWKwnWgDPiOoULU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nKQSoQN4TGXQWKwnWgDPiOoULU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nKQSoQN4TGXQWKwnWgDPiOoULU.jpg 1950w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Cold email to SaaS companies\",fit:\"fill\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 176px)`,src:\"https://framerusercontent.com/images/nKQSoQN4TGXQWKwnWgDPiOoULU.jpg\",srcSet:\"https://framerusercontent.com/images/nKQSoQN4TGXQWKwnWgDPiOoULU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nKQSoQN4TGXQWKwnWgDPiOoULU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nKQSoQN4TGXQWKwnWgDPiOoULU.jpg 1950w\"},className:\"framer-iveyg4\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-znymof\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o3cwg6\",\"data-framer-name\":\"Heading and subheading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-wezww3\",\"data-styles-preset\":\"Q_Q95SyOG\",children:\"Cold email professionals\"})}),className:\"framer-15aoyxi\",\"data-framer-name\":\"Subheading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cemcew\",\"data-framer-name\":\"Heading and text\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j0rvbt\",\"data-framer-name\":\"Heading and icon\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-49fev7\",\"data-styles-preset\":\"IV0eGN2zF\",children:\"Get better results for yourself and your clients by using a more refined SaaS leads database that your competition doesn't.\"})}),className:\"framer-pzjduo\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x0r6c5\",\"data-border\":true,\"data-framer-name\":\"Blog post card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{background:{alt:\"SaaS lead gen for agencies\",fit:\"fill\",sizes:\"295px\",src:\"https://framerusercontent.com/images/AJUz3bGIgGR5QCUqQXyqNajqV4.jpg\",srcSet:\"https://framerusercontent.com/images/AJUz3bGIgGR5QCUqQXyqNajqV4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AJUz3bGIgGR5QCUqQXyqNajqV4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AJUz3bGIgGR5QCUqQXyqNajqV4.jpg 1920w\"}},KokRw0B3q:{background:{alt:\"SaaS lead gen for agencies\",fit:\"fill\",sizes:\"293.2167px\",src:\"https://framerusercontent.com/images/AJUz3bGIgGR5QCUqQXyqNajqV4.jpg\",srcSet:\"https://framerusercontent.com/images/AJUz3bGIgGR5QCUqQXyqNajqV4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AJUz3bGIgGR5QCUqQXyqNajqV4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AJUz3bGIgGR5QCUqQXyqNajqV4.jpg 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"SaaS lead gen for agencies\",fit:\"fill\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 176px)`,src:\"https://framerusercontent.com/images/AJUz3bGIgGR5QCUqQXyqNajqV4.jpg\",srcSet:\"https://framerusercontent.com/images/AJUz3bGIgGR5QCUqQXyqNajqV4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AJUz3bGIgGR5QCUqQXyqNajqV4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AJUz3bGIgGR5QCUqQXyqNajqV4.jpg 1920w\"},className:\"framer-s273rv\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t1am8c\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-59xq51\",\"data-framer-name\":\"Heading and subheading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-wezww3\",\"data-styles-preset\":\"Q_Q95SyOG\",children:\"Agencies and service providers\"})}),className:\"framer-3hrx44\",\"data-framer-name\":\"Subheading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19pmqfg\",\"data-framer-name\":\"Heading and text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-49fev7\",\"data-styles-preset\":\"IV0eGN2zF\",children:\"Accelerate your sales cycle. Gather all relevant contacts through one source. Reach the people that matter faster. \"})}),className:\"framer-44sner\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n3qi1u\",\"data-framer-name\":\"BIO\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wr68rc\",\"data-framer-name\":\"Frame 1321314651\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12hbreu\",\"data-framer-name\":\"Frame 1321314622\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1234zsl\",\"data-styles-preset\":\"qdgxseT5f\",style:{\"--framer-text-alignment\":\"center\"},children:\"Hey, I\u2019m Stuart!\"})})},KokRw0B3q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1234zsl\",\"data-styles-preset\":\"qdgxseT5f\",style:{\"--framer-text-alignment\":\"center\"},children:\"Hey, I\u2019m Stuart!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1234zsl\",\"data-styles-preset\":\"qdgxseT5f\",children:\"Hey, I\u2019m Stuart!\"})}),className:\"framer-45pobu\",\"data-framer-name\":\"Hey, I\u2019m Stuart!\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xinypz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"32px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-p02u04-container\",nodeId:\"dvTgqKpYo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SocialInBioX,{height:\"100%\",id:\"dvTgqKpYo\",layoutId:\"dvTgqKpYo\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"32px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-17lmaqv-container\",nodeId:\"aP44hmSny\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SocialInBioLinkedIn,{dRiTRklNo:\"https://www.linkedin.com/in/stuartbrent/\",height:\"100%\",id:\"aP44hmSny\",layoutId:\"aP44hmSny\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qcvcpo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c2c07f8e-c6ba-4560-adff-c4905175923d, rgb(103, 102, 109))\"},children:\"I\u2019ve been making websites since 1995, started a screen printing business in 2006 (still running!) and got into the startup world in 2013.  \"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c2c07f8e-c6ba-4560-adff-c4905175923d, rgb(103, 102, 109))\"},children:[/*#__PURE__*/_jsx(\"br\",{}),\"In 2021, I had an idea for a unique company research system, and built it out. \"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c2c07f8e-c6ba-4560-adff-c4905175923d, rgb(103, 102, 109))\"},children:[/*#__PURE__*/_jsx(\"br\",{}),\"After a couple pivots, I focused on researching SaaS companies specifically, in order to build the best SaaS company database possible, launching it in early 2024.\"]})]})},KokRw0B3q:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c2c07f8e-c6ba-4560-adff-c4905175923d, rgb(103, 102, 109))\"},children:\"I\u2019ve been making websites since 1995, started a screen printing business in 2006 (still running!) and got into the startup world in 2013.  \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c2c07f8e-c6ba-4560-adff-c4905175923d, rgb(103, 102, 109))\"},children:\"In 2021, I had an idea for a unique company research system, and built it out. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c2c07f8e-c6ba-4560-adff-c4905175923d, rgb(103, 102, 109))\"},children:\"After a couple pivots, I focused on researching SaaS companies specifically, in order to build the best SaaS company database possible, launching it in early 2024.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-c2c07f8e-c6ba-4560-adff-c4905175923d, rgb(103, 102, 109))\"},children:\"I\u2019ve been making websites since 1995, started a screen printing business in 2006 (still running!) and got into the startup world in 2013.  \"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-c2c07f8e-c6ba-4560-adff-c4905175923d, rgb(103, 102, 109))\"},children:[/*#__PURE__*/_jsx(\"br\",{}),\"In 2021, I had an idea for a unique company research system, and built it out. \"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-c2c07f8e-c6ba-4560-adff-c4905175923d, rgb(103, 102, 109))\"},children:[/*#__PURE__*/_jsx(\"br\",{}),\"After a couple pivots, I focused on researching SaaS companies specifically, in order to build the best SaaS company database possible, launching it in early 2024.\"]})]}),className:\"framer-5q80ev\",\"data-framer-name\":\"\u201CYou made it so simp\",fonts:[\"GF;Figtree-regular\"],verticalAlignment:\"bottom\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c9nv8k\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"25.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 49, 53)\"},children:\"Stuart Brent\"})})},KokRw0B3q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"25.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 49, 53)\"},children:\"Stuart Brent\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"25.2px\",\"--framer-text-color\":\"rgb(51, 49, 53)\"},children:\"Stuart Brent\"})}),className:\"framer-79ovl0\",\"data-framer-name\":\"Stuart Brent\",fonts:[\"GF;Figtree-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"19.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(86, 85, 90)\"},children:\"Founder of SaasyDB\"})})},KokRw0B3q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"19.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(86, 85, 90)\"},children:\"Founder of SaasyDB\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"19.8px\",\"--framer-text-color\":\"rgb(86, 85, 90)\"},children:\"Founder of SaasyDB\"})}),className:\"framer-14nmp5h\",\"data-framer-name\":\"Founder of SaasyDB\",fonts:[\"GF;Figtree-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xpg1wb\",\"data-framer-name\":\"Avatar\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-140cxp8\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-wi7nbb\",\"data-framer-name\":\"Shadow\",style:{rotate:7},transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Stuart from saasyDB\",fit:\"fill\",src:\"https://framerusercontent.com/images/h1ALAcMYChr5PP9t85eWfFKHACU.png\"},className:\"framer-s2vo37\",\"data-border\":true,\"data-framer-name\":\"Ellipse 214\",transformTemplate:transformTemplate2})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u0q07x\",\"data-framer-name\":\"Testimonial module\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1234zsl\",\"data-styles-preset\":\"qdgxseT5f\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Hear it from them\"})})},KokRw0B3q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1234zsl\",\"data-styles-preset\":\"qdgxseT5f\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Hear it from them\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1234zsl\",\"data-styles-preset\":\"qdgxseT5f\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Hear it from them\"})}),className:\"framer-1mtesnn\",\"data-framer-name\":\"Build a perfect land\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qjyold\",\"data-framer-name\":\"Row 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 600px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:199,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1487vvi-container\",nodeId:\"mwAMQPjhc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{style:{width:\"100%\"},variant:\"Wd5ETJzEH\"},KokRw0B3q:{variant:\"Wd5ETJzEH\"}},children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"mwAMQPjhc\",layoutId:\"mwAMQPjhc\",REy8Lm8Kh:true,tNAusQLCF:\"Partner at a PE/VC firm\",variant:\"ZTZXgjfMF\",width:\"100%\",XlghHxD51:\"Holy crap. That's an amazing service. My brain is kind of exploding with a different ways, and potential, for that information. Jeez. Strong work.\",ZmSxw4whf:\"Joshua\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 600px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:199,children:/*#__PURE__*/_jsx(Container,{className:\"framer-inuh4x-container\",nodeId:\"AgjiWulNn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{style:{width:\"100%\"},variant:\"Wd5ETJzEH\",XlghHxD51:\"We used saasyDB leads to generate deal flow with a Billion Dollar Company on our first campaign.\"},KokRw0B3q:{variant:\"Wd5ETJzEH\"}},children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"AgjiWulNn\",layoutId:\"AgjiWulNn\",REy8Lm8Kh:true,tNAusQLCF:\"Founder of Zentierra, a SaaS marketing company\",variant:\"ZTZXgjfMF\",width:\"100%\",XlghHxD51:\"We used saasyDB leads to generate deal flow with a Billion Dollar Company on our first campaign.\\n\\n\",ZmSxw4whf:\"Ethan\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 600px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:199,children:/*#__PURE__*/_jsx(Container,{className:\"framer-x74c9i-container\",nodeId:\"NdyBoqN4_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{style:{width:\"100%\"},variant:\"Wd5ETJzEH\"},KokRw0B3q:{variant:\"Wd5ETJzEH\"}},children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"NdyBoqN4_\",layoutId:\"NdyBoqN4_\",REy8Lm8Kh:true,tNAusQLCF:\"Founder of Salesforge & Mailforge\",variant:\"ZTZXgjfMF\",width:\"100%\",XlghHxD51:\"Been using SaasyDB for months and it's the best SaaS database out there, which is also affordable. 10/10, I highly recommend getting that sweet data.\",ZmSxw4whf:\"Frank\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 600px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:199,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nkciw1-container\",nodeId:\"loJKe07HD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{style:{width:\"100%\"},variant:\"Wd5ETJzEH\"},KokRw0B3q:{variant:\"Wd5ETJzEH\"}},children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"loJKe07HD\",layoutId:\"loJKe07HD\",REy8Lm8Kh:true,tNAusQLCF:\"Branding and design expert\",variant:\"ZTZXgjfMF\",width:\"100%\",XlghHxD51:\"Stuart's leads and advice on cold email strategy has been extremely helpful, and his willingness to share his expertise was above and beyond what I expected.\",ZmSxw4whf:\"Ivan\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v0h06u\",\"data-framer-name\":\"How it works\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15b4gc1\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1234zsl\",\"data-styles-preset\":\"qdgxseT5f\",style:{\"--framer-text-alignment\":\"center\"},children:\"Easy Steps to Find Unlimited Opportunities \"})})},KokRw0B3q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1234zsl\",\"data-styles-preset\":\"qdgxseT5f\",style:{\"--framer-text-alignment\":\"center\"},children:\"Easy Steps to Find Unlimited Opportunities \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1234zsl\",\"data-styles-preset\":\"qdgxseT5f\",style:{\"--framer-text-alignment\":\"left\"},children:\"Easy Steps to Find Unlimited Opportunities \"})}),className:\"framer-1g6icvf\",\"data-framer-name\":\"Easy Steps to Find Unlimited Opportunities\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,children:/*#__PURE__*/_jsx(Container,{className:\"framer-a2e3u7-container\",nodeId:\"ca2B7kF61\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"ca2B7kF61\",layoutId:\"ca2B7kF61\",QdKU2ZVjo:\"https://app.saasydb.com\",QOsfpEQvp:\"GET MORE LEADS\",variant:\"daDxOfqgA\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:120}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-7urww7\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18o6ulf\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5v33a5\",\"data-framer-name\":\"Number\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kzas1s\",\"data-framer-name\":\"BG\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-e4iime\",\"data-framer-name\":\"BG\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 49, 53)\"},children:\"1\"})}),className:\"framer-1m3c8rf\",\"data-framer-name\":\"1\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cf05jh\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(51, 49, 53)\"},children:\"Choose your plan\"})}),className:\"framer-1mkqp6q\",\"data-framer-name\":\"Connect your data\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-49fev7\",\"data-styles-preset\":\"IV0eGN2zF\",style:{\"--framer-text-alignment\":\"center\"},children:\"Select the plan that bests suits your outreach goals, choose your search filters and you\u2019re good to go\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-49fev7\",\"data-styles-preset\":\"IV0eGN2zF\",children:\"Select the plan that bests suits your outreach goals, choose your search filters and you\u2019re good to go\"})}),className:\"framer-1m785rs\",\"data-framer-name\":\"Select the plan that bests suits your outreach goals, enter your data and you\u2019re good to go\",fonts:[\"Inter\"],verticalAlignment:\"bottom\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8nypae\",\"data-framer-name\":\"Line 53\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:367,svg:'<svg width=\"367\" height=\"4\" viewBox=\"-1 -1 367 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"1.4082\" x2=\"365\" y2=\"1.4082\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hry4x4\",\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ha8thc\",\"data-framer-name\":\"Number\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pi9saj\",\"data-framer-name\":\"BG\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yflk51\",\"data-framer-name\":\"BG\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 49, 53)\"},children:\"2\"})}),className:\"framer-j030a3\",\"data-framer-name\":\"2\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w989wh\",\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(51, 49, 53)\"},children:\"Unlock companies\"})}),className:\"framer-6621fo\",\"data-framer-name\":\"Unlock companies\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-49fev7\",\"data-styles-preset\":\"IV0eGN2zF\",style:{\"--framer-text-alignment\":\"center\"},children:\"You\u2019ll get access to the database where 10,000+ SaaS companies await to be discovered. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-49fev7\",\"data-styles-preset\":\"IV0eGN2zF\",children:\"You\u2019ll get access to the database where 10,000+ SaaS companies await to be discovered. \"})}),className:\"framer-1xo4tkk\",\"data-framer-name\":\"You\u2019ll get access to the database where 10.000 SaaS companies await to be discovered.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-d77v6o\",\"data-framer-name\":\"Line 54\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:367,svg:'<svg width=\"367\" height=\"4\" viewBox=\"-1 -1 367 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"1.4082\" x2=\"365\" y2=\"1.4082\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wfy31\",\"data-framer-name\":\"3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rh9nl6\",\"data-framer-name\":\"Number\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qoyyvg\",\"data-framer-name\":\"BG\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ebz918\",\"data-framer-name\":\"BG\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 49, 53)\"},children:\"3\"})}),className:\"framer-albnoh\",\"data-framer-name\":\"3\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pz0tbn\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(51, 49, 53)\"},children:\"Download and connect!\"})}),className:\"framer-x6070e\",\"data-framer-name\":\"Download and connect!\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-49fev7\",\"data-styles-preset\":\"IV0eGN2zF\",style:{\"--framer-text-alignment\":\"center\"},children:\"Select from your list of unlocked companies to download their  Employee Data in CSV Format and experience unmatched outreach potential. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-49fev7\",\"data-styles-preset\":\"IV0eGN2zF\",children:\"Select from your list of unlocked companies to download their  Employee Data in CSV Format and experience unmatched outreach potential. \"})}),className:\"framer-1yjqnvr\",\"data-framer-name\":\"Select from your list of unlocked companies to download their Employee Data in CSV Format and Experience Unmatched outreach potential.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jlikmt\",\"data-framer-name\":\"FAQs\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gpigoi\",\"data-framer-name\":\"FAQ list\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1234zsl\",\"data-styles-preset\":\"qdgxseT5f\",children:\"Get your questions answered.\"})}),className:\"framer-1hl2nyg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jq62sv\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 48px, 676px)`},KokRw0B3q:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 128px, 810px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:104,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 128px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ba7bkf-container\",nodeId:\"PAnQsVUpm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Open,{BLQ5PCN2o:\"If you don\u2019t want to run your own outreach campaigns, get in touch and we can see if you're a good fit for our done for you service. \\n\",HarGEbN1c:true,height:\"100%\",id:\"PAnQsVUpm\",layoutId:\"PAnQsVUpm\",style:{width:\"100%\"},variant:\"Zdq_g2JwC\",width:\"100%\",YuzWhCQ4N:\"Can you help me with my outreach campaigns?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 48px, 676px)`},KokRw0B3q:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 128px, 810px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:104,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 128px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qs3k7u-container\",nodeId:\"rvo0j3Zi5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Open,{BLQ5PCN2o:\"I have built a unique research system and generate all my own data for the database, plus I focus on cleaning the data, and making sure it\u2019s actually a SaaS company, and I will continuously re-research the companies to make sure it\u2019s up to date.\\n\",HarGEbN1c:true,height:\"100%\",id:\"rvo0j3Zi5\",layoutId:\"rvo0j3Zi5\",style:{width:\"100%\"},variant:\"Zdq_g2JwC\",width:\"100%\",YuzWhCQ4N:\"How is your data different? Where is your data from?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 48px, 676px)`},KokRw0B3q:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 128px, 810px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:104,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 128px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nktb5k-container\",nodeId:\"Yz5tIQydu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Open,{BLQ5PCN2o:\"Recent funding information, company info like location, size, industries, focuses, website, company LinkedIn page, plus employee information like declared job title, location, verified company email address, LinkedIn profile page, plus AI-standardized job title and job role to make it easier to sort.\\n\",HarGEbN1c:true,height:\"100%\",id:\"Yz5tIQydu\",layoutId:\"Yz5tIQydu\",style:{width:\"100%\"},variant:\"Zdq_g2JwC\",width:\"100%\",YuzWhCQ4N:\"What data points are included in the database?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 48px, 676px)`},KokRw0B3q:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 128px, 810px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:104,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 128px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19vkyuf-container\",nodeId:\"PZB0FVCB_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Open,{BLQ5PCN2o:\"Unlike other databases, I have more than just the CEO and Founder\u2019s contact info. I research every single employee possible, since you may want to pitch your service to a very specific role at a company, so there are developers, HR people, logistics, interns, C Suite members and executives of all types. My goal is to include every active employee from the SaaS companies.\\n\",HarGEbN1c:true,height:\"100%\",id:\"PZB0FVCB_\",layoutId:\"PZB0FVCB_\",style:{width:\"100%\"},variant:\"Zdq_g2JwC\",width:\"100%\",YuzWhCQ4N:\"Who is in your database?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 48px, 676px)`},KokRw0B3q:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 128px, 810px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:104,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 128px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xk7f4m-container\",nodeId:\"y1obCVgAY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Open,{BLQ5PCN2o:\"No, I spent three years building a unique research system that pulls in data from various sources to embellish the company info, plus does some \u201Csecret sauce\u201D to find unpublished company email addresses. So it will have different leads than other databases, and original research.\\n\",HarGEbN1c:true,height:\"100%\",id:\"y1obCVgAY\",layoutId:\"y1obCVgAY\",style:{width:\"100%\"},variant:\"Zdq_g2JwC\",width:\"100%\",YuzWhCQ4N:\"Is this the same data as other databases?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 48px, 676px)`},KokRw0B3q:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 128px, 810px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:104,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 128px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wlcnif-container\",nodeId:\"EBOr8pP5p\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Open,{BLQ5PCN2o:\"Yes. We honor any removal requests promptly, and since it\u2019s business data, as long as you use it for business outreach and you think your offer is relevant to who you are pitching, it\u2019s all compliant.\",HarGEbN1c:true,height:\"100%\",id:\"EBOr8pP5p\",layoutId:\"EBOr8pP5p\",style:{width:\"100%\"},variant:\"Zdq_g2JwC\",width:\"100%\",YuzWhCQ4N:\"Is this GDPR compliant?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 48px, 676px)`},KokRw0B3q:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 128px, 810px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:104,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 128px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17u1iqs-container\",nodeId:\"VvpgnWn1h\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Open,{BLQ5PCN2o:\"I\u2019m actually working on a course at coldemail.vip so you can get on the waitlist there and I\u2019ll teach you! \\n\",HarGEbN1c:true,height:\"100%\",id:\"VvpgnWn1h\",layoutId:\"VvpgnWn1h\",style:{width:\"100%\"},variant:\"Zdq_g2JwC\",width:\"100%\",YuzWhCQ4N:\"How can I learn how to do cold email outreach?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 48px, 676px)`},KokRw0B3q:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 128px, 810px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:104,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 128px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-193f9bk-container\",nodeId:\"HcBNVL0zw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Open,{BLQ5PCN2o:\"Yes, it's now monthly subscriptions, with early bird pricing starting at just $47 a month. \\n\\nIf you're interested in a lifetime deal, please sign up for the app and check the \\\"get more credits\\\" for those options while they last. \",HarGEbN1c:true,height:\"100%\",id:\"HcBNVL0zw\",layoutId:\"HcBNVL0zw\",style:{width:\"100%\"},variant:\"Zdq_g2JwC\",width:\"100%\",YuzWhCQ4N:\"Is it a monthly charge?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 48px, 676px)`},KokRw0B3q:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 128px, 810px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:104,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 128px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sjqxc2-container\",nodeId:\"uBbNHYCl3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Open,{BLQ5PCN2o:\"With most databases, a credit is one employee's contact information. But I'm taking a different approach.\\nThink of a credit as a \\\"company unlock\\\", so that you can use one credit to unlock the contact information for every employee in the database for that company. This is so you can pursue the company as a target, not just one employee.\",HarGEbN1c:true,height:\"100%\",id:\"uBbNHYCl3\",layoutId:\"uBbNHYCl3\",style:{width:\"100%\"},variant:\"Zdq_g2JwC\",width:\"100%\",YuzWhCQ4N:\"What does a credit do?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 48px, 676px)`},KokRw0B3q:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 128px, 810px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:104,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 128px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t49va1-container\",nodeId:\"qsCUlG3x2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Open,{BLQ5PCN2o:\"A previous iteration of saasyDB was sending out CSV files every week of research, but now it's a searchable database that you'll get access to, with filters to help you narrow down your searches to find exactly who you need.\\n\",HarGEbN1c:true,height:\"100%\",id:\"qsCUlG3x2\",layoutId:\"qsCUlG3x2\",style:{width:\"100%\"},variant:\"Zdq_g2JwC\",width:\"100%\",YuzWhCQ4N:\"Are you sending me lead lists?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 48px, 676px)`},KokRw0B3q:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 128px, 810px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:104,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 128px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-q40av9-container\",nodeId:\"xu59aNAQC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Open,{BLQ5PCN2o:\"Many data providers merely repackage data from a major database, but I've worked on my own unique company research system since 2022, and now I use it to research SaaS companies, and that's the source of the data for saasyDB.\\nThis means that the leads in saasyDB aren't the same you'll find in the other major databases. So they're more likely to respond, and you're more likely to find the right prospect at each company to pit\\n\",HarGEbN1c:true,height:\"100%\",id:\"xu59aNAQC\",layoutId:\"xu59aNAQC\",style:{width:\"100%\"},variant:\"Zdq_g2JwC\",width:\"100%\",YuzWhCQ4N:\"Is this just repackaged data?\"})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yz9waq\",\"data-framer-name\":\"6 columns\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eeqvzo\",\"data-framer-name\":\"Frame 1321314656\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lsh3eu\",\"data-framer-name\":\"Logo\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:26,intrinsicWidth:26,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4tBbEzfTfgfIN1PUAWUUcjnLcI.svg\"},className:\"framer-1mf8uj8\",\"data-framer-name\":\"Group 1321314645\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"saasyDB\"})}),className:\"framer-vhdtik\",\"data-framer-name\":\"saasyDB\",fonts:[\"GF;Figtree-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tn3u4m\",\"data-framer-name\":\"Frame 1321314656\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:192,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5hqx1h-container\",nodeId:\"VLp50f93V\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LeftFooterMenu,{height:\"100%\",id:\"VLp50f93V\",layoutId:\"VLp50f93V\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yzixnj\",\"data-framer-name\":\"Frame\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1erzzb4-container\",nodeId:\"RJ3XH2L_f\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SocialLinkedin,{height:\"100%\",id:\"RJ3XH2L_f\",layoutId:\"RJ3XH2L_f\",style:{height:\"100%\",width:\"100%\"},variant:\"QffOiJdwe\",wftN4sdyv:\"https://www.linkedin.com/company/saasydb/\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-13efp3j-container\",nodeId:\"edIOgLMXl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SocialLinkedin,{height:\"100%\",id:\"edIOgLMXl\",layoutId:\"edIOgLMXl\",style:{height:\"100%\",width:\"100%\"},variant:\"UL7pPNTpP\",wftN4sdyv:\"https://x.com/whoworksthere\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hglYA8Z8c:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:488,intrinsicWidth:1440,pixelHeight:488,pixelWidth:1440,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/mH29DUHSe0ZTIEHIHJ6spwSA4A.png\",srcSet:\"https://framerusercontent.com/images/mH29DUHSe0ZTIEHIHJ6spwSA4A.png?scale-down-to=512 512w,https://framerusercontent.com/images/mH29DUHSe0ZTIEHIHJ6spwSA4A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mH29DUHSe0ZTIEHIHJ6spwSA4A.png 1440w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:488,intrinsicWidth:1440,pixelHeight:488,pixelWidth:1440,sizes:\"2292.7869px\",src:\"https://framerusercontent.com/images/mH29DUHSe0ZTIEHIHJ6spwSA4A.png\",srcSet:\"https://framerusercontent.com/images/mH29DUHSe0ZTIEHIHJ6spwSA4A.png?scale-down-to=512 512w,https://framerusercontent.com/images/mH29DUHSe0ZTIEHIHJ6spwSA4A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mH29DUHSe0ZTIEHIHJ6spwSA4A.png 1440w\"},className:\"framer-1o3nb98\",\"data-framer-name\":\"Wave_1_\",transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9idpE.framer-lux5qc, .framer-9idpE .framer-lux5qc { display: block; }\",\".framer-9idpE.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-9idpE .framer-1y6mmmt-container, .framer-9idpE .framer-1ulvqh8-container, .framer-9idpE .framer-1487vvi-container, .framer-9idpE .framer-inuh4x-container, .framer-9idpE .framer-x74c9i-container, .framer-9idpE .framer-1nkciw1-container, .framer-9idpE .framer-a2e3u7-container, .framer-9idpE .framer-5hqx1h-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-9idpE .framer-r0f08f-container { flex: none; height: 64px; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: 0px; width: 100%; z-index: 4; }\",\".framer-9idpE .framer-1axi3jd { aspect-ratio: 2.5668449197860963 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 779px); left: 50%; overflow: visible; position: absolute; top: -130px; transform: translateX(-50%); width: 2000px; z-index: 1; }\",\".framer-9idpE .framer-rbunqr { align-content: center; align-items: center; background-color: #10e665; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 72px 0px 8px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-9idpE .framer-l0ep2q, .framer-9idpE .framer-e68wvj, .framer-9idpE .framer-2wycjf, .framer-9idpE .framer-1ccnzf1, .framer-9idpE .framer-11myfg4, .framer-9idpE .framer-1ajnctk, .framer-9idpE .framer-21fy3i, .framer-9idpE .framer-45pobu, .framer-9idpE .framer-79ovl0, .framer-9idpE .framer-14nmp5h, .framer-9idpE .framer-1mtesnn, .framer-9idpE .framer-1mkqp6q, .framer-9idpE .framer-6621fo, .framer-9idpE .framer-x6070e, .framer-9idpE .framer-1hl2nyg, .framer-9idpE .framer-vhdtik { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-9idpE .framer-29yi7w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-9idpE .framer-yqv3ul { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; overflow: visible; padding: 112px 64px 112px 64px; position: relative; width: 1200px; z-index: 2; }\",\".framer-9idpE .framer-r8a7pz, .framer-9idpE .framer-ysfp1u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9idpE .framer-1agqjco { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9idpE .framer-1qpa013 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9idpE .framer-1aqjv7p, .framer-9idpE .framer-mjc4cb { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-9idpE .framer-8l6349 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-9idpE .framer-16grxrm { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-9idpE .framer-uwhs45 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 677px; justify-content: flex-start; overflow: visible; padding: 56px 64px 143px 64px; position: relative; width: 100%; }\",\".framer-9idpE .framer-fobf7c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px 136px 64px 136px; position: relative; width: 100%; }\",\".framer-9idpE .framer-1mtkpob, .framer-9idpE .framer-1dagdy3, .framer-9idpE .framer-178raop, .framer-9idpE .framer-ngvsd2, .framer-9idpE .framer-12w6ulz, .framer-9idpE .framer-dhk9c, .framer-9idpE .framer-1f4vm7b, .framer-9idpE .framer-t60b2t, .framer-9idpE .framer-1er0qk3, .framer-9idpE .framer-1m11h3e, .framer-9idpE .framer-1lfyb8r, .framer-9idpE .framer-qgntcp, .framer-9idpE .framer-2pfq, .framer-9idpE .framer-7ps8n4, .framer-9idpE .framer-1wr515q, .framer-9idpE .framer-ppk8bk, .framer-9idpE .framer-dgis12, .framer-9idpE .framer-2qb8g5, .framer-9idpE .framer-bj8okg, .framer-9idpE .framer-15kaa3q, .framer-9idpE .framer-1rvvcyt, .framer-9idpE .framer-fekcqo, .framer-9idpE .framer-1kyp44c, .framer-9idpE .framer-1kxjq1u, .framer-9idpE .framer-naz9k2, .framer-9idpE .framer-15aoyxi, .framer-9idpE .framer-3hrx44, .framer-9idpE .framer-44sner { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9idpE .framer-1hfitxm { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9idpE .framer-1akkgtd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9idpE .framer-cqrqza, .framer-9idpE .framer-1b5sx5i, .framer-9idpE .framer-1vxmgmt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-9idpE .framer-rspv6j { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); position: relative; width: 64px; }\",\".framer-9idpE .framer-1s8mtlh, .framer-9idpE .framer-1kqin73, .framer-9idpE .framer-ykgfkx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9idpE .framer-8pllar, .framer-9idpE .framer-1rbeoxv { flex: none; height: 64px; position: relative; width: 64px; }\",\".framer-9idpE .framer-1olj2pj-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-9idpE .framer-2ursbh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 152px; height: 996px; justify-content: center; overflow: hidden; padding: 112px 64px 0px 64px; position: relative; width: 1440px; }\",\".framer-9idpE .framer-1ss0jnj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px 4px 0px 4px; position: relative; width: 100%; }\",\".framer-9idpE .framer-1jwttkm { aspect-ratio: 1.756390977443609 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 665px); overflow: visible; position: relative; width: 89%; }\",\".framer-9idpE .framer-1k0cctq { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: -1px; }\",\".framer-9idpE .framer-qudldj { aspect-ratio: 1.756390977443609 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 665px); left: 0px; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); }\",\".framer-9idpE .framer-1d7rggd { background-color: #000000; flex: none; height: 485px; left: calc(50.00000000000002% - 948px / 2); overflow: visible; position: absolute; top: calc(48.948948948948974% - 485px / 2); width: 948px; }\",\".framer-9idpE .framer-1i0j20u-container { flex: none; height: 485px; left: 0px; position: absolute; right: -1px; top: 3px; }\",\".framer-9idpE .framer-6txlcd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 50px 4px 0px 4px; position: relative; width: 100%; }\",\".framer-9idpE .framer-90ba9 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-9idpE .framer-tqk12t { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-9idpE .framer-2hdkrq, .framer-9idpE .framer-uqhrk7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9idpE .framer-7x5vy0 { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 383px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9idpE .framer-1m602b5, .framer-9idpE .framer-14dj3m7, .framer-9idpE .framer-1e0wdco { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-9idpE .framer-kajgss, .framer-9idpE .framer-xlq3p9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 460px; word-break: break-word; word-wrap: break-word; }\",\".framer-9idpE .framer-af94oe, .framer-9idpE .framer-qt7p9x { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 460px; word-break: break-word; word-wrap: break-word; }\",\".framer-9idpE .framer-18nt3zh { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9idpE .framer-xa9w5b { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\",\".framer-9idpE .framer-2ps0gc { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\",\".framer-9idpE .framer-lmxyly, .framer-9idpE .framer-bxb4ty { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 384px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9idpE .framer-1dj8syq { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9idpE .framer-g421qb { align-content: center; align-items: center; background-color: var(--token-a8abcc39-c9a6-4340-a663-a36b8cb0d635, #efeff0); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 112px 64px 112px 64px; position: relative; width: 1px; z-index: 1; }\",\".framer-9idpE .framer-1b201wk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1200px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9idpE .framer-4v7fz1 { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(3, min-content); height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9idpE .framer-154xrcf { align-content: center; align-items: center; align-self: start; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; grid-column: auto / span 2; height: 480px; justify-content: flex-start; justify-self: end; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-9idpE .framer-fdrrxt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 88px 0px 0px; position: relative; width: 100%; }\",\".framer-9idpE .framer-1f9i47j, .framer-9idpE .framer-1dwu6y8, .framer-9idpE .framer-13qjj6, .framer-9idpE .framer-1mz8tlf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9idpE .framer-1rx3y5s { --framer-paragraph-spacing: 0px; flex: none; height: 72px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9idpE .framer-1ffu6o6 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 713px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9idpE .framer-1922tfp { align-content: center; align-items: center; bottom: -112px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; min-height: 261px; overflow: visible; padding: 0px; position: absolute; transform: translateX(-50%); width: 659px; z-index: 1; }\",\".framer-9idpE .framer-1whnbiz { --border-bottom-width: 1px; --border-color: var(--token-a8abcc39-c9a6-4340-a663-a36b8cb0d635, #efeff0); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 2.4359925788497216 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 239px); left: 50%; overflow: visible; position: absolute; top: 43%; transform: translate(-50%, -50%); width: 88%; z-index: 2; }\",\".framer-9idpE .framer-1eomi3h { aspect-ratio: 0.868421052631579 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 456px); left: 17%; overflow: visible; position: absolute; top: 79%; transform: translate(-50%, -50%); width: 60%; z-index: 1; }\",\".framer-9idpE .framer-1qx9uhm, .framer-9idpE .framer-s0fgiw { align-content: center; align-items: center; align-self: start; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 480px; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-9idpE .framer-1dkqi95, .framer-9idpE .framer-1pod3iw, .framer-9idpE .framer-fsy4kx, .framer-9idpE .framer-vbkj7m, .framer-9idpE .framer-ivq43a, .framer-9idpE .framer-1mmdx0v, .framer-9idpE .framer-1o3cwg6, .framer-9idpE .framer-59xq51 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9idpE .framer-5orb20 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9idpE .framer-1aaw9cn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-9idpE .framer-wa1xna, .framer-9idpE .framer-6gy1ln, .framer-9idpE .framer-5zliok, .framer-9idpE .framer-1yunbrm { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); overflow: visible; position: relative; width: 56px; }\",\".framer-9idpE .framer-9jjmgw { aspect-ratio: 0.8698979591836735 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 392px); left: 40%; overflow: visible; position: absolute; top: 118%; transform: translate(-50%, -50%); width: 100%; z-index: 1; }\",\".framer-9idpE .framer-1bec5w7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 48px 0px 0px; position: relative; width: 100%; }\",\".framer-9idpE .framer-th8dr { aspect-ratio: 1.5238095238095237 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 180px); left: 51%; overflow: visible; position: absolute; top: 91%; transform: translate(-50%, -50%); width: 80%; z-index: 1; }\",\".framer-9idpE .framer-nj2kk3 { align-content: center; align-items: center; align-self: start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 480px; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 24px; position: relative; width: 1fr; }\",\".framer-9idpE .framer-mvwzpy { aspect-ratio: 2.1666666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 139px); left: 50%; overflow: visible; position: absolute; top: 87%; transform: translate(-50%, -50%); width: 88%; z-index: 2; }\",\".framer-9idpE .framer-1aht0zu { aspect-ratio: 1.7816901408450705 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 230px); left: 57%; overflow: visible; position: absolute; top: 92%; transform: translate(-50%, -50%); width: 120%; z-index: 1; }\",\".framer-9idpE .framer-qyjupg { align-content: center; align-items: center; align-self: start; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: 480px; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-9idpE .framer-140byef { --framer-paragraph-spacing: 0px; flex: none; height: 55px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9idpE .framer-4dnagf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-9idpE .framer-1otm9ai, .framer-9idpE .framer-q0r9xz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-9idpE .framer-1xrcpjo-container, .framer-9idpE .framer-skxxz1-container, .framer-9idpE .framer-aw0slh-container, .framer-9idpE .framer-1izqb2z-container, .framer-9idpE .framer-1rrjy3n-container, .framer-9idpE .framer-1ssqgu9-container, .framer-9idpE .framer-1wabrvb-container, .framer-9idpE .framer-1jy7rh7-container, .framer-9idpE .framer-8xmg7y-container, .framer-9idpE .framer-1yipit7-container, .framer-9idpE .framer-xw7ovi-container, .framer-9idpE .framer-bpdtdy-container, .framer-9idpE .framer-118q3cw-container, .framer-9idpE .framer-1a8f9ki-container, .framer-9idpE .framer-1byktlv-container, .framer-9idpE .framer-1oju3op-container, .framer-9idpE .framer-9jn5o7-container, .framer-9idpE .framer-yq0iim-container { flex: none; height: 32px; position: relative; width: auto; }\",\".framer-9idpE .framer-ngemn0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-9idpE .framer-1ry08af { align-content: flex-start; align-items: flex-start; align-self: start; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-9idpE .framer-7xawj2 { align-content: flex-start; align-items: flex-start; align-self: start; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; grid-column: auto / span 2; height: 294px; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-9idpE .framer-17fll7u { bottom: -75px; flex: none; height: 182px; left: 296px; position: absolute; width: 232px; z-index: 1; }\",\".framer-9idpE .framer-tvhc8q { flex: none; height: 494px; left: calc(71.00424328147102% - 80% / 2); overflow: visible; position: absolute; top: calc(104.5977011494253% - 494px / 2); width: 80%; z-index: 1; }\",\".framer-9idpE .framer-lzgcsr { flex: none; height: 537px; left: calc(60.91015169194868% - 657px / 2); position: absolute; top: calc(36.84210526315791% - 537px / 2); width: 657px; }\",\".framer-9idpE .framer-1i99lz6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 475px; }\",\".framer-9idpE .framer-1w642xz, .framer-9idpE .framer-1qcvcpo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9idpE .framer-1q7grj7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-9idpE .framer-7xmswq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9idpE .framer-ydbut6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-9idpE .framer-1oszdjl { aspect-ratio: 1.1428571428571428 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 14px); position: relative; width: 16px; }\",\".framer-9idpE .framer-9qf1g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 20px 4px 0px 4px; position: relative; width: 100%; }\",\".framer-9idpE .framer-1q5beci-container { flex: none; height: auto; position: relative; width: 1201px; }\",\".framer-9idpE .framer-ogqhsa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 112px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9idpE .framer-1yg3cjw { aspect-ratio: 0.9508716323296355 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1262px); left: 22%; max-height: 1598px; overflow: visible; position: absolute; top: 39%; transform: translate(-50%, -50%); width: 100%; z-index: 0; }\",\".framer-9idpE .framer-urvmgj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 80px 0px 80px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-9idpE .framer-mnbtbz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px 136px 0px 136px; position: relative; width: 100%; }\",\".framer-9idpE .framer-oyksfa, .framer-9idpE .framer-pzjduo, .framer-9idpE .framer-5q80ev { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-9idpE .framer-1xybeqd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-9idpE .framer-1f2nm8q, .framer-9idpE .framer-x0r6c5 { --border-bottom-width: 1px; --border-color: var(--token-a8abcc39-c9a6-4340-a663-a36b8cb0d635, #efeff0); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 24px 32px 24px; position: relative; width: 1px; }\",\".framer-9idpE .framer-1mi480p, .framer-9idpE .framer-s273rv { aspect-ratio: 1.2208333333333334 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 241px); overflow: hidden; position: relative; width: 100%; }\",\".framer-9idpE .framer-1ivup0c, .framer-9idpE .framer-znymof, .framer-9idpE .framer-t1am8c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9idpE .framer-njak2f, .framer-9idpE .framer-1cemcew, .framer-9idpE .framer-19pmqfg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9idpE .framer-xayy83 { --border-bottom-width: 1px; --border-color: var(--token-a8abcc39-c9a6-4340-a663-a36b8cb0d635, #efeff0); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: visible; padding: 24px 24px 32px 24px; position: relative; width: 1px; }\",\".framer-9idpE .framer-iveyg4 { aspect-ratio: 1.225 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 240px); overflow: hidden; position: relative; width: 100%; }\",\".framer-9idpE .framer-1j0rvbt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9idpE .framer-n3qi1u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 64px; position: relative; width: 100%; z-index: 0; }\",\".framer-9idpE .framer-1wr68rc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-9idpE .framer-12hbreu, .framer-9idpE .framer-pz0tbn, .framer-9idpE .framer-tn3u4m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9idpE .framer-1xinypz { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-9idpE .framer-p02u04-container, .framer-9idpE .framer-17lmaqv-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-9idpE .framer-c9nv8k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1072px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-9idpE .framer-1xpg1wb { align-self: stretch; flex: 1 0 0px; height: auto; overflow: visible; position: relative; width: 1px; }\",\".framer-9idpE .framer-140cxp8 { aspect-ratio: 0.9110576923076923 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 416px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 71%; }\",\".framer-9idpE .framer-wi7nbb { -webkit-filter: blur(31.5px); aspect-ratio: 0.9187675070028011 / 1; background: linear-gradient(89.99999987953457deg, #43ff9a 0%, rgba(67, 176, 255, 1) 23.4375%, rgba(139, 67, 255, 1) 48.95833432674408%, rgba(255, 101, 67, 1) 73.95833134651184%, rgba(234, 255, 111, 1) 100%); border-bottom-left-radius: 180px; border-bottom-right-radius: 180px; border-top-left-radius: 180px; border-top-right-radius: 180px; filter: blur(31.5px); flex: none; height: var(--framer-aspect-ratio-supported, 413px); left: 49%; opacity: 0.3; overflow: visible; position: absolute; top: 52%; transform: translate(-50%, -50%); width: 100%; }\",\".framer-9idpE .framer-s2vo37 { --border-bottom-width: 8px; --border-color: rgba(0, 0, 0, 0.4); --border-left-width: 8px; --border-right-width: 8px; --border-style: solid; --border-top-width: 8px; aspect-ratio: 1.0363128491620113 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; box-shadow: 0px 4px 16px -4px rgba(45, 52, 54, 0.23); flex: none; height: var(--framer-aspect-ratio-supported, 366px); left: 51%; position: absolute; top: 43%; transform: translate(-50%, -50%); width: 100%; }\",\".framer-9idpE .framer-u0q07x { align-content: center; align-items: center; background-color: #333135; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 112px 136px 112px 136px; position: relative; width: 100%; }\",\".framer-9idpE .framer-1qjyold { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 70px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9idpE .framer-v0h06u { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 112px 64px 112px 64px; position: relative; width: 100%; }\",\".framer-9idpE .framer-15b4gc1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 136px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9idpE .framer-1g6icvf { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 543px; word-break: break-word; word-wrap: break-word; }\",\".framer-9idpE .framer-7urww7 { align-content: flex-start; align-items: flex-start; background-color: #f6f6f7; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 48px; position: relative; width: min-content; }\",\".framer-9idpE .framer-18o6ulf, .framer-9idpE .framer-1hry4x4, .framer-9idpE .framer-1wfy31 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9idpE .framer-5v33a5, .framer-9idpE .framer-ha8thc, .framer-9idpE .framer-rh9nl6 { flex: none; height: 60px; overflow: visible; position: relative; width: 60px; }\",\".framer-9idpE .framer-1kzas1s, .framer-9idpE .framer-1pi9saj, .framer-9idpE .framer-qoyyvg { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); left: 0px; overflow: visible; position: absolute; top: 0px; width: 60px; }\",\".framer-9idpE .framer-e4iime, .framer-9idpE .framer-1yflk51, .framer-9idpE .framer-ebz918 { aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 60px); left: 0px; position: absolute; top: 0px; width: 60px; }\",\".framer-9idpE .framer-1m3c8rf { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 26px; position: absolute; top: 18px; white-space: pre; width: auto; }\",\".framer-9idpE .framer-cf05jh, .framer-9idpE .framer-1w989wh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9idpE .framer-1m785rs { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 299px; word-break: break-word; word-wrap: break-word; }\",\".framer-9idpE .framer-8nypae, .framer-9idpE .framer-d77v6o { flex: none; height: 4px; position: relative; width: 367px; }\",\".framer-9idpE .framer-j030a3, .framer-9idpE .framer-albnoh { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 25px; position: absolute; top: 18px; white-space: pre; width: auto; }\",\".framer-9idpE .framer-1xo4tkk { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 305px; word-break: break-word; word-wrap: break-word; }\",\".framer-9idpE .framer-1yjqnvr { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 322px; word-break: break-word; word-wrap: break-word; }\",\".framer-9idpE .framer-1jlikmt { align-content: center; align-items: center; background-color: var(--token-a8abcc39-c9a6-4340-a663-a36b8cb0d635, #efeff0); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9idpE .framer-gpigoi { align-content: center; align-items: center; background-color: var(--token-a8abcc39-c9a6-4340-a663-a36b8cb0d635, #efeff0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 112px 64px 212px 64px; position: relative; width: 100%; }\",\".framer-9idpE .framer-jq62sv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9idpE .framer-1ba7bkf-container, .framer-9idpE .framer-qs3k7u-container, .framer-9idpE .framer-1nktb5k-container, .framer-9idpE .framer-19vkyuf-container, .framer-9idpE .framer-1xk7f4m-container, .framer-9idpE .framer-1wlcnif-container, .framer-9idpE .framer-17u1iqs-container, .framer-9idpE .framer-193f9bk-container, .framer-9idpE .framer-1sjqxc2-container, .framer-9idpE .framer-1t49va1-container, .framer-9idpE .framer-q40av9-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-9idpE .framer-yz9waq { align-content: flex-start; align-items: flex-start; background-color: var(--token-a5efbe3e-2300-4df9-bd68-ccb83b66c45e, #2d3436); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 29px 64px 112px 64px; position: relative; width: 100%; z-index: 2; }\",\".framer-9idpE .framer-1eeqvzo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9idpE .framer-lsh3eu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 96px; }\",\".framer-9idpE .framer-1mf8uj8 { flex: none; height: 26px; position: relative; width: 26px; }\",\".framer-9idpE .framer-1yzixnj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-9idpE .framer-1erzzb4-container, .framer-9idpE .framer-13efp3j-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-9idpE .framer-1o3nb98 { aspect-ratio: 2.9508196721311477 / 1; bottom: -226px; flex: none; height: var(--framer-aspect-ratio-supported, 777px); left: 50%; overflow: visible; position: absolute; transform: translateX(-50%); width: 2293px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-9idpE.framer-72rtr7, .framer-9idpE .framer-rbunqr, .framer-9idpE .framer-29yi7w, .framer-9idpE .framer-yqv3ul, .framer-9idpE .framer-r8a7pz, .framer-9idpE .framer-1agqjco, .framer-9idpE .framer-1qpa013, .framer-9idpE .framer-8l6349, .framer-9idpE .framer-uwhs45, .framer-9idpE .framer-fobf7c, .framer-9idpE .framer-1akkgtd, .framer-9idpE .framer-cqrqza, .framer-9idpE .framer-1s8mtlh, .framer-9idpE .framer-1b5sx5i, .framer-9idpE .framer-1kqin73, .framer-9idpE .framer-1vxmgmt, .framer-9idpE .framer-ykgfkx, .framer-9idpE .framer-2ursbh, .framer-9idpE .framer-1ss0jnj, .framer-9idpE .framer-6txlcd, .framer-9idpE .framer-90ba9, .framer-9idpE .framer-tqk12t, .framer-9idpE .framer-2hdkrq, .framer-9idpE .framer-7x5vy0, .framer-9idpE .framer-1m602b5, .framer-9idpE .framer-18nt3zh, .framer-9idpE .framer-14dj3m7, .framer-9idpE .framer-lmxyly, .framer-9idpE .framer-uqhrk7, .framer-9idpE .framer-bxb4ty, .framer-9idpE .framer-1e0wdco, .framer-9idpE .framer-1dj8syq, .framer-9idpE .framer-g421qb, .framer-9idpE .framer-154xrcf, .framer-9idpE .framer-fdrrxt, .framer-9idpE .framer-1f9i47j, .framer-9idpE .framer-1922tfp, .framer-9idpE .framer-1qx9uhm, .framer-9idpE .framer-ysfp1u, .framer-9idpE .framer-1dkqi95, .framer-9idpE .framer-5orb20, .framer-9idpE .framer-1aaw9cn, .framer-9idpE .framer-s0fgiw, .framer-9idpE .framer-1pod3iw, .framer-9idpE .framer-1bec5w7, .framer-9idpE .framer-nj2kk3, .framer-9idpE .framer-fsy4kx, .framer-9idpE .framer-1dwu6y8, .framer-9idpE .framer-qyjupg, .framer-9idpE .framer-vbkj7m, .framer-9idpE .framer-13qjj6, .framer-9idpE .framer-4dnagf, .framer-9idpE .framer-1otm9ai, .framer-9idpE .framer-q0r9xz, .framer-9idpE .framer-1ry08af, .framer-9idpE .framer-ivq43a, .framer-9idpE .framer-1mz8tlf, .framer-9idpE .framer-7xawj2, .framer-9idpE .framer-1i99lz6, .framer-9idpE .framer-1w642xz, .framer-9idpE .framer-1q7grj7, .framer-9idpE .framer-7xmswq, .framer-9idpE .framer-ydbut6, .framer-9idpE .framer-9qf1g, .framer-9idpE .framer-ogqhsa, .framer-9idpE .framer-urvmgj, .framer-9idpE .framer-mnbtbz, .framer-9idpE .framer-1xybeqd, .framer-9idpE .framer-1f2nm8q, .framer-9idpE .framer-1ivup0c, .framer-9idpE .framer-1mmdx0v, .framer-9idpE .framer-njak2f, .framer-9idpE .framer-xayy83, .framer-9idpE .framer-znymof, .framer-9idpE .framer-1o3cwg6, .framer-9idpE .framer-1cemcew, .framer-9idpE .framer-1j0rvbt, .framer-9idpE .framer-x0r6c5, .framer-9idpE .framer-t1am8c, .framer-9idpE .framer-59xq51, .framer-9idpE .framer-19pmqfg, .framer-9idpE .framer-n3qi1u, .framer-9idpE .framer-1wr68rc, .framer-9idpE .framer-12hbreu, .framer-9idpE .framer-1xinypz, .framer-9idpE .framer-1qcvcpo, .framer-9idpE .framer-c9nv8k, .framer-9idpE .framer-u0q07x, .framer-9idpE .framer-1qjyold, .framer-9idpE .framer-15b4gc1, .framer-9idpE .framer-7urww7, .framer-9idpE .framer-18o6ulf, .framer-9idpE .framer-cf05jh, .framer-9idpE .framer-1hry4x4, .framer-9idpE .framer-1w989wh, .framer-9idpE .framer-1wfy31, .framer-9idpE .framer-pz0tbn, .framer-9idpE .framer-1jlikmt, .framer-9idpE .framer-gpigoi, .framer-9idpE .framer-jq62sv, .framer-9idpE .framer-1eeqvzo, .framer-9idpE .framer-tn3u4m, .framer-9idpE .framer-1yzixnj { gap: 0px; } .framer-9idpE.framer-72rtr7 > *, .framer-9idpE .framer-uwhs45 > *, .framer-9idpE .framer-jq62sv > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-9idpE.framer-72rtr7 > :first-child, .framer-9idpE .framer-rbunqr > :first-child, .framer-9idpE .framer-29yi7w > :first-child, .framer-9idpE .framer-yqv3ul > :first-child, .framer-9idpE .framer-r8a7pz > :first-child, .framer-9idpE .framer-1agqjco > :first-child, .framer-9idpE .framer-1qpa013 > :first-child, .framer-9idpE .framer-uwhs45 > :first-child, .framer-9idpE .framer-fobf7c > :first-child, .framer-9idpE .framer-cqrqza > :first-child, .framer-9idpE .framer-1s8mtlh > :first-child, .framer-9idpE .framer-1b5sx5i > :first-child, .framer-9idpE .framer-1kqin73 > :first-child, .framer-9idpE .framer-1vxmgmt > :first-child, .framer-9idpE .framer-ykgfkx > :first-child, .framer-9idpE .framer-2ursbh > :first-child, .framer-9idpE .framer-tqk12t > :first-child, .framer-9idpE .framer-7x5vy0 > :first-child, .framer-9idpE .framer-1m602b5 > :first-child, .framer-9idpE .framer-14dj3m7 > :first-child, .framer-9idpE .framer-lmxyly > :first-child, .framer-9idpE .framer-bxb4ty > :first-child, .framer-9idpE .framer-1e0wdco > :first-child, .framer-9idpE .framer-g421qb > :first-child, .framer-9idpE .framer-154xrcf > :first-child, .framer-9idpE .framer-fdrrxt > :first-child, .framer-9idpE .framer-1f9i47j > :first-child, .framer-9idpE .framer-1qx9uhm > :first-child, .framer-9idpE .framer-ysfp1u > :first-child, .framer-9idpE .framer-1dkqi95 > :first-child, .framer-9idpE .framer-5orb20 > :first-child, .framer-9idpE .framer-s0fgiw > :first-child, .framer-9idpE .framer-1pod3iw > :first-child, .framer-9idpE .framer-1bec5w7 > :first-child, .framer-9idpE .framer-nj2kk3 > :first-child, .framer-9idpE .framer-fsy4kx > :first-child, .framer-9idpE .framer-1dwu6y8 > :first-child, .framer-9idpE .framer-qyjupg > :first-child, .framer-9idpE .framer-vbkj7m > :first-child, .framer-9idpE .framer-13qjj6 > :first-child, .framer-9idpE .framer-4dnagf > :first-child, .framer-9idpE .framer-1ry08af > :first-child, .framer-9idpE .framer-ivq43a > :first-child, .framer-9idpE .framer-1mz8tlf > :first-child, .framer-9idpE .framer-7xawj2 > :first-child, .framer-9idpE .framer-1i99lz6 > :first-child, .framer-9idpE .framer-1q7grj7 > :first-child, .framer-9idpE .framer-ogqhsa > :first-child, .framer-9idpE .framer-urvmgj > :first-child, .framer-9idpE .framer-1f2nm8q > :first-child, .framer-9idpE .framer-1ivup0c > :first-child, .framer-9idpE .framer-1mmdx0v > :first-child, .framer-9idpE .framer-njak2f > :first-child, .framer-9idpE .framer-xayy83 > :first-child, .framer-9idpE .framer-znymof > :first-child, .framer-9idpE .framer-1o3cwg6 > :first-child, .framer-9idpE .framer-1cemcew > :first-child, .framer-9idpE .framer-x0r6c5 > :first-child, .framer-9idpE .framer-t1am8c > :first-child, .framer-9idpE .framer-59xq51 > :first-child, .framer-9idpE .framer-19pmqfg > :first-child, .framer-9idpE .framer-1wr68rc > :first-child, .framer-9idpE .framer-12hbreu > :first-child, .framer-9idpE .framer-c9nv8k > :first-child, .framer-9idpE .framer-u0q07x > :first-child, .framer-9idpE .framer-15b4gc1 > :first-child, .framer-9idpE .framer-7urww7 > :first-child, .framer-9idpE .framer-cf05jh > :first-child, .framer-9idpE .framer-1w989wh > :first-child, .framer-9idpE .framer-pz0tbn > :first-child, .framer-9idpE .framer-gpigoi > :first-child, .framer-9idpE .framer-jq62sv > :first-child, .framer-9idpE .framer-1eeqvzo > :first-child, .framer-9idpE .framer-tn3u4m > :first-child { margin-top: 0px; } .framer-9idpE.framer-72rtr7 > :last-child, .framer-9idpE .framer-rbunqr > :last-child, .framer-9idpE .framer-29yi7w > :last-child, .framer-9idpE .framer-yqv3ul > :last-child, .framer-9idpE .framer-r8a7pz > :last-child, .framer-9idpE .framer-1agqjco > :last-child, .framer-9idpE .framer-1qpa013 > :last-child, .framer-9idpE .framer-uwhs45 > :last-child, .framer-9idpE .framer-fobf7c > :last-child, .framer-9idpE .framer-cqrqza > :last-child, .framer-9idpE .framer-1s8mtlh > :last-child, .framer-9idpE .framer-1b5sx5i > :last-child, .framer-9idpE .framer-1kqin73 > :last-child, .framer-9idpE .framer-1vxmgmt > :last-child, .framer-9idpE .framer-ykgfkx > :last-child, .framer-9idpE .framer-2ursbh > :last-child, .framer-9idpE .framer-tqk12t > :last-child, .framer-9idpE .framer-7x5vy0 > :last-child, .framer-9idpE .framer-1m602b5 > :last-child, .framer-9idpE .framer-14dj3m7 > :last-child, .framer-9idpE .framer-lmxyly > :last-child, .framer-9idpE .framer-bxb4ty > :last-child, .framer-9idpE .framer-1e0wdco > :last-child, .framer-9idpE .framer-g421qb > :last-child, .framer-9idpE .framer-154xrcf > :last-child, .framer-9idpE .framer-fdrrxt > :last-child, .framer-9idpE .framer-1f9i47j > :last-child, .framer-9idpE .framer-1qx9uhm > :last-child, .framer-9idpE .framer-ysfp1u > :last-child, .framer-9idpE .framer-1dkqi95 > :last-child, .framer-9idpE .framer-5orb20 > :last-child, .framer-9idpE .framer-s0fgiw > :last-child, .framer-9idpE .framer-1pod3iw > :last-child, .framer-9idpE .framer-1bec5w7 > :last-child, .framer-9idpE .framer-nj2kk3 > :last-child, .framer-9idpE .framer-fsy4kx > :last-child, .framer-9idpE .framer-1dwu6y8 > :last-child, .framer-9idpE .framer-qyjupg > :last-child, .framer-9idpE .framer-vbkj7m > :last-child, .framer-9idpE .framer-13qjj6 > :last-child, .framer-9idpE .framer-4dnagf > :last-child, .framer-9idpE .framer-1ry08af > :last-child, .framer-9idpE .framer-ivq43a > :last-child, .framer-9idpE .framer-1mz8tlf > :last-child, .framer-9idpE .framer-7xawj2 > :last-child, .framer-9idpE .framer-1i99lz6 > :last-child, .framer-9idpE .framer-1q7grj7 > :last-child, .framer-9idpE .framer-ogqhsa > :last-child, .framer-9idpE .framer-urvmgj > :last-child, .framer-9idpE .framer-1f2nm8q > :last-child, .framer-9idpE .framer-1ivup0c > :last-child, .framer-9idpE .framer-1mmdx0v > :last-child, .framer-9idpE .framer-njak2f > :last-child, .framer-9idpE .framer-xayy83 > :last-child, .framer-9idpE .framer-znymof > :last-child, .framer-9idpE .framer-1o3cwg6 > :last-child, .framer-9idpE .framer-1cemcew > :last-child, .framer-9idpE .framer-x0r6c5 > :last-child, .framer-9idpE .framer-t1am8c > :last-child, .framer-9idpE .framer-59xq51 > :last-child, .framer-9idpE .framer-19pmqfg > :last-child, .framer-9idpE .framer-1wr68rc > :last-child, .framer-9idpE .framer-12hbreu > :last-child, .framer-9idpE .framer-c9nv8k > :last-child, .framer-9idpE .framer-u0q07x > :last-child, .framer-9idpE .framer-15b4gc1 > :last-child, .framer-9idpE .framer-7urww7 > :last-child, .framer-9idpE .framer-cf05jh > :last-child, .framer-9idpE .framer-1w989wh > :last-child, .framer-9idpE .framer-pz0tbn > :last-child, .framer-9idpE .framer-gpigoi > :last-child, .framer-9idpE .framer-jq62sv > :last-child, .framer-9idpE .framer-1eeqvzo > :last-child, .framer-9idpE .framer-tn3u4m > :last-child { margin-bottom: 0px; } .framer-9idpE .framer-rbunqr > *, .framer-9idpE .framer-29yi7w > *, .framer-9idpE .framer-cf05jh > *, .framer-9idpE .framer-1w989wh > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-9idpE .framer-yqv3ul > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-9idpE .framer-r8a7pz > *, .framer-9idpE .framer-fdrrxt > *, .framer-9idpE .framer-ysfp1u > *, .framer-9idpE .framer-1dkqi95 > *, .framer-9idpE .framer-1pod3iw > *, .framer-9idpE .framer-fsy4kx > *, .framer-9idpE .framer-vbkj7m > *, .framer-9idpE .framer-ivq43a > *, .framer-9idpE .framer-1i99lz6 > *, .framer-9idpE .framer-1mmdx0v > *, .framer-9idpE .framer-1o3cwg6 > *, .framer-9idpE .framer-59xq51 > *, .framer-9idpE .framer-1wr68rc > *, .framer-9idpE .framer-7urww7 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-9idpE .framer-1agqjco > *, .framer-9idpE .framer-fobf7c > *, .framer-9idpE .framer-1s8mtlh > *, .framer-9idpE .framer-1kqin73 > *, .framer-9idpE .framer-ykgfkx > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-9idpE .framer-1qpa013 > *, .framer-9idpE .framer-njak2f > *, .framer-9idpE .framer-1cemcew > *, .framer-9idpE .framer-19pmqfg > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-9idpE .framer-8l6349 > *, .framer-9idpE .framer-90ba9 > *, .framer-9idpE .framer-1dj8syq > *, .framer-9idpE .framer-1922tfp > *, .framer-9idpE .framer-1w642xz > *, .framer-9idpE .framer-7xmswq > *, .framer-9idpE .framer-ydbut6 > *, .framer-9idpE .framer-n3qi1u > *, .framer-9idpE .framer-1xinypz > *, .framer-9idpE .framer-1qcvcpo > *, .framer-9idpE .framer-1jlikmt > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-9idpE .framer-8l6349 > :first-child, .framer-9idpE .framer-1akkgtd > :first-child, .framer-9idpE .framer-1ss0jnj > :first-child, .framer-9idpE .framer-6txlcd > :first-child, .framer-9idpE .framer-90ba9 > :first-child, .framer-9idpE .framer-2hdkrq > :first-child, .framer-9idpE .framer-18nt3zh > :first-child, .framer-9idpE .framer-uqhrk7 > :first-child, .framer-9idpE .framer-1dj8syq > :first-child, .framer-9idpE .framer-1922tfp > :first-child, .framer-9idpE .framer-1aaw9cn > :first-child, .framer-9idpE .framer-1otm9ai > :first-child, .framer-9idpE .framer-q0r9xz > :first-child, .framer-9idpE .framer-1w642xz > :first-child, .framer-9idpE .framer-7xmswq > :first-child, .framer-9idpE .framer-ydbut6 > :first-child, .framer-9idpE .framer-9qf1g > :first-child, .framer-9idpE .framer-mnbtbz > :first-child, .framer-9idpE .framer-1xybeqd > :first-child, .framer-9idpE .framer-1j0rvbt > :first-child, .framer-9idpE .framer-n3qi1u > :first-child, .framer-9idpE .framer-1xinypz > :first-child, .framer-9idpE .framer-1qcvcpo > :first-child, .framer-9idpE .framer-1qjyold > :first-child, .framer-9idpE .framer-18o6ulf > :first-child, .framer-9idpE .framer-1hry4x4 > :first-child, .framer-9idpE .framer-1wfy31 > :first-child, .framer-9idpE .framer-1jlikmt > :first-child, .framer-9idpE .framer-1yzixnj > :first-child { margin-left: 0px; } .framer-9idpE .framer-8l6349 > :last-child, .framer-9idpE .framer-1akkgtd > :last-child, .framer-9idpE .framer-1ss0jnj > :last-child, .framer-9idpE .framer-6txlcd > :last-child, .framer-9idpE .framer-90ba9 > :last-child, .framer-9idpE .framer-2hdkrq > :last-child, .framer-9idpE .framer-18nt3zh > :last-child, .framer-9idpE .framer-uqhrk7 > :last-child, .framer-9idpE .framer-1dj8syq > :last-child, .framer-9idpE .framer-1922tfp > :last-child, .framer-9idpE .framer-1aaw9cn > :last-child, .framer-9idpE .framer-1otm9ai > :last-child, .framer-9idpE .framer-q0r9xz > :last-child, .framer-9idpE .framer-1w642xz > :last-child, .framer-9idpE .framer-7xmswq > :last-child, .framer-9idpE .framer-ydbut6 > :last-child, .framer-9idpE .framer-9qf1g > :last-child, .framer-9idpE .framer-mnbtbz > :last-child, .framer-9idpE .framer-1xybeqd > :last-child, .framer-9idpE .framer-1j0rvbt > :last-child, .framer-9idpE .framer-n3qi1u > :last-child, .framer-9idpE .framer-1xinypz > :last-child, .framer-9idpE .framer-1qcvcpo > :last-child, .framer-9idpE .framer-1qjyold > :last-child, .framer-9idpE .framer-18o6ulf > :last-child, .framer-9idpE .framer-1hry4x4 > :last-child, .framer-9idpE .framer-1wfy31 > :last-child, .framer-9idpE .framer-1jlikmt > :last-child, .framer-9idpE .framer-1yzixnj > :last-child { margin-right: 0px; } .framer-9idpE .framer-1akkgtd > * { margin: 0px; margin-left: calc(56px / 2); margin-right: calc(56px / 2); } .framer-9idpE .framer-cqrqza > *, .framer-9idpE .framer-1b5sx5i > *, .framer-9idpE .framer-1vxmgmt > *, .framer-9idpE .framer-1f9i47j > *, .framer-9idpE .framer-5orb20 > *, .framer-9idpE .framer-1bec5w7 > *, .framer-9idpE .framer-1dwu6y8 > *, .framer-9idpE .framer-13qjj6 > *, .framer-9idpE .framer-4dnagf > *, .framer-9idpE .framer-1mz8tlf > *, .framer-9idpE .framer-1q7grj7 > *, .framer-9idpE .framer-12hbreu > *, .framer-9idpE .framer-pz0tbn > *, .framer-9idpE .framer-tn3u4m > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-9idpE .framer-2ursbh > * { margin: 0px; margin-bottom: calc(152px / 2); margin-top: calc(152px / 2); } .framer-9idpE .framer-1ss0jnj > *, .framer-9idpE .framer-6txlcd > *, .framer-9idpE .framer-9qf1g > *, .framer-9idpE .framer-mnbtbz > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-9idpE .framer-tqk12t > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-9idpE .framer-2hdkrq > *, .framer-9idpE .framer-18nt3zh > *, .framer-9idpE .framer-uqhrk7 > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-9idpE .framer-7x5vy0 > *, .framer-9idpE .framer-1m602b5 > *, .framer-9idpE .framer-14dj3m7 > *, .framer-9idpE .framer-lmxyly > *, .framer-9idpE .framer-bxb4ty > *, .framer-9idpE .framer-1e0wdco > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-9idpE .framer-g421qb > *, .framer-9idpE .framer-gpigoi > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-9idpE .framer-154xrcf > *, .framer-9idpE .framer-1qx9uhm > *, .framer-9idpE .framer-s0fgiw > *, .framer-9idpE .framer-nj2kk3 > *, .framer-9idpE .framer-1ry08af > *, .framer-9idpE .framer-7xawj2 > *, .framer-9idpE .framer-c9nv8k > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-9idpE .framer-1aaw9cn > *, .framer-9idpE .framer-1yzixnj > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-9idpE .framer-qyjupg > *, .framer-9idpE .framer-1f2nm8q > *, .framer-9idpE .framer-xayy83 > *, .framer-9idpE .framer-x0r6c5 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-9idpE .framer-1otm9ai > *, .framer-9idpE .framer-q0r9xz > *, .framer-9idpE .framer-1j0rvbt > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-9idpE .framer-ogqhsa > * { margin: 0px; margin-bottom: calc(112px / 2); margin-top: calc(112px / 2); } .framer-9idpE .framer-urvmgj > *, .framer-9idpE .framer-u0q07x > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-9idpE .framer-1xybeqd > *, .framer-9idpE .framer-18o6ulf > *, .framer-9idpE .framer-1hry4x4 > *, .framer-9idpE .framer-1wfy31 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-9idpE .framer-1ivup0c > *, .framer-9idpE .framer-znymof > *, .framer-9idpE .framer-t1am8c > *, .framer-9idpE .framer-1eeqvzo > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-9idpE .framer-1qjyold > * { margin: 0px; margin-left: calc(70px / 2); margin-right: calc(70px / 2); } .framer-9idpE .framer-15b4gc1 > * { margin: 0px; margin-bottom: calc(136px / 2); margin-top: calc(136px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-9idpE[data-border=\"true\"]::after, .framer-9idpE [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-9idpE.framer-72rtr7 { width: 810px; } .framer-9idpE .framer-1y6mmmt-container { order: 22; } .framer-9idpE .framer-r0f08f-container { order: 18; } .framer-9idpE .framer-1axi3jd { order: 0; top: -177px; } .framer-9idpE .framer-rbunqr { order: 1; padding: 72px 16px 8px 16px; } .framer-9idpE .framer-yqv3ul { gap: 68px; max-width: 810px; order: 2; padding: 88px 32px 112px 32px; width: 100%; z-index: 1; } .framer-9idpE .framer-uwhs45 { height: 844px; order: 3; padding: 56px 32px 80px 32px; } .framer-9idpE .framer-fobf7c { padding: 0px 0px 64px 0px; } .framer-9idpE .framer-1mtkpob { max-width: 1312px; } .framer-9idpE .framer-1hfitxm { max-width: 620px; } .framer-9idpE .framer-1akkgtd { align-content: center; align-items: center; flex-direction: column; gap: 52px; height: 464px; padding: 0px 32px 0px 32px; } .framer-9idpE .framer-cqrqza, .framer-9idpE .framer-1b5sx5i, .framer-9idpE .framer-1vxmgmt { flex: none; flex-direction: row; gap: 24px; justify-content: center; padding: 0px 32px 0px 32px; width: 100%; } .framer-9idpE .framer-1s8mtlh, .framer-9idpE .framer-1kqin73, .framer-9idpE .framer-ykgfkx { align-content: flex-start; align-items: flex-start; gap: 8px; justify-content: flex-start; max-width: 480px; } .framer-9idpE .framer-1olj2pj-container { order: 4; } .framer-9idpE .framer-2ursbh { gap: 64px; height: min-content; order: 5; padding: 112px 32px 0px 32px; } .framer-9idpE .framer-1jwttkm { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 1px); justify-content: center; padding: 0px; width: 1180px; } .framer-9idpE .framer-1k0cctq { bottom: unset; height: 514px; left: unset; position: relative; right: unset; top: unset; width: 901px; } .framer-9idpE .framer-qudldj { height: var(--framer-aspect-ratio-supported, 443px); left: 50%; right: unset; transform: translate(-50%, -50%); width: 778px; } .framer-9idpE .framer-1d7rggd { height: 400px; left: calc(49.944506104328546% - 638.1154273029966px / 2); top: calc(49.416342412451385% - 399.82261208577px / 2); width: 638px; } .framer-9idpE .framer-1i0j20u-container { height: 400px; } .framer-9idpE .framer-6txlcd { order: 6; } .framer-9idpE .framer-90ba9 { order: 7; padding: 60px 40px 60px 40px; } .framer-9idpE .framer-7x5vy0, .framer-9idpE .framer-lmxyly, .framer-9idpE .framer-bxb4ty { height: var(--framer-aspect-ratio-supported, 167px); } .framer-9idpE .framer-kajgss, .framer-9idpE .framer-af94oe, .framer-9idpE .framer-xlq3p9, .framer-9idpE .framer-qt7p9x { width: 100%; } .framer-9idpE .framer-1dj8syq { order: 10; } .framer-9idpE .framer-g421qb { padding: 112px 32px 112px 32px; } .framer-9idpE .framer-1b201wk, .framer-9idpE .framer-jq62sv { max-width: 810px; } .framer-9idpE .framer-4v7fz1 { gap: 12px; grid-template-columns: repeat(4, minmax(200px, 1fr)); max-width: unset; } .framer-9idpE .framer-154xrcf { align-content: flex-start; align-items: flex-start; gap: 56px; width: 366px; } .framer-9idpE .framer-fdrrxt, .framer-9idpE .framer-1bec5w7 { padding: 0px; } .framer-9idpE .framer-1rx3y5s, .framer-9idpE .framer-140byef { height: auto; } .framer-9idpE .framer-1922tfp { bottom: unset; left: unset; position: relative; transform: unset; } .framer-9idpE .framer-1whnbiz { height: var(--framer-aspect-ratio-supported, 82px); } .framer-9idpE .framer-1eomi3h { height: var(--framer-aspect-ratio-supported, 230px); top: 76%; } .framer-9idpE .framer-1qx9uhm { align-content: flex-start; align-items: flex-start; grid-column: auto / span 2; width: 366px; } .framer-9idpE .framer-ysfp1u { gap: 56px; } .framer-9idpE .framer-9jjmgw { height: var(--framer-aspect-ratio-supported, 230px); } .framer-9idpE .framer-s0fgiw { grid-column: auto / span 2; justify-self: end; width: 366px; } .framer-9idpE .framer-th8dr { height: var(--framer-aspect-ratio-supported, 131px); left: 51%; top: 89%; width: 80%; } .framer-9idpE .framer-nj2kk3 { grid-column: auto / span 2; width: 366px; } .framer-9idpE .framer-mvwzpy { height: var(--framer-aspect-ratio-supported, 92px); } .framer-9idpE .framer-1aht0zu { height: var(--framer-aspect-ratio-supported, 112px); } .framer-9idpE .framer-qyjupg { align-content: flex-start; align-items: flex-start; grid-column: auto / span 2; justify-self: end; width: 366px; } .framer-9idpE .framer-1ry08af { grid-column: auto / span 2; height: 480px; width: 366px; } .framer-9idpE .framer-7xawj2 { grid-column: auto / span 4; height: 261px; justify-self: center; width: 746px; } .framer-9idpE .framer-ydbut6 { width: min-content; } .framer-9idpE .framer-9qf1g { order: 11; } .framer-9idpE .framer-1q5beci-container { order: 12; width: 791px; } .framer-9idpE .framer-ogqhsa { justify-content: flex-start; order: 14; padding: 80px 0px 80px 0px; } .framer-9idpE .framer-1yg3cjw { aspect-ratio: 0.6418383518225039 / 1; height: var(--framer-aspect-ratio-supported, 312px); left: 27%; order: 0; top: 40%; width: 188%; } .framer-9idpE .framer-urvmgj { gap: 64px; max-width: unset; order: 1; padding: 0px; } .framer-9idpE .framer-1xybeqd { align-content: center; align-items: center; justify-content: center; min-width: 810px; padding: 0px 32px 0px 32px; z-index: 1; } .framer-9idpE .framer-1f2nm8q { flex: none; padding: 24px; width: min-content; } .framer-9idpE .framer-1mi480p { aspect-ratio: 1.2227979274611398 / 1; width: 295px; } .framer-9idpE .framer-1ivup0c, .framer-9idpE .framer-znymof { width: 294px; } .framer-9idpE .framer-xayy83 { flex: none; justify-content: flex-start; padding: 24px; width: min-content; } .framer-9idpE .framer-iveyg4 { height: var(--framer-aspect-ratio-supported, 241px); width: 295px; } .framer-9idpE .framer-x0r6c5 { align-content: center; align-items: center; flex: none; padding: 24px; width: min-content; } .framer-9idpE .framer-s273rv { aspect-ratio: 1.2166666666666666 / 1; width: 293px; } .framer-9idpE .framer-t1am8c { width: 292px; } .framer-9idpE .framer-59xq51 { gap: 64px; } .framer-9idpE .framer-n3qi1u { flex-direction: column; gap: 64px; order: 2; padding: 64px 64px 0px 64px; } .framer-9idpE .framer-1wr68rc { align-content: center; align-items: center; flex: none; order: 1; width: 100%; } .framer-9idpE .framer-12hbreu { align-content: center; align-items: center; width: 100%; } .framer-9idpE .framer-45pobu, .framer-9idpE .framer-79ovl0, .framer-9idpE .framer-14nmp5h { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-9idpE .framer-1xinypz { align-self: unset; justify-content: center; width: 100%; } .framer-9idpE .framer-1qcvcpo { justify-content: flex-start; padding: 0px 72px 0px 72px; } .framer-9idpE .framer-5q80ev { --framer-paragraph-spacing: 18px; } .framer-9idpE .framer-c9nv8k { align-content: center; align-items: center; gap: 4px; max-width: 682px; width: 682px; } .framer-9idpE .framer-1xpg1wb { align-content: center; align-items: center; align-self: unset; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; order: 0; padding: 0px; width: 100%; } .framer-9idpE .framer-140cxp8 { aspect-ratio: 0.9570707070707071 / 1; height: var(--framer-aspect-ratio-supported, 209px); left: unset; max-width: 280px; position: relative; top: unset; transform: unset; width: 41%; } .framer-9idpE .framer-wi7nbb { height: var(--framer-aspect-ratio-supported, 218px); top: 50%; } .framer-9idpE .framer-s2vo37 { aspect-ratio: 1.058659217877095 / 1; height: var(--framer-aspect-ratio-supported, 189px); top: 46%; } .framer-9idpE .framer-u0q07x { gap: 64px; order: 15; padding: 80px 32px 80px 32px; } .framer-9idpE .framer-v0h06u { align-content: center; align-items: center; flex-direction: column; gap: 64px; height: 1198px; justify-content: flex-start; order: 16; padding: 96px 64px 96px 64px; } .framer-9idpE .framer-15b4gc1 { align-content: center; align-items: center; gap: 40px; max-width: 1312px; width: 100%; } .framer-9idpE .framer-1g6icvf { max-width: 810px; width: 100%; } .framer-9idpE .framer-1jlikmt { order: 19; } .framer-9idpE .framer-gpigoi { padding: 96px 64px 96px 64px; } .framer-9idpE .framer-1hl2nyg { max-width: 810px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; } .framer-9idpE .framer-yz9waq { order: 20; } .framer-9idpE .framer-1o3nb98 { order: 21; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-9idpE .framer-yqv3ul, .framer-9idpE .framer-1akkgtd, .framer-9idpE .framer-cqrqza, .framer-9idpE .framer-1s8mtlh, .framer-9idpE .framer-1b5sx5i, .framer-9idpE .framer-1kqin73, .framer-9idpE .framer-1vxmgmt, .framer-9idpE .framer-ykgfkx, .framer-9idpE .framer-2ursbh, .framer-9idpE .framer-1jwttkm, .framer-9idpE .framer-4v7fz1, .framer-9idpE .framer-154xrcf, .framer-9idpE .framer-ysfp1u, .framer-9idpE .framer-urvmgj, .framer-9idpE .framer-59xq51, .framer-9idpE .framer-n3qi1u, .framer-9idpE .framer-c9nv8k, .framer-9idpE .framer-1xpg1wb, .framer-9idpE .framer-u0q07x, .framer-9idpE .framer-v0h06u, .framer-9idpE .framer-15b4gc1 { gap: 0px; } .framer-9idpE .framer-yqv3ul > * { margin: 0px; margin-bottom: calc(68px / 2); margin-top: calc(68px / 2); } .framer-9idpE .framer-yqv3ul > :first-child, .framer-9idpE .framer-1akkgtd > :first-child, .framer-9idpE .framer-1s8mtlh > :first-child, .framer-9idpE .framer-1kqin73 > :first-child, .framer-9idpE .framer-ykgfkx > :first-child, .framer-9idpE .framer-2ursbh > :first-child, .framer-9idpE .framer-1jwttkm > :first-child, .framer-9idpE .framer-154xrcf > :first-child, .framer-9idpE .framer-ysfp1u > :first-child, .framer-9idpE .framer-urvmgj > :first-child, .framer-9idpE .framer-59xq51 > :first-child, .framer-9idpE .framer-n3qi1u > :first-child, .framer-9idpE .framer-c9nv8k > :first-child, .framer-9idpE .framer-u0q07x > :first-child, .framer-9idpE .framer-v0h06u > :first-child, .framer-9idpE .framer-15b4gc1 > :first-child { margin-top: 0px; } .framer-9idpE .framer-yqv3ul > :last-child, .framer-9idpE .framer-1akkgtd > :last-child, .framer-9idpE .framer-1s8mtlh > :last-child, .framer-9idpE .framer-1kqin73 > :last-child, .framer-9idpE .framer-ykgfkx > :last-child, .framer-9idpE .framer-2ursbh > :last-child, .framer-9idpE .framer-1jwttkm > :last-child, .framer-9idpE .framer-154xrcf > :last-child, .framer-9idpE .framer-ysfp1u > :last-child, .framer-9idpE .framer-urvmgj > :last-child, .framer-9idpE .framer-59xq51 > :last-child, .framer-9idpE .framer-n3qi1u > :last-child, .framer-9idpE .framer-c9nv8k > :last-child, .framer-9idpE .framer-u0q07x > :last-child, .framer-9idpE .framer-v0h06u > :last-child, .framer-9idpE .framer-15b4gc1 > :last-child { margin-bottom: 0px; } .framer-9idpE .framer-1akkgtd > * { margin: 0px; margin-bottom: calc(52px / 2); margin-top: calc(52px / 2); } .framer-9idpE .framer-cqrqza > *, .framer-9idpE .framer-1b5sx5i > *, .framer-9idpE .framer-1vxmgmt > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-9idpE .framer-cqrqza > :first-child, .framer-9idpE .framer-1b5sx5i > :first-child, .framer-9idpE .framer-1vxmgmt > :first-child, .framer-9idpE .framer-1xpg1wb > :first-child { margin-left: 0px; } .framer-9idpE .framer-cqrqza > :last-child, .framer-9idpE .framer-1b5sx5i > :last-child, .framer-9idpE .framer-1vxmgmt > :last-child, .framer-9idpE .framer-1xpg1wb > :last-child { margin-right: 0px; } .framer-9idpE .framer-1s8mtlh > *, .framer-9idpE .framer-1kqin73 > *, .framer-9idpE .framer-ykgfkx > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-9idpE .framer-2ursbh > *, .framer-9idpE .framer-urvmgj > *, .framer-9idpE .framer-59xq51 > *, .framer-9idpE .framer-n3qi1u > *, .framer-9idpE .framer-u0q07x > *, .framer-9idpE .framer-v0h06u > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-9idpE .framer-1jwttkm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-9idpE .framer-4v7fz1 > *, .framer-9idpE .framer-4v7fz1 > :first-child, .framer-9idpE .framer-4v7fz1 > :last-child { margin: 0px; } .framer-9idpE .framer-154xrcf > *, .framer-9idpE .framer-ysfp1u > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-9idpE .framer-c9nv8k > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-9idpE .framer-1xpg1wb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-9idpE .framer-15b4gc1 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}\",\"@media (max-width: 809px) { .framer-9idpE.framer-72rtr7 { width: 390px; } .framer-9idpE .framer-1y6mmmt-container { order: 22; } .framer-9idpE .framer-r0f08f-container { height: auto; left: 50%; order: 0; transform: translateX(-50%); } .framer-9idpE .framer-1axi3jd { aspect-ratio: unset; height: 811px; left: calc(50.00000000000002% - 100% / 2); order: 1; top: 0px; transform: unset; width: 100%; } .framer-9idpE .framer-rbunqr { order: 2; padding: 66px 16px 8px 16px; } .framer-9idpE .framer-l0ep2q { max-width: 342px; order: 1; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-9idpE .framer-29yi7w, .framer-9idpE .framer-6621fo { order: 0; } .framer-9idpE .framer-yqv3ul { gap: 64px; height: 666px; order: 3; padding: 64px 24px 104px 24px; width: 100%; } .framer-9idpE .framer-r8a7pz { gap: 32px; justify-content: center; padding: 0px 0px 56px 0px; } .framer-9idpE .framer-1agqjco, .framer-9idpE .framer-1qpa013 { justify-content: center; } .framer-9idpE .framer-8l6349, .framer-9idpE .framer-fdrrxt, .framer-9idpE .framer-mnbtbz { padding: 0px; } .framer-9idpE .framer-16grxrm, .framer-9idpE .framer-1m602b5, .framer-9idpE .framer-1e0wdco { flex: none; width: 100%; } .framer-9idpE .framer-1ulvqh8-container { max-width: 288px; width: 100%; } .framer-9idpE .framer-uwhs45 { gap: 64px; height: min-content; order: 4; padding: 16px 24px 56px 24px; } .framer-9idpE .framer-fobf7c { padding: 0px 0px 64px 0px; } .framer-9idpE .framer-1hfitxm, .framer-9idpE .framer-oyksfa { max-width: 633px; } .framer-9idpE .framer-1akkgtd { align-content: center; align-items: center; flex-direction: column; gap: 52px; max-width: 430px; padding: 0px 8px 0px 8px; } .framer-9idpE .framer-cqrqza, .framer-9idpE .framer-1b5sx5i, .framer-9idpE .framer-1vxmgmt { flex: none; gap: 24px; justify-content: center; max-width: 500px; width: 100%; } .framer-9idpE .framer-1s8mtlh, .framer-9idpE .framer-1kqin73, .framer-9idpE .framer-ykgfkx { align-content: flex-start; align-items: flex-start; gap: 8px; justify-content: flex-start; max-width: 480px; } .framer-9idpE .framer-1olj2pj-container { order: 5; } .framer-9idpE .framer-2ursbh { gap: 24px; height: 527px; justify-content: flex-start; max-width: 100%; order: 8; padding: 56px 24px 0px 24px; } .framer-9idpE .framer-1ss0jnj { max-width: 1040px; } .framer-9idpE .framer-e68wvj, .framer-9idpE .framer-2wycjf, .framer-9idpE .framer-21fy3i { max-width: 633px; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-9idpE .framer-1jwttkm { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 114px); justify-content: center; padding: 0px; width: 28%; } .framer-9idpE .framer-1k0cctq { bottom: unset; height: 325px; left: unset; max-width: 390px; position: relative; right: unset; top: unset; width: 901%; } .framer-9idpE .framer-qudldj { height: var(--framer-aspect-ratio-supported, 207px); left: 50%; right: unset; transform: translate(-50%, -50%); width: 364px; } .framer-9idpE .framer-1d7rggd { height: 187px; left: calc(49.83351831298559% - 298.9665809768638px / 2); top: calc(49.610894941634264% - 186.90744920993228px / 2); width: 299px; } .framer-9idpE .framer-1i0j20u-container { height: 180px; right: unset; width: 300px; } .framer-9idpE .framer-6txlcd { max-width: 1040px; order: 6; } .framer-9idpE .framer-90ba9 { gap: 20px; order: 7; padding: 60px 20px 60px 20px; } .framer-9idpE .framer-tqk12t { gap: 60px; } .framer-9idpE .framer-2hdkrq, .framer-9idpE .framer-18nt3zh, .framer-9idpE .framer-uqhrk7 { flex-direction: column; } .framer-9idpE .framer-7x5vy0, .framer-9idpE .framer-bxb4ty { flex: none; height: var(--framer-aspect-ratio-supported, 167px); width: 100%; } .framer-9idpE .framer-kajgss, .framer-9idpE .framer-af94oe, .framer-9idpE .framer-xlq3p9, .framer-9idpE .framer-qt7p9x, .framer-9idpE .framer-1487vvi-container, .framer-9idpE .framer-inuh4x-container, .framer-9idpE .framer-x74c9i-container, .framer-9idpE .framer-1nkciw1-container { width: 100%; } .framer-9idpE .framer-14dj3m7, .framer-9idpE .framer-1wr68rc { flex: none; order: 1; width: 100%; } .framer-9idpE .framer-lmxyly { flex: none; height: var(--framer-aspect-ratio-supported, 167px); order: 0; width: 100%; } .framer-9idpE .framer-1dj8syq { order: 11; } .framer-9idpE .framer-g421qb { padding: 56px 16px 56px 16px; } .framer-9idpE .framer-4v7fz1 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; max-width: 430px; } .framer-9idpE .framer-154xrcf { align-self: unset; height: 551px; } .framer-9idpE .framer-1rx3y5s { height: auto; } .framer-9idpE .framer-1922tfp { aspect-ratio: 2.9157088122605366 / 1; bottom: -4px; height: var(--framer-aspect-ratio-supported, 69px); left: -50px; min-height: unset; transform: unset; width: 114%; } .framer-9idpE .framer-1whnbiz { height: var(--framer-aspect-ratio-supported, 82px); } .framer-9idpE .framer-1eomi3h { height: var(--framer-aspect-ratio-supported, 230px); } .framer-9idpE .framer-1qx9uhm, .framer-9idpE .framer-s0fgiw, .framer-9idpE .framer-qyjupg, .framer-9idpE .framer-1ry08af { align-self: unset; } .framer-9idpE .framer-ysfp1u, .framer-9idpE .framer-1pod3iw, .framer-9idpE .framer-1i99lz6 { width: 302px; } .framer-9idpE .framer-9jjmgw { height: var(--framer-aspect-ratio-supported, 230px); left: 40%; top: 116%; } .framer-9idpE .framer-th8dr { height: var(--framer-aspect-ratio-supported, 131px); } .framer-9idpE .framer-nj2kk3 { align-self: unset; width: 100%; } .framer-9idpE .framer-mvwzpy { height: var(--framer-aspect-ratio-supported, 92px); } .framer-9idpE .framer-1aht0zu { height: var(--framer-aspect-ratio-supported, 112px); } .framer-9idpE .framer-7xawj2 { align-self: unset; gap: 40px; height: min-content; } .framer-9idpE .framer-17fll7u { left: unset; right: -150px; } .framer-9idpE .framer-1q7grj7 { gap: 8px; } .framer-9idpE .framer-7xmswq { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-9idpE .framer-1ccnzf1 { order: 1; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-9idpE .framer-11myfg4 { order: 0; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-9idpE .framer-9qf1g { max-width: 1040px; order: 12; } .framer-9idpE .framer-1q5beci-container { order: 14; width: 390px; } .framer-9idpE .framer-ogqhsa { gap: 56px; order: 15; padding: 56px 0px 56px 0px; } .framer-9idpE .framer-1yg3cjw { height: var(--framer-aspect-ratio-supported, 210px); left: 78%; max-width: 810px; order: 0; overflow: hidden; top: 51%; width: 263%; } .framer-9idpE .framer-urvmgj { gap: 64px; max-width: 100%; order: 1; overflow: hidden; padding: 0px 24px 0px 24px; } .framer-9idpE .framer-1xybeqd { align-content: center; align-items: center; justify-content: center; padding: 0px; } .framer-9idpE .framer-1f2nm8q, .framer-9idpE .framer-xayy83, .framer-9idpE .framer-x0r6c5 { flex: none; padding: 24px; width: min-content; } .framer-9idpE .framer-1mi480p, .framer-9idpE .framer-iveyg4 { aspect-ratio: unset; height: 240px; width: 294px; } .framer-9idpE .framer-1ivup0c, .framer-9idpE .framer-znymof { width: 294px; } .framer-9idpE .framer-s273rv { aspect-ratio: unset; height: 240px; width: 295px; } .framer-9idpE .framer-t1am8c { width: 292px; } .framer-9idpE .framer-n3qi1u { flex-direction: column; order: 2; padding: 0px 24px 0px 24px; } .framer-9idpE .framer-12hbreu { align-content: center; align-items: center; width: 100%; } .framer-9idpE .framer-45pobu, .framer-9idpE .framer-79ovl0, .framer-9idpE .framer-14nmp5h, .framer-9idpE .framer-1mtesnn, .framer-9idpE .framer-1hl2nyg { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-9idpE .framer-1xinypz { align-self: unset; justify-content: center; width: 100%; } .framer-9idpE .framer-5q80ev { flex: none; max-width: 600px; width: 100%; } .framer-9idpE .framer-c9nv8k { align-content: center; align-items: center; gap: 4px; justify-content: center; max-width: 682px; padding: 0px 24px 0px 24px; } .framer-9idpE .framer-1xpg1wb { align-content: center; align-items: center; align-self: unset; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 205px; justify-content: center; order: 0; padding: 0px; width: 100%; } .framer-9idpE .framer-140cxp8 { height: var(--framer-aspect-ratio-supported, 220px); left: unset; position: relative; top: unset; transform: unset; } .framer-9idpE .framer-wi7nbb { height: var(--framer-aspect-ratio-supported, 204px); max-width: 187px; } .framer-9idpE .framer-s2vo37 { height: var(--framer-aspect-ratio-supported, 180px); max-width: 187px; } .framer-9idpE .framer-u0q07x { height: 1580px; order: 16; padding: 56px 24px 56px 24px; } .framer-9idpE .framer-1qjyold { align-content: center; align-items: center; flex-direction: column; flex-wrap: nowrap; max-width: 600px; } .framer-9idpE .framer-v0h06u { align-content: center; align-items: center; flex-direction: column; gap: 80px; height: 1338px; justify-content: flex-start; order: 18; padding: 56px 24px 56px 24px; } .framer-9idpE .framer-15b4gc1 { align-content: center; align-items: center; gap: 40px; width: 100%; } .framer-9idpE .framer-1g6icvf { max-width: 633px; width: 100%; } .framer-9idpE .framer-7urww7 { align-content: center; align-items: center; gap: 24px; width: 100%; } .framer-9idpE .framer-18o6ulf, .framer-9idpE .framer-1hry4x4, .framer-9idpE .framer-1wfy31 { align-content: center; align-items: center; flex-direction: column; } .framer-9idpE .framer-cf05jh, .framer-9idpE .framer-1w989wh, .framer-9idpE .framer-pz0tbn { align-content: center; align-items: center; } .framer-9idpE .framer-1xo4tkk { order: 1; } .framer-9idpE .framer-1jlikmt { order: 20; } .framer-9idpE .framer-gpigoi { flex: 1 0 0px; justify-content: flex-start; padding: 56px 24px 112px 24px; width: 1px; } .framer-9idpE .framer-jq62sv { max-width: 676px; } .framer-9idpE .framer-yz9waq { flex-direction: column; height: 391px; order: 21; padding: 29px 64px 64px 64px; } .framer-9idpE .framer-1o3nb98 { aspect-ratio: unset; bottom: 0px; height: 482px; left: calc(50.00000000000002% - min(100%, 100%) / 2); max-width: 100%; order: 19; transform: unset; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-9idpE .framer-yqv3ul, .framer-9idpE .framer-r8a7pz, .framer-9idpE .framer-uwhs45, .framer-9idpE .framer-1akkgtd, .framer-9idpE .framer-cqrqza, .framer-9idpE .framer-1s8mtlh, .framer-9idpE .framer-1b5sx5i, .framer-9idpE .framer-1kqin73, .framer-9idpE .framer-1vxmgmt, .framer-9idpE .framer-ykgfkx, .framer-9idpE .framer-2ursbh, .framer-9idpE .framer-1jwttkm, .framer-9idpE .framer-90ba9, .framer-9idpE .framer-tqk12t, .framer-9idpE .framer-2hdkrq, .framer-9idpE .framer-18nt3zh, .framer-9idpE .framer-uqhrk7, .framer-9idpE .framer-4v7fz1, .framer-9idpE .framer-7xawj2, .framer-9idpE .framer-1q7grj7, .framer-9idpE .framer-7xmswq, .framer-9idpE .framer-ogqhsa, .framer-9idpE .framer-urvmgj, .framer-9idpE .framer-n3qi1u, .framer-9idpE .framer-c9nv8k, .framer-9idpE .framer-1xpg1wb, .framer-9idpE .framer-1qjyold, .framer-9idpE .framer-v0h06u, .framer-9idpE .framer-15b4gc1, .framer-9idpE .framer-7urww7, .framer-9idpE .framer-18o6ulf, .framer-9idpE .framer-1hry4x4, .framer-9idpE .framer-1wfy31, .framer-9idpE .framer-yz9waq { gap: 0px; } .framer-9idpE .framer-yqv3ul > *, .framer-9idpE .framer-uwhs45 > *, .framer-9idpE .framer-urvmgj > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-9idpE .framer-yqv3ul > :first-child, .framer-9idpE .framer-r8a7pz > :first-child, .framer-9idpE .framer-uwhs45 > :first-child, .framer-9idpE .framer-1akkgtd > :first-child, .framer-9idpE .framer-cqrqza > :first-child, .framer-9idpE .framer-1s8mtlh > :first-child, .framer-9idpE .framer-1b5sx5i > :first-child, .framer-9idpE .framer-1kqin73 > :first-child, .framer-9idpE .framer-1vxmgmt > :first-child, .framer-9idpE .framer-ykgfkx > :first-child, .framer-9idpE .framer-2ursbh > :first-child, .framer-9idpE .framer-1jwttkm > :first-child, .framer-9idpE .framer-tqk12t > :first-child, .framer-9idpE .framer-2hdkrq > :first-child, .framer-9idpE .framer-18nt3zh > :first-child, .framer-9idpE .framer-uqhrk7 > :first-child, .framer-9idpE .framer-4v7fz1 > :first-child, .framer-9idpE .framer-7xawj2 > :first-child, .framer-9idpE .framer-1q7grj7 > :first-child, .framer-9idpE .framer-7xmswq > :first-child, .framer-9idpE .framer-ogqhsa > :first-child, .framer-9idpE .framer-urvmgj > :first-child, .framer-9idpE .framer-n3qi1u > :first-child, .framer-9idpE .framer-c9nv8k > :first-child, .framer-9idpE .framer-1qjyold > :first-child, .framer-9idpE .framer-v0h06u > :first-child, .framer-9idpE .framer-15b4gc1 > :first-child, .framer-9idpE .framer-7urww7 > :first-child, .framer-9idpE .framer-18o6ulf > :first-child, .framer-9idpE .framer-1hry4x4 > :first-child, .framer-9idpE .framer-1wfy31 > :first-child { margin-top: 0px; } .framer-9idpE .framer-yqv3ul > :last-child, .framer-9idpE .framer-r8a7pz > :last-child, .framer-9idpE .framer-uwhs45 > :last-child, .framer-9idpE .framer-1akkgtd > :last-child, .framer-9idpE .framer-cqrqza > :last-child, .framer-9idpE .framer-1s8mtlh > :last-child, .framer-9idpE .framer-1b5sx5i > :last-child, .framer-9idpE .framer-1kqin73 > :last-child, .framer-9idpE .framer-1vxmgmt > :last-child, .framer-9idpE .framer-ykgfkx > :last-child, .framer-9idpE .framer-2ursbh > :last-child, .framer-9idpE .framer-1jwttkm > :last-child, .framer-9idpE .framer-tqk12t > :last-child, .framer-9idpE .framer-2hdkrq > :last-child, .framer-9idpE .framer-18nt3zh > :last-child, .framer-9idpE .framer-uqhrk7 > :last-child, .framer-9idpE .framer-4v7fz1 > :last-child, .framer-9idpE .framer-7xawj2 > :last-child, .framer-9idpE .framer-1q7grj7 > :last-child, .framer-9idpE .framer-7xmswq > :last-child, .framer-9idpE .framer-ogqhsa > :last-child, .framer-9idpE .framer-urvmgj > :last-child, .framer-9idpE .framer-n3qi1u > :last-child, .framer-9idpE .framer-c9nv8k > :last-child, .framer-9idpE .framer-1qjyold > :last-child, .framer-9idpE .framer-v0h06u > :last-child, .framer-9idpE .framer-15b4gc1 > :last-child, .framer-9idpE .framer-7urww7 > :last-child, .framer-9idpE .framer-18o6ulf > :last-child, .framer-9idpE .framer-1hry4x4 > :last-child, .framer-9idpE .framer-1wfy31 > :last-child { margin-bottom: 0px; } .framer-9idpE .framer-r8a7pz > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-9idpE .framer-1akkgtd > * { margin: 0px; margin-bottom: calc(52px / 2); margin-top: calc(52px / 2); } .framer-9idpE .framer-cqrqza > *, .framer-9idpE .framer-1b5sx5i > *, .framer-9idpE .framer-1vxmgmt > *, .framer-9idpE .framer-2ursbh > *, .framer-9idpE .framer-4v7fz1 > *, .framer-9idpE .framer-7urww7 > *, .framer-9idpE .framer-18o6ulf > *, .framer-9idpE .framer-1hry4x4 > *, .framer-9idpE .framer-1wfy31 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-9idpE .framer-1s8mtlh > *, .framer-9idpE .framer-1kqin73 > *, .framer-9idpE .framer-ykgfkx > *, .framer-9idpE .framer-1q7grj7 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-9idpE .framer-1jwttkm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-9idpE .framer-90ba9 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-9idpE .framer-90ba9 > :first-child, .framer-9idpE .framer-1xpg1wb > :first-child { margin-left: 0px; } .framer-9idpE .framer-90ba9 > :last-child, .framer-9idpE .framer-1xpg1wb > :last-child { margin-right: 0px; } .framer-9idpE .framer-tqk12t > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-9idpE .framer-2hdkrq > *, .framer-9idpE .framer-18nt3zh > *, .framer-9idpE .framer-uqhrk7 > *, .framer-9idpE .framer-v0h06u > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-9idpE .framer-7xawj2 > *, .framer-9idpE .framer-15b4gc1 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-9idpE .framer-7xmswq > *, .framer-9idpE .framer-n3qi1u > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-9idpE .framer-ogqhsa > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-9idpE .framer-c9nv8k > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-9idpE .framer-1xpg1wb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-9idpE .framer-1qjyold > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-9idpE .framer-yz9waq > *, .framer-9idpE .framer-yz9waq > :first-child, .framer-9idpE .framer-yz9waq > :last-child { margin: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12743.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KokRw0B3q\":{\"layout\":[\"fixed\",\"auto\"]},\"hglYA8Z8c\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"jSc6awD1d\":{\"pattern\":\":jSc6awD1d\",\"name\":\"menu-up\"},\"WT40jMIpc\":{\"pattern\":\":WT40jMIpc\",\"name\":\"float-off\"},\"I2EymfSiM\":{\"pattern\":\":I2EymfSiM\",\"name\":\"floating-nav\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-9idpE\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:12743.5,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v7/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_eYR15bwkEU4HTy.woff2\",weight:\"700\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v7/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5bwkEU4HTy.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTcPtxhiJ-Ek-7MeA.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v7/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5bwkEU4HTy.woff2\",weight:\"500\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v7/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15bwkEU4HTy.woff2\",weight:\"600\"}]},...SmoothScrollFonts,...NavigationFonts,...CTAFonts,...QuoteSectionFonts,...YouTubeFonts,...BentoChipFonts,...PricingChartFonts,...SocialInBioXFonts,...SocialInBioLinkedInFonts,...TestimonialFonts,...OpenFonts,...LeftFooterMenuFonts,...SocialLinkedinFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KokRw0B3q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hglYA8Z8c\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"12743.5\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"jSc6awD1d\\\":{\\\"pattern\\\":\\\":jSc6awD1d\\\",\\\"name\\\":\\\"menu-up\\\"},\\\"WT40jMIpc\\\":{\\\"pattern\\\":\\\":WT40jMIpc\\\",\\\"name\\\":\\\"float-off\\\"},\\\"I2EymfSiM\\\":{\\\"pattern\\\":\\\":I2EymfSiM\\\",\\\"name\\\":\\\"floating-nav\\\"}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "m8BAAA,SAASA,GAAEC,EAAEC,EAAEC,EAAE,CAAC,OAAO,KAAK,IAAIF,EAAE,KAAK,IAAIC,EAAEC,CAAC,CAAC,CAAC,CAAC,IAAMC,GAAN,KAAa,CAAC,QAAQH,EAAE,CAAC,GAAG,CAAC,KAAK,UAAU,OAAO,IAAIC,EAAE,GAAG,GAAG,KAAK,KAAK,KAAK,OAAO,EAAE,KAAK,MAAMG,EAAE,KAAK,GAAGC,EAAE,GAAG,KAAK,KAAKC,EAAEN,EAAE,SAASA,EAAEC,EAAEC,EAAE,CAAC,OAAO,EAAEA,GAAGF,EAAEE,EAAED,CAAC,EAAE,EAAEG,EAAE,EAAE,KAAK,IAAI,CAACC,EAAEC,CAAC,CAAC,GAAG,KAAK,MAAM,KAAK,KAAK,IAAI,KAAK,KAAK,KAAK,MAAM,KAAK,GAAGL,EAAE,QAAQ,CAAC,KAAK,aAAaD,EAAE,IAAME,EAAEH,GAAE,EAAE,KAAK,YAAY,KAAK,SAAS,CAAC,EAAEE,EAAEC,GAAG,EAAE,IAAME,EAAEH,EAAE,EAAE,KAAK,OAAOC,CAAC,EAAE,KAAK,MAAM,KAAK,MAAM,KAAK,GAAG,KAAK,MAAME,EAAE,IAAI,EAAEA,EAAEC,EAAEC,EAAE,KAAK,WAAW,KAAK,MAAML,CAAC,EAAEA,GAAG,KAAK,KAAK,CAAC,CAAC,MAAM,CAAC,KAAK,UAAU,EAAE,CAAC,OAAOD,EAAEC,EAAE,CAAC,KAAK,EAAE,GAAG,SAASG,EAAE,EAAE,OAAOC,EAAGL,GAAGA,EAAG,QAAQM,EAAE,SAASC,CAAC,EAAE,CAAC,KAAK,KAAK,KAAK,MAAMP,EAAE,KAAK,GAAGC,EAAE,KAAK,KAAK,EAAE,KAAK,SAASG,EAAE,KAAK,OAAOC,EAAE,KAAK,YAAY,EAAE,KAAK,UAAU,GAAGC,IAAI,EAAE,KAAK,SAASC,CAAC,CAAC,EAAOC,GAAN,KAAgB,CAAC,YAAY,CAAC,QAAQR,EAAE,QAAQC,EAAE,WAAW,EAAE,GAAG,SAASG,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,KAAK,QAAQJ,EAAE,KAAK,QAAQC,EAAE,IAAI,KAAK,gBAAgB,SAASD,EAAEC,EAAE,CAAC,IAAIC,EAAE,OAAO,UAAU,CAAC,IAAIE,EAAE,UAAUC,EAAE,KAAK,aAAaH,CAAC,EAAEA,EAAE,WAAY,UAAU,CAACF,EAAE,MAAMK,EAAED,CAAC,CAAC,EAAGH,CAAC,CAAC,CAAC,EAAE,KAAK,OAAOG,CAAC,EAAE,KAAK,UAAUK,EAAOA,EAAO,iBAAiB,SAAS,KAAK,gBAAgB,EAAE,GAAG,KAAK,sBAAsB,IAAI,eAAe,KAAK,eAAe,EAAE,KAAK,sBAAsB,QAAQ,KAAK,OAAO,GAAG,KAAK,sBAAsB,IAAI,eAAe,KAAK,eAAe,EAAE,KAAK,sBAAsB,QAAQ,KAAK,OAAO,GAAG,KAAK,OAAO,CAAC,CAAC,SAAS,CAAC,KAAK,uBAAuB,WAAW,EAAE,KAAK,uBAAuB,WAAW,EAAEA,EAAO,oBAAoB,SAAS,KAAK,gBAAgB,EAAE,CAAC,CAAC,OAAO,IAAI,CAAC,KAAK,gBAAgB,EAAE,KAAK,gBAAgB,CAAC,EAAE,gBAAgB,IAAI,CAAC,KAAK,UAAUA,GAAQ,KAAK,MAAMA,EAAO,WAAW,KAAK,OAAOA,EAAO,cAAc,KAAK,MAAM,KAAK,QAAQ,YAAY,KAAK,OAAO,KAAK,QAAQ,aAAa,EAAE,gBAAgB,IAAI,CAAC,KAAK,UAAUA,GAAQ,KAAK,aAAa,KAAK,QAAQ,aAAa,KAAK,YAAY,KAAK,QAAQ,cAAc,KAAK,aAAa,KAAK,QAAQ,aAAa,KAAK,YAAY,KAAK,QAAQ,YAAY,EAAE,IAAI,OAAO,CAAC,MAAM,CAAC,EAAE,KAAK,YAAY,KAAK,MAAM,EAAE,KAAK,aAAa,KAAK,MAAM,CAAC,CAAC,EAAOC,GAAN,KAAa,CAAC,aAAa,CAAC,KAAK,OAAO,CAAC,CAAC,CAAC,KAAKV,KAAKC,EAAE,CAAC,IAAI,EAAE,KAAK,OAAOD,CAAC,GAAG,CAAC,EAAE,QAAQA,EAAE,EAAEI,EAAE,EAAE,OAAOJ,EAAEI,EAAEJ,IAAI,EAAEA,CAAC,EAAE,GAAGC,CAAC,CAAC,CAAC,GAAGD,EAAEC,EAAE,CAAC,OAAO,KAAK,OAAOD,CAAC,GAAG,KAAKC,CAAC,IAAI,KAAK,OAAOD,CAAC,EAAE,CAACC,CAAC,GAAG,IAAI,CAAC,KAAK,OAAOD,CAAC,EAAE,KAAK,OAAOA,CAAC,GAAG,OAAQA,GAAGC,IAAID,CAAE,CAAC,CAAC,CAAC,IAAIA,EAAEC,EAAE,CAAC,KAAK,OAAOD,CAAC,EAAE,KAAK,OAAOA,CAAC,GAAG,OAAQA,GAAGC,IAAID,CAAE,CAAC,CAAC,SAAS,CAAC,KAAK,OAAO,CAAC,CAAC,CAAC,EAAOA,GAAE,IAAI,EAAQW,GAAN,KAAmB,CAAC,YAAYX,EAAE,CAAC,gBAAgBC,EAAE,EAAE,gBAAgB,EAAE,CAAC,EAAE,CAAC,KAAK,QAAQD,EAAE,KAAK,gBAAgBC,EAAE,KAAK,gBAAgB,EAAE,KAAK,WAAW,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,QAAQ,IAAIS,GAAQD,EAAO,iBAAiB,SAAS,KAAK,eAAe,EAAE,EAAE,KAAK,eAAe,EAAE,KAAK,QAAQ,iBAAiB,QAAQ,KAAK,QAAQ,CAAC,QAAQ,EAAE,CAAC,EAAE,KAAK,QAAQ,iBAAiB,aAAa,KAAK,aAAa,CAAC,QAAQ,EAAE,CAAC,EAAE,KAAK,QAAQ,iBAAiB,YAAY,KAAK,YAAY,CAAC,QAAQ,EAAE,CAAC,EAAE,KAAK,QAAQ,iBAAiB,WAAW,KAAK,WAAW,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,GAAGT,EAAEC,EAAE,CAAC,OAAO,KAAK,QAAQ,GAAGD,EAAEC,CAAC,CAAC,CAAC,SAAS,CAAC,KAAK,QAAQ,QAAQ,EAAEQ,EAAO,oBAAoB,SAAS,KAAK,eAAe,EAAE,EAAE,KAAK,QAAQ,oBAAoB,QAAQ,KAAK,QAAQ,CAAC,QAAQ,EAAE,CAAC,EAAE,KAAK,QAAQ,oBAAoB,aAAa,KAAK,aAAa,CAAC,QAAQ,EAAE,CAAC,EAAE,KAAK,QAAQ,oBAAoB,YAAY,KAAK,YAAY,CAAC,QAAQ,EAAE,CAAC,EAAE,KAAK,QAAQ,oBAAoB,WAAW,KAAK,WAAW,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,aAAaT,GAAG,CAAC,GAAK,CAAC,QAAQC,EAAE,QAAQ,CAAC,EAAED,EAAE,cAAcA,EAAE,cAAc,CAAC,EAAEA,EAAE,KAAK,WAAW,EAAEC,EAAE,KAAK,WAAW,EAAE,EAAE,KAAK,UAAU,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,QAAQ,KAAK,SAAS,CAAC,OAAO,EAAE,OAAO,EAAE,MAAMD,CAAC,CAAC,CAAC,EAAE,YAAYA,GAAG,CAAC,GAAK,CAAC,QAAQC,EAAE,QAAQ,CAAC,EAAED,EAAE,cAAcA,EAAE,cAAc,CAAC,EAAEA,EAAEI,EAAE,EAAEH,EAAE,KAAK,WAAW,GAAG,KAAK,gBAAgBI,EAAE,EAAE,EAAE,KAAK,WAAW,GAAG,KAAK,gBAAgB,KAAK,WAAW,EAAEJ,EAAE,KAAK,WAAW,EAAE,EAAE,KAAK,UAAU,CAAC,EAAEG,EAAE,EAAEC,CAAC,EAAE,KAAK,QAAQ,KAAK,SAAS,CAAC,OAAOD,EAAE,OAAOC,EAAE,MAAML,CAAC,CAAC,CAAC,EAAE,WAAWA,GAAG,CAAC,KAAK,QAAQ,KAAK,SAAS,CAAC,OAAO,KAAK,UAAU,EAAE,OAAO,KAAK,UAAU,EAAE,MAAMA,CAAC,CAAC,CAAC,EAAE,QAAQC,GAAG,CAAC,GAAG,CAAC,OAAOC,EAAE,OAAOE,EAAE,UAAUC,CAAC,EAAEJ,EAAEC,GAAOG,IAAJ,EAAML,GAAMK,IAAJ,EAAM,KAAK,YAAY,EAAED,GAAOC,IAAJ,EAAML,GAAMK,IAAJ,EAAM,KAAK,aAAa,EAAEH,GAAG,KAAK,gBAAgBE,GAAG,KAAK,gBAAgB,KAAK,QAAQ,KAAK,SAAS,CAAC,OAAOF,EAAE,OAAOE,EAAE,MAAMH,CAAC,CAAC,CAAC,EAAE,eAAe,IAAI,CAAC,KAAK,YAAYQ,EAAO,WAAW,KAAK,aAAaA,EAAO,WAAW,CAAC,EAAOG,GAAN,KAAW,CAAC,YAAY,CAAC,QAAQZ,EAAES,EAAO,QAAQR,EAAE,SAAS,gBAAgB,kBAAkB,EAAED,EAAE,aAAaI,EAAE,EAAE,YAAYC,EAAE,GAAG,UAAUC,EAAE,GAAG,cAAcC,EAAE,KAAK,uBAAuBM,EAAE,GAAG,SAASC,EAAE,OAAOC,EAAGf,GAAG,KAAK,IAAI,EAAE,MAAM,KAAK,IAAI,EAAE,IAAIA,CAAC,CAAC,EAAG,KAAKgB,EAAE,CAACF,GAAG,GAAG,SAASG,EAAE,GAAG,YAAYC,EAAE,WAAW,mBAAmBC,EAAE,WAAW,gBAAgBC,EAAE,EAAE,gBAAgBC,EAAE,EAAE,WAAWC,EAAE,GAAG,gCAAgCC,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,KAAK,WAAW,GAAG,KAAK,cAAc,GAAG,KAAK,YAAY,GAAG,KAAK,WAAW,GAAG,KAAK,gBAAgB,CAAC,CAAC,OAAOvB,EAAE,OAAOC,EAAE,MAAMC,CAAC,IAAI,CAAC,GAAGA,EAAE,QAAQ,OAAO,IAAME,EAAEF,EAAE,KAAK,SAAS,OAAO,EAAEG,EAAEH,EAAE,KAAK,SAAS,OAAO,EAAE,GAAG,KAAK,QAAQ,WAAWE,GAAkBF,EAAE,OAAjB,cAAuB,CAAC,KAAK,WAAW,CAAC,KAAK,SAAS,OAAO,KAAK,KAAK,MAAM,EAAE,IAAMI,GAAMN,IAAJ,GAAWC,IAAJ,EAAMM,GAAe,KAAK,QAAQ,qBAA1B,YAAkDN,IAAJ,GAAsB,KAAK,QAAQ,qBAA5B,cAAoDD,IAAJ,EAAM,GAAGM,IAAGC,GAAE,OAAO,IAAIM,GAAEX,EAAE,aAAa,EAAE,GAAGW,GAAEA,GAAE,MAAM,EAAEA,GAAE,QAAQ,KAAK,WAAW,CAAC,EAAEA,GAAE,KAAMb,IAAG,CAAC,IAAIC,GAAEC,GAAEI,GAAEC,GAAEM,GAAE,QAAeZ,GAAED,GAAE,gBAAZ,MAAoCC,KAAT,OAAW,OAAOA,GAAE,KAAKD,GAAE,oBAAoB,IAAII,KAAYF,GAAEF,GAAE,gBAAZ,MAAoCE,KAAT,OAAW,OAAOA,GAAE,KAAKF,GAAE,0BAA0B,IAAIK,KAAYC,GAAEN,GAAE,gBAAZ,MAAoCM,KAAT,OAAW,OAAOA,GAAE,KAAKN,GAAE,0BAA0B,MAAaO,GAAEP,GAAE,aAAZ,MAAiCO,KAAT,OAAW,OAAOA,GAAE,SAAS,OAAO,IAAI,EAAE,GAAQM,GAAEb,GAAE,aAAZ,MAAiCa,KAAT,SAAkBA,GAAE,SAAS,eAAe,EAAE,CAAE,EAAE,OAAO,GAAG,KAAK,WAAW,KAAK,SAAS,OAAO,KAAKX,EAAE,eAAe,EAAE,GAAG,KAAK,SAAS,KAAK,QAAQ,WAAWE,GAAG,KAAK,QAAQ,aAAaC,EAAE,CAAC,KAAK,SAAS,OAAO,KAAK,YAAY,GAAG,KAAK,KAAK,QAAQ,KAAK,EAAEH,EAAE,eAAe,EAAE,IAAIY,EAAEb,EAAW,KAAK,QAAQ,qBAAtB,OAAyCa,EAAE,KAAK,IAAIb,CAAC,EAAE,KAAK,IAAID,CAAC,EAAEC,EAAED,EAAiB,KAAK,QAAQ,qBAA5B,eAAiDc,EAAEd,GAAG,IAAMe,GAAEX,GAAG,KAAK,QAAQ,UAAUY,GAAEZ,GAAgBF,EAAE,OAAf,YAAqB,KAAK,IAAIY,CAAC,EAAE,EAAEE,KAAIF,EAAE,KAAK,SAAS,KAAK,QAAQ,wBAAwB,KAAK,SAAS,KAAK,aAAaA,EAAE,OAAO,OAAO,CAAC,aAAa,EAAE,EAAEC,GAAE,CAAC,KAAKC,GAAE,KAAK,QAAQ,cAAc,CAAC,EAAE,CAAC,KAAK,KAAK,QAAQ,KAAK,SAAS,KAAK,QAAQ,SAAS,OAAO,KAAK,QAAQ,MAAM,CAAC,CAAC,CAAC,EAAE,KAAK,eAAe,IAAI,CAAC,GAAG,CAAC,KAAK,0BAA0B,CAAC,KAAK,YAAY,CAAC,IAAMhB,EAAE,KAAK,eAAe,KAAK,eAAe,KAAK,aAAa,KAAK,aAAa,KAAK,SAAS,EAAE,KAAK,UAAU,KAAK,KAAK,KAAK,eAAeA,CAAC,EAAE,KAAK,KAAK,EAAE,EAAES,EAAO,aAAa,SAAST,IAAI,SAAS,iBAAiBA,IAAI,SAAS,OAAOA,EAAES,GAAQ,KAAK,QAAQ,CAAC,QAAQT,EAAE,QAAQC,EAAE,kBAAkB,EAAE,aAAaG,EAAE,YAAYC,EAAE,UAAUC,EAAE,cAAcC,EAAE,uBAAuBM,EAAE,SAASC,EAAE,OAAOC,EAAE,KAAKC,EAAE,SAASC,EAAE,mBAAmBE,EAAE,YAAYD,EAAE,gBAAgBE,EAAE,gBAAgBC,EAAE,WAAWC,EAAE,gCAAgCC,CAAC,EAAE,KAAK,QAAQ,IAAIpB,GAAQ,KAAK,QAAQ,IAAIO,GAAQ,KAAK,WAAW,IAAIF,GAAW,CAAC,QAAQR,EAAE,QAAQC,EAAE,WAAWqB,CAAC,CAAC,EAAE,KAAK,gBAAgB,QAAQ,EAAE,EAAE,KAAK,SAAS,EAAE,KAAK,SAAS,GAAG,KAAK,UAAU,GAAG,KAAK,SAAShB,GAAGD,EAAE,KAAK,YAAY,GAAG,KAAK,aAAa,KAAK,eAAe,KAAK,aAAa,KAAK,QAAQ,QAAQ,iBAAiB,SAAS,KAAK,eAAe,EAAE,EAAE,KAAK,cAAc,IAAIM,GAAcP,EAAE,CAAC,gBAAgBgB,EAAE,gBAAgBC,CAAC,CAAC,EAAE,KAAK,cAAc,GAAG,SAAS,KAAK,eAAe,CAAC,CAAC,SAAS,CAAC,KAAK,QAAQ,QAAQ,EAAE,KAAK,QAAQ,QAAQ,oBAAoB,SAAS,KAAK,eAAe,EAAE,EAAE,KAAK,cAAc,QAAQ,EAAE,KAAK,WAAW,QAAQ,EAAE,KAAK,gBAAgB,QAAQ,EAAE,EAAE,KAAK,gBAAgB,eAAe,EAAE,EAAE,KAAK,gBAAgB,kBAAkB,EAAE,EAAE,KAAK,gBAAgB,gBAAgB,EAAE,EAAE,KAAK,gBAAgB,eAAe,EAAE,CAAC,CAAC,GAAGrB,EAAEC,EAAE,CAAC,OAAO,KAAK,QAAQ,GAAGD,EAAEC,CAAC,CAAC,CAAC,IAAID,EAAEC,EAAE,CAAC,OAAO,KAAK,QAAQ,IAAID,EAAEC,CAAC,CAAC,CAAC,UAAUD,EAAE,CAAC,KAAK,aAAa,KAAK,YAAY,WAAWA,EAAE,KAAK,YAAY,UAAUA,CAAC,CAAC,QAAQ,CAAC,KAAK,WAAW,OAAO,CAAC,CAAC,MAAM,CAAC,KAAK,QAAQ,KAAK,SAAS,IAAI,CAAC,CAAC,OAAO,CAAC,KAAK,SAAS,GAAG,KAAK,YAAY,GAAG,KAAK,eAAe,KAAK,aAAa,KAAK,aAAa,KAAK,SAAS,EAAE,KAAK,QAAQ,KAAK,CAAC,CAAC,OAAO,CAAC,KAAK,YAAY,KAAK,UAAU,GAAG,KAAK,MAAM,EAAE,CAAC,MAAM,CAAC,KAAK,YAAY,KAAK,UAAU,GAAG,KAAK,QAAQ,KAAK,EAAE,KAAK,MAAM,EAAE,CAAC,IAAIA,EAAE,CAAC,IAAMC,EAAED,GAAG,KAAK,MAAMA,GAAG,KAAK,KAAKA,EAAE,KAAK,QAAQ,QAAQ,KAAKC,CAAC,CAAC,CAAC,SAASD,EAAE,CAAC,OAAOC,EAAE,EAAE,UAAU,EAAE,GAAG,KAAKG,EAAE,GAAG,SAASC,EAAE,KAAK,QAAQ,SAAS,OAAOC,EAAE,KAAK,QAAQ,OAAO,KAAKC,EAAE,CAACF,GAAG,KAAK,QAAQ,KAAK,WAAWQ,EAAE,MAAMC,EAAE,GAAG,aAAaC,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,GAAG,CAAC,KAAK,WAAW,CAAC,KAAK,UAAUD,EAAE,CAAC,GAAG,CAAC,MAAM,OAAO,OAAO,EAAE,SAASd,CAAC,EAAEA,EAAE,UAAU,CAAC,SAAS,QAAQ,KAAK,EAAE,SAASA,CAAC,EAAEA,EAAE,KAAK,UAAU,CAAC,IAAIE,EAAE,GAAa,OAAOF,GAAjB,SAAmBE,EAAE,SAAS,cAAcF,CAAC,EAAkBA,GAAE,WAAYE,EAAEF,GAAGE,EAAE,CAAC,GAAG,KAAK,QAAQ,UAAUO,EAAO,CAAC,IAAMT,EAAE,KAAK,QAAQ,QAAQ,sBAAsB,EAAEC,GAAG,KAAK,aAAaD,EAAE,KAAKA,EAAE,IAAI,IAAMI,EAAEF,EAAE,sBAAsB,EAAEF,GAAG,KAAK,aAAaI,EAAE,KAAKA,EAAE,KAAK,KAAK,gBAAgB,GAAa,OAAOJ,GAAjB,SAAmB,CAAC,GAAGA,GAAGC,EAAED,EAAE,KAAK,MAAMA,CAAC,EAAE,KAAK,QAAQ,SAASe,IAAI,KAAK,aAAa,KAAK,eAAe,KAAK,QAAQf,EAAED,GAAE,EAAEC,EAAE,KAAK,KAAK,EAAE,EAAE,OAAO,KAAK,eAAe,KAAK,aAAaA,EAAE,KAAK,UAAU,KAAK,MAAM,EAAE,KAAK,MAAM,EAAE,KAAWa,GAAN,MAASA,EAAE,IAAI,GAAG,GAAG,CAACE,EAAE,CAAC,GAAGf,IAAI,KAAK,aAAa,OAAO,KAAK,aAAaA,EAAE,KAAK,QAAQ,OAAO,KAAK,eAAeA,EAAE,CAAC,SAASK,EAAE,OAAOC,EAAE,KAAKC,EAAE,QAAQ,IAAI,CAACH,IAAI,KAAK,SAAS,IAAI,KAAK,YAAY,EAAE,EAAE,SAAS,CAACJ,EAAEC,IAAI,CAAC,KAAK,YAAY,GAAG,KAAK,SAASD,EAAE,KAAK,eAAe,KAAK,UAAU,KAAK,KAAK,KAAK,QAAQ,EAAE,KAAK,eAAeA,EAAE,KAAK,UAAU,KAAK,MAAM,EAAEe,IAAI,KAAK,aAAaf,GAAGC,GAAG,KAAK,KAAK,EAAEA,IAAI,KAAK,MAAM,EAAE,KAAK,KAAK,EAAWY,IAAE,IAAI,EAAE,KAAK,yBAAyB,GAAG,sBAAuB,IAAI,CAAC,OAAO,KAAK,wBAAwB,CAAE,EAAE,CAAC,CAAC,GAAG,CAAC,IAAI,aAAa,CAAC,OAAO,KAAK,QAAQ,UAAUJ,EAAO,SAAS,gBAAgB,KAAK,QAAQ,OAAO,CAAC,IAAI,OAAO,CAAC,OAAO,KAAK,QAAQ,gCAAgC,KAAK,aAAa,KAAK,YAAY,YAAY,KAAK,YAAY,YAAY,KAAK,YAAY,aAAa,KAAK,YAAY,aAAa,KAAK,WAAW,MAAM,KAAK,aAAa,IAAI,GAAG,CAAC,CAAC,IAAI,cAAc,CAAC,OAAqB,KAAK,QAAQ,cAA5B,YAAuC,CAAC,IAAI,cAAc,CAAC,OAAO,KAAK,aAAa,KAAK,YAAY,WAAW,KAAK,YAAY,SAAS,CAAC,IAAI,QAAQ,CAAC,OAAO,KAAK,QAAQ,UAAUT,EAAE,KAAK,eAAeC,EAAE,KAAK,OAAOD,EAAEC,EAAEA,GAAGA,GAAG,KAAK,eAAe,IAAID,EAAEC,CAAC,CAAC,IAAI,UAAU,CAAC,OAAW,KAAK,QAAT,EAAe,EAAE,KAAK,OAAO,KAAK,KAAK,CAAC,IAAI,UAAU,CAAC,OAAO,KAAK,UAAU,CAAC,IAAI,SAASD,EAAE,CAAC,KAAK,aAAaA,IAAI,KAAK,WAAWA,EAAE,KAAK,gBAAgB,eAAeA,CAAC,EAAE,CAAC,IAAI,aAAa,CAAC,OAAO,KAAK,aAAa,CAAC,IAAI,YAAYA,EAAE,CAAC,KAAK,gBAAgBA,IAAI,KAAK,cAAcA,EAAE,KAAK,gBAAgB,kBAAkBA,CAAC,EAAE,CAAC,IAAI,WAAW,CAAC,OAAO,KAAK,WAAW,CAAC,IAAI,UAAUA,EAAE,CAAC,KAAK,cAAcA,IAAI,KAAK,YAAYA,EAAE,KAAK,gBAAgB,gBAAgBA,CAAC,EAAE,CAAC,IAAI,UAAU,CAAC,OAAO,KAAK,UAAU,CAAC,IAAI,SAASA,EAAE,CAAC,KAAK,aAAaA,IAAI,KAAK,WAAWA,EAAE,KAAK,gBAAgB,eAAeA,CAAC,EAAE,CAAC,IAAI,WAAW,CAAC,IAAIA,EAAE,QAAQ,OAAO,KAAK,YAAYA,GAAG,kBAAkB,KAAK,WAAWA,GAAG,iBAAiB,KAAK,cAAcA,GAAG,oBAAoB,KAAK,WAAWA,GAAG,iBAAiBA,CAAC,CAAC,gBAAgBA,EAAEC,EAAE,CAAC,KAAK,YAAY,UAAU,OAAOD,EAAEC,CAAC,EAAE,KAAK,QAAQ,KAAK,mBAAmB,IAAI,CAAC,CAAC,ECEloW,SAARuB,GAA8BC,EAAM,CAAC,GAAK,CAAC,UAAAC,CAAS,EAAED,EAAYE,EAAMC,EAAO,IAAI,EAAE,OAAAC,GAAU,IAAI,CAAIF,EAAM,SAAQA,EAAM,QAAQ,SAAS,EAAE,CAAC,UAAU,EAAI,CAAC,CAAE,EAAE,CAACA,CAAK,CAAC,EAAEE,GAAU,IAAI,CAAC,IAAMC,EAAe,SAAS,eAAe,SAAS,EAAE,GAAGA,EAAe,CAAC,IAAMC,EAAe,CAACC,EAAcC,IAAW,CAAC,QAAUC,KAAYF,EAAe,GAAGE,EAAS,OAAO,YAAgE,GAAjCJ,EAAe,SAAS,OAAO,EAAiB,CACtc,IAAMK,EAAY,SAAS,gBAAoCC,EAAO,iBAAiBD,CAAW,EAAuC,iBAAiB,UAAU,IAAI,SAA8BR,EAAM,QAAQ,KAAK,EAAQA,EAAM,QAAQ,MAAM,OAASA,EAAM,QAAQ,MAAM,CAAK,EAAQM,EAAS,IAAI,iBAAiBF,CAAc,EAAQM,EAAO,CAAC,UAAU,EAAI,EAAE,OAAAJ,EAAS,QAAQH,EAAeO,CAAM,EAAQ,IAAIJ,EAAS,WAAW,EAAG,EAAE,CAAC,CAAC,EAAEJ,GAAU,IAAI,CAACF,EAAM,QAAQ,IAAIW,GAAM,CAAC,SAASZ,EAAU,EAAE,CAAC,EAAE,IAAMa,EAAIC,GAAM,CAACb,EAAM,QAAQ,IAAIa,CAAI,EAAE,sBAAsBD,CAAG,CAAE,EAAE,6BAAsBA,CAAG,EAAQ,IAAI,CAACZ,EAAM,QAAQ,QAAQ,EAAEA,EAAM,QAAQ,IAAK,CAAE,EAAE,CAAC,CAAC,EAAsBc,EAAKC,GAAU,CAAC,SAAsBD,EAAK,QAAQ,CAAC,SAAS;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,KAoBruB,CAAC,CAAC,CAAC,CAAE,CAACjB,GAAa,YAAY,gBAAgBmB,EAAoBnB,GAAa,CAAC,UAAU,CAAC,MAAM,YAAY,KAAKoB,EAAY,OAAO,aAAa,EAAE,CAAC,CAAC,ECtBiF,IAAMC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,GAAUC,GAAuB,CAACD,EAAMrB,IAAeqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAEqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAUuB,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA7B,EAAQ,GAAG8B,CAAS,EAAEf,GAASI,CAAK,EAAO,CAAC,YAAAY,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAxC,CAAQ,EAAEyC,EAAgB,CAAC,eAAe,YAAY,gBAAA9C,GAAgB,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBpB,GAAuBD,EAAMrB,CAAQ,EAAQ2C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBpC,EAAKqC,EAAY,CAAC,GAAGnB,GAA4Cc,EAAgB,SAAsBhC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKsC,GAAK,CAAC,KAAK,8BAA8B,aAAa,GAAK,SAAsBtC,EAAKE,EAAO,EAAE,CAAC,GAAGiB,EAAU,GAAGI,EAAgB,UAAU,GAAGgB,EAAGxD,GAAkB,GAAGmD,EAAsB,gBAAgBjB,EAAUI,CAAU,mBAAmB,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6BkB,EAAK,MAAM,CAAC,GAAGd,CAAK,EAAE,GAAG/B,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,CAAC,EAAEmC,EAAYI,CAAc,EAAE,SAAsBxB,EAAKwC,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBX,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAurB,SAAS,CAAC,kBAAkB,CAAC,QAAQ,EAAE,CAAC,EAAE,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQY,GAAI,CAAC,kFAAkF,kFAAkF,2IAA2I,gHAAgH,EAQz8HC,GAAgBC,EAAQjC,GAAU+B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,oBAAoBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRsJ,IAAMI,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAE,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWN,GAAmCG,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,WAAAC,EAAW,MAAAC,EAAM,SAAAC,EAAS,qBAAAC,EAAqB,KAAAC,EAAK,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAMC,EAAMC,EAAMC,EAAuCC,EAAM,MAAM,CAAC,GAAGP,EAAM,WAAWC,EAAKH,GAAgCE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,wJAAwJ,WAAWC,EAAMN,GAA4CI,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,oCAAoC,WAAWC,EAAMN,GAAgFG,EAAM,aAAa,MAAMG,IAAQ,OAAOA,EAAM,CAAC,IAAI,qEAAqE,EAAE,WAAWC,EAAMT,GAAmCK,EAAM,aAAa,MAAMI,IAAQ,OAAOA,EAAM,QAAQ,WAAWC,EAAMX,GAAkDM,EAAM,aAAa,MAAMK,IAAQ,OAAOA,EAAM,GAAK,SAASE,GAAOD,EAAuChB,GAAwBU,EAAM,OAAO,KAAK,MAAMM,IAAyC,OAAOA,EAAuCN,EAAM,WAAW,MAAMO,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACR,EAAM5B,IAAe4B,EAAM,iBAAwB5B,EAAS,KAAK,GAAG,EAAE4B,EAAM,iBAAwB5B,EAAS,KAAK,GAAG,EAAUqC,GAA6BC,EAAW,SAASV,EAAMW,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA3C,EAAQ,UAAA4C,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEhC,GAASS,CAAK,EAAO,CAAC,YAAAwB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA3D,CAAQ,EAAE4D,EAAgB,CAAC,WAAAjE,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQgE,EAAiBzB,GAAuBR,EAAM5B,CAAQ,EAAQ8D,GAAWC,EAAO,IAAI,EAAQC,GAAsBC,EAAM,EAAQC,GAAsB,CAAatB,EAAS,EAAQuB,EAAkBC,EAAqB,EAAE,OAAoBtD,EAAKuD,EAAY,CAAC,GAAGxB,GAA4CmB,GAAgB,SAAsBlD,EAAKC,GAAS,CAAC,QAAQf,EAAS,QAAQ,GAAM,SAAsBc,EAAKR,GAAW,CAAC,MAAMH,GAAY,SAAsBW,EAAKE,EAAO,IAAI,CAAC,GAAGmC,EAAU,GAAGI,EAAgB,UAAUe,EAAG1E,GAAkB,GAAGsE,GAAsB,iBAAiBtB,EAAUS,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAItB,GAA6BuB,GAAK,MAAM,CAAC,gBAAgB,qBAAqB,GAAGnB,CAAK,EAAE,GAAG7C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAEsD,EAAYI,CAAc,EAAE,SAAsBe,EAAMvD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6C,EAAiB,SAAS,YAAY,SAAS,CAAc/C,EAAK0D,EAAS,CAAC,sBAAsB,GAAK,SAAsB1D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,2GAA2G,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,gBAAgB,EAAE,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,EAAE,KAAKf,EAAU,kBAAkB,MAAM,mBAAmB,GAAK,GAAGhD,GAAqB,CAAC,UAAU,CAAC,SAAsBgB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,2GAA2G,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,2GAA2G,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoC,EAAYI,CAAc,CAAC,CAAC,EAAee,EAAMvD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,iBAAiB6C,EAAiB,SAAS,YAAY,SAAS,CAACX,GAAwBpC,EAAK2D,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,MAAM,OAAO,GAAGrE,GAAkB2C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBc,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,GAAG/D,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,MAAM,OAAO,GAAGM,GAAkB2C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,CAAC,EAAEK,EAAYI,CAAc,CAAC,CAAC,EAAee,EAAMvD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,2BAA2B,iBAAiB6C,EAAiB,SAAS,YAAY,SAAS,CAAc/C,EAAK0D,EAAS,CAAC,sBAAsB,GAAK,SAAsB1D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,OAAO,uBAAuB,OAAO,0BAA0B,QAAQ,EAAE,SAAsBF,EAAKE,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,YAAY,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,+CAA+C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,gBAAgB,EAAE,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,sBAAsB,6BAA6B,MAAM,EAAE,KAAKb,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAelC,EAAK0D,EAAS,CAAC,sBAAsB,GAAK,SAAsB1D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,mCAAmC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,MAAM,EAAE,KAAKZ,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQyB,GAAI,CAAC,kFAAkF,gFAAgF,yRAAyR,8RAA8R,uKAAuK,mRAAmR,yQAAyQ,2RAA2R,kMAAkM,+vCAA+vC,+GAA+G,mFAAmF,gEAAgE,8GAA8G,iEAAiE,mFAAmF,0IAA0I,GAAeA,EAAG,EAS75YC,GAAgBC,EAAQvC,GAAUqC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,gBAAgBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,SAAS,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,wJAAwJ,gBAAgB,GAAK,MAAM,OAAO,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,wBAAwB,2GAA2G,MAAM,yBAAyB,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,QAAQ,gBAAgB,GAAM,MAAM,OAAO,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,oCAAoC,gBAAgB,GAAM,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,eAAe,KAAKA,EAAY,OAAO,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,4FAA4F,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTvoF,IAAMC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,MAAM,YAAY,KAAK,WAAW,EAAQC,GAAS,CAAC,CAAC,QAAAC,EAAQ,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAuCC,EAAM,MAAM,CAAC,GAAGH,EAAM,WAAWC,EAAKL,GAAyCI,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,WAAW,SAASE,GAAOD,EAAuCR,GAAwBM,EAAM,OAAO,KAAK,MAAME,IAAyC,OAAOA,EAAuCF,EAAM,WAAW,MAAMG,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACJ,EAAMvB,IAAeuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAEuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAU4B,GAA6BC,EAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAlC,EAAQ,UAAAmC,EAAU,GAAGC,CAAS,EAAEpB,GAASK,CAAK,EAAO,CAAC,YAAAgB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA9C,CAAQ,EAAE+C,EAAgB,CAAC,WAAApD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQmD,EAAiBrB,GAAuBJ,EAAMvB,CAAQ,EAAQiD,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoB1C,EAAK2C,EAAY,CAAC,GAAGpB,GAA4Ce,EAAgB,SAAsBtC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGuB,EAAU,GAAGI,EAAgB,UAAUe,EAAG7D,GAAkB,GAAGyD,EAAsB,iBAAiBlB,EAAUK,CAAU,EAAE,mBAAmB,QAAQ,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIlB,GAA6BmB,EAAK,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,GAAGf,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,uEAAuE,CAAC,EAAE,GAAGpC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,MAAM,CAAC,EAAEyC,EAAYI,CAAc,EAAE,SAAsB9B,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKX,EAAU,SAAS,CAAC,UAAU,CAAC,qBAAqB,qEAAqE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGvC,GAAqB,CAAC,UAAU,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,8FAA8F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQgB,GAAI,CAAC,kFAAkF,kFAAkF,yUAAyU,gHAAgH,4WAA4W,EAS9/KC,GAAgBC,EAAQjC,GAAU+B,GAAI,cAAc,EAASG,EAAQF,GAAgBA,GAAgB,YAAY,aAAaA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,QAAQ,MAAM,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,WAAW,gBAAgB,GAAM,MAAM,UAAU,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,4FAA4F,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT/Z,IAAMM,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAAgCE,EAAM,SAAS,GAAUC,GAAuB,CAACD,EAAMtB,IAAesB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAUwB,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA9B,EAAQ,UAAA+B,EAAU,GAAGC,CAAS,EAAEjB,GAASK,CAAK,EAAO,CAAC,YAAAa,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA1C,CAAQ,EAAE2C,EAAgB,CAAC,eAAe,YAAY,gBAAAhD,GAAgB,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ+C,EAAiBrB,GAAuBD,EAAMtB,CAAQ,EAAQ6C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBtC,EAAKuC,EAAY,CAAC,GAAGpB,GAA4Ce,EAAgB,SAAsBlC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKwC,GAAK,CAAC,KAAKpB,EAAU,aAAa,GAAK,SAAsBpB,EAAKE,EAAO,EAAE,CAAC,GAAGmB,EAAU,GAAGI,EAAgB,UAAU,GAAGgB,EAAG1D,GAAkB,GAAGqD,EAAsB,gBAAgBlB,EAAUK,CAAU,mBAAmB,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIlB,GAA6BmB,EAAK,MAAM,CAAC,QAAQ,EAAE,GAAGf,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,QAAQ,EAAE,CAAC,EAAE,GAAGhC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,CAAC,EAAEqC,EAAYI,CAAc,EAAE,SAAsB1B,EAAK0C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBX,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA20C,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQY,GAAI,CAAC,kFAAkF,kFAAkF,2IAA2I,gHAAgH,EAS1qJC,GAAgBC,EAAQlC,GAAUgC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,yBAAyBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAAoBH,GAAgB,CAAC,UAAU,CAAC,MAAM,OAAO,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT/D,IAAMM,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,aAAa,YAAY,KAAK,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,OAAAC,EAAO,GAAAC,EAAG,SAAAC,EAAS,SAAAC,EAAS,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAuCC,EAAMC,EAAM,MAAM,CAAC,GAAGL,EAAM,WAAWC,EAAKP,GAAsCM,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,6KAA6K,WAAWC,EAAMJ,GAA4CE,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,GAAK,SAASE,GAAOD,EAAuCX,GAAwBQ,EAAM,OAAO,KAAK,MAAMG,IAAyC,OAAOA,EAAuCH,EAAM,WAAW,MAAMI,IAAQ,OAAOA,EAAM,YAAY,WAAWC,EAAMR,GAA4CG,EAAM,aAAa,MAAMK,IAAQ,OAAOA,EAAM,UAAU,CAAE,EAAQC,GAAuB,CAACN,EAAMzB,IAAeyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAEyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAUgC,GAA6BC,EAAW,SAASR,EAAMS,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAtC,EAAQ,UAAAuC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE1B,GAASO,CAAK,EAAO,CAAC,YAAAoB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAApD,CAAQ,EAAEqD,EAAgB,CAAC,WAAA1D,GAAW,eAAe,YAAY,gBAAAD,GAAgB,QAAAQ,EAAQ,kBAAAL,EAAiB,CAAC,EAAQyD,EAAiBvB,GAAuBN,EAAMzB,CAAQ,EAAO,CAAC,sBAAAuD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAaH,EAAsB,SAASI,KAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQQ,GAAYL,EAAsB,SAASI,KAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQS,GAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQlB,IAAc,YAA6CmB,GAAa,IAAQnB,IAAc,YAA6CoB,GAAsBC,EAAM,EAAQC,GAAsB,CAAC,EAAQC,GAAkBC,EAAqB,EAAE,OAAoBxD,EAAKyD,EAAY,CAAC,GAAG9B,GAA4CyB,GAAgB,SAAsBpD,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAS2C,GAAwB9B,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAG6B,EAAU,GAAGI,EAAgB,UAAUuB,EAAG3E,GAAkB,GAAGuE,GAAsB,iBAAiB5B,EAAUO,CAAU,EAAE,mBAAmB,aAAa,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,MAAMI,GAAa,IAAIxB,GAA6B2B,GAAK,MAAM,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,GAAGvB,CAAK,EAAE,GAAGxC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,OAAO,MAAM8D,EAAW,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAsBuB,EAAMzD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBuC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,EAAE,SAAS,CAAckB,EAAMzD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBuC,EAAiB,SAAS,YAAY,SAAS,CAAczC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBuC,EAAiB,SAAS,YAAY,SAAsBzC,EAAK4D,EAAS,CAAC,sBAAsB,GAAK,SAAsB5D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,sBAAsB,0CAA0C,EAAE,SAAS,6BAA6B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,iBAAiBuC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,KAAKb,EAAU,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEsB,EAAY,GAAgBlD,EAAK6D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,QAAQ,gBAAgB,EAAE,eAAe,GAAG,iBAAiBpB,EAAiB,SAAS,YAAY,IAAI,0KAA0K,mBAAmB,EAAI,CAAC,EAAEU,GAAa,GAAgBnD,EAAK6D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,iBAAiBpB,EAAiB,SAAS,YAAY,IAAI,4RAA4R,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAES,EAAY,GAAgBlD,EAAK4D,EAAS,CAAC,sBAAsB,GAAK,SAAsB5D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,SAAS,uBAAuB,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,4KAA4K,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,oBAAoB,EAAE,iBAAiBuC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,6BAA6B,KAAK,EAAE,KAAKZ,EAAU,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiC,GAAI,CAAC,kFAAkF,gFAAgF,gUAAgU,wSAAwS,yQAAyQ,gRAAgR,qKAAqK,yKAAyK,0JAA0J,qLAAqL,k2BAAk2B,oEAAoE,4EAA4E,EASvnUC,GAAgBC,EAAQ7C,GAAU2C,GAAI,cAAc,EAASG,EAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,aAAa,MAAM,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,WAAW,gBAAgB,GAAM,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,6KAA6K,gBAAgB,GAAK,MAAM,SAAS,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,YAAY,KAAKA,EAAY,OAAO,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,4FAA4F,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,4FAA4F,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT93B,IAAMM,GAAgB,CAAC,UAAU,CAAC,MAAM,GAAK,QAAQ,EAAI,EAAE,UAAU,CAAC,MAAM,GAAK,QAAQ,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,gBAAgB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,mBAAmB,YAAY,kBAAkB,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCP,GAAwBM,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,YAAY,UAAUJ,GAAgCE,EAAM,SAAS,CAAE,EAAQG,GAAuB,CAACH,EAAMvB,IAAeuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAEuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAU2B,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAjC,EAAQ,UAAAkC,EAAU,GAAGC,CAAS,EAAEnB,GAASK,CAAK,EAAO,CAAC,YAAAe,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA7C,CAAQ,EAAE8C,EAAgB,CAAC,WAAAnD,GAAW,eAAe,YAAY,gBAAAD,GAAgB,QAAAQ,EAAQ,kBAAAL,EAAiB,CAAC,EAAQkD,EAAiBrB,GAAuBH,EAAMvB,CAAQ,EAAQgD,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQ,GAAC,kBAAkB,mBAAmB,EAAE,SAASR,CAAc,GAAkBJ,IAAc,aAA6Ca,EAAa,IAAQ,IAAC,kBAAkB,mBAAmB,EAAE,SAAST,CAAc,GAAiBJ,IAAc,aAA6Cc,EAAsBC,EAAM,EAAQC,GAAsB,CAAC,EAAQC,GAAkBC,EAAqB,EAAE,OAAoB3C,EAAK4C,EAAY,CAAC,GAAGtB,GAA4CiB,EAAgB,SAAsBvC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAK6C,GAAK,CAAC,KAAKtB,EAAU,aAAa,GAAK,SAAsBuB,EAAM5C,EAAO,EAAE,CAAC,GAAGsB,EAAU,GAAGI,EAAgB,UAAU,GAAGmB,EAAGhE,GAAkB,GAAG0D,GAAsB,gBAAgBpB,EAAUK,CAAU,mBAAmB,mBAAmB,kBAAkB,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIlB,GAA6BmB,EAAK,MAAM,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,GAAGf,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,uEAAuE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,oBAAoB,CAAC,gBAAgB,kBAAkB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,kBAAkB,CAAC,gBAAgB,uEAAuE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,oBAAoB,CAAC,gBAAgB,kBAAkB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,EAAE,GAAGnC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,oBAAoB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,oBAAoB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,CAAC,EAAEwC,EAAYI,CAAc,EAAE,SAAS,CAACQ,EAAY,GAAgBrC,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBd,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAolB,mBAAmB,EAAI,CAAC,EAAEG,EAAY,GAAgBrC,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,EAAE,iBAAiBd,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA4O,mBAAmB,GAAK,GAAGjD,GAAqB,CAAC,kBAAkB,CAAC,KAAK,oBAAoB,EAAE,oBAAoB,CAAC,KAAK,oBAAoB,CAAC,EAAEwC,EAAYI,CAAc,CAAC,CAAC,EAAEQ,EAAY,GAAgBrC,EAAKgD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBd,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAuW,mBAAmB,GAAK,GAAGjD,GAAqB,CAAC,kBAAkB,CAAC,KAAK,oBAAoB,EAAE,oBAAoB,CAAC,KAAK,oBAAoB,CAAC,EAAEwC,EAAYI,CAAc,CAAC,CAAC,EAAES,EAAa,GAAgBtC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,iBAAiBgC,EAAiB,SAAS,YAAY,SAAsBlC,EAAKgD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBd,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA2uB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQe,GAAI,CAAC,kFAAkF,kFAAkF,2IAA2I,qHAAqH,oHAAoH,oHAAoH,oIAAoI,oHAAoH,8QAA8Q,EASj8RC,GAAgBC,EAAQrC,GAAUmC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,kBAAkBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,kBAAkB,kBAAkB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTumD,IAAMM,GAAkBC,EAASC,EAAY,EAAQC,GAAgBF,EAASG,EAAU,EAAQC,GAAkCC,GAA0BC,CAAQ,EAAQC,GAASP,EAASQ,EAAG,EAAQC,GAAeC,GAAOJ,CAAQ,EAAQK,GAAkBX,EAASY,EAAY,EAAQC,GAAab,EAASc,EAAO,EAAQC,GAAYL,GAAOM,CAAK,EAAQC,GAAejB,EAASkB,CAAS,EAAQC,GAAgBT,GAAOU,EAAO,GAAG,EAAQC,GAAkBrB,EAASsB,EAAY,EAAQC,GAAkBvB,EAASwB,EAAY,EAAQC,GAAyBzB,EAAS0B,EAAmB,EAAQC,GAAiB3B,EAAS4B,EAAW,EAAQC,GAAU7B,EAAS8B,CAAI,EAAQC,GAAoB/B,EAASgC,EAAc,EAAQC,GAAoBjC,EAASkC,EAAc,EAAQC,GAAY,CAAC,UAAU,qBAAqB,UAAU,6CAA6C,UAAU,qBAAqB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,IAAUC,GAAY,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,GAAG,EAAE,IAAI,GAAG,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAmB,CAACb,EAAEC,IAAI,yBAAyBA,IAAUa,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAA6BC,EAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEtB,GAASI,CAAK,EAAQmB,GAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUX,CAAY,EAAE,GAAGW,EAAS,OAAO,CAAC,IAAIC,GAAU,SAAS,cAAc,qBAAqB,EAAKA,GAAWA,GAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,GAAU,SAAS,cAAc,MAAM,EAAEA,GAAU,aAAa,OAAO,QAAQ,EAAEA,GAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,EAAS,GAAI,EAAE,CAAC,OAAUZ,CAAY,CAAC,EAAQa,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUX,CAAY,EAAE,SAAS,MAAMW,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUX,CAAY,CAAC,EAAE,GAAK,CAACc,EAAYC,CAAmB,EAAEC,GAA8BR,EAAQlD,GAAY,EAAK,EAAQ2D,EAAe,OAAuLC,EAAkBC,EAAG3D,GAAkB,GAAxL,CAAa8C,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQc,EAAY,IAAQ,CAAC7D,GAAU,GAAiBuD,IAAc,YAA6CO,EAAUC,GAAkB,WAAW,EAAQC,EAAW3B,EAAO,IAAI,EAAQ4B,EAAWF,GAAkB,WAAW,EAAQG,EAAW7B,EAAO,IAAI,EAAQ8B,EAAOC,GAAU,EAAQC,GAAWN,GAAkB,WAAW,EAAQO,GAAWjC,EAAO,IAAI,EAAQkC,GAAa,IAASvE,GAAU,EAAiBuD,IAAc,YAAtB,GAA6D,OAAAiB,GAAiB,CAAC,CAAC,EAAsB9C,EAAK+C,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAvE,EAAiB,EAAE,SAAsBwE,EAAMC,EAAY,CAAC,GAAG3B,GAAUT,EAAgB,SAAS,CAAcb,EAAKH,GAAU,CAAC,MAAM,+CAA+C,CAAC,EAAemD,EAAM1F,EAAO,IAAI,CAAC,GAAGkE,EAAU,UAAUU,EAAGD,EAAkB,gBAAgBZ,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcpB,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAK7D,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,GAAG,SAAS,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6D,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,EAAE,SAAsB7B,EAAKkD,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,EAAE,EAAE,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,0BAA0B,aAAa,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK3D,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2D,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQwB,IAA2BnC,GAAmB,GAAG,GAAG,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,kBAAkB,MAAS,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQmC,IAA2BnC,GAAmB,GAAG,GAAG,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,SAAS,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBlB,EAAK9C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQmG,IAA2BnC,GAAmB,GAAG,GAAG,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,SAAS,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,kBAAkBzC,EAAkB,CAAC,CAAC,CAAC,EAAeuE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,SAAS,CAAchD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,oEAAoE,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,sEAAsE,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEmC,EAAY,GAAgBnC,EAAK,MAAM,CAAC,UAAU,4CAA4C,mBAAmB,mBAAmB,GAAGoC,EAAU,IAAIE,CAAI,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAK,MAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,EAAE,UAAU,gBAAgB,mBAAmB,iBAAiB,GAAGuC,EAAW,IAAIC,EAAK,SAAsBQ,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAchD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,qBAAqB,0BAA0B,WAAW,EAAE,SAAS,iEAAiE,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,qBAAqB,0BAA0B,WAAW,EAAE,SAAS,iEAAiE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK1D,GAAkC,CAAC,sBAAsB,GAAK,QAAQuC,GAAU,SAAsBmB,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,qBAAqB,0BAA0B,WAAW,EAAE,SAAS,iEAAiE,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,uCAAuC,MAAM,CAAC,oBAAoB,EAAE,QAAQlB,GAAW,UAAU,GAAK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAekB,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWsD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAchD,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,oBAAoB,EAAE,SAAS,oCAAoC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,oBAAoB,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK1D,GAAkC,CAAC,sBAAsB,GAAK,QAAQ0C,GAAW,SAAsBgB,EAAWsD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oBAAoB,EAAE,SAAS,CAAC,qCAAkDhD,EAAK,KAAK,CAAC,CAAC,EAAE,uBAAuB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,yDAAyD,MAAM,CAAC,OAAO,EAAE,QAAQlB,GAAW,UAAU,GAAK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekB,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK1D,GAAkC,CAAC,sBAAsB,GAAK,QAAQ4C,GAAW,SAAsBc,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oBAAoB,EAAE,SAAS,mHAAmH,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,mHAAmH,MAAM,CAAC,OAAO,EAAE,QAAQlB,GAAW,UAAU,GAAK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekB,EAAKuD,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4BxD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,wBAAwB,CAAC,EAAE,SAAsBlB,EAAKkD,EAA0B,CAAC,OAAO,GAAG,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU2B,EAAc,CAAC,EAAE,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsBxD,EAAKtD,GAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU8G,EAAc,CAAC,EAAE,UAAU,iBAAiB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeR,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,GAAGL,GAAW,IAAIC,GAAK,SAAS,CAAcI,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAchD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWsD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,6BAA0ChD,EAAK,KAAK,CAAC,CAAC,EAAE,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKrD,GAAe,CAAC,kBAAkB,CAAC,WAAWyC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeG,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBU,EAAWsD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,4BAAyChD,EAAK,KAAK,CAAC,CAAC,EAAE,kBAAkB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,4CAA4C,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,oJAA+I,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,CAAC,CAAC,EAAE,SAAsBA,EAAKrD,GAAe,CAAC,kBAAkB,CAAC,WAAWyC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeG,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBU,EAAWsD,EAAS,CAAC,SAAsBN,EAAM,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAC,qEAAkFhD,EAAK,KAAK,CAAC,CAAC,EAAE,iFAA4E,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,yJAAoJ,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegD,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,SAAS,CAAchD,EAAKyD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA;AAAA,EAAw7B,mBAAmB,EAAI,CAAC,EAAeT,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAchD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,+CAA+C,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,+CAA+C,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gDAAgD,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,gIAAgI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,gIAAgI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,4HAAuH,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegD,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,SAAS,CAAchD,EAAKyD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA,EAA4qE,mBAAmB,EAAI,CAAC,EAAeT,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAchD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,2CAAsC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,2CAAsC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gDAAgD,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,qIAAgI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,qIAAgI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,4HAAuH,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegD,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,SAAS,CAAchD,EAAKyD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAqzC,mBAAmB,EAAI,CAAC,EAAeT,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAchD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,yCAAyC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,yCAAyC,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,mBAAmB,gDAAgD,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,+GAA+G,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,+GAA+G,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,4HAAuH,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAMhC,GAAmB,OAAO,QAAQ,SAAsBlB,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKlD,GAAa,CAAC,UAAU,wJAAwJ,UAAU,oCAAoC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,QAAQ,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,GAAK,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,eAAeX,GAAmB,OAAO,WAAW,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsB8B,EAAM9F,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,SAAS,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,SAAS,CAAc8C,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAsBA,EAAKrD,GAAe,CAAC,kBAAkB,CAAC,WAAWyC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeG,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBU,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mBAAmB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBgD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAchD,EAAKyD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,KAAK,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAmiF,mBAAmB,EAAI,CAAC,EAAezD,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAsBA,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKhD,GAAQ,CAAC,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,MAAM,GAAK,SAAS,YAAY,KAAK,MAAM,WAAW,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,iBAAiB,cAAc,EAAE,eAAe,EAAE,IAAI,8CAA8C,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegD,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAsBA,EAAKrD,GAAe,CAAC,kBAAkB,CAAC,WAAWyC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeG,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBU,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mBAAmB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,mBAAmB,iBAAiB,SAAsBgD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAchD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,qEAAqE,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,WAAWX,GAAmB,OAAO,gCAAgC,IAAI,0FAA0F,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,qEAAqE,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,WAAWA,GAAmB,OAAO,gCAAgC,IAAI,0FAA0F,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsBlB,EAAK9C,EAAM,CAAC,WAAW,CAAC,IAAI,qEAAqE,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,WAAWgE,GAAmB,OAAO,yBAAyB,IAAI,0FAA0F,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAe8B,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAchD,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,6CAA6C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,8FAA8F,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAchD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,oCAAoC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,oCAAoC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,oCAAoC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,2JAA2J,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,0CAA0C,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,WAAWX,GAAmB,OAAO,gCAAgC,IAAI,qEAAqE,OAAO,oKAAoK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,0CAA0C,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,WAAWA,GAAmB,OAAO,gCAAgC,IAAI,qEAAqE,OAAO,oKAAoK,CAAC,CAAC,EAAE,SAAsBlB,EAAK9C,EAAM,CAAC,WAAW,CAAC,IAAI,0CAA0C,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,WAAWgE,GAAmB,OAAO,yBAAyB,IAAI,qEAAqE,OAAO,oKAAoK,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAchD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,2CAA2C,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,WAAWX,GAAmB,OAAO,gCAAgC,IAAI,uEAAuE,OAAO,wKAAwK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,2CAA2C,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,WAAWA,GAAmB,OAAO,gCAAgC,IAAI,uEAAuE,OAAO,wKAAwK,CAAC,CAAC,EAAE,SAAsBlB,EAAK9C,EAAM,CAAC,WAAW,CAAC,IAAI,2CAA2C,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,WAAWgE,GAAmB,OAAO,yBAAyB,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAe8B,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAchD,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,CAAC,oBAAiChD,EAAK,KAAK,CAAC,SAAS,OAAO,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,eAAe,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,wMAAwM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAsBgD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAchD,EAAKrD,GAAe,CAAC,kBAAkB,CAAC,WAAWyC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeG,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBU,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,mEAAmE,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAegD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,SAAS,CAAchD,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,CAAC,kDAA+DhD,EAAK,KAAK,CAAC,CAAC,EAAE,4CAA4C,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,qKAAqK,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,uSAAuS,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAegD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAchD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,gBAAgBX,GAAmB,OAAO,yCAAyC,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBlB,EAAK9C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,WAAW,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,sBAAsB,kBAAkBqC,EAAkB,CAAC,CAAC,CAAC,EAAeS,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,gBAAgBX,GAAmB,OAAO,yCAAyC,IAAI,uEAAuE,OAAO,yKAAyK,CAAC,CAAC,EAAE,SAAsBlB,EAAK/C,GAAY,CAAC,iBAAiB,CAAC,QAAQ,IAAI,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,GAAG,UAAU,IAAI,KAAK,QAAQ,EAAE,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,CAAC,CAAC,EAAE,2BAA2B,WAAW,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,yKAAyK,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,kBAAkBsC,EAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAchD,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,+EAA+E,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,wHAAwH,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,uSAAuS,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAegD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAchD,EAAK/C,GAAY,CAAC,kBAAkB,CAAC,WAAWwC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,yBAAyB,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,CAAC,EAAeQ,EAAK/C,GAAY,CAAC,kBAAkB,CAAC,WAAWyC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBF,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,CAAC,EAAeQ,EAAK/C,GAAY,CAAC,kBAAkB,CAAC,WAAW0C,EAAW,EAAE,sBAAsB,GAAK,gBAAgBH,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,CAAC,EAAeQ,EAAK/C,GAAY,CAAC,kBAAkB,CAAC,WAAW2C,EAAW,EAAE,sBAAsB,GAAK,gBAAgBJ,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeQ,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,WAAWX,GAAmB,OAAO,+BAA+B,IAAI,uEAAuE,OAAO,yKAAyK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,yKAAyK,CAAC,CAAC,EAAE,SAAsBlB,EAAK9C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,gBAAgBgE,GAAmB,OAAO,qDAAqD,IAAI,uEAAuE,OAAO,yKAAyK,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,GAAG,EAAE,kBAAkB3B,EAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,SAAS,CAAchD,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,oDAAoD,CAAC,CAAC,CAAC,EAAE,UAAU,cAAc,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,oJAA+I,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uSAAuS,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK/C,GAAY,CAAC,iBAAiB,CAAC,QAAQ,IAAI,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,GAAG,UAAU,IAAI,KAAK,QAAQ,EAAE,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,WAAW,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,eAAe,mBAAmB,mBAAmB,kBAAkBsC,EAAkB,CAAC,CAAC,CAAC,CAAC,EAAeyD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,SAAS,CAAchD,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,2DAA2D,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,0JAAqJ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uSAAuS,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,4BAA4B,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,gBAAgBX,GAAmB,OAAO,uCAAuC,IAAI,uEAAuE,OAAO,uKAAuK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,4BAA4B,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,WAAW,IAAI,uEAAuE,OAAO,uKAAuK,CAAC,CAAC,EAAE,SAAsBlB,EAAK9C,EAAM,CAAC,WAAW,CAAC,IAAI,4BAA4B,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,qBAAqBgE,GAAmB,OAAO,6DAA6D,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,mBAAmB,sBAAsB,kBAAkB3B,EAAkB,CAAC,CAAC,CAAC,EAAeS,EAAK/C,GAAY,CAAC,iBAAiB,CAAC,QAAQ,IAAI,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,GAAG,UAAU,IAAI,KAAK,QAAQ,EAAE,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,WAAW,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,kBAAkBsC,EAAkB,CAAC,CAAC,CAAC,CAAC,EAAeyD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,SAAS,CAAchD,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAS,mCAAmC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,2DAA2D,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,yIAAyI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uSAAuS,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAegD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,yBAAyB,SAAS,CAAcA,EAAM3F,GAAgB,CAAC,iBAAiB,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,WAAW,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAc2C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,IAAI,KAAK,IAAI,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAK5C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,IAAI,UAAU,WAAW,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,IAAI,KAAK,IAAI,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAK5C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,IAAI,UAAU,aAAa,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,IAAI,KAAK,IAAI,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAK5C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,IAAI,UAAU,WAAW,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,IAAI,KAAK,IAAI,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAK5C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,IAAI,UAAU,WAAW,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,IAAI,KAAK,IAAI,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAK5C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,IAAI,UAAU,WAAW,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,IAAI,KAAK,IAAI,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAK5C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,IAAI,UAAU,WAAW,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,IAAI,KAAK,IAAI,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAK5C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,IAAI,UAAU,QAAQ,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,IAAI,KAAK,IAAI,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAK5C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,IAAI,UAAU,SAAS,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,IAAI,KAAK,IAAI,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAK5C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,IAAI,UAAU,MAAM,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4C,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAegD,EAAM3F,GAAgB,CAAC,iBAAiB,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,WAAW,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAc2C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,IAAI,KAAK,IAAI,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAK5C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,IAAI,UAAU,WAAW,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,IAAI,KAAK,IAAI,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAK5C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,IAAI,UAAU,MAAM,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,IAAI,KAAK,IAAI,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAK5C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,IAAI,UAAU,WAAW,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,IAAI,KAAK,IAAI,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAK5C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,IAAI,UAAU,aAAa,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,IAAI,KAAK,IAAI,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAK5C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,IAAI,UAAU,WAAW,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,IAAI,KAAK,IAAI,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAK5C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,IAAI,UAAU,QAAQ,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,IAAI,KAAK,IAAI,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAK5C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,IAAI,UAAU,WAAW,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,IAAI,KAAK,IAAI,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAK5C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,IAAI,UAAU,SAAS,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,IAAI,KAAK,IAAI,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAK5C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,IAAI,UAAU,WAAW,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4C,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBgD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,SAAS,CAAchD,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWsD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,CAAC,8BAA2ChD,EAAK,KAAK,CAAC,SAAS,MAAM,CAAC,EAAE,0BAA0B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,CAAC,8BAA2ChD,EAAK,KAAK,CAAC,SAAS,MAAM,CAAC,EAAE,0BAA0B,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,QAAQ,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,0HAA0H,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uSAAuS,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAchD,EAAKyD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,IAAI,IAAI;AAAA;AAAA;AAAA,EAA4Y,mBAAmB,EAAI,CAAC,EAAEZ,GAAa,GAAgB7C,EAAK,MAAM,CAAC,UAAU,+BAA+B,mBAAmB,QAAQ,SAAsBA,EAAK/C,GAAY,CAAC,iBAAiB,CAAC,QAAQ,IAAI,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,GAAG,UAAU,IAAI,KAAK,QAAQ,EAAE,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,GAAG,CAAC,EAAE,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,WAAW,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,wBAAwB,IAAI,MAAM,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAe+F,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAchD,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBgD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAchD,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,SAAS,sBAAsB,sEAAsE,0BAA0B,SAAS,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,oKAAqK,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK0D,GAAK,CAAC,KAAK,sGAAsG,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBV,EAAM1F,EAAO,EAAE,CAAC,UAAU,8BAA8B,SAAS,CAAc0C,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,sBAAsB,sEAAsE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKyD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,sSAAsS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezD,EAAK,MAAM,CAAC,UAAU,eAAe,mBAAmB,cAAc,SAAsBA,EAAKrD,GAAe,CAAC,kBAAkB,CAAC,WAAWyC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeG,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBU,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mBAAmB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAO,EAAE,UAAU,CAAC,MAAM,OAAO,CAAC,EAAE,SAAsB7B,EAAKkD,EAA0B,CAAC,OAAO,KAAK,MAAM,SAAS,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKxC,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewF,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,wBAAwB,SAAS,CAAchD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,YAAY,KAAK,WAAW,IAAI,MAAM,OAAOX,GAAmB,OAAO,yBAAyB,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQA,GAAmB,OAAO,oBAAoB,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBlB,EAAK9C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,YAAY,KAAK,WAAW,IAAI,MAAMgE,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,kBAAkB3B,EAAkB,CAAC,CAAC,CAAC,EAAeyD,EAAM3F,GAAgB,CAAC,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,WAAW,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAc2C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,SAAsBA,EAAKrD,GAAe,CAAC,kBAAkB,CAAC,WAAWyC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeG,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBU,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,sBAAsB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAegD,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,iBAAiB,SAAS,CAAchD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,+CAA+C,IAAI,OAAO,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,+CAA+C,IAAI,OAAO,MAAM,aAAa,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsB7B,EAAK9C,EAAM,CAAC,WAAW,CAAC,IAAI,+CAA+C,IAAI,OAAO,MAAM,YAAYgE,GAAmB,OAAO,4BAA4B,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAelB,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBgD,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,yBAAyB,SAAS,CAAchD,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,SAAsBA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,yGAAyG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegD,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,iBAAiB,SAAS,CAAchD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,+BAA+B,IAAI,OAAO,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,+BAA+B,IAAI,OAAO,MAAM,YAAY,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsB7B,EAAK9C,EAAM,CAAC,WAAW,CAAC,IAAI,+BAA+B,IAAI,OAAO,MAAM,YAAYgE,GAAmB,OAAO,4BAA4B,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAelB,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsBgD,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,yBAAyB,SAAS,CAAchD,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,SAAsBA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,6HAA6H,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegD,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,iBAAiB,SAAS,CAAchD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,6BAA6B,IAAI,OAAO,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,6BAA6B,IAAI,OAAO,MAAM,aAAa,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsB7B,EAAK9C,EAAM,CAAC,WAAW,CAAC,IAAI,6BAA6B,IAAI,OAAO,MAAM,YAAYgE,GAAmB,OAAO,4BAA4B,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAelB,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsBgD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,yBAAyB,SAAS,CAAchD,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,gCAAgC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,SAAsBA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,qHAAqH,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,SAAS,CAAchD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,uBAAkB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,uBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,uBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,wBAAmB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAegD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAchD,EAAKkD,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKtC,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesC,EAAKkD,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKpC,GAAoB,CAAC,UAAU,2CAA2C,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoC,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBmB,EAAYM,EAAS,CAAC,SAAS,CAActD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,kJAA6I,CAAC,EAAegD,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,CAAchD,EAAK,KAAK,CAAC,CAAC,EAAE,iFAAiF,CAAC,CAAC,EAAegD,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,CAAchD,EAAK,KAAK,CAAC,CAAC,EAAE,qKAAqK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBgD,EAAYM,EAAS,CAAC,SAAS,CAActD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,kJAA6I,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,iFAAiF,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,qKAAqK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwG,EAAYM,EAAS,CAAC,SAAS,CAActD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,kJAA6I,CAAC,EAAegD,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,CAAchD,EAAK,KAAK,CAAC,CAAC,EAAE,iFAAiF,CAAC,CAAC,EAAegD,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,CAAchD,EAAK,KAAK,CAAC,CAAC,EAAE,qKAAqK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,4BAAuB,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAchD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,SAAS,0BAA0B,SAAS,sBAAsB,iBAAiB,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,SAAS,0BAA0B,SAAS,sBAAsB,iBAAiB,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,SAAS,sBAAsB,iBAAiB,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,MAAM,uBAAuB,SAAS,0BAA0B,SAAS,sBAAsB,iBAAiB,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,MAAM,uBAAuB,SAAS,0BAA0B,SAAS,sBAAsB,iBAAiB,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,MAAM,uBAAuB,SAAS,sBAAsB,iBAAiB,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,qBAAqB,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAsBgD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAchD,EAAK1C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,MAAM,CAAC,OAAO,CAAC,EAAE,kBAAkBiC,EAAkB,CAAC,EAAeS,EAAK9C,EAAM,CAAC,WAAW,CAAC,IAAI,sBAAsB,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,cAAc,kBAAkBqC,EAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,SAAS,CAAchD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oBAAoB,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,uBAAuB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAegD,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAchD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,wBAAwB,CAAC,EAAE,SAAsBlB,EAAKkD,EAA0B,CAAC,OAAO,IAAI,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKlC,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,UAAU,0BAA0B,QAAQ,YAAY,MAAM,OAAO,UAAU,qJAAqJ,UAAU,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekC,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,wBAAwB,CAAC,EAAE,SAAsBlB,EAAKkD,EAA0B,CAAC,OAAO,IAAI,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,kGAAkG,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKlC,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,UAAU,iDAAiD,QAAQ,YAAY,MAAM,OAAO,UAAU;AAAA;AAAA,EAAuG,UAAU,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekC,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,wBAAwB,CAAC,EAAE,SAAsBlB,EAAKkD,EAA0B,CAAC,OAAO,IAAI,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKlC,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,UAAU,oCAAoC,QAAQ,YAAY,MAAM,OAAO,UAAU,wJAAwJ,UAAU,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekC,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,wBAAwB,CAAC,EAAE,SAAsBlB,EAAKkD,EAA0B,CAAC,OAAO,IAAI,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKlC,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,UAAU,6BAA6B,QAAQ,YAAY,MAAM,OAAO,UAAU,gKAAgK,UAAU,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekF,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAchD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,6CAA6C,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,6CAA6C,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,6CAA6C,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,6CAA6C,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKkD,EAA0B,CAAC,OAAO,GAAG,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKtD,GAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,0BAA0B,UAAU,iBAAiB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesG,EAAM3F,GAAgB,CAAC,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,WAAW,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAc2F,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,IAAI,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAS,CAAchD,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,KAAK,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,IAAI,CAAC,CAAC,CAAC,EAAeA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,iBAAiB,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,IAAI,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAegD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAchD,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,oBAAoB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,6GAAwG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,6GAAwG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,mGAA8F,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKyD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,IAAI,IAAI;AAAA;AAAA;AAAA,EAAuK,mBAAmB,EAAI,CAAC,EAAeT,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,IAAI,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAS,CAAchD,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,KAAK,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,IAAI,CAAC,CAAC,CAAC,EAAeA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,iBAAiB,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,IAAI,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAegD,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,IAAI,SAAS,CAAchD,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mBAAmB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,8FAAyF,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,8FAAyF,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,6FAAwF,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKyD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,IAAI,IAAI;AAAA;AAAA;AAAA,EAAuK,mBAAmB,EAAI,CAAC,EAAeT,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,IAAI,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAS,CAAchD,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,KAAK,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,IAAI,CAAC,CAAC,CAAC,EAAeA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,iBAAiB,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,IAAI,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAegD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAchD,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,wBAAwB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,0IAA0I,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,0IAA0I,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,yIAAyI,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAsBgD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAchD,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAegD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAchD,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,eAAeX,GAAmB,OAAO,uCAAuC,EAAE,UAAU,CAAC,MAAM,WAAWA,GAAmB,OAAO,kCAAkC,CAAC,EAAE,SAAsBlB,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYhC,GAAmB,OAAO,4BAA4B,SAAsBlB,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKhC,EAAK,CAAC,UAAU;AAAA,EAA0I,UAAU,GAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,6CAA6C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,eAAeX,GAAmB,OAAO,uCAAuC,EAAE,UAAU,CAAC,MAAM,WAAWA,GAAmB,OAAO,kCAAkC,CAAC,EAAE,SAAsBlB,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYhC,GAAmB,OAAO,4BAA4B,SAAsBlB,EAAKmD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKhC,EAAK,CAAC,UAAU;AAAA,EAA0P,UAAU,GAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,sDAAsD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,eAAeX,GAAmB,OAAO,uCAAuC,EAAE,UAAU,CAAC,MAAM,WAAWA,GAAmB,OAAO,kCAAkC,CAAC,EAAE,SAAsBlB,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYhC,GAAmB,OAAO,4BAA4B,SAAsBlB,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKhC,EAAK,CAAC,UAAU;AAAA,EAAkT,UAAU,GAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,gDAAgD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,eAAeX,GAAmB,OAAO,uCAAuC,EAAE,UAAU,CAAC,MAAM,WAAWA,GAAmB,OAAO,kCAAkC,CAAC,EAAE,SAAsBlB,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYhC,GAAmB,OAAO,4BAA4B,SAAsBlB,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKhC,EAAK,CAAC,UAAU;AAAA,EAA0X,UAAU,GAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,0BAA0B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,eAAeX,GAAmB,OAAO,uCAAuC,EAAE,UAAU,CAAC,MAAM,WAAWA,GAAmB,OAAO,kCAAkC,CAAC,EAAE,SAAsBlB,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYhC,GAAmB,OAAO,4BAA4B,SAAsBlB,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKhC,EAAK,CAAC,UAAU;AAAA,EAA6R,UAAU,GAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,2CAA2C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,eAAeX,GAAmB,OAAO,uCAAuC,EAAE,UAAU,CAAC,MAAM,WAAWA,GAAmB,OAAO,kCAAkC,CAAC,EAAE,SAAsBlB,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYhC,GAAmB,OAAO,4BAA4B,SAAsBlB,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKhC,EAAK,CAAC,UAAU,qNAA2M,UAAU,GAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,eAAeX,GAAmB,OAAO,uCAAuC,EAAE,UAAU,CAAC,MAAM,WAAWA,GAAmB,OAAO,kCAAkC,CAAC,EAAE,SAAsBlB,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYhC,GAAmB,OAAO,4BAA4B,SAAsBlB,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKhC,EAAK,CAAC,UAAU;AAAA,EAAgH,UAAU,GAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,gDAAgD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,eAAeX,GAAmB,OAAO,uCAAuC,EAAE,UAAU,CAAC,MAAM,WAAWA,GAAmB,OAAO,kCAAkC,CAAC,EAAE,SAAsBlB,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYhC,GAAmB,OAAO,4BAA4B,SAAsBlB,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKhC,EAAK,CAAC,UAAU;AAAA;AAAA,0IAA4O,UAAU,GAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,eAAeX,GAAmB,OAAO,uCAAuC,EAAE,UAAU,CAAC,MAAM,WAAWA,GAAmB,OAAO,kCAAkC,CAAC,EAAE,SAAsBlB,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYhC,GAAmB,OAAO,4BAA4B,SAAsBlB,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKhC,EAAK,CAAC,UAAU;AAAA,0OAAwV,UAAU,GAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,wBAAwB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,eAAeX,GAAmB,OAAO,uCAAuC,EAAE,UAAU,CAAC,MAAM,WAAWA,GAAmB,OAAO,kCAAkC,CAAC,EAAE,SAAsBlB,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYhC,GAAmB,OAAO,4BAA4B,SAAsBlB,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKhC,EAAK,CAAC,UAAU;AAAA,EAAqO,UAAU,GAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,gCAAgC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,eAAeX,GAAmB,OAAO,uCAAuC,EAAE,UAAU,CAAC,MAAM,WAAWA,GAAmB,OAAO,kCAAkC,CAAC,EAAE,SAAsBlB,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYhC,GAAmB,OAAO,4BAA4B,SAAsBlB,EAAKmD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKhC,EAAK,CAAC,UAAU;AAAA;AAAA,EAAkb,UAAU,GAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,+BAA+B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegF,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAchD,EAAK9C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,GAAG,eAAe,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,kBAAkB,CAAC,EAAe8C,EAAKxD,EAAS,CAAC,sBAAsB,GAAK,SAAsBwD,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,sBAAsB,oBAAoB,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,SAAsBA,EAAKkD,EAA0B,CAAC,OAAO,IAAI,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAK9B,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8E,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAchD,EAAKkD,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAK5B,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,4CAA4C,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4B,EAAKkD,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAK5B,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,8BAA8B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4B,EAAKoD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,MAAMX,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,kBAAkB,MAAS,CAAC,EAAE,SAAsBlB,EAAK9C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,MAAM,cAAc,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,kBAAkBuB,EAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ2D,GAAI,CAAC,kFAAkF,gFAAgF,kSAAkS,oYAAoY,sKAAsK,kQAAkQ,mUAAmU,0lBAA0lB,mRAAmR,iTAAiT,kTAAkT,qRAAqR,qRAAqR,uSAAuS,0RAA0R,2QAA2Q,yTAAyT,iSAAiS,0/BAA0/B,wNAAwN,6SAA6S,oVAAoV,yJAAyJ,6UAA6U,6HAA6H,yGAAyG,4RAA4R,yRAAyR,6LAA6L,qIAAqI,2NAA2N,uOAAuO,+HAA+H,yRAAyR,sTAAsT,iUAAiU,ySAAyS,ogBAAogB,sUAAsU,oUAAoU,uPAAuP,uSAAuS,sSAAsS,yNAAyN,kiBAAkiB,wSAAwS,6XAA6X,qQAAqQ,0UAA0U,oiBAAoiB,ySAAyS,yXAAyX,sMAAsM,wNAAwN,sWAAsW,0kBAA0kB,gQAAgQ,wiBAAwiB,kfAAkf,+QAA+Q,yRAAyR,uQAAuQ,kQAAkQ,0SAA0S,+PAA+P,gVAAgV,gQAAgQ,kQAAkQ,ygBAAygB,sMAAsM,0RAA0R,kTAAkT,2xBAA2xB,6LAA6L,whBAAwhB,6iBAA6iB,yIAAyI,kNAAkN,uLAAuL,8RAA8R,4SAA4S,kRAAkR,gRAAgR,uSAAuS,2KAA2K,wRAAwR,2GAA2G,gRAAgR,uRAAuR,iUAAiU,4RAA4R,mQAAmQ,yTAAyT,irBAAirB,4NAA4N,yVAAyV,0VAA0V,8oBAA8oB,gLAAgL,0RAA0R,iTAAiT,+RAA+R,gWAAgW,sSAAsS,iJAAiJ,0TAA0T,yIAAyI,qPAAqP,2oBAA2oB,6jBAA6jB,+TAA+T,uSAAuS,iVAAiV,qSAAqS,uMAAuM,+bAA+b,8VAA8V,6KAA6K,+PAA+P,sYAAsY,yKAAyK,iUAAiU,uMAAuM,4HAA4H,sMAAsM,uMAAuM,uMAAuM,2VAA2V,kYAAkY,+QAA+Q,6gBAA6gB,+YAA+Y,oSAAoS,yQAAyQ,+FAA+F,mRAAmR,kJAAkJ,qQAAqQ,okjBAAokjB,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,gcAAgc,kuYAAkuY,89gBAA89gB,EAW/s/NC,GAAgBC,EAAQtD,GAAUoD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,QAAQ,MAAM,IAAI,EAAEG,EAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,4FAA4F,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,4FAA4F,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,6GAA6G,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,4FAA4F,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,4FAA4F,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG3H,GAAkB,GAAGG,GAAgB,GAAGK,GAAS,GAAGI,GAAkB,GAAGE,GAAa,GAAGI,GAAe,GAAGI,GAAkB,GAAGE,GAAkB,GAAGE,GAAyB,GAAGE,GAAiB,GAAGE,GAAU,GAAGE,GAAoB,GAAGE,GAAoB,GAAG6F,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACz+J,IAAMC,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,uBAAyB,GAAG,6BAA+B,OAAO,oCAAsC,4JAA0L,yBAA2B,QAAQ,4BAA8B,OAAO,qBAAuB,OAAO,sBAAwB,UAAU,yBAA2B,OAAO,qBAAuB,6KAA2M,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["t", "e", "i", "s", "Animate", "o", "n", "r", "l", "Dimensions", "window", "Emitter", "VirtualScroll", "Lenis", "h", "a", "c", "d", "p", "u", "m", "v", "g", "S", "w", "SmoothScroll", "props", "intensity", "lenis", "pe", "ue", "overlayElement", "handleMutation", "mutationsList", "observer", "mutation", "htmlElement", "window", "config", "Lenis", "raf", "time", "p", "l", "addPropertyControls", "ControlType", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "SVG", "css", "FramerbpuY1axuP", "withCSS", "bpuY1axuP_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "imageYesNo", "name1", "position", "saaSLeadsTestimonial", "text", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "DKfrvUrU_", "j_aEbPsGn", "PYcxkElfD", "fCyFxjOgD", "TjjaoHZbe", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "Image2", "css", "FramerhWSKck1Ec", "withCSS", "hWSKck1Ec_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "funding", "height", "id", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "nu0MAb8QM", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramernNqB6paTP", "withCSS", "nNqB6paTP_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "dRiTRklNo", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "SVG", "css", "FramerQqKid7zfw", "withCSS", "QqKid7zfw_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "visible3", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "YuzWhCQ4N", "BLQ5PCN2o", "HarGEbN1c", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1sy3gse", "args", "onTap71p0ir", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "SVG", "css", "FramerRWOiFLPVh", "withCSS", "RWOiFLPVh_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "wftN4sdyv", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "SVG", "css", "FramerSfrqHw1x_", "withCSS", "SfrqHw1x_default", "addPropertyControls", "ControlType", "addFonts", "SmoothScrollFonts", "getFonts", "SmoothScroll", "NavigationFonts", "FOxz6MnyF_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "CTAFonts", "ZOQDJ71U2_default", "RichTextWithFX", "withFX", "QuoteSectionFonts", "hWSKck1Ec_default", "YouTubeFonts", "Youtube", "ImageWithFX", "Image2", "BentoChipFonts", "nNqB6paTP_default", "MotionDivWithFX", "motion", "PricingChartFonts", "bdtDUlTiw_default", "SocialInBioXFonts", "bpuY1axuP_default", "SocialInBioLinkedInFonts", "QqKid7zfw_default", "TestimonialFonts", "c2xKedBxq_default", "OpenFonts", "RWOiFLPVh_default", "LeftFooterMenuFonts", "j43PLsL_1_default", "SocialLinkedinFonts", "SfrqHw1x_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "animation4", "transition4", "transition5", "animation5", "transformTemplate2", "animation6", "transition6", "transition7", "transition8", "transition9", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "router", "useRouter", "elementId2", "ref3", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "getLoadingLazyAtYPosition", "x", "ResolveLinks", "resolvedLinks", "SVG", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
