{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://framerusercontent.com/modules/IxrrEgFlbdOkh4moc3ER/oDmBxS0EmU9hbRq2h79N/acxLLtlnx.js", "ssg:https://framerusercontent.com/modules/Dwy4muCU2coJhhanxDaA/kubdzrlfyNBaMfMGdpZw/CkHknxcbH.js", "ssg:https://framerusercontent.com/modules/7ydiJvuYjWvlf4elEkiN/c6vk2cqZsRh9Xjg7Yi1C/bN5YE5xwu.js", "ssg:https://framerusercontent.com/modules/FDdUuxfBQASuesVWLzmy/F5QCjiRVMxh5lCfj6mmJ/GB48qPR4m.js", "ssg:https://framerusercontent.com/modules/M4yllAH19Cys515yvxLz/grW0ZRmbWyhDTqD1VDEY/nqQX0DWGb.js", "ssg:https://framerusercontent.com/modules/T9eg9WyYPlCW4Fidk3X7/wLYB1yQ9sGVYtcrshb0v/UoD8vLRUN.js", "ssg:https://framerusercontent.com/modules/vHApWC3j8y7xtFlFsaIg/VpA1v7syDx40aBynS7yl/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerDisableUnlink\n */ export default function Embed({type,url,html}){if(type===\"url\"&&url){return /*#__PURE__*/ _jsx(EmbedURL,{url:url});}if(type===\"html\"&&html){return /*#__PURE__*/ _jsx(EmbedHTML,{html:html});}return /*#__PURE__*/ _jsx(Instructions,{});};addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",displayTextArea:true,type:ControlType.String,hidden(props){return props.type!==\"html\";}}});function Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url}){// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(!url.startsWith(\"https://\")){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Unsupported protocol.\"});}if(state===undefined){return /*#__PURE__*/ _jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/ _jsx(ErrorMessage,{message:state.message});}if(state===true){const message=`Can't embed ${url} due to its content security policy.`;return /*#__PURE__*/ _jsx(ErrorMessage,{message:message});}return /*#__PURE__*/ _jsx(\"iframe\",{src:url,style:iframeStyle,loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html}){const ref=useRef();// If the HTML contains a script tag we can't use\n// dangerouslySetInnerHTML because it doesn't execute\n// scripts on the client. Otherwise, we can benefit\n// from SSG by using dangerouslySetInnerHTML.\nconst hasScript=html.includes(\"</script>\");useEffect(()=>{if(!hasScript)return;const div=ref.current;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html,hasScript]);return /*#__PURE__*/ _jsx(\"div\",{ref:ref,style:htmlStyle,dangerouslySetInnerHTML:!hasScript?{__html:html}:undefined});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}const centerTextStyle={textAlign:\"center\",minWidth:140};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (1d068b1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";const VideoFonts=getFonts(Video);const cycleOrder=[\"YIwjzjxLQ\",\"W0DkXbHo5\",\"doZZTS9h_\",\"w0CNP_gvt\"];const serializationHash=\"framer-QiDE7\";const variantClassNames={doZZTS9h_:\"framer-v-yodhln\",w0CNP_gvt:\"framer-v-3movbt\",W0DkXbHo5:\"framer-v-1fyanm0\",YIwjzjxLQ:\"framer-v-1u2kujv\"};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={\"UnlockVideo/Desktop\":\"YIwjzjxLQ\",\"UnlockVideo/DesktopPlay\":\"W0DkXbHo5\",\"UnlockVideo/Tab\":\"doZZTS9h_\",\"UnlockVideo/TabPlay\":\"w0CNP_gvt\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"YIwjzjxLQ\"};};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:\"YIwjzjxLQ\",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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1u2kujv\",className,classNames),\"data-framer-name\":\"UnlockVideo/Desktop\",layoutDependency:layoutDependency,layoutId:\"YIwjzjxLQ\",ref:refBinding,style:{backgroundColor:\"var(--token-91b338c0-2099-4358-9807-d05c4890e03d, rgb(255, 255, 255))\",borderBottomRightRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({doZZTS9h_:{\"data-framer-name\":\"UnlockVideo/Tab\"},w0CNP_gvt:{\"data-framer-name\":\"UnlockVideo/TabPlay\"},W0DkXbHo5:{\"data-framer-name\":\"UnlockVideo/DesktopPlay\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kgaf1-container\",\"data-framer-name\":\"video_unlock.mp4\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"hzULLIm6g-container\",name:\"video_unlock.mp4\",nodeId:\"hzULLIm6g\",rendersWithMotion:true,scopeId:\"acxLLtlnx\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"var(--token-91b338c0-2099-4358-9807-d05c4890e03d, rgb(255, 255, 255))\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:20,controls:true,height:\"100%\",id:\"hzULLIm6g\",isMixedBorderRadius:true,layoutId:\"hzULLIm6g\",loop:true,muted:true,name:\"video_unlock.mp4\",objectFit:\"cover\",playing:false,posterEnabled:false,srcType:\"URL\",srcUrl:\"https://d1d40hzjcgkxz5.cloudfront.net/ANAX/Unlock+Investment+Opps+CTA+Section.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:20,volume:25,width:\"100%\",...addPropertyOverrides({doZZTS9h_:{bottomRightRadius:0,topRightRadius:0},w0CNP_gvt:{bottomRightRadius:0,playing:true,topRightRadius:0},W0DkXbHo5:{playing:true}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QiDE7.framer-1tngg1h, .framer-QiDE7 .framer-1tngg1h { display: block; }\",\".framer-QiDE7.framer-1u2kujv { height: 448px; position: relative; width: 576px; }\",\".framer-QiDE7 .framer-1kgaf1-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-QiDE7.framer-v-yodhln.framer-1u2kujv, .framer-QiDE7.framer-v-3movbt.framer-1u2kujv { height: 550px; width: 704px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 448\n * @framerIntrinsicWidth 576\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"W0DkXbHo5\":{\"layout\":[\"fixed\",\"fixed\"]},\"doZZTS9h_\":{\"layout\":[\"fixed\",\"fixed\"]},\"w0CNP_gvt\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameracxLLtlnx=withCSS(Component,css,\"framer-QiDE7\");export default FrameracxLLtlnx;FrameracxLLtlnx.displayName=\"Unlock Video\";FrameracxLLtlnx.defaultProps={height:448,width:576};addPropertyControls(FrameracxLLtlnx,{variant:{options:[\"YIwjzjxLQ\",\"W0DkXbHo5\",\"doZZTS9h_\",\"w0CNP_gvt\"],optionTitles:[\"UnlockVideo/Desktop\",\"UnlockVideo/DesktopPlay\",\"UnlockVideo/Tab\",\"UnlockVideo/TabPlay\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameracxLLtlnx,[{explicitInter:true,fonts:[]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameracxLLtlnx\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"W0DkXbHo5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"doZZTS9h_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"w0CNP_gvt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"448\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"576\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./acxLLtlnx.map", "// Generated by Framer (f26e712)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";const VideoFonts=getFonts(Video);const cycleOrder=[\"om8kaG3HV\",\"uJcmZi2qr\"];const serializationHash=\"framer-nFfeQ\";const variantClassNames={om8kaG3HV:\"framer-v-ddx84\",uJcmZi2qr:\"framer-v-mi0scl\"};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={\"UnlockVideoMobile/Mobile\":\"om8kaG3HV\",\"UnlockVideoMobile/MobilePlay\":\"uJcmZi2qr\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"om8kaG3HV\"};};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:\"om8kaG3HV\",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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ddx84\",className,classNames),\"data-border\":true,\"data-framer-name\":\"UnlockVideoMobile/Mobile\",layoutDependency:layoutDependency,layoutId:\"om8kaG3HV\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c9880513-d07a-4646-84c6-b76f141f1a88, rgb(34, 63, 128))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-c9880513-d07a-4646-84c6-b76f141f1a88, rgb(34, 63, 128))\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,...style},...addPropertyOverrides({uJcmZi2qr:{\"data-framer-name\":\"UnlockVideoMobile/MobilePlay\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6l4xvh-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"QPLig8BL2-container\",nodeId:\"QPLig8BL2\",rendersWithMotion:true,scopeId:\"CkHknxcbH\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"var(--token-91b338c0-2099-4358-9807-d05c4890e03d, rgb(255, 255, 255))\",borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,controls:true,height:\"100%\",id:\"QPLig8BL2\",isMixedBorderRadius:false,layoutId:\"QPLig8BL2\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcType:\"URL\",srcUrl:\"https://assets-snaplistings.s3.us-east-2.amazonaws.com/ANAX/Unlock+Investment+Opps+CTA+Section.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:15,topRightRadius:15,volume:25,width:\"100%\",...addPropertyOverrides({uJcmZi2qr:{playing:true}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nFfeQ.framer-zszq84, .framer-nFfeQ .framer-zszq84 { display: block; }\",\".framer-nFfeQ.framer-ddx84 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 325px; }\",\".framer-nFfeQ .framer-6l4xvh-container { flex: none; height: 253px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nFfeQ.framer-ddx84 { gap: 0px; } .framer-nFfeQ.framer-ddx84 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-nFfeQ.framer-ddx84 > :first-child { margin-left: 0px; } .framer-nFfeQ.framer-ddx84 > :last-child { margin-right: 0px; } }\",'.framer-nFfeQ[data-border=\"true\"]::after, .framer-nFfeQ [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 253\n * @framerIntrinsicWidth 325\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"uJcmZi2qr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCkHknxcbH=withCSS(Component,css,\"framer-nFfeQ\");export default FramerCkHknxcbH;FramerCkHknxcbH.displayName=\"Unlock Video Mobile\";FramerCkHknxcbH.defaultProps={height:253,width:325};addPropertyControls(FramerCkHknxcbH,{variant:{options:[\"om8kaG3HV\",\"uJcmZi2qr\"],optionTitles:[\"UnlockVideoMobile/Mobile\",\"UnlockVideoMobile/MobilePlay\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerCkHknxcbH,[{explicitInter:true,fonts:[]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCkHknxcbH\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uJcmZi2qr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"253\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"325\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CkHknxcbH.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Suisse Int'l Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Suisse Int'l Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/L3CN4MLCZQeuh9BjpUboN92cIXE.woff2\"}]}];export const css=['.framer-jtVId .framer-styles-preset-wembym:not(.rich-text-wrapper), .framer-jtVId .framer-styles-preset-wembym.rich-text-wrapper h6 { --framer-font-family: \"Suisse Int\\'l Regular\", \"Suisse Int\\'l Regular Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-ba8cb4f6-07b8-496f-8b25-38f00b9cb3a3, #555b6e); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-jtVId\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1d068b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/7ydiJvuYjWvlf4elEkiN/c6vk2cqZsRh9Xjg7Yi1C/bN5YE5xwu.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ezt6u394QeiOsKnUG1BN/fmmpRJDa3ldt41ZnnrTQ/IcA1ti1Pe.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Mec6cxvIr5VfZyQ6F9EK/GKgeioNj9ijTGAJgVsb3/ohXMbdum2.js\";import Button from\"https://framerusercontent.com/modules/R1FBRhOieU5hQGEOgqbB/hMURaDr4wCamPMfwwQZI/IRiPQlNqU.js\";const ButtonFonts=getFonts(Button);const cycleOrder=[\"XJMBWzoXS\",\"jOyHyOrb3\"];const serializationHash=\"framer-P8oos\";const variantClassNames={jOyHyOrb3:\"framer-v-p329fu\",XJMBWzoXS:\"framer-v-tludaq\"};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 transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"InvestmentOpportunityCard/Mobile\":\"jOyHyOrb3\",\"InvestmentOpportunityCard/Primary\":\"XJMBWzoXS\"};const getProps=({address,details,height,id,image,link2,subtext,width,...props})=>{return{...props,aAq9cIbty:image??props.aAq9cIbty??{src:\"https://framerusercontent.com/images/DQco1Id1uzt2vbU5Vcpivte3b88.png\"},hRWbZo01U:details??props.hRWbZo01U??\"Topic\",tZKIBE7NJ:subtext??props.tZKIBE7NJ??\"Bridge Loan Required\",variant:humanReadableVariantMap[props.variant]??props.variant??\"XJMBWzoXS\",xhF3_ytDl:address??props.xhF3_ytDl??\"Brooklyn, NY\",xST6e2QLV:link2??props.xST6e2QLV};};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,aAq9cIbty,hRWbZo01U,tZKIBE7NJ,xhF3_ytDl,xST6e2QLV,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XJMBWzoXS\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.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.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-tludaq\",className,classNames),\"data-framer-name\":\"InvestmentOpportunityCard/Primary\",layoutDependency:layoutDependency,layoutId:\"XJMBWzoXS\",ref:refBinding,style:{...style},...addPropertyOverrides({jOyHyOrb3:{\"data-framer-name\":\"InvestmentOpportunityCard/Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-161rf3k\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"Ge4KygLW_\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g8sije\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"NOH9TZBd2\",style:{backgroundColor:\"rgb(219, 223, 231)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14lj8rv\",\"data-framer-name\":\"Group 159\",layoutDependency:layoutDependency,layoutId:\"ubcBz5YsG\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+72.46484375+-.01163482666015625),positionX:\"center\",positionY:\"center\",sizes:\"178px\",src:\"https://framerusercontent.com/images/AyCzvYdd04bo08Q1uuKlxHgApBE.png\",srcSet:\"https://framerusercontent.com/images/AyCzvYdd04bo08Q1uuKlxHgApBE.png?scale-down-to=512 512w,https://framerusercontent.com/images/AyCzvYdd04bo08Q1uuKlxHgApBE.png 709w\"},className:\"framer-gv4vx0\",\"data-framer-name\":\"Group 1\",layoutDependency:layoutDependency,layoutId:\"EOBkFJEU2\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7U3Vpc3NlIEludCdsLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Suisse Int\\'l\"',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(85, 91, 110, 1))\"},children:\"2024 March Newsletter\"})})}),className:\"framer-jyhxz7\",\"data-framer-name\":\"Price\",fonts:[\"GF;Suisse Int'l-regular\"],layoutDependency:layoutDependency,layoutId:\"lxTm0kHv5\",style:{\"--extracted-1w3ko1f\":\"rgba(85, 91, 110, 1)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(aAq9cIbty)},className:\"framer-1nvs59p\",\"data-framer-name\":\"map.jpg\",layoutDependency:layoutDependency,layoutId:\"IxYR76QLC\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f8xfcf\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"HVvjs_vEM\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1dl8p65\",\"data-styles-preset\":\"ohXMbdum2\",children:\"Topic\"})}),className:\"framer-1njjx2c\",\"data-framer-name\":\"txt_heading3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"L0ui1ZkIi\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:hRWbZo01U,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-4ppgzp\",\"data-styles-preset\":\"IcA1ti1Pe\",children:\"Bridge Loan Required\"})}),className:\"framer-mffjyk\",\"data-framer-name\":\"txt_heading6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DG37OYQig\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:tZKIBE7NJ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-wembym\",\"data-styles-preset\":\"bN5YE5xwu\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-ba8cb4f6-07b8-496f-8b25-38f00b9cb3a3, rgb(85, 91, 110)))\"},children:\"Brooklyn, NY\"})}),className:\"framer-19j5zu1\",\"data-framer-name\":\"txt_heading6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aTpZQ5p_g\",style:{\"--extracted-1w1cjl5\":\"var(--token-ba8cb4f6-07b8-496f-8b25-38f00b9cb3a3, rgb(85, 91, 110))\",\"--framer-paragraph-spacing\":\"0px\"},text:xhF3_ytDl,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+381.000001335144,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5kydgg-container\",\"data-framer-name\":\"btn_desktopBlue\",layoutDependency:layoutDependency,layoutId:\"UvUcbtxxx-container\",name:\"btn_desktopBlue\",nodeId:\"UvUcbtxxx\",rendersWithMotion:true,scopeId:\"GB48qPR4m\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"UvUcbtxxx\",layoutId:\"UvUcbtxxx\",LSdrl8sYD:xST6e2QLV,name:\"btn_desktopBlue\",variant:\"dvvOuGY6D\",vszfqN82M:\"Learn More\",width:\"100%\",...addPropertyOverrides({jOyHyOrb3:{variant:\"mYU9wxE3e\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-P8oos.framer-11pcwam, .framer-P8oos .framer-11pcwam { display: block; }\",\".framer-P8oos.framer-tludaq { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 356px; }\",\".framer-P8oos .framer-161rf3k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 17px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-P8oos .framer-g8sije { aspect-ratio: 1.4471544715447155 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 246px); overflow: hidden; position: relative; width: 100%; }\",\".framer-P8oos .framer-14lj8rv { flex: none; height: 111px; left: 89px; overflow: visible; position: absolute; top: 72px; width: 177px; }\",\".framer-P8oos .framer-gv4vx0 { flex: none; height: 62px; left: 0px; position: absolute; top: 0px; width: 178px; }\",\".framer-P8oos .framer-jyhxz7 { flex: none; height: auto; left: 50%; position: absolute; top: 93px; white-space: pre; width: auto; }\",\".framer-P8oos .framer-1nvs59p { flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; }\",\".framer-P8oos .framer-f8xfcf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-P8oos .framer-1njjx2c { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-P8oos .framer-mffjyk, .framer-P8oos .framer-19j5zu1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-P8oos .framer-5kydgg-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-P8oos.framer-tludaq, .framer-P8oos .framer-161rf3k, .framer-P8oos .framer-f8xfcf { gap: 0px; } .framer-P8oos.framer-tludaq > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-P8oos.framer-tludaq > :first-child, .framer-P8oos .framer-161rf3k > :first-child, .framer-P8oos .framer-f8xfcf > :first-child { margin-top: 0px; } .framer-P8oos.framer-tludaq > :last-child, .framer-P8oos .framer-161rf3k > :last-child, .framer-P8oos .framer-f8xfcf > :last-child { margin-bottom: 0px; } .framer-P8oos .framer-161rf3k > * { margin: 0px; margin-bottom: calc(17.066667556762695px / 2); margin-top: calc(17.066667556762695px / 2); } .framer-P8oos .framer-f8xfcf > * { margin: 0px; margin-bottom: calc(4.266666889190674px / 2); margin-top: calc(4.266666889190674px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 421\n * @framerIntrinsicWidth 356\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jOyHyOrb3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"aAq9cIbty\":\"image\",\"hRWbZo01U\":\"details\",\"tZKIBE7NJ\":\"subtext\",\"xhF3_ytDl\":\"address\",\"xST6e2QLV\":\"link2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGB48qPR4m=withCSS(Component,css,\"framer-P8oos\");export default FramerGB48qPR4m;FramerGB48qPR4m.displayName=\"Investment Opportunity Card\";FramerGB48qPR4m.defaultProps={height:421,width:356};addPropertyControls(FramerGB48qPR4m,{variant:{options:[\"XJMBWzoXS\",\"jOyHyOrb3\"],optionTitles:[\"InvestmentOpportunityCard/Primary\",\"InvestmentOpportunityCard/Mobile\"],title:\"Variant\",type:ControlType.Enum},aAq9cIbty:{__defaultAssetReference:\"data:framer/asset-reference,DQco1Id1uzt2vbU5Vcpivte3b88.png?originalFilename=Image.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},hRWbZo01U:{defaultValue:\"Topic\",displayTextArea:false,title:\"Details\",type:ControlType.String},tZKIBE7NJ:{defaultValue:\"Bridge Loan Required\",displayTextArea:false,title:\"Subtext\",type:ControlType.String},xhF3_ytDl:{defaultValue:\"Brooklyn, NY\",displayTextArea:false,title:\"Address\",type:ControlType.String},xST6e2QLV:{title:\"Link 2\",type:ControlType.Link}});addFonts(FramerGB48qPR4m,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGB48qPR4m\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"421\",\"framerIntrinsicWidth\":\"356\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jOyHyOrb3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"aAq9cIbty\\\":\\\"image\\\",\\\"hRWbZo01U\\\":\\\"details\\\",\\\"tZKIBE7NJ\\\":\\\"subtext\\\",\\\"xhF3_ytDl\\\":\\\"address\\\",\\\"xST6e2QLV\\\":\\\"link2\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GB48qPR4m.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Suisse Int'l Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Suisse Int'l Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/L3CN4MLCZQeuh9BjpUboN92cIXE.woff2\"}]}];export const css=['.framer-Pb7cp .framer-styles-preset-kvw2ht:not(.rich-text-wrapper), .framer-Pb7cp .framer-styles-preset-kvw2ht.rich-text-wrapper p { --framer-font-family: \"Suisse Int\\'l Regular\", \"Suisse Int\\'l Regular Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #555b6e; --framer-text-decoration: underline; --framer-text-transform: none; }','@media (max-width: 1279px) and (min-width: 768px) { .framer-Pb7cp .framer-styles-preset-kvw2ht:not(.rich-text-wrapper), .framer-Pb7cp .framer-styles-preset-kvw2ht.rich-text-wrapper p { --framer-font-family: \"Suisse Int\\'l Regular\", \"Suisse Int\\'l Regular Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #555b6e; --framer-text-decoration: underline; --framer-text-transform: none; } }','@media (max-width: 767px) and (min-width: 0px) { .framer-Pb7cp .framer-styles-preset-kvw2ht:not(.rich-text-wrapper), .framer-Pb7cp .framer-styles-preset-kvw2ht.rich-text-wrapper p { --framer-font-family: \"Suisse Int\\'l Regular\", \"Suisse Int\\'l Regular Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #555b6e; --framer-text-decoration: underline; --framer-text-transform: none; } }'];export const className=\"framer-Pb7cp\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-kLipf .framer-styles-preset-ak00ae:not(.rich-text-wrapper), .framer-kLipf .framer-styles-preset-ak00ae.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-c9880513-d07a-4646-84c6-b76f141f1a88, #223f80) /* {\"name\":\"Anax Blue\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-ba8cb4f6-07b8-496f-8b25-38f00b9cb3a3, #555b6e); --framer-link-text-decoration: none; }'];export const className=\"framer-kLipf\";\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 (0c5492c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import UnlockVideo from\"#framer/local/canvasComponent/acxLLtlnx/acxLLtlnx.js\";import UnlockVideoMobile from\"#framer/local/canvasComponent/CkHknxcbH/CkHknxcbH.js\";import InvestmentOpportunityCard from\"#framer/local/canvasComponent/GB48qPR4m/GB48qPR4m.js\";import Button from\"#framer/local/canvasComponent/IRiPQlNqU/IRiPQlNqU.js\";import Navbar from\"#framer/local/canvasComponent/q8cLr8141/q8cLr8141.js\";import Footer from\"#framer/local/canvasComponent/VgTDa2pie/VgTDa2pie.js\";import*as sharedStyle7 from\"#framer/local/css/di3bRh1SV/di3bRh1SV.js\";import*as sharedStyle4 from\"#framer/local/css/h7IIMRZRW/h7IIMRZRW.js\";import*as sharedStyle from\"#framer/local/css/KDtpVnAev/KDtpVnAev.js\";import*as sharedStyle5 from\"#framer/local/css/nqQX0DWGb/nqQX0DWGb.js\";import*as sharedStyle3 from\"#framer/local/css/PzkVhR4nG/PzkVhR4nG.js\";import*as sharedStyle2 from\"#framer/local/css/suP2pcvBN/suP2pcvBN.js\";import*as sharedStyle6 from\"#framer/local/css/UoD8vLRUN/UoD8vLRUN.js\";import*as sharedStyle8 from\"#framer/local/css/Vpw8Cmm3w/Vpw8Cmm3w.js\";import*as sharedStyle1 from\"#framer/local/css/vt2_SHJgf/vt2_SHJgf.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const ButtonFonts=getFonts(Button);const VideoFonts=getFonts(Video);const EmbedFonts=getFonts(Embed);const InvestmentOpportunityCardFonts=getFonts(InvestmentOpportunityCard);const UnlockVideoFonts=getFonts(UnlockVideo);const UnlockVideoWithVariantAppearEffect=withVariantAppearEffect(UnlockVideo);const UnlockVideoMobileFonts=getFonts(UnlockVideoMobile);const UnlockVideoMobileWithVariantAppearEffect=withVariantAppearEffect(UnlockVideoMobile);const FooterFonts=getFonts(Footer);const NavbarFonts=getFonts(Navbar);const MotionDivWithFX=withFX(motion.div);const breakpoints={loBAkdE1Q:\"(min-width: 768px) and (max-width: 1279px)\",uI43sSMgP:\"(max-width: 767px)\",WQLkyLRf1:\"(min-width: 1280px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-tlDPX\";const variantClassNames={loBAkdE1Q:\"framer-v-1h5h2kn\",uI43sSMgP:\"framer-v-f7kuqo\",WQLkyLRf1:\"framer-v-72rtr7\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-80};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"uI43sSMgP\",Tablet:\"loBAkdE1Q\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"loBAkdE1Q\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"uI43sSMgP\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"uI43sSMgP\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-91b338c0-2099-4358-9807-d05c4890e03d, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n8zo2c\",\"data-framer-name\":\"New Hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o2caqu\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x43oi\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p326j5\",\"data-framer-name\":\"Frame 792\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-gx7bb0\",\"data-styles-preset\":\"KDtpVnAev\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We leverage decades of experience in real estate construction, development, and finance to help structure creative solutions across the capital stack. \"})}),className:\"framer-bxglnw\",\"data-framer-name\":\"txt_heading1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ejBN8qNUd\"},implicitPathVariables:undefined},{href:{webPageId:\"ejBN8qNUd\"},implicitPathVariables:undefined},{href:{webPageId:\"ejBN8qNUd\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{loBAkdE1Q:{y:(componentViewport?.y||0)+0+0+200+0+0+0+91.2},uI43sSMgP:{y:(componentViewport?.y||0)+0+0+120+0+0+12+91.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+252+0+0+0+91.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yhb7hr-container\",\"data-framer-name\":\"btn_desktopWhite\",name:\"btn_desktopWhite\",nodeId:\"JetdQRc8l\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{loBAkdE1Q:{LSdrl8sYD:resolvedLinks[1]},uI43sSMgP:{LSdrl8sYD:resolvedLinks[2],variant:\"guQ04FSjM\"}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"JetdQRc8l\",layoutId:\"JetdQRc8l\",LSdrl8sYD:resolvedLinks[0],name:\"btn_desktopWhite\",variant:\"Vd9LmB0qh\",vszfqN82M:\"Get Capital\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lm4oic\",\"data-framer-name\":\"Linear Gradient\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-f65n49-container\",\"data-framer-name\":\"video_desktop_hero_video.mp4\",isAuthoredByUser:true,isModuleExternal:true,name:\"video_desktop_hero_video.mp4\",nodeId:\"ZIuWrT3f7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{loBAkdE1Q:{srcUrl:\"https://snaplistings.s3.us-east-2.amazonaws.com/ANAXREP/Hero+Video.mp4\"},uI43sSMgP:{srcUrl:\"https://snaplistings.s3.us-east-2.amazonaws.com/ANAXREP/Hero+Video.mp4\"}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"ZIuWrT3f7\",isMixedBorderRadius:false,layoutId:\"ZIuWrT3f7\",loop:true,muted:true,name:\"video_desktop_hero_video.mp4\",objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/nzKrDidvWBZp6UCfwoaXYYU7WM.mp4\",srcType:\"URL\",srcUrl:\"https://d1fxvyik3m5j19.cloudfront.net/ANAXREP/Desktop+Hero+Video.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wj3ow4\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10zg42w-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GEV23CsNW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"<script type='text/javascript' src='https://www.thefinancials.com/Widget.aspx?pid=ANAX&wid=0389208221&style=Ribbon_Stacked&mode=js'></script>\",id:\"GEV23CsNW\",layoutId:\"GEV23CsNW\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"<script type='text/javascript' src='https://www.thefinancials.com/Widget.aspx?pid=ANAX&wid=0389208221&style=Ribbon_Stacked&mode=js'></script>\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l1cacy\",\"data-framer-name\":\"Services Overview\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mj01wl\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cgxccu\",\"data-framer-name\":\"Frame 829\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ad1dzo\",\"data-framer-name\":\"Frame 794\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1i5tuh7\",\"data-styles-preset\":\"vt2_SHJgf\",children:\"Services Overview\"})}),className:\"framer-khsen6\",\"data-framer-name\":\"txt_heading2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2p3hir\",\"data-framer-name\":\"Frame 828\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o3sq9b\",\"data-framer-name\":\"Frame 886\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1shszdd\",\"data-framer-name\":\"Frame 867\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v3m6yp\",\"data-styles-preset\":\"suP2pcvBN\",children:\"ANAX Real Estate Partners is a privately-held, New York City-based real estate capital advisory firm. With roots deeply embedded in construction and development, we leverage our decades of experience to help structure creative solutions across the capital stack. Specializing in real estate finance advisory and development, we offer comprehensive financial solutions tailored to each stage of commercial real estate projects, such as debt and equity placement, deal structuring, and revitalizing distressed assets through strategic restructuring and recapitalization.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v3m6yp\",\"data-styles-preset\":\"suP2pcvBN\",children:\"We Specialize In:\"})]}),className:\"framer-140xcjq\",\"data-framer-name\":\"txt_body\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vitlkz\",\"data-framer-name\":\"Accordion Home\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1071fwl\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ae5ycu\",\"data-framer-name\":\"Row\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kch3jk\",\"data-framer-name\":\"Question\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-mq48xc\",\"data-styles-preset\":\"PzkVhR4nG\",children:\"Debt and Equity Placement\"})}),className:\"framer-7urppn\",\"data-framer-name\":\"txt_heading5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o79yqh\",\"data-border\":true,\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tdex5w\",\"data-framer-name\":\"Row\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jtt63q\",\"data-framer-name\":\"Question\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-mq48xc\",\"data-styles-preset\":\"PzkVhR4nG\",children:\"Revitalizing Distressed Assets\"})}),className:\"framer-1j3j2c5\",\"data-framer-name\":\"txt_heading5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f7r8ac\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-iyo48p\",\"data-framer-name\":\"Row\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8zbjd9\",\"data-framer-name\":\"Question\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-mq48xc\",\"data-styles-preset\":\"PzkVhR4nG\",children:\"Strategic Restructuring and Recapitalization\"})}),className:\"framer-uz7ybh\",\"data-framer-name\":\"txt_heading5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v39wzh\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"M4YKiSmUd\"},implicitPathVariables:undefined},{href:{webPageId:\"M4YKiSmUd\"},implicitPathVariables:undefined},{href:{webPageId:\"M4YKiSmUd\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{loBAkdE1Q:{y:(componentViewport?.y||0)+0+900+64+0+0+0+0+43.2+0+0+0+484.4},uI43sSMgP:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+1e3+40+0+0+0+0+63.2+0+0+0+484.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+1e3+64+0+0+0+0+0+0+484.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bwdnoe-container\",\"data-framer-name\":\"btn_desktopBlue\",name:\"btn_desktopBlue\",nodeId:\"toUnfhThq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{loBAkdE1Q:{LSdrl8sYD:resolvedLinks1[1]},uI43sSMgP:{LSdrl8sYD:resolvedLinks1[2],style:{width:\"100%\"},variant:\"mYU9wxE3e\"}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"toUnfhThq\",layoutId:\"toUnfhThq\",LSdrl8sYD:resolvedLinks1[0],name:\"btn_desktopBlue\",variant:\"dvvOuGY6D\",vszfqN82M:\"Learn More About ANAX Services\",width:\"100%\"})})})})})})]})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{loBAkdE1Q:{background:{alt:\"Buildings in the night\",fit:\"fill\",intrinsicHeight:2729,intrinsicWidth:4096,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1595.6),pixelHeight:1365,pixelWidth:2048,positionX:\"49.9%\",positionY:\"5.1%\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ztk1V8lSxNXxQGutKk9JVDtdz4.webp\",srcSet:\"https://framerusercontent.com/images/ztk1V8lSxNXxQGutKk9JVDtdz4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ztk1V8lSxNXxQGutKk9JVDtdz4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/ztk1V8lSxNXxQGutKk9JVDtdz4.webp 2048w\"}},uI43sSMgP:{background:{alt:\"Buildings in the night\",fit:\"fill\",intrinsicHeight:762,intrinsicWidth:750,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1667.6),pixelHeight:762,pixelWidth:750,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/uqgTxpRlAxAOp5utfmGyiaWs.png\",srcSet:\"https://framerusercontent.com/images/uqgTxpRlAxAOp5utfmGyiaWs.png 750w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Buildings in the night\",fit:\"fill\",intrinsicHeight:2729,intrinsicWidth:4096,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1652.4),pixelHeight:1365,pixelWidth:2048,positionX:\"50%\",positionY:\"18%\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ztk1V8lSxNXxQGutKk9JVDtdz4.webp\",srcSet:\"https://framerusercontent.com/images/ztk1V8lSxNXxQGutKk9JVDtdz4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ztk1V8lSxNXxQGutKk9JVDtdz4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/ztk1V8lSxNXxQGutKk9JVDtdz4.webp 2048w\"},className:\"framer-1684fmc\",\"data-framer-name\":\"img_buildings.jpg\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1urspge\",\"data-framer-name\":\"Frame 768\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u6fs0m\",\"data-framer-name\":\"Frame 792\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1i5tuh7\",\"data-styles-preset\":\"vt2_SHJgf\",style:{\"--framer-text-color\":\"var(--token-91b338c0-2099-4358-9807-d05c4890e03d, rgb(255, 255, 255))\"},children:\"Financing To Fit Your Project\"})}),className:\"framer-1dr8e8h\",\"data-framer-name\":\"txt_heading2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-3a6s95\",\"data-styles-preset\":\"h7IIMRZRW\",children:\"We're not just capital advisors; we're developers turned financing experts. Leverage our extensive network and decades of experience to craft the perfect financing solution tailored to your project needs.\"})}),className:\"framer-281j0u\",\"data-framer-name\":\"txt_heading4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ejBN8qNUd\"},implicitPathVariables:undefined},{href:{webPageId:\"ejBN8qNUd\"},implicitPathVariables:undefined},{href:{webPageId:\"ejBN8qNUd\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{loBAkdE1Q:{y:(componentViewport?.y||0)+0+1595.6+64+0+0+135.2},uI43sSMgP:{y:(componentViewport?.y||0)+0+1667.6+64+0+0+135.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+1652.4+64+0+0+135.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rtfcmi-container\",\"data-framer-name\":\"btn_desktopWhite\",name:\"btn_desktopWhite\",nodeId:\"n8lA1tVrA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{loBAkdE1Q:{LSdrl8sYD:resolvedLinks2[1]},uI43sSMgP:{LSdrl8sYD:resolvedLinks2[2],variant:\"guQ04FSjM\"}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"n8lA1tVrA\",layoutId:\"n8lA1tVrA\",LSdrl8sYD:resolvedLinks2[0],name:\"btn_desktopWhite\",variant:\"Vd9LmB0qh\",vszfqN82M:\"Get Capital\",width:\"100%\"})})})})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-poljy9\",\"data-framer-name\":\"Featured Investment Opportunities\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1i5tuh7\",\"data-styles-preset\":\"vt2_SHJgf\",children:\"Featured Investment Opportunities\"})}),className:\"framer-19oe48a\",\"data-framer-name\":\"txt_heading2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xzqyki\",\"data-framer-name\":\"Frame 767\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4oye95\",\"data-framer-name\":\"Frame 769\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":yZr57gB7y\",webPageId:\"x2mqTCGwV\"},implicitPathVariables:undefined},{href:{hash:\":yZr57gB7y\",webPageId:\"x2mqTCGwV\"},implicitPathVariables:undefined},{href:{hash:\":yZr57gB7y\",webPageId:\"x2mqTCGwV\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{loBAkdE1Q:{width:\"332px\",y:(componentViewport?.y||0)+0+1898.8+64+73.2+0+0+0+0},uI43sSMgP:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+1970.8+64+73.2+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:421,width:\"356px\",y:(componentViewport?.y||0)+0+1955.6+64+73.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1og7gaq-container\",nodeId:\"Kz_1lpjkb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{loBAkdE1Q:{xST6e2QLV:resolvedLinks3[1]},uI43sSMgP:{variant:\"jOyHyOrb3\",xST6e2QLV:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(InvestmentOpportunityCard,{aAq9cIbty:addImageAlt({pixelHeight:916,pixelWidth:786,src:\"https://framerusercontent.com/images/EG0vFNbYE30cCmcO6cNodWCAa4I.webp\",srcSet:\"https://framerusercontent.com/images/EG0vFNbYE30cCmcO6cNodWCAa4I.webp 786w\"},\"Fort Lauderdale, Florida\"),height:\"100%\",hRWbZo01U:\"$4,500,000 B-Piece of Construction Loan Required\",id:\"Kz_1lpjkb\",layoutId:\"Kz_1lpjkb\",style:{width:\"100%\"},tZKIBE7NJ:\"Multi-Family (Condo)\",variant:\"XJMBWzoXS\",width:\"100%\",xhF3_ytDl:\"Fort Lauderdale, Florida\",xST6e2QLV:resolvedLinks3[0]})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":AlQsoS7Pf\",webPageId:\"x2mqTCGwV\"},implicitPathVariables:undefined},{href:{hash:\":AlQsoS7Pf\",webPageId:\"x2mqTCGwV\"},implicitPathVariables:undefined},{href:{hash:\":AlQsoS7Pf\",webPageId:\"x2mqTCGwV\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{loBAkdE1Q:{width:\"332px\",y:(componentViewport?.y||0)+0+1898.8+64+73.2+0+0+0+0},uI43sSMgP:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+1970.8+64+73.2+0+0+0+458}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:421,width:\"356px\",y:(componentViewport?.y||0)+0+1955.6+64+73.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ngwhty-container\",nodeId:\"rsWFPRzMK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{loBAkdE1Q:{xST6e2QLV:resolvedLinks4[1]},uI43sSMgP:{variant:\"jOyHyOrb3\",xST6e2QLV:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(InvestmentOpportunityCard,{aAq9cIbty:addImageAlt({pixelHeight:917,pixelWidth:799,src:\"https://framerusercontent.com/images/9Mx2G6qJB1P5qq6Nv66YL3XP98.webp\",srcSet:\"https://framerusercontent.com/images/9Mx2G6qJB1P5qq6Nv66YL3XP98.webp 799w\"},\"Overland Park, Kansas\"),height:\"100%\",hRWbZo01U:\"$5,000,000 Rescue Capital - Preferred Equity Required\",id:\"rsWFPRzMK\",layoutId:\"rsWFPRzMK\",style:{width:\"100%\"},tZKIBE7NJ:\"Hotel to Multi-Family (Rental) Conversion\",variant:\"XJMBWzoXS\",width:\"100%\",xhF3_ytDl:\"Overland Park, Kansas\",xST6e2QLV:resolvedLinks4[0]})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":Wvoft1eOP\",webPageId:\"x2mqTCGwV\"},implicitPathVariables:undefined},{href:{hash:\":Wvoft1eOP\",webPageId:\"x2mqTCGwV\"},implicitPathVariables:undefined},{href:{hash:\":Wvoft1eOP\",webPageId:\"x2mqTCGwV\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{loBAkdE1Q:{width:\"332px\",y:(componentViewport?.y||0)+0+1898.8+64+73.2+0+0+0+461},uI43sSMgP:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+1970.8+64+73.2+0+0+0+916}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:421,width:\"356px\",y:(componentViewport?.y||0)+0+1955.6+64+73.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ouqsee-container\",nodeId:\"U2e3v9AbR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{loBAkdE1Q:{xST6e2QLV:resolvedLinks5[1]},uI43sSMgP:{variant:\"jOyHyOrb3\",xST6e2QLV:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(InvestmentOpportunityCard,{aAq9cIbty:addImageAlt({pixelHeight:919,pixelWidth:768,src:\"https://framerusercontent.com/images/0uXjirGHBmaMb8Eq839h0gYHfyA.webp\",srcSet:\"https://framerusercontent.com/images/0uXjirGHBmaMb8Eq839h0gYHfyA.webp 768w\"},\"Miami, Florida\"),height:\"100%\",hRWbZo01U:\"$35,000,000 Limited Partner Required\",id:\"U2e3v9AbR\",layoutId:\"U2e3v9AbR\",style:{width:\"100%\"},tZKIBE7NJ:\"Multi-Family (Condo)\",variant:\"XJMBWzoXS\",width:\"100%\",xhF3_ytDl:\"Miami, Florida\",xST6e2QLV:resolvedLinks5[0]})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":R7QVNJ099\",webPageId:\"x2mqTCGwV\"},implicitPathVariables:undefined},{href:{hash:\":R7QVNJ099\",webPageId:\"x2mqTCGwV\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{loBAkdE1Q:{height:421,width:\"332px\",y:(componentViewport?.y||0)+0+1898.8+64+73.2+0+0+0+461}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-k0hlk6-container hidden-72rtr7 hidden-f7kuqo\",nodeId:\"D00BhsRJW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{loBAkdE1Q:{xST6e2QLV:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(InvestmentOpportunityCard,{aAq9cIbty:addImageAlt({pixelHeight:916,pixelWidth:786,src:\"https://framerusercontent.com/images/VuAO7G52dJ4fihaWjbySEkDaQ.png\",srcSet:\"https://framerusercontent.com/images/VuAO7G52dJ4fihaWjbySEkDaQ.png 786w\"},\"Sacrament, CA Map\"),height:\"100%\",hRWbZo01U:\"$30,000,000 Programmatic - Preferred Equity Required\",id:\"D00BhsRJW\",layoutId:\"D00BhsRJW\",style:{width:\"100%\"},tZKIBE7NJ:\"Multi-Family (Rental)\",variant:\"XJMBWzoXS\",width:\"100%\",xhF3_ytDl:\"Fort Lauderdale, Florida\",xST6e2QLV:resolvedLinks6[0]})})})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kvw2ht\",\"data-styles-preset\":\"nqQX0DWGb\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"x2mqTCGwV\"},motionChild:true,nodeId:\"fKdohGDXq\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ak00ae\",\"data-styles-preset\":\"UoD8vLRUN\",children:\"View More\"})})})}),className:\"framer-h5a58q\",\"data-framer-name\":\"txt_body\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k9g1f6\",\"data-framer-name\":\"Unlock Investment\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1la0ghp hidden-f7kuqo\",\"data-border\":true,\"data-framer-name\":\"Frame 852\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-s0q5gn\",\"data-framer-name\":\"Frame 851\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1995fwo\",\"data-framer-name\":\"Frame 830\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-edi42l\",\"data-framer-name\":\"Frame 850\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1r6dgyx\",\"data-styles-preset\":\"di3bRh1SV\",children:\"Unlock Investment Opportunities\"})}),className:\"framer-1dpqo8x\",\"data-framer-name\":\"txt_heading2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-uoy4zw\",\"data-styles-preset\":\"Vpw8Cmm3w\",children:\"Want to access all of ANAX\u2019s investment deals and future opportunities?\"})}),className:\"framer-1bbvm2z\",\"data-framer-name\":\"txt_heading4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Z1398XXYp\"},implicitPathVariables:undefined},{href:{webPageId:\"Z1398XXYp\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{loBAkdE1Q:{y:(componentViewport?.y||0)+0+3070+0+0+64+0+0+0+142.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+2665.8+0+0+132.7+0+0+142.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dzhckk-container\",nodeId:\"at33pQWAd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{loBAkdE1Q:{LSdrl8sYD:resolvedLinks7[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"at33pQWAd\",layoutId:\"at33pQWAd\",LSdrl8sYD:resolvedLinks7[0],variant:\"dvvOuGY6D\",vszfqN82M:\"Get Access\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{loBAkdE1Q:{height:550,width:\"706.5693px\",y:(componentViewport?.y||0)+0+3070+0+0+64+238.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:448,width:\"576px\",y:(componentViewport?.y||0)+0+2665.8+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-48ht1s-container\",nodeId:\"LXHOL6i3O\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{loBAkdE1Q:{__framer__obscuredVariantId:\"doZZTS9h_\",__framer__visibleVariantId:\"w0CNP_gvt\",variant:\"doZZTS9h_\"}},children:/*#__PURE__*/_jsx(UnlockVideoWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"YIwjzjxLQ\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"W0DkXbHo5\",height:\"100%\",id:\"LXHOL6i3O\",layoutId:\"LXHOL6i3O\",style:{height:\"100%\",width:\"100%\"},variant:\"YIwjzjxLQ\",width:\"100%\"})})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-oefkhf hidden-72rtr7 hidden-1h5h2kn\",\"data-framer-name\":\"Get Capital CTA\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rvsmlm\",\"data-framer-name\":\"Frame 768\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fyomvh\",\"data-framer-name\":\"Frame 792\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1i5tuh7\",\"data-styles-preset\":\"vt2_SHJgf\",children:\"Unlock Investment Opportunities\"})}),className:\"framer-nf8m8k\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-uoy4zw\",\"data-styles-preset\":\"Vpw8Cmm3w\",children:\"Want to access all of ANAX\u2019s investment deals and future opportunities?\"})}),className:\"framer-11wnv8p\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uI43sSMgP:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+3597+40+0+0+0+0+117.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:253,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18mq3ey-container\",nodeId:\"EfdDWae74\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(UnlockVideoMobileWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"om8kaG3HV\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"uJcmZi2qr\",height:\"100%\",id:\"EfdDWae74\",layoutId:\"EfdDWae74\",style:{width:\"100%\"},variant:\"om8kaG3HV\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Z1398XXYp\"},implicitPathVariables:undefined},{href:{webPageId:\"Z1398XXYp\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uI43sSMgP:{y:(componentViewport?.y||0)+0+3597+40+0+0+0+0+400.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bbiarm-container\",nodeId:\"MOHA8TPg3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uI43sSMgP:{LSdrl8sYD:resolvedLinks8[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"MOHA8TPg3\",layoutId:\"MOHA8TPg3\",LSdrl8sYD:resolvedLinks8[0],variant:\"mYU9wxE3e\",vszfqN82M:\"Get Access\",width:\"100%\"})})})})})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{loBAkdE1Q:{width:\"768px\",y:(componentViewport?.y||0)+0+3986.6},uI43sSMgP:{width:\"375px\",y:(componentViewport?.y||0)+0+4117.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:313,width:\"1280px\",y:(componentViewport?.y||0)+0+3177.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tdkh06-container\",nodeId:\"YWA_HVFhf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{loBAkdE1Q:{variant:\"bQoU0OR8o\"},uI43sSMgP:{variant:\"olXt5VsXT\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"YWA_HVFhf\",layoutId:\"YWA_HVFhf\",style:{width:\"100%\"},variant:\"CH864ZkXO\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yqltfm\",\"data-border\":true,\"data-framer-name\":\"Nav\",style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{loBAkdE1Q:{width:\"100vw\"},uI43sSMgP:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"1151px\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12jf912-container\",nodeId:\"tVZiVuGav\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{loBAkdE1Q:{variant:\"eCGB9Wddn\"},uI43sSMgP:{variant:\"eCGB9Wddn\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"tVZiVuGav\",layoutId:\"tVZiVuGav\",style:{width:\"100%\"},variant:\"tAJekNjma\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tlDPX.framer-lux5qc, .framer-tlDPX .framer-lux5qc { display: block; }\",\".framer-tlDPX.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-91b338c0-2099-4358-9807-d05c4890e03d, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-tlDPX .framer-1n8zo2c { align-content: center; align-items: center; background-color: var(--token-91b338c0-2099-4358-9807-d05c4890e03d, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 100vh; overflow: visible; padding: 128px 0px 64px 0px; position: relative; width: 100%; }\",\".framer-tlDPX .framer-1o2caqu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 150px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 252px; transform: translateX(-50%); width: 1152px; z-index: 3; }\",\".framer-tlDPX .framer-1x43oi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 882px; }\",\".framer-tlDPX .framer-1p326j5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tlDPX .framer-bxglnw, .framer-tlDPX .framer-nf8m8k, .framer-tlDPX .framer-11wnv8p { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-tlDPX .framer-1yhb7hr-container, .framer-tlDPX .framer-1bwdnoe-container, .framer-tlDPX .framer-1rtfcmi-container, .framer-tlDPX .framer-dzhckk-container, .framer-tlDPX .framer-bbiarm-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-tlDPX .framer-lm4oic { background: linear-gradient(204deg, rgba(255, 255, 255, 0) 23.53725610618021%, rgba(34, 63, 128, 0.9) 86.31476310162068%); flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 2; }\",\".framer-tlDPX .framer-f65n49-container { flex: none; height: 100vh; left: 0px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-tlDPX .framer-wj3ow4 { bottom: 96px; flex: none; height: 123px; left: calc(50.00000000000002% - 1151px / 2); overflow: hidden; position: absolute; width: 1151px; }\",\".framer-tlDPX .framer-10zg42w-container { flex: none; height: 120px; left: -8px; position: absolute; top: calc(51.21951219512197% - 120px / 2); width: 846px; z-index: 6; }\",\".framer-tlDPX .framer-l1cacy { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 64px; position: relative; width: 100%; }\",\".framer-tlDPX .framer-1mj01wl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1151px; }\",\".framer-tlDPX .framer-1cgxccu { align-content: flex-start; align-items: flex-start; 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-tlDPX .framer-ad1dzo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 308px; }\",\".framer-tlDPX .framer-khsen6 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 308px; word-break: break-word; word-wrap: break-word; }\",\".framer-tlDPX .framer-2p3hir { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 44px; position: relative; width: 1px; }\",\".framer-tlDPX .framer-1o3sq9b, .framer-tlDPX .framer-rvsmlm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tlDPX .framer-1shszdd { align-content: flex-start; align-items: flex-start; 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: 100%; }\",\".framer-tlDPX .framer-140xcjq { --framer-paragraph-spacing: 10px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 800px; word-break: break-word; word-wrap: break-word; }\",\".framer-tlDPX .framer-vitlkz { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tlDPX .framer-1071fwl, .framer-tlDPX .framer-f7r8ac, .framer-tlDPX .framer-1v39wzh { background-color: var(--token-ba8cb4f6-07b8-496f-8b25-38f00b9cb3a3, #555b6e); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-tlDPX .framer-1ae5ycu, .framer-tlDPX .framer-tdex5w, .framer-tlDPX .framer-iyo48p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tlDPX .framer-1kch3jk, .framer-tlDPX .framer-1jtt63q, .framer-tlDPX .framer-8zbjd9 { -webkit-user-select: none; align-content: center; align-items: center; cursor: default; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 15px 0px 15px 0px; position: relative; user-select: none; width: 100%; }\",\".framer-tlDPX .framer-7urppn, .framer-tlDPX .framer-1j3j2c5, .framer-tlDPX .framer-uz7ybh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-tlDPX .framer-1o79yqh { --border-bottom-width: 1px; --border-color: var(--token-ba8cb4f6-07b8-496f-8b25-38f00b9cb3a3, #555b6e); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; background-color: rgba(0, 0, 0, 0.05); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-tlDPX .framer-1684fmc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 64px 0px 64px 0px; position: relative; width: 100%; }\",\".framer-tlDPX .framer-1urspge { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-tlDPX .framer-1u6fs0m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1152px; }\",\".framer-tlDPX .framer-1dr8e8h { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-tlDPX .framer-281j0u { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 860px; word-break: break-word; word-wrap: break-word; }\",\".framer-tlDPX .framer-poljy9 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 64px 0px 64px 0px; position: relative; width: 100%; }\",\".framer-tlDPX .framer-19oe48a { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1151px; word-break: break-word; word-wrap: break-word; }\",\".framer-tlDPX .framer-1xzqyki { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1152px; }\",\".framer-tlDPX .framer-4oye95 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tlDPX .framer-1og7gaq-container, .framer-tlDPX .framer-1ngwhty-container, .framer-tlDPX .framer-ouqsee-container, .framer-tlDPX .framer-k0hlk6-container { flex: none; height: auto; position: relative; width: 356px; }\",\".framer-tlDPX .framer-h5a58q { --framer-custom-cursors: pointer; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-tlDPX .framer-k9g1f6 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 64px 64px 64px; position: relative; width: 1280px; }\",\".framer-tlDPX .framer-1la0ghp { --border-bottom-width: 1px; --border-color: var(--token-c9880513-d07a-4646-84c6-b76f141f1a88, #223f80); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background: linear-gradient(228.26592992306198deg, #dbdfe7 0%, rgb(144, 149, 163) 65.02330303192139%, rgb(85, 91, 110) 100%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 448px; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 40px; position: relative; width: 100%; }\",\".framer-tlDPX .framer-s0q5gn { 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: 487px; }\",\".framer-tlDPX .framer-1995fwo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 433px; }\",\".framer-tlDPX .framer-edi42l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-tlDPX .framer-1dpqo8x, .framer-tlDPX .framer-1bbvm2z { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 410px; word-break: break-word; word-wrap: break-word; }\",\".framer-tlDPX .framer-48ht1s-container { flex: none; height: 448px; position: relative; width: 576px; }\",\".framer-tlDPX .framer-oefkhf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-tlDPX .framer-1fyomvh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tlDPX .framer-18mq3ey-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-tlDPX .framer-1tdkh06-container { flex: none; height: auto; position: relative; width: 1280px; }\",\".framer-tlDPX .framer-1yqltfm { --border-bottom-width: 1px; --border-color: #dcdfe8; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: var(--token-91b338c0-2099-4358-9807-d05c4890e03d, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-tlDPX .framer-12jf912-container { flex: none; height: auto; position: relative; width: 1151px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tlDPX.framer-72rtr7, .framer-tlDPX .framer-1n8zo2c, .framer-tlDPX .framer-1o2caqu, .framer-tlDPX .framer-1x43oi, .framer-tlDPX .framer-1p326j5, .framer-tlDPX .framer-l1cacy, .framer-tlDPX .framer-ad1dzo, .framer-tlDPX .framer-2p3hir, .framer-tlDPX .framer-1o3sq9b, .framer-tlDPX .framer-1shszdd, .framer-tlDPX .framer-vitlkz, .framer-tlDPX .framer-1ae5ycu, .framer-tlDPX .framer-1kch3jk, .framer-tlDPX .framer-tdex5w, .framer-tlDPX .framer-1jtt63q, .framer-tlDPX .framer-iyo48p, .framer-tlDPX .framer-8zbjd9, .framer-tlDPX .framer-1684fmc, .framer-tlDPX .framer-1urspge, .framer-tlDPX .framer-1u6fs0m, .framer-tlDPX .framer-poljy9, .framer-tlDPX .framer-1xzqyki, .framer-tlDPX .framer-4oye95, .framer-tlDPX .framer-k9g1f6, .framer-tlDPX .framer-1995fwo, .framer-tlDPX .framer-edi42l, .framer-tlDPX .framer-oefkhf, .framer-tlDPX .framer-rvsmlm, .framer-tlDPX .framer-1fyomvh, .framer-tlDPX .framer-1yqltfm { gap: 0px; } .framer-tlDPX.framer-72rtr7 > *, .framer-tlDPX .framer-1n8zo2c > *, .framer-tlDPX .framer-vitlkz > *, .framer-tlDPX .framer-1ae5ycu > *, .framer-tlDPX .framer-tdex5w > *, .framer-tlDPX .framer-iyo48p > *, .framer-tlDPX .framer-1684fmc > *, .framer-tlDPX .framer-oefkhf > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-tlDPX.framer-72rtr7 > :first-child, .framer-tlDPX .framer-1n8zo2c > :first-child, .framer-tlDPX .framer-1o2caqu > :first-child, .framer-tlDPX .framer-1x43oi > :first-child, .framer-tlDPX .framer-1p326j5 > :first-child, .framer-tlDPX .framer-l1cacy > :first-child, .framer-tlDPX .framer-ad1dzo > :first-child, .framer-tlDPX .framer-2p3hir > :first-child, .framer-tlDPX .framer-1o3sq9b > :first-child, .framer-tlDPX .framer-vitlkz > :first-child, .framer-tlDPX .framer-1ae5ycu > :first-child, .framer-tlDPX .framer-tdex5w > :first-child, .framer-tlDPX .framer-iyo48p > :first-child, .framer-tlDPX .framer-1684fmc > :first-child, .framer-tlDPX .framer-1urspge > :first-child, .framer-tlDPX .framer-1u6fs0m > :first-child, .framer-tlDPX .framer-poljy9 > :first-child, .framer-tlDPX .framer-1xzqyki > :first-child, .framer-tlDPX .framer-k9g1f6 > :first-child, .framer-tlDPX .framer-1995fwo > :first-child, .framer-tlDPX .framer-edi42l > :first-child, .framer-tlDPX .framer-oefkhf > :first-child, .framer-tlDPX .framer-rvsmlm > :first-child, .framer-tlDPX .framer-1fyomvh > :first-child { margin-top: 0px; } .framer-tlDPX.framer-72rtr7 > :last-child, .framer-tlDPX .framer-1n8zo2c > :last-child, .framer-tlDPX .framer-1o2caqu > :last-child, .framer-tlDPX .framer-1x43oi > :last-child, .framer-tlDPX .framer-1p326j5 > :last-child, .framer-tlDPX .framer-l1cacy > :last-child, .framer-tlDPX .framer-ad1dzo > :last-child, .framer-tlDPX .framer-2p3hir > :last-child, .framer-tlDPX .framer-1o3sq9b > :last-child, .framer-tlDPX .framer-vitlkz > :last-child, .framer-tlDPX .framer-1ae5ycu > :last-child, .framer-tlDPX .framer-tdex5w > :last-child, .framer-tlDPX .framer-iyo48p > :last-child, .framer-tlDPX .framer-1684fmc > :last-child, .framer-tlDPX .framer-1urspge > :last-child, .framer-tlDPX .framer-1u6fs0m > :last-child, .framer-tlDPX .framer-poljy9 > :last-child, .framer-tlDPX .framer-1xzqyki > :last-child, .framer-tlDPX .framer-k9g1f6 > :last-child, .framer-tlDPX .framer-1995fwo > :last-child, .framer-tlDPX .framer-edi42l > :last-child, .framer-tlDPX .framer-oefkhf > :last-child, .framer-tlDPX .framer-rvsmlm > :last-child, .framer-tlDPX .framer-1fyomvh > :last-child { margin-bottom: 0px; } .framer-tlDPX .framer-1o2caqu > * { margin: 0px; margin-bottom: calc(150px / 2); margin-top: calc(150px / 2); } .framer-tlDPX .framer-1x43oi > *, .framer-tlDPX .framer-1urspge > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-tlDPX .framer-1p326j5 > *, .framer-tlDPX .framer-1u6fs0m > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-tlDPX .framer-l1cacy > *, .framer-tlDPX .framer-k9g1f6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-tlDPX .framer-ad1dzo > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-tlDPX .framer-2p3hir > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-tlDPX .framer-1o3sq9b > *, .framer-tlDPX .framer-poljy9 > *, .framer-tlDPX .framer-rvsmlm > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-tlDPX .framer-1shszdd > *, .framer-tlDPX .framer-1yqltfm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-tlDPX .framer-1shszdd > :first-child, .framer-tlDPX .framer-1kch3jk > :first-child, .framer-tlDPX .framer-1jtt63q > :first-child, .framer-tlDPX .framer-8zbjd9 > :first-child, .framer-tlDPX .framer-4oye95 > :first-child, .framer-tlDPX .framer-1yqltfm > :first-child { margin-left: 0px; } .framer-tlDPX .framer-1shszdd > :last-child, .framer-tlDPX .framer-1kch3jk > :last-child, .framer-tlDPX .framer-1jtt63q > :last-child, .framer-tlDPX .framer-8zbjd9 > :last-child, .framer-tlDPX .framer-4oye95 > :last-child, .framer-tlDPX .framer-1yqltfm > :last-child { margin-right: 0px; } .framer-tlDPX .framer-1kch3jk > *, .framer-tlDPX .framer-1jtt63q > *, .framer-tlDPX .framer-8zbjd9 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-tlDPX .framer-1xzqyki > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-tlDPX .framer-4oye95 > * { margin: 0px; margin-left: calc(42px / 2); margin-right: calc(42px / 2); } .framer-tlDPX .framer-1995fwo > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-tlDPX .framer-edi42l > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } .framer-tlDPX .framer-1fyomvh > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-tlDPX[data-border=\"true\"]::after, .framer-tlDPX [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 768px) and (max-width: 1279px) { .framer-tlDPX.framer-72rtr7, .framer-tlDPX .framer-1tdkh06-container { width: 768px; } .framer-tlDPX .framer-1n8zo2c { min-height: 90vh; } .framer-tlDPX .framer-1o2caqu { top: 200px; width: 704px; } .framer-tlDPX .framer-1x43oi, .framer-tlDPX .framer-140xcjq, .framer-tlDPX .framer-1u6fs0m, .framer-tlDPX .framer-281j0u, .framer-tlDPX .framer-19oe48a, .framer-tlDPX .framer-1xzqyki { width: 704px; } .framer-tlDPX .framer-lm4oic { background: linear-gradient(216deg, rgba(255, 255, 255, 0) 12.757812550294712%, rgba(34, 63, 128, 0.9) 100%); } .framer-tlDPX .framer-f65n49-container { height: 90vh; } .framer-tlDPX .framer-wj3ow4 { left: calc(50.00000000000002% - 705px / 2); width: 705px; } .framer-tlDPX .framer-10zg42w-container { height: 123px; top: calc(49.59349593495937% - 123px / 2); width: 714px; } .framer-tlDPX .framer-1mj01wl { flex-direction: column; width: 704px; } .framer-tlDPX .framer-1cgxccu { flex: none; flex-direction: column; width: 100%; } .framer-tlDPX .framer-2p3hir { flex: none; padding: 0px; width: 100%; } .framer-tlDPX .framer-4oye95 { align-content: unset; align-items: unset; display: grid; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; } .framer-tlDPX .framer-1og7gaq-container, .framer-tlDPX .framer-1ngwhty-container, .framer-tlDPX .framer-ouqsee-container, .framer-tlDPX .framer-k0hlk6-container { align-self: start; height: 100%; justify-self: start; width: 100%; } .framer-tlDPX .framer-k9g1f6 { align-content: center; align-items: center; width: 100%; } .framer-tlDPX .framer-1la0ghp { flex-direction: column; gap: 56px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 0px 0px 0px; width: 704px; will-change: var(--framer-will-change-override, transform); } .framer-tlDPX .framer-s0q5gn { width: 640px; } .framer-tlDPX .framer-1995fwo { flex: 1 0 0px; width: 1px; } .framer-tlDPX .framer-1dpqo8x { width: 612px; } .framer-tlDPX .framer-48ht1s-container { aspect-ratio: 1.2846715328467153 / 1; height: var(--framer-aspect-ratio-supported, 550px); width: 100%; } .framer-tlDPX .framer-12jf912-container { width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tlDPX .framer-1mj01wl, .framer-tlDPX .framer-1cgxccu, .framer-tlDPX .framer-4oye95, .framer-tlDPX .framer-1la0ghp { gap: 0px; } .framer-tlDPX .framer-1mj01wl > *, .framer-tlDPX .framer-1mj01wl > :first-child, .framer-tlDPX .framer-1mj01wl > :last-child, .framer-tlDPX .framer-1cgxccu > *, .framer-tlDPX .framer-1cgxccu > :first-child, .framer-tlDPX .framer-1cgxccu > :last-child, .framer-tlDPX .framer-4oye95 > *, .framer-tlDPX .framer-4oye95 > :first-child, .framer-tlDPX .framer-4oye95 > :last-child { margin: 0px; } .framer-tlDPX .framer-1la0ghp > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-tlDPX .framer-1la0ghp > :first-child { margin-top: 0px; } .framer-tlDPX .framer-1la0ghp > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 767px) { .framer-tlDPX.framer-72rtr7 { width: 320px; } .framer-tlDPX .framer-1o2caqu { gap: 100px; left: 0px; top: 120px; transform: unset; width: 100%; } .framer-tlDPX .framer-1x43oi { padding: 12px 16px 12px 16px; width: 100%; } .framer-tlDPX .framer-1p326j5 { padding: 0px 32px 0px 0px; } .framer-tlDPX .framer-lm4oic { background: linear-gradient(201deg, rgba(255, 255, 255, 0) -4.968789513461288e-14%, rgba(34, 63, 128, 0.9) 100%); } .framer-tlDPX .framer-wj3ow4 { align-content: center; align-items: center; bottom: 0px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 20px; padding: 0px; width: 94%; z-index: 6; } .framer-tlDPX .framer-10zg42w-container { height: 370px; left: unset; position: relative; top: unset; width: 100%; } .framer-tlDPX .framer-l1cacy { padding: 40px 16px 40px 16px; } .framer-tlDPX .framer-1mj01wl { flex-direction: column; gap: 64px; justify-content: flex-start; width: 100%; } .framer-tlDPX .framer-1cgxccu { flex: none; flex-direction: column; gap: 20px; justify-content: flex-start; width: 100%; } .framer-tlDPX .framer-ad1dzo { width: 95%; } .framer-tlDPX .framer-khsen6, .framer-tlDPX .framer-140xcjq, .framer-tlDPX .framer-1bwdnoe-container, .framer-tlDPX .framer-1u6fs0m, .framer-tlDPX .framer-281j0u, .framer-tlDPX .framer-19oe48a, .framer-tlDPX .framer-1xzqyki, .framer-tlDPX .framer-1og7gaq-container, .framer-tlDPX .framer-1ngwhty-container, .framer-tlDPX .framer-ouqsee-container, .framer-tlDPX .framer-12jf912-container { width: 100%; } .framer-tlDPX .framer-2p3hir { flex: none; gap: 37px; padding: 0px; width: 100%; } .framer-tlDPX .framer-1urspge { padding: 0px 16px 0px 16px; width: 100%; } .framer-tlDPX .framer-1dr8e8h { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-tlDPX .framer-poljy9 { padding: 64px 16px 64px 16px; } .framer-tlDPX .framer-4oye95 { flex-direction: column; gap: 37px; } .framer-tlDPX .framer-k9g1f6 { background: linear-gradient(221.34879102630202deg, #dbdfe7 0%, rgb(186, 189, 196) 34.72745418548584%, rgb(123, 125, 129) 100%); background-color: unset; padding: 40px 0px 40px 0px; width: 100%; } .framer-tlDPX .framer-1tdkh06-container { width: 375px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tlDPX .framer-1o2caqu, .framer-tlDPX .framer-wj3ow4, .framer-tlDPX .framer-1mj01wl, .framer-tlDPX .framer-1cgxccu, .framer-tlDPX .framer-2p3hir, .framer-tlDPX .framer-4oye95 { gap: 0px; } .framer-tlDPX .framer-1o2caqu > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-tlDPX .framer-1o2caqu > :first-child, .framer-tlDPX .framer-wj3ow4 > :first-child, .framer-tlDPX .framer-1mj01wl > :first-child, .framer-tlDPX .framer-1cgxccu > :first-child, .framer-tlDPX .framer-2p3hir > :first-child, .framer-tlDPX .framer-4oye95 > :first-child { margin-top: 0px; } .framer-tlDPX .framer-1o2caqu > :last-child, .framer-tlDPX .framer-wj3ow4 > :last-child, .framer-tlDPX .framer-1mj01wl > :last-child, .framer-tlDPX .framer-1cgxccu > :last-child, .framer-tlDPX .framer-2p3hir > :last-child, .framer-tlDPX .framer-4oye95 > :last-child { margin-bottom: 0px; } .framer-tlDPX .framer-wj3ow4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-tlDPX .framer-1mj01wl > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-tlDPX .framer-1cgxccu > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-tlDPX .framer-2p3hir > *, .framer-tlDPX .framer-4oye95 > * { margin: 0px; margin-bottom: calc(37px / 2); margin-top: calc(37px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3308\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"loBAkdE1Q\":{\"layout\":[\"fixed\",\"auto\"]},\"uI43sSMgP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-tlDPX\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:3308,width:1280};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ButtonFonts,...VideoFonts,...EmbedFonts,...InvestmentOpportunityCardFonts,...UnlockVideoFonts,...UnlockVideoMobileFonts,...FooterFonts,...NavbarFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"3308\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1280\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"loBAkdE1Q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uI43sSMgP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "kiCAQmB,SAARA,GAAuB,CAAC,KAAAC,EAAK,IAAAC,EAAI,KAAAC,CAAI,EAAE,CAAC,OAAGF,IAAO,OAAOC,EAA0BE,EAAKC,GAAS,CAAC,IAAIH,CAAG,CAAC,EAAMD,IAAO,QAAQE,EAA2BC,EAAKE,GAAU,CAAC,KAAKH,CAAI,CAAC,EAAwBC,EAAKG,GAAa,CAAC,CAAC,CAAE,CAAEC,EAAoBR,GAAM,CAAC,KAAK,CAAC,KAAKS,EAAY,KAAK,aAAa,MAAM,wBAAwB,GAAK,QAAQ,CAAC,MAAM,MAAM,EAAE,aAAa,CAAC,MAAM,MAAM,CAAC,EAAE,IAAI,CAAC,MAAM,MAAM,KAAKA,EAAY,OAAO,YAAY,8CAAyC,OAAOC,EAAM,CAAC,OAAOA,EAAM,OAAO,KAAM,CAAC,EAAE,KAAK,CAAC,MAAM,OAAO,gBAAgB,GAAK,KAAKD,EAAY,OAAO,OAAOC,EAAM,CAAC,OAAOA,EAAM,OAAO,MAAO,CAAC,CAAC,CAAC,EAAE,SAASH,IAAc,CAAC,OAAqBH,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGO,GAAgB,SAAS,QAAQ,EAAE,SAAuBP,EAAK,MAAM,CAAC,MAAMQ,GAAgB,SAAS,kEAAkE,CAAC,CAAC,CAAC,CAAE,CAAC,SAASP,GAAS,CAAC,IAAAH,CAAG,EAAE,CACr4B,cAAc,KAAKA,CAAG,IAAGA,EAAI,WAAWA,GAAK,IAAMW,EAASC,GAAc,EAEzE,CAACC,EAAMC,CAAQ,EAAEC,GAASJ,EAAS,OAAU,EAAK,EAG0c,GAHxcK,GAAU,IAAI,CAEvE,GAAG,CAACL,EAAS,OACb,IAAIM,EAAa,GAAKH,EAAS,MAAS,EAAE,eAAeI,GAAM,CAAC,IAAMC,EAAS,MAAM,MAAM,yDAAyD,mBAAmBnB,CAAG,CAAC,EAAE,GAAGmB,EAAS,QAAQ,IAAI,CAAC,GAAK,CAAC,UAAAC,CAAS,EAAE,MAAMD,EAAS,KAAK,EAAKF,GAAcH,EAASM,CAAS,CAAG,KAAK,CAAC,IAAMC,EAAQ,MAAMF,EAAS,KAAK,EAAE,QAAQ,MAAME,CAAO,EAAE,IAAMC,EAAM,IAAI,MAAM,kCAA6B,EAAER,EAASQ,CAAK,CAAE,CAAC,CAAC,OAAAJ,EAAK,EAAE,MAAMI,GAAO,CAAC,QAAQ,MAAMA,CAAK,EAAER,EAASQ,CAAK,CAAE,CAAC,EAAQ,IAAI,CAACL,EAAa,EAAM,CAAE,EAAE,CAACjB,CAAG,CAAC,EAAK,CAACA,EAAI,WAAW,UAAU,EAAG,OAAqBE,EAAKqB,GAAa,CAAC,QAAQ,uBAAuB,CAAC,EAAG,GAAGV,IAAQ,OAAW,OAAqBX,EAAKsB,GAAiB,CAAC,CAAC,EAAG,GAAGX,aAAiB,MAAO,OAAqBX,EAAKqB,GAAa,CAAC,QAAQV,EAAM,OAAO,CAAC,EAAG,GAAGA,IAAQ,GAAK,CAAC,IAAMQ,EAAQ,eAAerB,CAAG,uCAAuC,OAAqBE,EAAKqB,GAAa,CAAC,QAAQF,CAAO,CAAC,CAAE,CAAC,OAAqBnB,EAAK,SAAS,CAAC,IAAIF,EAAI,MAAMyB,GAAY,QAAQ,OACv+B,cAAcd,EAAS,MAAM,OAAO,eAAe,cAAc,QAAQe,GAAWf,CAAQ,CAAC,CAAC,CAAE,CAAC,IAAMc,GAAY,CAAC,MAAM,OAAO,OAAO,OAAO,OAAO,MAAM,EAAE,SAASC,GAAWf,EAAS,CAAC,IAAMgB,EAAO,CAAC,oBAAoB,eAAe,EAAE,OAAIhB,GAAUgB,EAAO,KAAK,kBAAkB,cAAc,eAAe,yBAAyB,qBAAqB,eAAe,iCAAiC,qBAAqB,0CAA0C,yCAAyC,EAAUA,EAAO,KAAK,GAAG,CAAE,CAAC,SAASvB,GAAU,CAAC,KAAAH,CAAI,EAAE,CAAC,IAAM2B,EAAIC,EAAO,EAIhkBC,EAAU7B,EAAK,SAAS,YAAW,EAAE,OAAAe,GAAU,IAAI,CAAC,GAAG,CAACc,EAAU,OAAO,IAAMC,EAAIH,EAAI,QAAQ,OAAAG,EAAI,UAAU9B,EAAK+B,GAAeD,CAAG,EAAQ,IAAI,CAACA,EAAI,UAAU,EAAG,CAAE,EAAE,CAAC9B,EAAK6B,CAAS,CAAC,EAAuB5B,EAAK,MAAM,CAAC,IAAI0B,EAAI,MAAMK,GAAU,wBAAyBH,EAAwB,OAAd,CAAC,OAAO7B,CAAI,CAAW,CAAC,CAAE,CAAC,IAAMgC,GAAU,CAAC,MAAM,OAAO,OAAO,OAAO,QAAQ,OAAO,cAAc,SAAS,eAAe,SAAS,WAAW,QAAQ,EAElb,SAASD,GAAeE,EAAK,CAAC,GAAGA,aAAgB,SAASA,EAAK,UAAU,SAAS,CAAC,IAAMC,EAAO,SAAS,cAAc,QAAQ,EAAEA,EAAO,KAAKD,EAAK,UAAU,OAAS,CAAC,KAAAE,EAAK,MAAAC,CAAK,IAAIH,EAAK,WAAYC,EAAO,aAAaC,EAAKC,CAAK,EAAGH,EAAK,cAAc,aAAaC,EAAOD,CAAI,CAAE,KAAM,SAAUI,KAASJ,EAAK,WAAYF,GAAeM,CAAK,CAAI,CACrV,SAASd,IAAkB,CAAC,OAAqBtB,EAAK,MAAM,CAAC,UAAU,wCAAwC,MAAM,CAAC,GAAGqC,GAAgB,SAAS,QAAQ,EAAE,SAAuBrC,EAAK,MAAM,CAAC,MAAMQ,GAAgB,SAAS,eAAU,CAAC,CAAC,CAAC,CAAE,CAAC,SAASa,GAAa,CAAC,QAAAF,CAAO,EAAE,CAAC,OAAqBnB,EAAK,MAAM,CAAC,UAAU,oCAAoC,MAAM,CAAC,GAAGqC,GAAgB,SAAS,QAAQ,EAAE,SAAuBC,EAAM,MAAM,CAAC,MAAM9B,GAAgB,SAAS,CAAC,UAAUW,CAAO,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,IAAMX,GAAgB,CAAC,UAAU,SAAS,SAAS,GAAG,ECrBlF,IAAM+B,GAAWC,EAASC,CAAK,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,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,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,sBAAsB,YAAY,0BAA0B,YAAY,kBAAkB,YAAY,sBAAsB,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,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAAhD,CAAQ,EAAEiD,EAAgB,CAAC,WAAAtD,GAAW,eAAe,YAAY,IAAIkC,EAAW,QAAA3B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQqD,EAAiB3B,GAAuBD,EAAMtB,CAAQ,EAAuCmD,GAAkBC,EAAGxD,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBiB,EAAKwC,EAAY,CAAC,GAAGd,GAAUT,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGyB,EAAU,GAAGI,EAAgB,UAAUQ,EAAGD,GAAkB,iBAAiBb,EAAUI,CAAU,EAAE,mBAAmB,sBAAsB,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,gBAAgB,wEAAwE,wBAAwB,GAAG,qBAAqB,GAAG,GAAGQ,CAAK,EAAE,GAAGvC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,iBAAiB,EAAE,UAAU,CAAC,mBAAmB,qBAAqB,EAAE,UAAU,CAAC,mBAAmB,yBAAyB,CAAC,EAAE2C,EAAYI,CAAc,EAAE,SAAsBhC,EAAKyC,EAA0B,CAAC,SAAsBzC,EAAK0C,EAA8B,CAAC,UAAU,0BAA0B,mBAAmB,mBAAmB,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBL,EAAiB,SAAS,sBAAsB,KAAK,mBAAmB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKnB,EAAM,CAAC,gBAAgB,wEAAwE,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,GAAG,SAAS,GAAK,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAK,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,KAAK,mBAAmB,UAAU,QAAQ,QAAQ,GAAM,cAAc,GAAM,QAAQ,MAAM,OAAO,oFAAoF,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,GAAG,OAAO,GAAG,MAAM,OAAO,GAAGI,GAAqB,CAAC,UAAU,CAAC,kBAAkB,EAAE,eAAe,CAAC,EAAE,UAAU,CAAC,kBAAkB,EAAE,QAAQ,GAAK,eAAe,CAAC,EAAE,UAAU,CAAC,QAAQ,EAAI,CAAC,EAAE2C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQW,GAAI,CAAC,kFAAkF,kFAAkF,oFAAoF,2HAA2H,6HAA6H,EAQ/4JC,GAAgBC,EAAQlC,GAAUgC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,eAAeA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,sBAAsB,0BAA0B,kBAAkB,qBAAqB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGjE,EAAU,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRpF,IAAMuE,GAAWC,EAASC,CAAK,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,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,2BAA2B,YAAY,+BAA+B,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,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAAhD,CAAQ,EAAEiD,EAAgB,CAAC,WAAAtD,GAAW,eAAe,YAAY,IAAIkC,EAAW,QAAA3B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQqD,EAAiB3B,GAAuBD,EAAMtB,CAAQ,EAAuCmD,GAAkBC,EAAGxD,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBiB,EAAKwC,EAAY,CAAC,GAAGd,GAAUT,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGyB,EAAU,GAAGI,EAAgB,UAAUQ,EAAGD,GAAkB,eAAeb,EAAUI,CAAU,EAAE,cAAc,GAAK,mBAAmB,2BAA2B,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,sEAAsE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,sEAAsE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGQ,CAAK,EAAE,GAAGvC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,8BAA8B,CAAC,EAAE2C,EAAYI,CAAc,EAAE,SAAsBhC,EAAKyC,EAA0B,CAAC,SAAsBzC,EAAK0C,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBL,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKnB,EAAM,CAAC,gBAAgB,wEAAwE,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,SAAS,GAAK,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAM,cAAc,GAAM,QAAQ,MAAM,OAAO,qGAAqG,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,GAAG,eAAe,GAAG,OAAO,GAAG,MAAM,OAAO,GAAGI,GAAqB,CAAC,UAAU,CAAC,QAAQ,EAAI,CAAC,EAAE2C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQW,GAAI,CAAC,kFAAkF,gFAAgF,6OAA6O,yGAAyG,uWAAuW,+bAA+b,EAQ1kLC,GAAgBC,EAAQlC,GAAUgC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,sBAAsBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,2BAA2B,8BAA8B,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGjE,EAAU,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTlduE,GAAU,UAAU,CAAC,6BAA6B,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,uBAAuB,OAAO,SAAS,IAAI,wEAAwE,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,qkBAAukB,EAAeC,GAAU,eCCwB,IAAMC,GAAYC,EAASC,CAAM,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,GAAmB,CAACC,EAAE,IAAI,oBAAoB,CAAC,GAASC,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,GAAwB,CAAC,mCAAmC,YAAY,oCAAoC,WAAW,EAAQC,GAAS,CAAC,CAAC,QAAAC,EAAQ,QAAAC,EAAQ,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,MAAAC,EAAM,QAAAC,EAAQ,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUJ,GAAOI,EAAM,WAAW,CAAC,IAAI,sEAAsE,EAAE,UAAUP,GAASO,EAAM,WAAW,QAAQ,UAAUF,GAASE,EAAM,WAAW,uBAAuB,QAAQV,GAAwBU,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUR,GAASQ,EAAM,WAAW,eAAe,UAAUH,GAAOG,EAAM,SAAS,GAAUC,GAAuB,CAACD,EAAM9B,IAAe8B,EAAM,iBAAwB9B,EAAS,KAAK,GAAG,EAAE8B,EAAM,iBAAwB9B,EAAS,KAAK,GAAG,EAAUgC,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,QAAA7C,EAAQ,UAAA8C,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEhC,GAASS,CAAK,EAAO,CAAC,YAAAwB,GAAY,WAAAC,GAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAA7D,EAAQ,EAAE8D,EAAgB,CAAC,WAAAnE,GAAW,eAAe,YAAY,IAAI0C,EAAW,QAAAnC,EAAQ,kBAAAL,EAAiB,CAAC,EAAQkE,EAAiBhC,GAAuBD,EAAM9B,EAAQ,EAA0GgE,GAAkBC,EAAGrE,GAAkB,GAAnH,CAAakD,GAAuBA,GAAuBA,EAAS,CAAuE,EAAE,OAAoB9B,EAAKkD,EAAY,CAAC,GAAGnB,GAAUT,EAAgB,SAAsBtB,EAAKC,GAAS,CAAC,QAAQjB,GAAS,QAAQ,GAAM,SAAsBgB,EAAKR,GAAW,CAAC,MAAML,GAAY,SAAsBgE,EAAMjD,EAAO,IAAI,CAAC,GAAGmC,EAAU,GAAGI,EAAgB,UAAUQ,EAAGD,GAAkB,gBAAgBlB,EAAUS,EAAU,EAAE,mBAAmB,oCAAoC,iBAAiBQ,EAAiB,SAAS,YAAY,IAAI1B,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAG/C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,kCAAkC,CAAC,EAAEwD,GAAYI,CAAc,EAAE,SAAS,CAAcS,EAAMjD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB6C,EAAiB,SAAS,YAAY,SAAS,CAAcI,EAAMjD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,EAAE,SAAS,CAAcI,EAAMjD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6C,EAAiB,SAAS,YAAY,SAAS,CAAc/C,EAAKoD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQC,GAA2B1B,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,YAAY,mBAAmB,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBoB,EAAiB,SAAS,WAAW,CAAC,EAAe/C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,QAAQ,EAAE,SAAsBF,EAAKE,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,iBAAkB,qBAAqB,OAAO,sBAAsB,gDAAgD,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,yBAAyB,EAAE,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,uBAAuB,6BAA6B,KAAK,EAAE,kBAAkB3D,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2B1B,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,MAAMA,GAAmB,OAAO,QAAQ,GAAGrC,GAAkB0C,CAAS,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBe,EAAiB,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,EAAeI,EAAMjD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB6C,EAAiB,SAAS,YAAY,SAAS,CAAc/C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,MAAM,CAAC,OAAO,EAAE,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKd,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAejC,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,MAAM,CAAC,OAAO,EAAE,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKb,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAelC,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,+FAA+F,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,MAAM,CAAC,OAAO,EAAE,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,sEAAsE,6BAA6B,KAAK,EAAE,KAAKZ,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenC,EAAKuD,EAA0B,CAAC,OAAO,GAAG,GAAG5B,GAAmB,GAAG,GAAG,EAAE,iBAAiB,SAAsB3B,EAAKwD,EAA8B,CAAC,UAAU,0BAA0B,mBAAmB,kBAAkB,iBAAiBT,EAAiB,SAAS,sBAAsB,KAAK,kBAAkB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB/C,EAAKtB,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU0D,EAAU,KAAK,kBAAkB,QAAQ,YAAY,UAAU,aAAa,MAAM,OAAO,GAAGtD,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEwD,GAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQe,GAAI,CAAC,kFAAkF,kFAAkF,gRAAgR,2RAA2R,6LAA6L,2IAA2I,oHAAoH,sIAAsI,sIAAsI,yRAAyR,oKAAoK,+IAA+I,wGAAwG,q3BAAq3B,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,EAAG,EASvmXC,GAAgBC,EAAQ3C,GAAUyC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,8BAA8BA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,oCAAoC,kCAAkC,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,wBAAwB,4GAA4G,MAAM,QAAQ,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,QAAQ,gBAAgB,GAAM,MAAM,UAAU,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,uBAAuB,gBAAgB,GAAM,MAAM,UAAU,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,GAAM,MAAM,UAAU,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,SAAS,KAAKA,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGlF,GAAY,GAAGwF,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECVtrFC,GAAU,UAAU,CAAC,6BAA6B,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,uBAAuB,OAAO,SAAS,IAAI,wEAAwE,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,yhBAA2hB,+kBAAilB,2kBAA6kB,EAAeC,GAAU,eCAx8DC,GAAU,UAAU,CAAC,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,ugBAAugB,EAAeC,GAAU,eCC8tC,IAAMC,GAAYC,EAASC,CAAM,EAAQC,GAAWF,EAASG,CAAK,EAAQC,GAAWJ,EAASK,EAAK,EAAQC,GAA+BN,EAASO,EAAyB,EAAQC,GAAiBR,EAASS,EAAW,EAAQC,GAAmCC,GAAwBF,EAAW,EAAQG,GAAuBZ,EAASa,EAAiB,EAAQC,GAAyCH,GAAwBE,EAAiB,EAAQE,GAAYf,EAASgB,EAAM,EAAQC,GAAYjB,EAASkB,EAAM,EAAQC,GAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAY,CAAC,UAAU,6CAA6C,UAAU,qBAAqB,UAAU,qBAAqB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAmB,CAACC,EAAE,IAAI,oBAAoB,CAAC,GAASC,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAA6BC,EAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEtB,GAASI,CAAK,EAAQmB,GAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUX,CAAY,EAAE,GAAGW,EAAS,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,EAAG,CAAC,EAAE,CAAC,OAAUZ,CAAY,CAAC,EAAQa,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUX,CAAY,EAAE,SAAS,MAAMW,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUX,CAAY,CAAC,EAAE,GAAK,CAACc,EAAYC,CAAmB,EAAEC,GAA8BR,EAAQrC,GAAY,EAAK,EAAQ8C,GAAe,OAA4PC,EAAkBC,EAAG9C,GAAkB,GAA7P,CAAaiC,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQc,GAAOC,GAAU,EAAQC,GAAY,IAAQ,CAAClD,GAAU,GAAiB0C,IAAc,YAA6CS,GAAa,IAASnD,GAAU,EAAiB0C,IAAc,YAAtB,GAAmEU,EAAa,IAAQ,CAACpD,GAAU,GAAiB0C,IAAc,YAAuC,OAAAW,GAAiB,CAAC,CAAC,EAAsBxC,EAAKyC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAApD,EAAiB,EAAE,SAAsBqD,EAAMC,EAAY,CAAC,GAAGrB,GAAUT,EAAgB,SAAS,CAAcb,EAAKH,GAAU,CAAC,MAAM,kGAAkG,CAAC,EAAe6C,EAAMzD,EAAO,IAAI,CAAC,GAAGuC,EAAU,UAAUU,EAAGD,EAAkB,gBAAgBZ,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcsB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsB0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAsBA,EAAK4C,EAAS,CAAC,sBAAsB,GAAK,SAAsB5C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oBAAoB,EAAE,SAAS,yJAAyJ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK8C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4B/C,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,IAAI,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,GAAG,IAAI,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,GAAG/B,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,KAAK,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,mBAAmB,KAAK,mBAAmB,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUkB,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsB/C,EAAKnC,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUkF,EAAc,CAAC,EAAE,KAAK,mBAAmB,QAAQ,YAAY,UAAU,cAAc,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,CAAC,EAAeA,EAAKiD,EAA0B,CAAC,SAAsBjD,EAAKkD,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,+BAA+B,iBAAiB,GAAK,iBAAiB,GAAK,KAAK,+BAA+B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,wEAAwE,EAAE,UAAU,CAAC,OAAO,wEAAwE,CAAC,EAAE,SAAsB7B,EAAKjC,EAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,KAAK,+BAA+B,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,sEAAsE,QAAQ,MAAM,OAAO,uEAAuE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiC,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKiD,EAA0B,CAAC,SAAsBjD,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAK/B,GAAM,CAAC,OAAO,OAAO,KAAK,iJAAgJ,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,iJAAgJ,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,oBAAoB,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAsB0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAsBA,EAAK4C,EAAS,CAAC,sBAAsB,GAAK,SAAsB5C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAsB0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAsBA,EAAK4C,EAAS,CAAC,sBAAsB,GAAK,SAAsBF,EAAYG,EAAS,CAAC,SAAS,CAAc7C,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,0jBAA0jB,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,mBAAmB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,SAAsBA,EAAKf,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAsBe,EAAK4C,EAAS,CAAC,sBAAsB,GAAK,SAAsB5C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,MAAM,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,SAAsBA,EAAKf,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAsBe,EAAK4C,EAAS,CAAC,sBAAsB,GAAK,SAAsB5C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,gCAAgC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,SAAsBA,EAAKf,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAsBe,EAAK4C,EAAS,CAAC,sBAAsB,GAAK,SAAsB5C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,8CAA8C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK8C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASK,GAA6BnD,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,KAAK,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,KAAK,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,GAAG/B,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,MAAM,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,kBAAkB,KAAK,kBAAkB,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUsB,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsBnD,EAAKnC,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUsF,EAAe,CAAC,EAAE,KAAK,kBAAkB,QAAQ,YAAY,UAAU,iCAAiC,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenD,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,yBAAyB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQuB,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,QAAQ,UAAU,OAAO,MAAMA,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,yBAAyB,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQkC,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,MAAMA,GAAmB,OAAO,QAAQ,IAAI,oEAAoE,OAAO,wEAAwE,CAAC,CAAC,EAAE,SAAsBlB,EAAKqD,GAAM,CAAC,WAAW,CAAC,IAAI,yBAAyB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,MAAM,UAAU,MAAM,MAAMA,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,oBAAoB,SAAsBwB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAc1C,EAAK4C,EAAS,CAAC,sBAAsB,GAAK,SAAsB5C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,+BAA+B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK4C,EAAS,CAAC,sBAAsB,GAAK,SAAsB5C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,8MAA8M,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK8C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASQ,GAA6BtD,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,GAAG/B,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,MAAM,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,mBAAmB,KAAK,mBAAmB,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUyB,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsBtD,EAAKnC,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUyF,EAAe,CAAC,EAAE,KAAK,mBAAmB,QAAQ,YAAY,UAAU,cAAc,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeZ,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,oCAAoC,SAAS,CAAc1C,EAAK4C,EAAS,CAAC,sBAAsB,GAAK,SAAsB5C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,mCAAmC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAc1C,EAAK8C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASS,GAA6BvD,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQ,GAAGX,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,KAAK,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,KAAK,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAG/B,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,KAAK,EAAE,EAAE,EAAE,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU0B,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,QAAQ,YAAY,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBvD,EAAK7B,GAA0B,CAAC,UAAUmB,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,wEAAwE,OAAO,4EAA4E,EAAE,0BAA0B,EAAE,OAAO,OAAO,UAAU,mDAAmD,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,uBAAuB,QAAQ,YAAY,MAAM,OAAO,UAAU,2BAA2B,UAAUiE,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevD,EAAK8C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASU,GAA6BxD,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQ,GAAGX,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,KAAK,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,KAAK,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAG/B,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,KAAK,EAAE,EAAE,EAAE,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU2B,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,QAAQ,YAAY,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBxD,EAAK7B,GAA0B,CAAC,UAAUmB,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,OAAO,2EAA2E,EAAE,uBAAuB,EAAE,OAAO,OAAO,UAAU,wDAAwD,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,4CAA4C,QAAQ,YAAY,MAAM,OAAO,UAAU,wBAAwB,UAAUkE,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexD,EAAK8C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASW,GAA6BzD,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQ,GAAGX,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,KAAK,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,KAAK,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAG/B,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,KAAK,EAAE,EAAE,EAAE,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU4B,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,QAAQ,YAAY,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBzD,EAAK7B,GAA0B,CAAC,UAAUmB,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,wEAAwE,OAAO,4EAA4E,EAAE,gBAAgB,EAAE,OAAO,OAAO,UAAU,uCAAuC,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,uBAAuB,QAAQ,YAAY,MAAM,OAAO,UAAU,iBAAiB,UAAUmE,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEpB,GAAY,GAAgBrC,EAAK8C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASY,GAA6B1D,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGX,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,KAAK,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,SAAsBjD,EAAKkD,EAAU,CAAC,UAAU,sDAAsD,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU6B,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB1D,EAAK7B,GAA0B,CAAC,UAAUmB,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,OAAO,yEAAyE,EAAE,mBAAmB,EAAE,OAAO,OAAO,UAAU,uDAAuD,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,wBAAwB,QAAQ,YAAY,MAAM,OAAO,UAAU,2BAA2B,UAAUoE,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1D,EAAK4C,EAAS,CAAC,sBAAsB,GAAK,SAAsB5C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAsBA,EAAK2D,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB3D,EAAKf,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,oBAAoB,SAAS,CAACJ,GAAa,GAAgBI,EAAM,MAAM,CAAC,UAAU,+BAA+B,cAAc,GAAK,mBAAmB,YAAY,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAsB0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAc1C,EAAK4C,EAAS,CAAC,sBAAsB,GAAK,SAAsB5C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,iCAAiC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK4C,EAAS,CAAC,sBAAsB,GAAK,SAAsB5C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,8EAAyE,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK8C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASc,GAA6B5D,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,KAAK,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,GAAG/B,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,EAAE,MAAM,EAAE,EAAE,MAAM,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU+B,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB5D,EAAKnC,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU+F,EAAe,CAAC,EAAE,QAAQ,YAAY,UAAU,aAAa,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5D,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,aAAa,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,GAAG,KAAK,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAG/B,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,EAAE,EAAE,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBlD,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,4BAA4B,YAAY,2BAA2B,YAAY,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK1B,GAAmC,CAAC,sBAAsB,GAAM,4BAA4B,YAAY,oBAAoB,GAAG,qCAAqC,GAAK,2BAA2B,YAAY,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiE,EAAa,GAAgBvC,EAAK,MAAM,CAAC,UAAU,6CAA6C,mBAAmB,kBAAkB,SAAsB0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAc1C,EAAK4C,EAAS,CAAC,sBAAsB,GAAK,SAAsB5C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,iCAAiC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK4C,EAAS,CAAC,sBAAsB,GAAK,SAAsB5C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,8EAAyE,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQX,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,KAAK,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,IAAI,SAAsBjD,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBlD,EAAKtB,GAAyC,CAAC,sBAAsB,GAAM,4BAA4B,YAAY,oBAAoB,GAAG,qCAAqC,GAAK,2BAA2B,YAAY,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAK8C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASe,GAA6B7D,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,KAAK,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,SAAsBjD,EAAKkD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUgC,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB7D,EAAKnC,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUgG,EAAe,CAAC,EAAE,QAAQ,YAAY,UAAU,aAAa,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7D,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQ,GAAGX,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,UAAU,CAAC,MAAM,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,GAAG/B,GAAmB,GAAG,GAAG,EAAE,OAAO,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKpB,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoB,EAAKjB,GAAgB,CAAC,kBAAkB,CAAC,WAAWU,EAAW,EAAE,sBAAsB,GAAM,0BAA0B,CAAC,UAAU,OAAO,OAAOC,EAAS,EAAE,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,MAAM,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkBC,GAAmB,SAAsBK,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAO,EAAE,UAAU,CAAC,MAAM,OAAO,CAAC,EAAE,SAAsB7B,EAAKiD,EAA0B,CAAC,OAAO,GAAG,MAAM,SAAS,EAAE,EAAE,SAAsBjD,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKlB,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekB,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ8D,GAAI,CAAC,kFAAkF,gFAAgF,qVAAqV,gYAAgY,gWAAgW,wRAAwR,6RAA6R,kQAAkQ,2QAA2Q,4QAA4Q,0IAA0I,8KAA8K,8KAA8K,gTAAgT,oRAAoR,oRAAoR,6RAA6R,sMAAsM,2SAA2S,2TAA2T,0RAA0R,wMAAwM,2ZAA2Z,2PAA2P,uVAAuV,4ZAA4Z,iVAAiV,oWAAoW,kSAAkS,oSAAoS,+RAA+R,kJAAkJ,sMAAsM,6TAA6T,wMAAwM,uRAAuR,yRAAyR,mOAAmO,mLAAmL,wUAAwU,4tBAA4tB,0QAA0Q,8RAA8R,mSAAmS,sOAAsO,0GAA0G,iSAAiS,6RAA6R,yGAAyG,2GAA2G,kjBAAkjB,2GAA2G,uzLAAuzL,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,gcAAgc,kiGAAkiG,unHAAunH,EAan64DC,GAAgBC,EAAQzD,GAAUuD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,EAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGpG,GAAY,GAAGG,GAAW,GAAGE,GAAW,GAAGE,GAA+B,GAAGE,GAAiB,GAAGI,GAAuB,GAAGG,GAAY,GAAGE,GAAY,GAAGsF,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC12E,IAAMC,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,kBAAoB,OAAO,sBAAwB,OAAO,yBAA2B,OAAO,sBAAwB,IAAI,qBAAuB,OAAO,yBAA2B,QAAQ,qBAAuB,OAAO,oCAAsC,4JAA0L,4BAA8B,OAAO,6BAA+B,OAAO,qBAAuB,2BAA2B,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "u", "VideoFonts", "getFonts", "Video", "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", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FrameracxLLtlnx", "withCSS", "acxLLtlnx_default", "addPropertyControls", "ControlType", "addFonts", "VideoFonts", "getFonts", "Video", "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", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerCkHknxcbH", "withCSS", "CkHknxcbH_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "ButtonFonts", "getFonts", "IRiPQlNqU_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "address", "details", "height", "id", "image", "link2", "subtext", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "aAq9cIbty", "hRWbZo01U", "tZKIBE7NJ", "xhF3_ytDl", "xST6e2QLV", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerGB48qPR4m", "withCSS", "GB48qPR4m_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "ButtonFonts", "getFonts", "IRiPQlNqU_default", "VideoFonts", "Video", "EmbedFonts", "Embed", "InvestmentOpportunityCardFonts", "GB48qPR4m_default", "UnlockVideoFonts", "acxLLtlnx_default", "UnlockVideoWithVariantAppearEffect", "withVariantAppearEffect", "UnlockVideoMobileFonts", "CkHknxcbH_default", "UnlockVideoMobileWithVariantAppearEffect", "FooterFonts", "VgTDa2pie_default", "NavbarFonts", "q8cLr8141_default", "MotionDivWithFX", "withFX", "motion", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "transition1", "animation", "transformTemplate1", "_", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "isDisplayed1", "isDisplayed2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "RichText2", "x", "ResolveLinks", "resolvedLinks", "PropertyOverrides2", "ComponentViewportProvider", "Container", "resolvedLinks1", "getLoadingLazyAtYPosition", "Image2", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "Link", "resolvedLinks7", "resolvedLinks8", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
