{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/sg9uqFZ8jorETdZHeQtF/ItI8DRNnQ4CCIfKhNm7P/nPjnaytXW.js", "ssg:https://framerusercontent.com/modules/mzX8ZJNYlwIuDbFhTy5D/NkBOP5g2PPJZhxrH28sZ/LottieHover.js", "ssg:https://framerusercontent.com/modules/MdyXMpHZ8uufilOrv2NJ/4zlmk7kBXMWw4svVrPsi/mJt9e_44l.js", "ssg:https://framerusercontent.com/modules/l8mbNUZsnjUFKPgtfZl0/MQzn9SdhB74lsONR1bFA/uwA_VLqew.js", "ssg:https://framerusercontent.com/modules/pwujKvGZNj713vmgAaTx/Rgf3rKmo9ivMFXS6RavH/LFj_Nacfl.js", "ssg:https://framerusercontent.com/modules/rd9kvsLxqrOEVILvq6u2/BKxyQDcvoSEl0GThJHTR/nPjnaytXW.js", "ssg:https://framerusercontent.com/modules/ahBm1XVZL7Ju8upNWfgc/m6GcXhnRuWLCbxZbUaVF/SczTU7cX1.js", "ssg:https://framerusercontent.com/modules/bxVApEdgc27zjbym24x1/KiSUqxfheiCjxl5oJszH/VWRvXFECN.js", "ssg:https://framerusercontent.com/modules/lGLQDqVTF69YSyqEqnaL/iAaGs5fSU5ly2SUSWXj6/AtxUGuro_.js", "ssg:https://framerusercontent.com/modules/z29Szk43fb7qsB4YhX9G/EynSNDFSNA0bJOpictka/lr7KRTd6Z.js", "ssg:https://framerusercontent.com/modules/46OcdgQfnj11eVR8pI0u/b0B4YxtIKNGmXFLaoNiH/mdqTpsl8d.js"],
  "sourcesContent": ["// Generated by Framer (d31cd55)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-eaVm3 .framer-styles-preset-17zgu87:not(.rich-text-wrapper), .framer-eaVm3 .framer-styles-preset-17zgu87.rich-text-wrapper a { --framer-link-current-text-color: var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, #12111c); --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, #12111c); --framer-link-hover-text-decoration: underline; --framer-link-text-color: rgba(18, 17, 28, 0.68); --framer-link-text-decoration: none; }\"];export const className=\"framer-eaVm3\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Lottie animation component: plays on hover, reverses on mouse leave, no loop\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useRef,useEffect,useState,startTransition}from\"react\";import{addPropertyControls,ControlType,useIsStaticRenderer}from\"framer\";/**\n * Lottie Animation (Hover Play, Reverse on Leave, No Loop)\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 300\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function LottieHover(props){const{lottieUrl=\"https://assets10.lottiefiles.com/packages/lf20_5ngs2ksb.json\",lottieFile=undefined,poster={src:\"https://framerusercontent.com/images/GfGkADagM4KEibNcIiRUWlfrR0.jpg\",alt:\"Gradient 1 - Blue\"},speed=1,style}=props;const containerRef=useRef(null);const lottieInstance=useRef(null);const[isLoaded,setIsLoaded]=useState(false);const isStatic=useIsStaticRenderer();// Load lottie-web script if not present\nuseEffect(()=>{if(typeof window===\"undefined\"||window.lottie)return;const script=document.createElement(\"script\");script.src=\"https://cdnjs.cloudflare.com/ajax/libs/lottie-web/5.12.2/lottie.min.js\";script.async=true;document.body.appendChild(script);return()=>{document.body.removeChild(script);};},[]);useEffect(()=>{const lottieSource=lottieFile||lottieUrl;if(!containerRef.current||!lottieSource||isStatic)return;let destroyed=false;function loadLottie(){if(!window.lottie){setTimeout(loadLottie,50);return;}lottieInstance.current=window.lottie.loadAnimation({container:containerRef.current,renderer:\"svg\",loop:false,autoplay:false,path:lottieSource,rendererSettings:{preserveAspectRatio:\"xMidYMid meet\"}});lottieInstance.current.setSpeed(speed);lottieInstance.current.addEventListener(\"DOMLoaded\",()=>{startTransition(()=>setIsLoaded(true));});}loadLottie();return()=>{destroyed=true;if(lottieInstance.current){lottieInstance.current.destroy();lottieInstance.current=null;}};},[lottieUrl,lottieFile,speed,isStatic]);function handleMouseEnter(){if(!lottieInstance.current)return;lottieInstance.current.setDirection(1);lottieInstance.current.setSpeed(speed);lottieInstance.current.play();}function handleMouseLeave(){if(!lottieInstance.current)return;lottieInstance.current.setDirection(-1);lottieInstance.current.setSpeed(speed);lottieInstance.current.play();}useEffect(()=>{if(isStatic&&lottieInstance.current){lottieInstance.current.goToAndStop(0,true);}},[isStatic,isLoaded]);return /*#__PURE__*/_jsxs(\"div\",{style:{width:\"100%\",height:\"100%\",position:\"relative\",...style},children:[!isLoaded&&poster?.src&&/*#__PURE__*/_jsx(\"img\",{src:poster.src,srcSet:poster.srcSet,alt:poster.alt||\"Poster\",style:{position:\"absolute\",top:0,left:0,width:\"100%\",height:\"100%\",objectFit:\"cover\",zIndex:2,pointerEvents:\"none\"}}),/*#__PURE__*/_jsx(\"div\",{ref:containerRef,style:{width:\"100%\",height:\"100%\",display:\"block\",overflow:\"hidden\",position:\"absolute\",top:0,left:0},onMouseEnter:isStatic?undefined:handleMouseEnter,onMouseLeave:isStatic?undefined:handleMouseLeave,tabIndex:0,\"aria-label\":\"Lottie animation\",role:\"img\"})]});}addPropertyControls(LottieHover,{lottieFile:{type:ControlType.File,allowedFileTypes:[\"json\"],title:\"Lottie File\"},lottieUrl:{type:ControlType.String,title:\"Lottie URL\",defaultValue:\"https://assets10.lottiefiles.com/packages/lf20_5ngs2ksb.json\",placeholder:\"Paste Lottie JSON URL\"},poster:{type:ControlType.ResponsiveImage,title:\"Poster Image\"},speed:{type:ControlType.Number,title:\"Speed\",defaultValue:1,min:.1,max:3,step:.05,unit:\"x\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"LottieHover\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"300\",\"framerIntrinsicHeight\":\"300\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LottieHover.map", "// Generated by Framer (629c622)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import LottieHover from\"https://framerusercontent.com/modules/mzX8ZJNYlwIuDbFhTy5D/NkBOP5g2PPJZhxrH28sZ/LottieHover.js\";const LottieHoverFonts=getFonts(LottieHover);const cycleOrder=[\"ijtGHWxVX\",\"rjHMDMdg9\"];const serializationHash=\"framer-OlWjB\";const variantClassNames={ijtGHWxVX:\"framer-v-72gurp\",rjHMDMdg9:\"framer-v-qb13ky\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"logo black\":\"ijtGHWxVX\",\"Logo white\":\"rjHMDMdg9\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ijtGHWxVX\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ijtGHWxVX\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WwF2LwV6C\"},motionChild:true,nodeId:\"ijtGHWxVX\",openInNewTab:false,scopeId:\"mJt9e_44l\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-72gurp\",className,classNames)} framer-orsrb9`,\"data-framer-name\":\"logo black\",layoutDependency:layoutDependency,layoutId:\"ijtGHWxVX\",ref:refBinding,style:{...style},...addPropertyOverrides({rjHMDMdg9:{\"data-framer-name\":\"Logo white\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rx7z6o-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"K4yIO61an-container\",nodeId:\"K4yIO61an\",rendersWithMotion:true,scopeId:\"mJt9e_44l\",style:{filter:\"grayscale(1) invert(0)\",WebkitFilter:\"grayscale(1) invert(0)\"},variants:{rjHMDMdg9:{filter:\"grayscale(1) invert(1)\",WebkitFilter:\"grayscale(1) invert(1)\"}},children:/*#__PURE__*/_jsx(LottieHover,{height:\"100%\",id:\"K4yIO61an\",layoutId:\"K4yIO61an\",lottieFile:\"https://framerusercontent.com/assets/AJIaVJ9eEk5KVAtDBzm7nL4.json\",lottieUrl:\"\",poster:addImageAlt({pixelHeight:200,pixelWidth:700,src:\"https://framerusercontent.com/images/DQ6YFqSwqYWmiD4HyXyNY6mDgeA.png\",srcSet:\"https://framerusercontent.com/images/DQ6YFqSwqYWmiD4HyXyNY6mDgeA.png?scale-down-to=512 512w,https://framerusercontent.com/images/DQ6YFqSwqYWmiD4HyXyNY6mDgeA.png 700w\"},\"\"),speed:2,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OlWjB.framer-orsrb9, .framer-OlWjB .framer-orsrb9 { display: block; }\",\".framer-OlWjB.framer-72gurp { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 42px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 170px; }\",\".framer-OlWjB .framer-1rx7z6o-container { aspect-ratio: 4.033333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); position: relative; width: 100%; z-index: 1; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 170\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"rjHMDMdg9\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramermJt9e_44l=withCSS(Component,css,\"framer-OlWjB\");export default FramermJt9e_44l;FramermJt9e_44l.displayName=\"Logo converge\";FramermJt9e_44l.defaultProps={height:42,width:170};addPropertyControls(FramermJt9e_44l,{variant:{options:[\"ijtGHWxVX\",\"rjHMDMdg9\"],optionTitles:[\"logo black\",\"Logo white\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramermJt9e_44l,[{explicitInter:true,fonts:[]},...LottieHoverFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermJt9e_44l\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rjHMDMdg9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"42\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"170\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mJt9e_44l.map", "// Generated by Framer (890879b)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={lU7_UfgFI:{hover:true,pressed:true},ZoWXI2t7b:{hover:true,pressed:true}};const cycleOrder=[\"lU7_UfgFI\",\"ZoWXI2t7b\"];const serializationHash=\"framer-jRg90\";const variantClassNames={lU7_UfgFI:\"framer-v-1makrmi\",ZoWXI2t7b:\"framer-v-n4e7zv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"lU7_UfgFI\",\"Variant 2\":\"ZoWXI2t7b\"};const getProps=({click,color2,fontSize2,height,id,link,padding,title,width,...props})=>{return{...props,hq3ycdgH8:link??props.hq3ycdgH8,hZsMBz6JJ:color2??props.hZsMBz6JJ??\"var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247))\",peJeE7dG0:click??props.peJeE7dG0,t8wYrO57I:fontSize2??props.t8wYrO57I??15,variant:humanReadableVariantMap[props.variant]??props.variant??\"lU7_UfgFI\",wgUIbymcZ:padding??props.wgUIbymcZ??\"0px 34px 0px 34px\",z7HPbfVsf:title??props.z7HPbfVsf??\"Get started\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,z7HPbfVsf,wgUIbymcZ,hq3ycdgH8,hZsMBz6JJ,t8wYrO57I,peJeE7dG0,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"lU7_UfgFI\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapo9ol9s=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(peJeE7dG0){const res=await peJeE7dG0(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:hq3ycdgH8,motionChild:true,nodeId:\"lU7_UfgFI\",openInNewTab:false,scopeId:\"uwA_VLqew\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1makrmi\",className,classNames)} framer-jocatc`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"lU7_UfgFI\",onTap:onTapo9ol9s,ref:refBinding,style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",\"--f8r4t8\":numberToPixelString(wgUIbymcZ),backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"lU7_UfgFI-hover\":{backgroundColor:\"var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247))\"},\"lU7_UfgFI-pressed\":{backgroundColor:\"var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247))\"},\"ZoWXI2t7b-hover\":{backgroundColor:\"var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28))\"},\"ZoWXI2t7b-pressed\":{backgroundColor:\"var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28))\"},ZoWXI2t7b:{\"--border-color\":\"var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28))\"}},...addPropertyOverrides({\"lU7_UfgFI-hover\":{\"data-framer-name\":undefined},\"lU7_UfgFI-pressed\":{\"data-framer-name\":undefined},\"ZoWXI2t7b-hover\":{\"data-framer-name\":undefined},\"ZoWXI2t7b-pressed\":{\"data-framer-name\":undefined},ZoWXI2t7b:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-t8wYrO57I-uwA_VLqew) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--variable-reference-hZsMBz6JJ-uwA_VLqew))\"},children:\"Get started\"})}),className:\"framer-reihid\",\"data-framer-name\":\"Label\",fonts:[\"GF;Rethink Sans-600\"],layoutDependency:layoutDependency,layoutId:\"UyJHwb8Ms\",style:{\"--extracted-tcooor\":\"var(--variable-reference-hZsMBz6JJ-uwA_VLqew)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-hZsMBz6JJ-uwA_VLqew\":hZsMBz6JJ,\"--variable-reference-t8wYrO57I-uwA_VLqew\":t8wYrO57I},text:z7HPbfVsf,variants:{\"lU7_UfgFI-hover\":{\"--extracted-tcooor\":\"var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28))\"},\"lU7_UfgFI-pressed\":{\"--extracted-tcooor\":\"var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28))\"},\"ZoWXI2t7b-hover\":{\"--extracted-tcooor\":\"var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247))\"},\"ZoWXI2t7b-pressed\":{\"--extracted-tcooor\":\"var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247))\"},ZoWXI2t7b:{\"--extracted-tcooor\":\"var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"lU7_UfgFI-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-t8wYrO57I-uwA_VLqew) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28)))\"},children:\"Get started\"})})},\"lU7_UfgFI-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-t8wYrO57I-uwA_VLqew) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28)))\"},children:\"Get started\"})})},\"ZoWXI2t7b-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-t8wYrO57I-uwA_VLqew) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247)))\"},children:\"Get started\"})})},\"ZoWXI2t7b-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-t8wYrO57I-uwA_VLqew) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247)))\"},children:\"Get started\"})})},ZoWXI2t7b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-t8wYrO57I-uwA_VLqew) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28)))\"},children:\"Get started\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jRg90.framer-jocatc, .framer-jRg90 .framer-jocatc { display: block; }\",\".framer-jRg90.framer-1makrmi { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 61px; justify-content: center; overflow: hidden; padding: var(--f8r4t8); position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-jRg90 .framer-reihid { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",'.framer-jRg90[data-border=\"true\"]::after, .framer-jRg90 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 61\n * @framerIntrinsicWidth 144\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"ZoWXI2t7b\":{\"layout\":[\"auto\",\"fixed\"]},\"Dht4l_BRG\":{\"layout\":[\"auto\",\"fixed\"]},\"YjIj4r33Y\":{\"layout\":[\"auto\",\"fixed\"]},\"HalDzom4l\":{\"layout\":[\"auto\",\"fixed\"]},\"pnRhDayTa\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"z7HPbfVsf\":\"title\",\"wgUIbymcZ\":\"padding\",\"hq3ycdgH8\":\"link\",\"hZsMBz6JJ\":\"color2\",\"t8wYrO57I\":\"fontSize2\",\"peJeE7dG0\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FrameruwA_VLqew=withCSS(Component,css,\"framer-jRg90\");export default FrameruwA_VLqew;FrameruwA_VLqew.displayName=\"BTN nav\";FrameruwA_VLqew.defaultProps={height:61,width:144};addPropertyControls(FrameruwA_VLqew,{variant:{options:[\"lU7_UfgFI\",\"ZoWXI2t7b\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},z7HPbfVsf:{defaultValue:\"Get started\",displayTextArea:false,title:\"Title\",type:ControlType.String},wgUIbymcZ:{defaultValue:\"0px 34px 0px 34px\",title:\"Padding\",type:ControlType.Padding},hq3ycdgH8:{title:\"Link\",type:ControlType.Link},hZsMBz6JJ:{defaultValue:\"var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247))\",title:\"Color 2\",type:ControlType.Color},t8wYrO57I:{defaultValue:15,title:\"Font Size 2\",type:ControlType.Number},peJeE7dG0:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FrameruwA_VLqew,[{explicitInter:true,fonts:[{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v5/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45Dmqkr9WCEvmma-aua4.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruwA_VLqew\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"144\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"ZoWXI2t7b\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Dht4l_BRG\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"YjIj4r33Y\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"HalDzom4l\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"pnRhDayTa\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"z7HPbfVsf\\\":\\\"title\\\",\\\"wgUIbymcZ\\\":\\\"padding\\\",\\\"hq3ycdgH8\\\":\\\"link\\\",\\\"hZsMBz6JJ\\\":\\\"color2\\\",\\\"t8wYrO57I\\\":\\\"fontSize2\\\",\\\"peJeE7dG0\\\":\\\"click\\\"}\",\"framerIntrinsicHeight\":\"61\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uwA_VLqew.map", "// Generated by Framer (20caf11)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-KjIde .framer-styles-preset-1h16mnk:not(.rich-text-wrapper), .framer-KjIde .framer-styles-preset-1h16mnk.rich-text-wrapper a { --framer-link-current-text-color: var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, #f7f7f7) /* {\"name\":\"C Grey BG\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, #f7f7f7) /* {\"name\":\"C Grey BG\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: rgba(247, 247, 247, 0.6); --framer-link-text-decoration: none; }'];export const className=\"framer-KjIde\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d31cd55)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-eaVm3 .framer-styles-preset-17zgu87:not(.rich-text-wrapper), .framer-eaVm3 .framer-styles-preset-17zgu87.rich-text-wrapper a { --framer-link-current-text-color: var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, #12111c); --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, #12111c); --framer-link-hover-text-decoration: underline; --framer-link-text-color: rgba(18, 17, 28, 0.68); --framer-link-text-decoration: none; }\"];export const className=\"framer-eaVm3\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0b8b5e5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/rd9kvsLxqrOEVILvq6u2/BKxyQDcvoSEl0GThJHTR/nPjnaytXW.js\";const cycleOrder=[\"O5NIHcFaV\",\"k1krW5l06\"];const serializationHash=\"framer-9oV1T\";const variantClassNames={k1krW5l06:\"framer-v-10x5z26\",O5NIHcFaV:\"framer-v-j0358r\"};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={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;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={\"Variant 1\":\"O5NIHcFaV\",\"Variant 2\":\"k1krW5l06\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"O5NIHcFaV\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"O5NIHcFaV\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"k1krW5l06\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"k1krW5l06\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-j0358r\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"O5NIHcFaV\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(247, 247, 247, 0.93)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\",...style},variants:{k1krW5l06:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},...addPropertyOverrides({k1krW5l06:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-krqa5y\",layoutDependency:layoutDependency,layoutId:\"wab2ZPa_s\",transformTemplate:transformTemplate1,...addPropertyOverrides({k1krW5l06:{transformTemplate:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16dcbws\",layoutDependency:layoutDependency,layoutId:\"Gv5snxxgC\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||177)*.5028248587570624-62.92)+0+0+8.64),pixelHeight:61,pixelWidth:60,src:\"https://framerusercontent.com/images/C5TW8T2EU99aC0As364QNujjj18.png\"},className:\"framer-dx7iy1\",layoutDependency:layoutDependency,layoutId:\"E16bTzfFz\",style:{borderBottomLeftRadius:170,borderBottomRightRadius:170,borderTopLeftRadius:170,borderTopRightRadius:170}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"35.28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZCa8pcjYI\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"Small Molecule Optimization\"})})})}),className:\"framer-1gv5lfv\",\"data-framer-name\":\"Small molecule optimization\",fonts:[\"GF;Rethink Sans-600\"],layoutDependency:layoutDependency,layoutId:\"DoAjGtpkM\",style:{\"--extracted-r6o4lv\":\"var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({k1krW5l06:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"35.28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZCa8pcjYI\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"Small Molecule Optimization\"})})})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14mkfk1\",layoutDependency:layoutDependency,layoutId:\"PgSrzCuWT\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||177)*.5028248587570624-62.92)+0+0+8.64),pixelHeight:61,pixelWidth:60,src:\"https://framerusercontent.com/images/kUcwSseXAS6AyemSn51PSax0xQ.png\"},className:\"framer-1lrkqky\",layoutDependency:layoutDependency,layoutId:\"ruO4YtpB_\",style:{borderBottomLeftRadius:170,borderBottomRightRadius:170,borderTopLeftRadius:170,borderTopRightRadius:170}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"35.28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jRvOYoAkg\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"Generate Antibodies\"})})})}),className:\"framer-qg0tuw\",\"data-framer-name\":\"Small molecule optimization\",fonts:[\"GF;Rethink Sans-600\"],layoutDependency:layoutDependency,layoutId:\"o8ovgjxfw\",style:{\"--extracted-r6o4lv\":\"var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({k1krW5l06:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"35.28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jRvOYoAkg\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"Generate Antibodies\"})})})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5jbzmm\",layoutDependency:layoutDependency,layoutId:\"FciewROtC\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||177)*.5028248587570624-62.92)+0+45.28+8.64),pixelHeight:207,pixelWidth:206,src:\"https://framerusercontent.com/images/x8tP6C1z51m09BD67e4wSNcLc.png\"},className:\"framer-1piorg8\",layoutDependency:layoutDependency,layoutId:\"zxmGB6GpY\",style:{borderBottomLeftRadius:170,borderBottomRightRadius:170,borderTopLeftRadius:170,borderTopRightRadius:170}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"35.28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FtOe61UBj\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"Discover New\\xa0Targets\"})})})}),className:\"framer-1k9gpmt\",\"data-framer-name\":\"Small molecule optimization\",fonts:[\"GF;Rethink Sans-600\"],layoutDependency:layoutDependency,layoutId:\"sLb4OTLlo\",style:{\"--extracted-r6o4lv\":\"var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({k1krW5l06:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"35.28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FtOe61UBj\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"Discover New\\xa0Targets\"})})})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6agn5h\",layoutDependency:layoutDependency,layoutId:\"fHxjYOp4g\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||177)*.5028248587570624-62.92)+0+45.28+8.64),pixelHeight:61,pixelWidth:60,src:\"https://framerusercontent.com/images/mdAnv9ubboSDdpeJ0770GqnW5T0.png\"},className:\"framer-ky7daf\",layoutDependency:layoutDependency,layoutId:\"YVScmnxfP\",style:{borderBottomLeftRadius:170,borderBottomRightRadius:170,borderTopLeftRadius:170,borderTopRightRadius:170}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"35.28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JM2syknGS\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"Design mRNA Vaccines\"})})})}),className:\"framer-1x2yyu\",\"data-framer-name\":\"Small molecule optimization\",fonts:[\"GF;Rethink Sans-600\"],layoutDependency:layoutDependency,layoutId:\"mxTMh2prP\",style:{\"--extracted-r6o4lv\":\"var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({k1krW5l06:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"35.28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JM2syknGS\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"Design mRNA Vaccines\"})})})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aff67m\",layoutDependency:layoutDependency,layoutId:\"puWerjS2d\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||177)*.5028248587570624-62.92)+0+90.56+8.64),pixelHeight:61,pixelWidth:60,src:\"https://framerusercontent.com/images/Q0HRqGY6zCh9wWnv87jbp96m3Lk.png\"},className:\"framer-aws4d3\",layoutDependency:layoutDependency,layoutId:\"Z_rWKHpRr\",style:{borderBottomLeftRadius:170,borderBottomRightRadius:170,borderTopLeftRadius:170,borderTopRightRadius:170}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"35.28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hgYIGNl7q\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"Identify New Biomarkers\"})})})}),className:\"framer-1kjgjai\",\"data-framer-name\":\"Small molecule optimization\",fonts:[\"GF;Rethink Sans-600\"],layoutDependency:layoutDependency,layoutId:\"alYj7OGkh\",style:{\"--extracted-r6o4lv\":\"var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({k1krW5l06:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"35.28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hgYIGNl7q\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"Identify New Biomarkers\"})})})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ct34gx\",layoutDependency:layoutDependency,layoutId:\"orf7WzMmO\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||177)*.5028248587570624-62.92)+0+90.56+8.64),pixelHeight:61,pixelWidth:60,src:\"https://framerusercontent.com/images/8Kpr8qSebbtTU31zc3VDmHnMf2w.png\"},className:\"framer-19yzaho\",layoutDependency:layoutDependency,layoutId:\"SVyc7TTWw\",style:{borderBottomLeftRadius:170,borderBottomRightRadius:170,borderTopLeftRadius:170,borderTopRightRadius:170}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"35.28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"o1CYnu8cs\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"Engineer Novel Proteins\"})})})}),className:\"framer-z9zlsh\",\"data-framer-name\":\"Small molecule optimization\",fonts:[\"GF;Rethink Sans-600\"],layoutDependency:layoutDependency,layoutId:\"jYo4YvQBx\",style:{\"--extracted-r6o4lv\":\"var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({k1krW5l06:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"35.28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"o1CYnu8cs\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"Engineer Novel Proteins\"})})})})}},baseVariant,gestureVariant)})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"116.6%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(39, 38, 48, 0.43))\"},children:\"Use cases\"})}),className:\"framer-xtwyp2\",\"data-framer-name\":\"page\",fonts:[\"GF;Rethink Sans-700\"],layoutDependency:layoutDependency,layoutId:\"cI5MUSm4q\",style:{\"--extracted-r6o4lv\":\"rgba(39, 38, 48, 0.43)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9oV1T.framer-1madi7p, .framer-9oV1T .framer-1madi7p { display: block; }\",\".framer-9oV1T.framer-j0358r { height: 177px; overflow: hidden; position: relative; width: 500px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9oV1T .framer-krqa5y { display: grid; flex: none; gap: 10px; grid-auto-rows: min-content; grid-template-columns: repeat(2, 230px); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; width: 431px; }\",\".framer-9oV1T .framer-16dcbws, .framer-9oV1T .framer-14mkfk1, .framer-9oV1T .framer-5jbzmm, .framer-9oV1T .framer-6agn5h, .framer-9oV1T .framer-1aff67m, .framer-9oV1T .framer-1ct34gx { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9oV1T .framer-dx7iy1, .framer-9oV1T .framer-1lrkqky, .framer-9oV1T .framer-1piorg8, .framer-9oV1T .framer-ky7daf, .framer-9oV1T .framer-aws4d3, .framer-9oV1T .framer-19yzaho { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; width: 18px; }\",\".framer-9oV1T .framer-1gv5lfv, .framer-9oV1T .framer-qg0tuw, .framer-9oV1T .framer-1k9gpmt, .framer-9oV1T .framer-1x2yyu, .framer-9oV1T .framer-1kjgjai, .framer-9oV1T .framer-z9zlsh { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-9oV1T .framer-xtwyp2 { flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 108px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9oV1T .framer-16dcbws, .framer-9oV1T .framer-14mkfk1, .framer-9oV1T .framer-5jbzmm, .framer-9oV1T .framer-6agn5h, .framer-9oV1T .framer-1aff67m, .framer-9oV1T .framer-1ct34gx { gap: 0px; } .framer-9oV1T .framer-16dcbws > *, .framer-9oV1T .framer-14mkfk1 > *, .framer-9oV1T .framer-5jbzmm > *, .framer-9oV1T .framer-6agn5h > *, .framer-9oV1T .framer-1aff67m > *, .framer-9oV1T .framer-1ct34gx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-9oV1T .framer-16dcbws > :first-child, .framer-9oV1T .framer-14mkfk1 > :first-child, .framer-9oV1T .framer-5jbzmm > :first-child, .framer-9oV1T .framer-6agn5h > :first-child, .framer-9oV1T .framer-1aff67m > :first-child, .framer-9oV1T .framer-1ct34gx > :first-child { margin-left: 0px; } .framer-9oV1T .framer-16dcbws > :last-child, .framer-9oV1T .framer-14mkfk1 > :last-child, .framer-9oV1T .framer-5jbzmm > :last-child, .framer-9oV1T .framer-6agn5h > :last-child, .framer-9oV1T .framer-1aff67m > :last-child, .framer-9oV1T .framer-1ct34gx > :last-child { margin-right: 0px; } }\",\".framer-9oV1T.framer-v-10x5z26.framer-j0358r { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: min-content; }\",\".framer-9oV1T.framer-v-10x5z26 .framer-krqa5y { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; justify-content: center; left: unset; order: 1; position: relative; top: unset; width: min-content; }\",\".framer-9oV1T.framer-v-10x5z26 .framer-16dcbws, .framer-9oV1T.framer-v-10x5z26 .framer-14mkfk1, .framer-9oV1T.framer-v-10x5z26 .framer-5jbzmm, .framer-9oV1T.framer-v-10x5z26 .framer-6agn5h, .framer-9oV1T.framer-v-10x5z26 .framer-1aff67m, .framer-9oV1T.framer-v-10x5z26 .framer-1ct34gx { align-self: unset; height: min-content; }\",\".framer-9oV1T.framer-v-10x5z26 .framer-xtwyp2 { left: unset; order: 0; position: relative; top: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9oV1T.framer-v-10x5z26.framer-j0358r, .framer-9oV1T.framer-v-10x5z26 .framer-krqa5y { gap: 0px; } .framer-9oV1T.framer-v-10x5z26.framer-j0358r > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-9oV1T.framer-v-10x5z26.framer-j0358r > :first-child, .framer-9oV1T.framer-v-10x5z26 .framer-krqa5y > :first-child { margin-top: 0px; } .framer-9oV1T.framer-v-10x5z26.framer-j0358r > :last-child, .framer-9oV1T.framer-v-10x5z26 .framer-krqa5y > :last-child { margin-bottom: 0px; } .framer-9oV1T.framer-v-10x5z26 .framer-krqa5y > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 177\n * @framerIntrinsicWidth 500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"k1krW5l06\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSczTU7cX1=withCSS(Component,css,\"framer-9oV1T\");export default FramerSczTU7cX1;FramerSczTU7cX1.displayName=\"use cases dropdown\";FramerSczTU7cX1.defaultProps={height:177,width:500};addPropertyControls(FramerSczTU7cX1,{variant:{options:[\"O5NIHcFaV\",\"k1krW5l06\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerSczTU7cX1,[{explicitInter:true,fonts:[{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v5/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45Dmqkr9WCEvmma-aua4.woff2\",weight:\"600\"},{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v5/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45DmqkoZWCEvmma-aua4.woff2\",weight:\"700\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSczTU7cX1\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"500\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"k1krW5l06\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"177\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SczTU7cX1.map", "// Generated by Framer (629c622)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={NkryWAdj0:{hover:true}};const serializationHash=\"framer-fS784\";const variantClassNames={NkryWAdj0:\"framer-v-1uoi2ir\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,image,link,text,title,width,...props})=>{return{...props,azOi1fFok:text??props.azOi1fFok??\"Ensure the right users have access to the right resources at the right time \",gkv56kHj8:title??props.gkv56kHj8??\"Modern Identity Governance\",twWO8PDlC:link??props.twWO8PDlC,XYcvE5N8Y:image??props.XYcvE5N8Y??{alt:\"\",pixelHeight:46,pixelWidth:46,src:\"https://framerusercontent.com/images/4rA4bjoEWYjxQPP5nNsSG1sMOo.svg\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,gkv56kHj8,azOi1fFok,XYcvE5N8Y,twWO8PDlC,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"NkryWAdj0\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:twWO8PDlC,motionChild:true,nodeId:\"NkryWAdj0\",openInNewTab:false,scopeId:\"VWRvXFECN\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1uoi2ir\",className,classNames)} framer-1eu77d0`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"NkryWAdj0\",ref:refBinding,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},variants:{\"NkryWAdj0-hover\":{backgroundColor:\"rgba(10, 157, 255, 0.08)\"}},...addPropertyOverrides({\"NkryWAdj0-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+18),pixelHeight:46,pixelWidth:46,sizes:\"44px\",...toResponsiveImage(XYcvE5N8Y)},className:\"framer-eikuoe\",layoutDependency:layoutDependency,layoutId:\"GlvjCQYKH\",style:{borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18okkew\",\"data-framer-name\":\"Frame 1948754663\",layoutDependency:layoutDependency,layoutId:\"yRM9p5rDa\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"34.7px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28)))\"},children:\"Modern Identity Governance\"})}),className:\"framer-17q4qfq\",\"data-framer-name\":\"Modern Identity Governance\",fonts:[\"GF;Rethink Sans-500\"],layoutDependency:layoutDependency,layoutId:\"AG9edH3hQ\",style:{\"--extracted-r6o4lv\":\"var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28))\",\"--framer-paragraph-spacing\":\"0px\"},text:gkv56kHj8,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e5817f6a-a5c7-4172-a518-8cc34a94c6db, rgb(39, 38, 48)))\"},children:\"Ensure the right users have access to the right resources at the right time \"})}),className:\"framer-1ycgh2u\",\"data-framer-name\":\"Ensure the right users have access to the right resources at the right time\",fonts:[\"GF;Rethink Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"Kc2xjOFFO\",style:{\"--extracted-r6o4lv\":\"var(--token-e5817f6a-a5c7-4172-a518-8cc34a94c6db, rgb(39, 38, 48))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:azOi1fFok,variants:{\"NkryWAdj0-hover\":{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fS784.framer-1eu77d0, .framer-fS784 .framer-1eu77d0 { display: block; }\",\".framer-fS784.framer-1uoi2ir { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: flex-start; overflow: visible; padding: 18px; position: relative; text-decoration: none; width: 398px; }\",\".framer-fS784 .framer-eikuoe { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); overflow: visible; position: relative; width: 44px; }\",\".framer-fS784 .framer-18okkew { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-fS784 .framer-17q4qfq, .framer-fS784 .framer-1ycgh2u { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 110\n * @framerIntrinsicWidth 398\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"N3uweoQkG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"gkv56kHj8\":\"title\",\"azOi1fFok\":\"text\",\"XYcvE5N8Y\":\"image\",\"twWO8PDlC\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerVWRvXFECN=withCSS(Component,css,\"framer-fS784\");export default FramerVWRvXFECN;FramerVWRvXFECN.displayName=\"Page Solution\";FramerVWRvXFECN.defaultProps={height:110,width:398};addPropertyControls(FramerVWRvXFECN,{gkv56kHj8:{defaultValue:\"Modern Identity Governance\",displayTextArea:false,title:\"Title\",type:ControlType.String},azOi1fFok:{defaultValue:\"Ensure the right users have access to the right resources at the right time \",displayTextArea:true,title:\"Text\",type:ControlType.String},XYcvE5N8Y:{__defaultAssetReference:\"data:framer/asset-reference,4rA4bjoEWYjxQPP5nNsSG1sMOo.svg?originalFilename=Frame+1948754397.svg&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,4rA4bjoEWYjxQPP5nNsSG1sMOo.svg?originalFilename=Frame+1948754397.svg&preferredSize=auto\"},title:\"Image\",type:ControlType.ResponsiveImage},twWO8PDlC:{title:\"Link\",type:ControlType.Link}});addFonts(FramerVWRvXFECN,[{explicitInter:true,fonts:[{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v6/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45DmqklNRCEvmma-aua4.woff2\",weight:\"500\"},{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v6/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45DmqkmFRCEvmma-aua4.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVWRvXFECN\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"398\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"gkv56kHj8\\\":\\\"title\\\",\\\"azOi1fFok\\\":\\\"text\\\",\\\"XYcvE5N8Y\\\":\\\"image\\\",\\\"twWO8PDlC\\\":\\\"link\\\"}\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"110\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"N3uweoQkG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VWRvXFECN.map", "// Generated by Framer (2797bee)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,Link,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/pwujKvGZNj713vmgAaTx/Rgf3rKmo9ivMFXS6RavH/LFj_Nacfl.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/sg9uqFZ8jorETdZHeQtF/ItI8DRNnQ4CCIfKhNm7P/nPjnaytXW.js\";import LogoConverge from\"https://framerusercontent.com/modules/MdyXMpHZ8uufilOrv2NJ/4zlmk7kBXMWw4svVrPsi/mJt9e_44l.js\";import UseCasesDropdown from\"https://framerusercontent.com/modules/ahBm1XVZL7Ju8upNWfgc/m6GcXhnRuWLCbxZbUaVF/SczTU7cX1.js\";import BTNNav from\"https://framerusercontent.com/modules/l8mbNUZsnjUFKPgtfZl0/MQzn9SdhB74lsONR1bFA/uwA_VLqew.js\";import PageSolution from\"https://framerusercontent.com/modules/bxVApEdgc27zjbym24x1/KiSUqxfheiCjxl5oJszH/VWRvXFECN.js\";const LogoConvergeFonts=getFonts(LogoConverge);const PageSolutionFonts=getFonts(PageSolution);const UseCasesDropdownFonts=getFonts(UseCasesDropdown);const MotionDivWithFX=withFX(motion.div);const BTNNavFonts=getFonts(BTNNav);const cycleOrder=[\"r6lBuOSTF\",\"EvsIlw_DM\",\"wUYOTgsqp\",\"r_bnRIbQS\",\"Fp0Q3oHWY\"];const serializationHash=\"framer-jDxwT\";const variantClassNames={EvsIlw_DM:\"framer-v-19ar1u5\",Fp0Q3oHWY:\"framer-v-knilrt\",r_bnRIbQS:\"framer-v-u6kuot\",r6lBuOSTF:\"framer-v-1qedtye\",wUYOTgsqp:\"framer-v-qg7yas\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const transition3={duration:0,type:\"tween\"};const transition4={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"mob \":\"wUYOTgsqp\",\"mob open\":\"Fp0Q3oHWY\",\"mob w\":\"r_bnRIbQS\",\"nav \":\"r6lBuOSTF\",\"nav w\":\"EvsIlw_DM\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"r6lBuOSTF\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"r6lBuOSTF\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1tnajwj=activeVariantCallback(async(...args)=>{setVariant(\"Fp0Q3oHWY\");});const onTap1e1ftu7=activeVariantCallback(async(...args)=>{setVariant(\"r_bnRIbQS\");});const onMouseEntertxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const peJeE7dG0r3legl=activeVariantCallback(async(...args)=>{setVariant(\"r6lBuOSTF\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"wUYOTgsqp\",\"r_bnRIbQS\",\"Fp0Q3oHWY\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"wUYOTgsqp\",\"r_bnRIbQS\"].includes(baseVariant))return false;return true;};const ref1=React.useRef(null);const ref2=React.useRef(null);const router=useRouter();const isDisplayed2=()=>{if(baseVariant===\"Fp0Q3oHWY\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({Fp0Q3oHWY:{value:transition3},r_bnRIbQS:{value:transition3},wUYOTgsqp:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1qedtye\",className,classNames),\"data-framer-name\":\"nav \",layoutDependency:layoutDependency,layoutId:\"r6lBuOSTF\",ref:refBinding,style:{backgroundColor:\"rgba(255, 255, 255, 0)\",...style},variants:{EvsIlw_DM:{backgroundColor:\"rgb(255, 255, 255)\"},Fp0Q3oHWY:{backgroundColor:\"rgb(255, 255, 255)\"},r_bnRIbQS:{backgroundColor:\"rgb(255, 255, 255)\"},wUYOTgsqp:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({EvsIlw_DM:{\"data-framer-name\":\"nav w\"},Fp0Q3oHWY:{\"data-framer-name\":\"mob open\"},r_bnRIbQS:{\"data-framer-name\":\"mob w\"},wUYOTgsqp:{\"data-framer-name\":\"mob \"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pgszu9\",\"data-framer-name\":\"logo + Ham\",layoutDependency:layoutDependency,layoutId:\"NUhSFXtne\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:\"141px\",y:(componentViewport?.y||0)+(20+((componentViewport?.height||80)-40-42)/2)+0,...addPropertyOverrides({Fp0Q3oHWY:{width:\"123px\",y:(componentViewport?.y||0)+12+0+1},r_bnRIbQS:{width:\"123px\",y:(componentViewport?.y||0)+12+0+1},wUYOTgsqp:{width:\"123px\",y:(componentViewport?.y||0)+12+0+1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sh8ez-container\",layoutDependency:layoutDependency,layoutId:\"HX1rab0mA-container\",nodeId:\"HX1rab0mA\",rendersWithMotion:true,scopeId:\"AtxUGuro_\",children:/*#__PURE__*/_jsx(LogoConverge,{height:\"100%\",id:\"HX1rab0mA\",layoutId:\"HX1rab0mA\",style:{height:\"100%\",width:\"100%\"},variant:\"rjHMDMdg9\",width:\"100%\",...addPropertyOverrides({EvsIlw_DM:{variant:\"ijtGHWxVX\"},Fp0Q3oHWY:{variant:\"ijtGHWxVX\"},r_bnRIbQS:{variant:\"ijtGHWxVX\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pnae5y\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"yjkX5LLZi\",...addPropertyOverrides({Fp0Q3oHWY:{\"data-highlight\":true,onTap:onTap1e1ftu7},r_bnRIbQS:{\"data-highlight\":true,onTap:onTap1tnajwj},wUYOTgsqp:{\"data-highlight\":true,onTap:onTap1tnajwj}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ut219o\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"BrEnhEnwE\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{Fp0Q3oHWY:{backgroundColor:\"var(--token-f2cbb37c-67d5-4545-89ef-d8834f69a28e, rgb(30, 31, 33))\",rotate:-45},r_bnRIbQS:{backgroundColor:\"var(--token-f2cbb37c-67d5-4545-89ef-d8834f69a28e, rgb(30, 31, 33))\"},wUYOTgsqp:{backgroundColor:\"var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247))\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o5geqf\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"YGj_LokZ0\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{Fp0Q3oHWY:{backgroundColor:\"var(--token-f2cbb37c-67d5-4545-89ef-d8834f69a28e, rgb(30, 31, 33))\",rotate:45},r_bnRIbQS:{backgroundColor:\"var(--token-f2cbb37c-67d5-4545-89ef-d8834f69a28e, rgb(30, 31, 33))\"},wUYOTgsqp:{backgroundColor:\"var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247))\"}}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nron9b\",\"data-framer-name\":\"pages\",layoutDependency:layoutDependency,layoutId:\"wvvVjfXVo\",style:{opacity:1},variants:{Fp0Q3oHWY:{opacity:1},r_bnRIbQS:{opacity:0},wUYOTgsqp:{opacity:0}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yrzs0m\",layoutDependency:layoutDependency,layoutId:\"HTGwJWfOZ\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"116.6%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZCa8pcjYI\"},motionChild:true,nodeId:\"jy_7O25Ax\",openInNewTab:false,relValues:[],scopeId:\"AtxUGuro_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1h16mnk\",\"data-styles-preset\":\"LFj_Nacfl\",children:\"Use Cases\"})})})}),className:\"framer-vexkdr\",\"data-framer-name\":\"page\",\"data-highlight\":true,fonts:[\"GF;Rethink Sans-500\"],id:`${layoutId}-vexkdr`,layoutDependency:layoutDependency,layoutId:\"jy_7O25Ax\",onMouseEnter:onMouseEntertxyyif({overlay}),ref:ref1,style:{\"--extracted-r6o4lv\":\"var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247))\",\"--framer-paragraph-spacing\":\"0px\",opacity:1},variants:{Fp0Q3oHWY:{opacity:.68}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({EvsIlw_DM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"116.6%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZCa8pcjYI\"},motionChild:true,nodeId:\"jy_7O25Ax\",openInNewTab:false,relValues:[],scopeId:\"AtxUGuro_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"Use Cases\"})})})})},Fp0Q3oHWY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"116.6%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZCa8pcjYI\"},motionChild:true,nodeId:\"jy_7O25Ax\",openInNewTab:false,relValues:[],scopeId:\"AtxUGuro_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"Use Cases\"})})})}),fonts:[\"GF;Rethink Sans-600\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref1,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-vexkdr`,offsetX:-90,offsetY:35,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1y2xuc1\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"n7gQWUv3w\",ref:ref2,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ZCa8pcjYI\"},implicitPathVariables:undefined},{href:{webPageId:\"ZCa8pcjYI\"},implicitPathVariables:undefined},{href:{webPageId:\"ZCa8pcjYI\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fzqn5o-container\",layoutDependency:layoutDependency,layoutId:\"acSsOVphw-container\",nodeId:\"acSsOVphw\",rendersWithMotion:true,scopeId:\"AtxUGuro_\",children:/*#__PURE__*/_jsx(PageSolution,{azOi1fFok:\"Accelerates small molecule design by predicting affinity, stability, ADME, enabling faster, safer optimization.\",gkv56kHj8:\"Small Molecule Optimization\",height:\"100%\",id:\"acSsOVphw\",layoutId:\"acSsOVphw\",twWO8PDlC:resolvedLinks[0],width:\"100%\",XYcvE5N8Y:addImageAlt({pixelHeight:135,pixelWidth:136,src:\"https://framerusercontent.com/images/nbfo86lj3TABdpeDnnuPG0Mixtw.svg\"},\"\"),...addPropertyOverrides({EvsIlw_DM:{twWO8PDlC:resolvedLinks[1]},Fp0Q3oHWY:{twWO8PDlC:resolvedLinks[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"JM2syknGS\"},implicitPathVariables:undefined},{href:{webPageId:\"JM2syknGS\"},implicitPathVariables:undefined},{href:{webPageId:\"JM2syknGS\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kl9xx-container\",layoutDependency:layoutDependency,layoutId:\"SdUROJrFX-container\",nodeId:\"SdUROJrFX\",rendersWithMotion:true,scopeId:\"AtxUGuro_\",children:/*#__PURE__*/_jsx(PageSolution,{azOi1fFok:\"Accelerates mRNA vaccine design by optimizing for immune response, stability, speed\u2014enabling rapid, personalized development.\",gkv56kHj8:\"Design mRNA Vaccines\",height:\"100%\",id:\"SdUROJrFX\",layoutId:\"SdUROJrFX\",twWO8PDlC:resolvedLinks1[0],width:\"100%\",XYcvE5N8Y:addImageAlt({pixelHeight:135,pixelWidth:135,src:\"https://framerusercontent.com/images/m3NInr66oYqOVfuyXFavMHIt1Mo.svg\"},\"\"),...addPropertyOverrides({EvsIlw_DM:{twWO8PDlC:resolvedLinks1[1]},Fp0Q3oHWY:{twWO8PDlC:resolvedLinks1[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"jRvOYoAkg\"},implicitPathVariables:undefined},{href:{webPageId:\"jRvOYoAkg\"},implicitPathVariables:undefined},{href:{webPageId:\"jRvOYoAkg\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sortbw-container\",layoutDependency:layoutDependency,layoutId:\"Pe_CII7E7-container\",nodeId:\"Pe_CII7E7\",rendersWithMotion:true,scopeId:\"AtxUGuro_\",children:/*#__PURE__*/_jsx(PageSolution,{azOi1fFok:\"Enables precise antibody engineering\u2014supporting humanization, de novo design, nanobody creation, and therapeutic development.\",gkv56kHj8:\"Generate Antibodies\",height:\"100%\",id:\"Pe_CII7E7\",layoutId:\"Pe_CII7E7\",twWO8PDlC:resolvedLinks2[0],width:\"100%\",XYcvE5N8Y:addImageAlt({pixelHeight:135,pixelWidth:136,src:\"https://framerusercontent.com/images/SkoPL6MJpCKdu12ZrshRQa1r1HM.svg\"},\"\"),...addPropertyOverrides({EvsIlw_DM:{twWO8PDlC:resolvedLinks2[1]},Fp0Q3oHWY:{twWO8PDlC:resolvedLinks2[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hgYIGNl7q\"},implicitPathVariables:undefined},{href:{webPageId:\"hgYIGNl7q\"},implicitPathVariables:undefined},{href:{webPageId:\"hgYIGNl7q\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1oc1azy-container\",layoutDependency:layoutDependency,layoutId:\"GwVbKJYIZ-container\",nodeId:\"GwVbKJYIZ\",rendersWithMotion:true,scopeId:\"AtxUGuro_\",children:/*#__PURE__*/_jsx(PageSolution,{azOi1fFok:\"Maps phenotypes to molecular causes via multiomics\u2014enabling diagnosis, targeted therapies, and biomarker-driven, effective treatments.\",gkv56kHj8:\"Identify New Biomarkers\",height:\"100%\",id:\"GwVbKJYIZ\",layoutId:\"GwVbKJYIZ\",twWO8PDlC:resolvedLinks3[0],width:\"100%\",XYcvE5N8Y:addImageAlt({pixelHeight:135,pixelWidth:135,src:\"https://framerusercontent.com/images/u0s83v8wB4LFjDjWHf74wjD3A.svg\"},\"\"),...addPropertyOverrides({EvsIlw_DM:{twWO8PDlC:resolvedLinks3[1]},Fp0Q3oHWY:{twWO8PDlC:resolvedLinks3[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FtOe61UBj\"},implicitPathVariables:undefined},{href:{webPageId:\"FtOe61UBj\"},implicitPathVariables:undefined},{href:{webPageId:\"FtOe61UBj\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tabu6o-container\",layoutDependency:layoutDependency,layoutId:\"A7XF7w6fv-container\",nodeId:\"A7XF7w6fv\",rendersWithMotion:true,scopeId:\"AtxUGuro_\",children:/*#__PURE__*/_jsx(PageSolution,{azOi1fFok:\"Links phenotypes to molecular causes via multiomics, enabling better diagnosis, targeted therapies, and biomarker-driven trials.\",gkv56kHj8:\"Discover New\\xa0Targets\",height:\"100%\",id:\"A7XF7w6fv\",layoutId:\"A7XF7w6fv\",twWO8PDlC:resolvedLinks4[0],width:\"100%\",XYcvE5N8Y:addImageAlt({pixelHeight:135,pixelWidth:135,src:\"https://framerusercontent.com/images/rKUutXmDLoYFouAzgr3cxnEsWg.svg\"},\"\"),...addPropertyOverrides({EvsIlw_DM:{twWO8PDlC:resolvedLinks4[1]},Fp0Q3oHWY:{twWO8PDlC:resolvedLinks4[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"o1CYnu8cs\"},implicitPathVariables:undefined},{href:{webPageId:\"o1CYnu8cs\"},implicitPathVariables:undefined},{href:{webPageId:\"o1CYnu8cs\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ntqghm-container\",layoutDependency:layoutDependency,layoutId:\"bHwsiiNqs-container\",nodeId:\"bHwsiiNqs\",rendersWithMotion:true,scopeId:\"AtxUGuro_\",children:/*#__PURE__*/_jsx(PageSolution,{azOi1fFok:\"Accelerates protein design\u2014creating peptides, gene-editing tools, novel enzymes for effective, specific, next-generation biotech therapies.\",gkv56kHj8:\"Engineer Novel Proteins\",height:\"100%\",id:\"bHwsiiNqs\",layoutId:\"bHwsiiNqs\",twWO8PDlC:resolvedLinks5[0],width:\"100%\",XYcvE5N8Y:addImageAlt({pixelHeight:135,pixelWidth:135,src:\"https://framerusercontent.com/images/0Q7rlDP4idlNJZXeNBCjsL8cE.svg\"},\"\"),...addPropertyOverrides({EvsIlw_DM:{twWO8PDlC:resolvedLinks5[1]},Fp0Q3oHWY:{twWO8PDlC:resolvedLinks5[2]}},baseVariant,gestureVariant)})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1u36gbv-container\",layoutDependency:layoutDependency,layoutId:\"DSoWxWtqW-container\",nodeId:\"DSoWxWtqW\",rendersWithMotion:true,scopeId:\"AtxUGuro_\",children:/*#__PURE__*/_jsx(UseCasesDropdown,{height:\"100%\",id:\"DSoWxWtqW\",layoutId:\"DSoWxWtqW\",variant:\"k1krW5l06\",width:\"100%\"})})})]})})})]})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1274t3y\",\"data-framer-name\":\"mob  use cases\",layoutDependency:layoutDependency,layoutId:\"gugsAOzw6\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3h2df7\",layoutDependency:layoutDependency,layoutId:\"P56LPtuGn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"35.28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZCa8pcjYI\"},motionChild:true,nodeId:\"X9yj7ShdN\",openInNewTab:false,relValues:[],scopeId:\"AtxUGuro_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"Small Molecule Optimization\"})})})}),className:\"framer-1vyg7et\",\"data-framer-name\":\"Small molecule optimization\",fonts:[\"GF;Rethink Sans-600\"],layoutDependency:layoutDependency,layoutId:\"X9yj7ShdN\",style:{\"--extracted-r6o4lv\":\"var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hn7ev1\",layoutDependency:layoutDependency,layoutId:\"mpP7H0jVA\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"35.28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jRvOYoAkg\"},motionChild:true,nodeId:\"aoZ_S7YtP\",openInNewTab:false,relValues:[],scopeId:\"AtxUGuro_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"Generate Antibodies\"})})})}),className:\"framer-1mb0r87\",\"data-framer-name\":\"Small molecule optimization\",fonts:[\"GF;Rethink Sans-600\"],layoutDependency:layoutDependency,layoutId:\"aoZ_S7YtP\",style:{\"--extracted-r6o4lv\":\"var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10b1fae\",layoutDependency:layoutDependency,layoutId:\"TTdQvuqqz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"35.28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FtOe61UBj\"},motionChild:true,nodeId:\"bEXFvqIo2\",openInNewTab:false,relValues:[],scopeId:\"AtxUGuro_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"Discover New\\xa0Targets\"})})})}),className:\"framer-1x9ranr\",\"data-framer-name\":\"Small molecule optimization\",fonts:[\"GF;Rethink Sans-600\"],layoutDependency:layoutDependency,layoutId:\"bEXFvqIo2\",style:{\"--extracted-r6o4lv\":\"var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mz6d0k\",layoutDependency:layoutDependency,layoutId:\"C3AwAdjtF\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"35.28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JM2syknGS\"},motionChild:true,nodeId:\"QpZscE2h5\",openInNewTab:false,relValues:[],scopeId:\"AtxUGuro_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"Design mRNA Vaccines\"})})})}),className:\"framer-1mphhy3\",\"data-framer-name\":\"Small molecule optimization\",fonts:[\"GF;Rethink Sans-600\"],layoutDependency:layoutDependency,layoutId:\"QpZscE2h5\",style:{\"--extracted-r6o4lv\":\"var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11qdipl\",layoutDependency:layoutDependency,layoutId:\"JvZ6ifi9I\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"35.28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hgYIGNl7q\"},motionChild:true,nodeId:\"czaAgJm1r\",openInNewTab:false,relValues:[],scopeId:\"AtxUGuro_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"Identify New Biomarkers\"})})})}),className:\"framer-1exastj\",\"data-framer-name\":\"Small molecule optimization\",fonts:[\"GF;Rethink Sans-600\"],layoutDependency:layoutDependency,layoutId:\"czaAgJm1r\",style:{\"--extracted-r6o4lv\":\"var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wl9fne\",layoutDependency:layoutDependency,layoutId:\"r1j9PDMrj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"35.28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"o1CYnu8cs\"},motionChild:true,nodeId:\"x5gE2yRtL\",openInNewTab:false,relValues:[],scopeId:\"AtxUGuro_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"Engineer Novel Proteins\"})})})}),className:\"framer-1uxua1r\",\"data-framer-name\":\"Small molecule optimization\",fonts:[\"GF;Rethink Sans-600\"],layoutDependency:layoutDependency,layoutId:\"x5gE2yRtL\",style:{\"--extracted-r6o4lv\":\"var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"116.6%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZVPm4QWZS\"},motionChild:true,nodeId:\"l__FGDkgQ\",openInNewTab:false,relValues:[],scopeId:\"AtxUGuro_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1h16mnk\",\"data-styles-preset\":\"LFj_Nacfl\",children:\"About\"})})})}),className:\"framer-wzyttc\",\"data-framer-name\":\"page\",fonts:[\"GF;Rethink Sans-500\"],layoutDependency:layoutDependency,layoutId:\"l__FGDkgQ\",style:{\"--extracted-r6o4lv\":\"var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({EvsIlw_DM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"116.6%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZVPm4QWZS\"},motionChild:true,nodeId:\"l__FGDkgQ\",openInNewTab:false,relValues:[],scopeId:\"AtxUGuro_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"About\"})})})})},Fp0Q3oHWY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"116.6%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZVPm4QWZS\"},motionChild:true,nodeId:\"l__FGDkgQ\",openInNewTab:false,relValues:[],scopeId:\"AtxUGuro_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"About\"})})})}),fonts:[\"GF;Rethink Sans-600\"]},r_bnRIbQS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"116.6%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZVPm4QWZS\"},motionChild:true,nodeId:\"l__FGDkgQ\",openInNewTab:false,relValues:[],scopeId:\"AtxUGuro_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1h16mnk\",\"data-styles-preset\":\"LFj_Nacfl\",children:\"About\"})})})})},wUYOTgsqp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"116.6%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZVPm4QWZS\"},motionChild:true,nodeId:\"l__FGDkgQ\",openInNewTab:false,relValues:[],scopeId:\"AtxUGuro_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1h16mnk\",\"data-styles-preset\":\"LFj_Nacfl\",children:\"About\"})})})})}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cafcxx\",\"data-framer-name\":\"div\",layoutDependency:layoutDependency,layoutId:\"g3G_yKZ6d\",style:{backgroundColor:\"var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28))\",opacity:.2}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"116.6%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JTGz6ECm_\"},motionChild:true,nodeId:\"IACjDCPih\",openInNewTab:false,relValues:[],scopeId:\"AtxUGuro_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1h16mnk\",\"data-styles-preset\":\"LFj_Nacfl\",children:\"Resources\"})})})}),className:\"framer-valg39\",\"data-framer-name\":\"page\",fonts:[\"GF;Rethink Sans-500\"],layoutDependency:layoutDependency,layoutId:\"IACjDCPih\",style:{\"--extracted-r6o4lv\":\"var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({EvsIlw_DM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"116.6%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JTGz6ECm_\"},motionChild:true,nodeId:\"IACjDCPih\",openInNewTab:false,relValues:[],scopeId:\"AtxUGuro_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"Resources\"})})})})},Fp0Q3oHWY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"116.6%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JTGz6ECm_\"},motionChild:true,nodeId:\"IACjDCPih\",openInNewTab:false,relValues:[],scopeId:\"AtxUGuro_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"Resources\"})})})}),fonts:[\"GF;Rethink Sans-600\"]},r_bnRIbQS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"116.6%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JTGz6ECm_\"},motionChild:true,nodeId:\"IACjDCPih\",openInNewTab:false,relValues:[],scopeId:\"AtxUGuro_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1h16mnk\",\"data-styles-preset\":\"LFj_Nacfl\",children:\"Resources\"})})})})},wUYOTgsqp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"116.6%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JTGz6ECm_\"},motionChild:true,nodeId:\"IACjDCPih\",openInNewTab:false,relValues:[],scopeId:\"AtxUGuro_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1h16mnk\",\"data-styles-preset\":\"LFj_Nacfl\",children:\"Resources\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"116.6%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Iv26i5rhc\",webPageId:\"WwF2LwV6C\"},motionChild:true,nodeId:\"u0bvpkT2Y\",openInNewTab:false,relValues:[],scopeId:\"AtxUGuro_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1h16mnk\",\"data-styles-preset\":\"LFj_Nacfl\",children:\"Careers\"})})})}),className:\"framer-m5j1gv\",\"data-framer-name\":\"page\",fonts:[\"GF;Rethink Sans-500\"],layoutDependency:layoutDependency,layoutId:\"u0bvpkT2Y\",style:{\"--extracted-r6o4lv\":\"var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({EvsIlw_DM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"116.6%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Iv26i5rhc\",webPageId:\"WwF2LwV6C\"},motionChild:true,nodeId:\"u0bvpkT2Y\",openInNewTab:false,relValues:[],scopeId:\"AtxUGuro_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"Careers\"})})})})},Fp0Q3oHWY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"116.6%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Iv26i5rhc\",webPageId:\"WwF2LwV6C\"},motionChild:true,nodeId:\"u0bvpkT2Y\",openInNewTab:false,relValues:[],scopeId:\"AtxUGuro_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17zgu87\",\"data-styles-preset\":\"nPjnaytXW\",children:\"Careers\"})})})}),fonts:[\"GF;Rethink Sans-600\"]},r_bnRIbQS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"116.6%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Iv26i5rhc\",webPageId:\"WwF2LwV6C\"},motionChild:true,nodeId:\"u0bvpkT2Y\",openInNewTab:false,relValues:[],scopeId:\"AtxUGuro_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1h16mnk\",\"data-styles-preset\":\"LFj_Nacfl\",children:\"Careers\"})})})})},wUYOTgsqp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"116.6%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Iv26i5rhc\",webPageId:\"WwF2LwV6C\"},motionChild:true,nodeId:\"u0bvpkT2Y\",openInNewTab:false,relValues:[],scopeId:\"AtxUGuro_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1h16mnk\",\"data-styles-preset\":\"LFj_Nacfl\",children:\"Careers\"})})})})}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1exfdyr\",\"data-framer-name\":\"div\",layoutDependency:layoutDependency,layoutId:\"hYMYITeQN\",style:{backgroundColor:\"var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28))\",opacity:.2}})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"heYn1GWdJ\"},implicitPathVariables:undefined},{href:{webPageId:\"heYn1GWdJ\"},implicitPathVariables:undefined},{href:{webPageId:\"heYn1GWdJ\"},implicitPathVariables:undefined},{href:{webPageId:\"heYn1GWdJ\"},implicitPathVariables:undefined},{href:{webPageId:\"heYn1GWdJ\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+(20+((componentViewport?.height||80)-40-65)/2)+10,...addPropertyOverrides({Fp0Q3oHWY:{height:60,width:`calc(${componentViewport?.width||\"100vw\"} - 44px)`,y:(componentViewport?.y||0)+12+54+22+807.29},r_bnRIbQS:{height:60,width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+12+54+66+203.462},wUYOTgsqp:{height:70,width:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,y:(componentViewport?.y||0)+12+54+66+203.462}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-112gbpp-container\",layoutDependency:layoutDependency,layoutId:\"JUhjimMTh-container\",nodeId:\"JUhjimMTh\",rendersWithMotion:true,scopeId:\"AtxUGuro_\",children:/*#__PURE__*/_jsx(BTNNav,{height:\"100%\",hq3ycdgH8:resolvedLinks6[0],hZsMBz6JJ:\"var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247))\",id:\"JUhjimMTh\",layoutId:\"JUhjimMTh\",peJeE7dG0:peJeE7dG0r3legl,style:{height:\"100%\"},t8wYrO57I:15,variant:\"lU7_UfgFI\",wgUIbymcZ:\"0px 24px 0px 24px\",width:\"100%\",z7HPbfVsf:\"Contact us\",...addPropertyOverrides({EvsIlw_DM:{hq3ycdgH8:resolvedLinks6[1],variant:\"ZoWXI2t7b\"},Fp0Q3oHWY:{hq3ycdgH8:resolvedLinks6[4],style:{height:\"100%\",width:\"100%\"},t8wYrO57I:20,variant:\"ZoWXI2t7b\"},r_bnRIbQS:{hq3ycdgH8:resolvedLinks6[3],style:{height:\"100%\",width:\"100%\"}},wUYOTgsqp:{hq3ycdgH8:resolvedLinks6[2],style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jDxwT.framer-1puanfn, .framer-jDxwT .framer-1puanfn { display: block; }\",\".framer-jDxwT.framer-1qedtye { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: 80px; justify-content: space-between; overflow: hidden; padding: 20px 20px 20px 25px; position: relative; width: 1440px; }\",\".framer-jDxwT .framer-1pgszu9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-jDxwT .framer-sh8ez-container { flex: none; height: 42px; position: relative; width: 141px; }\",\".framer-jDxwT .framer-1pnae5y { flex: none; height: 44px; overflow: hidden; position: relative; width: 44px; }\",\".framer-jDxwT .framer-ut219o { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(62.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-jDxwT .framer-1o5geqf { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(37.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-jDxwT .framer-1nron9b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 38px; height: min-content; justify-content: center; overflow: visible; padding: 10px; position: relative; width: min-content; }\",\".framer-jDxwT .framer-1yrzs0m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jDxwT .framer-vexkdr, .framer-jDxwT .framer-1vyg7et, .framer-jDxwT .framer-1mb0r87, .framer-jDxwT .framer-1x9ranr, .framer-jDxwT .framer-1mphhy3, .framer-jDxwT .framer-1exastj, .framer-jDxwT .framer-1uxua1r, .framer-jDxwT .framer-wzyttc, .framer-jDxwT .framer-valg39, .framer-jDxwT .framer-m5j1gv { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-jDxwT .framer-1y2xuc1 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: wrap; gap: 10px 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 858px; will-change: var(--framer-will-change-override, transform); }\",\".framer-jDxwT .framer-fzqn5o-container, .framer-jDxwT .framer-kl9xx-container, .framer-jDxwT .framer-sortbw-container, .framer-jDxwT .framer-1oc1azy-container, .framer-jDxwT .framer-1tabu6o-container, .framer-jDxwT .framer-1ntqghm-container, .framer-jDxwT .framer-1u36gbv-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-jDxwT .framer-1274t3y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jDxwT .framer-3h2df7, .framer-jDxwT .framer-1hn7ev1, .framer-jDxwT .framer-10b1fae, .framer-jDxwT .framer-mz6d0k, .framer-jDxwT .framer-11qdipl, .framer-jDxwT .framer-1wl9fne { 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: min-content; }\",\".framer-jDxwT .framer-1cafcxx, .framer-jDxwT .framer-1exfdyr { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 1px; }\",\".framer-jDxwT .framer-112gbpp-container { flex: none; height: 45px; position: relative; width: auto; }\",\".framer-jDxwT.framer-v-qg7yas.framer-1qedtye, .framer-jDxwT.framer-v-u6kuot.framer-1qedtye { flex-direction: column; gap: 10px; height: 70px; justify-content: flex-start; padding: 12px; width: 390px; }\",\".framer-jDxwT.framer-v-qg7yas .framer-1pgszu9, .framer-jDxwT.framer-v-u6kuot .framer-1pgszu9 { flex: none; gap: unset; justify-content: space-between; width: 100%; }\",\".framer-jDxwT.framer-v-qg7yas .framer-sh8ez-container, .framer-jDxwT.framer-v-u6kuot .framer-sh8ez-container, .framer-jDxwT.framer-v-knilrt .framer-sh8ez-container { width: 123px; }\",\".framer-jDxwT.framer-v-qg7yas .framer-1pnae5y, .framer-jDxwT.framer-v-u6kuot .framer-1pnae5y, .framer-jDxwT.framer-v-knilrt .framer-1pnae5y { cursor: pointer; }\",\".framer-jDxwT.framer-v-qg7yas .framer-1nron9b { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 37px; padding: 66px 0px 26px 0px; width: 100%; }\",\".framer-jDxwT.framer-v-qg7yas .framer-1yrzs0m { align-content: flex-start; align-items: flex-start; flex-direction: column; }\",\".framer-jDxwT.framer-v-qg7yas .framer-112gbpp-container { height: 70px; width: 100%; }\",\".framer-jDxwT.framer-v-u6kuot .framer-1nron9b { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 37px; padding: 66px 0px 26px 8px; width: 100%; }\",\".framer-jDxwT.framer-v-u6kuot .framer-1yrzs0m { align-content: flex-start; align-items: flex-start; flex-direction: column; order: 0; }\",\".framer-jDxwT.framer-v-u6kuot .framer-112gbpp-container, .framer-jDxwT.framer-v-knilrt .framer-112gbpp-container { height: 60px; order: 2; width: 100%; }\",\".framer-jDxwT.framer-v-knilrt.framer-1qedtye { flex-direction: column; gap: 10px; height: 766px; justify-content: flex-start; overflow: visible; padding: 12px; width: 390px; }\",\".framer-jDxwT.framer-v-knilrt .framer-1pgszu9 { flex: none; gap: unset; justify-content: space-between; order: 0; width: 100%; }\",\".framer-jDxwT.framer-v-knilrt .framer-ut219o, .framer-jDxwT.framer-v-knilrt .framer-1o5geqf { top: calc(52.272727272727295% - 2px / 2); }\",\".framer-jDxwT.framer-v-knilrt .framer-1nron9b { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 37px; order: 1; padding: 22px 10px 26px 10px; width: 100%; }\",\".framer-jDxwT.framer-v-knilrt .framer-1yrzs0m { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 21px; order: 1; }\",\".framer-jDxwT.framer-v-knilrt .framer-vexkdr { order: 0; white-space: pre-wrap; width: 108px; word-break: break-word; word-wrap: break-word; }\",\".framer-jDxwT.framer-v-knilrt .framer-1274t3y { order: 1; }\",\".framer-jDxwT.framer-v-knilrt .framer-wzyttc { order: 3; white-space: pre-wrap; width: 108px; word-break: break-word; word-wrap: break-word; }\",\".framer-jDxwT.framer-v-knilrt .framer-1cafcxx { align-self: stretch; flex: none; order: 4; width: auto; }\",\".framer-jDxwT.framer-v-knilrt .framer-valg39 { order: 5; white-space: pre-wrap; width: 108px; word-break: break-word; word-wrap: break-word; }\",\".framer-jDxwT.framer-v-knilrt .framer-m5j1gv { order: 6; white-space: pre-wrap; width: 108px; word-break: break-word; word-wrap: break-word; }\",\".framer-jDxwT.framer-v-knilrt .framer-1exfdyr { align-self: stretch; flex: none; order: 2; width: auto; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"EvsIlw_DM\":{\"layout\":[\"fixed\",\"fixed\"]},\"wUYOTgsqp\":{\"layout\":[\"fixed\",\"fixed\"]},\"r_bnRIbQS\":{\"layout\":[\"fixed\",\"fixed\"]},\"Fp0Q3oHWY\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerAtxUGuro_=withCSS(Component,css,\"framer-jDxwT\");export default FramerAtxUGuro_;FramerAtxUGuro_.displayName=\"Nav\";FramerAtxUGuro_.defaultProps={height:80,width:1440};addPropertyControls(FramerAtxUGuro_,{variant:{options:[\"r6lBuOSTF\",\"EvsIlw_DM\",\"wUYOTgsqp\",\"r_bnRIbQS\",\"Fp0Q3oHWY\"],optionTitles:[\"nav \",\"nav w\",\"mob \",\"mob w\",\"mob open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerAtxUGuro_,[{explicitInter:true,fonts:[{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v6/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45DmqklNRCEvmma-aua4.woff2\",weight:\"500\"},{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v6/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45Dmqkr9WCEvmma-aua4.woff2\",weight:\"600\"}]},...LogoConvergeFonts,...PageSolutionFonts,...UseCasesDropdownFonts,...BTNNavFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAtxUGuro_\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"80\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EvsIlw_DM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wUYOTgsqp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"r_bnRIbQS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Fp0Q3oHWY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AtxUGuro_.map", "// Generated by Framer (52b42d6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={RApWFb1bh:{hover:true,pressed:true}};const cycleOrder=[\"RApWFb1bh\",\"c3L4RzSBW\",\"hLIrbpxlH\",\"PkMl1tC1B\",\"VF1fkG_ib\"];const serializationHash=\"framer-qVVG6\";const variantClassNames={c3L4RzSBW:\"framer-v-1n6zkiz\",hLIrbpxlH:\"framer-v-1gep9i4\",PkMl1tC1B:\"framer-v-tm5xav\",RApWFb1bh:\"framer-v-191bo3b\",VF1fkG_ib:\"framer-v-1wg7av3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Success V2\":\"VF1fkG_ib\",Default:\"RApWFb1bh\",Disabled:\"hLIrbpxlH\",Error:\"PkMl1tC1B\",Loading:\"c3L4RzSBW\"};const getProps=({color,fill,height,id,title,width,...props})=>{return{...props,pwarcUhl2:color??props.pwarcUhl2??\"var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"RApWFb1bh\",yv3f47ACx:fill??props.yv3f47ACx??\"var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247))\",Zhh48AVGa:title??props.Zhh48AVGa??\"Submit\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,yv3f47ACx,pwarcUhl2,Zhh48AVGa,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"RApWFb1bh\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"c3L4RzSBW\",\"VF1fkG_ib\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"VF1fkG_ib\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"c3L4RzSBW\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-191bo3b\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"RApWFb1bh\",ref:refBinding,style:{backgroundColor:yv3f47ACx,borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:.9,...style},variants:{\"RApWFb1bh-hover\":{opacity:1},\"RApWFb1bh-pressed\":{opacity:1},hLIrbpxlH:{opacity:.5},PkMl1tC1B:{backgroundColor:\"rgba(255, 34, 68, 0.15)\"}},...addPropertyOverrides({\"RApWFb1bh-hover\":{\"data-framer-name\":undefined},\"RApWFb1bh-pressed\":{\"data-framer-name\":undefined},c3L4RzSBW:{\"data-framer-name\":\"Loading\"},hLIrbpxlH:{\"data-framer-name\":\"Disabled\"},PkMl1tC1B:{\"data-framer-name\":\"Error\"},VF1fkG_ib:{\"data-framer-name\":\"Success V2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-pwarcUhl2-lr7KRTd6Z))\"},children:\"Submit\"})}),className:\"framer-uw4fqw\",fonts:[\"GF;Rethink Sans-700\"],layoutDependency:layoutDependency,layoutId:\"w8h5yVSPl\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-pwarcUhl2-lr7KRTd6Z)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-pwarcUhl2-lr7KRTd6Z\":pwarcUhl2,opacity:.8},text:Zhh48AVGa,variants:{\"RApWFb1bh-hover\":{opacity:1},\"RApWFb1bh-pressed\":{opacity:1},hLIrbpxlH:{opacity:.58},PkMl1tC1B:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({PkMl1tC1B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Try Again\"})}),fonts:[\"FS;Satoshi-bold\"],text:undefined}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28)))\"},children:\"Thank You\"})}),className:\"framer-1i5o1hx\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"xi59mxB0u\",style:{\"--extracted-r6o4lv\":\"var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-z8ovmk\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"fj4Gci0Xn\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-hty1v3\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"xkI90COq5\",style:{background:\"conic-gradient(from 0deg at 50% 50%, rgb(0, 15, 97) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",mask:\"none\",WebkitMask:\"none\"},variants:{c3L4RzSBW:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7blfc9\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"NN7qxm300\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qVVG6.framer-1re19eh, .framer-qVVG6 .framer-1re19eh { display: block; }\",\".framer-qVVG6.framer-191bo3b { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-qVVG6 .framer-uw4fqw, .framer-qVVG6 .framer-1i5o1hx { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-qVVG6 .framer-z8ovmk { aspect-ratio: 1 / 1; flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-qVVG6 .framer-hty1v3 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-qVVG6 .framer-7blfc9 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\".framer-qVVG6.framer-v-1n6zkiz.framer-191bo3b, .framer-qVVG6.framer-v-1gep9i4.framer-191bo3b, .framer-qVVG6.framer-v-tm5xav.framer-191bo3b, .framer-qVVG6.framer-v-1wg7av3.framer-191bo3b { cursor: unset; }\",\".framer-qVVG6.framer-v-1n6zkiz .framer-hty1v3 { overflow: hidden; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"c3L4RzSBW\":{\"layout\":[\"fixed\",\"fixed\"]},\"hLIrbpxlH\":{\"layout\":[\"fixed\",\"fixed\"]},\"PkMl1tC1B\":{\"layout\":[\"fixed\",\"fixed\"]},\"VF1fkG_ib\":{\"layout\":[\"fixed\",\"fixed\"]},\"fBJaPctmo\":{\"layout\":[\"fixed\",\"fixed\"]},\"X3LCzW_zr\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"yv3f47ACx\":\"fill\",\"pwarcUhl2\":\"color\",\"Zhh48AVGa\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerlr7KRTd6Z=withCSS(Component,css,\"framer-qVVG6\");export default Framerlr7KRTd6Z;Framerlr7KRTd6Z.displayName=\"BTN form\";Framerlr7KRTd6Z.defaultProps={height:40,width:240};addPropertyControls(Framerlr7KRTd6Z,{variant:{options:[\"RApWFb1bh\",\"c3L4RzSBW\",\"hLIrbpxlH\",\"PkMl1tC1B\",\"VF1fkG_ib\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Error\",\"Success V2\"],title:\"Variant\",type:ControlType.Enum},yv3f47ACx:{defaultValue:\"var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247))\",title:\"Fill\",type:ControlType.Color},pwarcUhl2:{defaultValue:\"var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28))\",title:\"Color\",type:ControlType.Color},Zhh48AVGa:{defaultValue:\"Submit\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(Framerlr7KRTd6Z,[{explicitInter:true,fonts:[{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v6/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45DmqkoZWCEvmma-aua4.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerlr7KRTd6Z\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"240\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"c3L4RzSBW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hLIrbpxlH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PkMl1tC1B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VF1fkG_ib\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fBJaPctmo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"X3LCzW_zr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"yv3f47ACx\\\":\\\"fill\\\",\\\"pwarcUhl2\\\":\\\"color\\\",\\\"Zhh48AVGa\\\":\\\"title\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"40\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./lr7KRTd6Z.map", "// Generated by Framer (890879b)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,FormContainer,FormPlainTextInput,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/pwujKvGZNj713vmgAaTx/Rgf3rKmo9ivMFXS6RavH/LFj_Nacfl.js\";import BTNForm from\"https://framerusercontent.com/modules/z29Szk43fb7qsB4YhX9G/EynSNDFSNA0bJOpictka/lr7KRTd6Z.js\";import LogoConverge from\"https://framerusercontent.com/modules/MdyXMpHZ8uufilOrv2NJ/4zlmk7kBXMWw4svVrPsi/mJt9e_44l.js\";const LogoConvergeFonts=getFonts(LogoConverge);const BTNFormFonts=getFonts(BTNForm);const cycleOrder=[\"bgNdJ48zM\",\"pUmCLPjg5\"];const serializationHash=\"framer-8TiCX\";const variantClassNames={bgNdJ48zM:\"framer-v-vwmrbz\",pUmCLPjg5:\"framer-v-uchyxo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Laptop:\"bgNdJ48zM\",Phone:\"pUmCLPjg5\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"bgNdJ48zM\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bgNdJ48zM\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-vwmrbz\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Laptop\",layoutDependency:layoutDependency,layoutId:\"bgNdJ48zM\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(247, 247, 247, 0.3)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-a382a64f-b4a8-4d48-a938-bcec753eaecf, rgb(18, 17, 28))\",...style},...addPropertyOverrides({pUmCLPjg5:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d1nrbv\",layoutDependency:layoutDependency,layoutId:\"Pdq_OuoJz\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1buzy1d\",layoutDependency:layoutDependency,layoutId:\"kiyC_iQyP\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,width:\"172px\",y:(componentViewport?.y||0)+40+0+0+0,...addPropertyOverrides({pUmCLPjg5:{y:(componentViewport?.y||0)+40+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1f0dmhd-container\",layoutDependency:layoutDependency,layoutId:\"QhgRLOpkL-container\",nodeId:\"QhgRLOpkL\",rendersWithMotion:true,scopeId:\"mdqTpsl8d\",children:/*#__PURE__*/_jsx(LogoConverge,{height:\"100%\",id:\"QhgRLOpkL\",layoutId:\"QhgRLOpkL\",style:{height:\"100%\",width:\"100%\"},variant:\"rjHMDMdg9\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1puqe8q\",layoutDependency:layoutDependency,layoutId:\"F5Ode70ZY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dFAVE99aB\"},motionChild:true,nodeId:\"rbRtN8TP1\",openInNewTab:false,scopeId:\"mdqTpsl8d\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1h16mnk\",\"data-styles-preset\":\"LFj_Nacfl\",children:\"Terms of Use\"})})})}),className:\"framer-127diz3\",fonts:[\"GF;Rethink Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"rbRtN8TP1\",style:{\"--extracted-r6o4lv\":\"var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247))\",opacity:.6},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cAylqaNsk\"},motionChild:true,nodeId:\"GVdE5hqbN\",openInNewTab:false,scopeId:\"mdqTpsl8d\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1h16mnk\",\"data-styles-preset\":\"LFj_Nacfl\",children:\"Privacy Policy\"})})})}),className:\"framer-1c6j72l\",fonts:[\"GF;Rethink Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"GVdE5hqbN\",style:{\"--extracted-r6o4lv\":\"var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247))\",opacity:.6},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247)))\"},children:\"\\xa9 2025 Converge\"})}),className:\"framer-w11na8\",fonts:[\"GF;Rethink Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"tIBmD0NHM\",style:{\"--extracted-r6o4lv\":\"var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.6},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/converge-bio/\",motionChild:true,nodeId:\"fIAFyv6PS\",openInNewTab:true,scopeId:\"mdqTpsl8d\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-kecomv framer-jy53df\",\"data-framer-name\":\"Group 5430\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"fIAFyv6PS\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><path d=\"M 27.036 14.095 C 27.036 21.539 21.003 27.579 13.558 27.579 C 6.114 27.579 0.074 21.546 0.074 14.095 C 0.074 6.644 6.107 0.618 13.552 0.618 C 20.996 0.618 27.029 6.651 27.029 14.095 Z\" fill=\"var(--token-c5e673b0-d9fc-4d58-b9d9-13b0f3757c6a, rgb(240, 240, 240))\"></path><path d=\"M 7.415 13.702 L 7.415 19.714 L 10.279 19.714 L 10.279 13.217 L 10.279 11.522 L 7.415 11.522 Z\" fill=\"var(--token-f2cbb37c-67d5-4545-89ef-d8834f69a28e, rgb(30, 31, 33))\"></path><path d=\"M 8.847 7.433 C 8.058 7.433 7.415 8.077 7.415 8.865 C 7.415 9.654 8.058 10.298 8.847 10.298 C 9.636 10.298 10.279 9.654 10.279 8.865 C 10.279 8.077 9.636 7.433 8.847 7.433 Z\" fill=\"var(--token-f2cbb37c-67d5-4545-89ef-d8834f69a28e, rgb(30, 31, 33))\"></path><path d=\"M 19.633 14.04 C 19.439 12.498 18.727 11.529 16.644 11.529 C 15.406 11.529 14.575 11.986 14.236 12.636 L 14.202 12.636 L 14.202 11.529 L 11.919 11.529 L 11.919 19.721 L 14.306 19.721 L 14.306 15.659 C 14.306 14.587 14.506 13.549 15.835 13.549 C 17.163 13.549 17.246 14.774 17.246 15.722 L 17.246 19.714 L 19.702 19.714 L 19.702 15.217 C 19.702 14.795 19.681 14.407 19.64 14.04 Z\" fill=\"var(--token-f2cbb37c-67d5-4545-89ef-d8834f69a28e, rgb(30, 31, 33))\"></path></svg>',svgContentId:10699751153,withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hkndga\",layoutDependency:layoutDependency,layoutId:\"iSUr6vpEg\",style:{opacity:0},children:[/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/549a0d8a-4146-492d-beaa-dcf11f1fd531/submit\",className:\"framer-19x98y5\",layoutDependency:layoutDependency,layoutId:\"RCRG5p6bB\",nodeId:\"RCRG5p6bB\",redirectUrl:{webPageId:\"jky3RjYfx\"},children:formState=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1rh37lm\",layoutDependency:layoutDependency,layoutId:\"MCpv0mOeX\",children:[/*#__PURE__*/_jsx(FormPlainTextInput,{autoFocus:false,className:\"framer-hw44gn\",\"data-framer-name\":\"emailInput\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"qz3RpRZBy\",placeholder:\"Email\",required:true,style:{\"--framer-input-background\":\"rgba(255, 255, 255, 0.08)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247))\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"8px\",\"--framer-input-border-radius-bottom-right\":\"8px\",\"--framer-input-border-radius-top-left\":\"8px\",\"--framer-input-border-radius-top-right\":\"8px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgba(255, 255, 255, 0.49)\"},type:\"email\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:\"141px\",y:(componentViewport?.y||0)+40+94+0+0+0+0+0,...addPropertyOverrides({pUmCLPjg5:{height:45,width:\"132px\",y:(componentViewport?.y||0)+40+371+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ds28dt-container\",layoutDependency:layoutDependency,layoutId:\"gMc2iq0bO-container\",nodeId:\"gMc2iq0bO\",rendersWithMotion:true,scopeId:\"mdqTpsl8d\",children:/*#__PURE__*/_jsx(BTNForm,{height:\"100%\",id:\"gMc2iq0bO\",layoutId:\"gMc2iq0bO\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:\"RApWFb1bh\",width:\"100%\"})})})]})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247)))\"},children:\"Subscribe To Our Newsletter\"})}),className:\"framer-1swyx9o\",fonts:[\"GF;Rethink Sans-600\"],layoutDependency:layoutDependency,layoutId:\"kRscjNHji\",style:{\"--extracted-1lwpl3i\":\"var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, rgb(247, 247, 247))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.43},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8TiCX.framer-jy53df, .framer-8TiCX .framer-jy53df { display: block; }\",\".framer-8TiCX.framer-vwmrbz { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 1440px; }\",\".framer-8TiCX .framer-1d1nrbv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8TiCX .framer-1buzy1d { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-8TiCX .framer-1f0dmhd-container { flex: none; height: 61px; position: relative; width: 172px; }\",\".framer-8TiCX .framer-1puqe8q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8TiCX .framer-127diz3, .framer-8TiCX .framer-1c6j72l, .framer-8TiCX .framer-w11na8 { flex: none; height: 29px; position: relative; white-space: pre; width: auto; }\",\".framer-8TiCX .framer-kecomv { flex: none; height: 28px; position: relative; text-decoration: none; width: 28px; }\",\".framer-8TiCX .framer-hkndga { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8TiCX .framer-19x98y5 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-8TiCX .framer-1rh37lm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",'.framer-8TiCX .framer-hw44gn { --framer-input-focused-background: rgba(255, 255, 255, 0.06); --framer-input-focused-border-color: var(--token-85440f1e-95b5-4933-be3c-32a55de5b726, #f7f7f7); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Rethink Sans\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 18px; --framer-input-font-weight: 500; --framer-input-padding: 10px 10px 10px 36px; flex: none; height: 52px; position: relative; width: 476px; z-index: 0; }',\".framer-8TiCX .framer-1ds28dt-container { bottom: 0px; flex: none; position: absolute; right: 0px; top: 0px; width: 141px; z-index: 1; }\",\".framer-8TiCX .framer-1swyx9o { flex: none; height: 36px; position: relative; white-space: pre; width: auto; }\",\".framer-8TiCX.framer-v-uchyxo.framer-vwmrbz { gap: 41px; padding: 40px 40px 78px 40px; width: 390px; }\",\".framer-8TiCX.framer-v-uchyxo .framer-1buzy1d { align-content: flex-start; align-items: flex-start; flex-direction: column; }\",\".framer-8TiCX.framer-v-uchyxo .framer-1puqe8q { align-content: flex-start; align-items: flex-start; flex-direction: column; padding: 32px 0px 32px 0px; }\",\".framer-8TiCX.framer-v-uchyxo .framer-hw44gn { --framer-input-font-size: 16px; height: 45px; width: 312px; }\",\".framer-8TiCX.framer-v-uchyxo .framer-1ds28dt-container { width: 132px; }\",...sharedStyle.css,'.framer-8TiCX[data-border=\"true\"]::after, .framer-8TiCX [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 281\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"pUmCLPjg5\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramermdqTpsl8d=withCSS(Component,css,\"framer-8TiCX\");export default FramermdqTpsl8d;FramermdqTpsl8d.displayName=\"Footer\";FramermdqTpsl8d.defaultProps={height:281,width:1440};addPropertyControls(FramermdqTpsl8d,{variant:{options:[\"bgNdJ48zM\",\"pUmCLPjg5\"],optionTitles:[\"Laptop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramermdqTpsl8d,[{explicitInter:true,fonts:[{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v5/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45DmqkmFRCEvmma-aua4.woff2\",weight:\"400\"},{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v5/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45DmqklNRCEvmma-aua4.woff2\",weight:\"500\"},{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v5/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45Dmqkr9WCEvmma-aua4.woff2\",weight:\"600\"}]},...LogoConvergeFonts,...BTNFormFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermdqTpsl8d\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1440\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"281\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pUmCLPjg5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "4bAC8BA,GAAU,UAAU,CAAC,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,6fAA6f,EAAeC,GAAU,eCQ/nB,SAARC,GAA6BC,EAAM,CAAC,GAAK,CAAC,UAAAC,EAAU,+DAA+D,WAAAC,EAAW,OAAU,OAAAC,EAAO,CAAC,IAAI,sEAAsE,IAAI,mBAAmB,EAAE,MAAAC,EAAM,EAAE,MAAAC,CAAK,EAAEL,EAAYM,EAAaC,EAAO,IAAI,EAAQC,EAAeD,EAAO,IAAI,EAAO,CAACE,EAASC,CAAW,EAAEC,GAAS,EAAK,EAAQC,EAASC,GAAoB,EACnaC,GAAU,IAAI,CAAC,GAAG,OAAOC,EAAS,KAAaA,EAAO,OAAO,OAAO,IAAMC,EAAO,SAAS,cAAc,QAAQ,EAAE,OAAAA,EAAO,IAAI,yEAAyEA,EAAO,MAAM,GAAK,SAAS,KAAK,YAAYA,CAAM,EAAQ,IAAI,CAAC,SAAS,KAAK,YAAYA,CAAM,CAAE,CAAE,EAAE,CAAC,CAAC,EAAEF,GAAU,IAAI,CAAC,IAAMG,EAAaf,GAAYD,EAAU,GAAG,CAACK,EAAa,SAAS,CAACW,GAAcL,EAAS,OAAO,IAAIM,EAAU,GAAM,SAASC,GAAY,CAAC,GAAG,CAACJ,EAAO,OAAO,CAAC,WAAWI,EAAW,EAAE,EAAE,MAAO,CAACX,EAAe,QAAQO,EAAO,OAAO,cAAc,CAAC,UAAUT,EAAa,QAAQ,SAAS,MAAM,KAAK,GAAM,SAAS,GAAM,KAAKW,EAAa,iBAAiB,CAAC,oBAAoB,eAAe,CAAC,CAAC,EAAET,EAAe,QAAQ,SAASJ,CAAK,EAAEI,EAAe,QAAQ,iBAAiB,YAAY,IAAI,CAACY,GAAgB,IAAIV,EAAY,EAAI,CAAC,CAAE,CAAC,CAAE,CAAC,OAAAS,EAAW,EAAQ,IAAI,CAACD,EAAU,GAAQV,EAAe,UAASA,EAAe,QAAQ,QAAQ,EAAEA,EAAe,QAAQ,KAAM,CAAE,EAAE,CAACP,EAAUC,EAAWE,EAAMQ,CAAQ,CAAC,EAAE,SAASS,GAAkB,CAAKb,EAAe,UAAeA,EAAe,QAAQ,aAAa,CAAC,EAAEA,EAAe,QAAQ,SAASJ,CAAK,EAAEI,EAAe,QAAQ,KAAK,EAAE,CAAC,SAASc,GAAkB,CAAKd,EAAe,UAAeA,EAAe,QAAQ,aAAa,EAAE,EAAEA,EAAe,QAAQ,SAASJ,CAAK,EAAEI,EAAe,QAAQ,KAAK,EAAE,CAAC,OAAAM,GAAU,IAAI,CAAIF,GAAUJ,EAAe,SAASA,EAAe,QAAQ,YAAY,EAAE,EAAI,CAAG,EAAE,CAACI,EAASH,CAAQ,CAAC,EAAsBc,EAAM,MAAM,CAAC,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,SAAS,WAAW,GAAGlB,CAAK,EAAE,SAAS,CAAC,CAACI,GAAUN,GAAQ,KAAkBqB,EAAK,MAAM,CAAC,IAAIrB,EAAO,IAAI,OAAOA,EAAO,OAAO,IAAIA,EAAO,KAAK,SAAS,MAAM,CAAC,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,MAAM,OAAO,OAAO,OAAO,UAAU,QAAQ,OAAO,EAAE,cAAc,MAAM,CAAC,CAAC,EAAeqB,EAAK,MAAM,CAAC,IAAIlB,EAAa,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,QAAQ,QAAQ,SAAS,SAAS,SAAS,WAAW,IAAI,EAAE,KAAK,CAAC,EAAE,aAAaM,EAAS,OAAUS,EAAiB,aAAaT,EAAS,OAAUU,EAAiB,SAAS,EAAE,aAAa,mBAAmB,KAAK,KAAK,CAAC,CAAC,CAAC,CAAC,CAAE,CAACG,EAAoB1B,GAAY,CAAC,WAAW,CAAC,KAAK2B,EAAY,KAAK,iBAAiB,CAAC,MAAM,EAAE,MAAM,aAAa,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,aAAa,aAAa,+DAA+D,YAAY,uBAAuB,EAAE,OAAO,CAAC,KAAKA,EAAY,gBAAgB,MAAM,cAAc,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,GAAG,IAAI,EAAE,KAAK,IAAI,KAAK,GAAG,CAAC,CAAC,ECT/hE,IAAMC,GAAiBC,EAASC,EAAW,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,aAAa,YAAY,aAAa,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMzB,IAAeyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAEyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAU2B,GAA6BC,EAAW,SAASH,EAAMI,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,QAAAxC,EAAQ,GAAGyC,CAAS,EAAEtB,GAASI,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAnD,CAAQ,EAAEoD,EAAgB,CAAC,WAAAzD,GAAW,eAAe,YAAY,IAAIqC,EAAW,QAAA9B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQwD,EAAiB3B,GAAuBD,EAAMzB,CAAQ,EAAuCsD,EAAkBC,EAAG3D,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBoB,EAAKwC,EAAY,CAAC,GAAGd,GAAUT,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQjB,EAAS,QAAQ,GAAM,SAAsBgB,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBa,EAAKyC,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBzC,EAAKE,EAAO,EAAE,CAAC,GAAGyB,EAAU,GAAGI,EAAgB,UAAU,GAAGQ,EAAGD,EAAkB,gBAAgBb,EAAUI,CAAU,CAAC,iBAAiB,mBAAmB,aAAa,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAG1C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,YAAY,CAAC,EAAE8C,EAAYI,CAAc,EAAE,SAAsBhC,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAK2C,EAA8B,CAAC,UAAU,2BAA2B,gCAAgC,SAAS,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBN,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,yBAAyB,aAAa,wBAAwB,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,yBAAyB,aAAa,wBAAwB,CAAC,EAAE,SAAsBrC,EAAKtB,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,WAAW,oEAAoE,UAAU,GAAG,OAAOU,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQwD,GAAI,CAAC,kFAAkF,gFAAgF,4RAA4R,+LAA+L,EAUr0JC,GAAgBC,EAAQnC,GAAUiC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,gBAAgBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,aAAa,YAAY,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGrE,EAAgB,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECV1I,IAAM2E,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,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAoBC,GAAO,CAAC,GAAG,OAAOA,GAAQ,SAAS,OAAOA,EAAM,GAAI,OAAO,SAASA,CAAK,EAAmB,OAAO,KAAK,IAAI,EAAEA,CAAK,EAAE,IAAK,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAF,EAAM,SAAAG,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWP,GAAOI,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAS,CAAC,CAAC,MAAAC,EAAM,OAAAC,EAAO,UAAAC,EAAU,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,QAAAC,EAAQ,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUJ,GAAMI,EAAM,UAAU,UAAUR,GAAQQ,EAAM,WAAW,wEAAwE,UAAUT,GAAOS,EAAM,UAAU,UAAUP,GAAWO,EAAM,WAAW,GAAG,QAAQX,GAAwBW,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUH,GAASG,EAAM,WAAW,oBAAoB,UAAUF,GAAOE,EAAM,WAAW,aAAa,GAAUC,GAAuB,CAACD,EAAM7B,IAAe6B,EAAM,iBAAwB7B,EAAS,KAAK,GAAG,EAAE6B,EAAM,iBAAwB7B,EAAS,KAAK,GAAG,EAAU+B,GAA6BC,EAAW,SAASH,EAAMI,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,QAAA5C,EAAQ,UAAA6C,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAElC,GAASU,CAAK,EAAO,CAAC,YAAAyB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,GAAW,SAAA7D,EAAQ,EAAE8D,EAAgB,CAAC,WAAAnE,GAAW,eAAe,YAAY,gBAAAD,GAAgB,IAAI0C,EAAW,QAAAlC,EAAQ,kBAAAL,EAAiB,CAAC,EAAQkE,GAAiBjC,GAAuBD,EAAM7B,EAAQ,EAAO,CAAC,sBAAAgE,GAAsB,MAAAC,EAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAYH,GAAsB,SAASI,KAAO,CAAoC,GAAnCR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAKR,GAAqB,MAAMA,EAAU,GAAGgB,EAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAuCC,GAAkBC,EAAG1E,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBkB,EAAKyD,EAAY,CAAC,GAAGzB,GAAUT,EAAgB,SAAsBvB,EAAKC,GAAS,CAAC,QAAQf,GAAS,QAAQ,GAAM,SAAsBc,EAAKR,GAAW,CAAC,MAAMD,GAAY,SAAsBS,EAAK0D,EAAK,CAAC,KAAKvB,EAAU,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBnC,EAAKE,EAAO,EAAE,CAAC,GAAGqC,EAAU,GAAGI,EAAgB,UAAU,GAAGa,EAAGD,GAAkB,iBAAiBxB,EAAUU,CAAU,CAAC,iBAAiB,cAAc,GAAK,mBAAmB,YAAY,iBAAiB,GAAK,iBAAiBQ,GAAiB,SAAS,YAAY,MAAMI,GAAY,IAAI/B,EAAW,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,wEAAwE,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,WAAWjC,GAAoB6C,CAAS,EAAE,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,GAAGJ,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,uEAAuE,EAAE,oBAAoB,CAAC,gBAAgB,uEAAuE,EAAE,kBAAkB,CAAC,gBAAgB,oEAAoE,EAAE,oBAAoB,CAAC,gBAAgB,oEAAoE,EAAE,UAAU,CAAC,iBAAiB,oEAAoE,CAAC,EAAE,GAAG9C,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,WAAW,CAAC,EAAEwD,EAAYI,CAAc,EAAE,SAAsB5C,EAAK2D,EAAS,CAAC,sBAAsB,GAAK,SAAsB3D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,4DAA4D,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,wEAAwE,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,qBAAqB,EAAE,iBAAiB+C,GAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,gDAAgD,2BAA2B,mBAAmB,gCAAgC,YAAY,2CAA2Cb,EAAU,2CAA2CC,CAAS,EAAE,KAAKJ,EAAU,SAAS,CAAC,kBAAkB,CAAC,qBAAqB,oEAAoE,EAAE,oBAAoB,CAAC,qBAAqB,oEAAoE,EAAE,kBAAkB,CAAC,qBAAqB,uEAAuE,EAAE,oBAAoB,CAAC,qBAAqB,uEAAuE,EAAE,UAAU,CAAC,qBAAqB,oEAAoE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGjD,GAAqB,CAAC,kBAAkB,CAAC,SAAsBgB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,4DAA4D,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,EAAE,oBAAoB,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,4DAA4D,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,EAAE,kBAAkB,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,4DAA4D,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,gGAAgG,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,EAAE,oBAAoB,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,4DAA4D,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,gGAAgG,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,4DAA4D,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQgB,GAAI,CAAC,kFAAkF,gFAAgF,iXAAiX,8JAA8J,+bAA+b,EAW3tUC,GAAgBC,EAAQ7C,GAAU2C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,UAAUA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,cAAc,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,oBAAoB,MAAM,UAAU,KAAKA,EAAY,OAAO,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,wEAAwE,MAAM,UAAU,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,aAAa,GAAG,MAAM,cAAc,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECXnjCM,GAAU,UAAU,CAAC,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,2iBAA2iB,EAAeC,GAAU,eCAjqBC,GAAU,UAAU,CAAC,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,6fAA6f,EAAeC,GAAU,eCAhM,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,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAE,IAAI,yBAAyB,CAAC,GAASC,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,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMxB,IAAewB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAU4B,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAlC,EAAQ,GAAGmC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA7C,CAAQ,EAAE8C,EAAgB,CAAC,WAAAnD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQkD,EAAiBpB,GAAuBH,EAAMxB,CAAQ,EAAQgD,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQZ,IAAc,YAA6Ca,EAAa,IAAQb,IAAc,YAA6Cc,EAAsBC,EAAM,EAAQC,EAAsB,CAAanB,EAAS,EAAQoB,EAAkBC,EAAqB,EAAE,OAAoBzC,EAAK0C,EAAY,CAAC,GAAGrB,GAA4CgB,EAAgB,SAAsBrC,EAAKC,GAAS,CAAC,QAAQhB,EAAS,QAAQ,GAAM,SAAsBe,EAAKT,GAAW,CAAC,MAAMH,GAAY,SAAsBuD,EAAMzC,EAAO,IAAI,CAAC,GAAGoB,EAAU,GAAGI,EAAgB,UAAUkB,EAAG/D,GAAkB,GAAG0D,EAAsB,gBAAgBnB,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6BkB,EAAK,MAAM,CAAC,gBAAgB,4BAA4B,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,qCAAqC,GAAGd,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,MAAM,CAAC,EAAE,GAAGpC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEwC,EAAYI,CAAc,EAAE,SAAS,CAAcgB,EAAMzC,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8B,EAAiB,SAAS,YAAY,kBAAkB3C,GAAmB,GAAGN,GAAqB,CAAC,UAAU,CAAC,kBAAkB,MAAS,CAAC,EAAEwC,EAAYI,CAAc,EAAE,SAAS,CAAcgB,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAACG,EAAY,GAAgBnC,EAAK6C,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,IAAwFN,GAAkB,GAAI,KAAkEA,GAAkB,QAAS,KAAK,kBAAkB,OAAO,EAAE,EAAE,IAAI,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,iBAAiBR,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,UAAU,sBAAsB,6FAA6F,EAAE,SAAsBF,EAAKgD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsBhD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,6BAA6B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,8BAA8B,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGjD,GAAqB,CAAC,UAAU,CAAC,SAAsBiB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,UAAU,sBAAsB,6FAA6F,EAAE,SAAsBF,EAAKgD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsBhD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,6BAA6B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegB,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAACG,EAAY,GAAgBnC,EAAK6C,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,IAAwFN,GAAkB,GAAI,KAAkEA,GAAkB,QAAS,KAAK,kBAAkB,OAAO,EAAE,EAAE,IAAI,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,iBAAiBR,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,UAAU,sBAAsB,6FAA6F,EAAE,SAAsBF,EAAKgD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsBhD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,qBAAqB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,8BAA8B,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGjD,GAAqB,CAAC,UAAU,CAAC,SAAsBiB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,UAAU,sBAAsB,6FAA6F,EAAE,SAAsBF,EAAKgD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsBhD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,qBAAqB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegB,EAAMzC,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAACG,EAAY,GAAgBnC,EAAK6C,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,IAAwFN,GAAkB,GAAI,KAAkEA,GAAkB,QAAS,KAAK,kBAAkB,OAAO,EAAE,MAAM,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,iBAAiB,iBAAiBR,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,UAAU,sBAAsB,6FAA6F,EAAE,SAAsBF,EAAKgD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsBhD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,8BAA8B,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGjD,GAAqB,CAAC,UAAU,CAAC,SAAsBiB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,UAAU,sBAAsB,6FAA6F,EAAE,SAAsBF,EAAKgD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsBhD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegB,EAAMzC,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAACG,EAAY,GAAgBnC,EAAK6C,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,IAAwFN,GAAkB,GAAI,KAAkEA,GAAkB,QAAS,KAAK,kBAAkB,OAAO,EAAE,MAAM,IAAI,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,iBAAiBR,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,UAAU,sBAAsB,6FAA6F,EAAE,SAAsBF,EAAKgD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsBhD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,8BAA8B,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGjD,GAAqB,CAAC,UAAU,CAAC,SAAsBiB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,UAAU,sBAAsB,6FAA6F,EAAE,SAAsBF,EAAKgD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsBhD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegB,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAACG,EAAY,GAAgBnC,EAAK6C,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,IAAwFN,GAAkB,GAAI,KAAkEA,GAAkB,QAAS,KAAK,kBAAkB,OAAO,EAAE,MAAM,IAAI,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,iBAAiBR,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,UAAU,sBAAsB,6FAA6F,EAAE,SAAsBF,EAAKgD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsBhD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,8BAA8B,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGjD,GAAqB,CAAC,UAAU,CAAC,SAAsBiB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,UAAU,sBAAsB,6FAA6F,EAAE,SAAsBF,EAAKgD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsBhD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegB,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAACG,EAAY,GAAgBnC,EAAK6C,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,IAAwFN,GAAkB,GAAI,KAAkEA,GAAkB,QAAS,KAAK,kBAAkB,OAAO,EAAE,MAAM,IAAI,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,iBAAiBR,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,UAAU,sBAAsB,6FAA6F,EAAE,SAAsBF,EAAKgD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsBhD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,8BAA8B,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGjD,GAAqB,CAAC,UAAU,CAAC,SAAsBiB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,UAAU,sBAAsB,6FAA6F,EAAE,SAAsBF,EAAKgD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsBhD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAES,EAAa,GAAgBpC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,SAAS,0BAA0B,OAAO,sBAAsB,iDAAiD,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,yBAAyB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiB,GAAI,CAAC,kFAAkF,kFAAkF,iKAAiK,gUAAgU,mdAAmd,qUAAqU,yQAAyQ,0LAA0L,4nCAA4nC,4PAA4P,gRAAgR,2UAA2U,2GAA2G,qtBAAqtB,GAAeA,EAAG,EAQ/wxBC,GAAgBC,EAAQtC,GAAUoC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,qBAAqBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAK,EAAE,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRhf,IAAMC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAE,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWN,GAAOG,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,KAAAC,EAAK,KAAAC,EAAK,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUH,GAAMG,EAAM,WAAW,+EAA+E,UAAUF,GAAOE,EAAM,WAAW,6BAA6B,UAAUJ,GAAMI,EAAM,UAAU,UAAUL,GAAOK,EAAM,WAAW,CAAC,IAAI,GAAG,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,GAAUC,GAAuB,CAACD,EAAM1B,IAAe0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAE0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAU4B,GAA6BC,EAAW,SAASH,EAAMI,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,QAAAzC,EAAQ,UAAA0C,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE9B,GAASQ,CAAK,EAAO,CAAC,YAAAuB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAxD,CAAQ,EAAEyD,EAAgB,CAAC,eAAe,YAAY,gBAAA9D,GAAgB,IAAIsC,EAAW,QAAA/B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6D,GAAiB/B,GAAuBD,EAAM1B,CAAQ,EAAuC2D,GAAkBC,EAAGhE,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBkB,EAAK+C,EAAY,CAAC,GAAGlB,GAAUT,EAAgB,SAAsBpB,EAAKC,GAAS,CAAC,QAAQf,EAAS,QAAQ,GAAM,SAAsBc,EAAKR,GAAW,CAAC,MAAMH,GAAY,SAAsBW,EAAKgD,EAAK,CAAC,KAAKf,EAAU,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBgB,EAAM/C,EAAO,EAAE,CAAC,GAAGgC,EAAU,GAAGI,EAAgB,UAAU,GAAGQ,EAAGD,GAAkB,iBAAiBjB,EAAUQ,CAAU,CAAC,kBAAkB,mBAAmB,YAAY,iBAAiBQ,GAAiB,SAAS,YAAY,IAAIzB,EAAW,MAAM,CAAC,gBAAgB,mBAAmB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGQ,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,0BAA0B,CAAC,EAAE,GAAG3C,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,CAAC,EAAEmD,EAAYI,CAAc,EAAE,SAAS,CAAcvC,EAAKkD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,IAA2B1B,GAAmB,GAAG,GAAG,EAAE,EAAE,YAAY,GAAG,WAAW,GAAG,MAAM,OAAO,GAAGnC,GAAkB0C,CAAS,CAAC,EAAE,UAAU,gBAAgB,iBAAiBY,GAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,CAAC,EAAeK,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,iBAAiB0C,GAAiB,SAAS,YAAY,SAAS,CAAc5C,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,SAAS,sBAAsB,6FAA6F,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,6BAA6B,MAAM,CAAC,qBAAqB,EAAE,iBAAiB0C,GAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,KAAKd,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe9B,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,yDAAyD,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,8EAA8E,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,8EAA8E,MAAM,CAAC,yBAAyB,EAAE,iBAAiB0C,GAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,MAAM,QAAQ,EAAE,EAAE,KAAKb,EAAU,SAAS,CAAC,kBAAkB,CAAC,QAAQ,CAAC,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQsB,GAAI,CAAC,kFAAkF,kFAAkF,uTAAuT,4KAA4K,8RAA8R,mMAAmM,EAW1gOC,GAAgBC,EAAQzC,GAAUuC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,gBAAgBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,UAAU,CAAC,aAAa,6BAA6B,gBAAgB,GAAM,MAAM,QAAQ,KAAKI,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,+EAA+E,gBAAgB,GAAK,MAAM,OAAO,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,wBAAwB,sHAAsH,gBAAgB,CAAC,IAAI,GAAG,eAAe,qHAAqH,EAAE,MAAM,QAAQ,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAK,EAAE,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECXlH,IAAMM,GAAkBC,EAASC,EAAY,EAAQC,GAAkBF,EAASG,EAAY,EAAQC,GAAsBJ,EAASK,EAAgB,EAAQC,GAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAYT,EAASU,EAAM,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,SAAS,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWF,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAQ,CAAC,CAAC,SAAAC,EAAS,uBAAAC,EAAuB,QAAAC,EAAQ,EAAI,IAAI,CAAC,GAAK,CAACC,EAAQC,CAAU,EAAEC,GAAgB,CAAC,uBAAAJ,CAAsB,CAAC,EAAE,OAAOD,EAAS,CAAC,KAAK,IAAII,EAAW,EAAK,EAAE,KAAK,IAAIA,EAAW,EAAI,EAAE,OAAO,IAAIA,EAAW,CAACD,CAAO,EAAE,QAAQD,GAASC,CAAO,CAAC,CAAE,EAAQG,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAP,CAAQ,IAAI,CAAC,IAAMQ,EAAaC,EAAWC,CAAmB,EAAQC,EAAWJ,GAAOC,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,SAASZ,CAAQ,CAAC,CAAE,EAAQe,GAASrC,EAAO,OAAasC,CAAQ,EAAQC,GAAwB,CAAC,OAAO,YAAY,WAAW,YAAY,QAAQ,YAAY,OAAO,YAAY,QAAQ,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMpC,IAAeoC,EAAM,iBAAwBpC,EAAS,KAAK,GAAG,EAAEoC,EAAM,iBAAwBpC,EAAS,KAAK,GAAG,EAAUsC,GAA6BC,EAAW,SAASH,EAAMI,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,QAAAnD,EAAQ,GAAGoD,CAAS,EAAEtB,GAASI,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA9D,CAAQ,EAAE+D,EAAgB,CAAC,WAAApE,GAAW,eAAe,YAAY,IAAIgD,EAAW,QAAAzC,EAAQ,kBAAAL,EAAiB,CAAC,EAAQmE,EAAiB3B,GAAuBD,EAAMpC,CAAQ,EAAO,CAAC,sBAAAiE,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAaH,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,GAAaL,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,GAAmB,CAAC,CAAC,QAAAC,EAAQ,SAAAC,CAAQ,IAAIR,EAAsB,SAASI,KAAO,CAACG,EAAQ,KAAK,CAAE,CAAC,EAAQE,GAAgBT,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAmFa,GAAkBC,EAAGhF,GAAkB,GAA5F,CAAawD,GAAuBA,EAAS,CAAuE,EAAQyB,GAAY,IAAQ,GAAC,YAAY,YAAY,WAAW,EAAE,SAAStB,CAAW,EAAmCuB,GAAa,IAAQ,EAAC,YAAY,WAAW,EAAE,SAASvB,CAAW,EAAmCwB,GAAWrC,EAAO,IAAI,EAAQsC,GAAWtC,EAAO,IAAI,EAAQuC,GAAOC,GAAU,EAAQC,GAAa,IAAQ5B,IAAc,YAAuC,OAAoB3B,EAAKwD,EAAY,CAAC,GAAG/B,GAAUT,EAAgB,SAAsBhB,EAAKC,GAAS,CAAC,QAAQ7B,EAAS,QAAQ,GAAM,SAAsB4B,EAAKR,GAAW,CAAC,MAAMjB,GAAY,GAAGL,EAAqB,CAAC,UAAU,CAAC,MAAMO,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMD,EAAW,CAAC,EAAEmD,EAAYI,CAAc,EAAE,SAAsB0B,EAAM7F,EAAO,IAAI,CAAC,GAAG8D,EAAU,GAAGI,EAAgB,UAAUkB,EAAGD,GAAkB,iBAAiBvB,EAAUI,CAAU,EAAE,mBAAmB,OAAO,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,gBAAgB,yBAAyB,GAAGQ,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,oBAAoB,EAAE,UAAU,CAAC,gBAAgB,oBAAoB,EAAE,UAAU,CAAC,gBAAgB,oBAAoB,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,CAAC,EAAE,GAAGrD,EAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,MAAM,CAAC,EAAEyD,EAAYI,CAAc,EAAE,SAAS,CAAc0B,EAAM7F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiBwE,EAAiB,SAAS,YAAY,SAAS,CAAcpC,EAAK0D,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAGrC,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,GAAGnD,EAAqB,CAAC,UAAU,CAAC,MAAM,QAAQ,GAAGmD,GAAmB,GAAG,GAAG,GAAG,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQ,GAAGA,GAAmB,GAAG,GAAG,GAAG,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQ,GAAGA,GAAmB,GAAG,GAAG,GAAG,EAAE,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsB/B,EAAK2D,EAA8B,CAAC,UAAU,yBAAyB,iBAAiBvB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAK3C,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGa,EAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEyD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkB,GAAY,GAAgBQ,EAAM7F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBwE,EAAiB,SAAS,YAAY,GAAGlE,EAAqB,CAAC,UAAU,CAAC,iBAAiB,GAAK,MAAMwE,EAAY,EAAE,UAAU,CAAC,iBAAiB,GAAK,MAAMF,CAAY,EAAE,UAAU,CAAC,iBAAiB,GAAK,MAAMA,CAAY,CAAC,EAAEb,EAAYI,CAAc,EAAE,SAAS,CAAc/B,EAAKpC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBwE,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,qEAAqE,OAAO,GAAG,EAAE,UAAU,CAAC,gBAAgB,oEAAoE,EAAE,UAAU,CAAC,gBAAgB,uEAAuE,CAAC,CAAC,CAAC,EAAepC,EAAKpC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBwE,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,qEAAqE,OAAO,EAAE,EAAE,UAAU,CAAC,gBAAgB,oEAAoE,EAAE,UAAU,CAAC,gBAAgB,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAM7F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBwE,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAS,CAAcqB,EAAM7F,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBwE,EAAiB,SAAS,YAAY,SAAS,CAACc,GAAa,GAAgBlD,EAAKf,GAAQ,CAAC,uBAAuB,GAAM,SAAS2D,GAAsBa,EAAMG,GAAU,CAAC,SAAS,CAAc5D,EAAK6D,EAAS,CAAC,sBAAsB,GAAK,SAAsB7D,EAAWE,EAAS,CAAC,SAAsBF,EAAKpC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,uBAAuB,MAAM,uBAAuB,SAAS,sBAAsB,gGAAgG,EAAE,SAAsBoC,EAAK8D,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,UAAU,CAAC,EAAE,QAAQ,YAAY,aAAa,GAAM,SAAsB9D,EAAKpC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB,GAAK,MAAM,CAAC,qBAAqB,EAAE,GAAG,GAAG6D,CAAQ,UAAU,iBAAiBW,EAAiB,SAAS,YAAY,aAAaO,GAAmB,CAAC,QAAAC,CAAO,CAAC,EAAE,IAAIO,GAAK,MAAM,CAAC,qBAAqB,wEAAwE,6BAA6B,MAAM,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,GAAG,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGjF,EAAqB,CAAC,UAAU,CAAC,SAAsB8B,EAAWE,EAAS,CAAC,SAAsBF,EAAKpC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,uBAAuB,MAAM,uBAAuB,SAAS,sBAAsB,gGAAgG,EAAE,SAAsBoC,EAAK8D,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,UAAU,CAAC,EAAE,QAAQ,YAAY,aAAa,GAAM,SAAsB9D,EAAKpC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBoC,EAAWE,EAAS,CAAC,SAAsBF,EAAKpC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,SAAS,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAsBoC,EAAK8D,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,UAAU,CAAC,EAAE,QAAQ,YAAY,aAAa,GAAM,SAAsB9D,EAAKpC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,qBAAqB,CAAC,CAAC,EAAE+D,EAAYI,CAAc,CAAC,CAAC,EAAe/B,EAAK+D,GAAgB,CAAC,SAASnB,EAAQ,SAAsB5C,EAAKgE,GAAS,CAAC,UAAU,SAAS,UAAUb,GAAK,UAAUH,EAAGD,GAAkBnB,CAAU,EAAE,mBAAmB,GAAK,0BAA0B,GAAG,wBAAwB,GAAGH,CAAQ,UAAU,QAAQ,IAAI,QAAQ,GAAG,UAAUmB,EAAQ,KAAK,UAAU,SAAS,SAAS,GAAK,OAAO,GAAG,SAAsBa,EAAM/F,GAAgB,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQkB,GAAW,UAAU,iBAAiB,KAAKD,GAAU,QAAQE,GAAW,iBAAiBuD,EAAiB,SAAS,YAAY,IAAIgB,GAAK,KAAK,SAAS,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,uCAAuC,EAAE,SAAS,CAAcpD,EAAKiE,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,GAA4BlE,EAAK0D,EAA0B,CAAC,SAAsB1D,EAAK2D,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBvB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAKzC,GAAa,CAAC,UAAU,kHAAkH,UAAU,8BAA8B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU2G,EAAc,CAAC,EAAE,MAAM,OAAO,UAAUpF,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,EAAE,EAAE,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAUgG,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAEvC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAKiE,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,SAASE,GAA6BnE,EAAK0D,EAA0B,CAAC,SAAsB1D,EAAK2D,EAA8B,CAAC,UAAU,yBAAyB,iBAAiBvB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAKzC,GAAa,CAAC,UAAU,qIAAgI,UAAU,uBAAuB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU4G,EAAe,CAAC,EAAE,MAAM,OAAO,UAAUrF,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,EAAE,EAAE,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAUiG,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAExC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAKiE,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,SAASG,GAA6BpE,EAAK0D,EAA0B,CAAC,SAAsB1D,EAAK2D,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBvB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAKzC,GAAa,CAAC,UAAU,qIAAgI,UAAU,sBAAsB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU6G,EAAe,CAAC,EAAE,MAAM,OAAO,UAAUtF,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,EAAE,EAAE,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAUkG,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAEzC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAKiE,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,SAASI,GAA6BrE,EAAK0D,EAA0B,CAAC,SAAsB1D,EAAK2D,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBvB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAKzC,GAAa,CAAC,UAAU,8IAAyI,UAAU,0BAA0B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU8G,EAAe,CAAC,EAAE,MAAM,OAAO,UAAUvF,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,oEAAoE,EAAE,EAAE,EAAE,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAUmG,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE1C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAKiE,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASK,GAA6BtE,EAAK0D,EAA0B,CAAC,SAAsB1D,EAAK2D,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBvB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAKzC,GAAa,CAAC,UAAU,mIAAmI,UAAU,0BAA0B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU+G,EAAe,CAAC,EAAE,MAAM,OAAO,UAAUxF,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,EAAE,EAAE,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAUoG,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE3C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAKiE,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASM,GAA6BvE,EAAK0D,EAA0B,CAAC,SAAsB1D,EAAK2D,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBvB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAKzC,GAAa,CAAC,UAAU,mJAA8I,UAAU,0BAA0B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUgH,EAAe,CAAC,EAAE,MAAM,OAAO,UAAUzF,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,oEAAoE,EAAE,EAAE,EAAE,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAUqG,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE5C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwB,GAAa,GAAgBvD,EAAK0D,EAA0B,CAAC,SAAsB1D,EAAK2D,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBvB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAKvC,GAAiB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE8F,GAAa,GAAgBE,EAAM7F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,iBAAiBwE,EAAiB,SAAS,YAAY,SAAS,CAAcpC,EAAKpC,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBwE,EAAiB,SAAS,YAAY,SAAsBpC,EAAK6D,EAAS,CAAC,sBAAsB,GAAK,SAAsB7D,EAAWE,EAAS,CAAC,SAAsBF,EAAKpC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,UAAU,sBAAsB,6FAA6F,EAAE,SAAsBoC,EAAK8D,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,UAAU,CAAC,EAAE,QAAQ,YAAY,aAAa,GAAM,SAAsB9D,EAAKpC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,6BAA6B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,8BAA8B,MAAM,CAAC,qBAAqB,EAAE,iBAAiBwE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAepC,EAAKpC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBwE,EAAiB,SAAS,YAAY,SAAsBpC,EAAK6D,EAAS,CAAC,sBAAsB,GAAK,SAAsB7D,EAAWE,EAAS,CAAC,SAAsBF,EAAKpC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,UAAU,sBAAsB,6FAA6F,EAAE,SAAsBoC,EAAK8D,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,UAAU,CAAC,EAAE,QAAQ,YAAY,aAAa,GAAM,SAAsB9D,EAAKpC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,qBAAqB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,8BAA8B,MAAM,CAAC,qBAAqB,EAAE,iBAAiBwE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAepC,EAAKpC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBwE,EAAiB,SAAS,YAAY,SAAsBpC,EAAK6D,EAAS,CAAC,sBAAsB,GAAK,SAAsB7D,EAAWE,EAAS,CAAC,SAAsBF,EAAKpC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,UAAU,sBAAsB,6FAA6F,EAAE,SAAsBoC,EAAK8D,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,UAAU,CAAC,EAAE,QAAQ,YAAY,aAAa,GAAM,SAAsB9D,EAAKpC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,8BAA8B,MAAM,CAAC,qBAAqB,EAAE,iBAAiBwE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAepC,EAAKpC,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBwE,EAAiB,SAAS,YAAY,SAAsBpC,EAAK6D,EAAS,CAAC,sBAAsB,GAAK,SAAsB7D,EAAWE,EAAS,CAAC,SAAsBF,EAAKpC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,UAAU,sBAAsB,6FAA6F,EAAE,SAAsBoC,EAAK8D,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,UAAU,CAAC,EAAE,QAAQ,YAAY,aAAa,GAAM,SAAsB9D,EAAKpC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,8BAA8B,MAAM,CAAC,qBAAqB,EAAE,iBAAiBwE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAepC,EAAKpC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBwE,EAAiB,SAAS,YAAY,SAAsBpC,EAAK6D,EAAS,CAAC,sBAAsB,GAAK,SAAsB7D,EAAWE,EAAS,CAAC,SAAsBF,EAAKpC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,UAAU,sBAAsB,6FAA6F,EAAE,SAAsBoC,EAAK8D,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,UAAU,CAAC,EAAE,QAAQ,YAAY,aAAa,GAAM,SAAsB9D,EAAKpC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,8BAA8B,MAAM,CAAC,qBAAqB,EAAE,iBAAiBwE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAepC,EAAKpC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBwE,EAAiB,SAAS,YAAY,SAAsBpC,EAAK6D,EAAS,CAAC,sBAAsB,GAAK,SAAsB7D,EAAWE,EAAS,CAAC,SAAsBF,EAAKpC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,UAAU,sBAAsB,6FAA6F,EAAE,SAAsBoC,EAAK8D,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,UAAU,CAAC,EAAE,QAAQ,YAAY,aAAa,GAAM,SAAsB9D,EAAKpC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,8BAA8B,MAAM,CAAC,qBAAqB,EAAE,iBAAiBwE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAK6D,EAAS,CAAC,sBAAsB,GAAK,SAAsB7D,EAAWE,EAAS,CAAC,SAAsBF,EAAKpC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,uBAAuB,MAAM,uBAAuB,SAAS,sBAAsB,gGAAgG,EAAE,SAAsBoC,EAAK8D,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,UAAU,CAAC,EAAE,QAAQ,YAAY,aAAa,GAAM,SAAsB9D,EAAKpC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,qBAAqB,EAAE,iBAAiBwE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGlE,EAAqB,CAAC,UAAU,CAAC,SAAsB8B,EAAWE,EAAS,CAAC,SAAsBF,EAAKpC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,uBAAuB,MAAM,uBAAuB,SAAS,sBAAsB,gGAAgG,EAAE,SAAsBoC,EAAK8D,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,UAAU,CAAC,EAAE,QAAQ,YAAY,aAAa,GAAM,SAAsB9D,EAAKpC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBoC,EAAWE,EAAS,CAAC,SAAsBF,EAAKpC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,SAAS,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAsBoC,EAAK8D,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,UAAU,CAAC,EAAE,QAAQ,YAAY,aAAa,GAAM,SAAsB9D,EAAKpC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,qBAAqB,CAAC,EAAE,UAAU,CAAC,SAAsBoC,EAAWE,EAAS,CAAC,SAAsBF,EAAKpC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,SAAS,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAsBoC,EAAK8D,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,UAAU,CAAC,EAAE,QAAQ,YAAY,aAAa,GAAM,SAAsB9D,EAAKpC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBoC,EAAWE,EAAS,CAAC,SAAsBF,EAAKpC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,SAAS,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAsBoC,EAAK8D,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,UAAU,CAAC,EAAE,QAAQ,YAAY,aAAa,GAAM,SAAsB9D,EAAKpC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+D,EAAYI,CAAc,CAAC,CAAC,EAAEwB,GAAa,GAAgBvD,EAAKpC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBwE,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,QAAQ,EAAE,CAAC,CAAC,EAAepC,EAAK6D,EAAS,CAAC,sBAAsB,GAAK,SAAsB7D,EAAWE,EAAS,CAAC,SAAsBF,EAAKpC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,uBAAuB,MAAM,uBAAuB,SAAS,sBAAsB,gGAAgG,EAAE,SAAsBoC,EAAK8D,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,UAAU,CAAC,EAAE,QAAQ,YAAY,aAAa,GAAM,SAAsB9D,EAAKpC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,qBAAqB,EAAE,iBAAiBwE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGlE,EAAqB,CAAC,UAAU,CAAC,SAAsB8B,EAAWE,EAAS,CAAC,SAAsBF,EAAKpC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,uBAAuB,MAAM,uBAAuB,SAAS,sBAAsB,gGAAgG,EAAE,SAAsBoC,EAAK8D,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,UAAU,CAAC,EAAE,QAAQ,YAAY,aAAa,GAAM,SAAsB9D,EAAKpC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBoC,EAAWE,EAAS,CAAC,SAAsBF,EAAKpC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,SAAS,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAsBoC,EAAK8D,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,UAAU,CAAC,EAAE,QAAQ,YAAY,aAAa,GAAM,SAAsB9D,EAAKpC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,qBAAqB,CAAC,EAAE,UAAU,CAAC,SAAsBoC,EAAWE,EAAS,CAAC,SAAsBF,EAAKpC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,SAAS,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAsBoC,EAAK8D,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,UAAU,CAAC,EAAE,QAAQ,YAAY,aAAa,GAAM,SAAsB9D,EAAKpC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBoC,EAAWE,EAAS,CAAC,SAAsBF,EAAKpC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,SAAS,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAsBoC,EAAK8D,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,UAAU,CAAC,EAAE,QAAQ,YAAY,aAAa,GAAM,SAAsB9D,EAAKpC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+D,EAAYI,CAAc,CAAC,CAAC,EAAe/B,EAAK6D,EAAS,CAAC,sBAAsB,GAAK,SAAsB7D,EAAWE,EAAS,CAAC,SAAsBF,EAAKpC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,uBAAuB,MAAM,uBAAuB,SAAS,sBAAsB,gGAAgG,EAAE,SAAsBoC,EAAK8D,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,UAAU,CAAC,EAAE,QAAQ,YAAY,aAAa,GAAM,SAAsB9D,EAAKpC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,qBAAqB,EAAE,iBAAiBwE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGlE,EAAqB,CAAC,UAAU,CAAC,SAAsB8B,EAAWE,EAAS,CAAC,SAAsBF,EAAKpC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,uBAAuB,MAAM,uBAAuB,SAAS,sBAAsB,gGAAgG,EAAE,SAAsBoC,EAAK8D,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,UAAU,CAAC,EAAE,QAAQ,YAAY,aAAa,GAAM,SAAsB9D,EAAKpC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBoC,EAAWE,EAAS,CAAC,SAAsBF,EAAKpC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,SAAS,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAsBoC,EAAK8D,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,UAAU,CAAC,EAAE,QAAQ,YAAY,aAAa,GAAM,SAAsB9D,EAAKpC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,qBAAqB,CAAC,EAAE,UAAU,CAAC,SAAsBoC,EAAWE,EAAS,CAAC,SAAsBF,EAAKpC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,SAAS,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAsBoC,EAAK8D,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,UAAU,CAAC,EAAE,QAAQ,YAAY,aAAa,GAAM,SAAsB9D,EAAKpC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBoC,EAAWE,EAAS,CAAC,SAAsBF,EAAKpC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,SAAS,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAsBoC,EAAK8D,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,UAAU,CAAC,EAAE,QAAQ,YAAY,aAAa,GAAM,SAAsB9D,EAAKpC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+D,EAAYI,CAAc,CAAC,CAAC,EAAEwB,GAAa,GAAgBvD,EAAKpC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBwE,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,QAAQ,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKiE,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,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASO,GAA6BxE,EAAK0D,EAA0B,CAAC,OAAO,GAAG,GAAGrC,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,GAAG,GAAGnD,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,QAAQmD,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,GAAG,GAAG,GAAG,MAAM,EAAE,UAAU,CAAC,OAAO,GAAG,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,GAAG,GAAG,GAAG,OAAO,EAAE,UAAU,CAAC,OAAO,GAAG,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,GAAG,GAAG,GAAG,OAAO,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsB/B,EAAK2D,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBvB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAKlC,GAAO,CAAC,OAAO,OAAO,UAAU0G,EAAe,CAAC,EAAE,UAAU,wEAAwE,GAAG,YAAY,SAAS,YAAY,UAAU1B,GAAgB,MAAM,CAAC,OAAO,MAAM,EAAE,UAAU,GAAG,QAAQ,YAAY,UAAU,oBAAoB,MAAM,OAAO,UAAU,aAAa,GAAG5E,EAAqB,CAAC,UAAU,CAAC,UAAUsG,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,GAAG,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,EAAE7C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ0C,GAAI,CAAC,kFAAkF,kFAAkF,uQAAuQ,oRAAoR,wGAAwG,iHAAiH,+PAA+P,gQAAgQ,sRAAsR,qRAAqR,oYAAoY,sUAAsU,2VAA2V,+RAA+R,kbAAkb,kJAAkJ,yGAAyG,4MAA4M,wKAAwK,wLAAwL,mKAAmK,oLAAoL,gIAAgI,yFAAyF,oLAAoL,0IAA0I,4JAA4J,kLAAkL,mIAAmI,4IAA4I,gMAAgM,qJAAqJ,iJAAiJ,8DAA8D,iJAAiJ,4GAA4G,iJAAiJ,iJAAiJ,4GAA4G,GAAeA,GAAI,GAAgBA,EAAG,EAUn5iDC,GAAgBC,EAAQjE,GAAU+D,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,MAAMA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,OAAO,QAAQ,OAAO,QAAQ,UAAU,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAK,EAAE,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGvH,GAAkB,GAAGG,GAAkB,GAAGE,GAAsB,GAAGK,GAAY,GAAGmH,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECVrrB,IAAMC,GAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAgB,CAAC,UAAU,CAAC,MAAM,GAAK,QAAQ,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,IAAI,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAmB,CAACC,EAAE,IAAI,oBAAoB,CAAC,GAASC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASzB,EAAO,OAAa0B,CAAQ,EAAQC,GAAwB,CAAC,aAAa,YAAY,QAAQ,YAAY,SAAS,YAAY,MAAM,YAAY,QAAQ,WAAW,EAAQC,GAAS,CAAC,CAAC,MAAAC,EAAM,KAAAC,EAAK,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUN,GAAOM,EAAM,WAAW,qEAAqE,QAAQR,GAAwBQ,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUL,GAAMK,EAAM,WAAW,wEAAwE,UAAUF,GAAOE,EAAM,WAAW,QAAQ,GAAUC,GAAuB,CAACD,EAAM5B,IAAe4B,EAAM,iBAAwB5B,EAAS,KAAK,GAAG,EAAE4B,EAAM,iBAAwB5B,EAAS,KAAK,GAAG,EAAU8B,GAA6BC,EAAW,SAASH,EAAMI,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,QAAA3C,EAAQ,UAAA4C,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE5B,GAASO,CAAK,EAAO,CAAC,YAAAsB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAzD,CAAQ,EAAE0D,EAAgB,CAAC,WAAA/D,GAAW,eAAe,YAAY,gBAAAD,GAAgB,IAAIyC,EAAW,QAAAjC,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ8D,EAAiB9B,GAAuBD,EAAM5B,CAAQ,EAAuC4D,GAAkBC,EAAGjE,GAAkB,GAAhD,CAAC,CAAuE,EAAQkE,GAAY,IAAQ,EAAC,YAAY,WAAW,EAAE,SAASZ,CAAW,EAAmCa,GAAa,IAAQb,IAAc,YAA6Cc,GAAa,IAAQd,IAAc,YAAuC,OAAoBjC,EAAKgD,EAAY,CAAC,GAAGpB,GAAUT,EAAgB,SAAsBnB,EAAKC,GAAS,CAAC,QAAQlB,EAAS,QAAQ,GAAM,SAAsBiB,EAAKT,GAAW,CAAC,MAAML,GAAY,SAAsB+D,EAAMzE,EAAO,OAAO,CAAC,GAAGwD,EAAU,GAAGI,EAAgB,UAAUQ,EAAGD,GAAkB,iBAAiBhB,EAAUO,CAAU,EAAE,mBAAmB,UAAU,aAAa,SAAS,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIxB,EAAW,MAAM,CAAC,gBAAgBW,EAAU,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,QAAQ,GAAG,GAAGH,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,QAAQ,CAAC,EAAE,oBAAoB,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,gBAAgB,yBAAyB,CAAC,EAAE,GAAG7C,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,oBAAoB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,YAAY,CAAC,EAAEoD,EAAYI,CAAc,EAAE,SAAS,CAACQ,GAAY,GAAgB7C,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,wEAAwE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,EAAE,iBAAiBkE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,gDAAgD,2BAA2B,mBAAmB,gCAAgC,YAAY,2CAA2CZ,EAAU,QAAQ,EAAE,EAAE,KAAKC,EAAU,SAAS,CAAC,kBAAkB,CAAC,QAAQ,CAAC,EAAE,oBAAoB,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,GAAG,EAAE,UAAU,CAAC,qBAAqB,kBAAkB,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGlD,GAAqB,CAAC,UAAU,CAAC,SAAsBmB,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,sBAAsB,2CAA2C,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,iBAAiB,EAAE,KAAK,MAAS,CAAC,EAAEyD,EAAYI,CAAc,CAAC,CAAC,EAAES,GAAa,GAAgB9C,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,sBAAsB,6FAA6F,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,iBAAiB,EAAE,iBAAiBkE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEK,GAAa,GAAgB/C,EAAKxB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBkE,EAAiB,SAAS,YAAY,MAAM,CAAC,KAAK,iHAAiH,WAAW,gHAAgH,EAAE,SAAsB1C,EAAK1B,GAAgB,CAAC,eAAec,GAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,OAAO,yBAAyBD,GAAY,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBuD,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,uGAAuG,KAAK,OAAO,WAAW,MAAM,EAAE,SAAS,CAAC,UAAU,CAAC,KAAK,iHAAiH,WAAW,gHAAgH,CAAC,EAAE,SAAsB1C,EAAKxB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiBkE,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,kBAAkBrD,EAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ8D,GAAI,CAAC,kFAAkF,kFAAkF,2QAA2Q,6LAA6L,sLAAsL,oIAAoI,+LAA+L,+MAA+M,qEAAqE,EAW9ySC,GAAgBC,EAAQxC,GAAUsC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,WAAWA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,UAAU,WAAW,QAAQ,YAAY,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,wEAAwE,MAAM,OAAO,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,aAAa,qEAAqE,MAAM,QAAQ,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,aAAa,SAAS,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECXvc,IAAMM,GAAkBC,EAASC,EAAY,EAAQC,GAAaF,EAASG,EAAO,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,OAAO,YAAY,MAAM,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMtB,IAAesB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAUwB,GAA6BC,EAAW,SAASH,EAAMI,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,QAAArC,EAAQ,GAAGsC,CAAS,EAAEtB,GAASI,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAhD,CAAQ,EAAEiD,EAAgB,CAAC,WAAAtD,GAAW,eAAe,YAAY,IAAIkC,EAAW,QAAA3B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQqD,EAAiB3B,GAAuBD,EAAMtB,CAAQ,EAA4DmD,EAAkBC,EAAGxD,GAAkB,GAArE,CAAa0C,EAAS,CAAuE,EAAE,OAAoBzB,EAAKwC,EAAY,CAAC,GAAGd,GAAUT,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBmD,EAAMvC,EAAO,OAAO,CAAC,GAAGyB,EAAU,GAAGI,EAAgB,UAAUQ,EAAGD,EAAkB,gBAAgBb,EAAUI,CAAU,EAAE,cAAc,GAAK,mBAAmB,SAAS,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qEAAqE,GAAGQ,CAAK,EAAE,GAAGvC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAE2C,EAAYI,CAAc,EAAE,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBI,EAAMvC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAK0C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAGpB,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,EAAE,GAAGrC,GAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,EAAE,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsBhC,EAAK2C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBN,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKrB,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8D,EAAMvC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAK4C,EAAS,CAAC,sBAAsB,GAAK,SAAsB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,gGAAgG,EAAE,SAAsBF,EAAK6C,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB7C,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,yBAAyB,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAerC,EAAK4C,EAAS,CAAC,sBAAsB,GAAK,SAAsB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,gGAAgG,EAAE,SAAsBF,EAAK6C,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB7C,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,yBAAyB,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAerC,EAAK4C,EAAS,CAAC,sBAAsB,GAAK,SAAsB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,yBAAyB,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,YAAY,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAerC,EAAK6C,EAAK,CAAC,KAAK,iDAAiD,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,SAAsB7C,EAAK8C,GAAI,CAAC,GAAG,IAAI,UAAU,8BAA8B,mBAAmB,aAAa,OAAO,WAAW,iBAAiBT,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,+xCAA+xC,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeI,EAAMvC,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAcrC,EAAK+C,GAAc,CAAC,OAAO,oFAAoF,UAAU,iBAAiB,iBAAiBV,EAAiB,SAAS,YAAY,OAAO,YAAY,YAAY,CAAC,UAAU,WAAW,EAAE,SAASW,GAAwBhD,EAAKiD,GAAU,CAAC,SAAsBR,EAAMvC,EAAO,MAAM,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAKkD,GAAmB,CAAC,UAAU,GAAM,UAAU,gBAAgB,mBAAmB,aAAa,UAAU,QAAQ,iBAAiBb,EAAiB,SAAS,YAAY,YAAY,QAAQ,SAAS,GAAK,MAAM,CAAC,4BAA4B,4BAA4B,qCAAqC,MAAM,8BAA8B,wEAAwE,mCAAmC,MAAM,2CAA2C,MAAM,4CAA4C,MAAM,wCAAwC,MAAM,yCAAyC,MAAM,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,wEAAwE,4BAA4B,qBAAqB,mCAAmC,2BAA2B,EAAE,KAAK,OAAO,CAAC,EAAerC,EAAK0C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAGpB,GAAmB,GAAG,GAAG,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAGrC,GAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAGqC,GAAmB,GAAG,GAAG,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsBhC,EAAK2C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBN,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKnB,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,SAAS,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemB,EAAK4C,EAAS,CAAC,sBAAsB,GAAK,SAAsB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,iGAAiG,EAAE,SAAS,6BAA6B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,YAAY,QAAQ,GAAG,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQc,GAAI,CAAC,kFAAkF,gFAAgF,6QAA6Q,0QAA0Q,4QAA4Q,0GAA0G,yRAAyR,8KAA8K,qHAAqH,uRAAuR,sSAAsS,kQAAkQ,2kBAA2kB,2IAA2I,iHAAiH,yGAAyG,gIAAgI,4JAA4J,+GAA+G,4EAA4E,GAAeA,GAAI,+bAA+b,EAU71gBC,GAAgBC,EAAQ1C,GAAUwC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,SAASA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,SAAS,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAK,EAAE,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAK,EAAE,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG3E,GAAkB,GAAGG,GAAa,GAAG8E,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["fontStore", "fonts", "css", "className", "LottieHover", "props", "lottieUrl", "lottieFile", "poster", "speed", "style", "containerRef", "pe", "lottieInstance", "isLoaded", "setIsLoaded", "ye", "isStatic", "useIsStaticRenderer", "ue", "window", "script", "lottieSource", "destroyed", "loadLottie", "Z", "handleMouseEnter", "handleMouseLeave", "u", "p", "addPropertyControls", "ControlType", "LottieHoverFonts", "getFonts", "LottieHover", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramermJt9e_44l", "withCSS", "mJt9e_44l_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "color2", "fontSize2", "height", "id", "link", "padding", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "z7HPbfVsf", "wgUIbymcZ", "hq3ycdgH8", "hZsMBz6JJ", "t8wYrO57I", "peJeE7dG0", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapo9ol9s", "args", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText", "css", "FrameruwA_VLqew", "withCSS", "uwA_VLqew_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText", "Link", "css", "FramerSczTU7cX1", "withCSS", "SczTU7cX1_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "link", "text", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "gkv56kHj8", "azOi1fFok", "XYcvE5N8Y", "twWO8PDlC", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "RichText", "css", "FramerVWRvXFECN", "withCSS", "VWRvXFECN_default", "addPropertyControls", "ControlType", "addFonts", "LogoConvergeFonts", "getFonts", "mJt9e_44l_default", "PageSolutionFonts", "VWRvXFECN_default", "UseCasesDropdownFonts", "SczTU7cX1_default", "MotionDivWithFX", "withFX", "motion", "BTNNavFonts", "uwA_VLqew_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "transition4", "animation", "animation1", "animation2", "addImageAlt", "image", "alt", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1tnajwj", "args", "onTap1e1ftu7", "onMouseEntertxyyif", "overlay", "loadMore", "peJeE7dG0r3legl", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "ref1", "ref2", "router", "useRouter", "isDisplayed2", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "l", "RichText", "Link", "AnimatePresence", "Floating", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "css", "FramerAtxUGuro_", "withCSS", "AtxUGuro_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "color", "fill", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "yv3f47ACx", "pwarcUhl2", "Zhh48AVGa", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "u", "RichText", "css", "Framerlr7KRTd6Z", "withCSS", "lr7KRTd6Z_default", "addPropertyControls", "ControlType", "addFonts", "LogoConvergeFonts", "getFonts", "mJt9e_44l_default", "BTNFormFonts", "lr7KRTd6Z_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "Link", "SVG", "FormContainer", "formState", "l", "FormPlainTextInput2", "css", "FramermdqTpsl8d", "withCSS", "mdqTpsl8d_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
