{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/KkOsUvYGQ2Jfsqsy4o0s/Q3zMkoIzDyU0332Bi5kS/Io4k5_4yt.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,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.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://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// 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(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,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\"},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(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__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===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,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 embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High: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 element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn 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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import NavBar from\"#framer/local/canvasComponent/MX0JUJMzQ/MX0JUJMzQ.js\";import*as sharedStyle4 from\"#framer/local/css/AQ_vqUco7/AQ_vqUco7.js\";import*as sharedStyle2 from\"#framer/local/css/B9xiLLRMf/B9xiLLRMf.js\";import*as sharedStyle from\"#framer/local/css/EefCcF2aJ/EefCcF2aJ.js\";import*as sharedStyle8 from\"#framer/local/css/fDIwV7g1Y/fDIwV7g1Y.js\";import*as sharedStyle1 from\"#framer/local/css/hCyEJQw3f/hCyEJQw3f.js\";import*as sharedStyle3 from\"#framer/local/css/J7kaFhLju/J7kaFhLju.js\";import*as sharedStyle9 from\"#framer/local/css/ro7OPezbn/ro7OPezbn.js\";import*as sharedStyle6 from\"#framer/local/css/uPvP4_WQI/uPvP4_WQI.js\";import*as sharedStyle7 from\"#framer/local/css/x_9tA1Yj5/x_9tA1Yj5.js\";import*as sharedStyle5 from\"#framer/local/css/y9pdrBkB5/y9pdrBkB5.js\";import metadataProvider from\"#framer/local/webPageMetadata/Io4k5_4yt/Io4k5_4yt.js\";const NavBarFonts=getFonts(NavBar);const MotionDivWithFX=withFX(motion.div);const YouTubeFonts=getFonts(YouTube);const IconoirFonts=getFonts(Iconoir);const breakpoints={LioXpJfEK:\"(min-width: 1200px)\",lsHzu_jty:\"(min-width: 810px) and (max-width: 1199px)\",PT3kxTPR1:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-zsQl9\";const variantClassNames={LioXpJfEK:\"framer-v-1rx4dfd\",lsHzu_jty:\"framer-v-1c19wr4\",PT3kxTPR1:\"framer-v-h200ky\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition1={delay:.2,duration:1,ease:[.03,.86,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition2={delay:0,duration:1,ease:[.03,.86,.56,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,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:\"LioXpJfEK\",Phone:\"PT3kxTPR1\",Tablet:\"lsHzu_jty\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"LioXpJfEK\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"pt47u1k1x\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"PT3kxTPR1\")return false;return true;};const elementId1=useRouteElementId(\"bMLXvD3XO\");const ref3=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"LioXpJfEK\",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-1rx4dfd\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rv21or\",id:\"1rv21or\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:71,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nqc2nj-container\",layoutScroll:true,nodeId:\"Q9vz7wtSd\",scopeId:\"Io4k5_4yt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PT3kxTPR1:{style:{width:\"100%\"},variant:\"tGmrqA6xS\"}},children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"Q9vz7wtSd\",layoutId:\"Q9vz7wtSd\",style:{height:\"100%\",width:\"100%\"},variant:\"wfEwJrtOQ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6200,intrinsicWidth:8e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+71),pixelHeight:6200,pixelWidth:8e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Z6gnUpzRh5RVqcXdsnfPjPxdX1w.jpg\",srcSet:\"https://framerusercontent.com/images/Z6gnUpzRh5RVqcXdsnfPjPxdX1w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Z6gnUpzRh5RVqcXdsnfPjPxdX1w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Z6gnUpzRh5RVqcXdsnfPjPxdX1w.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Z6gnUpzRh5RVqcXdsnfPjPxdX1w.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/Z6gnUpzRh5RVqcXdsnfPjPxdX1w.jpg 8000w\"},className:\"framer-1ltq715\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-zq7kev\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lavgh9\",\"data-framer-name\":\"Intro Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f0vse6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1pvdin0\",\"data-styles-preset\":\"EefCcF2aJ\",children:\"Cook A Doodle-Doo\"})}),className:\"framer-cmaos9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-18y5733\",\"data-styles-preset\":\"hCyEJQw3f\",children:\"April 2023\"})}),className:\"framer-1puqkt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tzyk1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e9vt3d\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2xnjvc\",\"data-styles-preset\":\"B9xiLLRMf\",children:'\"Cook A Doodle-Doo\" is a cooking app that teaches users the foundational information needed to know before they start cooking. Join Kip, your chicken companion, and learn about the different appliances, terms, skills, and more. As you learn more you can unlock special gifts for Kip, gain XP, and get more courses. Start your cooking journey today!'})}),className:\"framer-1y2xq8y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nfdnds hidden-h200ky\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w2lzod\",\"data-framer-name\":\"All Right Items\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b5pon3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1d0l8lv\",\"data-styles-preset\":\"J7kaFhLju\",children:\"FOCUS\"})}),className:\"framer-1h2agoy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-55jqez\",\"data-styles-preset\":\"AQ_vqUco7\",children:\"UI/UX Design, Illustration\"})}),className:\"framer-lrp5cc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l3icc6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1d0l8lv\",\"data-styles-preset\":\"J7kaFhLju\",children:\"SOFTWARE\"})}),className:\"framer-1daue7f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-55jqez\",\"data-styles-preset\":\"AQ_vqUco7\",children:\"Illustrator, Figma\"})}),className:\"framer-8bbuvm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x7nnv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1d0l8lv\",\"data-styles-preset\":\"J7kaFhLju\",children:\"SOFTWARE\"})}),className:\"framer-1cj8qpf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-55jqez\",\"data-styles-preset\":\"AQ_vqUco7\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Prototype\"})})})}),className:\"framer-15rvb4m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ksi1ln\",\"data-framer-name\":\"Prototype Frames\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-b6c4b7\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g6xhkb\",\"data-styles-preset\":\"y9pdrBkB5\",children:\"Prototype Frames\"})}),className:\"framer-1j7da63\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wwdzf7\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jkwsdt\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PT3kxTPR1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1649.6+50+73+0+0+0),pixelHeight:844,pixelWidth:390,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.279)`,src:\"https://framerusercontent.com/images/YTpjJ5XCdoEo1cxcF250ooJEQ.png\",srcSet:\"https://framerusercontent.com/images/YTpjJ5XCdoEo1cxcF250ooJEQ.png 390w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1465.6+50+73+0+0+0),pixelHeight:844,pixelWidth:390,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.248)`,src:\"https://framerusercontent.com/images/YTpjJ5XCdoEo1cxcF250ooJEQ.png\",srcSet:\"https://framerusercontent.com/images/YTpjJ5XCdoEo1cxcF250ooJEQ.png 390w\"},className:\"framer-mdexac\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PT3kxTPR1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1649.6+50+73+0+0+0),pixelHeight:844,pixelWidth:390,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.2794)`,src:\"https://framerusercontent.com/images/L3GfYyCSS83H44jYzMA2AAjEdA.png\",srcSet:\"https://framerusercontent.com/images/L3GfYyCSS83H44jYzMA2AAjEdA.png 390w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1465.6+50+73+0+0+0),pixelHeight:844,pixelWidth:390,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.2483)`,src:\"https://framerusercontent.com/images/L3GfYyCSS83H44jYzMA2AAjEdA.png\",srcSet:\"https://framerusercontent.com/images/L3GfYyCSS83H44jYzMA2AAjEdA.png 390w\"},className:\"framer-1x9zrig\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PT3kxTPR1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1649.6+50+73+0+0+0),pixelHeight:844,pixelWidth:390,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.2813)`,src:\"https://framerusercontent.com/images/jqg7COEeM70cTM9D0i1hBf5npkg.png\",srcSet:\"https://framerusercontent.com/images/jqg7COEeM70cTM9D0i1hBf5npkg.png 390w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1465.6+50+73+0+0+0),pixelHeight:844,pixelWidth:390,sizes:`calc(${componentViewport?.width||\"100vw\"} / 4)`,src:\"https://framerusercontent.com/images/jqg7COEeM70cTM9D0i1hBf5npkg.png\",srcSet:\"https://framerusercontent.com/images/jqg7COEeM70cTM9D0i1hBf5npkg.png 390w\"},className:\"framer-1q8huf9\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b9z307\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PT3kxTPR1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1649.6+50+73+0+670+0),pixelHeight:844,pixelWidth:390,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.279)`,src:\"https://framerusercontent.com/images/pFcM0nJ8wHjjNs1XcclrsTLNYIk.png\",srcSet:\"https://framerusercontent.com/images/pFcM0nJ8wHjjNs1XcclrsTLNYIk.png 390w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1465.6+50+73+0+670+0),pixelHeight:844,pixelWidth:390,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.248)`,src:\"https://framerusercontent.com/images/pFcM0nJ8wHjjNs1XcclrsTLNYIk.png\",srcSet:\"https://framerusercontent.com/images/pFcM0nJ8wHjjNs1XcclrsTLNYIk.png 390w\"},className:\"framer-m6dydq\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PT3kxTPR1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1649.6+50+73+0+670+0),pixelHeight:844,pixelWidth:390,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.279)`,src:\"https://framerusercontent.com/images/oT7mpi2Z5LcBpz7uO4J6roH61U.png\",srcSet:\"https://framerusercontent.com/images/oT7mpi2Z5LcBpz7uO4J6roH61U.png 390w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1465.6+50+73+0+670+0),pixelHeight:844,pixelWidth:390,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.248)`,src:\"https://framerusercontent.com/images/oT7mpi2Z5LcBpz7uO4J6roH61U.png\",srcSet:\"https://framerusercontent.com/images/oT7mpi2Z5LcBpz7uO4J6roH61U.png 390w\"},className:\"framer-nlc3ia\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PT3kxTPR1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1649.6+50+73+0+670+0),pixelHeight:844,pixelWidth:390,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.2766)`,src:\"https://framerusercontent.com/images/WbdU4qTfdzEZ45qt8GWEITOI7A.png\",srcSet:\"https://framerusercontent.com/images/WbdU4qTfdzEZ45qt8GWEITOI7A.png 390w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1465.6+50+73+0+670+0),pixelHeight:844,pixelWidth:390,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.2458)`,src:\"https://framerusercontent.com/images/WbdU4qTfdzEZ45qt8GWEITOI7A.png\",srcSet:\"https://framerusercontent.com/images/WbdU4qTfdzEZ45qt8GWEITOI7A.png 390w\"},className:\"framer-1y6brrf\"})})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kx3asd\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k3fd30\",\"data-styles-preset\":\"uPvP4_WQI\",children:\"Above are some of the main pages featured in the app. \"})}),className:\"framer-qkgbqn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e0x13c\",\"data-framer-name\":\"Prototype Frames\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-56ui9i\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g6xhkb\",\"data-styles-preset\":\"y9pdrBkB5\",children:\"Walkthrough\"})}),className:\"framer-1m7lilp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tkopcj\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dhgjwi\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1481raa-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tMybVcJin\",scopeId:\"Io4k5_4yt\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"tMybVcJin\",isMixedBorderRadius:false,isRed:false,layoutId:\"tMybVcJin\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/CLBNt2KT_6o\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-allszu\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k3fd30\",\"data-styles-preset\":\"uPvP4_WQI\",children:\"Click play to watch a walkthrough of the app or try it yourself with the link below!\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k3fd30\",\"data-styles-preset\":\"uPvP4_WQI\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1k3fd30\",\"data-styles-preset\":\"uPvP4_WQI\",children:[\"Visit the prototype on Figma: \",/*#__PURE__*/_jsx(Link,{href:\"https://www.figma.com/proto/tcep7dDPO6atiep9GOBHpb/Cook-a-Doodle?type=design&node-id=182-101&t=zvPzyLeZD74F2Nwh-1&scaling=scale-down&page-id=0%3A1&starting-point-node-id=182%3A89&show-proto-sidebar=1&mode=design\",motionChild:true,nodeId:\"kKkJ9E8Dm\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1n8sxur\",\"data-styles-preset\":\"x_9tA1Yj5\",children:\"https://www.figma.com/CookADoodleDooprototype\"})})]})]}),className:\"framer-7pos3e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jxfydz\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fUAb6GPnI\"},motionChild:true,nodeId:\"qIh_ahkvj\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1sti2qb framer-lvwfi3\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1od11ji-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"t7p23IKDr\",scopeId:\"Io4k5_4yt\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-a6d4b405-dc0a-4d5c-909e-455f6525b11a, rgb(94, 94, 94))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowLeft\",id:\"t7p23IKDr\",layoutId:\"t7p23IKDr\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1q2no5t\",\"data-styles-preset\":\"fDIwV7g1Y\",children:\"Garden Growing Kit\"})}),className:\"framer-z92d1k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LWS1A72Fh\"},motionChild:true,nodeId:\"ALkl65H6a\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-18gfd54 framer-lvwfi3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1q2no5t\",\"data-styles-preset\":\"fDIwV7g1Y\",style:{\"--framer-text-alignment\":\"right\"},children:\"Cattle Chatter\"})}),className:\"framer-q68c9q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15ubbkz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EjuwwBqHJ\",scopeId:\"Io4k5_4yt\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-a6d4b405-dc0a-4d5c-909e-455f6525b11a, rgb(94, 94, 94))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"EjuwwBqHJ\",layoutId:\"EjuwwBqHJ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mml6px\",\"data-framer-name\":\"BottomBar\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a1cy8r\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s65jfv\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-118yauw\",children:isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-df17ca20-c995-44ae-a7a3-f9c383201edc, rgb(255, 253, 250))\"},children:\"Grace Milewski\"})}),className:\"framer-1segbqy hidden-h200ky\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yyyr9t\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15aulbc\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://drive.google.com/file/d/1EaCMF9ZTiRHbminxzQzGY6aO41clCf0z/view?usp=sharing\",motionChild:true,nodeId:\"k23balEZ4\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-16ps21b framer-lvwfi3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kyw9m1-container\",\"data-framer-name\":\"Resume\",isAuthoredByUser:true,isModuleExternal:true,name:\"Resume\",nodeId:\"SM2pZZtnB\",scopeId:\"Io4k5_4yt\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-df17ca20-c995-44ae-a7a3-f9c383201edc, rgb(255, 253, 250))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Page\",id:\"SM2pZZtnB\",layoutId:\"SM2pZZtnB\",mirrored:false,name:\"Resume\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"mailto:gmilewski736@gmail.com\",motionChild:true,nodeId:\"Eusb98vtG\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1napjsz framer-lvwfi3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-o9i5xg-container\",\"data-framer-name\":\"Email\",isAuthoredByUser:true,isModuleExternal:true,name:\"Email\",nodeId:\"hybpzlRQu\",scopeId:\"Io4k5_4yt\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-df17ca20-c995-44ae-a7a3-f9c383201edc, rgb(255, 253, 250))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"MailOpened\",id:\"hybpzlRQu\",layoutId:\"hybpzlRQu\",mirrored:false,name:\"Email\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"www.linkedin.com/in/gracemilewski\",motionChild:true,nodeId:\"Xs3R7g5Df\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1umc5ql framer-lvwfi3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ii9gln-container\",\"data-framer-name\":\"Linkedin\",isAuthoredByUser:true,isModuleExternal:true,name:\"Linkedin\",nodeId:\"iNKAB2tOh\",scopeId:\"Io4k5_4yt\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-df17ca20-c995-44ae-a7a3-f9c383201edc, rgb(255, 253, 250))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"LinkedIn\",id:\"iNKAB2tOh\",layoutId:\"iNKAB2tOh\",mirrored:false,name:\"Linkedin\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2ka5ku\",children:isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13q0bwc hidden-h200ky\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-df17ca20-c995-44ae-a7a3-f9c383201edc, rgb(255, 253, 250))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":pt47u1k1x\",webPageId:\"Io4k5_4yt\"},motionChild:true,nodeId:\"ay5chkGX2\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Back to Top\"})})})}),className:\"framer-1aogpzb\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{hash:\":pt47u1k1x\",webPageId:\"Io4k5_4yt\"},motionChild:true,nodeId:\"I2LykLlrG\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1tlqcw9 framer-lvwfi3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bz1lkk-container\",\"data-framer-name\":\"Arrow\",id:elementId1,isAuthoredByUser:true,isModuleExternal:true,name:\"Arrow\",nodeId:\"bMLXvD3XO\",ref:ref3,scopeId:\"Io4k5_4yt\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-df17ca20-c995-44ae-a7a3-f9c383201edc, rgb(255, 253, 250))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowUpCircled\",id:\"bMLXvD3XO\",layoutId:\"bMLXvD3XO\",mirrored:false,name:\"Arrow\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zsQl9.framer-lvwfi3, .framer-zsQl9 .framer-lvwfi3 { display: block; }\",\".framer-zsQl9.framer-1rx4dfd { 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-zsQl9 .framer-1rv21or { align-content: center; align-items: center; background-color: #ffffff; box-shadow: inset 0.3621759214656777px 0px 0.3621759214656777px -2px rgba(0, 0, 0, 0.73), inset 3px 0px 3px -4px rgba(0, 0, 0, 0.2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 71px; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 1px; width: 100%; }\",\".framer-zsQl9 .framer-1nqc2nj-container { flex: none; height: 71px; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-zsQl9 .framer-1ltq715 { display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); height: 75vh; justify-content: center; padding: 0px; position: relative; width: 100%; }\",'.framer-zsQl9 .framer-zq7kev { align-self: start; aspect-ratio: 1.8461538461538463 / 1; background: radial-gradient(50% 50% at 50% 50%, rgba(135, 135, 135, 0) 0%, rgba(161, 148, 151, 0.18594) 64.2055197612473%, var(--token-f83b6d5e-faa9-44de-9d09-9a4b0abe6de1, rgb(244, 196, 205)) /* {\"name\":\"Light Pink\"} */ 100%); flex: none; grid-column: 1 / -1; grid-row: auto / span 6; height: var(--framer-aspect-ratio-supported, 650px); justify-self: start; opacity: 0; position: relative; width: 100%; }',\".framer-zsQl9 .framer-1lavgh9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-zsQl9 .framer-1f0vse6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 25px 0px; position: relative; width: 90%; }\",\".framer-zsQl9 .framer-cmaos9, .framer-zsQl9 .framer-1puqkt, .framer-zsQl9 .framer-1h2agoy, .framer-zsQl9 .framer-lrp5cc, .framer-zsQl9 .framer-1daue7f, .framer-zsQl9 .framer-8bbuvm, .framer-zsQl9 .framer-1cj8qpf, .framer-zsQl9 .framer-15rvb4m, .framer-zsQl9 .framer-1j7da63, .framer-zsQl9 .framer-1m7lilp { --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-zsQl9 .framer-1tzyk1 { 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: 90%; }\",\".framer-zsQl9 .framer-1e9vt3d { align-content: center; align-items: center; display: flex; flex: 0.66 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-zsQl9 .framer-1y2xq8y { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-zsQl9 .framer-1nfdnds { align-content: center; align-items: center; background-color: #e0e0e0; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 250px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 2px; }\",\".framer-zsQl9 .framer-1w2lzod { align-content: center; align-items: center; display: flex; flex: 0.33 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-zsQl9 .framer-1b5pon3, .framer-zsQl9 .framer-1l3icc6, .framer-zsQl9 .framer-1x7nnv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-zsQl9 .framer-ksi1ln { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-zsQl9 .framer-b6c4b7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 0px 8px 0px; position: relative; width: 80%; }\",\".framer-zsQl9 .framer-wwdzf7 { 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: 0px; position: relative; width: 80%; }\",\".framer-zsQl9 .framer-jkwsdt, .framer-zsQl9 .framer-b9z307 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-zsQl9 .framer-mdexac { aspect-ratio: 0.4576923076923077 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 650px); position: relative; width: 31%; }\",\".framer-zsQl9 .framer-1x9zrig { aspect-ratio: 0.4584615384615385 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 650px); position: relative; width: 31%; }\",\".framer-zsQl9 .framer-1q8huf9 { aspect-ratio: 0.46153846153846156 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 650px); position: relative; width: 31%; }\",\".framer-zsQl9 .framer-m6dydq, .framer-zsQl9 .framer-nlc3ia { aspect-ratio: 0.4576923076923077 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 651px); position: relative; width: 31%; }\",\".framer-zsQl9 .framer-1y6brrf { aspect-ratio: 0.45384615384615384 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 650px); position: relative; width: 31%; }\",\".framer-zsQl9 .framer-1kx3asd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 0px 50px 0px; position: relative; width: 80%; }\",\".framer-zsQl9 .framer-qkgbqn, .framer-zsQl9 .framer-7pos3e { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-zsQl9 .framer-e0x13c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 1180px; justify-content: center; overflow: hidden; padding: 0px 0px 50px 0px; position: relative; width: 80%; }\",\".framer-zsQl9 .framer-56ui9i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-zsQl9 .framer-tkopcj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: 745px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-zsQl9 .framer-1dhgjwi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-zsQl9 .framer-1481raa-container { aspect-ratio: 1.3328822733423544 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 742px); position: relative; width: 985px; }\",\".framer-zsQl9 .framer-allszu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-zsQl9 .framer-1jxfydz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-zsQl9 .framer-1sti2qb { align-content: center; align-items: center; display: flex; flex: 0.5 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-zsQl9 .framer-1od11ji-container, .framer-zsQl9 .framer-15ubbkz-container { flex: none; height: 29px; position: relative; width: 29px; }\",\".framer-zsQl9 .framer-z92d1k { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-zsQl9 .framer-18gfd54 { align-content: center; align-items: center; display: flex; flex: 0.5 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-zsQl9 .framer-q68c9q { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 93%; word-break: break-word; word-wrap: break-word; }\",\".framer-zsQl9 .framer-1mml6px { align-content: center; align-items: center; background-color: var(--token-a9c0a6d7-156f-4c0b-be38-1deb2454dd01, #608a3c); box-shadow: inset 0.3621759214656777px 0px 0.3621759214656777px -2px rgba(0, 0, 0, 0.73), inset 3px 0px 3px -4px rgba(0, 0, 0, 0.2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 63px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-zsQl9 .framer-1a1cy8r { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-zsQl9 .framer-1s65jfv, .framer-zsQl9 .framer-2ka5ku { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 43px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 206px; }\",\".framer-zsQl9 .framer-118yauw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 95%; }\",\".framer-zsQl9 .framer-1segbqy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 71%; word-break: break-word; word-wrap: break-word; }\",\".framer-zsQl9 .framer-yyyr9t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 43px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 320px; }\",\".framer-zsQl9 .framer-15aulbc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; padding: 0px; position: relative; width: 78%; }\",\".framer-zsQl9 .framer-16ps21b, .framer-zsQl9 .framer-1napjsz, .framer-zsQl9 .framer-1umc5ql { flex: 1 0 0px; height: 33px; overflow: hidden; position: relative; text-decoration: none; width: 1px; }\",\".framer-zsQl9 .framer-1kyw9m1-container { bottom: 0px; flex: none; left: calc(49.50000000000002% - 83.5px / 2); position: absolute; top: 0px; width: 84px; }\",\".framer-zsQl9 .framer-o9i5xg-container { bottom: 0px; flex: none; left: calc(50.00000000000002% - 83px / 2); position: absolute; top: 0px; width: 83px; }\",\".framer-zsQl9 .framer-1ii9gln-container { bottom: 0px; flex: none; left: calc(50.00000000000002% - 83.5px / 2); position: absolute; top: 0px; width: 84px; }\",\".framer-zsQl9 .framer-13q0bwc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-zsQl9 .framer-1aogpzb { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 130px; word-break: break-word; word-wrap: break-word; }\",\".framer-zsQl9 .framer-1tlqcw9 { flex: none; height: 21px; overflow: hidden; position: relative; text-decoration: none; width: 20px; }\",\".framer-zsQl9 .framer-1bz1lkk-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-zsQl9.framer-1rx4dfd, .framer-zsQl9 .framer-1rv21or, .framer-zsQl9 .framer-1lavgh9, .framer-zsQl9 .framer-1f0vse6, .framer-zsQl9 .framer-1tzyk1, .framer-zsQl9 .framer-1e9vt3d, .framer-zsQl9 .framer-1nfdnds, .framer-zsQl9 .framer-1w2lzod, .framer-zsQl9 .framer-1b5pon3, .framer-zsQl9 .framer-1l3icc6, .framer-zsQl9 .framer-1x7nnv, .framer-zsQl9 .framer-ksi1ln, .framer-zsQl9 .framer-b6c4b7, .framer-zsQl9 .framer-wwdzf7, .framer-zsQl9 .framer-1kx3asd, .framer-zsQl9 .framer-e0x13c, .framer-zsQl9 .framer-56ui9i, .framer-zsQl9 .framer-tkopcj, .framer-zsQl9 .framer-1dhgjwi, .framer-zsQl9 .framer-allszu, .framer-zsQl9 .framer-1jxfydz, .framer-zsQl9 .framer-1sti2qb, .framer-zsQl9 .framer-18gfd54, .framer-zsQl9 .framer-1s65jfv, .framer-zsQl9 .framer-118yauw, .framer-zsQl9 .framer-yyyr9t, .framer-zsQl9 .framer-15aulbc, .framer-zsQl9 .framer-2ka5ku, .framer-zsQl9 .framer-13q0bwc { gap: 0px; } .framer-zsQl9.framer-1rx4dfd > *, .framer-zsQl9 .framer-1f0vse6 > *, .framer-zsQl9 .framer-1b5pon3 > *, .framer-zsQl9 .framer-1l3icc6 > *, .framer-zsQl9 .framer-1x7nnv > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-zsQl9.framer-1rx4dfd > :first-child, .framer-zsQl9 .framer-1lavgh9 > :first-child, .framer-zsQl9 .framer-1f0vse6 > :first-child, .framer-zsQl9 .framer-1nfdnds > :first-child, .framer-zsQl9 .framer-1w2lzod > :first-child, .framer-zsQl9 .framer-1b5pon3 > :first-child, .framer-zsQl9 .framer-1l3icc6 > :first-child, .framer-zsQl9 .framer-1x7nnv > :first-child, .framer-zsQl9 .framer-ksi1ln > :first-child, .framer-zsQl9 .framer-b6c4b7 > :first-child, .framer-zsQl9 .framer-wwdzf7 > :first-child, .framer-zsQl9 .framer-1kx3asd > :first-child, .framer-zsQl9 .framer-e0x13c > :first-child, .framer-zsQl9 .framer-56ui9i > :first-child, .framer-zsQl9 .framer-allszu > :first-child, .framer-zsQl9 .framer-yyyr9t > :first-child { margin-top: 0px; } .framer-zsQl9.framer-1rx4dfd > :last-child, .framer-zsQl9 .framer-1lavgh9 > :last-child, .framer-zsQl9 .framer-1f0vse6 > :last-child, .framer-zsQl9 .framer-1nfdnds > :last-child, .framer-zsQl9 .framer-1w2lzod > :last-child, .framer-zsQl9 .framer-1b5pon3 > :last-child, .framer-zsQl9 .framer-1l3icc6 > :last-child, .framer-zsQl9 .framer-1x7nnv > :last-child, .framer-zsQl9 .framer-ksi1ln > :last-child, .framer-zsQl9 .framer-b6c4b7 > :last-child, .framer-zsQl9 .framer-wwdzf7 > :last-child, .framer-zsQl9 .framer-1kx3asd > :last-child, .framer-zsQl9 .framer-e0x13c > :last-child, .framer-zsQl9 .framer-56ui9i > :last-child, .framer-zsQl9 .framer-allszu > :last-child, .framer-zsQl9 .framer-yyyr9t > :last-child { margin-bottom: 0px; } .framer-zsQl9 .framer-1rv21or > *, .framer-zsQl9 .framer-1e9vt3d > *, .framer-zsQl9 .framer-1sti2qb > *, .framer-zsQl9 .framer-1s65jfv > *, .framer-zsQl9 .framer-2ka5ku > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-zsQl9 .framer-1rv21or > :first-child, .framer-zsQl9 .framer-1tzyk1 > :first-child, .framer-zsQl9 .framer-1e9vt3d > :first-child, .framer-zsQl9 .framer-tkopcj > :first-child, .framer-zsQl9 .framer-1dhgjwi > :first-child, .framer-zsQl9 .framer-1jxfydz > :first-child, .framer-zsQl9 .framer-1sti2qb > :first-child, .framer-zsQl9 .framer-18gfd54 > :first-child, .framer-zsQl9 .framer-1s65jfv > :first-child, .framer-zsQl9 .framer-118yauw > :first-child, .framer-zsQl9 .framer-15aulbc > :first-child, .framer-zsQl9 .framer-2ka5ku > :first-child, .framer-zsQl9 .framer-13q0bwc > :first-child { margin-left: 0px; } .framer-zsQl9 .framer-1rv21or > :last-child, .framer-zsQl9 .framer-1tzyk1 > :last-child, .framer-zsQl9 .framer-1e9vt3d > :last-child, .framer-zsQl9 .framer-tkopcj > :last-child, .framer-zsQl9 .framer-1dhgjwi > :last-child, .framer-zsQl9 .framer-1jxfydz > :last-child, .framer-zsQl9 .framer-1sti2qb > :last-child, .framer-zsQl9 .framer-18gfd54 > :last-child, .framer-zsQl9 .framer-1s65jfv > :last-child, .framer-zsQl9 .framer-118yauw > :last-child, .framer-zsQl9 .framer-15aulbc > :last-child, .framer-zsQl9 .framer-2ka5ku > :last-child, .framer-zsQl9 .framer-13q0bwc > :last-child { margin-right: 0px; } .framer-zsQl9 .framer-1lavgh9 > *, .framer-zsQl9 .framer-1nfdnds > *, .framer-zsQl9 .framer-b6c4b7 > *, .framer-zsQl9 .framer-1kx3asd > *, .framer-zsQl9 .framer-56ui9i > *, .framer-zsQl9 .framer-allszu > *, .framer-zsQl9 .framer-yyyr9t > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-zsQl9 .framer-1tzyk1 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-zsQl9 .framer-1w2lzod > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-zsQl9 .framer-ksi1ln > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-zsQl9 .framer-wwdzf7 > *, .framer-zsQl9 .framer-e0x13c > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-zsQl9 .framer-tkopcj > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-zsQl9 .framer-1dhgjwi > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-zsQl9 .framer-1jxfydz > *, .framer-zsQl9 .framer-118yauw > *, .framer-zsQl9 .framer-15aulbc > *, .framer-zsQl9 .framer-13q0bwc > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-zsQl9 .framer-18gfd54 > * { margin: 0px; margin-left: calc(11px / 2); margin-right: calc(11px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-zsQl9.framer-1rx4dfd { width: 810px; } .framer-zsQl9 .framer-zq7kev, .framer-zsQl9 .framer-mdexac, .framer-zsQl9 .framer-1x9zrig, .framer-zsQl9 .framer-1q8huf9, .framer-zsQl9 .framer-m6dydq, .framer-zsQl9 .framer-nlc3ia, .framer-zsQl9 .framer-1y6brrf { height: var(--framer-aspect-ratio-supported, 439px); }}\",\"@media (max-width: 809px) { .framer-zsQl9.framer-1rx4dfd { width: 390px; } .framer-zsQl9 .framer-1rv21or { flex-direction: column; } .framer-zsQl9 .framer-1nqc2nj-container { height: auto; } .framer-zsQl9 .framer-zq7kev { height: var(--framer-aspect-ratio-supported, 212px); } .framer-zsQl9 .framer-1tzyk1 { flex-direction: column; width: 100%; } .framer-zsQl9 .framer-1e9vt3d, .framer-zsQl9 .framer-1w2lzod { flex: none; width: 90%; } .framer-zsQl9 .framer-b6c4b7, .framer-zsQl9 .framer-wwdzf7, .framer-zsQl9 .framer-1kx3asd, .framer-zsQl9 .framer-q68c9q { width: 90%; } .framer-zsQl9 .framer-mdexac, .framer-zsQl9 .framer-1x9zrig, .framer-zsQl9 .framer-1q8huf9, .framer-zsQl9 .framer-m6dydq, .framer-zsQl9 .framer-nlc3ia, .framer-zsQl9 .framer-1y6brrf { height: var(--framer-aspect-ratio-supported, 238px); } .framer-zsQl9 .framer-e0x13c { height: min-content; padding: 0px 0px 25px 0px; width: 90%; } .framer-zsQl9 .framer-1481raa-container { height: var(--framer-aspect-ratio-supported, 712px); width: 945px; } .framer-zsQl9 .framer-allszu { padding: 8px 0px 50px 0px; } .framer-zsQl9 .framer-1sti2qb, .framer-zsQl9 .framer-18gfd54 { gap: 0px; } .framer-zsQl9 .framer-1a1cy8r { gap: 10px; justify-content: center; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-zsQl9 .framer-1rv21or, .framer-zsQl9 .framer-1tzyk1, .framer-zsQl9 .framer-1sti2qb, .framer-zsQl9 .framer-18gfd54, .framer-zsQl9 .framer-1a1cy8r { gap: 0px; } .framer-zsQl9 .framer-1rv21or > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-zsQl9 .framer-1rv21or > :first-child, .framer-zsQl9 .framer-1tzyk1 > :first-child { margin-top: 0px; } .framer-zsQl9 .framer-1rv21or > :last-child, .framer-zsQl9 .framer-1tzyk1 > :last-child { margin-bottom: 0px; } .framer-zsQl9 .framer-1tzyk1 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-zsQl9 .framer-1sti2qb > *, .framer-zsQl9 .framer-18gfd54 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-zsQl9 .framer-1sti2qb > :first-child, .framer-zsQl9 .framer-18gfd54 > :first-child, .framer-zsQl9 .framer-1a1cy8r > :first-child { margin-left: 0px; } .framer-zsQl9 .framer-1sti2qb > :last-child, .framer-zsQl9 .framer-18gfd54 > :last-child, .framer-zsQl9 .framer-1a1cy8r > :last-child { margin-right: 0px; } .framer-zsQl9 .framer-1a1cy8r > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3885\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"lsHzu_jty\":{\"layout\":[\"fixed\",\"auto\"]},\"PT3kxTPR1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"pt47u1k1x\":{\"pattern\":\":pt47u1k1x\",\"name\":\"cook\"},\"bMLXvD3XO\":{\"pattern\":\":bMLXvD3XO\",\"name\":\"arrow\"}}\n * @framerResponsiveScreen\n */const FramerIo4k5_4yt=withCSS(Component,css,\"framer-zsQl9\");export default FramerIo4k5_4yt;FramerIo4k5_4yt.displayName=\"SewSweeties\";FramerIo4k5_4yt.defaultProps={height:3885,width:1200};addFonts(FramerIo4k5_4yt,[{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:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"}]},...NavBarFonts,...YouTubeFonts,...IconoirFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIo4k5_4yt\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"3885\",\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"{\\\"pt47u1k1x\\\":{\\\"pattern\\\":\\\":pt47u1k1x\\\",\\\"name\\\":\\\"cook\\\"},\\\"bMLXvD3XO\\\":{\\\"pattern\\\":\\\":bMLXvD3XO\\\",\\\"name\\\":\\\"arrow\\\"}}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lsHzu_jty\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PT3kxTPR1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "u+BAAgT,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,GAAiB,SAASA,EAAgB,CAACA,EAAgB,KAAQ,OAAOA,EAAgB,IAAO,KAAM,GAAGA,IAAkBA,EAAgB,CAAC,EAAE,EAQt0B,SAASC,EAAQ,CAAC,IAAAC,EAAI,KAAAC,EAAK,WAAAC,EAAW,UAAAC,EAAU,MAAAC,EAAM,QAAAC,EAAQ,aAAAC,EAAa,aAAAC,EAAa,YAAAC,EAAY,UAAAC,EAAU,GAAGC,EAAK,EAAE,CAAC,IAAMC,EAASC,GAAc,EAAQC,EAAWZ,IAAOL,EAAY,OAAakB,EAAcH,GAAUR,IAAYN,EAAiB,KAAK,CAACgB,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,EAAK,EAAQe,EAAgBF,IAAe,mBAAmBA,IAAe,MAAM,GAAGvB,IAAM,GAAI,OAAqB0B,EAAKC,GAAa,CAAC,CAAC,EAAG,IAAMC,EAAUC,GAAc7B,CAAG,EAAE,GAAG4B,IAAY,OAAW,OAAqBF,EAAKI,GAAa,CAAC,QAAQ,sBAAsB,CAAC,EAAG,GAAK,CAACC,EAAQC,EAAQ,EAAEJ,EACrwBK,GAAaC,GAAgBH,EAAQ5B,EAAUgC,GAAiB,EAAErC,EAAgB,KAAKA,EAAgB,GAAG,EAC1GsC,EAAaJ,GAAS,aAAa,OAAAI,EAAa,IAAI,iBAAiB,GAAG,EAAEA,EAAa,IAAI,MAAM,GAAG,EAAEA,EAAa,IAAI,iBAAiB,GAAG,EAAEA,EAAa,IAAI,cAAc,GAAG,GAAKvB,GAAYC,IAAesB,EAAa,IAAI,WAAW,GAAG,EAAMvB,GAAYX,GAAYkC,EAAa,IAAI,OAAO,GAAG,EAAMnC,IAAOL,EAAY,OAAMwC,EAAa,IAAI,OAAO,GAAG,EAAEA,EAAa,IAAI,WAAWL,CAAO,GAAO3B,GAAOgC,EAAa,IAAI,QAAQ,OAAO,EAAwBC,EAAM,UAAU,CAAC,eAAe,IAAIhB,EAAW,EAAI,EAAE,eAAe,IAAIA,EAAW,EAAK,EAAE,cAAcL,EAAa,QAAQG,EAAW,MAAM,CAAC,GAAGmB,GAAa,aAAAf,EAAa,UAG9nBE,IAAkBP,GAAWP,GAAU,yBAAyB,QAAQ,OAAO,UAAU,SAAS,QAAQ,EAAE,SAAS,CAACI,GAA4BW,EAAK,OAAO,CAAC,IAAI,aAAa,KAAK,yBAAyB,CAAC,EAAEX,GAA4BW,EAAK,OAAO,CAAC,IAAI,aAAa,KAAK,wBAAwB,CAAC,EAAgBA,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGa,GAAW,WAAWzB,EAAc,sBAAsBmB,gBAA0B,MAAS,CAAC,CAAC,EAAEf,EAAwBQ,EAAK,SAAS,CAAC,MAAMa,GAAW,IAAIP,GAAS,KAAK,YAAY,IAAI,MAAM,oGAAoG,QAAQ3B,EAAQ,aAAaC,EAAa,aAAaC,EAAa,YAAYC,EAAY,UAAUC,CAAS,CAAC,EAAgBiB,EAAKc,GAAW,CAAC,QAAQrB,EAAW,UAAUC,EAAU,MAAMhB,CAAK,CAAC,CAAC,CAAC,CAAC,CAAE,CAACL,EAAQ,YAAY,UAAU0C,GAAoB1C,EAAQ,CAAC,IAAI,CAAC,KAAK2C,EAAY,OAAO,MAAM,OAAO,EAAE,KAAK,CAAC,KAAKA,EAAY,KAAK,MAAM,WAAW,QAAQ,OAAO,OAAO9C,CAAW,CAAC,EAAE,WAAW,CAAC,MAAM,OAAO,KAAK8C,EAAY,QAAQ,aAAa,MAAM,cAAc,KAAK,OAAOhC,EAAM,CAAC,OAAOA,EAAM,OAAOd,EAAY,MAAO,CAAC,EAAE,UAAU,CAAC,MAAM,YAAY,YAAY,4CAA4C,KAAK8C,EAAY,KAAK,QAAQ,OAAO,OAAO7C,CAAgB,EAAE,OAAOa,EAAM,CAAC,OAAOA,EAAM,OAAOd,EAAY,MAAO,CAAC,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAK8C,EAAY,QAAQ,aAAa,MAAM,cAAc,OAAO,EAAE,GAAGC,GAAoB,GAAGC,EAAa,CAAC,EAAE,IAAMC,GAAa,CAAC,IAAI,+BAA+B,KAAKjD,EAAY,OAAO,WAAW,GAAK,UAAUC,EAAiB,OAAO,MAAM,EAAI,EAAEE,EAAQ,aAAa8C,GAAa,SAAShB,GAAciB,EAAU,CAAC,IAAI9C,EAAI,GAAG,CAACA,EAAI,IAAI,IAAI8C,CAAS,CAAE,MAAC,CAAM,IAAMd,EAASe,GAAYD,CAAS,EAAE,MAAM,CAACA,EAAUd,CAAQ,CAAE,CAAC,GAAGhC,EAAI,WAAW,eAAeA,EAAI,WAAW,mBAAmBA,EAAI,WAAW,wBAAwBA,EAAI,WAAW,2BAA2B,CAAC,IAAMgD,EAAahD,EAAI,SAAS,MAAM,CAAC,EAAE,MAAM,GAAG,EACv9D,GAAGgD,EAAa,CAAC,IAAI,QAAQ,CAAC,IAAMjB,EAAQ/B,EAAI,aAAa,IAAI,GAAG,EAAQiD,EAAUF,GAAYhB,CAAO,EAAE,MAAM,CAACA,EAAQkB,CAAS,EACnI,GAAGD,EAAa,CAAC,IAAI,QAAwC,MAAM,CAAtBA,EAAa,CAAC,EAAkBhD,CAAG,EAChF,GAAGA,EAAI,WAAW,WAAW,CAAC,IAAMkD,EAASlD,EAAI,SAAS,MAAM,CAAC,EAAQmD,EAAUJ,GAAYG,CAAQ,EAAE,MAAM,CAACA,EAASC,CAAS,EAAG,CAAC,SAASJ,GAAYhB,EAAQ,CAAC,OAAO,IAAI,IAAI,iCAAiCA,GAAS,CAAE,CAAC,SAASG,GAAgBH,EAAQqB,EAAIC,EAAOvD,EAAgB,IAAI,CAChS,IAAMwD,EAAIxD,EAAgB,KAAK,+BAA+B,0BAAgCyD,EAAIzD,EAAgB,KAAK,OAAO,MAAM,OAAOsD,EAAI,CAAC,KAAKvD,EAAiB,IAAI,MAAM,GAAGyD,IAAMvB,eAAqBwB,IAAM,KAAK1D,EAAiB,OAAO,MAAM,GAAGyD,IAAMvB,eAAqBwB,IAAM,KAAK1D,EAAiB,KAAK,MAAM,GAAGyD,IAAMvB,mBAAyBwB,IAAM,QAAQ,MAAM,GAAGD,IAAMvB,OAAawB,GAAM,CAAC,CAAC,IAAIC,GACpZ,SAASrB,IAAkB,CAC3B,GAAG,CAACsB,EAAQ,MAAO,GAAM,GAAGD,KAAoB,OAAW,OAAOA,GAAmB,IAAME,EAAQ,SAAS,cAAc,QAAQ,EAAE,OAAMA,EAAQ,YAAYA,EAAQ,WAAW,IAAI,EAC9KA,EAAQ,UAAU,YAAY,EAAE,QAAQ,iBAAiB,GAAG,EAC5D,EAAO,CACd,SAAS/B,IAAc,CAAC,OAAqBD,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGiC,GAAgB,SAAS,QAAQ,EAAE,SAAuBjC,EAAK,MAAM,CAAC,MAAMkC,GAAgB,SAAS,mEAAmE,CAAC,CAAC,CAAC,CAAE,CAAC,SAAS9B,GAAa,CAAC,QAAA+B,CAAO,EAAE,CAAC,OAAqBnC,EAAK,MAAM,CAAC,UAAU,oCAAoC,MAAM,CAAC,GAAGoC,GAAgB,SAAS,QAAQ,EAAE,SAAuBzB,EAAM,MAAM,CAAC,MAAMuB,GAAgB,SAAS,CAAC,UAAUC,CAAO,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASrB,GAAW,CAAC,QAAAnC,EAAQ,UAAAe,EAAU,MAAAhB,CAAK,EAAE,CAAC,OAAqBsB,EAAK,SAAS,CAAC,QAAQrB,EAAQ,aAAa,OAAO,MAAM0D,GAAY,SAAuB1B,EAAM,MAAM,CAAC,OAAO,OAAO,QAAQ,MAAM,QAAQ,YAAY,MAAM,OAAO,SAAS,CAAeX,EAAK,OAAO,CAAC,EAAE,wTAAwT,KAAKN,EAAUhB,EAAM,OAAO,OAAO,UAAU,YAAYgB,GAAUhB,EAAM,EAAK,GAAG,MAAM,CAAC,WAAW,kFAAkF,CAAC,CAAC,EAAgBsB,EAAK,OAAO,CAAC,EAAE,sBAAsB,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,IAAMqC,GAAY,CAAC,SAAS,WAAW,IAAI,MAAM,KAAK,MAAM,UAAU,wBAAwB,MAAM,GAAG,OAAO,GAAG,QAAQ,EAAE,OAAO,OAAO,WAAW,cAAc,OAAO,SAAS,EAAQzB,GAAa,CAAC,SAAS,WAAW,MAAM,OAAO,OAAO,MAAM,EAAQsB,GAAgB,CAAC,UAAU,SAAS,SAAS,GAAG,EAAQrB,GAAW,CAAC,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,OAAO,OAAO,MAAM,MAAM,ECrB7J,IAAMyB,GAAYC,EAASC,CAAM,EAAQC,EAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAaL,EAASM,CAAO,EAAQC,GAAaP,EAASQ,CAAO,EAAQC,GAAY,CAAC,UAAU,sBAAsB,UAAU,6CAA6C,UAAU,oBAAoB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,iBAAiB,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,EAAE,KAAK,CAAC,IAAI,IAAI,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,EAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,GAAG,EAAQC,EAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,IAAI,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,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,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEf,GAASI,CAAK,EAAQY,GAAU,IAAI,CAAC,IAAMC,EAASA,EAAiB,OAAUT,CAAY,EAAE,GAAGS,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,GAAI,EAAE,CAAC,OAAUV,CAAY,CAAC,EAAQW,GAAmB,IAAI,CAAC,IAAMF,EAASA,EAAiB,OAAUT,CAAY,EAAE,SAAS,MAAMS,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUT,CAAY,CAAC,EAAE,GAAK,CAACY,EAAYC,EAAmB,EAAEC,GAA8BR,EAAQ5B,GAAY,EAAK,EAAQqC,EAAe,OAAmRC,EAAkBC,EAAGrC,GAAkB,GAApR,CAAawB,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQc,EAAWC,EAAO,IAAI,EAAQC,EAAUC,EAAkB,WAAW,EAAQC,EAAWH,EAAO,IAAI,EAAQI,EAAY,IAAS5C,GAAU,EAAiBiC,IAAc,YAAtB,GAAmEY,EAAWH,EAAkB,WAAW,EAAQI,EAAWN,EAAO,IAAI,EAAQO,EAAsBC,GAAM,EAAEC,GAAiB,CAAC,CAAC,EAAE,IAAMC,EAAkBC,GAAqB,EAAE,OAAoBxC,EAAKyC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAlD,EAAiB,EAAE,SAAsBmD,EAAMC,GAAY,CAAC,GAAG5B,GAAUqB,EAAgB,SAAS,CAAcpC,EAAKH,GAAU,CAAC,MAAM,+CAA+C,CAAC,EAAe6C,EAAM3D,EAAO,IAAI,CAAC,GAAGkC,EAAU,UAAUU,EAAGD,EAAkB,iBAAiBZ,CAAS,EAAE,IAAIL,GAAKmB,EAAK,MAAM,CAAC,GAAGf,CAAK,EAAE,SAAS,CAAcb,EAAK,MAAM,CAAC,UAAU,iBAAiB,GAAG,SAAS,CAAC,EAAeA,EAAK4C,EAA0B,CAAC,OAAO,GAAG,MAAML,GAAmB,OAAO,QAAQ,EAAE,EAAE,SAAsBvC,EAAK6C,EAAU,CAAC,UAAU,2BAA2B,aAAa,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7C,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsBtB,EAAKpB,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,EAAeoB,EAAK+C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,QAAQC,GAA2BT,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,YAAY,KAAK,WAAW,IAAI,MAAMA,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,kcAAkc,EAAE,UAAU,iBAAiB,GAAGT,EAAU,IAAIE,EAAK,SAAsBhC,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc1C,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM7D,EAAgB,CAAC,kBAAkB,CAAC,WAAWY,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAU,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcQ,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,8VAA8V,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEiC,EAAY,GAAgBjC,EAAK,MAAM,CAAC,UAAU,8BAA8B,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc1C,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc1C,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc1C,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAsBA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,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,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,SAAS,CAAc1C,EAAKnB,EAAgB,CAAC,kBAAkB,CAAC,WAAWc,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBM,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe0C,EAAM7D,EAAgB,CAAC,kBAAkB,CAAC,WAAWc,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcgD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc1C,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ0B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQA,GAAmB,OAAO,mBAAmB,IAAI,qEAAqE,OAAO,yEAAyE,CAAC,CAAC,EAAE,SAAsBvC,EAAK+C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQC,GAA2BT,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQA,GAAmB,OAAO,mBAAmB,IAAI,qEAAqE,OAAO,yEAAyE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAevC,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ0B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQA,GAAmB,OAAO,oBAAoB,IAAI,sEAAsE,OAAO,0EAA0E,CAAC,CAAC,EAAE,SAAsBvC,EAAK+C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQC,GAA2BT,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQA,GAAmB,OAAO,oBAAoB,IAAI,sEAAsE,OAAO,0EAA0E,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAevC,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ0B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQA,GAAmB,OAAO,oBAAoB,IAAI,uEAAuE,OAAO,2EAA2E,CAAC,CAAC,EAAE,SAAsBvC,EAAK+C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQC,GAA2BT,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQA,GAAmB,OAAO,eAAe,IAAI,uEAAuE,OAAO,2EAA2E,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeG,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc1C,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ0B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,GAAG,EAAE,IAAI,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQA,GAAmB,OAAO,mBAAmB,IAAI,uEAAuE,OAAO,2EAA2E,CAAC,CAAC,EAAE,SAAsBvC,EAAK+C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQC,GAA2BT,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,GAAG,EAAE,IAAI,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQA,GAAmB,OAAO,mBAAmB,IAAI,uEAAuE,OAAO,2EAA2E,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAevC,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ0B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,GAAG,EAAE,IAAI,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQA,GAAmB,OAAO,mBAAmB,IAAI,sEAAsE,OAAO,0EAA0E,CAAC,CAAC,EAAE,SAAsBvC,EAAK+C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQC,GAA2BT,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,GAAG,EAAE,IAAI,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQA,GAAmB,OAAO,mBAAmB,IAAI,sEAAsE,OAAO,0EAA0E,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAevC,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ0B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,GAAG,EAAE,IAAI,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQA,GAAmB,OAAO,oBAAoB,IAAI,sEAAsE,OAAO,0EAA0E,CAAC,CAAC,EAAE,SAAsBvC,EAAK+C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQC,GAA2BT,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,GAAG,EAAE,IAAI,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQA,GAAmB,OAAO,oBAAoB,IAAI,sEAAsE,OAAO,0EAA0E,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKnB,EAAgB,CAAC,kBAAkB,CAAC,WAAWc,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBM,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,wDAAwD,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,SAAS,CAAc1C,EAAKnB,EAAgB,CAAC,kBAAkB,CAAC,WAAWc,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBM,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKnB,EAAgB,CAAC,kBAAkB,CAAC,WAAWc,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBM,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK4C,EAA0B,CAAC,SAAsB5C,EAAK6C,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7C,EAAKf,EAAQ,CAAC,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,MAAM,GAAM,SAAS,YAAY,KAAK,MAAM,WAAW,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,iBAAiB,cAAc,EAAE,eAAe,EAAE,IAAI,+BAA+B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,EAAKnB,EAAgB,CAAC,kBAAkB,CAAC,WAAWc,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBM,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBP,EAAYQ,EAAS,CAAC,SAAS,CAAclD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,sFAAsF,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAe0C,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,iCAA8C1C,EAAKmD,EAAK,CAAC,KAAK,sNAAsN,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,aAAa,GAAM,SAAsBnD,EAAKjB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,+CAA+C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe2D,EAAM7D,EAAgB,CAAC,kBAAkB,CAAC,WAAWc,CAAW,EAAE,sBAAsB,GAAK,gBAAgBC,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcI,EAAKmD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBT,EAAM3D,EAAO,EAAE,CAAC,UAAU,+BAA+B,SAAS,CAAciB,EAAK4C,EAA0B,CAAC,SAAsB5C,EAAK6C,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7C,EAAKb,EAAQ,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,OAAO,cAAc,YAAY,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKmD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,SAAsBT,EAAM3D,EAAO,EAAE,CAAC,UAAU,+BAA+B,SAAS,CAAciB,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK4C,EAA0B,CAAC,SAAsB5C,EAAK6C,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7C,EAAKb,EAAQ,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,OAAO,cAAc,aAAa,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAsB0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAASiC,EAAY,GAAgBjC,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,+BAA+B,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsB0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc1C,EAAKmD,EAAK,CAAC,KAAK,qFAAqF,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,SAAsBnD,EAAKjB,EAAO,EAAE,CAAC,UAAU,+BAA+B,SAAsBiB,EAAK4C,EAA0B,CAAC,SAAsB5C,EAAK6C,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,SAAS,iBAAiB,GAAK,iBAAiB,GAAK,KAAK,SAAS,OAAO,YAAY,QAAQ,YAAY,SAAsB7C,EAAKb,EAAQ,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,OAAO,cAAc,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,KAAK,SAAS,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAKmD,EAAK,CAAC,KAAK,gCAAgC,YAAY,GAAK,OAAO,YAAY,SAAsBnD,EAAKjB,EAAO,EAAE,CAAC,UAAU,+BAA+B,SAAsBiB,EAAK4C,EAA0B,CAAC,SAAsB5C,EAAK6C,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,QAAQ,iBAAiB,GAAK,iBAAiB,GAAK,KAAK,QAAQ,OAAO,YAAY,QAAQ,YAAY,SAAsB7C,EAAKb,EAAQ,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,OAAO,cAAc,aAAa,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,KAAK,QAAQ,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAKmD,EAAK,CAAC,KAAK,oCAAoC,YAAY,GAAK,OAAO,YAAY,SAAsBnD,EAAKjB,EAAO,EAAE,CAAC,UAAU,+BAA+B,SAAsBiB,EAAK4C,EAA0B,CAAC,SAAsB5C,EAAK6C,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,WAAW,iBAAiB,GAAK,iBAAiB,GAAK,KAAK,WAAW,OAAO,YAAY,QAAQ,YAAY,SAAsB7C,EAAKb,EAAQ,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,OAAO,cAAc,WAAW,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,KAAK,WAAW,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAASiC,EAAY,GAAgBS,EAAM,MAAM,CAAC,UAAU,+BAA+B,SAAS,CAAc1C,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAKmD,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,aAAa,GAAK,SAAsBnD,EAAKjB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeiB,EAAKmD,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,aAAa,GAAK,SAAsBnD,EAAKjB,EAAO,EAAE,CAAC,UAAU,+BAA+B,SAAsBiB,EAAK4C,EAA0B,CAAC,SAAsB5C,EAAK6C,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,QAAQ,GAAGX,EAAW,iBAAiB,GAAK,iBAAiB,GAAK,KAAK,QAAQ,OAAO,YAAY,IAAIC,EAAK,QAAQ,YAAY,SAAsBnC,EAAKb,EAAQ,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,OAAO,cAAc,iBAAiB,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,KAAK,QAAQ,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQoD,GAAI,CAAC,kFAAkF,gFAAgF,mSAAmS,+bAA+b,uIAAuI,8PAA8P,ifAAif,8RAA8R,+RAA+R,qgBAAqgB,2QAA2Q,kRAAkR,uKAAuK,oSAAoS,qRAAqR,4UAA4U,8RAA8R,0RAA0R,8QAA8Q,sSAAsS,0KAA0K,2KAA2K,4KAA4K,wMAAwM,4KAA4K,4RAA4R,kMAAkM,sRAAsR,2RAA2R,sQAAsQ,sQAAsQ,uLAAuL,6RAA6R,4QAA4Q,wSAAwS,kJAAkJ,gPAAgP,wSAAwS,gPAAgP,keAAke,4QAA4Q,sSAAsS,kPAAkP,oKAAoK,0QAA0Q,oPAAoP,wMAAwM,+JAA+J,4JAA4J,+JAA+J,qPAAqP,sKAAsK,wIAAwI,4HAA4H,03KAA03K,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,mXAAmX,u6EAAu6E,EAWrwjDC,EAAgBC,GAAQ/C,GAAU6C,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,cAAcA,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,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG3E,GAAY,GAAGM,GAAa,GAAGE,GAAa,GAAGuE,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACriF,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,uBAAyB,GAAG,sBAAwB,OAAO,qBAAuB,OAAO,qBAAuB,2GAA+H,sBAAwB,IAAI,oCAAsC,4JAA0L,4BAA8B,OAAO,6BAA+B,OAAO,yBAA2B,OAAO,yBAA2B,OAAO,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "NavBarFonts", "getFonts", "MX0JUJMzQ_default", "MotionDivWithFX", "withFX", "motion", "YouTubeFonts", "Youtube", "IconoirFonts", "Icon", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "isDisplayed", "elementId1", "ref3", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "Image2", "getLoadingLazyAtYPosition", "RichText2", "x", "Link", "css", "FramerIo4k5_4yt", "withCSS", "Io4k5_4yt_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
