{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/yHB9KRzlXSKPUj6ECF29/BKgVyOsY2XTrrdxnXJFV/LRnb1ktvN.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", "// Generated by Framer (5351ffe)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCSS,withFX}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{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import CTA01Large from\"#framer/local/canvasComponent/a2Snv03tK/a2Snv03tK.js\";import Footer from\"#framer/local/canvasComponent/C11VAT1Cd/C11VAT1Cd.js\";import TopNav from\"#framer/local/canvasComponent/gHsoPBLuF/gHsoPBLuF.js\";import*as sharedStyle from\"#framer/local/css/cOETOwN6I/cOETOwN6I.js\";import*as sharedStyle2 from\"#framer/local/css/dUZg_UVXa/dUZg_UVXa.js\";import*as sharedStyle4 from\"#framer/local/css/tRR1463GM/tRR1463GM.js\";import*as sharedStyle3 from\"#framer/local/css/w7dbaqUIB/w7dbaqUIB.js\";import*as sharedStyle1 from\"#framer/local/css/wQDKLEqdU/wQDKLEqdU.js\";import metadataProvider from\"#framer/local/webPageMetadata/LRnb1ktvN/LRnb1ktvN.js\";const CTA01LargeFonts=getFonts(CTA01Large);const PhosphorFonts=getFonts(Phosphor);const ImageWithFX=withFX(Image);const YouTubeFonts=getFonts(YouTube);const FooterFonts=getFonts(Footer);const TopNavFonts=getFonts(TopNav);const ContainerWithFX=withFX(Container);const breakpoints={b_1YIMwOL:\"(min-width: 810px) and (max-width: 1199px)\",cG1ruWL90:\"(min-width: 1200px)\",TSKcH6woy:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Es2fK\";const variantClassNames={b_1YIMwOL:\"framer-v-19t7jjz\",cG1ruWL90:\"framer-v-z8d4lj\",TSKcH6woy:\"framer-v-10y99ve\"};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"cG1ruWL90\",Phone:\"TSKcH6woy\",Tablet:\"b_1YIMwOL\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"cG1ruWL90\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"TSKcH6woy\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"TSKcH6woy\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"cG1ruWL90\",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-z8d4lj\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xclo99\",\"data-border\":true,\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7t9d0j\",\"data-framer-name\":\"Hero Background\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+0),pixelHeight:2076,pixelWidth:1909,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png\",srcSet:\"https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png?scale-down-to=1024 941w,https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png?scale-down-to=2048 1883w,https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png 1909w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+0),pixelHeight:2076,pixelWidth:1909,sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1600px)`,src:\"https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png\",srcSet:\"https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png?scale-down-to=1024 941w,https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png?scale-down-to=2048 1883w,https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png 1909w\"},className:\"framer-1hf36l9\",\"data-framer-name\":\"Hero Module\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-4e9tmn\",\"data-styles-preset\":\"cOETOwN6I\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Better research,\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"together.\"})]})})},TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1b3ghq6\",\"data-styles-preset\":\"wQDKLEqdU\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Better research, together.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-4e9tmn\",\"data-styles-preset\":\"cOETOwN6I\",style:{\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Better research, together.\"})}),className:\"framer-cqmft\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qkdvo1\",\"data-framer-name\":\"CTAs\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":VNNN7X45n\",webPageId:\"UDnqCXtkz\"},implicitPathVariables:undefined},{href:{hash:\":VNNN7X45n\",webPageId:\"UDnqCXtkz\"},implicitPathVariables:undefined},{href:{hash:\":VNNN7X45n\",webPageId:\"UDnqCXtkz\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,y:(componentViewport?.y||0)+0+0+120+0+40+191+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"276px\",y:(componentViewport?.y||0)+0+0+120+0+100+195+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bkhffv-container\",nodeId:\"eyZ1R0Edo\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{P9iJ84I_E:resolvedLinks[1]},TSKcH6woy:{P9iJ84I_E:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(CTA01Large,{height:\"100%\",id:\"eyZ1R0Edo\",layoutId:\"eyZ1R0Edo\",MQmTaNBq7:\"Become a reviewer\",P9iJ84I_E:resolvedLinks[0],style:{width:\"100%\"},variant:\"QPPEWtf7h\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Lqvrl4Fnn\"},implicitPathVariables:undefined},{href:{webPageId:\"Lqvrl4Fnn\"},implicitPathVariables:undefined},{href:{webPageId:\"Lqvrl4Fnn\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,y:(componentViewport?.y||0)+0+0+120+0+40+191+0+70}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"276px\",y:(componentViewport?.y||0)+0+0+120+0+100+195+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14z3co1-container\",nodeId:\"WHwVjZFyc\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{P9iJ84I_E:resolvedLinks1[1]},TSKcH6woy:{P9iJ84I_E:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(CTA01Large,{height:\"100%\",id:\"WHwVjZFyc\",layoutId:\"WHwVjZFyc\",MQmTaNBq7:\"Submit a Marble\",P9iJ84I_E:resolvedLinks1[0],style:{width:\"100%\"},variant:\"QPPEWtf7h\",width:\"100%\"})})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4ouspw\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j0goc1\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, rgb(38, 0, 81))\"},children:\"We address the reproducibility crisis and the need for fair assessment reform, converting unpublishable results into recognized scientific contributions\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",children:\"We address the reproducibility crisis and the need for fair assessment reform, converting unpublishable results into recognized scientific contributions\"})}),className:\"framer-8wygu3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ppbf6r\",\"data-framer-name\":\"Features\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t9bphb\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e42h0q\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sqwyer\",\"data-framer-name\":\"Title + Description\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-122la61\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-afizuv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VJL6Skg9u\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Lightbulb\",id:\"VJL6Skg9u\",layoutId:\"VJL6Skg9u\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-06fdfe91-09c9-4eb4-b1ef-d246ff1537a8, rgb(56, 0, 120))\"},children:\"We are rethinking science\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1b3ghq6\",\"data-styles-preset\":\"wQDKLEqdU\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-06fdfe91-09c9-4eb4-b1ef-d246ff1537a8, rgb(56, 0, 120))\"},children:\"We are rethinking science\"})}),className:\"framer-1xijzky\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gte7pk\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10mwrnn\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\"},children:\"The reproducibility crisis and outdated assessment systems hold science back. At Research Agora, we challenge the status quo by providing tools to validate and share findings, whether they confirm, refute, or build on existing work.\"})}),fonts:[\"FS;Work Sans-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\"},children:\"The reproducibility crisis and outdated assessment systems hold science back. At Research Agora, we challenge the status quo by providing tools to validate and share findings, whether they confirm, refute, or build on existing work.\"})}),className:\"framer-jqpf3n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12yena4\",\"data-framer-name\":\"Feature 01\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1past3x\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+796+40+0+0+0+338+0+-66.25),pixelHeight:1075,pixelWidth:800,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1600px) / 2 - 10px, 1px)`,src:\"https://framerusercontent.com/images/sXundreMNfyXE19ja0ihoolgTR0.png\",srcSet:\"https://framerusercontent.com/images/sXundreMNfyXE19ja0ihoolgTR0.png?scale-down-to=1024 762w,https://framerusercontent.com/images/sXundreMNfyXE19ja0ihoolgTR0.png 800w\"}},TSKcH6woy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+756+20+0+0+0+255.4+0+0+0),pixelHeight:1075,pixelWidth:800,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1600px), 1px)`,src:\"https://framerusercontent.com/images/sXundreMNfyXE19ja0ihoolgTR0.png\",srcSet:\"https://framerusercontent.com/images/sXundreMNfyXE19ja0ihoolgTR0.png?scale-down-to=1024 762w,https://framerusercontent.com/images/sXundreMNfyXE19ja0ihoolgTR0.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+796+20+0+20+0+338+0+0),pixelHeight:1075,pixelWidth:800,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1600px) / 2 - 10px, 1px)`,src:\"https://framerusercontent.com/images/sXundreMNfyXE19ja0ihoolgTR0.png\",srcSet:\"https://framerusercontent.com/images/sXundreMNfyXE19ja0ihoolgTR0.png?scale-down-to=1024 762w,https://framerusercontent.com/images/sXundreMNfyXE19ja0ihoolgTR0.png 800w\"},className:\"framer-ujkm9d\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17o4cbv\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\"},children:\"Get credit for all your research\"})}),fonts:[\"FS;Work Sans-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\"},children:\"Get credit for all your research\"})}),className:\"framer-10sx9we\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1z133k0\",\"data-styles-preset\":\"tRR1463GM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, rgb(38, 0, 81))\"},children:\"Achieve a multi-faceted profile by sharing your unpublished research with Marbles, our innovative report format, and earning recognition for your peer review work.\"})})},TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1z133k0\",\"data-styles-preset\":\"tRR1463GM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, rgb(38, 0, 81))\"},children:\"Achieve a multi-faceted profile by sharing your unpublished research with Marbles, our innovative report format, and earning recognition for your peer review work.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-blmnkz\",\"data-styles-preset\":\"w7dbaqUIB\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, rgb(38, 0, 81))\"},children:\"Achieve a multi-faceted profile by sharing your unpublished research with Marbles, our innovative report format, and earning recognition for your peer review work.\"})}),className:\"framer-j6jl66\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1plfp35\",\"data-framer-name\":\"Feature 02\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-wj4d86 hidden-z8d4lj hidden-19t7jjz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+756+20+0+0+0+630.4+0+0+0),pixelHeight:983,pixelWidth:1500,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1600px), 1px)`,src:\"https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png\",srcSet:\"https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png?scale-down-to=512 512w,https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:983,pixelWidth:1500,src:\"https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png\",srcSet:\"https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png?scale-down-to=512 512w,https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png 1500w\"},className:\"framer-1u09oox\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10gg9y1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\"},children:\"Give research articles a new life\"})}),fonts:[\"FS;Work Sans-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\"},children:\"Give research articles a new life\"})}),className:\"framer-1nln8lq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1z133k0\",\"data-styles-preset\":\"tRR1463GM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, rgb(38, 0, 81))\"},children:\"Contribute to science reproducibility and open science by sharing findings that replicate, dispute or build on already published data, and that are linked to the original research article.\"})})},TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1z133k0\",\"data-styles-preset\":\"tRR1463GM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, rgb(38, 0, 81))\"},children:\"Contribute to science reproducibility and open science by sharing findings that replicate, dispute or build on already published data, and that are linked to the original research article.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-blmnkz\",\"data-styles-preset\":\"w7dbaqUIB\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, rgb(38, 0, 81))\"},children:\"Contribute to science reproducibility and open science by sharing findings that replicate, dispute or build on already published data, and that are linked to the original research article.\"})}),className:\"framer-1sisp6s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w41zw0\",children:isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+796+40+0+0+0+665.5+0+-134.2),pixelHeight:983,pixelWidth:1500,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1600px) / 2 - 10px, 1px)`,src:\"https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png\",srcSet:\"https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png?scale-down-to=512 512w,https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+796+20+0+20+0+798+0+0),pixelHeight:983,pixelWidth:1500,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1600px) / 2 - 10px, 1px)`,src:\"https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png\",srcSet:\"https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png?scale-down-to=512 512w,https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png 1500w\"},className:\"framer-hdmjpf hidden-10y99ve\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-so5hhq\",\"data-framer-name\":\"Feature 03\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-221s0d\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+796+40+0+0+0+857.1+0+-134.2),pixelHeight:713,pixelWidth:1e3,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1600px) / 2 - 10px, 1px)`,src:\"https://framerusercontent.com/images/wtPzH3Bk6a1qhEl2F9HX21u1Y.png\",srcSet:\"https://framerusercontent.com/images/wtPzH3Bk6a1qhEl2F9HX21u1Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/wtPzH3Bk6a1qhEl2F9HX21u1Y.png 1000w\"}},TSKcH6woy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+756+20+0+0+0+1025.4+0+0+0+0),pixelHeight:713,pixelWidth:1e3,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1600px)`,src:\"https://framerusercontent.com/images/wtPzH3Bk6a1qhEl2F9HX21u1Y.png\",srcSet:\"https://framerusercontent.com/images/wtPzH3Bk6a1qhEl2F9HX21u1Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/wtPzH3Bk6a1qhEl2F9HX21u1Y.png 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+796+20+0+20+0+1258+0+0),pixelHeight:713,pixelWidth:1e3,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1600px) / 2 - 10px, 1px)`,src:\"https://framerusercontent.com/images/wtPzH3Bk6a1qhEl2F9HX21u1Y.png\",srcSet:\"https://framerusercontent.com/images/wtPzH3Bk6a1qhEl2F9HX21u1Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/wtPzH3Bk6a1qhEl2F9HX21u1Y.png 1000w\"},className:\"framer-kgnuhb\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j3srja\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\"},children:\"Aligned with global initiatives for reform\"})}),fonts:[\"FS;Work Sans-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\"},children:\"Aligned with global initiatives for reform\"})}),className:\"framer-177s6yn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1z133k0\",\"data-styles-preset\":\"tRR1463GM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, rgb(38, 0, 81))\"},children:\"We support global initiatives like CoARA, DORA, the Barcelona Declaration, and the Leiden Manifesto in advocating for fair, transparent, and quality-focused research assessment. That is why Marbles are open-access, and undergo a transparent peer-review process.\"})})},TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1z133k0\",\"data-styles-preset\":\"tRR1463GM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, rgb(38, 0, 81))\"},children:\"We support global initiatives like CoARA, DORA, the Barcelona Declaration, and the Leiden Manifesto in advocating for fair, transparent, and quality-focused research assessment. That is why Marbles are open-access, and undergo a transparent peer-review process.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-blmnkz\",\"data-styles-preset\":\"w7dbaqUIB\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, rgb(38, 0, 81))\"},children:\"We support global initiatives like CoARA, DORA, the Barcelona Declaration, and the Leiden Manifesto in advocating for fair, transparent, and quality-focused research assessment. That is why Marbles are open-access, and undergo a transparent peer-review process.\"})}),className:\"framer-1c3h49h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i1vhdr\",\"data-framer-name\":\"Bubble\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1904.7+-760),pixelHeight:2076,pixelWidth:1909,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} + 405px)`,src:\"https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png\",srcSet:\"https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png?scale-down-to=1024 941w,https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png?scale-down-to=2048 1883w,https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png 1909w\"}},TSKcH6woy:{__framer__speed:85,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2176.4+-460),pixelHeight:2076,pixelWidth:1909,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} + 405px)`,src:\"https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png\",srcSet:\"https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png?scale-down-to=1024 941w,https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png?scale-down-to=2048 1883w,https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png 1909w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:75,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2574+450-1449.02),pixelHeight:2076,pixelWidth:1909,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} + 405px)`,src:\"https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png\",srcSet:\"https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png?scale-down-to=1024 941w,https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png?scale-down-to=2048 1883w,https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png 1909w\"},className:\"framer-5uk6w3\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f7gdn9\",\"data-framer-name\":\"RR\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xy7uf8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gekboh\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-193cyt2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vc4dSG4lC\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"FileText\",id:\"vc4dSG4lC\",layoutId:\"vc4dSG4lC\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-06fdfe91-09c9-4eb4-b1ef-d246ff1537a8, rgb(56, 0, 120))\"},children:\"Marbles: A new research output\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1b3ghq6\",\"data-styles-preset\":\"wQDKLEqdU\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-06fdfe91-09c9-4eb4-b1ef-d246ff1537a8, rgb(56, 0, 120))\"},children:\"Marbles: A new research output\"})}),className:\"framer-18ss7d6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kgy5da\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\"},children:\"Marbles provide a standardized format to share currently unpublishable experiments in the shape of short peer reviewed reports.\"})}),fonts:[\"FS;Work Sans-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\"},children:\"Marbles provide a standardized format to share currently unpublishable experiments in the shape of short peer reviewed reports.\"})}),className:\"framer-8zwvgu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mdy4ic\",\"data-framer-name\":\"RR Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15qs7vq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"oFGy7oiZH\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,height:\"100%\",id:\"oFGy7oiZH\",isMixedBorderRadius:false,isRed:false,layoutId:\"oFGy7oiZH\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:10,topRightRadius:10,url:\"https://youtu.be/vteh-1ITeXs\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xyap02\",\"data-framer-name\":\"CTAs\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PArJGzz5z\"},implicitPathVariables:undefined},{href:{webPageId:\"PArJGzz5z\"},implicitPathVariables:undefined},{href:{webPageId:\"PArJGzz5z\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{y:(componentViewport?.y||0)+0+2404.7+40+0+0+628+0+0},TSKcH6woy:{y:(componentViewport?.y||0)+0+2576.4+20+0+0+595.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"275px\",y:(componentViewport?.y||0)+0+3024+80+0+0+668+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-65qjqp-container\",nodeId:\"MXbqLLZ0p\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{P9iJ84I_E:resolvedLinks2[1]},TSKcH6woy:{P9iJ84I_E:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(CTA01Large,{height:\"100%\",id:\"MXbqLLZ0p\",layoutId:\"MXbqLLZ0p\",MQmTaNBq7:\"Learn More\",P9iJ84I_E:resolvedLinks2[0],style:{width:\"100%\"},variant:\"arpQf7rbl\",width:\"100%\"})})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tpm4kx\",\"data-framer-name\":\"How it works\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xetw5s\",\"data-framer-name\":\"How\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mb34az\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m9e4mw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"C6Q8Ry7HT\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Gear\",id:\"C6Q8Ry7HT\",layoutId:\"C6Q8Ry7HT\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, rgb(38, 0, 81))\"},children:\"How it works\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1b3ghq6\",\"data-styles-preset\":\"wQDKLEqdU\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-06fdfe91-09c9-4eb4-b1ef-d246ff1537a8, rgb(56, 0, 120))\"},children:\"How it works\"})}),className:\"framer-1x1u9i8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mfdean\",\"data-framer-name\":\"How it works\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dpcigv\",\"data-framer-name\":\"Description\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d8k8o\",\"data-border\":true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-l4pvwz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wSlvShhsa\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowCircleRight\",id:\"wSlvShhsa\",layoutId:\"wSlvShhsa\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Submit\"}),/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1z133k0\",\"data-styles-preset\":\"tRR1463GM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Follow our guidelines and submit your Marble in a streamlined process to minimize your workload: just your data and a clear description.\"})]})},TSKcH6woy:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Submit\"}),/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1z133k0\",\"data-styles-preset\":\"tRR1463GM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Follow our guidelines and submit your Marble in a streamlined process to minimize your workload: just your data and a clear description.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Submit\"}),/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-blmnkz\",\"data-styles-preset\":\"w7dbaqUIB\",style:{\"--framer-text-alignment\":\"center\"},children:\"Follow our guidelines and submit your Marble in a streamlined process to minimize your workload: just your data and a clear description.\"})]}),className:\"framer-hpv845\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3ecvi\",\"data-border\":true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bpbmb9-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"cVJOHufH6\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"cVJOHufH6\",layoutId:\"cVJOHufH6\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Review\"}),/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1z133k0\",\"data-styles-preset\":\"tRR1463GM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Each Marble will be reviewed by at least three reviewers. Sign up as a reviewer and get discounted reporting fees.\"})]})},TSKcH6woy:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Review\"}),/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1z133k0\",\"data-styles-preset\":\"tRR1463GM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Each Marble will be reviewed by at least three reviewers. Sign up as a reviewer and get discounted reporting fees.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Review\"}),/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-blmnkz\",\"data-styles-preset\":\"w7dbaqUIB\",style:{\"--framer-text-alignment\":\"center\"},children:\"Each Marble will be reviewed by at least three reviewers. Sign up as a reviewer and get discounted reporting fees.\"})]}),className:\"framer-vyjyzj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u377v9\",\"data-border\":true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rym8fs-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"BqZ91NBUQ\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ChartBar\",id:\"BqZ91NBUQ\",layoutId:\"BqZ91NBUQ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Report\"}),/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1z133k0\",\"data-styles-preset\":\"tRR1463GM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"After your Marble is approved, pay the reporting fees and your findings will be shared in Open Access, along with its reviews.\"})]})},TSKcH6woy:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Report\"}),/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1z133k0\",\"data-styles-preset\":\"tRR1463GM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"After your Marble is approved, pay the reporting fees and your findings will be shared in Open Access, along with its reviews.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Report\"}),/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-blmnkz\",\"data-styles-preset\":\"w7dbaqUIB\",style:{\"--framer-text-alignment\":\"center\"},children:\"After your Marble is approved, pay the reporting fees and your findings will be shared in Open Access, along with its reviews.\"})]}),className:\"framer-pko8ba\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a98qi7\",\"data-framer-name\":\"CTAs\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Lqvrl4Fnn\"},implicitPathVariables:undefined},{href:{webPageId:\"Lqvrl4Fnn\"},implicitPathVariables:undefined},{href:{webPageId:\"Lqvrl4Fnn\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{y:(componentViewport?.y||0)+0+3202.7+40+642.5+40},TSKcH6woy:{y:(componentViewport?.y||0)+0+3281.8+0+920.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"275px\",y:(componentViewport?.y||0)+0+3902+40+734.5+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13aniqj-container\",nodeId:\"ieAqX5A4o\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{P9iJ84I_E:resolvedLinks3[1]},TSKcH6woy:{P9iJ84I_E:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(CTA01Large,{height:\"100%\",id:\"ieAqX5A4o\",layoutId:\"ieAqX5A4o\",MQmTaNBq7:\"Submit a Marble\",P9iJ84I_E:resolvedLinks3[0],style:{width:\"100%\"},variant:\"obusgfYK0\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"B7qTBi0uP\"},implicitPathVariables:undefined},{href:{webPageId:\"B7qTBi0uP\"},implicitPathVariables:undefined},{href:{webPageId:\"B7qTBi0uP\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{y:(componentViewport?.y||0)+0+3202.7+40+642.5+40},TSKcH6woy:{y:(componentViewport?.y||0)+0+3281.8+0+920.8+0+70}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"275px\",y:(componentViewport?.y||0)+0+3902+40+734.5+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3txd7q-container\",nodeId:\"Kxnn8_R4j\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{P9iJ84I_E:resolvedLinks4[1]},TSKcH6woy:{P9iJ84I_E:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(CTA01Large,{height:\"100%\",id:\"Kxnn8_R4j\",layoutId:\"Kxnn8_R4j\",MQmTaNBq7:\"See Pricing\",P9iJ84I_E:resolvedLinks4[0],style:{width:\"100%\"},variant:\"arpQf7rbl\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{y:(componentViewport?.y||0)+0+4055.2},TSKcH6woy:{y:(componentViewport?.y||0)+0+4372.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:549,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4806.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bnjw0d-container\",nodeId:\"cTtEFIh4E\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{variant:\"XVHkS53zb\"},TSKcH6woy:{variant:\"rmqADdS9b\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"cTtEFIh4E\",layoutId:\"cTtEFIh4E\",style:{width:\"100%\"},variant:\"ZakCo4neg\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-u1o43t-container\",layoutScroll:true,nodeId:\"u7vxrZp4q\",rendersWithMotion:true,scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{variant:\"s_UFZVvYl\"},TSKcH6woy:{variant:\"e5aYPXAus\"}},children:/*#__PURE__*/_jsx(TopNav,{height:\"100%\",id:\"u7vxrZp4q\",layoutId:\"u7vxrZp4q\",style:{height:\"100%\",width:\"100%\"},variant:\"UgO6b0QaI\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Es2fK.framer-1u40m72, .framer-Es2fK .framer-1u40m72 { display: block; }\",\".framer-Es2fK.framer-z8d4lj { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-Es2fK .framer-xclo99 { --border-bottom-width: 1px; --border-color: rgba(38, 0, 81, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 120px 40px 40px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-Es2fK .framer-7t9d0j { align-content: center; align-items: center; background: linear-gradient(173deg, var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, #260051) 11.475154842342342%, var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212)) 87.41103603603604%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 500px; justify-content: center; left: 40px; padding: 100px; position: absolute; right: 40px; top: 120px; z-index: 1; }\",\".framer-Es2fK .framer-1hf36l9 { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 500px; justify-content: center; max-width: 1600px; overflow: auto; padding: 100px; position: relative; width: 100%; z-index: 1; }\",\".framer-Es2fK .framer-cqmft { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Es2fK .framer-1qkdvo1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 920px; }\",\".framer-Es2fK .framer-bkhffv-container, .framer-Es2fK .framer-14z3co1-container { flex: none; height: auto; position: relative; width: 30%; }\",\".framer-Es2fK .framer-4ouspw { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1600px; overflow: auto; padding: 40px; position: relative; width: 1120px; z-index: 1; }\",\".framer-Es2fK .framer-1j0goc1, .framer-Es2fK .framer-10mwrnn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Es2fK .framer-8wygu3, .framer-Es2fK .framer-1xijzky, .framer-Es2fK .framer-jqpf3n, .framer-Es2fK .framer-18ss7d6, .framer-Es2fK .framer-1x1u9i8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1000px; position: relative; white-space: pre-wrap; width: 850px; word-break: break-word; word-wrap: break-word; }\",\".framer-Es2fK .framer-1ppbf6r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 20px 80px 20px; position: relative; width: 100%; z-index: 1; }\",\".framer-Es2fK .framer-1t9bphb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-Es2fK .framer-1e42h0q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Es2fK .framer-1sqwyer { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Es2fK .framer-122la61 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 40px 10px 40px; position: relative; width: 100%; }\",\".framer-Es2fK .framer-afizuv-container, .framer-Es2fK .framer-193cyt2-container, .framer-Es2fK .framer-m9e4mw-container, .framer-Es2fK .framer-l4pvwz-container, .framer-Es2fK .framer-1bpbmb9-container, .framer-Es2fK .framer-rym8fs-container { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-Es2fK .framer-gte7pk { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1600px; overflow: auto; padding: 10px 40px 10px 40px; position: relative; width: 1120px; z-index: 1; }\",\".framer-Es2fK .framer-12yena4, .framer-Es2fK .framer-1plfp35, .framer-Es2fK .framer-so5hhq { align-content: center; align-items: center; aspect-ratio: 2.9473684210526314 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 380px); justify-content: center; max-width: 1600px; overflow: auto; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Es2fK .framer-1past3x { align-content: center; align-items: center; background: linear-gradient(123deg, var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, #00bfd4) 62.726984797297305%, var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, rgb(38, 0, 81)) 65.49655123873875%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Es2fK .framer-ujkm9d { aspect-ratio: 1.4473684210526316 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 380px); overflow: visible; position: relative; width: 1px; }\",\".framer-Es2fK .framer-17o4cbv, .framer-Es2fK .framer-10gg9y1, .framer-Es2fK .framer-1j3srja { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 50%; }\",\".framer-Es2fK .framer-10sx9we, .framer-Es2fK .framer-j6jl66, .framer-Es2fK .framer-1nln8lq, .framer-Es2fK .framer-1sisp6s, .framer-Es2fK .framer-177s6yn, .framer-Es2fK .framer-1c3h49h, .framer-Es2fK .framer-hpv845, .framer-Es2fK .framer-vyjyzj, .framer-Es2fK .framer-pko8ba { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1000px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Es2fK .framer-wj4d86 { align-content: center; align-items: center; background: linear-gradient(123deg, var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, #00bfd4) 0%, var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, rgb(38, 0, 81)) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 250px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Es2fK .framer-1u09oox { aspect-ratio: 1.4 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 143px); overflow: visible; position: relative; width: 1px; }\",\".framer-Es2fK .framer-1w41zw0 { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Es2fK .framer-hdmjpf, .framer-Es2fK .framer-kgnuhb { aspect-ratio: 1.4473684210526316 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 380px); overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Es2fK .framer-221s0d { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Es2fK .framer-1i1vhdr { align-content: center; align-items: center; background: linear-gradient(173deg, var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, #260051) 33%, var(--token-06fdfe91-09c9-4eb4-b1ef-d246ff1537a8, rgb(56, 0, 120)) 74%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 450px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Es2fK .framer-5uk6w3 { aspect-ratio: 1.3333333333333333 / 1; bottom: 245px; flex: none; height: var(--framer-aspect-ratio-supported, 1204px); left: -202px; overflow: hidden; position: absolute; right: -203px; z-index: 1; }\",\".framer-Es2fK .framer-1f7gdn9 { align-content: center; align-items: center; background-color: rgba(0, 191, 212, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 40px 40px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-Es2fK .framer-1xy7uf8 { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1600px; overflow: auto; padding: 0px 0px 40px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Es2fK .framer-gekboh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 40px 20px 40px; position: relative; width: 100%; }\",\".framer-Es2fK .framer-kgy5da { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Es2fK .framer-8zwvgu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Es2fK .framer-1mdy4ic { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1600px; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-Es2fK .framer-15qs7vq-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 630px); position: relative; width: 100%; }\",\".framer-Es2fK .framer-xyap02 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Es2fK .framer-65qjqp-container, .framer-Es2fK .framer-13aniqj-container, .framer-Es2fK .framer-3txd7q-container { flex: none; height: auto; position: relative; width: 275px; }\",\".framer-Es2fK .framer-tpm4kx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 40px 30px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-Es2fK .framer-1xetw5s { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1600px; overflow: auto; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Es2fK .framer-mb34az { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-Es2fK .framer-1mfdean { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1600px; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Es2fK .framer-dpcigv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 493px; justify-content: center; overflow: hidden; padding: 20px 20px 60px 20px; position: relative; width: 100%; }\",\".framer-Es2fK .framer-1d8k8o, .framer-Es2fK .framer-3ecvi, .framer-Es2fK .framer-1u377v9 { --border-bottom-width: 1px; --border-color: rgba(0, 191, 212, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, #260051) 0%, rgb(0, 101, 156) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Es2fK .framer-1a98qi7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-Es2fK .framer-bnjw0d-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-Es2fK .framer-u1o43t-container { flex: none; height: 90px; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-Es2fK[data-border=\"true\"]::after, .framer-Es2fK [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-Es2fK.framer-z8d4lj { width: 810px; } .framer-Es2fK .framer-xclo99 { align-content: flex-start; align-items: flex-start; } .framer-Es2fK .framer-7t9d0j { max-height: 500px; } .framer-Es2fK .framer-1hf36l9 { max-height: 500px; overflow: hidden; will-change: var(--framer-will-change-override, transform); } .framer-Es2fK .framer-4ouspw, .framer-Es2fK .framer-gte7pk { width: 100%; } .framer-Es2fK .framer-8wygu3, .framer-Es2fK .framer-1xijzky, .framer-Es2fK .framer-jqpf3n, .framer-Es2fK .framer-18ss7d6, .framer-Es2fK .framer-1x1u9i8 { max-width: unset; width: 90%; } .framer-Es2fK .framer-1ppbf6r, .framer-Es2fK .framer-1f7gdn9, .framer-Es2fK .framer-tpm4kx { align-content: flex-start; align-items: flex-start; padding: 40px; } .framer-Es2fK .framer-1t9bphb { padding: 0px; } .framer-Es2fK .framer-1e42h0q { padding: 0px 0px 60px 0px; } .framer-Es2fK .framer-12yena4, .framer-Es2fK .framer-1plfp35, .framer-Es2fK .framer-so5hhq { aspect-ratio: unset; height: min-content; } .framer-Es2fK .framer-1past3x { height: 248px; } .framer-Es2fK .framer-ujkm9d, .framer-Es2fK .framer-hdmjpf { height: var(--framer-aspect-ratio-supported, 246px); } .framer-Es2fK .framer-17o4cbv, .framer-Es2fK .framer-10gg9y1, .framer-Es2fK .framer-1j3srja { height: min-content; padding: 20px; } .framer-Es2fK .framer-10sx9we, .framer-Es2fK .framer-j6jl66, .framer-Es2fK .framer-1nln8lq, .framer-Es2fK .framer-1sisp6s, .framer-Es2fK .framer-177s6yn, .framer-Es2fK .framer-1c3h49h, .framer-Es2fK .framer-hpv845, .framer-Es2fK .framer-vyjyzj, .framer-Es2fK .framer-pko8ba { max-width: unset; } .framer-Es2fK .framer-1w41zw0, .framer-Es2fK .framer-221s0d { align-self: stretch; height: auto; } .framer-Es2fK .framer-kgnuhb { height: var(--framer-aspect-ratio-supported, 245px); } .framer-Es2fK .framer-1i1vhdr { align-content: flex-start; align-items: flex-start; height: 500px; } .framer-Es2fK .framer-5uk6w3 { bottom: unset; height: var(--framer-aspect-ratio-supported, 912px); top: -760px; } .framer-Es2fK .framer-8zwvgu { width: 90%; } .framer-Es2fK .framer-1mdy4ic { padding: 20px 0px 20px 0px; } .framer-Es2fK .framer-15qs7vq-container { height: var(--framer-aspect-ratio-supported, 411px); } .framer-Es2fK .framer-xyap02 { flex-direction: column; } .framer-Es2fK .framer-1mfdean { max-height: 500px; padding: 10px; } .framer-Es2fK .framer-dpcigv { height: 381px; padding: 0px; } .framer-Es2fK .framer-1d8k8o, .framer-Es2fK .framer-3ecvi, .framer-Es2fK .framer-1u377v9 { padding: 20px; } .framer-Es2fK .framer-1a98qi7 { padding: 40px 0px 40px 0px; }}\",\"@media (max-width: 809px) { .framer-Es2fK.framer-z8d4lj { width: 390px; } .framer-Es2fK .framer-xclo99 { padding: 120px 20px 40px 20px; } .framer-Es2fK .framer-7t9d0j { left: 20px; right: 20px; } .framer-Es2fK .framer-1hf36l9 { gap: 40px; max-width: unset; padding: 40px; } .framer-Es2fK .framer-cqmft { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-Es2fK .framer-1qkdvo1 { flex-direction: column; width: 100%; } .framer-Es2fK .framer-bkhffv-container, .framer-Es2fK .framer-14z3co1-container { width: 100%; } .framer-Es2fK .framer-4ouspw { padding: 20px; width: 100%; } .framer-Es2fK .framer-8wygu3, .framer-Es2fK .framer-1xijzky, .framer-Es2fK .framer-jqpf3n, .framer-Es2fK .framer-18ss7d6, .framer-Es2fK .framer-1x1u9i8 { max-width: unset; width: 100%; } .framer-Es2fK .framer-1ppbf6r, .framer-Es2fK .framer-1f7gdn9 { padding: 20px 20px 40px 20px; } .framer-Es2fK .framer-1t9bphb { gap: 20px; padding: 0px; } .framer-Es2fK .framer-1e42h0q { gap: 40px; } .framer-Es2fK .framer-122la61 { padding: 30px 40px 0px 40px; } .framer-Es2fK .framer-gte7pk { padding: 0px; width: 100%; } .framer-Es2fK .framer-12yena4, .framer-Es2fK .framer-1plfp35, .framer-Es2fK .framer-so5hhq { aspect-ratio: unset; flex-direction: column; gap: 20px; height: min-content; } .framer-Es2fK .framer-1past3x { flex: none; height: 250px; width: 100%; } .framer-Es2fK .framer-ujkm9d { aspect-ratio: 1.4 / 1; height: var(--framer-aspect-ratio-supported, 143px); } .framer-Es2fK .framer-17o4cbv, .framer-Es2fK .framer-1j3srja { height: min-content; padding: 0px; width: 100%; } .framer-Es2fK .framer-10sx9we, .framer-Es2fK .framer-j6jl66, .framer-Es2fK .framer-1nln8lq, .framer-Es2fK .framer-1sisp6s, .framer-Es2fK .framer-177s6yn, .framer-Es2fK .framer-1c3h49h, .framer-Es2fK .framer-hpv845, .framer-Es2fK .framer-vyjyzj, .framer-Es2fK .framer-pko8ba { max-width: unset; } .framer-Es2fK .framer-wj4d86 { flex: none; order: 0; width: 100%; } .framer-Es2fK .framer-10gg9y1 { height: min-content; order: 1; padding: 0px; width: 100%; } .framer-Es2fK .framer-1w41zw0 { height: 1px; order: 3; width: 100%; } .framer-Es2fK .framer-221s0d { flex: none; flex-direction: column; height: min-content; width: 100%; } .framer-Es2fK .framer-kgnuhb { aspect-ratio: 1.4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 143px); width: 100%; } .framer-Es2fK .framer-1i1vhdr { height: 400px; } .framer-Es2fK .framer-5uk6w3 { bottom: unset; height: var(--framer-aspect-ratio-supported, 596px); top: -460px; } .framer-Es2fK .framer-1xy7uf8, .framer-Es2fK .framer-1mdy4ic { padding: 0px; } .framer-Es2fK .framer-gekboh { padding: 40px 40px 0px 40px; } .framer-Es2fK .framer-kgy5da { padding: 10px; } .framer-Es2fK .framer-15qs7vq-container { height: var(--framer-aspect-ratio-supported, 113px); } .framer-Es2fK .framer-xyap02 { flex-direction: column; } .framer-Es2fK .framer-tpm4kx { gap: 0px; padding: 0px; } .framer-Es2fK .framer-1xetw5s { padding: 20px 20px 0px 20px; } .framer-Es2fK .framer-1mfdean { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; padding: 0px 0px 20px 0px; } .framer-Es2fK .framer-dpcigv { flex-direction: column; height: min-content; padding: 20px; } .framer-Es2fK .framer-1d8k8o, .framer-Es2fK .framer-3ecvi { --border-color: rgba(255, 255, 255, 0.15); flex: none; height: min-content; padding: 20px; width: 100%; } .framer-Es2fK .framer-1u377v9 { --border-color: rgba(255, 255, 255, 0.15); background: linear-gradient(180deg, var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, #260051) 0%, var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212)) 100%); flex: none; height: min-content; padding: 20px; width: 100%; } .framer-Es2fK .framer-1a98qi7 { flex-direction: column; gap: 20px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5968\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"b_1YIMwOL\":{\"layout\":[\"fixed\",\"auto\"]},\"TSKcH6woy\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerLRnb1ktvN=withCSS(Component,css,\"framer-Es2fK\");export default FramerLRnb1ktvN;FramerLRnb1ktvN.displayName=\"Home\";FramerLRnb1ktvN.defaultProps={height:5968,width:1200};addFonts(FramerLRnb1ktvN,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Work Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MBOJEUZXMXZXHAW3KKWUFI6R7OIPIRYU/FBJ6H6I7LKZ2WGOVP25FDJOOUIMXMY2Z/THXRGVPNH45VMHCGWEEJATJ2RCOHTNBI.woff2\",weight:\"500\"}]},...CTA01LargeFonts,...PhosphorFonts,...YouTubeFonts,...FooterFonts,...TopNavFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLRnb1ktvN\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"b_1YIMwOL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TSKcH6woy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"5968\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "+2BAAgT,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,GAAQC,EAAQ,EAAEJ,EAC5uBK,EAAaD,GAAS,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,EAAO,GAAO5B,GAAO8B,EAAa,IAAI,QAAQ,OAAO,EAAG,IAAMC,GAAY,CAAC,MAAMzB,GAAO,gBAAgB,MAAM,oGAAoG,IAAIuB,GAAS,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,GAAQ7B,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,ECtBjU,IAAMyB,GAAgBC,EAASC,CAAU,EAAQC,GAAcF,EAASG,CAAQ,EAAQC,GAAYC,EAAOC,CAAK,EAAQC,GAAaP,EAASQ,CAAO,EAAQC,GAAYT,EAASU,CAAM,EAAQC,GAAYX,EAASY,CAAM,EAAQC,GAAgBR,EAAOS,CAAS,EAAQC,GAAY,CAAC,UAAU,6CAA6C,UAAU,sBAAsB,UAAU,oBAAoB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,EAAQC,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAA6BC,GAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,GAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,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,EAAQ,GAAmB,IAAI,CAAC,IAAMW,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,CAACa,EAAYC,CAAmB,EAAEC,GAA8BP,EAAQhC,GAAY,EAAK,EAAQwC,EAAe,OAAgKC,EAAkBC,EAAGxC,GAAkB,GAAjK,CAAa4B,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQa,EAAOC,GAAU,EAAQC,EAAY,IAAQ,CAAC5C,GAAU,GAAiBoC,IAAc,YAA6CS,EAAa,IAAS7C,GAAU,EAAiBoC,IAAc,YAAtB,GAA6D,OAAAU,GAAiB,CAAC,CAAC,EAAsBtC,EAAKuC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAA7C,EAAiB,EAAE,SAAsB8C,EAAMC,GAAY,CAAC,GAAGnB,GAAUT,EAAgB,SAAS,CAAcb,EAAKH,GAAU,CAAC,MAAM,+CAA+C,CAAC,EAAe2C,EAAME,GAAO,IAAI,CAAC,GAAGlB,EAAU,UAAUS,EAAGD,EAAkB,gBAAgBX,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcoB,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,SAAS,CAAcxC,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,CAAC,EAAeA,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQgB,GAA2B1B,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,IAAI,uEAAuE,OAAO,uQAAuQ,CAAC,CAAC,EAAE,SAAsBsB,EAAM1D,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ8D,GAA2B1B,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,OAAO,mBAAmB,IAAI,uEAAuE,OAAO,uQAAuQ,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAclB,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB5B,EAAW6C,EAAS,CAAC,SAAsBL,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAcxC,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,kBAAkB,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAewC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcxC,EAAK+C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4BhD,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQV,GAAmB,OAAO,OAAO,YAAY,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,GAAG,IAAI,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAG/B,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,IAAI,IAAI,EAAE,SAAsBlB,EAAKV,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBU,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUoB,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsBhD,EAAKvB,EAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,oBAAoB,UAAUuE,EAAc,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehD,EAAK+C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASG,GAA6BlD,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQV,GAAmB,OAAO,OAAO,YAAY,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,GAAG,IAAI,EAAE,EAAE,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAG/B,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,IAAI,IAAI,EAAE,SAAsBlB,EAAKV,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBU,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUsB,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBlD,EAAKvB,EAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,kBAAkB,UAAUyE,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelD,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAsBA,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB5B,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,mEAAmE,EAAE,SAAS,0JAA0J,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,0JAA0J,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBwC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,sBAAsB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAcxC,EAAKiD,EAA0B,CAAC,SAAsBjD,EAAKV,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBU,EAAKrB,EAAS,CAAC,MAAM,sEAAsE,OAAO,OAAO,WAAW,QAAQ,cAAc,YAAY,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB5B,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAsBA,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB5B,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAS,0OAA0O,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,qBAAqB,CAAC,CAAC,EAAE,SAAsBA,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAS,0OAA0O,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAS,CAAcxC,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQgB,GAA2B1B,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,WAAWA,GAAmB,OAAO,OAAO,oCAAoC,IAAI,uEAAuE,OAAO,wKAAwK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ0B,GAA2B1B,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,WAAWA,GAAmB,OAAO,OAAO,yBAAyB,IAAI,uEAAuE,OAAO,wKAAwK,CAAC,CAAC,EAAE,SAAsBlB,EAAKlB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ8D,GAA2B1B,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,WAAWA,GAAmB,OAAO,OAAO,oCAAoC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcxC,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB5B,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,kCAAkC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,qBAAqB,CAAC,CAAC,EAAE,SAAsBA,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,kCAAkC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB5B,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,mEAAmE,EAAE,SAAS,qKAAqK,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,mEAAmE,EAAE,SAAS,qKAAqK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,mEAAmE,EAAE,SAAS,qKAAqK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAS,CAACJ,EAAY,GAAgBpC,EAAK,MAAM,CAAC,UAAU,6CAA6C,SAAsBA,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQgB,GAA2B1B,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,WAAWA,GAAmB,OAAO,OAAO,yBAAyB,IAAI,oEAAoE,OAAO,6PAA6P,CAAC,CAAC,EAAE,SAAsBlB,EAAKlB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,IAAI,oEAAoE,OAAO,6PAA6P,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0D,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcxC,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB5B,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,mCAAmC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,qBAAqB,CAAC,CAAC,EAAE,SAAsBA,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,mCAAmC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB5B,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,mEAAmE,EAAE,SAAS,8LAA8L,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,mEAAmE,EAAE,SAAS,8LAA8L,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,mEAAmE,EAAE,SAAS,8LAA8L,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAASqC,EAAa,GAAgBrC,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQgB,GAA2B1B,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,WAAWA,GAAmB,OAAO,OAAO,oCAAoC,IAAI,oEAAoE,OAAO,6PAA6P,CAAC,CAAC,EAAE,SAAsBlB,EAAKlB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ8D,GAA2B1B,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,WAAWA,GAAmB,OAAO,OAAO,oCAAoC,IAAI,oEAAoE,OAAO,6PAA6P,EAAE,UAAU,8BAA8B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,SAAS,CAAcxC,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQgB,GAA2B1B,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,WAAWA,GAAmB,OAAO,OAAO,oCAAoC,IAAI,qEAAqE,OAAO,oKAAoK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ0B,GAA2B1B,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,OAAOA,GAAmB,OAAO,OAAO,mBAAmB,IAAI,qEAAqE,OAAO,oKAAoK,CAAC,CAAC,EAAE,SAAsBlB,EAAKlB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ8D,GAA2B1B,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,GAAG,EAAE,KAAK,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,WAAWA,GAAmB,OAAO,OAAO,oCAAoC,IAAI,qEAAqE,OAAO,oKAAoK,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcxC,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB5B,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,4CAA4C,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,qBAAqB,CAAC,CAAC,EAAE,SAAsBA,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,4CAA4C,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB5B,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,mEAAmE,EAAE,SAAS,uQAAuQ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,mEAAmE,EAAE,SAAS,uQAAuQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,mEAAmE,EAAE,SAAS,uQAAuQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAsBA,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQgB,GAA2B1B,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQA,GAAmB,OAAO,OAAO,YAAY,IAAI,uEAAuE,OAAO,uQAAuQ,CAAC,EAAE,UAAU,CAAC,gBAAgB,GAAG,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ0B,GAA2B1B,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQA,GAAmB,OAAO,OAAO,YAAY,IAAI,uEAAuE,OAAO,uQAAuQ,CAAC,CAAC,EAAE,SAAsBlB,EAAKpB,GAAY,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQgE,GAA2B1B,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,OAAO,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQA,GAAmB,OAAO,OAAO,YAAY,IAAI,uEAAuE,OAAO,uQAAuQ,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,KAAK,SAAsBwC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAcxC,EAAKiD,EAA0B,CAAC,SAAsBjD,EAAKV,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBU,EAAKrB,EAAS,CAAC,MAAM,sEAAsE,OAAO,OAAO,WAAW,QAAQ,cAAc,WAAW,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB5B,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,gCAAgC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,gCAAgC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAsBA,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB5B,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAS,iIAAiI,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,qBAAqB,CAAC,CAAC,EAAE,SAAsBA,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAS,iIAAiI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAsBA,EAAKiD,EAA0B,CAAC,SAAsBjD,EAAKV,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBU,EAAKhB,EAAQ,CAAC,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,MAAM,GAAM,SAAS,YAAY,KAAK,MAAM,WAAW,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,eAAe,cAAc,GAAG,eAAe,GAAG,IAAI,+BAA+B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegB,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAsBA,EAAK+C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASI,GAA6BnD,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGV,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,MAAM,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAG/B,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,SAAsBlB,EAAKV,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBU,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUuB,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBnD,EAAKvB,EAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,aAAa,UAAU0E,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeX,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAS,CAAcxC,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,SAAsBwC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAcxC,EAAKiD,EAA0B,CAAC,SAAsBjD,EAAKV,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBU,EAAKrB,EAAS,CAAC,MAAM,sEAAsE,OAAO,OAAO,WAAW,QAAQ,cAAc,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB5B,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,mEAAmE,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAW6C,EAAS,CAAC,SAAsB7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAsBwC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,SAAS,CAAcxC,EAAKiD,EAA0B,CAAC,SAAsBjD,EAAKV,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBU,EAAKrB,EAAS,CAAC,MAAM,sEAAsE,OAAO,OAAO,WAAW,QAAQ,cAAc,mBAAmB,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBY,EAAYK,EAAS,CAAC,SAAS,CAAc7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,QAAQ,CAAC,EAAeA,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,0IAA0I,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBwC,EAAYK,EAAS,CAAC,SAAS,CAAc7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,QAAQ,CAAC,EAAeA,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,0IAA0I,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAYK,EAAS,CAAC,SAAS,CAAc7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,QAAQ,CAAC,EAAeA,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,0IAA0I,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAM,MAAM,CAAC,UAAU,eAAe,cAAc,GAAK,SAAS,CAAcxC,EAAKiD,EAA0B,CAAC,SAAsBjD,EAAKV,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBU,EAAKrB,EAAS,CAAC,MAAM,sEAAsE,OAAO,OAAO,WAAW,QAAQ,cAAc,cAAc,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBY,EAAYK,EAAS,CAAC,SAAS,CAAc7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,QAAQ,CAAC,EAAeA,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,oHAAoH,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBwC,EAAYK,EAAS,CAAC,SAAS,CAAc7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,QAAQ,CAAC,EAAeA,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,oHAAoH,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAYK,EAAS,CAAC,SAAS,CAAc7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,QAAQ,CAAC,EAAeA,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,oHAAoH,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,SAAS,CAAcxC,EAAKiD,EAA0B,CAAC,SAAsBjD,EAAKV,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBU,EAAKrB,EAAS,CAAC,MAAM,sEAAsE,OAAO,OAAO,WAAW,QAAQ,cAAc,WAAW,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBY,EAAYK,EAAS,CAAC,SAAS,CAAc7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,QAAQ,CAAC,EAAeA,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,gIAAgI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBwC,EAAYK,EAAS,CAAC,SAAS,CAAc7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,QAAQ,CAAC,EAAeA,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,gIAAgI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAYK,EAAS,CAAC,SAAS,CAAc7C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,QAAQ,CAAC,EAAeA,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,gIAAgI,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcxC,EAAK+C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASK,GAA6BpD,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGV,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,MAAM,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,MAAM,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAG/B,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,MAAM,EAAE,SAAsBlB,EAAKV,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBU,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUwB,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBpD,EAAKvB,EAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,kBAAkB,UAAU2E,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepD,EAAK+C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASM,GAA6BrD,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGV,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,MAAM,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAG/B,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,MAAM,EAAE,SAAsBlB,EAAKV,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBU,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUyB,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBrD,EAAKvB,EAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,cAAc,UAAU4E,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerD,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGV,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,IAAI,MAAM/B,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,SAAsBlB,EAAKV,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBU,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB5B,EAAKd,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAKiD,EAA0B,CAAC,OAAO,GAAG,MAAM/B,GAAmB,OAAO,QAAQ,EAAE,EAAE,SAAsBlB,EAAKX,GAAgB,CAAC,kBAAkB,CAAC,WAAWM,EAAW,EAAE,sBAAsB,GAAM,0BAA0B,CAAC,UAAU,OAAO,OAAOC,EAAS,EAAE,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,aAAa,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBI,EAAK2C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB5B,EAAKZ,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQsD,GAAI,CAAC,kFAAkF,kFAAkF,kSAAkS,kfAAkf,0mBAA0mB,yaAAya,4LAA4L,8QAA8Q,gJAAgJ,+aAA+a,4SAA4S,gYAAgY,gTAAgT,8QAA8Q,iRAAiR,gRAAgR,gSAAgS,kTAAkT,8bAA8b,6aAA6a,+oBAA+oB,gUAAgU,uUAAuU,yfAAyf,gnBAAgnB,kTAAkT,ocAAoc,yZAAyZ,uQAAuQ,ucAAuc,yOAAyO,0VAA0V,0bAA0b,+RAA+R,iSAAiS,iPAAiP,iTAAiT,sLAAsL,4QAA4Q,0LAA0L,+SAA+S,6aAA6a,gRAAgR,4ZAA4Z,sRAAsR,q/BAAq/B,0RAA0R,oHAAoH,qIAAqI,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,gcAAgc,iiFAAiiF,2uHAA2uH,EAaxkxEC,EAAgBC,GAAQjD,GAAU+C,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,OAAOA,EAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,YAAY,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGhF,GAAgB,GAAGG,GAAc,GAAGK,GAAa,GAAGE,GAAY,GAAGE,GAAY,GAAGwE,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACx1E,IAAMC,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,qBAAuB,OAAO,yBAA2B,OAAO,sBAAwB,IAAI,4BAA8B,OAAO,qBAAuB,4BAA4B,yBAA2B,QAAQ,kBAAoB,OAAO,6BAA+B,OAAO,oCAAsC,4JAA0L,qBAAuB,OAAO,sBAAwB,MAAM,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", "CTA01LargeFonts", "getFonts", "a2Snv03tK_default", "PhosphorFonts", "Icon", "ImageWithFX", "withFX", "Image2", "YouTubeFonts", "Youtube", "FooterFonts", "C11VAT1Cd_default", "TopNavFonts", "gHsoPBLuF_default", "ContainerWithFX", "Container", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "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", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "getLoadingLazyAtYPosition", "x", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "css", "FramerLRnb1ktvN", "withCSS", "LRnb1ktvN_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
