{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/CCQAeqd5uO5YArPP2FdX/wNvA88RtJRCeKU5EhntY/FIpDQAnJQ-0.js", "ssg:https://framerusercontent.com/modules/CCQAeqd5uO5YArPP2FdX/wNvA88RtJRCeKU5EhntY/FIpDQAnJQ-1.js", "ssg:https://framerusercontent.com/modules/CCQAeqd5uO5YArPP2FdX/wNvA88RtJRCeKU5EhntY/FIpDQAnJQ.js", "ssg:https://framerusercontent.com/modules/a8IOVORrNhohuDK0QKyh/UjXQBDvWPqKvceWgLX74/FIpDQAnJQ.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=\"Download\";export const v1=\"EasyTranslate_Pressepakke\";export const v2=\"https://youtu.be/smPos0mJvh8\";export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yzqcqb\",\"data-styles-preset\":\"xxr6tKcSA\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8f76d932-8d09-4c3d-bc86-50dc6739c514, rgb(69, 74, 91)))\"},children:\"EasyTranslate forenkler overs\\xe6ttelsesprocessen ved at kombinere det bedste fra AI og mennesker. S\\xe5 f\\xe5r du prisvenlige, on-brand sprogl\\xf8sninger til virksomheder.\"})});export const v4=\"Adgang til professionelle freelancere\";export const v5=\"Unik blanding af AI og mennesker\";export const v6=\"Personlig assistance\";\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=\"Herunterladen\";export const v1=\"EasyTranslate_Press_Pack\";export const v2=\"https://youtu.be/smPos0mJvh8\";export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yzqcqb\",\"data-styles-preset\":\"xxr6tKcSA\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8f76d932-8d09-4c3d-bc86-50dc6739c514, rgb(69, 74, 91)))\"},children:\"EasyTranslate vereinfacht \\xdcbersetzungen mit dem besten aus k\\xfcnstlicher und menschlicher Intelligenz, um kosteng\\xfcnstige, markenkonforme Sprachl\\xf6sungen f\\xfcr Unternehmen zu liefern.\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f030ee3)\nimport*as localizedValues from\"./FIpDQAnJQ-0.js\";import*as localizedValues1 from\"./FIpDQAnJQ-1.js\";const valuesByLocaleId={heAAOx1c8:localizedValues1,HMtLMywjH:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import Download from\"https://framerusercontent.com/modules/u806dRbaXhrs58F9VkAT/OyTKiarj4pWW36BvqT35/Download_button.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/f6pbeaVRqAqfmYyc1uoT/6m9UP8ZshdQ07OaSuC8X/bWYkmrnbX.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ubJRlxKKx8yBt7SjCdMH/bqUH3RE90PJ8WZ4WmqXl/tnx20qMwb.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/KTxfVRAWYIaVY5gRNGbw/ZstKXzFyMNf9jE92PbpA/xxr6tKcSA.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/CCQAeqd5uO5YArPP2FdX/wNvA88RtJRCeKU5EhntY/FIpDQAnJQ.js\";import CTAButton from\"https://framerusercontent.com/modules/QJ6tb1XpzWUlPc3j3xdx/fiTuPY3XpPxxQxrDSCVr/IHkrv6XwY.js\";import G2ReviewStars from\"https://framerusercontent.com/modules/sqZTXFIItNGSu2WEIqLH/hNmdcg5GifePVxgzs8uQ/R1WGxzBsl.js\";import CardsFeatureCardSimple from\"https://framerusercontent.com/modules/6Wj1pAopUnFuOACtRMgD/hCv0bzUZHa2PdPEFvoCH/zpDsQcdPz.js\";const CTAButtonFonts=getFonts(CTAButton);const DownloadFonts=getFonts(Download);const G2ReviewStarsFonts=getFonts(G2ReviewStars);const YouTubeFonts=getFonts(YouTube);const CardsFeatureCardSimpleFonts=getFonts(CardsFeatureCardSimple);const YouTubeControls=getPropertyControls(YouTube);const CTAButtonControls=getPropertyControls(CTAButton);const cycleOrder=[\"ky086X1zg\",\"SvmwbH8cz\",\"w9XQfUacO\",\"g4qGKJABE\",\"l2COCKw70\",\"ieze9x_rU\",\"NLYPwpJBv\",\"jpPij4QJE\",\"V4NKqIWYW\",\"QD9sZd0Tg\",\"kJWoyggKX\",\"pb4PYEQ_y\",\"r0TBG0vsP\",\"KddVikkso\",\"bMHFqTnWN\"];const serializationHash=\"framer-C3fM5\";const variantClassNames={bMHFqTnWN:\"framer-v-1miso7l\",g4qGKJABE:\"framer-v-13y4ltp\",ieze9x_rU:\"framer-v-1o8ajii\",jpPij4QJE:\"framer-v-1ld9sfd\",KddVikkso:\"framer-v-19xrsj3\",kJWoyggKX:\"framer-v-1s74vz2\",ky086X1zg:\"framer-v-1jghn9p\",l2COCKw70:\"framer-v-1tatizd\",NLYPwpJBv:\"framer-v-fnge2j\",pb4PYEQ_y:\"framer-v-god6e\",QD9sZd0Tg:\"framer-v-cpuofi\",r0TBG0vsP:\"framer-v-1fplc6b\",SvmwbH8cz:\"framer-v-16m8vpe\",V4NKqIWYW:\"framer-v-qxj0w3\",w9XQfUacO:\"framer-v-2a89ds\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"25 - link - white\":\"Za3WEg07M\",\"25 - link blue\":\"XW5kZNaye\",\"25 - primary\":\"naUSMIcmz\",\"25 - secondary\":\"VQtOnq5Xl\",\"25 - tertiary\":\"hxTSKSoH9\",\"Variant 8\":\"vQTm9E8CF\",Primary:\"E049N0Bde\",Secondary:\"oeoJL2ZNQ\"};const humanReadableVariantMap={\"Desktop-2 CTA-g2\":\"l2COCKw70\",\"Desktop-CTA custom\":\"w9XQfUacO\",\"Desktop-CTA-video\":\"NLYPwpJBv\",\"Desktop-CTA\":\"ky086X1zg\",\"Desktop-DOWNLOAD\":\"r0TBG0vsP\",\"Desktop-NO CTA-video\":\"kJWoyggKX\",\"Desktop-NO CTA\":\"V4NKqIWYW\",\"Desktop-platform-img\":\"bMHFqTnWN\",\"Phone 2-2 CTA-g2\":\"ieze9x_rU\",\"Phone-CTA custom\":\"g4qGKJABE\",\"Phone-CTA-video\":\"jpPij4QJE\",\"Phone-CTA\":\"SvmwbH8cz\",\"Phone-DOWNLOAD\":\"KddVikkso\",\"Phone-NO CTA-video\":\"pb4PYEQ_y\",\"Phone-NO CTA\":\"QD9sZd0Tg\"};const getProps=({autoplay,background,buttonLink,buttonTitle,buttonVariant,colorLittleTitle,colorText,header,height,id,image,text,title,video,width,...props})=>{return{...props,aQ7Ty4eXB:buttonLink??props.aQ7Ty4eXB,DwJcVi9YA:image??props.DwJcVi9YA,ggDw6F18T:colorText??props.ggDw6F18T??\"var(--token-8f76d932-8d09-4c3d-bc86-50dc6739c514, rgb(69, 74, 91))\",JmBw9H9W9:header??props.JmBw9H9W9??\"Professional English translations\",JSdiJo_Nx:humanReadableEnumMap[buttonVariant]??buttonVariant??props.JSdiJo_Nx??\"E049N0Bde\",KPjxFNlaz:title??props.KPjxFNlaz??\"LANGUAGE\",N5NUJgIAk:text??props.N5NUJgIAk??\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. \",OU45l6djO:autoplay??props.OU45l6djO??\"Off\",qtSsR_EOG:background??props.qtSsR_EOG??\"var(--token-4e87d3ee-8d7f-4429-806c-e7ea8bc4a075, rgb(254, 254, 254))\",Suc2UQmmN:video??props.Suc2UQmmN??\"https://youtu.be/smPos0mJvh8\",TPdudkI8B:colorLittleTitle??props.TPdudkI8B??\"var(--token-10cfbc33-27be-46e6-a1ab-ba1cd565554b, rgb(44, 63, 213))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"ky086X1zg\",wKT3XUDmM:buttonTitle??props.wKT3XUDmM??\"Get a Quote\"};};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,KPjxFNlaz,JmBw9H9W9,N5NUJgIAk,Suc2UQmmN,OU45l6djO,wKT3XUDmM,aQ7Ty4eXB,JSdiJo_Nx,DwJcVi9YA,qtSsR_EOG,TPdudkI8B,ggDw6F18T,JnYZwWYuZ,MMeDJfkIh,LNHzFowWB,ODUJ_zsgO,hEsbgnjj_,gZ1KusEWY,ClcjkoKSl,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ky086X1zg\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"bMHFqTnWN\")return false;return true;};const isDisplayed1=()=>{if([\"l2COCKw70\",\"ieze9x_rU\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"l2COCKw70\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"jpPij4QJE\")return true;return false;};const router=useRouter();const isDisplayed4=()=>{if(baseVariant===\"NLYPwpJBv\")return true;return false;};const isDisplayed5=()=>{if([\"NLYPwpJBv\",\"jpPij4QJE\",\"V4NKqIWYW\",\"QD9sZd0Tg\",\"kJWoyggKX\",\"pb4PYEQ_y\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if([\"SvmwbH8cz\",\"g4qGKJABE\",\"l2COCKw70\",\"ieze9x_rU\",\"r0TBG0vsP\",\"KddVikkso\"].includes(baseVariant))return false;return true;};const isDisplayed7=()=>{if(baseVariant===\"ieze9x_rU\")return true;return false;};const isDisplayed8=()=>{if([\"SvmwbH8cz\",\"g4qGKJABE\"].includes(baseVariant))return true;return false;};const isDisplayed9=()=>{if([\"r0TBG0vsP\",\"KddVikkso\"].includes(baseVariant))return true;return false;};const isDisplayed10=()=>{if([\"NLYPwpJBv\",\"jpPij4QJE\",\"kJWoyggKX\",\"pb4PYEQ_y\"].includes(baseVariant))return true;return false;};const isDisplayed11=()=>{if([\"NLYPwpJBv\",\"jpPij4QJE\",\"kJWoyggKX\",\"pb4PYEQ_y\"].includes(baseVariant))return false;return true;};const isDisplayed12=()=>{if(baseVariant===\"bMHFqTnWN\")return true;return false;};const isDisplayed13=value=>{if(baseVariant===\"bMHFqTnWN\")return value;return true;};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-1jghn9p\",className,classNames),\"data-framer-name\":\"Desktop-CTA\",layoutDependency:layoutDependency,layoutId:\"ky086X1zg\",ref:refBinding,style:{backgroundColor:qtSsR_EOG,...style},variants:{jpPij4QJE:{backgroundColor:\"var(--token-4e87d3ee-8d7f-4429-806c-e7ea8bc4a075, rgb(254, 254, 254))\"},kJWoyggKX:{backgroundColor:\"var(--token-10cfbc33-27be-46e6-a1ab-ba1cd565554b, rgb(44, 63, 213))\"},NLYPwpJBv:{backgroundColor:\"var(--token-4e87d3ee-8d7f-4429-806c-e7ea8bc4a075, rgb(254, 254, 254))\"},pb4PYEQ_y:{backgroundColor:\"var(--token-10cfbc33-27be-46e6-a1ab-ba1cd565554b, rgb(44, 63, 213))\"}},...addPropertyOverrides({bMHFqTnWN:{\"data-framer-name\":\"Desktop-platform-img\"},g4qGKJABE:{\"data-framer-name\":\"Phone-CTA custom\"},ieze9x_rU:{\"data-framer-name\":\"Phone 2-2 CTA-g2\"},jpPij4QJE:{\"data-framer-name\":\"Phone-CTA-video\"},KddVikkso:{\"data-framer-name\":\"Phone-DOWNLOAD\"},kJWoyggKX:{\"data-framer-name\":\"Desktop-NO CTA-video\"},l2COCKw70:{\"data-framer-name\":\"Desktop-2 CTA-g2\"},NLYPwpJBv:{\"data-framer-name\":\"Desktop-CTA-video\"},pb4PYEQ_y:{\"data-framer-name\":\"Phone-NO CTA-video\"},QD9sZd0Tg:{\"data-framer-name\":\"Phone-NO CTA\"},r0TBG0vsP:{\"data-framer-name\":\"Desktop-DOWNLOAD\"},SvmwbH8cz:{\"data-framer-name\":\"Phone-CTA\"},V4NKqIWYW:{\"data-framer-name\":\"Desktop-NO CTA\"},w9XQfUacO:{\"data-framer-name\":\"Desktop-CTA custom\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1an4rno\",\"data-framer-name\":\"container\",layoutDependency:layoutDependency,layoutId:\"gWP5hvNMJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dr096c\",\"data-framer-name\":\"text-wrapper\",layoutDependency:layoutDependency,layoutId:\"sMSmaU8iK\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{jpPij4QJE:{backgroundColor:\"rgba(0, 0, 0, 0)\"},KddVikkso:{backgroundColor:\"rgba(0, 0, 0, 0)\"},kJWoyggKX:{backgroundColor:\"rgba(0, 0, 0, 0)\"},NLYPwpJBv:{backgroundColor:\"rgb(255, 255, 255)\"},pb4PYEQ_y:{backgroundColor:\"rgba(0, 0, 0, 0)\"},QD9sZd0Tg:{backgroundColor:\"rgba(0, 0, 0, 0)\"},r0TBG0vsP:{backgroundColor:\"rgba(0, 0, 0, 0)\"},V4NKqIWYW:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yzqcqb\",\"data-styles-preset\":\"xxr6tKcSA\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-TPdudkI8B-FIpDQAnJQ))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"LANGUAGE\"})})}),className:\"framer-tz00b0\",\"data-framer-name\":\"type\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"tQBrgO8dq\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-TPdudkI8B-FIpDQAnJQ)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-TPdudkI8B-FIpDQAnJQ\":TPdudkI8B},text:KPjxFNlaz,variants:{kJWoyggKX:{\"--extracted-r6o4lv\":\"var(--token-4e87d3ee-8d7f-4429-806c-e7ea8bc4a075, rgb(254, 254, 254))\"},pb4PYEQ_y:{\"--extracted-r6o4lv\":\"var(--token-4e87d3ee-8d7f-4429-806c-e7ea8bc4a075, rgb(254, 254, 254))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kJWoyggKX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yzqcqb\",\"data-styles-preset\":\"xxr6tKcSA\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4e87d3ee-8d7f-4429-806c-e7ea8bc4a075, rgb(254, 254, 254)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"LANGUAGE\"})})})},pb4PYEQ_y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yzqcqb\",\"data-styles-preset\":\"xxr6tKcSA\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4e87d3ee-8d7f-4429-806c-e7ea8bc4a075, rgb(254, 254, 254)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"LANGUAGE\"})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-cfi3k6\",\"data-styles-preset\":\"tnx20qMwb\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-ggDw6F18T-FIpDQAnJQ))\"},children:\"Professional English translations\"})}),className:\"framer-t556m4\",\"data-framer-name\":\"header\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jIC6QaNqX\",style:{\"--extracted-gdpscs\":\"var(--variable-reference-ggDw6F18T-FIpDQAnJQ)\",\"--framer-paragraph-spacing\":\"52.79999923706055px\",\"--variable-reference-ggDw6F18T-FIpDQAnJQ\":ggDw6F18T},text:JmBw9H9W9,variants:{kJWoyggKX:{\"--extracted-gdpscs\":\"var(--token-4e87d3ee-8d7f-4429-806c-e7ea8bc4a075, rgb(254, 254, 254))\"},pb4PYEQ_y:{\"--extracted-gdpscs\":\"var(--token-4e87d3ee-8d7f-4429-806c-e7ea8bc4a075, rgb(254, 254, 254))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kJWoyggKX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-cfi3k6\",\"data-styles-preset\":\"tnx20qMwb\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-4e87d3ee-8d7f-4429-806c-e7ea8bc4a075, rgb(254, 254, 254)))\"},children:\"Professional English translations\"})})},l2COCKw70:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-108jfx2\",\"data-styles-preset\":\"bWYkmrnbX\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-ggDw6F18T-FIpDQAnJQ))\"},children:\"Professional English translations\"})})},pb4PYEQ_y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-cfi3k6\",\"data-styles-preset\":\"tnx20qMwb\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-4e87d3ee-8d7f-4429-806c-e7ea8bc4a075, rgb(254, 254, 254)))\"},children:\"Professional English translations\"})})}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yzqcqb\",\"data-styles-preset\":\"xxr6tKcSA\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-TPdudkI8B-FIpDQAnJQ))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"LANGUAGE\"})})}),className:\"framer-1ce5rgh\",\"data-framer-name\":\"type\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"RZID4nLEq\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-TPdudkI8B-FIpDQAnJQ)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-TPdudkI8B-FIpDQAnJQ\":TPdudkI8B},text:KPjxFNlaz,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yzqcqb\",\"data-styles-preset\":\"xxr6tKcSA\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-ggDw6F18T-FIpDQAnJQ))\"},children:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. \"})}),className:\"framer-yn3qt5\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tKFafMs8t\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-ggDw6F18T-FIpDQAnJQ)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-ggDw6F18T-FIpDQAnJQ\":ggDw6F18T},text:N5NUJgIAk,variants:{kJWoyggKX:{\"--extracted-r6o4lv\":\"var(--token-4e87d3ee-8d7f-4429-806c-e7ea8bc4a075, rgb(254, 254, 254))\"},pb4PYEQ_y:{\"--extracted-r6o4lv\":\"var(--token-4e87d3ee-8d7f-4429-806c-e7ea8bc4a075, rgb(254, 254, 254))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({kJWoyggKX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yzqcqb\",\"data-styles-preset\":\"xxr6tKcSA\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4e87d3ee-8d7f-4429-806c-e7ea8bc4a075, rgb(254, 254, 254)))\"},children:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. \"})})},pb4PYEQ_y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yzqcqb\",\"data-styles-preset\":\"xxr6tKcSA\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4e87d3ee-8d7f-4429-806c-e7ea8bc4a075, rgb(254, 254, 254)))\"},children:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. \"})})}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-zz1e2o\",\"data-framer-name\":\"button-wrapper\",layoutDependency:layoutDependency,layoutId:\"MZuQUsZHj\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-118v3fq\",\"data-framer-name\":\"Button Copy\",layoutDependency:layoutDependency,layoutId:\"ZehY5QdsX\",style:{backgroundColor:\"var(--token-10cfbc33-27be-46e6-a1ab-ba1cd565554b, rgb(44, 63, 213))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SnG81Pipk\"},implicitPathVariables:undefined},{href:{webPageId:\"SnG81Pipk\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,...addPropertyOverrides({jpPij4QJE:{y:(componentViewport?.y||0)+(70+((componentViewport?.height||656.5)-100-603.2)/2)+0+0+0+193.2+10+0+-75}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-77ykjx-container\",layoutDependency:layoutDependency,layoutId:\"REF_Wjg8n-container\",nodeId:\"REF_Wjg8n\",rendersWithMotion:true,scopeId:\"FIpDQAnJQ\",children:/*#__PURE__*/_jsx(CTAButton,{bWi4IvKSx:resolvedLinks[0],dzyXIS79T:true,gv_niaE4f:\"0px 0px 0px 0px\",height:\"100%\",id:\"REF_Wjg8n\",jSsRE6Z11:\"8px 12px 8px 12px\",layoutId:\"REF_Wjg8n\",mBpb0OtJO:wKT3XUDmM,oZGIDxtLs:\"8px\",SLSk4g6S8:8,variant:\"E049N0Bde\",width:\"100%\",...addPropertyOverrides({jpPij4QJE:{bWi4IvKSx:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-wdx8yu\",\"data-framer-name\":\"button-wrapper\",layoutDependency:layoutDependency,layoutId:\"b0_mJn3Cu\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-f7s6s7\",\"data-framer-name\":\"Button Copy\",layoutDependency:layoutDependency,layoutId:\"M3uRiTEhl\",style:{backgroundColor:\"var(--token-10cfbc33-27be-46e6-a1ab-ba1cd565554b, rgb(44, 63, 213))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SnG81Pipk\"},implicitPathVariables:undefined},{href:{webPageId:\"SnG81Pipk\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,...addPropertyOverrides({NLYPwpJBv:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||456.5)-0-553.2)/2)+70+0+193.2+10+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-66qrzf-container\",layoutDependency:layoutDependency,layoutId:\"rIwUpHwvK-container\",nodeId:\"rIwUpHwvK\",rendersWithMotion:true,scopeId:\"FIpDQAnJQ\",children:/*#__PURE__*/_jsx(CTAButton,{bWi4IvKSx:resolvedLinks1[0],dzyXIS79T:true,gv_niaE4f:\"0px 0px 0px 0px\",height:\"100%\",id:\"rIwUpHwvK\",jSsRE6Z11:\"8px 12px 8px 12px\",layoutId:\"rIwUpHwvK\",mBpb0OtJO:wKT3XUDmM,oZGIDxtLs:\"8px\",SLSk4g6S8:8,variant:\"E049N0Bde\",width:\"100%\",...addPropertyOverrides({NLYPwpJBv:{bWi4IvKSx:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})})})}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yyayn1\",\"data-framer-name\":\"button-wrapper\",layoutDependency:layoutDependency,layoutId:\"wMtPFZIJq\",children:[isDisplayed6()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SnG81Pipk\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,y:(componentViewport?.y||0)+(0+((componentViewport?.height||456.5)-0-553.2)/2)+70+0+193.2+10,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ca8td1-container\",layoutDependency:layoutDependency,layoutId:\"l7D5AAva6-container\",nodeId:\"l7D5AAva6\",rendersWithMotion:true,scopeId:\"FIpDQAnJQ\",children:/*#__PURE__*/_jsx(CTAButton,{bWi4IvKSx:resolvedLinks2[0],dzyXIS79T:true,gv_niaE4f:\"0px 0px 0px 0px\",height:\"100%\",id:\"l7D5AAva6\",jSsRE6Z11:\"8px 12px 8px 12px\",layoutId:\"l7D5AAva6\",mBpb0OtJO:wKT3XUDmM,oZGIDxtLs:\"8px\",SLSk4g6S8:8,variant:JSdiJo_Nx,width:\"100%\",...addPropertyOverrides({w9XQfUacO:{bWi4IvKSx:aQ7Ty4eXB}},baseVariant,gestureVariant)})})})}),isDisplayed7()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SnG81Pipk\"},implicitPathVariables:undefined},{href:{webPageId:\"SnG81Pipk\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({ieze9x_rU:{height:200,y:(componentViewport?.y||0)+(0+((componentViewport?.height||736.5)-0-1017.5)/2)+70+0+0+164+10+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12ex9lv-container\",layoutDependency:layoutDependency,layoutId:\"AGsTndRjm-container\",nodeId:\"AGsTndRjm\",rendersWithMotion:true,scopeId:\"FIpDQAnJQ\",children:/*#__PURE__*/_jsx(CTAButton,{bWi4IvKSx:resolvedLinks3[0],dzyXIS79T:true,gv_niaE4f:\"0px 0px 0px 0px\",height:\"100%\",id:\"AGsTndRjm\",jSsRE6Z11:\"8px 12px 8px 12px\",layoutId:\"AGsTndRjm\",mBpb0OtJO:wKT3XUDmM,oZGIDxtLs:\"8px\",SLSk4g6S8:8,variant:JSdiJo_Nx,width:\"100%\",...addPropertyOverrides({ieze9x_rU:{bWi4IvKSx:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SnG81Pipk\"},implicitPathVariables:undefined},{href:{webPageId:\"SnG81Pipk\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({l2COCKw70:{height:200,y:(componentViewport?.y||0)+(0+((componentViewport?.height||485)-0-632.2)/2)+70+0+187.2+10}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1596txb-container\",layoutDependency:layoutDependency,layoutId:\"Vq40venh1-container\",nodeId:\"Vq40venh1\",rendersWithMotion:true,scopeId:\"FIpDQAnJQ\",children:/*#__PURE__*/_jsx(CTAButton,{bWi4IvKSx:resolvedLinks4[0],dzyXIS79T:true,gv_niaE4f:\"0px 0px 0px 0px\",height:\"100%\",id:\"Vq40venh1\",jSsRE6Z11:\"8px 12px 8px 12px\",layoutId:\"Vq40venh1\",mBpb0OtJO:wKT3XUDmM,oZGIDxtLs:\"8px\",SLSk4g6S8:8,variant:JSdiJo_Nx,width:\"100%\",...addPropertyOverrides({l2COCKw70:{bWi4IvKSx:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})}),isDisplayed8()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SnG81Pipk\"},implicitPathVariables:undefined},{href:{webPageId:\"SnG81Pipk\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({g4qGKJABE:{height:200,y:(componentViewport?.y||0)+(0+((componentViewport?.height||684)-0-948.2)/2)+70+0+0+193.2+10},SvmwbH8cz:{height:200,y:(componentViewport?.y||0)+(0+((componentViewport?.height||684)-0-948.2)/2)+70+0+0+193.2+10}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8we5cd-container\",layoutDependency:layoutDependency,layoutId:\"VLdEOfRns-container\",nodeId:\"VLdEOfRns\",rendersWithMotion:true,scopeId:\"FIpDQAnJQ\",children:/*#__PURE__*/_jsx(CTAButton,{bWi4IvKSx:resolvedLinks5[0],dzyXIS79T:true,gv_niaE4f:\"0px 0px 0px 0px\",height:\"100%\",id:\"VLdEOfRns\",jSsRE6Z11:\"8px 12px 8px 12px\",layoutId:\"VLdEOfRns\",mBpb0OtJO:wKT3XUDmM,oZGIDxtLs:\"8px\",SLSk4g6S8:8,variant:JSdiJo_Nx,width:\"100%\",...addPropertyOverrides({g4qGKJABE:{bWi4IvKSx:aQ7Ty4eXB},SvmwbH8cz:{bWi4IvKSx:resolvedLinks5[1]}},baseVariant,gestureVariant)})})})}),isDisplayed9()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hzx75s-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"PHC29jMr1-container\",nodeId:\"PHC29jMr1\",rendersWithMotion:true,scopeId:\"FIpDQAnJQ\",children:/*#__PURE__*/_jsx(Download,{borderColor:\"var(--token-10cfbc33-27be-46e6-a1ab-ba1cd565554b, rgb(44, 63, 213))\",borderRadius:8,downloadFileName:getLocalizedValue(\"v1\",activeLocale)??\"EasyTranslate_Press_Pack\",file:\"https://framerusercontent.com/assets/7a7PVD3amvcfzfbUe6pwK6WLZ8c.zip\",fontSize:18,fontWeight:600,height:\"100%\",hoverBackgroundColor:\"var(--token-b450dcaf-6410-40f0-856a-6eb2a36aa135, rgb(13, 31, 184))\",hoverTextColor:\"var(--token-4e87d3ee-8d7f-4429-806c-e7ea8bc4a075, rgb(254, 254, 254))\",id:\"PHC29jMr1\",layoutId:\"PHC29jMr1\",padding:\"10px 15px\",showArrow:false,textColor:\"var(--token-4e87d3ee-8d7f-4429-806c-e7ea8bc4a075, rgb(254, 254, 254))\",tint:\"var(--token-10cfbc33-27be-46e6-a1ab-ba1cd565554b, rgb(44, 63, 213))\",title:getLocalizedValue(\"v0\",activeLocale)??\"Download\",underline:false,width:\"100%\"})})}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({ieze9x_rU:{height:70,width:`calc((${componentViewport?.width||\"100vw\"} * 0.78 - 10px) * 0.5442)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||736.5)-0-1017.5)/2)+70+0+0+164+10+210}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-br30fd-container\",layoutDependency:layoutDependency,layoutId:\"JVxNPbY6Q-container\",nodeId:\"JVxNPbY6Q\",rendersWithMotion:true,scopeId:\"FIpDQAnJQ\",children:/*#__PURE__*/_jsx(G2ReviewStars,{height:\"100%\",id:\"JVxNPbY6Q\",layoutId:\"JVxNPbY6Q\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({l2COCKw70:{height:75,width:`calc(((${componentViewport?.width||\"100vw\"} * 0.8317 - 10px) / 2 - 50px) * 0.32)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||485)-0-632.2)/2)+70+0+417.2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-j46wl8-container\",layoutDependency:layoutDependency,layoutId:\"xSRSu5okL-container\",nodeId:\"xSRSu5okL\",rendersWithMotion:true,scopeId:\"FIpDQAnJQ\",children:/*#__PURE__*/_jsx(G2ReviewStars,{height:\"100%\",id:\"xSRSu5okL\",layoutId:\"xSRSu5okL\",style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1orbnqo\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"KD6ez_GbJ\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{jpPij4QJE:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},KddVikkso:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},kJWoyggKX:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},NLYPwpJBv:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},pb4PYEQ_y:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},QD9sZd0Tg:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},r0TBG0vsP:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},V4NKqIWYW:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},children:[isDisplayed10()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ubs5r2-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"flUYf8vGO-container\",nodeId:\"flUYf8vGO\",rendersWithMotion:true,scopeId:\"FIpDQAnJQ\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"flUYf8vGO\",isMixedBorderRadius:false,isRed:true,layoutId:\"flUYf8vGO\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:getLocalizedValue(\"v2\",activeLocale)??\"https://youtu.be/smPos0mJvh8\",width:\"100%\",...addPropertyOverrides({jpPij4QJE:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,play:OU45l6djO,topLeftRadius:15,topRightRadius:15,url:Suc2UQmmN},kJWoyggKX:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,isRed:false,play:OU45l6djO,topLeftRadius:15,topRightRadius:15,url:Suc2UQmmN},NLYPwpJBv:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,isRed:false,play:OU45l6djO,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:15,topRightRadius:15,url:Suc2UQmmN},pb4PYEQ_y:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,play:OU45l6djO,topLeftRadius:15,topRightRadius:15,url:Suc2UQmmN}},baseVariant,gestureVariant)})})}),isDisplayed11()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||456.5)-0-553.2)/2)+116.6+0),sizes:`min(max((${componentViewport?.width||\"100vw\"} * 0.8317 - 10px) / 2 - 20px, 1px), max((${componentViewport?.width||\"100vw\"} * 0.8317 - 10px) / 2 - 20px, 1px) * 0.8)`,...toResponsiveImage(DwJcVi9YA)},className:\"framer-5rv5yd\",\"data-framer-name\":\"img\",layoutDependency:layoutDependency,layoutId:\"LSlnMCKkj\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({g4qGKJABE:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||684)-0-948.2)/2)+70+418.2+0),sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.78 - 10px)`,...toResponsiveImage(DwJcVi9YA),...{positionX:\"center\",positionY:\"center\"}}},ieze9x_rU:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||736.5)-0-1017.5)/2)+70+484+0),sizes:`min(603.9891px, (${componentViewport?.width||\"100vw\"} * 0.78 - 10px) * 0.8)`,...toResponsiveImage(DwJcVi9YA)}},KddVikkso:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||694.5)-0-1001.2)/2)+70+428.2+0),sizes:`min(663.1156px, (${componentViewport?.width||\"100vw\"} * 0.78 - 10px) * 0.8)`,...toResponsiveImage(DwJcVi9YA)}},l2COCKw70:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||485)-0-632.2)/2)+117.1+0),sizes:`min(max((${componentViewport?.width||\"100vw\"} * 0.8317 - 10px) / 2 - 20px, 1px), max((${componentViewport?.width||\"100vw\"} * 0.8317 - 10px) / 2 - 20px, 1px) * 0.8)`,...toResponsiveImage(DwJcVi9YA)}},QD9sZd0Tg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||614)-0-638.2)/2)+70+198.2+0),sizes:`min(464.0313px, (${componentViewport?.width||\"100vw\"} * 0.78 - 10px) * 0.8)`,...toResponsiveImage(DwJcVi9YA)}},SvmwbH8cz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||684)-0-948.2)/2)+70+418.2+0),sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.78 - 10px)`,...toResponsiveImage(DwJcVi9YA)}},V4NKqIWYW:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||456.5)-0-460)/2)+70+0),sizes:`min(max((${componentViewport?.width||\"100vw\"} * 0.8317 - 10px) / 2 - 20px, 1px), max((${componentViewport?.width||\"100vw\"} * 0.8317 - 10px) / 2 - 20px, 1px) * 0.8)`,...toResponsiveImage(DwJcVi9YA)}},w9XQfUacO:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||456.5)-0-553.2)/2)+116.6+0),sizes:`min(max((${componentViewport?.width||\"100vw\"} * 0.8317 - 10px) / 2 - 20px, 1px), max((${componentViewport?.width||\"100vw\"} * 0.8317 - 10px) / 2 - 20px, 1px) * 0.8)`,...toResponsiveImage(DwJcVi9YA),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})]})]}),isDisplayed12()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h7sapx\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"Wcyrf6BQJ\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13x568v\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"QzKJ543En\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bgsm8d\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"Qo6bpuy6k\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2agjxx\",\"data-framer-name\":\"Heading and supporting text\",layoutDependency:layoutDependency,layoutId:\"owx3TIPLO\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xng1qv\",layoutDependency:layoutDependency,layoutId:\"qn9RxTIB1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-cfi3k6\",\"data-styles-preset\":\"tnx20qMwb\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-ggDw6F18T-FIpDQAnJQ))\"},children:\"Professional English translations\"})}),className:\"framer-143df9b\",\"data-framer-name\":\"header\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MJIySH5fU\",style:{\"--extracted-gdpscs\":\"var(--variable-reference-ggDw6F18T-FIpDQAnJQ)\",\"--framer-paragraph-spacing\":\"52.79999923706055px\",\"--variable-reference-ggDw6F18T-FIpDQAnJQ\":ggDw6F18T},text:JmBw9H9W9,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yzqcqb\",\"data-styles-preset\":\"xxr6tKcSA\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-TPdudkI8B-FIpDQAnJQ))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"LANGUAGE\"})})}),className:\"framer-1xrz2a0\",\"data-framer-name\":\"type\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"etZusNlvh\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-TPdudkI8B-FIpDQAnJQ)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-TPdudkI8B-FIpDQAnJQ\":TPdudkI8B},text:KPjxFNlaz,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yzqcqb\",\"data-styles-preset\":\"xxr6tKcSA\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8f76d932-8d09-4c3d-bc86-50dc6739c514, rgb(69, 74, 91)))\"},children:\"EasyTranslate simplifies translation with the best of artificial and human intelligence to deliver cost-effective, brand-aligned language solutions for businesses.\"})}),className:\"framer-1fi77ie\",\"data-framer-name\":\"EasyTranslate simplifies translation with the best of artificial and human intelligence to deliver cost-effective, brand-aligned language solutions for businesses.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Kj5o3qAWA\",style:{\"--extracted-r6o4lv\":\"var(--token-8f76d932-8d09-4c3d-bc86-50dc6739c514, rgb(69, 74, 91))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bMHFqTnWN:{text:N5NUJgIAk}},baseVariant,gestureVariant)}),isDisplayed13(JnYZwWYuZ)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7jqaor\",layoutDependency:layoutDependency,layoutId:\"RPn2HiLsu\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,...addPropertyOverrides({bMHFqTnWN:{width:`max(min(max((min(${componentViewport?.width||\"100vw\"} - 120px, 1400px) - 40px) / 2, 1px) - 65px, 1000px), 200px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||580)-0-1076.2)/2)+0+0+0+0+0+0+216.2+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hsmsov-container\",layoutDependency:layoutDependency,layoutId:\"Rw7B6VlVB-container\",nodeId:\"Rw7B6VlVB\",rendersWithMotion:true,scopeId:\"FIpDQAnJQ\",children:/*#__PURE__*/_jsx(CardsFeatureCardSimple,{height:\"100%\",id:\"Rw7B6VlVB\",iHqIagJOF:\"\",layoutId:\"Rw7B6VlVB\",Pzs4GcH4x:\"rgb(0, 0, 0)\",style:{width:\"100%\"},variant:\"p5UowwTVR\",VyQpMazQW:addImageAlt({src:\"https://framerusercontent.com/images/MtzUhnsYC2TKlcW9H9BUK3s4A.svg\",srcSet:\"https://framerusercontent.com/images/MtzUhnsYC2TKlcW9H9BUK3s4A.svg?scale-down-to=512 512w,https://framerusercontent.com/images/MtzUhnsYC2TKlcW9H9BUK3s4A.svg 628w\"},\"\"),width:\"100%\",Z6hiuC6BW:getLocalizedValue(\"v4\",activeLocale)??\"Access to professional freelancers\",ZdZM7np2V:false,ZfP85W1Qa:\"\",...addPropertyOverrides({bMHFqTnWN:{VyQpMazQW:toResponsiveImage(LNHzFowWB),Z6hiuC6BW:MMeDJfkIh}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,...addPropertyOverrides({bMHFqTnWN:{width:`max(min(max((min(${componentViewport?.width||\"100vw\"} - 120px, 1400px) - 40px) / 2, 1px) - 65px, 1000px), 200px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||580)-0-1076.2)/2)+0+0+0+0+0+0+216.2+0+215}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bdntmy-container\",layoutDependency:layoutDependency,layoutId:\"oy5fZO7lK-container\",nodeId:\"oy5fZO7lK\",rendersWithMotion:true,scopeId:\"FIpDQAnJQ\",children:/*#__PURE__*/_jsx(CardsFeatureCardSimple,{height:\"100%\",id:\"oy5fZO7lK\",iHqIagJOF:\"\",layoutId:\"oy5fZO7lK\",Pzs4GcH4x:\"rgb(0, 0, 0)\",style:{width:\"100%\"},variant:\"p5UowwTVR\",VyQpMazQW:addImageAlt({src:\"https://framerusercontent.com/images/Pm5ojjpN3GOhAAMTZUW9Th1x4E.svg\",srcSet:\"https://framerusercontent.com/images/Pm5ojjpN3GOhAAMTZUW9Th1x4E.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Pm5ojjpN3GOhAAMTZUW9Th1x4E.svg 628w\"},\"\"),width:\"100%\",Z6hiuC6BW:getLocalizedValue(\"v5\",activeLocale)??\"Unique blend of AI & humans\",ZdZM7np2V:false,ZfP85W1Qa:\"\",...addPropertyOverrides({bMHFqTnWN:{VyQpMazQW:toResponsiveImage(hEsbgnjj_),Z6hiuC6BW:ODUJ_zsgO}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,...addPropertyOverrides({bMHFqTnWN:{width:`max(min(max((min(${componentViewport?.width||\"100vw\"} - 120px, 1400px) - 40px) / 2, 1px) - 65px, 1000px), 200px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||580)-0-1076.2)/2)+0+0+0+0+0+0+216.2+0+430}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4e0s5o-container\",layoutDependency:layoutDependency,layoutId:\"q4BtN1Opk-container\",nodeId:\"q4BtN1Opk\",rendersWithMotion:true,scopeId:\"FIpDQAnJQ\",children:/*#__PURE__*/_jsx(CardsFeatureCardSimple,{height:\"100%\",id:\"q4BtN1Opk\",iHqIagJOF:\"\",layoutId:\"q4BtN1Opk\",Pzs4GcH4x:\"rgb(0, 0, 0)\",style:{width:\"100%\"},variant:\"p5UowwTVR\",VyQpMazQW:addImageAlt({src:\"https://framerusercontent.com/images/JEMUjmSFTLVYQDLQWIvovFtCM.svg\",srcSet:\"https://framerusercontent.com/images/JEMUjmSFTLVYQDLQWIvovFtCM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/JEMUjmSFTLVYQDLQWIvovFtCM.svg 628w\"},\"\"),width:\"100%\",Z6hiuC6BW:getLocalizedValue(\"v6\",activeLocale)??\"Personal assistance\",ZdZM7np2V:false,ZfP85W1Qa:\"\",...addPropertyOverrides({bMHFqTnWN:{VyQpMazQW:toResponsiveImage(ClcjkoKSl),Z6hiuC6BW:gZ1KusEWY}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rjdq0x\",\"data-framer-name\":\"buttons\",layoutDependency:layoutDependency,layoutId:\"Ikyhh3zgv\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SnG81Pipk\"},implicitPathVariables:undefined},{href:{webPageId:\"SnG81Pipk\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,...addPropertyOverrides({bMHFqTnWN:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||580)-0-1076.2)/2)+0+0+0+0+876.2+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-43s59q-container\",layoutDependency:layoutDependency,layoutId:\"JJPtPJR6h-container\",nodeId:\"JJPtPJR6h\",rendersWithMotion:true,scopeId:\"FIpDQAnJQ\",children:/*#__PURE__*/_jsx(CTAButton,{bWi4IvKSx:resolvedLinks6[0],dzyXIS79T:true,gv_niaE4f:\"0px 0px 0px 0px\",height:\"100%\",id:\"JJPtPJR6h\",jSsRE6Z11:\"8px 12px 8px 12px\",layoutId:\"JJPtPJR6h\",mBpb0OtJO:wKT3XUDmM,oZGIDxtLs:\"8px\",SLSk4g6S8:8,variant:\"E049N0Bde\",width:\"100%\",...addPropertyOverrides({bMHFqTnWN:{bWi4IvKSx:resolvedLinks6[1]}},baseVariant,gestureVariant)})})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16tehxk\",\"data-framer-name\":\"Visual-contaienr\",layoutDependency:layoutDependency,layoutId:\"qi1V3P_K6\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Screenshot of the main dashboard with gradients as background\",fit:\"fill\",intrinsicHeight:1980,intrinsicWidth:3045,pixelHeight:150,pixelWidth:231,sizes:\"1000px\",src:\"https://framerusercontent.com/images/x8w6WmmZ8ToQnmY6bzb4cDCIG8.svg\",srcSet:\"https://framerusercontent.com/images/x8w6WmmZ8ToQnmY6bzb4cDCIG8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/x8w6WmmZ8ToQnmY6bzb4cDCIG8.svg 1015w\"},className:\"framer-xjmcgo\",\"data-framer-name\":\"hero_main_visual\",layoutDependency:layoutDependency,layoutId:\"SGJKubV5N\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({bMHFqTnWN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1980,intrinsicWidth:3045,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||580)-0-1076.2)/2)+0+0+248.0015+30+0),pixelHeight:150,pixelWidth:231,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 120px, 1400px) - 40px) / 2, 1px) * 1.641)`,...toResponsiveImage(DwJcVi9YA),...{positionX:\"left\",positionY:\"center\"}}}},baseVariant,gestureVariant)})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-C3fM5.framer-1iu5jfh, .framer-C3fM5 .framer-1iu5jfh { display: block; }\",\".framer-C3fM5.framer-1jghn9p { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-C3fM5 .framer-1an4rno { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 70px 0px 70px 10px; position: relative; width: 83%; }\",\".framer-C3fM5 .framer-dr096c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 50px 0px 0px; position: relative; width: 50%; }\",\".framer-C3fM5 .framer-tz00b0, .framer-C3fM5 .framer-1ce5rgh, .framer-C3fM5 .framer-1xrz2a0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-C3fM5 .framer-t556m4, .framer-C3fM5 .framer-yn3qt5, .framer-C3fM5 .framer-143df9b { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-C3fM5 .framer-zz1e2o, .framer-C3fM5 .framer-wdx8yu, .framer-C3fM5 .framer-yyayn1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-C3fM5 .framer-118v3fq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 50px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-C3fM5 .framer-77ykjx-container, .framer-C3fM5 .framer-66qrzf-container, .framer-C3fM5 .framer-1ca8td1-container, .framer-C3fM5 .framer-12ex9lv-container, .framer-C3fM5 .framer-1596txb-container, .framer-C3fM5 .framer-8we5cd-container, .framer-C3fM5 .framer-1hzx75s-container, .framer-C3fM5 .framer-43s59q-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-C3fM5 .framer-f7s6s7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-C3fM5 .framer-br30fd-container { flex: none; height: 70px; position: relative; width: 54%; }\",\".framer-C3fM5 .framer-j46wl8-container { flex: none; height: auto; position: relative; width: 32%; }\",\".framer-C3fM5 .framer-1orbnqo { align-content: center; align-items: center; aspect-ratio: 1.496875 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 317px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-C3fM5 .framer-1ubs5r2-container { flex: none; height: 270px; position: relative; width: 480px; }\",\".framer-C3fM5 .framer-5rv5yd { aspect-ratio: 1.496875 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 254px); max-width: 80%; position: relative; width: 1px; }\",\".framer-C3fM5 .framer-1h7sapx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-C3fM5 .framer-13x568v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-C3fM5 .framer-bgsm8d { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 65px; position: relative; width: 1px; }\",\".framer-C3fM5 .framer-2agjxx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-C3fM5 .framer-1xng1qv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-C3fM5 .framer-1fi77ie { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-C3fM5 .framer-7jqaor { display: grid; flex: none; gap: 15px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-C3fM5 .framer-hsmsov-container, .framer-C3fM5 .framer-bdntmy-container, .framer-C3fM5 .framer-4e0s5o-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-C3fM5 .framer-rjdq0x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-C3fM5 .framer-16tehxk { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-C3fM5 .framer-xjmcgo { aspect-ratio: 1.5378787878787878 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 650px); overflow: visible; position: relative; width: 1000px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-C3fM5.framer-1jghn9p, .framer-C3fM5 .framer-1an4rno, .framer-C3fM5 .framer-dr096c, .framer-C3fM5 .framer-zz1e2o, .framer-C3fM5 .framer-118v3fq, .framer-C3fM5 .framer-wdx8yu, .framer-C3fM5 .framer-f7s6s7, .framer-C3fM5 .framer-yyayn1, .framer-C3fM5 .framer-1orbnqo, .framer-C3fM5 .framer-1h7sapx, .framer-C3fM5 .framer-13x568v, .framer-C3fM5 .framer-bgsm8d, .framer-C3fM5 .framer-2agjxx, .framer-C3fM5 .framer-1xng1qv, .framer-C3fM5 .framer-rjdq0x, .framer-C3fM5 .framer-16tehxk { gap: 0px; } .framer-C3fM5.framer-1jghn9p > *, .framer-C3fM5 .framer-zz1e2o > *, .framer-C3fM5 .framer-wdx8yu > *, .framer-C3fM5 .framer-yyayn1 > *, .framer-C3fM5 .framer-1orbnqo > *, .framer-C3fM5 .framer-rjdq0x > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-C3fM5.framer-1jghn9p > :first-child, .framer-C3fM5 .framer-1an4rno > :first-child, .framer-C3fM5 .framer-zz1e2o > :first-child, .framer-C3fM5 .framer-wdx8yu > :first-child, .framer-C3fM5 .framer-yyayn1 > :first-child, .framer-C3fM5 .framer-1orbnqo > :first-child, .framer-C3fM5 .framer-13x568v > :first-child, .framer-C3fM5 .framer-rjdq0x > :first-child { margin-left: 0px; } .framer-C3fM5.framer-1jghn9p > :last-child, .framer-C3fM5 .framer-1an4rno > :last-child, .framer-C3fM5 .framer-zz1e2o > :last-child, .framer-C3fM5 .framer-wdx8yu > :last-child, .framer-C3fM5 .framer-yyayn1 > :last-child, .framer-C3fM5 .framer-1orbnqo > :last-child, .framer-C3fM5 .framer-13x568v > :last-child, .framer-C3fM5 .framer-rjdq0x > :last-child { margin-right: 0px; } .framer-C3fM5 .framer-1an4rno > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-C3fM5 .framer-dr096c > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-C3fM5 .framer-dr096c > :first-child, .framer-C3fM5 .framer-118v3fq > :first-child, .framer-C3fM5 .framer-f7s6s7 > :first-child, .framer-C3fM5 .framer-1h7sapx > :first-child, .framer-C3fM5 .framer-bgsm8d > :first-child, .framer-C3fM5 .framer-2agjxx > :first-child, .framer-C3fM5 .framer-1xng1qv > :first-child, .framer-C3fM5 .framer-16tehxk > :first-child { margin-top: 0px; } .framer-C3fM5 .framer-dr096c > :last-child, .framer-C3fM5 .framer-118v3fq > :last-child, .framer-C3fM5 .framer-f7s6s7 > :last-child, .framer-C3fM5 .framer-1h7sapx > :last-child, .framer-C3fM5 .framer-bgsm8d > :last-child, .framer-C3fM5 .framer-2agjxx > :last-child, .framer-C3fM5 .framer-1xng1qv > :last-child, .framer-C3fM5 .framer-16tehxk > :last-child { margin-bottom: 0px; } .framer-C3fM5 .framer-118v3fq > *, .framer-C3fM5 .framer-f7s6s7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-C3fM5 .framer-1h7sapx > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-C3fM5 .framer-13x568v > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-C3fM5 .framer-bgsm8d > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-C3fM5 .framer-2agjxx > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-C3fM5 .framer-1xng1qv > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-C3fM5 .framer-16tehxk > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }\",\".framer-C3fM5.framer-v-16m8vpe.framer-1jghn9p, .framer-C3fM5.framer-v-13y4ltp.framer-1jghn9p, .framer-C3fM5.framer-v-1o8ajii.framer-1jghn9p, .framer-C3fM5.framer-v-cpuofi.framer-1jghn9p, .framer-C3fM5.framer-v-19xrsj3.framer-1jghn9p { width: 390px; }\",\".framer-C3fM5.framer-v-16m8vpe .framer-1an4rno, .framer-C3fM5.framer-v-13y4ltp .framer-1an4rno { flex-direction: column; gap: 5px; padding: 70px 0px 60px 10px; width: 78%; }\",\".framer-C3fM5.framer-v-16m8vpe .framer-dr096c, .framer-C3fM5.framer-v-13y4ltp .framer-dr096c, .framer-C3fM5.framer-v-1o8ajii .framer-dr096c, .framer-C3fM5.framer-v-1ld9sfd .framer-dr096c, .framer-C3fM5.framer-v-cpuofi .framer-dr096c, .framer-C3fM5.framer-v-god6e .framer-dr096c, .framer-C3fM5.framer-v-19xrsj3 .framer-dr096c { padding: 0px; width: 100%; }\",\".framer-C3fM5.framer-v-16m8vpe .framer-1orbnqo, .framer-C3fM5.framer-v-13y4ltp .framer-1orbnqo { aspect-ratio: unset; flex: none; height: min-content; width: 100%; }\",\".framer-C3fM5.framer-v-16m8vpe .framer-5rv5yd, .framer-C3fM5.framer-v-13y4ltp .framer-5rv5yd { aspect-ratio: 1.4025 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 210px); max-width: 100%; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-C3fM5.framer-v-16m8vpe .framer-1an4rno { gap: 0px; } .framer-C3fM5.framer-v-16m8vpe .framer-1an4rno > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-C3fM5.framer-v-16m8vpe .framer-1an4rno > :first-child { margin-top: 0px; } .framer-C3fM5.framer-v-16m8vpe .framer-1an4rno > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-C3fM5.framer-v-13y4ltp .framer-1an4rno { gap: 0px; } .framer-C3fM5.framer-v-13y4ltp .framer-1an4rno > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-C3fM5.framer-v-13y4ltp .framer-1an4rno > :first-child { margin-top: 0px; } .framer-C3fM5.framer-v-13y4ltp .framer-1an4rno > :last-child { margin-bottom: 0px; } }\",\".framer-C3fM5.framer-v-1tatizd .framer-t556m4 { order: 4; }\",\".framer-C3fM5.framer-v-1tatizd .framer-1ce5rgh, .framer-C3fM5.framer-v-1fplc6b .framer-dr096c, .framer-C3fM5.framer-v-1miso7l .framer-1xrz2a0 { order: 0; }\",\".framer-C3fM5.framer-v-1tatizd .framer-yn3qt5 { order: 5; }\",\".framer-C3fM5.framer-v-1tatizd .framer-yyayn1 { order: 8; }\",\".framer-C3fM5.framer-v-1tatizd .framer-j46wl8-container { order: 9; }\",\".framer-C3fM5.framer-v-1tatizd .framer-1orbnqo { aspect-ratio: unset; height: min-content; }\",\".framer-C3fM5.framer-v-1tatizd .framer-5rv5yd { height: var(--framer-aspect-ratio-supported, 253px); }\",\".framer-C3fM5.framer-v-1o8ajii .framer-1an4rno { flex-direction: column; padding: 70px 0px 60px 10px; width: 78%; }\",\".framer-C3fM5.framer-v-1o8ajii .framer-yyayn1 { align-content: flex-start; align-items: flex-start; flex-direction: column; }\",\".framer-C3fM5.framer-v-1o8ajii .framer-1orbnqo { flex: none; height: var(--framer-aspect-ratio-supported, 197px); width: 100%; }\",\".framer-C3fM5.framer-v-1o8ajii .framer-5rv5yd, .framer-C3fM5.framer-v-cpuofi .framer-5rv5yd, .framer-C3fM5.framer-v-19xrsj3 .framer-5rv5yd { flex: none; height: 100%; width: var(--framer-aspect-ratio-supported, 235px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-C3fM5.framer-v-1o8ajii .framer-1an4rno, .framer-C3fM5.framer-v-1o8ajii .framer-yyayn1 { gap: 0px; } .framer-C3fM5.framer-v-1o8ajii .framer-1an4rno > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-C3fM5.framer-v-1o8ajii .framer-1an4rno > :first-child, .framer-C3fM5.framer-v-1o8ajii .framer-yyayn1 > :first-child { margin-top: 0px; } .framer-C3fM5.framer-v-1o8ajii .framer-1an4rno > :last-child, .framer-C3fM5.framer-v-1o8ajii .framer-yyayn1 > :last-child { margin-bottom: 0px; } .framer-C3fM5.framer-v-1o8ajii .framer-yyayn1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-C3fM5.framer-v-fnge2j .framer-1orbnqo { will-change: var(--framer-will-change-override, transform); }\",\".framer-C3fM5.framer-v-fnge2j .framer-1ubs5r2-container { flex: 1 0 0px; height: 85%; max-width: 85%; width: 1px; }\",\".framer-C3fM5.framer-v-1ld9sfd.framer-1jghn9p { padding: 70px 0px 30px 0px; width: 390px; }\",\".framer-C3fM5.framer-v-1ld9sfd .framer-1an4rno, .framer-C3fM5.framer-v-god6e .framer-1an4rno { flex-direction: column; padding: 0px 0px 0px 10px; width: 78%; }\",\".framer-C3fM5.framer-v-1ld9sfd .framer-1orbnqo, .framer-C3fM5.framer-v-god6e .framer-1orbnqo { flex: none; height: var(--framer-aspect-ratio-supported, 197px); width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-C3fM5.framer-v-1ld9sfd .framer-1ubs5r2-container { flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-C3fM5.framer-v-1ld9sfd .framer-1an4rno { gap: 0px; } .framer-C3fM5.framer-v-1ld9sfd .framer-1an4rno > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-C3fM5.framer-v-1ld9sfd .framer-1an4rno > :first-child { margin-top: 0px; } .framer-C3fM5.framer-v-1ld9sfd .framer-1an4rno > :last-child { margin-bottom: 0px; } }\",\".framer-C3fM5.framer-v-cpuofi .framer-1an4rno, .framer-C3fM5.framer-v-19xrsj3 .framer-1an4rno { flex-direction: column; gap: 15px; padding: 70px 0px 60px 10px; width: 78%; }\",\".framer-C3fM5.framer-v-cpuofi .framer-1orbnqo { aspect-ratio: 1.4064516129032258 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 209px); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-C3fM5.framer-v-cpuofi .framer-1an4rno { gap: 0px; } .framer-C3fM5.framer-v-cpuofi .framer-1an4rno > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-C3fM5.framer-v-cpuofi .framer-1an4rno > :first-child { margin-top: 0px; } .framer-C3fM5.framer-v-cpuofi .framer-1an4rno > :last-child { margin-bottom: 0px; } }\",\".framer-C3fM5.framer-v-1s74vz2 .framer-1an4rno { padding: 90px 0px 90px 10px; }\",\".framer-C3fM5.framer-v-1s74vz2 .framer-1orbnqo { flex: none; height: var(--framer-aspect-ratio-supported, 264px); width: 40%; will-change: var(--framer-will-change-override, transform); }\",\".framer-C3fM5.framer-v-1s74vz2 .framer-1ubs5r2-container { aspect-ratio: 1.7555555555555555 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 225px); width: 1px; }\",\".framer-C3fM5.framer-v-god6e.framer-1jghn9p { padding: 90px 0px 90px 0px; width: 390px; }\",\".framer-C3fM5.framer-v-god6e .framer-1ubs5r2-container { aspect-ratio: 0.9740740740740741 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 302px); width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-C3fM5.framer-v-god6e .framer-1an4rno { gap: 0px; } .framer-C3fM5.framer-v-god6e .framer-1an4rno > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-C3fM5.framer-v-god6e .framer-1an4rno > :first-child { margin-top: 0px; } .framer-C3fM5.framer-v-god6e .framer-1an4rno > :last-child { margin-bottom: 0px; } }\",\".framer-C3fM5.framer-v-1fplc6b .framer-1orbnqo, .framer-C3fM5.framer-v-1miso7l .framer-143df9b { order: 1; }\",\".framer-C3fM5.framer-v-19xrsj3 .framer-1orbnqo { aspect-ratio: 1.4063205417607223 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 209px); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-C3fM5.framer-v-19xrsj3 .framer-1an4rno { gap: 0px; } .framer-C3fM5.framer-v-19xrsj3 .framer-1an4rno > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-C3fM5.framer-v-19xrsj3 .framer-1an4rno > :first-child { margin-top: 0px; } .framer-C3fM5.framer-v-19xrsj3 .framer-1an4rno > :last-child { margin-bottom: 0px; } }\",\".framer-C3fM5.framer-v-1miso7l .framer-2agjxx { padding: 0px 0px 10px 0px; }\",\".framer-C3fM5.framer-v-1miso7l .framer-16tehxk { padding: 30px 0px 30px 0px; }\",\".framer-C3fM5.framer-v-1miso7l .framer-xjmcgo { height: var(--framer-aspect-ratio-supported, 520px); width: 164%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 456.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"SvmwbH8cz\":{\"layout\":[\"fixed\",\"auto\"]},\"w9XQfUacO\":{\"layout\":[\"fixed\",\"auto\"]},\"g4qGKJABE\":{\"layout\":[\"fixed\",\"auto\"]},\"l2COCKw70\":{\"layout\":[\"fixed\",\"auto\"]},\"ieze9x_rU\":{\"layout\":[\"fixed\",\"auto\"]},\"NLYPwpJBv\":{\"layout\":[\"fixed\",\"auto\"]},\"jpPij4QJE\":{\"layout\":[\"fixed\",\"auto\"]},\"V4NKqIWYW\":{\"layout\":[\"fixed\",\"auto\"]},\"QD9sZd0Tg\":{\"layout\":[\"fixed\",\"auto\"]},\"kJWoyggKX\":{\"layout\":[\"fixed\",\"auto\"]},\"pb4PYEQ_y\":{\"layout\":[\"fixed\",\"auto\"]},\"r0TBG0vsP\":{\"layout\":[\"fixed\",\"auto\"]},\"KddVikkso\":{\"layout\":[\"fixed\",\"auto\"]},\"bMHFqTnWN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"KPjxFNlaz\":\"title\",\"JmBw9H9W9\":\"header\",\"N5NUJgIAk\":\"text\",\"Suc2UQmmN\":\"video\",\"OU45l6djO\":\"autoplay\",\"wKT3XUDmM\":\"buttonTitle\",\"aQ7Ty4eXB\":\"buttonLink\",\"JSdiJo_Nx\":\"buttonVariant\",\"DwJcVi9YA\":\"image\",\"qtSsR_EOG\":\"background\",\"TPdudkI8B\":\"colorLittleTitle\",\"ggDw6F18T\":\"colorText\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFIpDQAnJQ=withCSS(Component,css,\"framer-C3fM5\");export default FramerFIpDQAnJQ;FramerFIpDQAnJQ.displayName=\"Hero/ Main\";FramerFIpDQAnJQ.defaultProps={height:456.5,width:1200};addPropertyControls(FramerFIpDQAnJQ,{variant:{options:[\"ky086X1zg\",\"SvmwbH8cz\",\"w9XQfUacO\",\"g4qGKJABE\",\"l2COCKw70\",\"ieze9x_rU\",\"NLYPwpJBv\",\"jpPij4QJE\",\"V4NKqIWYW\",\"QD9sZd0Tg\",\"kJWoyggKX\",\"pb4PYEQ_y\",\"r0TBG0vsP\",\"KddVikkso\",\"bMHFqTnWN\"],optionTitles:[\"Desktop-CTA\",\"Phone-CTA\",\"Desktop-CTA custom\",\"Phone-CTA custom\",\"Desktop-2 CTA-g2\",\"Phone 2-2 CTA-g2\",\"Desktop-CTA-video\",\"Phone-CTA-video\",\"Desktop-NO CTA\",\"Phone-NO CTA\",\"Desktop-NO CTA-video\",\"Phone-NO CTA-video\",\"Desktop-DOWNLOAD\",\"Phone-DOWNLOAD\",\"Desktop-platform-img\"],title:\"Variant\",type:ControlType.Enum},KPjxFNlaz:{defaultValue:\"LANGUAGE\",displayTextArea:false,title:\"Title\",type:ControlType.String},JmBw9H9W9:{defaultValue:\"Professional English translations\",displayTextArea:false,title:\"Header\",type:ControlType.String},N5NUJgIAk:{defaultValue:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. \",displayTextArea:false,title:\"Text\",type:ControlType.String},Suc2UQmmN:{defaultValue:\"https://youtu.be/smPos0mJvh8\",title:\"Video\",type:ControlType.String},OU45l6djO:YouTubeControls?.[\"play\"]&&{...YouTubeControls[\"play\"],defaultValue:\"Off\",description:undefined,hidden:undefined,title:\"Autoplay\"},wKT3XUDmM:{defaultValue:\"Get a Quote\",displayTextArea:false,title:\"Button title\",type:ControlType.String},aQ7Ty4eXB:{title:\"Button Link\",type:ControlType.Link},JSdiJo_Nx:CTAButtonControls?.[\"variant\"]&&{...CTAButtonControls[\"variant\"],defaultValue:\"E049N0Bde\",description:undefined,hidden:undefined,title:\"Button variant\"},DwJcVi9YA:{title:\"Image\",type:ControlType.ResponsiveImage},qtSsR_EOG:{defaultValue:'var(--token-4e87d3ee-8d7f-4429-806c-e7ea8bc4a075, rgb(254, 254, 254)) /* {\"name\":\"white\"} */',title:\"Background\",type:ControlType.Color},TPdudkI8B:{defaultValue:\"var(--token-10cfbc33-27be-46e6-a1ab-ba1cd565554b, rgb(44, 63, 213))\",title:\"Color - little title\",type:ControlType.Color},ggDw6F18T:{defaultValue:\"var(--token-8f76d932-8d09-4c3d-bc86-50dc6739c514, rgb(69, 74, 91))\",title:\"Color - text\",type:ControlType.Color}});addFonts(FramerFIpDQAnJQ,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...CTAButtonFonts,...DownloadFonts,...G2ReviewStarsFonts,...YouTubeFonts,...CardsFeatureCardSimpleFonts,...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\":\"FramerFIpDQAnJQ\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerVariables\":\"{\\\"KPjxFNlaz\\\":\\\"title\\\",\\\"JmBw9H9W9\\\":\\\"header\\\",\\\"N5NUJgIAk\\\":\\\"text\\\",\\\"Suc2UQmmN\\\":\\\"video\\\",\\\"OU45l6djO\\\":\\\"autoplay\\\",\\\"wKT3XUDmM\\\":\\\"buttonTitle\\\",\\\"aQ7Ty4eXB\\\":\\\"buttonLink\\\",\\\"JSdiJo_Nx\\\":\\\"buttonVariant\\\",\\\"DwJcVi9YA\\\":\\\"image\\\",\\\"qtSsR_EOG\\\":\\\"background\\\",\\\"TPdudkI8B\\\":\\\"colorLittleTitle\\\",\\\"ggDw6F18T\\\":\\\"colorText\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SvmwbH8cz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w9XQfUacO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"g4qGKJABE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"l2COCKw70\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ieze9x_rU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NLYPwpJBv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jpPij4QJE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"V4NKqIWYW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QD9sZd0Tg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kJWoyggKX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pb4PYEQ_y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"r0TBG0vsP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KddVikkso\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bMHFqTnWN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"456.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "2sBAAgT,IAAIA,IAAa,SAASA,EAAY,CAACA,EAAY,OAAU,MAAMA,EAAY,KAAQ,KAAKA,EAAY,KAAQ,MAAO,GAAGA,KAAcA,GAAY,CAAC,EAAE,EAAE,IAAIC,IAAkB,SAASA,EAAiB,CAACA,EAAiB,KAAQ,eAAeA,EAAiB,OAAU,iBAAiBA,EAAiB,IAAO,cAAcA,EAAiB,IAAO,KAAM,GAAGA,KAAmBA,GAAiB,CAAC,EAAE,EAAE,IAAIC,IAAiB,SAASA,EAAgB,CAACA,EAAgB,KAAQ,OAAOA,EAAgB,IAAO,KAAM,GAAGA,KAAkBA,GAAgB,CAAC,EAAE,EAQv0B,SAASC,EAAQ,CAAC,IAAAC,EAAI,KAAAC,EAAK,WAAAC,EAAW,UAAAC,EAAU,MAAAC,EAAM,QAAAC,EAAQ,aAAAC,EAAa,aAAAC,EAAa,YAAAC,EAAY,UAAAC,EAAU,MAAAC,EAAM,GAAGC,CAAK,EAAE,CAAC,IAAMC,EAASC,GAAc,EAAQC,EAAWb,IAAO,MAAYc,EAAcH,GAAUT,IAAY,OAAO,CAACW,EAAgB,CAACE,EAAaC,CAAY,EAAEC,GAAW,IAAI,GAAK,EAAK,EAAO,CAACC,EAAUC,CAAU,EAAEF,GAAW,IAAI,GAAK,CAACH,CAAa,EAAO,CAACM,EAAUC,CAAU,EAAEC,GAAS,EAAK,EAAQC,EAAaC,GAAUd,CAAK,EAAQe,EAAgBF,IAAe,mBAAmBA,IAAe,MAAM,GAAGxB,IAAM,GAAI,OAAoB2B,EAAKC,GAAa,CAAC,CAAC,EAAG,IAAMC,EAAUC,GAAc9B,CAAG,EAAE,GAAG6B,IAAY,OAAW,OAAoBF,EAAKI,GAAa,CAAC,QAAQ,sBAAsB,CAAC,EAAG,GAAK,CAACC,EAAQC,CAAQ,EAAEJ,EAC5uBK,EAAaD,EAAS,aAAaC,EAAa,IAAI,iBAAiB,GAAG,EAAEA,EAAa,IAAI,MAAM,GAAG,EAAEA,EAAa,IAAI,iBAAiB,GAAG,EAAEA,EAAa,IAAI,cAAc,GAAG,EAAMf,GACjJL,GAC1CC,GAAeI,IAAWe,EAAa,IAAI,WAAW,GAAG,EADzDA,EAAa,IAAI,WAAW,GAAG,EACgCpB,GAAYZ,GAAYgC,EAAa,IAAI,OAAO,GAAG,EAAMjC,IAAO,SAAQiC,EAAa,IAAI,OAAO,GAAG,EAAEA,EAAa,IAAI,WAAWF,CAAO,GAAO5B,GAAO8B,EAAa,IAAI,QAAQ,OAAO,EAAG,IAAMC,GAAY,CAAC,MAAMzB,GAAO,gBAAgB,MAAM,oGAAoG,IAAIuB,EAAS,KAAK,YAAY,IAAI,QAAA5B,EAAQ,aAAAC,EAAa,aAAAC,EAAa,YAAAC,EAAY,UAAAC,CAAS,EAAE,OAAoB2B,EAAM,UAAU,CAAC,eAAe,IAAId,EAAW,EAAI,EAAE,eAAe,IAAIA,EAAW,EAAK,EAAE,cAAcL,EAAa,UAAUG,EAAW,QAAQA,EAAW,MAAM,CAAC,GAAGiB,GAAa,aAAAb,EAAa,UAGlsBE,IAAkBP,GAAWP,GAAU,yBAAyB,QAAQ,OAAO,UAAU,SAAS,QAAQ,EAAE,KAAK,eAAe,SAAS,CAACI,GAA2BW,EAAK,OAAO,CAAC,IAAI,aAAa,KAAK,yBAAyB,CAAC,EAAEX,GAA2BW,EAAK,OAAO,CAAC,IAAI,aAAa,KAAK,wBAAwB,CAAC,EAAeA,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGW,GAAW,WAAWvB,EAAc,sBAAsBwB,GAAgBP,EAAQ7B,EAAUqC,GAAiB,EAAE,OAAO,KAAK,eAAe,MAAS,CAAC,CAAC,EAAG5B,EAAqJ,KAA/He,EAAK,SAAS,CAAC,QAASR,EAAiB,OAAP,OAAiB,MAAOA,EAAyCmB,GAA/B,CAAC,GAAGA,GAAW,QAAQ,MAAM,EAAa,GAAGH,EAAW,CAAC,EAAOhB,EAAU,KAAkBQ,EAAKc,GAAW,CAAC,QAAQrB,EAAW,UAAUC,EAAU,MAAMjB,CAAK,CAAC,CAAC,CAAC,CAAC,CAAE,CAACL,EAAQ,YAAY,UAAU2C,EAAoB3C,EAAQ,CAAC,IAAI,CAAC,KAAK4C,EAAY,OAAO,MAAM,OAAO,EAAE,KAAK,CAAC,KAAKA,EAAY,KAAK,MAAM,WAAW,QAAQ,OAAO,OAAO/C,EAAW,CAAC,EAAE,WAAW,CAAC,MAAM,OAAO,KAAK+C,EAAY,QAAQ,aAAa,MAAM,cAAc,KAAK,OAAOhC,EAAM,CAAC,OAAOA,EAAM,OAAO,KAAM,CAAC,EAAE,UAAU,CAAC,MAAM,YAAY,YAAY,4CAA4C,KAAKgC,EAAY,KAAK,QAAQ,OAAO,OAAO9C,EAAgB,EAAE,OAAOc,EAAM,CAAC,OAAOA,EAAM,OAAO,KAAM,CAAC,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKgC,EAAY,QAAQ,aAAa,MAAM,cAAc,OAAO,EAAE,GAAGC,GAAoB,GAAGC,EAAa,CAAC,EAAE,IAAMC,GAAa,CAAC,IAAI,+BAA+B,KAAK,MAAM,WAAW,GAAK,UAAU,iBAAiB,MAAM,EAAI,EAAE/C,EAAQ,aAAa+C,GAAa,SAAShB,GAAciB,EAAU,CAAC,IAAI/C,EAAI,GAAG,CAACA,EAAI,IAAI,IAAI+C,CAAS,CAAE,MAAC,CAAM,IAAMd,EAASe,GAAYD,CAAS,EAAE,MAAM,CAACA,EAAUd,CAAQ,CAAE,CAAC,GAAGjC,EAAI,WAAW,eAAeA,EAAI,WAAW,mBAAmBA,EAAI,WAAW,wBAAwBA,EAAI,WAAW,2BAA2B,CAAC,IAAMiD,EAAajD,EAAI,SAAS,MAAM,CAAC,EAAE,MAAM,GAAG,EACn2D,GAAGiD,EAAa,CAAC,IAAI,QAAQ,CAAC,IAAMjB,EAAQhC,EAAI,aAAa,IAAI,GAAG,EAAQiC,EAASe,GAAYhB,CAAO,EAAE,MAAM,CAACA,EAAQC,CAAQ,EACjI,GAAGgB,EAAa,CAAC,IAAI,QAAuC,MAAM,CAAtBA,EAAa,CAAC,EAAiBjD,CAAG,EAC9E,GAAGA,EAAI,WAAW,WAAW,CAAC,IAAMgC,EAAQhC,EAAI,SAAS,MAAM,CAAC,EAAQiC,EAASe,GAAYhB,CAAO,EAAE,MAAM,CAACA,EAAQC,CAAQ,EAAG,CAAC,SAASe,GAAYhB,EAAQ,CAAC,OAAO,IAAI,IAAI,iCAAiCA,GAAS,CAAE,CAAC,SAASO,GAAgBP,EAAQkB,EAAIC,EAAO,MAAM,CAC7Q,IAAMC,EAAQD,IAAS,OAAaE,EAAID,EAAQ,+BAA+B,0BAAgCE,EAAIF,EAAQ,OAAO,MAAM,OAAOF,EAAI,CAAC,IAAI,cAAc,MAAM,GAAGG,IAAMrB,eAAqBsB,IAAM,IAAI,iBAAiB,MAAM,GAAGD,IAAMrB,eAAqBsB,IAAM,IAAI,eAAe,MAAM,GAAGD,IAAMrB,mBAAyBsB,IAAM,QAAQ,MAAM,GAAGD,IAAMrB,OAAasB,GAAM,CAAC,CAAC,IAAIC,GAChY,SAASf,IAAkB,CAC3B,GAAG,CAACgB,EAAQ,MAAO,GAAM,GAAGD,KAAoB,OAAW,OAAOA,GAAmB,IAAME,EAAQ,SAAS,cAAc,QAAQ,EAAE,OAAGA,EAAQ,YAAYA,EAAQ,WAAW,IAAI,EAC3KF,GAAkBE,EAAQ,UAAU,YAAY,EAAE,QAAQ,iBAAiB,IAAI,EAC/EF,GAAkB,EAAO,CAChC,SAAS3B,IAAc,CAAC,OAAoBD,EAAK,MAAM,CAAC,MAAM,CAAC,GAAG+B,GAAgB,SAAS,QAAQ,EAAE,SAAsB/B,EAAK,MAAM,CAAC,MAAMgC,GAAgB,SAAS,mEAAmE,CAAC,CAAC,CAAC,CAAE,CAAC,SAAS5B,GAAa,CAAC,QAAA6B,CAAO,EAAE,CAAC,OAAoBjC,EAAK,MAAM,CAAC,UAAU,oCAAoC,MAAM,CAAC,GAAGkC,GAAgB,SAAS,QAAQ,EAAE,SAAsBzB,EAAM,MAAM,CAAC,MAAMuB,GAAgB,SAAS,CAAC,UAAUC,CAAO,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASnB,GAAW,CAAC,QAAApC,EAAQ,UAAAgB,EAAU,MAAAjB,CAAK,EAAE,CAAC,OAAoBuB,EAAK,SAAS,CAAC,QAAQtB,EAAQ,aAAa,OAAO,MAAMyD,GAAY,SAAsB1B,EAAM,MAAM,CAAC,OAAO,OAAO,QAAQ,MAAM,QAAQ,YAAY,MAAM,OAAO,SAAS,CAAcT,EAAK,OAAO,CAAC,EAAE,wTAAwT,KAAKN,EAAUjB,EAAM,OAAO,OAAO,UAAU,YAAYiB,GAAUjB,EAAM,EAAK,GAAG,MAAM,CAAC,WAAW,kFAAkF,CAAC,CAAC,EAAeuB,EAAK,OAAO,CAAC,EAAE,sBAAsB,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,IAAMmC,GAAY,CAAC,SAAS,WAAW,IAAI,MAAM,KAAK,MAAM,UAAU,wBAAwB,MAAM,GAAG,OAAO,GAAG,QAAQ,EAAE,OAAO,OAAO,WAAW,cAAc,OAAO,SAAS,EAAQzB,GAAa,CAAC,SAAS,WAAW,MAAM,OAAO,OAAO,MAAM,EAAQsB,GAAgB,CAAC,UAAU,SAAS,SAAS,GAAG,EAAQrB,GAAW,CAAC,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,OAAO,OAAO,MAAM,MAAM,ECvBxqD,IAAAyB,GAAA,GAAAC,GAAAD,GAAA,wBAAAE,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,KAAgH,IAAMC,GAAG,WAAwBC,GAAG,4BAAyCC,GAAG,+BAA4CC,GAAgBC,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,8KAA8K,CAAC,CAAC,CAAC,EAAeC,GAAG,wCAAqDC,GAAG,mCAAgDC,GAAG,uBACv0BC,GAAqB,CAAC,QAAU,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECD1jB,IAAAC,GAAA,GAAAC,GAAAD,GAAA,wBAAAE,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,KAAgH,IAAMC,GAAG,gBAA6BC,GAAG,2BAAwCC,GAAG,+BAA4CC,GAAgBC,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,kMAAkM,CAAC,CAAC,CAAC,EACluBC,GAAqB,CAAC,QAAU,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECAxQ,IAAMC,GAAiB,CAAC,UAAUC,GAAiB,UAAUC,EAAe,EAAiB,SAARC,EAAmCC,EAAIC,EAAO,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAON,GAAiBK,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAOF,CAAG,EAAE,GAAGG,EAAM,OAAOA,EAAOF,EAAOA,EAAO,SAAU,CCAmrC,IAAMG,GAAeC,EAASC,CAAS,EAAQC,GAAcF,EAASG,EAAQ,EAAQC,GAAmBJ,EAASK,EAAa,EAAQC,GAAaN,EAASO,CAAO,EAAQC,GAA4BR,EAASS,CAAsB,EAAQC,GAAgBC,GAAoBJ,CAAO,EAAQK,GAAkBD,GAAoBV,CAAS,EAAQY,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,EAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAW,CAAC,CAAC,MAAAJ,EAAM,SAAAK,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWT,GAAOM,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAqB,CAAC,oBAAoB,YAAY,iBAAiB,YAAY,eAAe,YAAY,iBAAiB,YAAY,gBAAgB,YAAY,YAAY,YAAY,QAAQ,YAAY,UAAU,WAAW,EAAQC,GAAwB,CAAC,mBAAmB,YAAY,qBAAqB,YAAY,oBAAoB,YAAY,cAAc,YAAY,mBAAmB,YAAY,uBAAuB,YAAY,iBAAiB,YAAY,uBAAuB,YAAY,mBAAmB,YAAY,mBAAmB,YAAY,kBAAkB,YAAY,YAAY,YAAY,iBAAiB,YAAY,qBAAqB,YAAY,eAAe,WAAW,EAAQC,GAAS,CAAC,CAAC,SAAAC,EAAS,WAAAC,EAAW,WAAAC,EAAW,YAAAC,EAAY,cAAAC,EAAc,iBAAAC,EAAiB,UAAAC,EAAU,OAAAC,EAAO,OAAAC,EAAO,GAAAC,EAAG,MAAA1B,EAAM,KAAA2B,EAAK,MAAAC,EAAM,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUZ,GAAYY,EAAM,UAAU,UAAU/B,GAAO+B,EAAM,UAAU,UAAUR,GAAWQ,EAAM,WAAW,qEAAqE,UAAUP,GAAQO,EAAM,WAAW,oCAAoC,UAAUjB,GAAqBO,CAAa,GAAGA,GAAeU,EAAM,WAAW,YAAY,UAAUH,GAAOG,EAAM,WAAW,WAAW,UAAUJ,GAAMI,EAAM,WAAW,+HAA+H,UAAUd,GAAUc,EAAM,WAAW,MAAM,UAAUb,GAAYa,EAAM,WAAW,wEAAwE,UAAUF,GAAOE,EAAM,WAAW,+BAA+B,UAAUT,GAAkBS,EAAM,WAAW,sEAAsE,QAAQhB,GAAwBgB,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUX,GAAaW,EAAM,WAAW,aAAa,GAAUC,GAAuB,CAACD,EAAMtC,IAAesC,EAAM,iBAAwBtC,EAAS,KAAK,GAAG,EAAEsC,EAAM,iBAAwBtC,EAAS,KAAK,GAAG,EAAUwC,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,GAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAArD,EAAQ,UAAAsD,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,GAAGC,EAAS,EAAEpD,GAASe,CAAK,EAAO,CAAC,YAAAsC,EAAY,WAAAC,GAAW,oBAAAC,GAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAAnF,EAAQ,EAAEoF,GAAgB,CAAC,WAAAzF,GAAW,eAAe,YAAY,IAAIkD,EAAW,QAAA3C,EAAQ,kBAAAL,EAAiB,CAAC,EAAQwF,EAAiB9C,GAAuBD,EAAMtC,EAAQ,EAA0GsF,GAAkBC,GAAG3F,GAAkB,GAAnH,CAAa0D,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQkC,GAAY,IAAQZ,IAAc,YAA6Ca,GAAa,IAAQ,EAAC,YAAY,WAAW,EAAE,SAASb,CAAW,EAAmCc,GAAa,IAAQd,IAAc,YAA6Ce,GAAa,IAAQf,IAAc,YAA6CgB,GAAOC,GAAU,EAAQC,GAAa,IAAQlB,IAAc,YAA6CmB,GAAa,IAAQ,EAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAASnB,CAAW,EAAmCoB,GAAa,IAAQ,EAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAASpB,CAAW,EAAmCqB,GAAa,IAAQrB,IAAc,YAA6CsB,GAAa,IAAQ,GAAC,YAAY,WAAW,EAAE,SAAStB,CAAW,EAAmCuB,GAAa,IAAQ,GAAC,YAAY,WAAW,EAAE,SAASvB,CAAW,EAAmCwB,GAAc,IAAQ,GAAC,YAAY,YAAY,YAAY,WAAW,EAAE,SAASxB,CAAW,EAAmCyB,GAAc,IAAQ,EAAC,YAAY,YAAY,YAAY,WAAW,EAAE,SAASzB,CAAW,EAAmC0B,GAAc,IAAQ1B,IAAc,YAA6C2B,GAAclG,GAAWuE,IAAc,YAAmBvE,EAAa,GAAO,OAAoBY,EAAKuF,GAAY,CAAC,GAAGjD,GAAUT,EAAgB,SAAsB7B,EAAKC,GAAS,CAAC,QAAQlB,GAAS,QAAQ,GAAM,SAAsBiB,EAAKR,GAAW,CAAC,MAAMN,GAAY,SAAsBsG,EAAMtF,EAAO,IAAI,CAAC,GAAGwD,GAAU,GAAGI,GAAgB,UAAUQ,GAAGD,GAAkB,iBAAiBhC,EAAUuB,EAAU,EAAE,mBAAmB,cAAc,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIxC,EAAW,MAAM,CAAC,gBAAgBoB,EAAU,GAAGZ,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,gBAAgB,qEAAqE,EAAE,UAAU,CAAC,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,gBAAgB,qEAAqE,CAAC,EAAE,GAAGvD,EAAqB,CAAC,UAAU,CAAC,mBAAmB,sBAAsB,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,EAAE,UAAU,CAAC,mBAAmB,iBAAiB,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,sBAAsB,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,EAAE,UAAU,CAAC,mBAAmB,mBAAmB,EAAE,UAAU,CAAC,mBAAmB,oBAAoB,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,oBAAoB,CAAC,EAAE8E,EAAYI,CAAc,EAAE,SAAS,CAACQ,GAAY,GAAgBiB,EAAMtF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiBkE,EAAiB,SAAS,YAAY,SAAS,CAAcoB,EAAMtF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,iBAAiBkE,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kBAAkB,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,gBAAgB,oBAAoB,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,CAAC,EAAE,SAAS,CAACI,GAAa,GAAgBxE,EAAKyF,EAAS,CAAC,sBAAsB,GAAK,SAAsBzF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,EAAE,SAAsBF,EAAKE,EAAO,OAAO,CAAC,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,QAAQ,YAAY,EAAE,iBAAiBkE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,gDAAgD,6BAA6B,MAAM,2CAA2CnB,CAAS,EAAE,KAAKV,EAAU,SAAS,CAAC,UAAU,CAAC,qBAAqB,uEAAuE,EAAE,UAAU,CAAC,qBAAqB,uEAAuE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG1D,EAAqB,CAAC,UAAU,CAAC,SAAsBmB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAsBF,EAAKE,EAAO,OAAO,CAAC,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAsBF,EAAKE,EAAO,OAAO,CAAC,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyD,EAAYI,CAAc,CAAC,CAAC,EAAe/D,EAAKyF,EAAS,CAAC,sBAAsB,GAAK,SAAsBzF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,EAAE,SAAS,mCAAmC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,MAAM,CAAC,OAAO,EAAE,iBAAiBkE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,gDAAgD,6BAA6B,sBAAsB,2CAA2ClB,CAAS,EAAE,KAAKV,EAAU,SAAS,CAAC,UAAU,CAAC,qBAAqB,uEAAuE,EAAE,UAAU,CAAC,qBAAqB,uEAAuE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG3D,EAAqB,CAAC,UAAU,CAAC,SAAsBmB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,mCAAmC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,EAAE,SAAS,mCAAmC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,mCAAmC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyD,EAAYI,CAAc,CAAC,CAAC,EAAEU,GAAa,GAAgBzE,EAAKyF,EAAS,CAAC,sBAAsB,GAAK,SAAsBzF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,EAAE,SAAsBF,EAAKE,EAAO,OAAO,CAAC,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,QAAQ,YAAY,EAAE,iBAAiBkE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,gDAAgD,6BAA6B,MAAM,2CAA2CnB,CAAS,EAAE,KAAKV,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAKyF,EAAS,CAAC,sBAAsB,GAAK,SAAsBzF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,wEAAwE,EAAE,SAAS,8HAA8H,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiBkE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,gDAAgD,6BAA6B,MAAM,2CAA2ClB,CAAS,EAAE,KAAKT,EAAU,SAAS,CAAC,UAAU,CAAC,qBAAqB,uEAAuE,EAAE,UAAU,CAAC,qBAAqB,uEAAuE,CAAC,EAAE,kBAAkB,SAAS,mBAAmB,GAAK,GAAG5D,EAAqB,CAAC,UAAU,CAAC,SAAsBmB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,8HAA8H,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,8HAA8H,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyD,EAAYI,CAAc,CAAC,CAAC,EAAEW,GAAa,GAAgB1E,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,iBAAiBkE,EAAiB,SAAS,YAAY,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,iBAAiBkE,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sEAAsE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAsBpE,EAAK0F,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4B3F,EAAK4F,EAA0B,CAAC,OAAO,IAAI,GAAG/G,EAAqB,CAAC,UAAU,CAAC,GAAGqD,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,OAAO,IAAI,OAAO,GAAG,EAAE,EAAE,EAAE,MAAM,GAAG,EAAE,GAAG,CAAC,EAAEyB,EAAYI,CAAc,EAAE,SAAsB/D,EAAK6F,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBzB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpE,EAAKlC,EAAU,CAAC,UAAU6H,EAAc,CAAC,EAAE,UAAU,GAAK,UAAU,kBAAkB,OAAO,OAAO,GAAG,YAAY,UAAU,oBAAoB,SAAS,YAAY,UAAU/C,EAAU,UAAU,MAAM,UAAU,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAG/D,EAAqB,CAAC,UAAU,CAAC,UAAU8G,EAAc,CAAC,CAAC,CAAC,EAAEhC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEc,GAAa,GAAgB7E,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,iBAAiBkE,EAAiB,SAAS,YAAY,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,iBAAiBkE,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sEAAsE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAsBpE,EAAK0F,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASI,GAA6B9F,EAAK4F,EAA0B,CAAC,OAAO,IAAI,GAAG/G,EAAqB,CAAC,UAAU,CAAC,GAAGqD,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,OAAO,EAAE,OAAO,GAAG,GAAG,EAAE,MAAM,GAAG,EAAE,CAAC,CAAC,EAAEyB,EAAYI,CAAc,EAAE,SAAsB/D,EAAK6F,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBzB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpE,EAAKlC,EAAU,CAAC,UAAUgI,EAAe,CAAC,EAAE,UAAU,GAAK,UAAU,kBAAkB,OAAO,OAAO,GAAG,YAAY,UAAU,oBAAoB,SAAS,YAAY,UAAUlD,EAAU,UAAU,MAAM,UAAU,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAG/D,EAAqB,CAAC,UAAU,CAAC,UAAUiH,EAAe,CAAC,CAAC,CAAC,EAAEnC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEe,GAAa,GAAgBU,EAAMtF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,iBAAiBkE,EAAiB,SAAS,YAAY,SAAS,CAACW,GAAa,GAAgB/E,EAAK0F,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASK,GAA6B/F,EAAK4F,EAA0B,CAAC,OAAO,IAAI,GAAG1D,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,OAAO,EAAE,OAAO,GAAG,GAAG,EAAE,MAAM,GAAG,SAAsBlC,EAAK6F,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBzB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpE,EAAKlC,EAAU,CAAC,UAAUiI,EAAe,CAAC,EAAE,UAAU,GAAK,UAAU,kBAAkB,OAAO,OAAO,GAAG,YAAY,UAAU,oBAAoB,SAAS,YAAY,UAAUnD,EAAU,UAAU,MAAM,UAAU,EAAE,QAAQE,EAAU,MAAM,OAAO,GAAGjE,EAAqB,CAAC,UAAU,CAAC,UAAUgE,CAAS,CAAC,EAAEc,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiB,GAAa,GAAgBhF,EAAK0F,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASM,GAA6BhG,EAAK4F,EAA0B,CAAC,GAAG/G,EAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,GAAGqD,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,OAAO,EAAE,QAAQ,GAAG,GAAG,EAAE,EAAE,IAAI,GAAG,CAAC,CAAC,EAAEyB,EAAYI,CAAc,EAAE,SAAsB/D,EAAK6F,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBzB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpE,EAAKlC,EAAU,CAAC,UAAUkI,EAAe,CAAC,EAAE,UAAU,GAAK,UAAU,kBAAkB,OAAO,OAAO,GAAG,YAAY,UAAU,oBAAoB,SAAS,YAAY,UAAUpD,EAAU,UAAU,MAAM,UAAU,EAAE,QAAQE,EAAU,MAAM,OAAO,GAAGjE,EAAqB,CAAC,UAAU,CAAC,UAAUmH,EAAe,CAAC,CAAC,CAAC,EAAErC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEU,GAAa,GAAgBzE,EAAK0F,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASO,GAA6BjG,EAAK4F,EAA0B,CAAC,GAAG/G,EAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,GAAGqD,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,OAAO,GAAG,GAAG,EAAE,MAAM,EAAE,CAAC,EAAEyB,EAAYI,CAAc,EAAE,SAAsB/D,EAAK6F,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBzB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpE,EAAKlC,EAAU,CAAC,UAAUmI,EAAe,CAAC,EAAE,UAAU,GAAK,UAAU,kBAAkB,OAAO,OAAO,GAAG,YAAY,UAAU,oBAAoB,SAAS,YAAY,UAAUrD,EAAU,UAAU,MAAM,UAAU,EAAE,QAAQE,EAAU,MAAM,OAAO,GAAGjE,EAAqB,CAAC,UAAU,CAAC,UAAUoH,EAAe,CAAC,CAAC,CAAC,EAAEtC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkB,GAAa,GAAgBjF,EAAK0F,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASQ,GAA6BlG,EAAK4F,EAA0B,CAAC,GAAG/G,EAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,GAAGqD,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,OAAO,GAAG,GAAG,EAAE,EAAE,MAAM,EAAE,EAAE,UAAU,CAAC,OAAO,IAAI,GAAGA,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,OAAO,GAAG,GAAG,EAAE,EAAE,MAAM,EAAE,CAAC,EAAEyB,EAAYI,CAAc,EAAE,SAAsB/D,EAAK6F,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBzB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpE,EAAKlC,EAAU,CAAC,UAAUoI,EAAe,CAAC,EAAE,UAAU,GAAK,UAAU,kBAAkB,OAAO,OAAO,GAAG,YAAY,UAAU,oBAAoB,SAAS,YAAY,UAAUtD,EAAU,UAAU,MAAM,UAAU,EAAE,QAAQE,EAAU,MAAM,OAAO,GAAGjE,EAAqB,CAAC,UAAU,CAAC,UAAUgE,CAAS,EAAE,UAAU,CAAC,UAAUqD,EAAe,CAAC,CAAC,CAAC,EAAEvC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmB,GAAa,GAAgBlF,EAAK4F,EAA0B,CAAC,SAAsB5F,EAAK6F,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiBzB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpE,EAAKhC,GAAS,CAAC,YAAY,sEAAsE,aAAa,EAAE,iBAAiBmI,EAAkB,KAAKpE,CAAY,GAAG,2BAA2B,KAAK,uEAAuE,SAAS,GAAG,WAAW,IAAI,OAAO,OAAO,qBAAqB,sEAAsE,eAAe,wEAAwE,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,UAAU,GAAM,UAAU,wEAAwE,KAAK,sEAAsE,MAAMoE,EAAkB,KAAKpE,CAAY,GAAG,WAAW,UAAU,GAAM,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiD,GAAa,GAAgBhF,EAAK4F,EAA0B,CAAC,GAAG/G,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,SAASqD,GAAmB,OAAO,mCAAmC,GAAGA,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,OAAO,EAAE,QAAQ,GAAG,GAAG,EAAE,EAAE,IAAI,GAAG,GAAG,CAAC,EAAEyB,EAAYI,CAAc,EAAE,SAAsB/D,EAAK6F,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBzB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpE,EAAK9B,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEuG,GAAa,GAAgBzE,EAAK4F,EAA0B,CAAC,GAAG/G,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,UAAUqD,GAAmB,OAAO,+CAA+C,GAAGA,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,OAAO,GAAG,GAAG,EAAE,KAAK,CAAC,EAAEyB,EAAYI,CAAc,EAAE,SAAsB/D,EAAK6F,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBzB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpE,EAAK9B,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesH,EAAMtF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBkE,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,CAAC,EAAE,SAAS,CAACe,GAAc,GAAgBnF,EAAK4F,EAA0B,CAAC,SAAsB5F,EAAK6F,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBzB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpE,EAAK5B,EAAQ,CAAC,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,MAAM,GAAK,SAAS,YAAY,KAAK,MAAM,WAAW,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,iBAAiB,cAAc,EAAE,eAAe,EAAE,IAAI+H,EAAkB,KAAKpE,CAAY,GAAG,+BAA+B,MAAM,OAAO,GAAGlD,EAAqB,CAAC,UAAU,CAAC,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,KAAK8D,EAAU,cAAc,GAAG,eAAe,GAAG,IAAID,CAAS,EAAE,UAAU,CAAC,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,MAAM,GAAM,KAAKC,EAAU,cAAc,GAAG,eAAe,GAAG,IAAID,CAAS,EAAE,UAAU,CAAC,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,MAAM,GAAM,KAAKC,EAAU,MAAM,CAAC,OAAO,OAAO,SAAS,OAAO,MAAM,MAAM,EAAE,cAAc,GAAG,eAAe,GAAG,IAAID,CAAS,EAAE,UAAU,CAAC,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,KAAKC,EAAU,cAAc,GAAG,eAAe,GAAG,IAAID,CAAS,CAAC,EAAEiB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqB,GAAc,GAAgBpF,EAAKoG,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BnE,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,OAAO,EAAE,OAAO,GAAG,MAAM,CAAC,EAAE,MAAM,YAAYA,GAAmB,OAAO,mDAAmDA,GAAmB,OAAO,mDAAmD,GAAG/C,EAAkB4D,CAAS,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiBqB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,GAAGvF,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQwH,GAA2BnE,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,OAAO,GAAG,GAAG,MAAM,CAAC,EAAE,MAAM,QAAQA,GAAmB,OAAO,yBAAyB,GAAG/C,EAAkB4D,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQsD,GAA2BnE,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,OAAO,EAAE,QAAQ,GAAG,GAAG,IAAI,CAAC,EAAE,MAAM,oBAAoBA,GAAmB,OAAO,gCAAgC,GAAG/C,EAAkB4D,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQsD,GAA2BnE,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,OAAO,EAAE,QAAQ,GAAG,GAAG,MAAM,CAAC,EAAE,MAAM,oBAAoBA,GAAmB,OAAO,gCAAgC,GAAG/C,EAAkB4D,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQsD,GAA2BnE,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,OAAO,GAAG,MAAM,CAAC,EAAE,MAAM,YAAYA,GAAmB,OAAO,mDAAmDA,GAAmB,OAAO,mDAAmD,GAAG/C,EAAkB4D,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQsD,GAA2BnE,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,OAAO,GAAG,GAAG,MAAM,CAAC,EAAE,MAAM,oBAAoBA,GAAmB,OAAO,gCAAgC,GAAG/C,EAAkB4D,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQsD,GAA2BnE,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,OAAO,GAAG,GAAG,MAAM,CAAC,EAAE,MAAM,QAAQA,GAAmB,OAAO,yBAAyB,GAAG/C,EAAkB4D,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQsD,GAA2BnE,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,OAAO,EAAE,KAAK,GAAG,GAAG,CAAC,EAAE,MAAM,YAAYA,GAAmB,OAAO,mDAAmDA,GAAmB,OAAO,mDAAmD,GAAG/C,EAAkB4D,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQsD,GAA2BnE,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,OAAO,EAAE,OAAO,GAAG,MAAM,CAAC,EAAE,MAAM,YAAYA,GAAmB,OAAO,mDAAmDA,GAAmB,OAAO,mDAAmD,GAAG/C,EAAkB4D,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,CAAC,EAAEY,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsB,GAAc,GAAgBrF,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiBkE,EAAiB,SAAS,YAAY,SAAsBoB,EAAMtF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBkE,EAAiB,SAAS,YAAY,SAAS,CAAcoB,EAAMtF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiBkE,EAAiB,SAAS,YAAY,SAAS,CAAcoB,EAAMtF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,8BAA8B,iBAAiBkE,EAAiB,SAAS,YAAY,SAAS,CAAcoB,EAAMtF,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBkE,EAAiB,SAAS,YAAY,SAAS,CAAcpE,EAAKyF,EAAS,CAAC,sBAAsB,GAAK,SAAsBzF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,EAAE,SAAS,mCAAmC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,MAAM,CAAC,OAAO,EAAE,iBAAiBkE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,gDAAgD,6BAA6B,sBAAsB,2CAA2ClB,CAAS,EAAE,KAAKV,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAexC,EAAKyF,EAAS,CAAC,sBAAsB,GAAK,SAAsBzF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,EAAE,SAAsBF,EAAKE,EAAO,OAAO,CAAC,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,QAAQ,YAAY,EAAE,iBAAiBkE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,gDAAgD,6BAA6B,MAAM,2CAA2CnB,CAAS,EAAE,KAAKV,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKyF,EAAS,CAAC,sBAAsB,GAAK,SAASU,EAAkB,KAAKpE,CAAY,GAAgB/B,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,qKAAqK,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,sKAAsK,MAAM,CAAC,OAAO,EAAE,iBAAiBkE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGvF,EAAqB,CAAC,UAAU,CAAC,KAAK4D,CAAS,CAAC,EAAEkB,EAAYI,CAAc,CAAC,CAAC,EAAEuB,GAAcnC,CAAS,GAAgBqC,EAAMtF,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBkE,EAAiB,SAAS,YAAY,SAAS,CAAcpE,EAAK4F,EAA0B,CAAC,OAAO,IAAI,GAAG/G,EAAqB,CAAC,UAAU,CAAC,MAAM,oBAAoBqD,GAAmB,OAAO,qEAAqE,GAAGA,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,QAAQ,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,CAAC,CAAC,EAAEyB,EAAYI,CAAc,EAAE,SAAsB/D,EAAK6F,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBzB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpE,EAAK1B,EAAuB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,GAAG,SAAS,YAAY,UAAU,eAAe,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAUe,GAAY,CAAC,IAAI,qEAAqE,OAAO,mKAAmK,EAAE,EAAE,EAAE,MAAM,OAAO,UAAU8G,EAAkB,KAAKpE,CAAY,GAAG,qCAAqC,UAAU,GAAM,UAAU,GAAG,GAAGlD,EAAqB,CAAC,UAAU,CAAC,UAAUM,EAAkBkE,CAAS,EAAE,UAAUD,CAAS,CAAC,EAAEO,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/D,EAAK4F,EAA0B,CAAC,OAAO,IAAI,GAAG/G,EAAqB,CAAC,UAAU,CAAC,MAAM,oBAAoBqD,GAAmB,OAAO,qEAAqE,GAAGA,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,QAAQ,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,GAAG,CAAC,EAAEyB,EAAYI,CAAc,EAAE,SAAsB/D,EAAK6F,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBzB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpE,EAAK1B,EAAuB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,GAAG,SAAS,YAAY,UAAU,eAAe,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAUe,GAAY,CAAC,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,EAAE,EAAE,MAAM,OAAO,UAAU8G,EAAkB,KAAKpE,CAAY,GAAG,8BAA8B,UAAU,GAAM,UAAU,GAAG,GAAGlD,EAAqB,CAAC,UAAU,CAAC,UAAUM,EAAkBoE,EAAS,EAAE,UAAUD,EAAS,CAAC,EAAEK,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/D,EAAK4F,EAA0B,CAAC,OAAO,IAAI,GAAG/G,EAAqB,CAAC,UAAU,CAAC,MAAM,oBAAoBqD,GAAmB,OAAO,qEAAqE,GAAGA,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,QAAQ,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,GAAG,CAAC,EAAEyB,EAAYI,CAAc,EAAE,SAAsB/D,EAAK6F,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBzB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpE,EAAK1B,EAAuB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,GAAG,SAAS,YAAY,UAAU,eAAe,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAUe,GAAY,CAAC,IAAI,qEAAqE,OAAO,mKAAmK,EAAE,EAAE,EAAE,MAAM,OAAO,UAAU8G,EAAkB,KAAKpE,CAAY,GAAG,sBAAsB,UAAU,GAAM,UAAU,GAAG,GAAGlD,EAAqB,CAAC,UAAU,CAAC,UAAUM,EAAkBsE,EAAS,EAAE,UAAUD,EAAS,CAAC,EAAEG,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/D,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBkE,EAAiB,SAAS,YAAY,SAAsBpE,EAAK0F,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASY,GAA6BtG,EAAK4F,EAA0B,CAAC,OAAO,IAAI,GAAG/G,EAAqB,CAAC,UAAU,CAAC,GAAGqD,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,QAAQ,GAAG,EAAE,EAAE,EAAE,EAAE,MAAM,CAAC,CAAC,EAAEyB,EAAYI,CAAc,EAAE,SAAsB/D,EAAK6F,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBzB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpE,EAAKlC,EAAU,CAAC,UAAUwI,EAAe,CAAC,EAAE,UAAU,GAAK,UAAU,kBAAkB,OAAO,OAAO,GAAG,YAAY,UAAU,oBAAoB,SAAS,YAAY,UAAU1D,EAAU,UAAU,MAAM,UAAU,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAG/D,EAAqB,CAAC,UAAU,CAAC,UAAUyH,EAAe,CAAC,CAAC,CAAC,EAAE3C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/D,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,iBAAiBkE,EAAiB,SAAS,YAAY,SAAsBpE,EAAKoG,GAAM,CAAC,WAAW,CAAC,IAAI,gEAAgE,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,MAAM,SAAS,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,UAAU,gBAAgB,mBAAmB,mBAAmB,iBAAiBhC,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,GAAGvF,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQwH,GAA2BnE,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,QAAQ,GAAG,EAAE,EAAE,SAAS,GAAG,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,iBAAiBA,GAAmB,OAAO,sDAAsD,GAAG/C,EAAkB4D,CAAS,EAAM,UAAU,OAAO,UAAU,QAAS,CAAC,CAAC,EAAEY,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQwC,GAAI,CAAC,kFAAkF,kFAAkF,kQAAkQ,4RAA4R,qSAAqS,8KAA8K,iOAAiO,2VAA2V,gRAAgR,oYAAoY,sRAAsR,uGAAuG,uGAAuG,2UAA2U,2GAA2G,mLAAmL,+RAA+R,iSAAiS,2SAA2S,4RAA4R,uRAAuR,oKAAoK,2UAA2U,gOAAgO,oRAAoR,+RAA+R,gMAAgM,40GAA40G,6PAA6P,gLAAgL,sWAAsW,wKAAwK,4NAA4N,qbAAqb,qbAAqb,8DAA8D,8JAA8J,8DAA8D,8DAA8D,wEAAwE,+FAA+F,yGAAyG,sHAAsH,gIAAgI,mIAAmI,+NAA+N,+tBAA+tB,gHAAgH,sHAAsH,8FAA8F,kKAAkK,6OAA6O,0FAA0F,ubAAub,gLAAgL,wKAAwK,mbAAmb,kFAAkF,8LAA8L,qLAAqL,4FAA4F,mLAAmL,+aAA+a,+GAA+G,yKAAyK,ubAAub,+EAA+E,iFAAiF,sHAAsH,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,EAAG,EASx91DC,EAAgBC,GAAQlF,GAAUgF,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,aAAaA,EAAgB,aAAa,CAAC,OAAO,MAAM,MAAM,IAAI,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,cAAc,YAAY,qBAAqB,mBAAmB,mBAAmB,mBAAmB,oBAAoB,kBAAkB,iBAAiB,eAAe,uBAAuB,qBAAqB,mBAAmB,iBAAiB,sBAAsB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,WAAW,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,oCAAoC,gBAAgB,GAAM,MAAM,SAAS,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,+HAA+H,gBAAgB,GAAM,MAAM,OAAO,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,+BAA+B,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAUrI,IAAkB,MAAS,CAAC,GAAGA,GAAgB,KAAQ,aAAa,MAAM,YAAY,OAAU,OAAO,OAAU,MAAM,UAAU,EAAE,UAAU,CAAC,aAAa,cAAc,gBAAgB,GAAM,MAAM,eAAe,KAAKqI,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,cAAc,KAAKA,EAAY,IAAI,EAAE,UAAUnI,IAAoB,SAAY,CAAC,GAAGA,GAAkB,QAAW,aAAa,YAAY,YAAY,OAAU,OAAO,OAAU,MAAM,gBAAgB,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKmI,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,+FAA+F,MAAM,aAAa,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,aAAa,sEAAsE,MAAM,uBAAuB,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,aAAa,qEAAqE,MAAM,eAAe,KAAKA,EAAY,KAAK,CAAC,CAAC,EAAEC,GAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG5I,GAAe,GAAGG,GAAc,GAAGE,GAAmB,GAAGE,GAAa,GAAGE,GAA4B,GAAGyI,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "FIpDQAnJQ_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v0", "v1", "v2", "v3", "p", "x", "motion", "v4", "v5", "v6", "__FramerMetadata__", "FIpDQAnJQ_1_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v0", "v1", "v2", "v3", "p", "x", "motion", "__FramerMetadata__", "valuesByLocaleId", "FIpDQAnJQ_1_exports", "FIpDQAnJQ_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "CTAButtonFonts", "getFonts", "IHkrv6XwY_default", "DownloadFonts", "Download", "G2ReviewStarsFonts", "R1WGxzBsl_default", "YouTubeFonts", "Youtube", "CardsFeatureCardSimpleFonts", "zpDsQcdPz_default", "YouTubeControls", "getPropertyControls", "CTAButtonControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "addImageAlt", "image", "alt", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "autoplay", "background", "buttonLink", "buttonTitle", "buttonVariant", "colorLittleTitle", "colorText", "header", "height", "id", "text", "title", "video", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "KPjxFNlaz", "JmBw9H9W9", "N5NUJgIAk", "Suc2UQmmN", "OU45l6djO", "wKT3XUDmM", "aQ7Ty4eXB", "JSdiJo_Nx", "DwJcVi9YA", "qtSsR_EOG", "TPdudkI8B", "ggDw6F18T", "JnYZwWYuZ", "MMeDJfkIh", "LNHzFowWB", "ODUJ_zsgO", "hEsbgnjj_", "gZ1KusEWY", "ClcjkoKSl", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "router", "useRouter", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "LayoutGroup", "u", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "getLocalizedValue", "Image2", "getLoadingLazyAtYPosition", "resolvedLinks6", "css", "FramerFIpDQAnJQ", "withCSS", "FIpDQAnJQ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
