{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/sM1IkbWjHKU5Kt4yTyui/E3jme3rxkAT1D4XXkZov/cIQAIrJY8.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 (4ba8877)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,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/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/qlN04JKWsPiTjQExBWpf/SlideShow.js\";import FooterScroll from\"#framer/local/canvasComponent/cyHAOqTsN/cyHAOqTsN.js\";import Navigation from\"#framer/local/canvasComponent/m42xapiu9/m42xapiu9.js\";import Divider from\"#framer/local/canvasComponent/VmxGk9h1z/VmxGk9h1z.js\";import*as sharedStyle from\"#framer/local/css/exo9CGAXi/exo9CGAXi.js\";import*as sharedStyle4 from\"#framer/local/css/gJ0Aj2ATq/gJ0Aj2ATq.js\";import*as sharedStyle3 from\"#framer/local/css/Gkk3Qlw8E/Gkk3Qlw8E.js\";import*as sharedStyle1 from\"#framer/local/css/jrl_MWr89/jrl_MWr89.js\";import*as sharedStyle2 from\"#framer/local/css/l1e31HU2x/l1e31HU2x.js\";import metadataProvider from\"#framer/local/webPageMetadata/cIQAIrJY8/cIQAIrJY8.js\";const NavigationFonts=getFonts(Navigation);const RichTextWithFX=withFX(RichText);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const SlideshowFonts=getFonts(Slideshow);const ContainerWithFX=withFX(Container);const YouTubeFonts=getFonts(YouTube);const DividerFonts=getFonts(Divider);const FooterScrollFonts=getFonts(FooterScroll);const breakpoints={DQRJbneVj:\"(max-width: 809px)\",iWVGBHx7n:\"(min-width: 1200px)\",W71epeihu:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-mDn7u\";const variantClassNames={DQRJbneVj:\"framer-v-4pvsmg\",iWVGBHx7n:\"framer-v-7zenzt\",W71epeihu:\"framer-v-18jrid0\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:20};const transition2={damping:40,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:20};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0};const transition3={damping:60,delay:.4,mass:1,stiffness:500,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition3,x:0,y:0};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"iWVGBHx7n\",Phone:\"DQRJbneVj\",Tablet:\"W71epeihu\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"iWVGBHx7n\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-mDn7u`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-mDn7u`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const elementId=useRouteElementId(\"R5qbVR2cE\");const ref2=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"iWVGBHx7n\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-7zenzt\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vnbdpl-container\",\"data-framer-name\":\"Navigation\",id:elementId,name:\"Navigation\",ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DQRJbneVj:{style:{width:\"100%\"},variant:\"jT7eFRL7z\"},W71epeihu:{variant:\"HPOgeIjfL\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"R5qbVR2cE\",layoutId:\"R5qbVR2cE\",name:\"Navigation\",style:{height:\"100%\",width:\"100%\"},variant:\"oGVXWfRtq\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v0jyik\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9x69to\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13c2nr8\",\"data-styles-preset\":\"exo9CGAXi\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4fe931a1-9257-44b6-b181-16f457920e91, rgb(213, 186, 122))\"},children:\"Coffeebar\"})}),className:\"framer-12er77g\",\"data-framer-name\":\"Client Name\",fonts:[\"Inter\"],name:\"Client Name\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1at83z1\",\"data-styles-preset\":\"jrl_MWr89\",children:\"Product Photography for Coffee Bean Subscription Program\"})}),className:\"framer-7zb333\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qup6d4\",\"data-framer-name\":\"Overview\",name:\"Overview\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DQRJbneVj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(486.5),pixelHeight:2325,pixelWidth:3488,sizes:\"min(min(700px, 100vw) - 40px, 1000px)\",src:\"https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg\",srcSet:\"https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg 3488w\"}},W71epeihu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(486.5),pixelHeight:2325,pixelWidth:3488,sizes:\"min(min(700px, 100vw), 1000px)\",src:\"https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg\",srcSet:\"https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg 3488w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(546.5),pixelHeight:2325,pixelWidth:3488,sizes:\"min(min(900px, 100vw), 1000px)\",src:\"https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg\",srcSet:\"https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg 3488w\"},className:\"framer-1n1vftf\",\"data-framer-name\":\"Banner\",name:\"Banner\"})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jmh0ft\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-10gesd2\",\"data-styles-preset\":\"l1e31HU2x\",children:\"Overview\"})}),className:\"framer-15ifu5k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qq607y\",\"data-styles-preset\":\"Gkk3Qlw8E\",children:\"Not on arbitrary scales of roast-level such as \u201Cbrewed as light as water\u201D or \u201Cburnt to holy hell.\u201D Instead, we looked at how it fills our\\xa0soul, or as we like to say, our cup. A brew for every time of day, for every challenge life throws at us. Roasts that toast to the best coffee\\xa0producers and importers we are honored to partnered with. Inspiring coffee stories to fuel you through your own adventure.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qq607y\",\"data-styles-preset\":\"Gkk3Qlw8E\",children:\"Coffeebar proudly presents four signature bean types: Giuseppe Italian roast, Zephyr house espresso blend, Prima Donna decaf,\\xa0and Vertical Reserve rotating single origin blend. In this photoshoot, we wanted to celebrate each bag\u2019s unique characteristics using\\xa0monochromatic and/or analogous color schemes, simple paper elements, and fun illustrations. Each scene is an adventure of another day\\xa0and another challenge.\"})]}),className:\"framer-qlr9k1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7mm678\",\"data-framer-name\":\"Creative Process\",name:\"Creative Process\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-10gesd2\",\"data-styles-preset\":\"l1e31HU2x\",children:\"Creative Process\"})}),className:\"framer-6vbz27\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lkmhw6-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"LwnSlOMGX\",intervalControl:1.5,itemAmount:1,layoutId:\"LwnSlOMGX\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1556.5,intrinsicWidth:2405.5,pixelHeight:3113,pixelWidth:4811,sizes:\"900px\",src:\"https://framerusercontent.com/images/QsxVUl5EKFs8ourmHp0EU1nYAg.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/QsxVUl5EKFs8ourmHp0EU1nYAg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QsxVUl5EKFs8ourmHp0EU1nYAg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QsxVUl5EKFs8ourmHp0EU1nYAg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/QsxVUl5EKFs8ourmHp0EU1nYAg.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/QsxVUl5EKFs8ourmHp0EU1nYAg.jpg 4811w\"},className:\"framer-40fdkb\",\"data-framer-name\":\"CB-Subscription Photo Moodboard Page_1\",name:\"CB-Subscription Photo Moodboard Page_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:318.5,intrinsicWidth:494.5,pixelHeight:637,pixelWidth:989,sizes:\"900px\",src:\"https://framerusercontent.com/images/0x2MYACxBdy2vvoiFWdKKmTGlno.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/0x2MYACxBdy2vvoiFWdKKmTGlno.png?scale-down-to=512 512w,https://framerusercontent.com/images/0x2MYACxBdy2vvoiFWdKKmTGlno.png 989w\"},className:\"framer-1rtanb9\",\"data-framer-name\":\"Frame 1\",name:\"Frame 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:318.5,intrinsicWidth:494.5,pixelHeight:637,pixelWidth:989,sizes:\"900px\",src:\"https://framerusercontent.com/images/Aqht4uoLoGfIbvd9YPMgTtxd4s.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Aqht4uoLoGfIbvd9YPMgTtxd4s.png?scale-down-to=512 512w,https://framerusercontent.com/images/Aqht4uoLoGfIbvd9YPMgTtxd4s.png 989w\"},className:\"framer-17a8xti\",\"data-framer-name\":\"Frame 2\",name:\"Frame 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:318.5,intrinsicWidth:494.5,pixelHeight:637,pixelWidth:989,sizes:\"900px\",src:\"https://framerusercontent.com/images/IdxdvtmsDsbf1wH6nyb840OafII.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/IdxdvtmsDsbf1wH6nyb840OafII.png?scale-down-to=512 512w,https://framerusercontent.com/images/IdxdvtmsDsbf1wH6nyb840OafII.png 989w\"},className:\"framer-1u1k1cz\",\"data-framer-name\":\"Frame 3\",name:\"Frame 3\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15biryb-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"R9hAXKHrq\",intervalControl:1.5,itemAmount:1,layoutId:\"R9hAXKHrq\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:450,pixelHeight:600,pixelWidth:900,sizes:\"893px\",src:\"https://framerusercontent.com/images/pUYXsezDax6v6LAaEkatjODBfc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/pUYXsezDax6v6LAaEkatjODBfc.png?scale-down-to=512 512w,https://framerusercontent.com/images/pUYXsezDax6v6LAaEkatjODBfc.png 900w\"},className:\"framer-1uguhoy\",\"data-framer-name\":\"Image 122\",name:\"Image 122\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:450,pixelHeight:600,pixelWidth:900,sizes:\"893px\",src:\"https://framerusercontent.com/images/PZn4qtuDjjEy1DmUAaOFJOvxMqM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/PZn4qtuDjjEy1DmUAaOFJOvxMqM.png?scale-down-to=512 512w,https://framerusercontent.com/images/PZn4qtuDjjEy1DmUAaOFJOvxMqM.png 900w\"},className:\"framer-182k2mh\",\"data-framer-name\":\"Image 222\",name:\"Image 222\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:450,pixelHeight:600,pixelWidth:900,sizes:\"893px\",src:\"https://framerusercontent.com/images/n3sYkti6bToFgZ0fAYrJnYgwIPc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/n3sYkti6bToFgZ0fAYrJnYgwIPc.png?scale-down-to=512 512w,https://framerusercontent.com/images/n3sYkti6bToFgZ0fAYrJnYgwIPc.png 900w\"},className:\"framer-ar9hwe\",\"data-framer-name\":\"Image 322\",name:\"Image 322\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a3ixb5-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"tAgfGFczJ\",isMixedBorderRadius:false,isRed:true,layoutId:\"tAgfGFczJ\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=QCOLIM7mCXM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qq607y\",\"data-styles-preset\":\"Gkk3Qlw8E\",children:\"BTS of the photoshoot\"})}),className:\"framer-wrejr0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fav27h\",\"data-framer-name\":\"Final Work\",name:\"Final Work\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4wt25t\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-10gesd2\",\"data-styles-preset\":\"l1e31HU2x\",children:\"Giuseppe - Italian Roast\"})}),className:\"framer-1jnzmm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qq607y\",\"data-styles-preset\":\"Gkk3Qlw8E\",children:\"Coffeebar was born from an inspiration the owner had during his trip to a caf\\xe9 in a small Italian province. This blend is deep and\\xa0sophisticated. It\u2019s a perfect companion to get your day pumped up for a focused, hard-working work/school day.\"})}),className:\"framer-s6ecxe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DQRJbneVj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2453.5),pixelHeight:2438,pixelWidth:3648,sizes:\"calc(min(700px, 100vw) - 40px)\",src:\"https://framerusercontent.com/images/1J9qI6tujmnmensP0Cbe011DU.jpg\",srcSet:\"https://framerusercontent.com/images/1J9qI6tujmnmensP0Cbe011DU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1J9qI6tujmnmensP0Cbe011DU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1J9qI6tujmnmensP0Cbe011DU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1J9qI6tujmnmensP0Cbe011DU.jpg 3648w\"}},W71epeihu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3386.5),pixelHeight:2438,pixelWidth:3648,sizes:\"min(min(700px, 100vw), 1000px)\",src:\"https://framerusercontent.com/images/1J9qI6tujmnmensP0Cbe011DU.jpg\",srcSet:\"https://framerusercontent.com/images/1J9qI6tujmnmensP0Cbe011DU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1J9qI6tujmnmensP0Cbe011DU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1J9qI6tujmnmensP0Cbe011DU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1J9qI6tujmnmensP0Cbe011DU.jpg 3648w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4047.5),pixelHeight:2438,pixelWidth:3648,sizes:\"min(min(900px, 100vw), 1000px)\",src:\"https://framerusercontent.com/images/1J9qI6tujmnmensP0Cbe011DU.jpg\",srcSet:\"https://framerusercontent.com/images/1J9qI6tujmnmensP0Cbe011DU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1J9qI6tujmnmensP0Cbe011DU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1J9qI6tujmnmensP0Cbe011DU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1J9qI6tujmnmensP0Cbe011DU.jpg 3648w\"},className:\"framer-d2l00d\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DQRJbneVj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2676.5),pixelHeight:2370,pixelWidth:3550,sizes:\"calc(min(700px, 100vw) - 40px)\",src:\"https://framerusercontent.com/images/KsEaaBlF9BtbvwYesjyZ4KsJczs.jpg\",srcSet:\"https://framerusercontent.com/images/KsEaaBlF9BtbvwYesjyZ4KsJczs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KsEaaBlF9BtbvwYesjyZ4KsJczs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KsEaaBlF9BtbvwYesjyZ4KsJczs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KsEaaBlF9BtbvwYesjyZ4KsJczs.jpg 3550w\"}},W71epeihu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4006.5),pixelHeight:2370,pixelWidth:3550,sizes:\"min(min(700px, 100vw), 1000px)\",src:\"https://framerusercontent.com/images/KsEaaBlF9BtbvwYesjyZ4KsJczs.jpg\",srcSet:\"https://framerusercontent.com/images/KsEaaBlF9BtbvwYesjyZ4KsJczs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KsEaaBlF9BtbvwYesjyZ4KsJczs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KsEaaBlF9BtbvwYesjyZ4KsJczs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KsEaaBlF9BtbvwYesjyZ4KsJczs.jpg 3550w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4667.5),pixelHeight:2370,pixelWidth:3550,sizes:\"min(min(900px, 100vw), 1000px)\",src:\"https://framerusercontent.com/images/KsEaaBlF9BtbvwYesjyZ4KsJczs.jpg\",srcSet:\"https://framerusercontent.com/images/KsEaaBlF9BtbvwYesjyZ4KsJczs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KsEaaBlF9BtbvwYesjyZ4KsJczs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KsEaaBlF9BtbvwYesjyZ4KsJczs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KsEaaBlF9BtbvwYesjyZ4KsJczs.jpg 3550w\"},className:\"framer-3sj9ku\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1j7wrvr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-10gesd2\",\"data-styles-preset\":\"l1e31HU2x\",children:\"Zephyr - Espresso Blend\"})}),className:\"framer-1ibn2li\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qq607y\",\"data-styles-preset\":\"Gkk3Qlw8E\",children:\"Inspired by the small town of Truckee, California, the home ground of Coffeebar. The town is surrounded by the Sierra Mountains, Lake\\xa0Tahoe, and Truckee River - it\u2019s a\\xa0destination for camping, backpacking, hiking, skiing, swimming... You name any outdoor activities!\"})}),className:\"framer-m5f710\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DQRJbneVj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3133.5),pixelHeight:2229,pixelWidth:3344,sizes:\"calc(min(700px, 100vw) - 40px)\",src:\"https://framerusercontent.com/images/ZP5V2cCeRI7D2RnBqhJIti5RUU.jpg\",srcSet:\"https://framerusercontent.com/images/ZP5V2cCeRI7D2RnBqhJIti5RUU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZP5V2cCeRI7D2RnBqhJIti5RUU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZP5V2cCeRI7D2RnBqhJIti5RUU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZP5V2cCeRI7D2RnBqhJIti5RUU.jpg 3344w\"}},W71epeihu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4860.5),pixelHeight:2229,pixelWidth:3344,sizes:\"min(min(700px, 100vw), 1000px)\",src:\"https://framerusercontent.com/images/ZP5V2cCeRI7D2RnBqhJIti5RUU.jpg\",srcSet:\"https://framerusercontent.com/images/ZP5V2cCeRI7D2RnBqhJIti5RUU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZP5V2cCeRI7D2RnBqhJIti5RUU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZP5V2cCeRI7D2RnBqhJIti5RUU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZP5V2cCeRI7D2RnBqhJIti5RUU.jpg 3344w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5521.5),pixelHeight:2229,pixelWidth:3344,sizes:\"min(min(900px, 100vw), 1000px)\",src:\"https://framerusercontent.com/images/ZP5V2cCeRI7D2RnBqhJIti5RUU.jpg\",srcSet:\"https://framerusercontent.com/images/ZP5V2cCeRI7D2RnBqhJIti5RUU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZP5V2cCeRI7D2RnBqhJIti5RUU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZP5V2cCeRI7D2RnBqhJIti5RUU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZP5V2cCeRI7D2RnBqhJIti5RUU.jpg 3344w\"},className:\"framer-1hqa6d4\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DQRJbneVj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3356.5),pixelHeight:2408,pixelWidth:3612,sizes:\"calc(min(700px, 100vw) - 40px)\",src:\"https://framerusercontent.com/images/GmtqdpZYWOWTqOSi0WUj2h75bkk.jpg\",srcSet:\"https://framerusercontent.com/images/GmtqdpZYWOWTqOSi0WUj2h75bkk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GmtqdpZYWOWTqOSi0WUj2h75bkk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GmtqdpZYWOWTqOSi0WUj2h75bkk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GmtqdpZYWOWTqOSi0WUj2h75bkk.jpg 3612w\"}},W71epeihu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5480.5),pixelHeight:2408,pixelWidth:3612,sizes:\"min(min(700px, 100vw), 1000px)\",src:\"https://framerusercontent.com/images/GmtqdpZYWOWTqOSi0WUj2h75bkk.jpg\",srcSet:\"https://framerusercontent.com/images/GmtqdpZYWOWTqOSi0WUj2h75bkk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GmtqdpZYWOWTqOSi0WUj2h75bkk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GmtqdpZYWOWTqOSi0WUj2h75bkk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GmtqdpZYWOWTqOSi0WUj2h75bkk.jpg 3612w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6141.5),pixelHeight:2408,pixelWidth:3612,sizes:\"min(min(900px, 100vw), 1000px)\",src:\"https://framerusercontent.com/images/GmtqdpZYWOWTqOSi0WUj2h75bkk.jpg\",srcSet:\"https://framerusercontent.com/images/GmtqdpZYWOWTqOSi0WUj2h75bkk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GmtqdpZYWOWTqOSi0WUj2h75bkk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GmtqdpZYWOWTqOSi0WUj2h75bkk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GmtqdpZYWOWTqOSi0WUj2h75bkk.jpg 3612w\"},className:\"framer-1o9sdww\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jhwax4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-10gesd2\",\"data-styles-preset\":\"l1e31HU2x\",children:\"Prima Donna - Decaf Blend\"})}),className:\"framer-yuzvej\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qq607y\",\"data-styles-preset\":\"Gkk3Qlw8E\",children:\"Coffeebar would not have grown so much as it is now if it weren\u2019t for amazing boss ladies in the team. The artwork is inspired by the\\xa0infamous saying, \u201Cdeath before decaf,\u201D as we have a lovely skeleton lady with a bad-ass attitude. The decaf blend is for\\xa0everyone (not just\\xa0the ladies) to carry on the energy of coffee for a fun concert night, but have a good night sleep after.\"})}),className:\"framer-477ysj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DQRJbneVj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3813.5),pixelHeight:2372,pixelWidth:3558,sizes:\"calc(min(700px, 100vw) - 40px)\",src:\"https://framerusercontent.com/images/p7D75UFULWinhgwQFZAjLQaHU4.jpg\",srcSet:\"https://framerusercontent.com/images/p7D75UFULWinhgwQFZAjLQaHU4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/p7D75UFULWinhgwQFZAjLQaHU4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/p7D75UFULWinhgwQFZAjLQaHU4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/p7D75UFULWinhgwQFZAjLQaHU4.jpg 3558w\"}},W71epeihu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6334.5),pixelHeight:2372,pixelWidth:3558,sizes:\"min(min(700px, 100vw), 1000px)\",src:\"https://framerusercontent.com/images/p7D75UFULWinhgwQFZAjLQaHU4.jpg\",srcSet:\"https://framerusercontent.com/images/p7D75UFULWinhgwQFZAjLQaHU4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/p7D75UFULWinhgwQFZAjLQaHU4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/p7D75UFULWinhgwQFZAjLQaHU4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/p7D75UFULWinhgwQFZAjLQaHU4.jpg 3558w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6995.5),pixelHeight:2372,pixelWidth:3558,sizes:\"min(min(900px, 100vw), 1000px)\",src:\"https://framerusercontent.com/images/p7D75UFULWinhgwQFZAjLQaHU4.jpg\",srcSet:\"https://framerusercontent.com/images/p7D75UFULWinhgwQFZAjLQaHU4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/p7D75UFULWinhgwQFZAjLQaHU4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/p7D75UFULWinhgwQFZAjLQaHU4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/p7D75UFULWinhgwQFZAjLQaHU4.jpg 3558w\"},className:\"framer-lnd19\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DQRJbneVj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4036.5),pixelHeight:2270,pixelWidth:3406,sizes:\"calc(min(700px, 100vw) - 40px)\",src:\"https://framerusercontent.com/images/bv9uDE1abm6sxMd9RfaF6ygifw.jpg\",srcSet:\"https://framerusercontent.com/images/bv9uDE1abm6sxMd9RfaF6ygifw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bv9uDE1abm6sxMd9RfaF6ygifw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bv9uDE1abm6sxMd9RfaF6ygifw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bv9uDE1abm6sxMd9RfaF6ygifw.jpg 3406w\"}},W71epeihu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6954.5),pixelHeight:2270,pixelWidth:3406,sizes:\"min(min(700px, 100vw), 1000px)\",src:\"https://framerusercontent.com/images/bv9uDE1abm6sxMd9RfaF6ygifw.jpg\",srcSet:\"https://framerusercontent.com/images/bv9uDE1abm6sxMd9RfaF6ygifw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bv9uDE1abm6sxMd9RfaF6ygifw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bv9uDE1abm6sxMd9RfaF6ygifw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bv9uDE1abm6sxMd9RfaF6ygifw.jpg 3406w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(7615.5),pixelHeight:2270,pixelWidth:3406,sizes:\"min(min(900px, 100vw), 1000px)\",src:\"https://framerusercontent.com/images/bv9uDE1abm6sxMd9RfaF6ygifw.jpg\",srcSet:\"https://framerusercontent.com/images/bv9uDE1abm6sxMd9RfaF6ygifw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bv9uDE1abm6sxMd9RfaF6ygifw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bv9uDE1abm6sxMd9RfaF6ygifw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bv9uDE1abm6sxMd9RfaF6ygifw.jpg 3406w\"},className:\"framer-47ru5c\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-eue6nt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-10gesd2\",\"data-styles-preset\":\"l1e31HU2x\",children:\"Vertical Reserve - Single Origin\"})}),className:\"framer-czgn76\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qq607y\",\"data-styles-preset\":\"Gkk3Qlw8E\",children:\"Coffeebar supports and partners up with amazing farmers all over the world. We sincerely thank our hard-working partners and the sun\\xa0for producing amazing coffee beans for our Coffeebar fans!\"})}),className:\"framer-b1wrar\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DQRJbneVj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4493.5),pixelHeight:2325,pixelWidth:3488,sizes:\"calc(min(700px, 100vw) - 40px)\",src:\"https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg\",srcSet:\"https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg 3488w\"}},W71epeihu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(7808.5),pixelHeight:2325,pixelWidth:3488,sizes:\"min(min(700px, 100vw), 1000px)\",src:\"https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg\",srcSet:\"https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg 3488w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(8469.5),pixelHeight:2325,pixelWidth:3488,sizes:\"min(min(900px, 100vw), 1000px)\",src:\"https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg\",srcSet:\"https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qI5hJZ2UCZaZImipwgOSMYWkuSA.jpg 3488w\"},className:\"framer-qdwd1s\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DQRJbneVj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4716.5),pixelHeight:2364,pixelWidth:3546,sizes:\"calc(min(700px, 100vw) - 40px)\",src:\"https://framerusercontent.com/images/10iKNhmSMtj9y9xzE5XDWuzkI.jpg\",srcSet:\"https://framerusercontent.com/images/10iKNhmSMtj9y9xzE5XDWuzkI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/10iKNhmSMtj9y9xzE5XDWuzkI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/10iKNhmSMtj9y9xzE5XDWuzkI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/10iKNhmSMtj9y9xzE5XDWuzkI.jpg 3546w\"}},W71epeihu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(8428.5),pixelHeight:2364,pixelWidth:3546,sizes:\"min(min(700px, 100vw), 1000px)\",src:\"https://framerusercontent.com/images/10iKNhmSMtj9y9xzE5XDWuzkI.jpg\",srcSet:\"https://framerusercontent.com/images/10iKNhmSMtj9y9xzE5XDWuzkI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/10iKNhmSMtj9y9xzE5XDWuzkI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/10iKNhmSMtj9y9xzE5XDWuzkI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/10iKNhmSMtj9y9xzE5XDWuzkI.jpg 3546w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(9089.5),pixelHeight:2364,pixelWidth:3546,sizes:\"min(min(900px, 100vw), 1000px)\",src:\"https://framerusercontent.com/images/10iKNhmSMtj9y9xzE5XDWuzkI.jpg\",srcSet:\"https://framerusercontent.com/images/10iKNhmSMtj9y9xzE5XDWuzkI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/10iKNhmSMtj9y9xzE5XDWuzkI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/10iKNhmSMtj9y9xzE5XDWuzkI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/10iKNhmSMtj9y9xzE5XDWuzkI.jpg 3546w\"},className:\"framer-15o9amv\"})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DQRJbneVj:{width:\"calc(min(700px, 100vw) - 40px)\",y:4979.5},W71epeihu:{width:\"min(700px, 100vw)\",y:9088.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:3,width:\"min(900px, 100vw)\",y:9749.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qpefd-container\",children:/*#__PURE__*/_jsx(Divider,{height:\"100%\",id:\"c5xdEHyyO\",layoutId:\"c5xdEHyyO\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-heddpc\",\"data-styles-preset\":\"gJ0Aj2ATq\",children:\"Collaboration with Leah Chew\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-heddpc\",\"data-styles-preset\":\"gJ0Aj2ATq\",children:\"Coffee bag design by Leah Chew\"})]}),className:\"framer-uks2g0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":PLorZ7oDD\",webPageId:\"jYP5IIfD9\"},implicitPathVariables:undefined},{href:{hash:\":PLorZ7oDD\",webPageId:\"jYP5IIfD9\"},implicitPathVariables:undefined},{href:{hash:\":PLorZ7oDD\",webPageId:\"jYP5IIfD9\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DQRJbneVj:{y:5386.5},W71epeihu:{y:9495.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:292,width:\"100vw\",y:10216.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wvsqhw-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DQRJbneVj:{XwauBuAXv:resolvedLinks[2]},W71epeihu:{XwauBuAXv:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(FooterScroll,{height:\"100%\",id:\"N6W8N_PXX\",layoutId:\"N6W8N_PXX\",style:{width:\"100%\"},variant:\"ieO5BquYn\",width:\"100%\",XwauBuAXv:resolvedLinks[0]})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-mDn7u { background: white; }`,\".framer-mDn7u.framer-89o9a3, .framer-mDn7u .framer-89o9a3 { display: block; }\",\".framer-mDn7u.framer-7zenzt { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-mDn7u .framer-1vnbdpl-container { flex: none; height: 64px; position: relative; width: 100%; }\",\".framer-mDn7u .framer-v0jyik { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 100%; padding: 0px; position: relative; width: 900px; }\",\".framer-mDn7u .framer-9x69to { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; max-width: 100%; padding: 0px; position: relative; width: 800px; }\",\".framer-mDn7u .framer-12er77g, .framer-mDn7u .framer-7zb333 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-mDn7u .framer-1qup6d4, .framer-mDn7u .framer-7mm678 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-mDn7u .framer-1n1vftf { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 600px; position: relative; width: 100%; }\",\".framer-mDn7u .framer-jmh0ft { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 900px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-mDn7u .framer-15ifu5k, .framer-mDn7u .framer-6vbz27 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-mDn7u .framer-qlr9k1, .framer-mDn7u .framer-wrejr0, .framer-mDn7u .framer-s6ecxe, .framer-mDn7u .framer-m5f710, .framer-mDn7u .framer-477ysj, .framer-mDn7u .framer-b1wrar { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-mDn7u .framer-lkmhw6-container, .framer-mDn7u .framer-15biryb-container { flex: none; height: 600px; position: relative; width: 100%; }\",\".framer-mDn7u .framer-40fdkb { aspect-ratio: 1.5454545454545454 / 1; height: var(--framer-aspect-ratio-supported, 583px); overflow: visible; position: relative; width: 900px; }\",\".framer-mDn7u .framer-1rtanb9, .framer-mDn7u .framer-17a8xti, .framer-mDn7u .framer-1u1k1cz { aspect-ratio: 1.5525902668759812 / 1; height: var(--framer-aspect-ratio-supported, 580px); overflow: visible; position: relative; width: 900px; }\",\".framer-mDn7u .framer-1uguhoy, .framer-mDn7u .framer-182k2mh, .framer-mDn7u .framer-ar9hwe { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 596px); overflow: visible; position: relative; width: 893px; }\",\".framer-mDn7u .framer-1a3ixb5-container { flex: none; height: 631px; position: relative; width: 100%; }\",\".framer-mDn7u .framer-fav27h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-mDn7u .framer-4wt25t, .framer-mDn7u .framer-1j7wrvr, .framer-mDn7u .framer-jhwax4, .framer-mDn7u .framer-eue6nt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-mDn7u .framer-1jnzmm, .framer-mDn7u .framer-1ibn2li, .framer-mDn7u .framer-yuzvej, .framer-mDn7u .framer-czgn76 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\",\".framer-mDn7u .framer-d2l00d, .framer-mDn7u .framer-3sj9ku, .framer-mDn7u .framer-1hqa6d4, .framer-mDn7u .framer-1o9sdww, .framer-mDn7u .framer-lnd19, .framer-mDn7u .framer-47ru5c, .framer-mDn7u .framer-qdwd1s, .framer-mDn7u .framer-15o9amv { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 600px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-mDn7u .framer-1qpefd-container { flex: none; height: 3px; position: relative; width: 100%; }\",\".framer-mDn7u .framer-uks2g0 { --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-mDn7u .framer-wvsqhw-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-mDn7u.framer-7zenzt, .framer-mDn7u .framer-v0jyik, .framer-mDn7u .framer-9x69to, .framer-mDn7u .framer-1qup6d4, .framer-mDn7u .framer-jmh0ft, .framer-mDn7u .framer-7mm678, .framer-mDn7u .framer-fav27h, .framer-mDn7u .framer-4wt25t, .framer-mDn7u .framer-1j7wrvr, .framer-mDn7u .framer-jhwax4, .framer-mDn7u .framer-eue6nt { gap: 0px; } .framer-mDn7u.framer-7zenzt > * { margin: 0px; margin-bottom: calc(160px / 2); margin-top: calc(160px / 2); } .framer-mDn7u.framer-7zenzt > :first-child, .framer-mDn7u .framer-v0jyik > :first-child, .framer-mDn7u .framer-9x69to > :first-child, .framer-mDn7u .framer-1qup6d4 > :first-child, .framer-mDn7u .framer-jmh0ft > :first-child, .framer-mDn7u .framer-7mm678 > :first-child, .framer-mDn7u .framer-fav27h > :first-child, .framer-mDn7u .framer-4wt25t > :first-child, .framer-mDn7u .framer-1j7wrvr > :first-child, .framer-mDn7u .framer-jhwax4 > :first-child, .framer-mDn7u .framer-eue6nt > :first-child { margin-top: 0px; } .framer-mDn7u.framer-7zenzt > :last-child, .framer-mDn7u .framer-v0jyik > :last-child, .framer-mDn7u .framer-9x69to > :last-child, .framer-mDn7u .framer-1qup6d4 > :last-child, .framer-mDn7u .framer-jmh0ft > :last-child, .framer-mDn7u .framer-7mm678 > :last-child, .framer-mDn7u .framer-fav27h > :last-child, .framer-mDn7u .framer-4wt25t > :last-child, .framer-mDn7u .framer-1j7wrvr > :last-child, .framer-mDn7u .framer-jhwax4 > :last-child, .framer-mDn7u .framer-eue6nt > :last-child { margin-bottom: 0px; } .framer-mDn7u .framer-v0jyik > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-mDn7u .framer-9x69to > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-mDn7u .framer-1qup6d4 > *, .framer-mDn7u .framer-7mm678 > *, .framer-mDn7u .framer-fav27h > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-mDn7u .framer-jmh0ft > *, .framer-mDn7u .framer-4wt25t > *, .framer-mDn7u .framer-1j7wrvr > *, .framer-mDn7u .framer-jhwax4 > *, .framer-mDn7u .framer-eue6nt > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-mDn7u { background: white; } .framer-mDn7u.framer-7zenzt { gap: 100px; width: 810px; } .framer-mDn7u .framer-v0jyik { width: 700px; } .framer-mDn7u .framer-1n1vftf { height: 398px; } .framer-mDn7u .framer-lkmhw6-container { height: 454px; } .framer-mDn7u .framer-15biryb-container { height: 462px; } .framer-mDn7u .framer-1a3ixb5-container { height: 516px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-mDn7u.framer-7zenzt { gap: 0px; } .framer-mDn7u.framer-7zenzt > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-mDn7u.framer-7zenzt > :first-child { margin-top: 0px; } .framer-mDn7u.framer-7zenzt > :last-child { margin-bottom: 0px; } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-mDn7u { background: white; } .framer-mDn7u.framer-7zenzt { gap: 100px; width: 390px; } .framer-mDn7u .framer-1vnbdpl-container { height: auto; } .framer-mDn7u .framer-v0jyik { padding: 0px 20px 0px 20px; width: 700px; } .framer-mDn7u .framer-1n1vftf { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; height: 169px; } .framer-mDn7u .framer-lkmhw6-container, .framer-mDn7u .framer-15biryb-container { height: 228px; } .framer-mDn7u .framer-1a3ixb5-container { height: 272px; } .framer-mDn7u .framer-4wt25t, .framer-mDn7u .framer-1j7wrvr, .framer-mDn7u .framer-jhwax4, .framer-mDn7u .framer-eue6nt { max-width: unset; } .framer-mDn7u .framer-d2l00d, .framer-mDn7u .framer-3sj9ku, .framer-mDn7u .framer-1hqa6d4, .framer-mDn7u .framer-1o9sdww, .framer-mDn7u .framer-lnd19, .framer-mDn7u .framer-47ru5c, .framer-mDn7u .framer-qdwd1s, .framer-mDn7u .framer-15o9amv { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; height: 203px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-mDn7u.framer-7zenzt { gap: 0px; } .framer-mDn7u.framer-7zenzt > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-mDn7u.framer-7zenzt > :first-child { margin-top: 0px; } .framer-mDn7u.framer-7zenzt > :last-child { margin-bottom: 0px; } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9880.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"W71epeihu\":{\"layout\":[\"fixed\",\"auto\"]},\"DQRJbneVj\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramercIQAIrJY8=withCSS(Component,css,\"framer-mDn7u\");export default FramercIQAIrJY8;FramercIQAIrJY8.displayName=\"Portfolio / 2022 Holiday Campaign Characters: Concepting And Designing\";FramercIQAIrJY8.defaultProps={height:9880.5,width:1200};addFonts(FramercIQAIrJY8,[{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\"}]},...NavigationFonts,...SlideshowFonts,...YouTubeFonts,...DividerFonts,...FooterScrollFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercIQAIrJY8\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"9880.5\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"W71epeihu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DQRJbneVj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "i+BAAgT,IAAIA,IAAa,SAASA,EAAY,CAACA,EAAY,OAAU,MAAMA,EAAY,KAAQ,KAAKA,EAAY,KAAQ,MAAO,GAAGA,KAAcA,GAAY,CAAC,EAAE,EAAE,IAAIC,IAAkB,SAASA,EAAiB,CAACA,EAAiB,KAAQ,eAAeA,EAAiB,OAAU,iBAAiBA,EAAiB,IAAO,cAAcA,EAAiB,IAAO,KAAM,GAAGA,KAAmBA,GAAiB,CAAC,EAAE,EAAE,IAAIC,IAAiB,SAASA,EAAgB,CAACA,EAAgB,KAAQ,OAAOA,EAAgB,IAAO,KAAM,GAAGA,KAAkBA,GAAgB,CAAC,EAAE,EAQv0B,SAASC,EAAQ,CAAC,IAAAC,EAAI,KAAAC,EAAK,WAAAC,EAAW,UAAAC,EAAU,MAAAC,EAAM,QAAAC,EAAQ,aAAAC,EAAa,aAAAC,EAAa,YAAAC,EAAY,UAAAC,EAAU,MAAAC,GAAM,GAAGC,EAAK,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,EAAK,EAAQe,EAAgBF,IAAe,mBAAmBA,IAAe,MAAM,GAAGxB,IAAM,GAAI,OAAoB2B,EAAKC,GAAa,CAAC,CAAC,EAAG,IAAMC,GAAUC,GAAc9B,CAAG,EAAE,GAAG6B,KAAY,OAAW,OAAoBF,EAAKI,GAAa,CAAC,QAAQ,sBAAsB,CAAC,EAAG,GAAK,CAACC,GAAQC,EAAQ,EAAEJ,GAC5uBK,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,IAAO,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,GAAW,WAAWvB,EAAc,sBAAsBwB,GAAgBP,GAAQ7B,EAAUqC,GAAiB,EAAE,OAAO,KAAK,eAAe,MAAS,CAAC,CAAC,EAAG5B,EAAqJ,KAA/He,EAAK,SAAS,CAAC,QAASR,EAAiB,OAAP,OAAiB,MAAOA,EAAyCmB,GAA/B,CAAC,GAAGA,GAAW,QAAQ,MAAM,EAAa,GAAGH,EAAW,CAAC,EAAOhB,EAAU,KAAkBQ,EAAKc,GAAW,CAAC,QAAQrB,EAAW,UAAUC,EAAU,MAAMjB,CAAK,CAAC,CAAC,CAAC,CAAC,CAAE,CAACL,EAAQ,YAAY,UAAU2C,GAAoB3C,EAAQ,CAAC,IAAI,CAAC,KAAK4C,EAAY,OAAO,MAAM,OAAO,EAAE,KAAK,CAAC,KAAKA,EAAY,KAAK,MAAM,WAAW,QAAQ,OAAO,OAAO/C,EAAW,CAAC,EAAE,WAAW,CAAC,MAAM,OAAO,KAAK+C,EAAY,QAAQ,aAAa,MAAM,cAAc,KAAK,OAAOhC,EAAM,CAAC,OAAOA,EAAM,OAAO,KAAM,CAAC,EAAE,UAAU,CAAC,MAAM,YAAY,YAAY,4CAA4C,KAAKgC,EAAY,KAAK,QAAQ,OAAO,OAAO9C,EAAgB,EAAE,OAAOc,EAAM,CAAC,OAAOA,EAAM,OAAO,KAAM,CAAC,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKgC,EAAY,QAAQ,aAAa,MAAM,cAAc,OAAO,EAAE,GAAGC,GAAoB,GAAGC,EAAa,CAAC,EAAE,IAAMC,GAAa,CAAC,IAAI,+BAA+B,KAAK,MAAM,WAAW,GAAK,UAAU,iBAAiB,MAAM,EAAI,EAAE/C,EAAQ,aAAa+C,GAAa,SAAShB,GAAciB,EAAU,CAAC,IAAI/C,EAAI,GAAG,CAACA,EAAI,IAAI,IAAI+C,CAAS,CAAE,MAAC,CAAM,IAAMd,EAASe,GAAYD,CAAS,EAAE,MAAM,CAACA,EAAUd,CAAQ,CAAE,CAAC,GAAGjC,EAAI,WAAW,eAAeA,EAAI,WAAW,mBAAmBA,EAAI,WAAW,wBAAwBA,EAAI,WAAW,2BAA2B,CAAC,IAAMiD,EAAajD,EAAI,SAAS,MAAM,CAAC,EAAE,MAAM,GAAG,EACn2D,GAAGiD,EAAa,CAAC,IAAI,QAAQ,CAAC,IAAMjB,EAAQhC,EAAI,aAAa,IAAI,GAAG,EAAQiC,EAASe,GAAYhB,CAAO,EAAE,MAAM,CAACA,EAAQC,CAAQ,EACjI,GAAGgB,EAAa,CAAC,IAAI,QAAuC,MAAM,CAAtBA,EAAa,CAAC,EAAiBjD,CAAG,EAC9E,GAAGA,EAAI,WAAW,WAAW,CAAC,IAAMgC,EAAQhC,EAAI,SAAS,MAAM,CAAC,EAAQiC,EAASe,GAAYhB,CAAO,EAAE,MAAM,CAACA,EAAQC,CAAQ,EAAG,CAAC,SAASe,GAAYhB,EAAQ,CAAC,OAAO,IAAI,IAAI,iCAAiCA,GAAS,CAAE,CAAC,SAASO,GAAgBP,EAAQkB,EAAIC,EAAO,MAAM,CAC7Q,IAAMC,EAAQD,IAAS,OAAaE,EAAID,EAAQ,+BAA+B,0BAAgCE,EAAIF,EAAQ,OAAO,MAAM,OAAOF,EAAI,CAAC,IAAI,cAAc,MAAM,GAAGG,IAAMrB,eAAqBsB,IAAM,IAAI,iBAAiB,MAAM,GAAGD,IAAMrB,eAAqBsB,IAAM,IAAI,eAAe,MAAM,GAAGD,IAAMrB,mBAAyBsB,IAAM,QAAQ,MAAM,GAAGD,IAAMrB,OAAasB,GAAM,CAAC,CAAC,IAAIC,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,GAAW,CAAC,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,OAAO,OAAO,MAAM,MAAM,ECtBjX,IAAMyB,GAAgBC,EAASC,CAAU,EAAQC,GAAeC,EAAOC,CAAQ,EAAQC,GAAYF,EAAOG,CAAK,EAAQC,EAAgBJ,EAAOK,EAAO,GAAG,EAAQC,GAAeT,EAASU,CAAS,EAAQC,GAAgBR,EAAOS,CAAS,EAAQC,GAAab,EAASc,CAAO,EAAQC,GAAaf,EAASgB,EAAO,EAAQC,GAAkBjB,EAASkB,CAAY,EAAQC,GAAY,CAAC,UAAU,qBAAqB,UAAU,sBAAsB,UAAU,4CAA4C,EAAoD,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,EAAQC,EAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,EAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,EAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,EAAY,EAAE,EAAE,EAAE,EAAE,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQE,EAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,EAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,EAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,MAAM,EAAE,WAAWD,EAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAASA,EAAiB,EAAQC,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAA6BC,GAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAQc,GAAU,IAAI,CAAC,IAAMC,EAAUrB,EAAiB,OAAUY,CAAY,EAAE,GAAGS,EAAU,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAU,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAU,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,GAAI,EAAE,CAAC,OAAUV,CAAY,CAAC,EAAQW,GAAmB,IAAI,CAAC,IAAMF,EAAUrB,EAAiB,OAAUY,CAAY,EAAqC,GAAnC,SAAS,MAAMS,EAAU,OAAO,GAAMA,EAAU,SAAS,CAAC,IAAIG,GAAyBA,EAAwB,SAAS,cAAc,uBAAuB,KAAK,MAAMA,IAA0B,QAAcA,EAAwB,aAAa,UAAUH,EAAU,QAAQ,EAAG,IAAMI,EAAQJ,EAAU,cAAc,GAAGI,EAAQ,CAAC,IAAMC,EAAK,SAAS,KAAKA,EAAK,UAAU,QAAQC,GAAGA,EAAE,WAAW,cAAc,GAAGD,EAAK,UAAU,OAAOC,CAAC,CAAC,EAAED,EAAK,UAAU,IAAI,GAAGL,EAAU,4BAA4B,EAAG,MAAM,IAAI,CAAII,GAAQ,SAAS,KAAK,UAAU,OAAO,GAAGJ,EAAU,4BAA4B,CAAE,CAAE,EAAE,CAAC,OAAUT,CAAY,CAAC,EAAE,GAAK,CAACgB,EAAYC,EAAmB,EAAEC,GAA8BZ,EAAQa,GAAY,EAAK,EAAQC,GAAe,OAAgBC,EAAWC,EAAO,IAAI,EAAQC,EAAUC,GAAkB,WAAW,EAAQC,EAAWH,EAAO,IAAI,EAAQI,EAAOC,GAAU,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAa1B,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,EAAE,OAAA2B,GAAiB,CAAC,CAAC,EAAsBC,EAAKC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAtD,EAAiB,EAAE,SAAsBuD,EAAMC,GAAY,CAAC,GAAG9B,GAA4CuB,EAAgB,SAAS,CAAcM,EAAME,EAAO,IAAI,CAAC,GAAG7B,EAAU,UAAU8B,EAAG3D,GAAkB,GAAGoD,EAAsB,gBAAgB1B,CAAS,EAAE,IAAIL,GAA6BsB,EAAK,MAAM,CAAC,GAAGlB,CAAK,EAAE,SAAS,CAAc6B,EAAKM,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,EAAE,EAAE,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,aAAa,GAAGhB,EAAU,KAAK,aAAa,IAAIE,EAAK,SAAsBO,EAAKQ,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBgB,EAAKS,EAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,aAAa,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeP,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAAcF,EAAKU,GAAe,CAAC,kBAAkB,CAAC,WAAW7D,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAU,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBkD,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,KAAK,cAAc,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKU,GAAe,CAAC,kBAAkB,CAAC,WAAW7D,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAU,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBkD,EAAWW,EAAS,CAAC,SAAsBX,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,0DAA0D,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,KAAK,QAAQ,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,WAAW,SAAS,CAAcF,EAAKQ,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ4B,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,wCAAwC,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQA,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBZ,EAAKa,GAAY,CAAC,kBAAkB,CAAC,WAAWhE,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAU,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ8D,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,QAAQ,CAAC,CAAC,CAAC,EAAeV,EAAMY,EAAgB,CAAC,kBAAkB,CAAC,WAAW/D,EAAW,EAAE,sBAAsB,GAAK,gBAAgBH,EAAU,eAAeI,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,SAAS,CAAcgD,EAAKe,EAAS,CAAC,sBAAsB,GAAK,SAAsBf,EAAWW,EAAS,CAAC,SAAsBX,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,EAAKe,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAYS,EAAS,CAAC,SAAS,CAAcX,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,+aAA2Z,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,gbAA2a,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAMY,EAAgB,CAAC,kBAAkB,CAAC,WAAW/D,EAAW,EAAE,sBAAsB,GAAK,gBAAgBH,EAAU,eAAeI,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,mBAAmB,KAAK,mBAAmB,SAAS,CAAcgD,EAAKe,EAAS,CAAC,sBAAsB,GAAK,SAAsBf,EAAWW,EAAS,CAAC,SAAsBX,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAA0B,CAAC,SAAsBN,EAAKgB,GAAgB,CAAC,kBAAkB,CAAC,WAAWnE,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAU,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,SAAsBkD,EAAKiB,EAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,qBAAqB,SAAS,GAAG,aAAa,GAAG,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,OAAO,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAM,aAAa,EAAE,UAAU,OAAO,YAAY,GAAM,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,IAAI,WAAW,EAAE,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAI,EAAE,MAAM,CAAcjB,EAAKkB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,OAAO,eAAe,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,6bAA6b,EAAE,UAAU,gBAAgB,mBAAmB,yCAAyC,KAAK,wCAAwC,CAAC,EAAelB,EAAKkB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,MAAM,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,SAAS,CAAC,EAAelB,EAAKkB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,MAAM,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,wFAAwF,OAAO,qKAAqK,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,SAAS,CAAC,EAAelB,EAAKkB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,MAAM,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,SAAS,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKM,EAA0B,CAAC,SAAsBN,EAAKgB,GAAgB,CAAC,kBAAkB,CAAC,WAAWnE,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAU,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,SAAsBkD,EAAKiB,EAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,qBAAqB,SAAS,GAAG,aAAa,GAAG,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,OAAO,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAM,aAAa,EAAE,UAAU,OAAO,YAAY,GAAM,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,IAAI,WAAW,EAAE,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAI,EAAE,MAAM,CAAcjB,EAAKkB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,wFAAwF,OAAO,qKAAqK,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,WAAW,CAAC,EAAelB,EAAKkB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,WAAW,CAAC,EAAelB,EAAKkB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,WAAW,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKmB,EAAQ,CAAC,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,MAAM,GAAK,SAAS,YAAY,KAAK,MAAM,WAAW,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,iBAAiB,cAAc,EAAE,eAAe,EAAE,IAAI,8CAA8C,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenB,EAAKe,EAAS,CAAC,sBAAsB,GAAK,SAAsBf,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,KAAK,aAAa,SAAS,CAAcA,EAAMY,EAAgB,CAAC,kBAAkB,CAAC,WAAW5D,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,SAAS,CAAc6C,EAAKe,EAAS,CAAC,sBAAsB,GAAK,SAAsBf,EAAWW,EAAS,CAAC,SAAsBX,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKe,EAAS,CAAC,sBAAsB,GAAK,SAAsBf,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,8PAAyP,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ4B,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,qEAAqE,OAAO,4VAA4V,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQA,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,qEAAqE,OAAO,4VAA4V,CAAC,CAAC,EAAE,SAAsBZ,EAAKkB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQN,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,qEAAqE,OAAO,4VAA4V,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAeZ,EAAKQ,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ4B,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQA,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBZ,EAAKkB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQN,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAMY,EAAgB,CAAC,kBAAkB,CAAC,WAAW5D,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,SAAS,CAAc6C,EAAKe,EAAS,CAAC,sBAAsB,GAAK,SAAsBf,EAAWW,EAAS,CAAC,SAAsBX,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKe,EAAS,CAAC,sBAAsB,GAAK,SAAsBf,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,uRAAkR,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ4B,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQA,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBZ,EAAKkB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQN,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeZ,EAAKQ,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ4B,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQA,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBZ,EAAKkB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQN,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAMY,EAAgB,CAAC,kBAAkB,CAAC,WAAW5D,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,SAAS,CAAc6C,EAAKe,EAAS,CAAC,sBAAsB,GAAK,SAAsBf,EAAWW,EAAS,CAAC,SAAsBX,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKe,EAAS,CAAC,sBAAsB,GAAK,SAAsBf,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,oZAAqY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ4B,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQA,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBZ,EAAKkB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQN,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,cAAc,CAAC,CAAC,CAAC,EAAeZ,EAAKQ,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ4B,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQA,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBZ,EAAKkB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQN,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAMY,EAAgB,CAAC,kBAAkB,CAAC,WAAW5D,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,SAAS,CAAc6C,EAAKe,EAAS,CAAC,sBAAsB,GAAK,SAAsBf,EAAWW,EAAS,CAAC,SAAsBX,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,kCAAkC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKe,EAAS,CAAC,sBAAsB,GAAK,SAAsBf,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,oMAAoM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ4B,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQA,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBZ,EAAKkB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQN,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAeZ,EAAKQ,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ4B,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,qEAAqE,OAAO,4VAA4V,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQA,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,qEAAqE,OAAO,4VAA4V,CAAC,CAAC,EAAE,SAAsBZ,EAAKkB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQN,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iCAAiC,IAAI,qEAAqE,OAAO,4VAA4V,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeZ,EAAKQ,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,iCAAiC,EAAE,MAAM,EAAE,UAAU,CAAC,MAAM,oBAAoB,EAAE,MAAM,CAAC,EAAE,SAAsBgB,EAAKM,EAA0B,CAAC,OAAO,EAAE,MAAM,oBAAoB,EAAE,OAAO,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKoB,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepB,EAAKe,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAYS,EAAS,CAAC,SAAS,CAAcX,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,8BAA8B,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,gCAAgC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKqB,GAAa,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,GAA4BtB,EAAKQ,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,MAAM,CAAC,EAAE,SAAsBgB,EAAKM,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,QAAQ,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUsC,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsBtB,EAAKuB,EAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUD,EAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetB,EAAK,MAAM,CAAC,UAAUK,EAAG3D,GAAkB,GAAGoD,CAAqB,EAAE,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ0B,GAAI,CAAC,kFAAkF,IAAIpE,GAAS,oDAAoD,gFAAgF,oSAAoS,yGAAyG,2RAA2R,2RAA2R,mMAAmM,8UAA8U,gOAAgO,8SAA8S,gRAAgR,0bAA0b,kJAAkJ,mLAAmL,kPAAkP,kOAAkO,0GAA0G,uRAAuR,qYAAqY,gYAAgY,igBAAigB,uGAAuG,iPAAiP,wGAAwG,ipEAAipE,wDAAwDA,GAAS,guBAAguB,gCAAgCA,GAAS,86CAA86C,GAAeoE,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,EAAG,EAS76mDC,EAAgBC,GAAQ7D,GAAU2D,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,yEAAyEA,EAAgB,aAAa,CAAC,OAAO,OAAO,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,CAAC,CAAC,EAAE,GAAGI,GAAgB,GAAGC,GAAe,GAAGC,GAAa,GAAGC,GAAa,GAAGC,GAAkB,GAAGC,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACnrE,IAAMC,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,yBAA2B,QAAQ,uBAAyB,GAAG,sBAAwB,IAAI,6BAA+B,OAAO,sBAAwB,SAAS,qBAAuB,OAAO,oCAAsC,4JAA0L,yBAA2B,MAAM,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,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", "NavigationFonts", "getFonts", "m42xapiu9_default", "RichTextWithFX", "withFX", "RichText2", "ImageWithFX", "Image2", "MotionDivWithFX", "motion", "SlideshowFonts", "Slideshow", "ContainerWithFX", "Container", "YouTubeFonts", "Youtube", "DividerFonts", "VmxGk9h1z_default", "FooterScrollFonts", "cyHAOqTsN_default", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "m42xapiu9_default", "RichTextWithFX", "x", "getLoadingLazyAtYPosition", "ImageWithFX", "MotionDivWithFX", "RichText2", "ContainerWithFX", "Slideshow", "Image2", "Youtube", "VmxGk9h1z_default", "ResolveLinks", "resolvedLinks", "cyHAOqTsN_default", "css", "FramercIQAIrJY8", "withCSS", "cIQAIrJY8_default", "addFonts", "NavigationFonts", "SlideshowFonts", "YouTubeFonts", "DividerFonts", "FooterScrollFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
