{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/x6S0MGeufOrHQ3Ta07pL/Vg7OWp6S3vPmT0lnXw2e/HoverOverrides.js", "ssg:https://framerusercontent.com/modules/4C5THDTEXNL7VaaboObZ/jnL4ezjlwvI1DlenwliH/MynA46gwi.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 e}from\"react/jsx-runtime\";export function withDarken(r){return t=>/*#__PURE__*/e(r,{...t,whileHover:{filter:\"brightness(0.95)\"}});}export function withScaleUpAndDarken(r){return t=>/*#__PURE__*/e(r,{...t,whileHover:{filter:\"brightness(0.95)\",scale:4}});}export function withUnderline(r){return t=>/*#__PURE__*/e(r,{...t,whileHover:{borderBottom:\"1px solid white\"}});}\nexport const __FramerMetadata__ = {\"exports\":{\"withDarken\":{\"type\":\"reactHoc\",\"name\":\"withDarken\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withScaleUpAndDarken\":{\"type\":\"reactHoc\",\"name\":\"withScaleUpAndDarken\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withUnderline\":{\"type\":\"reactHoc\",\"name\":\"withUnderline\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HoverOverrides.map", "// Generated by Framer (0e7701b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import{withDarken}from\"#framer/local/codeFile/dx8pf2Q/HoverOverrides.js\";import metadataProvider from\"#framer/local/webPageMetadata/MynA46gwi/MynA46gwi.js\";const YouTubeFonts=getFonts(YouTube);const MotionDivWithDarkenfi8xjf=withCodeBoundaryForOverrides(motion.div,{nodeId:\"YnFCPzyjy\",override:withDarken,scopeId:\"MynA46gwi\"});const MotionDivWithDarken2ldyjr=withCodeBoundaryForOverrides(motion.div,{nodeId:\"LA6pWrjJT\",override:withDarken,scopeId:\"MynA46gwi\"});const MotionDivWithDarken1eoh99m=withCodeBoundaryForOverrides(motion.div,{nodeId:\"f_Z2ntO8z\",override:withDarken,scopeId:\"MynA46gwi\"});const MotionDivWithDarkenvahp98=withCodeBoundaryForOverrides(motion.div,{nodeId:\"bR1b2z0j9\",override:withDarken,scopeId:\"MynA46gwi\"});const MotionDivWithDarken4pyb7q=withCodeBoundaryForOverrides(motion.div,{nodeId:\"VRFgJ6CVE\",override:withDarken,scopeId:\"MynA46gwi\"});const MotionDivWithDarkenhiufks=withCodeBoundaryForOverrides(motion.div,{nodeId:\"e4l96i5F9\",override:withDarken,scopeId:\"MynA46gwi\"});const MotionDivWithDarkenkq53h7=withCodeBoundaryForOverrides(motion.div,{nodeId:\"E5w516zxm\",override:withDarken,scopeId:\"MynA46gwi\"});const breakpoints={LMPiPU9i0:\"(min-width: 1425px) and (max-width: 1739px)\",O4gK42209:\"(min-width: 1740px)\",XF8VP8QC9:\"(min-width: 768px) and (max-width: 1424px)\",XpkPuxLAO:\"(min-width: 425px) and (max-width: 767px)\",yqVENkJ4b:\"(max-width: 349px)\",z6Pszjp1B:\"(min-width: 350px) and (max-width: 424px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-1c5Lu\";const variantClassNames={LMPiPU9i0:\"framer-v-o2y5gx\",O4gK42209:\"framer-v-fen76\",XF8VP8QC9:\"framer-v-1fp7298\",XpkPuxLAO:\"framer-v-1elkock\",yqVENkJ4b:\"framer-v-11vfb5j\",z6Pszjp1B:\"framer-v-19c9ypv\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Mobile L\":\"XpkPuxLAO\",\"Mobile M\":\"z6Pszjp1B\",\"Mobile S\":\"yqVENkJ4b\",\"Wide screen\":\"O4gK42209\",Desktop:\"LMPiPU9i0\",Tablet:\"XF8VP8QC9\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"LMPiPU9i0\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"Sv2GfnfL2\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"XpkPuxLAO\",\"z6Pszjp1B\",\"yqVENkJ4b\"].includes(baseVariant))return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"LMPiPU9i0\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-o2y5gx\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y8ss94\",\"data-framer-name\":\"Highlights\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mdyl54\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O4gK42209:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9hbi1yZWd1bGFy\",\"--framer-font-family\":'\"Joan\", \"Joan Placeholder\", serif',\"--framer-font-size\":\"60px\",\"--framer-text-alignment\":\"left\"},children:\"The Light AI Symposium\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9hbi1yZWd1bGFy\",\"--framer-font-family\":'\"Joan\", \"Joan Placeholder\", serif',\"--framer-font-size\":\"60px\",\"--framer-text-alignment\":\"left\"},children:\"What does the future hold?\"})]})},XpkPuxLAO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"25px\"},children:\"The Light AI Symposium: \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"28px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"23px\"},children:\"What does the future hold?\"})]})}),fonts:[\"Inter-Medium\"]},yqVENkJ4b:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9hbi1yZWd1bGFy\",\"--framer-font-family\":'\"Joan\", \"Joan Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"left\"},children:\"The Light AI Symposium\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9hbi1yZWd1bGFy\",\"--framer-font-family\":'\"Joan\", \"Joan Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"left\"},children:\"What does the future hold?\"})]})},z6Pszjp1B:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9hbi1yZWd1bGFy\",\"--framer-font-family\":'\"Joan\", \"Joan Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"left\"},children:\"The Light AI Symposium\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9hbi1yZWd1bGFy\",\"--framer-font-family\":'\"Joan\", \"Joan Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"left\"},children:\"What does the future hold?\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9hbi1yZWd1bGFy\",\"--framer-font-family\":'\"Joan\", \"Joan Placeholder\", serif',\"--framer-font-size\":\"50px\",\"--framer-text-alignment\":\"left\"},children:\"The Light AI Symposium\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9hbi1yZWd1bGFy\",\"--framer-font-family\":'\"Joan\", \"Joan Placeholder\", serif',\"--framer-font-size\":\"50px\",\"--framer-text-alignment\":\"left\"},children:\"What does the future hold?\"})]}),className:\"framer-xhbl81\",fonts:[\"GF;Joan-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u3vi3e\",\"data-framer-name\":\"Logos\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O4gK42209:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42,intrinsicWidth:868,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+150+0+150+770+0+0),pixelHeight:84,pixelWidth:1736,sizes:`min(${componentViewport?.width||\"100vw\"} * 0.8, 1145px)`,src:\"https://framerusercontent.com/images/HjTRkHh99z3ABYyS2WIQnvsj93A.svg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/HjTRkHh99z3ABYyS2WIQnvsj93A.svg?scale-down-to=512 512w,https://framerusercontent.com/images/HjTRkHh99z3ABYyS2WIQnvsj93A.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HjTRkHh99z3ABYyS2WIQnvsj93A.svg 1736w\"}},XF8VP8QC9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42,intrinsicWidth:868,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+150+0+150+170+0+0),pixelHeight:84,pixelWidth:1736,sizes:`min(${componentViewport?.width||\"100vw\"} * 0.8, ${componentViewport?.width||\"100vw\"})`,src:\"https://framerusercontent.com/images/HjTRkHh99z3ABYyS2WIQnvsj93A.svg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/HjTRkHh99z3ABYyS2WIQnvsj93A.svg?scale-down-to=512 512w,https://framerusercontent.com/images/HjTRkHh99z3ABYyS2WIQnvsj93A.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HjTRkHh99z3ABYyS2WIQnvsj93A.svg 1736w\"}},XpkPuxLAO:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42,intrinsicWidth:868,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+150+0+0+200+0+0),pixelHeight:84,pixelWidth:1736,sizes:`min(${componentViewport?.width||\"100vw\"} * 0.8, 1145px)`,src:\"https://framerusercontent.com/images/HjTRkHh99z3ABYyS2WIQnvsj93A.svg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/HjTRkHh99z3ABYyS2WIQnvsj93A.svg?scale-down-to=512 512w,https://framerusercontent.com/images/HjTRkHh99z3ABYyS2WIQnvsj93A.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HjTRkHh99z3ABYyS2WIQnvsj93A.svg 1736w\"}},yqVENkJ4b:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42,intrinsicWidth:868,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+150+0+0+290+0+0),pixelHeight:84,pixelWidth:1736,sizes:`min(${componentViewport?.width||\"100vw\"} * 0.8, 1145px)`,src:\"https://framerusercontent.com/images/HjTRkHh99z3ABYyS2WIQnvsj93A.svg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/HjTRkHh99z3ABYyS2WIQnvsj93A.svg?scale-down-to=512 512w,https://framerusercontent.com/images/HjTRkHh99z3ABYyS2WIQnvsj93A.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HjTRkHh99z3ABYyS2WIQnvsj93A.svg 1736w\"}},z6Pszjp1B:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42,intrinsicWidth:868,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+150+0+0+290+0+0),pixelHeight:84,pixelWidth:1736,sizes:`min(${componentViewport?.width||\"100vw\"} * 0.792, 1145px)`,src:\"https://framerusercontent.com/images/HjTRkHh99z3ABYyS2WIQnvsj93A.svg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/HjTRkHh99z3ABYyS2WIQnvsj93A.svg?scale-down-to=512 512w,https://framerusercontent.com/images/HjTRkHh99z3ABYyS2WIQnvsj93A.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HjTRkHh99z3ABYyS2WIQnvsj93A.svg 1736w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42,intrinsicWidth:868,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+150+170+0+0),pixelHeight:84,pixelWidth:1736,sizes:`min(${componentViewport?.width||\"100vw\"} * 0.8, 1145px)`,src:\"https://framerusercontent.com/images/HjTRkHh99z3ABYyS2WIQnvsj93A.svg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/HjTRkHh99z3ABYyS2WIQnvsj93A.svg?scale-down-to=512 512w,https://framerusercontent.com/images/HjTRkHh99z3ABYyS2WIQnvsj93A.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HjTRkHh99z3ABYyS2WIQnvsj93A.svg 1736w\"},className:\"framer-dy2uxu\",\"data-framer-name\":\"Frame_3055\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19t4vv2\",\"data-framer-name\":\"Welcome Europe\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qcycyv hidden-1elkock hidden-19c9ypv hidden-11vfb5j\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XF8VP8QC9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\"},children:\"This symposium wasn't just about hosting the AI conversation \u2014 it was an opportunity to engage in meaningful discussions, connect with like-minded individuals, and collectively shape the direction of AI in Europe.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\"},children:\"This symposium wasn't just about hosting the AI conversation \u2014 it was an opportunity to engage in meaningful discussions, connect with like-minded individuals, and collectively shape the direction of AI in Europe.\"})}),className:\"framer-1tzdwud\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(MotionDivWithDarkenfi8xjf,{className:\"framer-fi8xjf\",\"data-framer-name\":\"Poster\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4fawpy-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NJbp8C_bH\",rendersWithMotion:true,scopeId:\"MynA46gwi\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"NJbp8C_bH\",isMixedBorderRadius:false,isRed:true,layoutId:\"NJbp8C_bH\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?time_continue=1&v=rGNsp6UtouQ&embeds_referring_euri=https://light.inc/&source_ve_path=Mjg2NjY\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-183dz1z\",\"data-framer-name\":\"Description\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XF8VP8QC9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"110%\"},children:\"Welcome: Europe, technology and progress\"})})},XpkPuxLAO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"110%\"},children:\"Welcome: Europe, technology and progress\"})})},yqVENkJ4b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"110%\"},children:\"Welcome: Europe, technology and progress\"})})},z6Pszjp1B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"110%\"},children:\"Welcome: Europe, technology and progress\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"110%\"},children:\"Welcome: Europe, technology and progress\"})}),className:\"framer-1qvftv0\",\"data-framer-name\":\"Join us on the 9th October at the Ny Carlsberg Glyptotek.\",fonts:[\"GF;Arial-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XF8VP8QC9:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtNzAw\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"100%\"},children:\"Clement Kjersgaard\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\"},children:\"Host, journalist and editor-in-chief\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\"},children:\"R\\xc6SON\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtNzAw\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"100%\"},children:\"Clement Kjersgaard\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"100%\"},children:\"Host, journalist and editor-in-chief\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"100%\"},children:\"R\\xc6SON\"})]}),className:\"framer-1tz7yuj\",\"data-framer-name\":\"Dr. Sebastian Wieczorek Vice President of AI Technology & Global Lead of AI Ethics SAP\",fonts:[\"GF;Arial-700\",\"GF;Arial-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m6egcy\",\"data-framer-name\":\"Video set 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-42atfj\",\"data-framer-name\":\"Generative AI\",children:[/*#__PURE__*/_jsx(MotionDivWithDarken2ldyjr,{className:\"framer-2ldyjr\",\"data-framer-name\":\"Poster\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-noi4ud-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GNmxLavIK\",rendersWithMotion:true,scopeId:\"MynA46gwi\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"GNmxLavIK\",isMixedBorderRadius:false,isRed:true,layoutId:\"GNmxLavIK\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=TTBmg5nxshA\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-101p0yc\",\"data-framer-name\":\"Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"110%\"},children:[\"Generative Artificial Intelligence: Where from?\",/*#__PURE__*/_jsx(\"br\",{}),\"Where to?\"]})}),className:\"framer-4y6hch\",\"data-framer-name\":\"Join us on the 9th October at the Ny Carlsberg Glyptotek.\",fonts:[\"GF;Arial-regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtNzAw\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"100%\"},children:\"Professor Anders S\\xf8gaard\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\"},children:\"Professor in NLP and Machine Learning\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\"},children:\"University of Copenhagen\"})]}),className:\"framer-w52kes\",\"data-framer-name\":\"Dr. Sebastian Wieczorek Vice President of AI Technology & Global Lead of AI Ethics SAP\",fonts:[\"GF;Arial-700\",\"GF;Arial-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1clr71d\",\"data-framer-name\":\"Shaping the future\",children:[/*#__PURE__*/_jsx(MotionDivWithDarken1eoh99m,{className:\"framer-1eoh99m\",\"data-framer-name\":\"Poster\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-saxsk-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZnnswTF07\",rendersWithMotion:true,scopeId:\"MynA46gwi\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"ZnnswTF07\",isMixedBorderRadius:false,isRed:true,layoutId:\"ZnnswTF07\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=f_NTwWMfa4M&ab_channel=Light\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e1xit6\",\"data-framer-name\":\"Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"110%\"},children:\"Shaping the future: Humanity and AI\u2019s opportunities and challenges\"})}),className:\"framer-1lkvhj4\",\"data-framer-name\":\"Join us on the 9th October at the Ny Carlsberg Glyptotek.\",fonts:[\"GF;Arial-regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtNzAw\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"100%\"},children:\"Namik Hrle\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\"},children:\"IBM Fellow, Vice President of Data & AI\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\"},children:\"IBM\"})]}),className:\"framer-1xiksm0\",\"data-framer-name\":\"Dr. Sebastian Wieczorek Vice President of AI Technology & Global Lead of AI Ethics SAP\",fonts:[\"GF;Arial-700\",\"GF;Arial-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cs7wnz\",\"data-framer-name\":\"Video set 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5ekewk\",\"data-framer-name\":\"Generative AI\",children:[/*#__PURE__*/_jsx(MotionDivWithDarkenvahp98,{className:\"framer-vahp98\",\"data-framer-name\":\"Poster\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t82u42-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"KKdS2v93E\",rendersWithMotion:true,scopeId:\"MynA46gwi\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"KKdS2v93E\",isMixedBorderRadius:false,isRed:true,layoutId:\"KKdS2v93E\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=khgRyQFYHoo&ab_channel=Light\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15ijx6g\",\"data-framer-name\":\"Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"110%\"},children:\"AI and the future of industry in Europe\"})}),className:\"framer-9sp9ob\",\"data-framer-name\":\"Join us on the 9th October at the Ny Carlsberg Glyptotek.\",fonts:[\"GF;Arial-regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtNzAw\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"100%\"},children:\"Dr. Sebastian Wieczorek\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\"},children:\"Vice President of AI Technology & Global Lead of AI Ethics\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\"},children:\"SAP\"})]}),className:\"framer-1c7ucdl\",\"data-framer-name\":\"Dr. Sebastian Wieczorek Vice President of AI Technology & Global Lead of AI Ethics SAP\",fonts:[\"GF;Arial-700\",\"GF;Arial-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m4g4vm\",\"data-framer-name\":\"Shaping the future\",children:[/*#__PURE__*/_jsx(MotionDivWithDarken4pyb7q,{className:\"framer-4pyb7q\",\"data-framer-name\":\"Poster\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ebw0dc-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"zb1seryPt\",rendersWithMotion:true,scopeId:\"MynA46gwi\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"zb1seryPt\",isMixedBorderRadius:false,isRed:true,layoutId:\"zb1seryPt\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=wlbw7u_Cg8I&ab_channel=Light\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1st2cgq\",\"data-framer-name\":\"Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"110%\"},children:\"The future of products: Deploying and adopting trusted AI for enterprises\"})}),className:\"framer-ig4no7\",\"data-framer-name\":\"Join us on the 9th October at the Ny Carlsberg Glyptotek.\",fonts:[\"GF;Arial-regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtNzAw\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"100%\"},children:\"Kenneth Jakobsen\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\"},children:\"Chief Customer Officer, EMEA\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\"},children:\"Salesforce\"})]}),className:\"framer-1jxvqt0\",\"data-framer-name\":\"Dr. Sebastian Wieczorek Vice President of AI Technology & Global Lead of AI Ethics SAP\",fonts:[\"GF;Arial-700\",\"GF;Arial-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uuxa5n\",\"data-framer-name\":\"Video set 3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nt0wae\",\"data-framer-name\":\"Shaping the future\",children:[/*#__PURE__*/_jsx(MotionDivWithDarkenhiufks,{className:\"framer-hiufks\",\"data-framer-name\":\"Poster\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rpz2sf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"lQwnrFSk5\",rendersWithMotion:true,scopeId:\"MynA46gwi\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"lQwnrFSk5\",isMixedBorderRadius:false,isRed:true,layoutId:\"lQwnrFSk5\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=XRrgIEcIl2U\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f3actb\",\"data-framer-name\":\"Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"110%\"},children:\"A new design paradigm for the human-silicon interface\"})}),className:\"framer-stuixu\",\"data-framer-name\":\"Join us on the 9th October at the Ny Carlsberg Glyptotek.\",fonts:[\"GF;Arial-regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtNzAw\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"100%\"},children:\"Fabio Sergio\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\"},children:\"Managing Director & Head of Design\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\"},children:\"Accenture Song\"})]}),className:\"framer-1a5em3t\",\"data-framer-name\":\"Dr. Sebastian Wieczorek Vice President of AI Technology & Global Lead of AI Ethics SAP\",fonts:[\"GF;Arial-700\",\"GF;Arial-regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtNzAw\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"100%\"},children:\"Marcus Johansson \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\"},children:\"Founding Product Designer \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\"},children:\"Light\"})]}),className:\"framer-zm2wf7\",\"data-framer-name\":\"Dr. Sebastian Wieczorek Vice President of AI Technology & Global Lead of AI Ethics SAP\",fonts:[\"GF;Arial-700\",\"GF;Arial-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-665vk1\",\"data-framer-name\":\"Generative AI\",children:[/*#__PURE__*/_jsx(MotionDivWithDarkenkq53h7,{className:\"framer-kq53h7\",\"data-framer-name\":\"Poster\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nnvbsf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"bCf4Z3Xzk\",rendersWithMotion:true,scopeId:\"MynA46gwi\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"bCf4Z3Xzk\",isMixedBorderRadius:false,isRed:true,layoutId:\"bCf4Z3Xzk\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=EJWv8V1zPok&t=2s&ab_channel=Light\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19lxzyf\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QXJpYWwtcmVndWxhcg==\",\"--framer-font-family\":'\"Arial\", \"Arial Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"110%\"},children:[\"Debate: AI, Productivity and Humanity\",/*#__PURE__*/_jsx(\"br\",{}),\"How can we use AI for good?\"]})}),className:\"framer-1sa4zi8\",\"data-framer-name\":\"Join us on the 9th October at the Ny Carlsberg Glyptotek.\",fonts:[\"GF;Arial-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tv6x42\",\"data-framer-name\":\"Partnership picture\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-150laat\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XF8VP8QC9:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get invited to exclusive events with future-shaping thought-leadership. \"})]}),transformTemplate:transformTemplate2},XpkPuxLAO:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Get invited to exclusive events with future-shaping \",/*#__PURE__*/_jsx(\"br\",{}),\"thought-leadership. \"]})]}),transformTemplate:transformTemplate3},yqVENkJ4b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Get invited to exclusive events \",/*#__PURE__*/_jsx(\"br\",{}),\"with future-shaping thought-leadership. \"]})}),transformTemplate:transformTemplate3},z6Pszjp1B:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Get invited to exclusive events with \",/*#__PURE__*/_jsx(\"br\",{}),\"future-shaping thought-leadership. \"]})]}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get invited to exclusive events with future-shaping thought-leadership. \"})]}),className:\"framer-1y5ms4s\",fonts:[\"Inter-Medium\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XF8VP8QC9:{transformTemplate:undefined},XpkPuxLAO:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Explore our Partnership Program\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),transformTemplate:undefined},yqVENkJ4b:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Explore our \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Partnership Program\"})]}),transformTemplate:undefined},z6Pszjp1B:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Explore our \",/*#__PURE__*/_jsx(\"br\",{}),\"Partnership Program\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),transformTemplate:transformTemplate3}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Explore our Partnership Program\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-ibqspg\",fonts:[\"Inter-Medium\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"VsbVgK5YA\"},motionChild:true,nodeId:\"V_b18FP4c\",scopeId:\"MynA46gwi\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O4gK42209:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4160,intrinsicWidth:6240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+150+3780.4032+-100),pixelHeight:4160,pixelWidth:6240,sizes:\"1700px\",src:\"https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg\",srcSet:\"https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg 6240w\"}},XF8VP8QC9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4160,intrinsicWidth:6240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+150+5453.4032+0),pixelHeight:4160,pixelWidth:6240,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg\",srcSet:\"https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg 6240w\"}},XpkPuxLAO:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4160,intrinsicWidth:6240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+150+4487.4032+0),pixelHeight:4160,pixelWidth:6240,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg\",srcSet:\"https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg 6240w\"}},yqVENkJ4b:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4160,intrinsicWidth:6240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+150+4528.4032+0),pixelHeight:4160,pixelWidth:6240,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg\",srcSet:\"https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg 6240w\"}},z6Pszjp1B:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4160,intrinsicWidth:6240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+150+4591.4032+0),pixelHeight:4160,pixelWidth:6240,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg\",srcSet:\"https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg 6240w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:4160,intrinsicWidth:6240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3180.4032+0),pixelHeight:4160,pixelWidth:6240,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg\",srcSet:\"https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/0U9tybu3XAsY83LuwpMfHrw26Y.jpg 6240w\"},className:\"framer-a8m3ad framer-1k23jb5\",\"data-framer-name\":\"stemning\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7j57bu\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1c5Lu.framer-1k23jb5, .framer-1c5Lu .framer-1k23jb5 { display: block; }\",\".framer-1c5Lu.framer-o2y5gx { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: wrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1425px; }\",\".framer-1c5Lu .framer-y8ss94 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 150px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-1c5Lu .framer-1mdyl54 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 80%; }\",\".framer-1c5Lu .framer-xhbl81 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-1c5Lu .framer-u3vi3e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; opacity: 0.4; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1c5Lu .framer-dy2uxu { -webkit-filter: invert(1); aspect-ratio: 20.666666666666668 / 1; filter: invert(1); flex: none; height: var(--framer-aspect-ratio-supported, 10px); max-width: 1145px; overflow: visible; position: relative; width: 80%; }\",\".framer-1c5Lu .framer-19t4vv2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: 90%; }\",\".framer-1c5Lu .framer-1qcycyv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1c5Lu .framer-1tzdwud { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-1c5Lu .framer-fi8xjf { cursor: pointer; flex: none; gap: 10px; height: 620px; overflow: hidden; position: relative; width: 100%; }\",\".framer-1c5Lu .framer-4fawpy-container, .framer-1c5Lu .framer-noi4ud-container, .framer-1c5Lu .framer-saxsk-container, .framer-1c5Lu .framer-1t82u42-container, .framer-1c5Lu .framer-ebw0dc-container, .framer-1c5Lu .framer-rpz2sf-container, .framer-1c5Lu .framer-1nnvbsf-container { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-1c5Lu .framer-183dz1z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 320px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1c5Lu .framer-1qvftv0, .framer-1c5Lu .framer-1lkvhj4 { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 50%; word-break: break-word; word-wrap: break-word; }\",\".framer-1c5Lu .framer-1tz7yuj, .framer-1c5Lu .framer-1c7ucdl, .framer-1c5Lu .framer-1jxvqt0, .framer-1c5Lu .framer-1a5em3t, .framer-1c5Lu .framer-zm2wf7 { --framer-paragraph-spacing: 8px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-1c5Lu .framer-m6egcy, .framer-1c5Lu .framer-cs7wnz, .framer-1c5Lu .framer-1uuxa5n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: 90%; }\",\".framer-1c5Lu .framer-42atfj, .framer-1c5Lu .framer-1clr71d, .framer-1c5Lu .framer-5ekewk, .framer-1c5Lu .framer-1m4g4vm, .framer-1c5Lu .framer-nt0wae, .framer-1c5Lu .framer-665vk1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; max-width: 540px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1c5Lu .framer-2ldyjr, .framer-1c5Lu .framer-1eoh99m, .framer-1c5Lu .framer-vahp98, .framer-1c5Lu .framer-4pyb7q, .framer-1c5Lu .framer-hiufks, .framer-1c5Lu .framer-kq53h7 { cursor: pointer; flex: none; gap: 10px; height: 310px; overflow: hidden; position: relative; width: 100%; }\",\".framer-1c5Lu .framer-101p0yc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1c5Lu .framer-4y6hch { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 51%; word-break: break-word; word-wrap: break-word; }\",\".framer-1c5Lu .framer-w52kes, .framer-1c5Lu .framer-1xiksm0 { --framer-paragraph-spacing: 6px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-1c5Lu .framer-e1xit6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1c5Lu .framer-15ijx6g, .framer-1c5Lu .framer-1st2cgq, .framer-1c5Lu .framer-1f3actb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1c5Lu .framer-9sp9ob { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 46%; word-break: break-word; word-wrap: break-word; }\",\".framer-1c5Lu .framer-ig4no7 { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 56%; word-break: break-word; word-wrap: break-word; }\",\".framer-1c5Lu .framer-stuixu { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 39%; word-break: break-word; word-wrap: break-word; }\",\".framer-1c5Lu .framer-19lxzyf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1c5Lu .framer-1sa4zi8 { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 76%; word-break: break-word; word-wrap: break-word; }\",\".framer-1c5Lu .framer-1tv6x42 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1c5Lu .framer-150laat { align-content: center; align-items: center; bottom: 68px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 69px; justify-content: center; left: 143px; overflow: hidden; padding: 0px; position: absolute; width: 688px; z-index: 1; }\",\".framer-1c5Lu .framer-1y5ms4s { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; overflow: visible; position: absolute; top: 57%; transform: translate(-50%, -50%); white-space: pre; width: auto; z-index: 1; }\",\".framer-1c5Lu .framer-ibqspg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 34%; overflow: visible; position: absolute; top: 43%; transform: translate(-50%, -50%); white-space: pre; width: auto; z-index: 1; }\",\".framer-1c5Lu .framer-a8m3ad { flex: 1 0 0px; height: 100vh; overflow: visible; position: relative; text-decoration: none; width: 1px; }\",\".framer-1c5Lu .framer-7j57bu { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%); bottom: 0px; flex: none; height: 33%; left: 0px; overflow: hidden; position: absolute; right: 0px; }\",\"@media (min-width: 1740px) { .framer-1c5Lu.framer-o2y5gx { padding: 150px 0px 0px 0px; width: 1740px; } .framer-1c5Lu .framer-y8ss94 { order: 0; } .framer-1c5Lu .framer-xhbl81 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-1c5Lu .framer-1tv6x42 { height: 800px; order: 1; width: 1700px; } .framer-1c5Lu .framer-150laat { bottom: 95px; height: min-content; left: 300px; min-height: 69px; min-width: 688px; width: min-content; }}\",\"@media (min-width: 768px) and (max-width: 1424px) { .framer-1c5Lu.framer-o2y5gx { padding: 150px 0px 0px 0px; width: 768px; } .framer-1c5Lu .framer-y8ss94 { order: 0; } .framer-1c5Lu .framer-dy2uxu { height: var(--framer-aspect-ratio-supported, 0px); max-width: 100%; } .framer-1c5Lu .framer-19t4vv2 { max-width: 540px; } .framer-1c5Lu .framer-1qcycyv { justify-content: center; } .framer-1c5Lu .framer-fi8xjf { height: 310px; } .framer-1c5Lu .framer-183dz1z, .framer-1c5Lu .framer-101p0yc, .framer-1c5Lu .framer-e1xit6, .framer-1c5Lu .framer-15ijx6g, .framer-1c5Lu .framer-1st2cgq, .framer-1c5Lu .framer-1f3actb, .framer-1c5Lu .framer-19lxzyf { flex-direction: column; gap: 25px; } .framer-1c5Lu .framer-1qvftv0, .framer-1c5Lu .framer-4y6hch, .framer-1c5Lu .framer-1lkvhj4, .framer-1c5Lu .framer-9sp9ob, .framer-1c5Lu .framer-ig4no7, .framer-1c5Lu .framer-stuixu, .framer-1c5Lu .framer-1sa4zi8 { width: 100%; } .framer-1c5Lu .framer-1tz7yuj, .framer-1c5Lu .framer-w52kes, .framer-1c5Lu .framer-1xiksm0, .framer-1c5Lu .framer-1c7ucdl, .framer-1c5Lu .framer-1jxvqt0, .framer-1c5Lu .framer-1a5em3t, .framer-1c5Lu .framer-zm2wf7 { flex: none; width: 100%; } .framer-1c5Lu .framer-m6egcy, .framer-1c5Lu .framer-cs7wnz, .framer-1c5Lu .framer-1uuxa5n { align-content: center; align-items: center; flex-direction: column; gap: 37px; } .framer-1c5Lu .framer-1tv6x42 { order: 1; } .framer-1c5Lu .framer-150laat { bottom: unset; height: min-content; justify-content: flex-start; left: 50%; min-height: 1080px; min-width: 688px; top: -134px; transform: translateX(-50%); width: min-content; } .framer-1c5Lu .framer-1y5ms4s { bottom: 67px; left: 49%; order: 1; top: unset; transform: translateX(-50%); } .framer-1c5Lu .framer-ibqspg { bottom: 75px; left: 26px; order: 0; top: unset; transform: unset; }}\",\"@media (min-width: 425px) and (max-width: 767px) { .framer-1c5Lu.framer-o2y5gx { padding: 150px 0px 0px 0px; width: 425px; } .framer-1c5Lu .framer-y8ss94 { padding: 0px; } .framer-1c5Lu .framer-xhbl81 { white-space: pre-wrap; width: 102%; word-break: break-word; word-wrap: break-word; } .framer-1c5Lu .framer-u3vi3e { justify-content: center; } .framer-1c5Lu .framer-19t4vv2 { gap: 13px; justify-content: flex-start; max-width: 540px; } .framer-1c5Lu .framer-fi8xjf, .framer-1c5Lu .framer-2ldyjr, .framer-1c5Lu .framer-1eoh99m, .framer-1c5Lu .framer-vahp98, .framer-1c5Lu .framer-4pyb7q, .framer-1c5Lu .framer-hiufks, .framer-1c5Lu .framer-kq53h7 { height: 210px; } .framer-1c5Lu .framer-183dz1z, .framer-1c5Lu .framer-101p0yc, .framer-1c5Lu .framer-e1xit6, .framer-1c5Lu .framer-15ijx6g, .framer-1c5Lu .framer-1st2cgq, .framer-1c5Lu .framer-1f3actb, .framer-1c5Lu .framer-19lxzyf { flex-direction: column; gap: 25px; } .framer-1c5Lu .framer-1qvftv0, .framer-1c5Lu .framer-4y6hch, .framer-1c5Lu .framer-1lkvhj4, .framer-1c5Lu .framer-9sp9ob, .framer-1c5Lu .framer-ig4no7, .framer-1c5Lu .framer-stuixu, .framer-1c5Lu .framer-1sa4zi8 { width: 100%; } .framer-1c5Lu .framer-1tz7yuj, .framer-1c5Lu .framer-w52kes, .framer-1c5Lu .framer-1xiksm0, .framer-1c5Lu .framer-1c7ucdl, .framer-1c5Lu .framer-1jxvqt0, .framer-1c5Lu .framer-1a5em3t, .framer-1c5Lu .framer-zm2wf7 { flex: none; width: 100%; } .framer-1c5Lu .framer-m6egcy, .framer-1c5Lu .framer-cs7wnz, .framer-1c5Lu .framer-1uuxa5n { flex-direction: column; } .framer-1c5Lu .framer-42atfj, .framer-1c5Lu .framer-1clr71d, .framer-1c5Lu .framer-5ekewk, .framer-1c5Lu .framer-1m4g4vm { gap: 13px; justify-content: flex-start; width: 100%; } .framer-1c5Lu .framer-nt0wae, .framer-1c5Lu .framer-665vk1 { gap: 13px; justify-content: flex-start; } .framer-1c5Lu .framer-150laat { bottom: 143px; height: min-content; left: unset; min-height: 69px; min-width: 688px; right: -289px; width: min-content; } .framer-1c5Lu .framer-1y5ms4s { left: 0px; order: 1; top: 51%; transform: translateY(-50%); } .framer-1c5Lu .framer-ibqspg { left: 0px; order: 0; top: 0px; transform: unset; }}\",\"@media (min-width: 350px) and (max-width: 424px) { .framer-1c5Lu.framer-o2y5gx { padding: 150px 0px 0px 0px; width: 350px; } .framer-1c5Lu .framer-y8ss94 { padding: 0px; width: 99%; } .framer-1c5Lu .framer-xhbl81 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-1c5Lu .framer-u3vi3e { justify-content: center; } .framer-1c5Lu .framer-19t4vv2, .framer-1c5Lu .framer-nt0wae, .framer-1c5Lu .framer-665vk1 { justify-content: flex-start; } .framer-1c5Lu .framer-fi8xjf, .framer-1c5Lu .framer-2ldyjr, .framer-1c5Lu .framer-1eoh99m, .framer-1c5Lu .framer-vahp98, .framer-1c5Lu .framer-4pyb7q, .framer-1c5Lu .framer-hiufks, .framer-1c5Lu .framer-kq53h7 { height: 210px; } .framer-1c5Lu .framer-183dz1z, .framer-1c5Lu .framer-101p0yc, .framer-1c5Lu .framer-e1xit6, .framer-1c5Lu .framer-15ijx6g, .framer-1c5Lu .framer-1st2cgq, .framer-1c5Lu .framer-1f3actb, .framer-1c5Lu .framer-19lxzyf { flex-direction: column; gap: 25px; } .framer-1c5Lu .framer-1qvftv0, .framer-1c5Lu .framer-4y6hch, .framer-1c5Lu .framer-1lkvhj4, .framer-1c5Lu .framer-9sp9ob, .framer-1c5Lu .framer-ig4no7, .framer-1c5Lu .framer-stuixu, .framer-1c5Lu .framer-1sa4zi8 { width: 100%; } .framer-1c5Lu .framer-1tz7yuj, .framer-1c5Lu .framer-w52kes, .framer-1c5Lu .framer-1xiksm0, .framer-1c5Lu .framer-1c7ucdl, .framer-1c5Lu .framer-1jxvqt0, .framer-1c5Lu .framer-1a5em3t, .framer-1c5Lu .framer-zm2wf7 { flex: none; width: 100%; } .framer-1c5Lu .framer-m6egcy, .framer-1c5Lu .framer-cs7wnz, .framer-1c5Lu .framer-1uuxa5n { flex-direction: column; } .framer-1c5Lu .framer-42atfj, .framer-1c5Lu .framer-1clr71d, .framer-1c5Lu .framer-5ekewk, .framer-1c5Lu .framer-1m4g4vm { justify-content: flex-start; width: 100%; } .framer-1c5Lu .framer-150laat { bottom: 141px; height: 120px; left: unset; min-width: 688px; right: -374px; width: min-content; } .framer-1c5Lu .framer-1y5ms4s { bottom: 1px; left: 1px; order: 1; top: unset; transform: unset; } .framer-1c5Lu .framer-ibqspg { left: 0px; order: 0; top: 51%; transform: translateY(-50%); }}\",\"@media (max-width: 349px) { .framer-1c5Lu.framer-o2y5gx { padding: 150px 0px 0px 0px; width: 320px; } .framer-1c5Lu .framer-y8ss94 { padding: 0px; } .framer-1c5Lu .framer-xhbl81 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-1c5Lu .framer-u3vi3e { justify-content: center; } .framer-1c5Lu .framer-19t4vv2, .framer-1c5Lu .framer-nt0wae, .framer-1c5Lu .framer-665vk1 { gap: 11px; justify-content: flex-start; } .framer-1c5Lu .framer-fi8xjf, .framer-1c5Lu .framer-2ldyjr, .framer-1c5Lu .framer-1eoh99m, .framer-1c5Lu .framer-vahp98, .framer-1c5Lu .framer-4pyb7q, .framer-1c5Lu .framer-hiufks, .framer-1c5Lu .framer-kq53h7 { height: 210px; } .framer-1c5Lu .framer-183dz1z, .framer-1c5Lu .framer-101p0yc, .framer-1c5Lu .framer-e1xit6, .framer-1c5Lu .framer-19lxzyf { flex-direction: column; gap: 20px; } .framer-1c5Lu .framer-1qvftv0, .framer-1c5Lu .framer-4y6hch, .framer-1c5Lu .framer-1lkvhj4, .framer-1c5Lu .framer-9sp9ob, .framer-1c5Lu .framer-ig4no7, .framer-1c5Lu .framer-stuixu, .framer-1c5Lu .framer-1sa4zi8 { width: 100%; } .framer-1c5Lu .framer-1tz7yuj, .framer-1c5Lu .framer-w52kes, .framer-1c5Lu .framer-1xiksm0, .framer-1c5Lu .framer-1c7ucdl, .framer-1c5Lu .framer-1jxvqt0, .framer-1c5Lu .framer-1a5em3t, .framer-1c5Lu .framer-zm2wf7 { flex: none; width: 100%; } .framer-1c5Lu .framer-m6egcy, .framer-1c5Lu .framer-cs7wnz, .framer-1c5Lu .framer-15ijx6g, .framer-1c5Lu .framer-1st2cgq, .framer-1c5Lu .framer-1uuxa5n, .framer-1c5Lu .framer-1f3actb { flex-direction: column; } .framer-1c5Lu .framer-42atfj, .framer-1c5Lu .framer-1clr71d, .framer-1c5Lu .framer-5ekewk, .framer-1c5Lu .framer-1m4g4vm { gap: 11px; justify-content: flex-start; width: 100%; } .framer-1c5Lu .framer-150laat { bottom: 85px; height: 160px; left: unset; min-width: 688px; right: -401px; width: min-content; } .framer-1c5Lu .framer-1y5ms4s { left: 0px; top: 54%; transform: translateY(-50%); } .framer-1c5Lu .framer-ibqspg { left: 0px; top: 9px; transform: unset; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4033\n * @framerIntrinsicWidth 1425\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"O4gK42209\":{\"layout\":[\"fixed\",\"auto\"]},\"XF8VP8QC9\":{\"layout\":[\"fixed\",\"auto\"]},\"XpkPuxLAO\":{\"layout\":[\"fixed\",\"auto\"]},\"z6Pszjp1B\":{\"layout\":[\"fixed\",\"auto\"]},\"yqVENkJ4b\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Sv2GfnfL2\":{\"pattern\":\":Sv2GfnfL2\",\"name\":\"hero\"}}\n * @framerResponsiveScreen\n */const FramerMynA46gwi=withCSS(Component,css,\"framer-1c5Lu\");export default FramerMynA46gwi;FramerMynA46gwi.displayName=\"Content\";FramerMynA46gwi.defaultProps={height:4033,width:1425};addFonts(FramerMynA46gwi,[{explicitInter:true,fonts:[{family:\"Joan\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/joan/v11/ZXupe1oZsqWRbRJH8X1p_Ng.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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...YouTubeFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMynA46gwi\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"4033\",\"framerColorSyntax\":\"true\",\"framerScrollSections\":\"{\\\"Sv2GfnfL2\\\":{\\\"pattern\\\":\\\":Sv2GfnfL2\\\",\\\"name\\\":\\\"hero\\\"}}\",\"framerIntrinsicWidth\":\"1425\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"O4gK42209\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XF8VP8QC9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XpkPuxLAO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"z6Pszjp1B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yqVENkJ4b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "okBAAgT,IAAIA,GAAa,SAASA,EAAY,CAACA,EAAY,OAAU,MAAMA,EAAY,KAAQ,KAAKA,EAAY,KAAQ,MAAO,GAAGA,IAAcA,EAAY,CAAC,EAAE,EAAE,IAAIC,GAAkB,SAASA,EAAiB,CAACA,EAAiB,KAAQ,eAAeA,EAAiB,OAAU,iBAAiBA,EAAiB,IAAO,cAAcA,EAAiB,IAAO,KAAM,GAAGA,IAAmBA,EAAiB,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,EAAW,IAAI,GAAK,EAAK,EAAO,CAACC,EAAUC,CAAU,EAAEF,EAAW,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,EAAW,WAAWvB,EAAc,sBAAsBwB,GAAgBP,EAAQ7B,EAAUqC,GAAiB,EAAE,OAAO,KAAK,CAAC,cAAc,MAAS,CAAC,CAAC,EAAG5B,EAAqJ,KAA/He,EAAK,SAAS,CAAC,QAASR,EAAiB,OAAP,OAAiB,MAAOA,EAAyCmB,EAA/B,CAAC,GAAGA,EAAW,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,GAAoB3C,EAAQ,CAAC,IAAI,CAAC,KAAK4C,EAAY,OAAO,MAAM,OAAO,EAAE,KAAK,CAAC,KAAKA,EAAY,KAAK,MAAM,WAAW,QAAQ,OAAO,OAAO/C,CAAW,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,CAAgB,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,MAAM,CAAC,IAAMd,EAASe,EAAYD,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,EAAYhB,CAAO,EAAE,MAAM,CAACA,EAAQC,CAAQ,CAAE,CACnI,GAAGgB,EAAa,CAAC,IAAI,QAAuC,MAAM,CAAtBA,EAAa,CAAC,EAAiBjD,CAAG,CAAG,CACjF,GAAGA,EAAI,WAAW,WAAW,CAAC,IAAMgC,EAAQhC,EAAI,SAAS,MAAM,CAAC,EAAQiC,EAASe,EAAYhB,CAAO,EAAE,MAAM,CAACA,EAAQC,CAAQ,CAAE,CAAC,CAAC,SAASe,EAAYhB,EAAQ,CAAC,OAAO,IAAI,IAAI,iCAAiCA,CAAO,EAAE,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,CAAG,GAAGrB,CAAO,cAAcsB,CAAG,GAAG,IAAI,iBAAiB,MAAM,GAAGD,CAAG,GAAGrB,CAAO,cAAcsB,CAAG,GAAG,IAAI,eAAe,MAAM,GAAGD,CAAG,GAAGrB,CAAO,kBAAkBsB,CAAG,GAAG,QAAQ,MAAM,GAAGD,CAAG,GAAGrB,CAAO,MAAMsB,CAAG,EAAG,CAAC,CAAC,IAAIC,EAChY,SAASf,IAAkB,CAC3B,GAAG,CAACgB,EAAQ,MAAO,GAAM,GAAGD,IAAoB,OAAW,OAAOA,EAAmB,IAAME,EAAQ,SAAS,cAAc,QAAQ,EAAE,OAAGA,EAAQ,YAAYA,EAAQ,WAAW,IAAI,EAC3KF,EAAkBE,EAAQ,UAAU,YAAY,EAAE,QAAQ,iBAAiB,IAAI,EAC/EF,EAAkB,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,EAAW,CAAC,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,OAAO,OAAO,MAAM,MAAM,ECvBznD,SAASyB,EAAWC,EAAE,CAAC,OAAOC,GAAgBC,EAAEF,EAAE,CAAC,GAAGC,EAAE,WAAW,CAAC,OAAO,kBAAkB,CAAC,CAAC,CAAE,CCCwmB,IAAME,GAAaC,GAASC,CAAO,EAAQC,GAA0BC,EAA6BC,EAAO,IAAI,CAAC,OAAO,YAAY,SAASC,EAAW,QAAQ,WAAW,CAAC,EAAQC,GAA0BH,EAA6BC,EAAO,IAAI,CAAC,OAAO,YAAY,SAASC,EAAW,QAAQ,WAAW,CAAC,EAAQE,GAA2BJ,EAA6BC,EAAO,IAAI,CAAC,OAAO,YAAY,SAASC,EAAW,QAAQ,WAAW,CAAC,EAAQG,GAA0BL,EAA6BC,EAAO,IAAI,CAAC,OAAO,YAAY,SAASC,EAAW,QAAQ,WAAW,CAAC,EAAQI,GAA0BN,EAA6BC,EAAO,IAAI,CAAC,OAAO,YAAY,SAASC,EAAW,QAAQ,WAAW,CAAC,EAAQK,GAA0BP,EAA6BC,EAAO,IAAI,CAAC,OAAO,YAAY,SAASC,EAAW,QAAQ,WAAW,CAAC,EAAQM,GAA0BR,EAA6BC,EAAO,IAAI,CAAC,OAAO,YAAY,SAASC,EAAW,QAAQ,WAAW,CAAC,EAAQO,GAAY,CAAC,UAAU,8CAA8C,UAAU,sBAAsB,UAAU,6CAA6C,UAAU,4CAA4C,UAAU,qBAAqB,UAAU,2CAA2C,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,iBAAiB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,EAAQC,GAAmB,CAACC,EAAEC,IAAI,yBAAyBA,CAAC,GAASC,GAAmB,CAACF,EAAEC,IAAI,oBAAoBA,CAAC,GAASE,EAAmB,CAACH,EAAEC,IAAI,oBAAoBA,CAAC,GAASG,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,WAAW,YAAY,WAAW,YAAY,WAAW,YAAY,cAAc,YAAY,QAAQ,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAA6BC,EAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEtB,GAASI,CAAK,EAAQmB,GAAU,IAAI,CAAC,IAAMC,EAASA,EAAiB,OAAUX,CAAY,EAAE,GAAGW,EAAS,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,EAAG,CAAC,EAAE,CAAC,OAAUZ,CAAY,CAAC,EAAQa,GAAmB,IAAI,CAAC,IAAMF,EAASA,EAAiB,OAAUX,CAAY,EAAE,SAAS,MAAMW,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUX,CAAY,CAAC,EAAE,GAAK,CAACc,EAAYC,CAAmB,EAAEC,GAA8BR,EAAQnC,GAAY,EAAK,EAAQ4C,EAAe,OAA+CC,EAAkBC,EAAG5C,GAAkB,GAAhD,CAAC,CAAuE,EAAQ6C,EAAUC,GAAkB,WAAW,EAAQC,EAAW1B,EAAO,IAAI,EAAQ2B,EAAY,IAASjD,GAAU,EAAiB,EAAC,YAAY,YAAY,WAAW,EAAE,SAASwC,CAAW,EAAlE,GAA+F,OAAAU,GAAiB,CAAC,CAAC,EAAsBvC,EAAKwC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAjD,EAAiB,EAAE,SAAsBkD,EAAMC,GAAY,CAAC,GAAGpB,GAAUT,EAAgB,SAAS,CAAcb,EAAKH,GAAU,CAAC,MAAM,+CAA+C,CAAC,EAAe4C,EAAM7D,EAAO,IAAI,CAAC,GAAG4C,EAAU,UAAUU,EAAGD,EAAkB,gBAAgBZ,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcqB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,GAAGN,EAAU,IAAIE,EAAK,SAAS,CAAcrC,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBY,EAAYG,EAAS,CAAC,SAAS,CAAc5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,oCAAoC,qBAAqB,OAAO,0BAA0B,MAAM,EAAE,SAAS,wBAAwB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,oCAAoC,qBAAqB,OAAO,0BAA0B,MAAM,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW4C,EAAS,CAAC,SAAsBH,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,EAAE,SAAS,CAAczC,EAAK,OAAO,CAAC,MAAM,CAAC,qBAAqB,MAAM,EAAE,SAAS,0BAA0B,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,qBAAqB,MAAM,EAAE,SAAsBA,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,qBAAqB,MAAM,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC,EAAE,UAAU,CAAC,SAAsByC,EAAYG,EAAS,CAAC,SAAS,CAAc5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,oCAAoC,qBAAqB,OAAO,0BAA0B,MAAM,EAAE,SAAS,wBAAwB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,oCAAoC,qBAAqB,OAAO,0BAA0B,MAAM,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsByC,EAAYG,EAAS,CAAC,SAAS,CAAc5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,oCAAoC,qBAAqB,OAAO,0BAA0B,MAAM,EAAE,SAAS,wBAAwB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,oCAAoC,qBAAqB,OAAO,0BAA0B,MAAM,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsBJ,EAAYG,EAAS,CAAC,SAAS,CAAc5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,oCAAoC,qBAAqB,OAAO,0BAA0B,MAAM,EAAE,SAAS,wBAAwB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,oCAAoC,qBAAqB,OAAO,0BAA0B,MAAM,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,iBAAiB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsBA,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,QAAQiB,GAA2B5B,GAAmB,GAAG,GAAG,IAAI,EAAE,IAAI,IAAI,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,OAAO,kBAAkB,IAAI,0FAA0F,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,QAAQ4B,GAA2B5B,GAAmB,GAAG,GAAG,IAAI,EAAE,IAAI,IAAI,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,OAAO,WAAWA,GAAmB,OAAO,OAAO,IAAI,IAAI,0FAA0F,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,QAAQ4B,GAA2B5B,GAAmB,GAAG,GAAG,IAAI,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,OAAO,kBAAkB,IAAI,0FAA0F,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,QAAQ4B,GAA2B5B,GAAmB,GAAG,GAAG,IAAI,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,OAAO,kBAAkB,IAAI,0FAA0F,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,QAAQ4B,GAA2B5B,GAAmB,GAAG,GAAG,IAAI,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,OAAO,oBAAoB,IAAI,0FAA0F,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsBlB,EAAK+C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,QAAQD,GAA2B5B,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,OAAO,kBAAkB,IAAI,0FAA0F,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,SAAS,CAACH,EAAY,GAAgBtC,EAAK,MAAM,CAAC,UAAU,8DAA8D,SAAsBA,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,MAAM,EAAE,SAAS,4NAAuN,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,EAAE,SAAS,4NAAuN,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKtB,GAA0B,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAsBsB,EAAKgD,EAA0B,CAAC,SAAsBhD,EAAKiD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBjD,EAAKvB,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,eAAe,cAAc,EAAE,eAAe,EAAE,IAAI,8HAA8H,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAczC,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,0CAA0C,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,0CAA0C,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,0CAA0C,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,0CAA0C,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,0CAA0C,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,4DAA4D,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBY,EAAYG,EAAS,CAAC,SAAS,CAAc5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,MAAM,EAAE,SAAS,oBAAoB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,sCAAsC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsBJ,EAAYG,EAAS,CAAC,SAAS,CAAc5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,MAAM,EAAE,SAAS,oBAAoB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,sCAAsC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,yFAAyF,MAAM,CAAC,eAAe,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,SAAS,CAAczC,EAAKlB,GAA0B,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAsBkB,EAAKgD,EAA0B,CAAC,SAAsBhD,EAAKiD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBjD,EAAKvB,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,eAAe,cAAc,EAAE,eAAe,EAAE,IAAI,8CAA8C,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAczC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW4C,EAAS,CAAC,SAAsBH,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,CAAC,kDAA+DzC,EAAK,KAAK,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,4DAA4D,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsBJ,EAAYG,EAAS,CAAC,SAAS,CAAc5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,MAAM,EAAE,SAAS,6BAA6B,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,uCAAuC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,yFAAyF,MAAM,CAAC,eAAe,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,SAAS,CAAczC,EAAKjB,GAA2B,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAsBiB,EAAKgD,EAA0B,CAAC,SAAsBhD,EAAKiD,EAAU,CAAC,UAAU,yBAAyB,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBjD,EAAKvB,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,eAAe,cAAc,EAAE,eAAe,EAAE,IAAI,+DAA+D,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAczC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,yEAAoE,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,4DAA4D,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsBJ,EAAYG,EAAS,CAAC,SAAS,CAAc5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,MAAM,EAAE,SAAS,YAAY,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,yCAAyC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,yFAAyF,MAAM,CAAC,eAAe,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,SAAS,CAAczC,EAAKhB,GAA0B,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAsBgB,EAAKgD,EAA0B,CAAC,SAAsBhD,EAAKiD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBjD,EAAKvB,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,eAAe,cAAc,EAAE,eAAe,EAAE,IAAI,+DAA+D,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAczC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,yCAAyC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,4DAA4D,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsBJ,EAAYG,EAAS,CAAC,SAAS,CAAc5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,MAAM,EAAE,SAAS,yBAAyB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,4DAA4D,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,yFAAyF,MAAM,CAAC,eAAe,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,SAAS,CAAczC,EAAKf,GAA0B,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAsBe,EAAKgD,EAA0B,CAAC,SAAsBhD,EAAKiD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBjD,EAAKvB,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,eAAe,cAAc,EAAE,eAAe,EAAE,IAAI,+DAA+D,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAczC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,2EAA2E,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,4DAA4D,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsBJ,EAAYG,EAAS,CAAC,SAAS,CAAc5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,MAAM,EAAE,SAAS,kBAAkB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,8BAA8B,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,yFAAyF,MAAM,CAAC,eAAe,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,SAAS,CAAczC,EAAKd,GAA0B,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAsBc,EAAKgD,EAA0B,CAAC,SAAsBhD,EAAKiD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBjD,EAAKvB,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,eAAe,cAAc,EAAE,eAAe,EAAE,IAAI,8CAA8C,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAczC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,uDAAuD,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,4DAA4D,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsBJ,EAAYG,EAAS,CAAC,SAAS,CAAc5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,MAAM,EAAE,SAAS,cAAc,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,oCAAoC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,yFAAyF,MAAM,CAAC,eAAe,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsBJ,EAAYG,EAAS,CAAC,SAAS,CAAc5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,MAAM,EAAE,SAAS,mBAAmB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,4BAA4B,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,yFAAyF,MAAM,CAAC,eAAe,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,SAAS,CAAczC,EAAKb,GAA0B,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAsBa,EAAKgD,EAA0B,CAAC,SAAsBhD,EAAKiD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBjD,EAAKvB,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,eAAe,cAAc,EAAE,eAAe,EAAE,IAAI,oEAAoE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAsBA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW4C,EAAS,CAAC,SAAsBH,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,CAAC,wCAAqDzC,EAAK,KAAK,CAAC,CAAC,EAAE,6BAA6B,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,4DAA4D,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,sBAAsB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAczC,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBY,EAAYG,EAAS,CAAC,SAAS,CAAc5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,0EAA0E,CAAC,CAAC,CAAC,CAAC,EAAE,kBAAkBL,EAAkB,EAAE,UAAU,CAAC,SAAsB8C,EAAYG,EAAS,CAAC,SAAS,CAAc5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeyC,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,CAAC,uDAAoEzC,EAAK,KAAK,CAAC,CAAC,EAAE,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,kBAAkBJ,CAAkB,EAAE,UAAU,CAAC,SAAsBI,EAAW4C,EAAS,CAAC,SAAsBH,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,CAAC,mCAAgDzC,EAAK,KAAK,CAAC,CAAC,EAAE,0CAA0C,CAAC,CAAC,CAAC,CAAC,EAAE,kBAAkBJ,CAAkB,EAAE,UAAU,CAAC,SAAsB6C,EAAYG,EAAS,CAAC,SAAS,CAAc5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeyC,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,CAAC,wCAAqDzC,EAAK,KAAK,CAAC,CAAC,EAAE,qCAAqC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,kBAAkB,MAAS,CAAC,EAAE,SAAsBA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsBJ,EAAYG,EAAS,CAAC,SAAS,CAAc5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,0EAA0E,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkBR,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeQ,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,MAAS,EAAE,UAAU,CAAC,SAAsBY,EAAYG,EAAS,CAAC,SAAS,CAAc5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,iCAAiC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,kBAAkB,MAAS,EAAE,UAAU,CAAC,SAAsByC,EAAYG,EAAS,CAAC,SAAS,CAAc5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,cAAc,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,CAAC,EAAE,kBAAkB,MAAS,EAAE,UAAU,CAAC,SAAsByC,EAAYG,EAAS,CAAC,SAAS,CAAcH,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,CAAC,eAA4BzC,EAAK,KAAK,CAAC,CAAC,EAAE,qBAAqB,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,kBAAkBJ,CAAkB,CAAC,EAAE,SAAsBI,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsBJ,EAAYG,EAAS,CAAC,SAAS,CAAc5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,iCAAiC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkBR,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeQ,EAAKkD,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQiB,GAA2B5B,GAAmB,GAAG,GAAG,IAAI,UAAU,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,SAAS,IAAI,sEAAsE,OAAO,6bAA6b,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ4B,GAA2B5B,GAAmB,GAAG,GAAG,IAAI,UAAU,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,OAAO,SAAS,IAAI,sEAAsE,OAAO,6bAA6b,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ4B,GAA2B5B,GAAmB,GAAG,GAAG,IAAI,UAAU,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,OAAO,SAAS,IAAI,sEAAsE,OAAO,6bAA6b,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ4B,GAA2B5B,GAAmB,GAAG,GAAG,IAAI,UAAU,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,OAAO,SAAS,IAAI,sEAAsE,OAAO,6bAA6b,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ4B,GAA2B5B,GAAmB,GAAG,GAAG,IAAI,UAAU,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,OAAO,SAAS,IAAI,sEAAsE,OAAO,6bAA6b,CAAC,CAAC,EAAE,SAAsBlB,EAAK+C,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,GAA2B5B,GAAmB,GAAG,GAAG,EAAE,UAAU,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,OAAO,SAAS,IAAI,sEAAsE,OAAO,6bAA6b,EAAE,UAAU,+BAA+B,mBAAmB,WAAW,SAAsBlB,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmD,GAAI,CAAC,kFAAkF,kFAAkF,kSAAkS,kSAAkS,gRAAgR,gNAAgN,gSAAgS,6PAA6P,kSAAkS,iRAAiR,uQAAuQ,6IAA6I,8WAA8W,mRAAmR,qOAAqO,mUAAmU,mWAAmW,ybAAyb,oSAAoS,0RAA0R,qMAAqM,sOAAsO,yRAAyR,wVAAwV,qMAAqM,qMAAqM,qMAAqM,yRAAyR,sMAAsM,uQAAuQ,8SAA8S,oRAAoR,mRAAmR,2IAA2I,mNAAmN,4eAA4e,kwDAAkwD,6kEAA6kE,2gEAA2gE,y9DAAy9D,EAavo8DC,EAAgBC,GAAQ9C,GAAU4C,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,UAAUA,EAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,OAAO,OAAO,SAAS,MAAM,SAAS,IAAI,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,uEAAuE,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,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG7E,EAAY,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACl8D,IAAMiF,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,sBAAwB,IAAI,sBAAwB,OAAO,kBAAoB,OAAO,qBAAuB,uDAAiE,qBAAuB,OAAO,yBAA2B,QAAQ,oCAAsC,oRAA0U,6BAA+B,OAAO,yBAA2B,OAAO,qBAAuB,OAAO,4BAA8B,OAAO,uBAAyB,EAAE,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,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", "withDarken", "r", "t", "p", "YouTubeFonts", "getFonts", "Youtube", "MotionDivWithDarkenfi8xjf", "withCodeBoundaryForOverrides", "motion", "withDarken", "MotionDivWithDarken2ldyjr", "MotionDivWithDarken1eoh99m", "MotionDivWithDarkenvahp98", "MotionDivWithDarken4pyb7q", "MotionDivWithDarkenhiufks", "MotionDivWithDarkenkq53h7", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transformTemplate2", "transformTemplate3", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "x", "RichText2", "getLoadingLazyAtYPosition", "Image2", "ComponentViewportProvider", "Container", "Link", "css", "FramerMynA46gwi", "withCSS", "MynA46gwi_default", "addFonts", "__FramerMetadata__"]
}
