{"version":3,"file":"UvK38BNRr.D_b9DyOL.mjs","names":["useState","useRef","useCallback","React.useContext","React.useMemo","React.Fragment","useRef","React.useId","Image","OraProjects","_Fragment","dHg3trIHkUneTQrjnI","FnwgSIUrAUneTQrjnI","iC9pVt3ffUneTQrjnI","idUneTQrjnI","nmra7HyPcUneTQrjnI","sehCNecQNUneTQrjnI","TXmd62wMmUneTQrjnI","XJ8ZUbM6yUneTQrjnI"],"sources":["https:/framerusercontent.com/modules/NPGZElUVuglnNDwk92it/K0K3X0HelqBuaE3oP9hd/VimeoVideo.js","https:/framerusercontent.com/modules/OuTp8fcRbRR94BKhQtlq/B76QgbPTm1mVG5HBZLB1/UvK38BNRr.js"],"sourcesContent":["// Improved Vimeo Hero Video component with better error handling\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useRef,useEffect,startTransition,useCallback}from\"react\";import{addPropertyControls,ControlType,useIsStaticRenderer}from\"framer\";import{motion}from\"framer-motion\";/**\n * Improved Vimeo Hero Video component with better error handling\n *\n * @framerIntrinsicWidth 640\n * @framerIntrinsicHeight 360\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function VimeoVideo(props){const{vimeoUrl=\"https://vimeo.com/123456789\",placeholderImage={src:\"https://framerusercontent.com/images/GfGkADagM4KEibNcIiRUWlfrR0.jpg\",alt:\"Video placeholder\"},autoplay=true,muted=true,loop=true,controls=false,showTitle=false,showByline=false,showPortrait=false,quality=\"auto\",overlayContent,overlayOpacity=.3,scaleMode=\"cover\",customScale=1,videoPosition=\"center\",preloadDelay=0,fadeTransitionDuration=.8,style}=props;const[isLoaded,setIsLoaded]=useState(false);const[isPlaying,setIsPlaying]=useState(false);const[showVideo,setShowVideo]=useState(false);const[hasError,setHasError]=useState(false);const[containerSize,setContainerSize]=useState({width:0,height:0});const[isInitialLoad,setIsInitialLoad]=useState(true);const[videoKey,setVideoKey]=useState(0)// Key für iframe refresh\n;const iframeRef=useRef(null);const containerRef=useRef(null);const loadTimeoutRef=useRef(null);const hideTimeoutRef=useRef(null);const isStatic=useIsStaticRenderer();// Extract Vimeo ID from URL\nconst extractVimeoId=useCallback(url=>{const patterns=[/vimeo\\.com\\/(\\d+)/,/player\\.vimeo\\.com\\/video\\/(\\d+)/,/vimeo\\.com\\/channels\\/[\\w-]+\\/(\\d+)/,/vimeo\\.com\\/groups\\/[\\w-]+\\/videos\\/(\\d+)/,/vimeo\\.com\\/album\\/\\d+\\/video\\/(\\d+)/,/vimeo\\.com\\/(\\d+)\\?/];for(const pattern of patterns){const match=url.match(pattern);if(match){return match[1];}}return\"\";},[]);const vimeoId=extractVimeoId(vimeoUrl);const isValidUrl=vimeoId!==\"\";// Construct Vimeo embed URL with additional parameters for better loading\nconst embedUrl=isValidUrl?`https://player.vimeo.com/video/${vimeoId}?`+`autoplay=${autoplay?1:0}&`+`muted=${muted?1:0}&`+`loop=${loop?1:0}&`+`controls=${controls?1:0}&`+`title=${showTitle?1:0}&`+`byline=${showByline?1:0}&`+`portrait=${showPortrait?1:0}&`+`quality=${quality}&`+`background=1&`+`responsive=1&`+`dnt=1&`+// Do not track\n`keyboard=0&`+// Disable keyboard controls\n`pip=0&`+// Disable picture in picture\n`transparent=0&`+// Disable transparency\n`speed=0`// Disable speed controls\n:\"\";// Reset states when URL changes\nuseEffect(()=>{if(isValidUrl){setIsLoaded(false);setIsPlaying(false);setShowVideo(false);setHasError(false);setVideoKey(prev=>prev+1)// Force iframe reload\n;// Clear any existing timeouts\nif(loadTimeoutRef.current){clearTimeout(loadTimeoutRef.current);}if(hideTimeoutRef.current){clearTimeout(hideTimeoutRef.current);}}},[vimeoUrl,isValidUrl]);// Handle iframe load with better timing\nconst handleIframeLoad=useCallback(()=>{if(!isValidUrl)return;// Clear any existing load timeout\nif(loadTimeoutRef.current){clearTimeout(loadTimeoutRef.current);}// Add a delay to ensure the video is actually ready\nloadTimeoutRef.current=setTimeout(()=>{startTransition(()=>{setIsLoaded(true);setHasError(false);if(autoplay){setIsPlaying(true);// Additional delay before showing video to prevent flash\nconst showDelay=isInitialLoad?preloadDelay:preloadDelay/2;setTimeout(()=>{setShowVideo(true);setIsInitialLoad(false);},showDelay);}});},300)// Small delay to ensure iframe content is ready\n;},[autoplay,isValidUrl,preloadDelay,isInitialLoad]);// Handle iframe error with better recovery\nconst handleIframeError=useCallback(()=>{console.warn(\"Vimeo iframe load error, attempting recovery...\");startTransition(()=>{setHasError(true);setIsLoaded(false);setShowVideo(false);});// Attempt to reload after a delay\nsetTimeout(()=>{if(isValidUrl){setVideoKey(prev=>prev+1);setHasError(false);}},2e3);},[isValidUrl]);// Update container size\nuseEffect(()=>{if(!containerRef.current||isStatic)return;const updateSize=()=>{if(containerRef.current){const rect=containerRef.current.getBoundingClientRect();startTransition(()=>{setContainerSize({width:rect.width,height:rect.height});});}};updateSize();const resizeObserver=new ResizeObserver(updateSize);resizeObserver.observe(containerRef.current);return()=>resizeObserver.disconnect();},[isStatic]);// Cleanup timeouts\nuseEffect(()=>{return()=>{if(loadTimeoutRef.current){clearTimeout(loadTimeoutRef.current);}if(hideTimeoutRef.current){clearTimeout(hideTimeoutRef.current);}};},[]);// Calculate video dimensions based on scale mode\nconst getVideoStyles=()=>{const aspectRatio=16/9;const containerAspectRatio=containerSize.width/containerSize.height;let videoWidth=containerSize.width;let videoHeight=containerSize.height;let top=\"50%\";let left=\"50%\";let translateX=\"-50%\";let translateY=\"-50%\";switch(scaleMode){case\"cover\":if(containerAspectRatio>aspectRatio){videoWidth=containerSize.width;videoHeight=containerSize.width/aspectRatio;}else{videoHeight=containerSize.height;videoWidth=containerSize.height*aspectRatio;}// Apply position for cover mode\nswitch(videoPosition){case\"top\":top=\"0%\";translateY=\"0%\";break;case\"bottom\":top=\"100%\";translateY=\"-100%\";break;case\"left\":left=\"0%\";translateX=\"0%\";break;case\"right\":left=\"100%\";translateX=\"-100%\";break;case\"center\":default:top=\"50%\";left=\"50%\";translateX=\"-50%\";translateY=\"-50%\";break;}break;case\"contain\":if(containerAspectRatio>aspectRatio){videoHeight=containerSize.height;videoWidth=containerSize.height*aspectRatio;}else{videoWidth=containerSize.width;videoHeight=containerSize.width/aspectRatio;}break;case\"fill\":videoWidth=containerSize.width;videoHeight=containerSize.height;break;case\"custom\":const baseWidth=containerSize.width;const baseHeight=baseWidth/aspectRatio;videoWidth=baseWidth*customScale;videoHeight=baseHeight*customScale;break;}// Adjust position for non-cover modes\nif(scaleMode!==\"cover\"){switch(videoPosition){case\"top\":top=\"0%\";translateY=\"0%\";break;case\"bottom\":top=\"100%\";translateY=\"-100%\";break;case\"left\":left=\"0%\";translateX=\"0%\";break;case\"right\":left=\"100%\";translateX=\"-100%\";break;}}const transform=`translate(${translateX}, ${translateY})`;return{width:videoWidth,height:videoHeight,top,left,transform};};const videoStyles=getVideoStyles();return /*#__PURE__*/_jsxs(motion.div,{ref:containerRef,style:{...style,position:\"relative\",width:\"100%\",height:\"100%\",overflow:\"hidden\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",backgroundColor:\"transparent\"},initial:{opacity:0},animate:{opacity:1},transition:{duration:fadeTransitionDuration},children:[/*#__PURE__*/_jsx(motion.div,{style:{position:\"absolute\",top:0,left:0,width:\"100%\",height:\"100%\",backgroundColor:\"transparent\",zIndex:10,pointerEvents:showVideo?\"none\":\"auto\"},initial:{opacity:1},animate:{opacity:showVideo?0:1},transition:{duration:fadeTransitionDuration,ease:\"easeOut\",delay:showVideo?0:0}}),placeholderImage&&/*#__PURE__*/_jsx(motion.div,{style:{position:\"absolute\",top:0,left:0,width:\"100%\",height:\"100%\",backgroundImage:`url(${placeholderImage.src})`,backgroundSize:scaleMode===\"fill\"?\"100% 100%\":scaleMode,backgroundPosition:videoPosition===\"center\"?\"center\":videoPosition,backgroundRepeat:\"no-repeat\",zIndex:1},animate:{opacity:isLoaded&&isPlaying&&showVideo?0:1},transition:{duration:fadeTransitionDuration}}),!isStatic&&isValidUrl&&/*#__PURE__*/_jsx(motion.iframe,{ref:iframeRef,src:embedUrl,style:{position:\"absolute\",top:\"50%\",left:\"50%\",width:videoStyles.width,height:videoStyles.height,transform:videoStyles.transform,border:\"none\",zIndex:2,visibility:showVideo?\"visible\":\"hidden\"},initial:{opacity:0},animate:{opacity:showVideo?1:0},transition:{duration:fadeTransitionDuration,ease:\"easeOut\",delay:.2},allow:\"autoplay; fullscreen; picture-in-picture\",allowFullScreen:true,onLoad:handleIframeLoad,onError:handleIframeError,title:\"Vimeo Hero Video\",loading:\"eager\"// Ensure fast loading\n},videoKey),isStatic&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",top:\"50%\",left:\"50%\",width:videoStyles.width,height:videoStyles.height,transform:videoStyles.transform,backgroundColor:\"#000\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",color:\"white\",fontSize:\"16px\",zIndex:2},children:isValidUrl?`Vimeo Video: ${vimeoId}`:\"Ung\\xfcltige Vimeo URL\"}),overlayContent&&/*#__PURE__*/_jsx(motion.div,{style:{position:\"absolute\",top:0,left:0,width:\"100%\",height:\"100%\",backgroundColor:`rgba(0, 0, 0, ${overlayOpacity})`,zIndex:5,display:\"flex\",alignItems:\"center\",justifyContent:\"center\",color:\"white\",textAlign:\"center\",padding:\"20px\"},initial:{opacity:0},animate:{opacity:showVideo?1:0},transition:{delay:showVideo?fadeTransitionDuration:0,duration:fadeTransitionDuration},children:overlayContent})]});}addPropertyControls(VimeoVideo,{vimeoUrl:{type:ControlType.String,title:\"Vimeo URL\",defaultValue:\"https://vimeo.com/123456789\",placeholder:\"https://vimeo.com/123456789\"},placeholderImage:{type:ControlType.ResponsiveImage,title:\"Placeholder Bild\"},autoplay:{type:ControlType.Boolean,title:\"Autoplay\",defaultValue:true},muted:{type:ControlType.Boolean,title:\"Stumm\",defaultValue:true},loop:{type:ControlType.Boolean,title:\"Loop\",defaultValue:true},controls:{type:ControlType.Boolean,title:\"Controls zeigen\",defaultValue:false},showTitle:{type:ControlType.Boolean,title:\"Titel zeigen\",defaultValue:false},showByline:{type:ControlType.Boolean,title:\"Byline zeigen\",defaultValue:false},showPortrait:{type:ControlType.Boolean,title:\"Portrait zeigen\",defaultValue:false},quality:{type:ControlType.Enum,title:\"Qualit\\xe4t\",options:[\"auto\",\"240p\",\"360p\",\"540p\",\"720p\",\"1080p\"],defaultValue:\"auto\"},scaleMode:{type:ControlType.Enum,title:\"Skalierung\",options:[\"cover\",\"contain\",\"fill\",\"custom\"],optionTitles:[\"Cover\",\"Contain\",\"Fill\",\"Custom\"],defaultValue:\"cover\",displaySegmentedControl:true},customScale:{type:ControlType.Number,title:\"Custom Scale\",defaultValue:1,min:.1,max:3,step:.1,hidden:({scaleMode})=>scaleMode!==\"custom\"},videoPosition:{type:ControlType.Enum,title:\"Position\",options:[\"center\",\"top\",\"bottom\",\"left\",\"right\"],optionTitles:[\"Center\",\"Top\",\"Bottom\",\"Left\",\"Right\"],defaultValue:\"center\",displaySegmentedControl:true},preloadDelay:{type:ControlType.Number,title:\"Preload Delay (ms)\",defaultValue:0,min:0,max:3e3,step:100,description:\"Verz\\xf6gerung bevor Video eingeblendet wird\"},fadeTransitionDuration:{type:ControlType.Number,title:\"Fade Duration (s)\",defaultValue:.8,min:.2,max:2,step:.1,description:\"Dauer der \\xdcberblendung\"},overlayContent:{type:ControlType.ComponentInstance,title:\"Overlay Content\"},overlayOpacity:{type:ControlType.Number,title:\"Overlay Transparenz\",min:0,max:1,step:.1,defaultValue:.3,hidden:({overlayContent})=>!overlayContent}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"VimeoVideo\",\"slots\":[\"overlayContent\"],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"640\",\"framerIntrinsicHeight\":\"360\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VimeoVideo.map","// Generated by Framer (5f2272d)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useQueryData,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import{withCursorFollow}from\"https://framerusercontent.com/modules/y4ULOEoCBMd6HdRReX8a/hlBqXQoGguoTQo2htpU8/CustomCursor.js\";import VimeoVideo from\"https://framerusercontent.com/modules/NPGZElUVuglnNDwk92it/K0K3X0HelqBuaE3oP9hd/VimeoVideo.js\";import OraProjects from\"https://framerusercontent.com/modules/46TlqNDiSU6GvFlT8X0Z/xMHr8UCbRVv0wY1cyzvb/PhixcoSCu.js\";const VimeoVideoFonts=getFonts(VimeoVideo);const VideoFonts=getFonts(Video);const MotionButtonWithCursorFollowagb15x=withCodeBoundaryForOverrides(motion.button,{nodeId:\"U2ZyyYjoT\",override:withCursorFollow,scopeId:\"UvK38BNRr\"});const MotionButtonWithCursorFollow1odj146=withCodeBoundaryForOverrides(motion.button,{nodeId:\"uEdLue9bY\",override:withCursorFollow,scopeId:\"UvK38BNRr\"});const cycleOrder=[\"ex3QkBkgk\",\"HRXHVc5k_\",\"m_02ZSt8W\",\"so70cSU1u\",\"xKktyDed1\",\"vYkhKLTkM\",\"Zp1T3Wrvh\",\"TyjDXcMhx\"];const serializationHash=\"framer-hX7WU\";const variantClassNames={ex3QkBkgk:\"framer-v-1vu9ot3\",HRXHVc5k_:\"framer-v-vtmk71\",m_02ZSt8W:\"framer-v-mjc1a2\",so70cSU1u:\"framer-v-s2c15h\",TyjDXcMhx:\"framer-v-ys2qfu\",vYkhKLTkM:\"framer-v-11qgsym\",xKktyDed1:\"framer-v-1kv3ri6\",Zp1T3Wrvh:\"framer-v-1sg3cn0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.9,ease:[.25,1,.5,1],type:\"tween\"};const transition2={delay:0,duration:.6,ease:[.25,1,.5,1],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const negate=value=>{return!value;};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const query=(prequery,{ngb8Pk5GL})=>prequery({from:{alias:\"UneTQrjnI\",data:OraProjects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"UneTQrjnI\",name:\"dHg3trIHk\",type:\"Identifier\"},{collection:\"UneTQrjnI\",name:\"nmra7HyPc\",type:\"Identifier\"},{collection:\"UneTQrjnI\",name:\"XJ8ZUbM6y\",type:\"Identifier\"},{collection:\"UneTQrjnI\",name:\"sehCNecQN\",type:\"Identifier\"},{collection:\"UneTQrjnI\",name:\"FnwgSIUrA\",type:\"Identifier\"},{collection:\"UneTQrjnI\",name:\"TXmd62wMm\",type:\"Identifier\"},{collection:\"UneTQrjnI\",name:\"iC9pVt3ff\",type:\"Identifier\"},{collection:\"UneTQrjnI\",name:\"id\",type:\"Identifier\"}],where:{left:{conditions:[{then:{type:\"LiteralValue\",value:true},type:\"Condition\",when:{type:\"LiteralValue\",value:\"VOX3NaawN\"}}],else:{type:\"LiteralValue\",value:false},type:\"Case\",value:{collection:\"UneTQrjnI\",name:\"fY2GuGkFp\",type:\"Identifier\"}},operator:\"and\",right:{left:{collection:\"UneTQrjnI\",name:\"PbqHsHzDE\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:ngb8Pk5GL},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Grid Card - Discover More - Hover\":\"vYkhKLTkM\",\"Grid Card - Discover More - Mobile\":\"TyjDXcMhx\",\"Grid Card - Discover More - Tablet\":\"Zp1T3Wrvh\",\"Grid Card - Discover More\":\"xKktyDed1\",\"Grid Card - Hover\":\"HRXHVc5k_\",\"Grid Card\":\"ex3QkBkgk\",\"Grid Project - Mobile\":\"so70cSU1u\",\"Grid Project - Tablet\":\"m_02ZSt8W\"};const getProps=({client,filter,height,id,link,logoImage,placeholderImage,thumbnail,title,vimeoURL,width,...props})=>{return{...props,CNENJTi2T:thumbnail??props.CNENJTi2T,EvxtEg3yT:link??props.EvxtEg3yT,i_vXD59cM:client??props.i_vXD59cM??\"text\",I8BqU0Guv:title??props.I8BqU0Guv??\"text\",ngb8Pk5GL:filter??props.ngb8Pk5GL??1,tJL_S_tj_:vimeoURL??props.tJL_S_tj_,variant:humanReadableVariantMap[props.variant]??props.variant??\"ex3QkBkgk\",vqKDEHV2t:logoImage??props.vqKDEHV2t,wHuE7fgyO:placeholderImage??props.wHuE7fgyO};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,ngb8Pk5GL,tJL_S_tj_,EvxtEg3yT,vqKDEHV2t,I8BqU0Guv,i_vXD59cM,wHuE7fgyO,CNENJTi2T,dHg3trIHkUneTQrjnI,nmra7HyPcUneTQrjnI,XJ8ZUbM6yUneTQrjnI,sehCNecQNUneTQrjnI,FnwgSIUrAUneTQrjnI,TXmd62wMmUneTQrjnI,iC9pVt3ffUneTQrjnI,idUneTQrjnI,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ex3QkBkgk\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1oeqonn=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"HRXHVc5k_\");});const onMouseLeavekuj2ik=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"ex3QkBkgk\");});const onMouseEnter1qtj65q=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"vYkhKLTkM\");});const onMouseLeave1xxh1hj=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"xKktyDed1\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"xKktyDed1\",\"vYkhKLTkM\",\"Zp1T3Wrvh\",\"TyjDXcMhx\"].includes(baseVariant))return true;return false;};const visible=isSet(nmra7HyPcUneTQrjnI);const visible1=isSet(tJL_S_tj_);const visible2=negate(equals(ngb8Pk5GL,1));const isDisplayed1=(value,value1,value2)=>{if(baseVariant===\"xKktyDed1\")return value1;if(baseVariant===\"vYkhKLTkM\")return value2;return value;};const visible3=isSet(XJ8ZUbM6yUneTQrjnI);const visible4=isSet(sehCNecQNUneTQrjnI);const visible5=isSet(vqKDEHV2t);const isDisplayed2=(value,value1)=>{if([\"xKktyDed1\",\"vYkhKLTkM\",\"Zp1T3Wrvh\",\"TyjDXcMhx\"].includes(baseVariant))return value1;return value;};const isDisplayed3=()=>{if([\"xKktyDed1\",\"vYkhKLTkM\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if([\"xKktyDed1\",\"vYkhKLTkM\",\"Zp1T3Wrvh\",\"TyjDXcMhx\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if([\"m_02ZSt8W\",\"so70cSU1u\"].includes(baseVariant))return false;return true;};const isDisplayed6=value=>{if([\"m_02ZSt8W\",\"so70cSU1u\"].includes(baseVariant))return false;return value;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({vYkhKLTkM:{value:transition2},xKktyDed1:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:EvxtEg3yT,motionChild:true,nodeId:\"ex3QkBkgk\",openInNewTab:false,scopeId:\"UvK38BNRr\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1vu9ot3\",className,classNames)} framer-10eij85`,\"data-framer-name\":\"Grid Card\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ex3QkBkgk\",onMouseEnter:onMouseEnter1oeqonn,ref:refBinding,style:{borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3,...style},...addPropertyOverrides({HRXHVc5k_:{\"data-framer-name\":\"Grid Card - Hover\",onMouseLeave:onMouseLeavekuj2ik},m_02ZSt8W:{\"data-framer-name\":\"Grid Project - Tablet\",\"data-highlight\":undefined,onMouseEnter:undefined},so70cSU1u:{\"data-framer-name\":\"Grid Project - Mobile\",\"data-highlight\":undefined,onMouseEnter:undefined},TyjDXcMhx:{\"data-framer-name\":\"Grid Card - Discover More - Mobile\",\"data-highlight\":undefined,onMouseEnter:undefined},vYkhKLTkM:{\"data-framer-name\":\"Grid Card - Discover More - Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeave1xxh1hj},xKktyDed1:{\"data-framer-name\":\"Grid Card - Discover More\",onMouseEnter:onMouseEnter1qtj65q},Zp1T3Wrvh:{\"data-framer-name\":\"Grid Card - Discover More - Tablet\",\"data-highlight\":undefined,onMouseEnter:undefined}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oqgsfz\",layoutDependency:layoutDependency,layoutId:\"IFM2S3xHp\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bnxlab\",layoutDependency:layoutDependency,layoutId:\"ger0Vp6lc\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hgnn4i\",\"data-framer-name\":\"Image / Video Wrapper\",layoutDependency:layoutDependency,layoutId:\"T_idAmntr\",style:{borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",...toResponsiveImage(dHg3trIHkUneTQrjnI)},className:\"framer-1n021t3\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"hJzppfduS\",...addPropertyOverrides({TyjDXcMhx:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||386)-0-578)/2)+0+0+0+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(CNENJTi2T)}},vYkhKLTkM:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||386)-0-578)/2)+0+0+0+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(CNENJTi2T)}},xKktyDed1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||386)-0-578)/2)+0+0+0+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(CNENJTi2T)}},Zp1T3Wrvh:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||386)-0-578)/2)+0+0+0+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(CNENJTi2T)}}},baseVariant,gestureVariant)}),isDisplayed1(visible,visible1,visible2)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3y1fcb-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"sFqF58hVK-container\",nodeId:\"sFqF58hVK\",rendersWithMotion:true,scopeId:\"UvK38BNRr\",style:{opacity:0},variants:{vYkhKLTkM:{opacity:1}},children:/*#__PURE__*/_jsx(VimeoVideo,{autoplay:true,controls:false,customScale:1,fadeTransitionDuration:.2,height:\"100%\",id:\"sFqF58hVK\",layoutId:\"sFqF58hVK\",loop:true,muted:true,overlayContent:[],overlayOpacity:.3,placeholderImage:toResponsiveImage(dHg3trIHkUneTQrjnI),preloadDelay:500,quality:\"auto\",scaleMode:\"cover\",showByline:false,showPortrait:false,showTitle:false,style:{height:\"100%\",width:\"100%\"},videoPosition:\"center\",vimeoUrl:nmra7HyPcUneTQrjnI,width:\"100%\",...addPropertyOverrides({vYkhKLTkM:{placeholderImage:toResponsiveImage(wHuE7fgyO),vimeoUrl:tJL_S_tj_},xKktyDed1:{placeholderImage:toResponsiveImage(wHuE7fgyO),vimeoUrl:tJL_S_tj_}},baseVariant,gestureVariant)})})}),visible3&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cpr0zu-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"HXQ7zT5px-container\",nodeId:\"HXQ7zT5px\",rendersWithMotion:true,scopeId:\"UvK38BNRr\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"HXQ7zT5px\",isMixedBorderRadius:false,layoutId:\"HXQ7zT5px\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcType:\"URL\",srcUrl:XJ8ZUbM6yUneTQrjnI,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),isDisplayed2(visible4,visible5)&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"80px\",...toResponsiveImage(sehCNecQNUneTQrjnI),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-cs8pfn\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"zcJIvGWAK\",style:{filter:\"invert(1)\",WebkitFilter:\"invert(1)\"},transformTemplate:transformTemplate1,...addPropertyOverrides({TyjDXcMhx:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||386)-0-578)/2)+0+0+123),sizes:\"80px\",...toResponsiveImage(vqKDEHV2t),...{positionX:\"center\",positionY:\"center\"}}},vYkhKLTkM:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||386)-0-578)/2)+0+0+123),sizes:\"80px\",...toResponsiveImage(vqKDEHV2t),...{positionX:\"center\",positionY:\"center\"}}},xKktyDed1:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||386)-0-578)/2)+0+0+123),sizes:\"80px\",...toResponsiveImage(vqKDEHV2t),...{positionX:\"center\",positionY:\"center\"}}},Zp1T3Wrvh:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||386)-0-578)/2)+0+0+123),sizes:\"80px\",...toResponsiveImage(vqKDEHV2t),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h5icvn\",\"data-framer-name\":\"CTA Container\",layoutDependency:layoutDependency,layoutId:\"Y4_dXfF0G\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dvlnf5\",layoutDependency:layoutDependency,layoutId:\"MqqEk5NzH\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.88)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(23, 44, 42))\",\"--framer-text-transform\":\"uppercase\"},children:\"Bamberg Baskets\"})}),className:\"framer-pnnuar\",fonts:[\"CUSTOM;Formula Condensed Bold\"],layoutDependency:layoutDependency,layoutId:\"odlLmDkBm\",style:{\"--extracted-r6o4lv\":\"rgb(23, 44, 42)\"},text:FnwgSIUrAUneTQrjnI,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({TyjDXcMhx:{text:I8BqU0Guv},vYkhKLTkM:{text:I8BqU0Guv},xKktyDed1:{text:I8BqU0Guv},Zp1T3Wrvh:{text:I8BqU0Guv}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(130, 142, 141))\",\"--framer-text-transform\":\"uppercase\"},children:\"PUMA\"})}),className:\"framer-vc79m2\",fonts:[\"CUSTOM;Formula Condensed Bold\"],layoutDependency:layoutDependency,layoutId:\"VrO6x8k24\",style:{\"--extracted-r6o4lv\":\"rgb(130, 142, 141)\",opacity:.6},text:TXmd62wMmUneTQrjnI,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({TyjDXcMhx:{text:i_vXD59cM},vYkhKLTkM:{text:i_vXD59cM},xKktyDed1:{text:i_vXD59cM},Zp1T3Wrvh:{text:i_vXD59cM}},baseVariant,gestureVariant)})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-18n8q9m\",\"data-framer-name\":\"Cursor\",layoutDependency:layoutDependency,layoutId:\"NsV2SGR12\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(MotionButtonWithCursorFollowagb15x,{className:\"framer-agb15x\",\"data-border\":true,\"data-framer-name\":\"Cursor\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"U2ZyyYjoT\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgba(255, 255, 255, 0.3))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(5px)\",backgroundColor:\"rgba(0, 0, 0, 0.16)\",borderBottomLeftRadius:97,borderBottomRightRadius:97,borderTopLeftRadius:97,borderTopRightRadius:97,WebkitBackdropFilter:\"blur(5px)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"EXPLORE\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"CASE\"})]}),className:\"framer-u0ukm0\",fonts:[\"GF;Montserrat-700\"],layoutDependency:layoutDependency,layoutId:\"uEopVWW73\",style:{\"--extracted-2gxw0f\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",\"--extracted-r6o4lv\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})})]}),isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-t65a66\",\"data-framer-name\":\"Project Left\",layoutDependency:layoutDependency,layoutId:\"UneTQrjnI\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"UneTQrjnI\",data:OraProjects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"UneTQrjnI\",name:\"dHg3trIHk\",type:\"Identifier\"},{collection:\"UneTQrjnI\",name:\"nmra7HyPc\",type:\"Identifier\"},{collection:\"UneTQrjnI\",name:\"XJ8ZUbM6y\",type:\"Identifier\"},{collection:\"UneTQrjnI\",name:\"sehCNecQN\",type:\"Identifier\"},{collection:\"UneTQrjnI\",name:\"FnwgSIUrA\",type:\"Identifier\"},{collection:\"UneTQrjnI\",name:\"TXmd62wMm\",type:\"Identifier\"},{collection:\"UneTQrjnI\",name:\"iC9pVt3ff\",type:\"Identifier\"},{collection:\"UneTQrjnI\",name:\"id\",type:\"Identifier\"}],where:{left:{conditions:[{then:{type:\"LiteralValue\",value:true},type:\"Condition\",when:{type:\"LiteralValue\",value:\"VOX3NaawN\"}}],else:{type:\"LiteralValue\",value:false},type:\"Case\",value:{collection:\"UneTQrjnI\",name:\"fY2GuGkFp\",type:\"Identifier\"}},operator:\"and\",right:{left:{collection:\"UneTQrjnI\",name:\"PbqHsHzDE\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:ngb8Pk5GL},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({dHg3trIHk:dHg3trIHkUneTQrjnI,FnwgSIUrA:FnwgSIUrAUneTQrjnI,iC9pVt3ff:iC9pVt3ffUneTQrjnI,id:idUneTQrjnI,nmra7HyPc:nmra7HyPcUneTQrjnI,sehCNecQN:sehCNecQNUneTQrjnI,TXmd62wMm:TXmd62wMmUneTQrjnI,XJ8ZUbM6y:XJ8ZUbM6yUneTQrjnI},index)=>{nmra7HyPcUneTQrjnI??=\"\";XJ8ZUbM6yUneTQrjnI??=\"\";FnwgSIUrAUneTQrjnI??=\"\";TXmd62wMmUneTQrjnI??=\"\";iC9pVt3ffUneTQrjnI??=\"\";const visible6=isSet(nmra7HyPcUneTQrjnI);const visible7=isSet(XJ8ZUbM6yUneTQrjnI);return /*#__PURE__*/_jsx(LayoutGroup,{id:`UneTQrjnI-${idUneTQrjnI}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{iC9pVt3ff:iC9pVt3ffUneTQrjnI},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e25zmp\",\"data-framer-name\":\"Product Card\",layoutDependency:layoutDependency,layoutId:\"wlsAS2LT3\",children:[isDisplayed5()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pxyab5\",\"data-framer-name\":\"Cursor\",layoutDependency:layoutDependency,layoutId:\"iO_7Cpi1z\",children:/*#__PURE__*/_jsx(MotionButtonWithCursorFollow1odj146,{className:\"framer-1odj146\",\"data-border\":true,\"data-framer-name\":\"Cursor\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"uEdLue9bY\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgba(255, 255, 255, 0.3))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(5px)\",backgroundColor:\"rgba(0, 0, 0, 0.16)\",borderBottomLeftRadius:97,borderBottomRightRadius:97,borderTopLeftRadius:97,borderTopRightRadius:97,WebkitBackdropFilter:\"blur(5px)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"EXPLORE\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"CASE\"})]}),className:\"framer-12eid4r\",fonts:[\"GF;Montserrat-700\"],layoutDependency:layoutDependency,layoutId:\"sqvPIEK4S\",style:{\"--extracted-2gxw0f\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",\"--extracted-r6o4lv\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wm26c6\",layoutDependency:layoutDependency,layoutId:\"u16E_OD03\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gbhw6k\",\"data-framer-name\":\"Image / Video Wrapper\",layoutDependency:layoutDependency,layoutId:\"EXjqNLTW5\",style:{borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||388)-0-580)/2)+0+0+0+0+0+0),pixelHeight:1280,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(dHg3trIHkUneTQrjnI)},className:\"framer-10lfrx3\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"jSLuuid4J\"}),isDisplayed6(visible6)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1flgx9s-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"zeM5V35iw-container\",nodeId:\"zeM5V35iw\",rendersWithMotion:true,scopeId:\"UvK38BNRr\",style:{opacity:0},variants:{HRXHVc5k_:{opacity:1}},children:/*#__PURE__*/_jsx(VimeoVideo,{autoplay:true,controls:false,customScale:1,fadeTransitionDuration:.3,height:\"100%\",id:\"zeM5V35iw\",layoutId:\"zeM5V35iw\",loop:true,muted:true,overlayContent:[],overlayOpacity:.3,placeholderImage:toResponsiveImage(dHg3trIHkUneTQrjnI),preloadDelay:500,quality:\"auto\",scaleMode:\"cover\",showByline:false,showPortrait:false,showTitle:false,style:{height:\"100%\",width:\"100%\"},videoPosition:\"center\",vimeoUrl:nmra7HyPcUneTQrjnI,width:\"100%\"})})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15b3ecl-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"U4Kixlx2T-container\",nodeId:\"U4Kixlx2T\",rendersWithMotion:true,scopeId:\"UvK38BNRr\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"U4Kixlx2T\",isMixedBorderRadius:false,layoutId:\"U4Kixlx2T\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcType:\"URL\",srcUrl:XJ8ZUbM6yUneTQrjnI,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-z4pwzx\",\"data-framer-name\":\"CTA Container\",layoutDependency:layoutDependency,layoutId:\"BQtVuAHRy\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4m1x8a\",layoutDependency:layoutDependency,layoutId:\"gs1Fbg_BL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.88)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(192, 202, 201))\",\"--framer-text-transform\":\"uppercase\"},children:\"Bamberg Baskets\"})}),className:\"framer-adrmxo\",fonts:[\"CUSTOM;Formula Condensed Bold\"],layoutDependency:layoutDependency,layoutId:\"PxsRm3BYo\",style:{\"--extracted-r6o4lv\":\"rgb(192, 202, 201)\"},text:FnwgSIUrAUneTQrjnI,variants:{HRXHVc5k_:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({HRXHVc5k_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.88)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Bamberg Baskets\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(96, 113, 111))\",\"--framer-text-transform\":\"uppercase\"},children:\"PUMA\"})}),className:\"framer-e7oitg\",fonts:[\"CUSTOM;Formula Condensed Bold\"],layoutDependency:layoutDependency,layoutId:\"HeQ1Y0kKs\",style:{\"--extracted-r6o4lv\":\"rgb(96, 113, 111)\",opacity:.6},text:TXmd62wMmUneTQrjnI,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})},idUneTQrjnI);})})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hX7WU.framer-10eij85, .framer-hX7WU .framer-10eij85 { display: block; }\",\".framer-hX7WU.framer-1vu9ot3 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 380px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hX7WU .framer-oqgsfz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 325px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hX7WU .framer-1bnxlab { align-content: center; align-items: center; aspect-ratio: 1.1692307692307693 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 171px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-hX7WU .framer-hgnn4i { align-content: center; align-items: center; aspect-ratio: 1.1692307692307693 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 171px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-hX7WU .framer-1n021t3 { aspect-ratio: 1.1692307692307693 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 171px); left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-hX7WU .framer-3y1fcb-container { aspect-ratio: 1.1692307692307693 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 171px); left: 0px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-hX7WU .framer-1cpr0zu-container, .framer-hX7WU .framer-15b3ecl-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); left: 50%; position: absolute; top: 50%; width: 100%; }\",\".framer-hX7WU .framer-cs8pfn { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 80px; z-index: 2; }\",\".framer-hX7WU .framer-1h5icvn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 49%; z-index: 1; }\",\".framer-hX7WU .framer-dvlnf5, .framer-hX7WU .framer-4m1x8a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hX7WU .framer-pnnuar, .framer-hX7WU .framer-vc79m2, .framer-hX7WU .framer-adrmxo, .framer-hX7WU .framer-e7oitg { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hX7WU .framer-18n8q9m { align-content: center; align-items: center; aspect-ratio: 1.1692307692307693 / 1; cursor: none; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 171px); justify-content: center; left: 50%; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: absolute; top: 0px; width: 100%; z-index: 10; }\",\".framer-hX7WU .framer-agb15x, .framer-hX7WU .framer-1odj146 { aspect-ratio: 1 / 1; cursor: none; flex: none; height: var(--framer-aspect-ratio-supported, 120px); overflow: visible; position: relative; width: 120px; z-index: 10; }\",\".framer-hX7WU .framer-u0ukm0, .framer-hX7WU .framer-12eid4r { flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre; width: auto; }\",\".framer-hX7WU .framer-t65a66 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-hX7WU .framer-e25zmp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hX7WU .framer-1pxyab5 { align-content: center; align-items: center; aspect-ratio: 1.1692307692307693 / 1; cursor: none; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 325px); justify-content: center; left: 0px; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: absolute; top: 0px; width: 100%; z-index: 10; }\",\".framer-hX7WU .framer-1wm26c6 { align-content: center; align-items: center; aspect-ratio: 1.1692307692307693 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 325px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-hX7WU .framer-gbhw6k { align-content: center; align-items: center; aspect-ratio: 1.1692307692307693 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 325px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-hX7WU .framer-10lfrx3 { aspect-ratio: 1.1692307692307693 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 325px); left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-hX7WU .framer-1flgx9s-container { aspect-ratio: 1.1692307692307693 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 325px); left: 0px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-hX7WU .framer-z4pwzx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-hX7WU.framer-v-vtmk71 .framer-gbhw6k { order: 0; }\",\".framer-hX7WU.framer-v-1kv3ri6 .framer-oqgsfz, .framer-hX7WU.framer-v-11qgsym .framer-oqgsfz, .framer-hX7WU.framer-v-1sg3cn0 .framer-oqgsfz, .framer-hX7WU.framer-v-ys2qfu .framer-oqgsfz { min-height: unset; }\",\".framer-hX7WU.framer-v-1kv3ri6 .framer-1bnxlab, .framer-hX7WU.framer-v-11qgsym .framer-1bnxlab, .framer-hX7WU.framer-v-1sg3cn0 .framer-1bnxlab, .framer-hX7WU.framer-v-ys2qfu .framer-1bnxlab { height: var(--framer-aspect-ratio-supported, 325px); order: 1; }\",\".framer-hX7WU.framer-v-1kv3ri6 .framer-hgnn4i, .framer-hX7WU.framer-v-1kv3ri6 .framer-18n8q9m, .framer-hX7WU.framer-v-11qgsym .framer-18n8q9m { height: var(--framer-aspect-ratio-supported, 325px); order: 0; }\",\".framer-hX7WU.framer-v-1kv3ri6 .framer-1n021t3, .framer-hX7WU.framer-v-1kv3ri6 .framer-3y1fcb-container, .framer-hX7WU.framer-v-11qgsym .framer-hgnn4i, .framer-hX7WU.framer-v-11qgsym .framer-1n021t3, .framer-hX7WU.framer-v-11qgsym .framer-3y1fcb-container, .framer-hX7WU.framer-v-1sg3cn0 .framer-hgnn4i, .framer-hX7WU.framer-v-1sg3cn0 .framer-1n021t3, .framer-hX7WU.framer-v-ys2qfu .framer-hgnn4i, .framer-hX7WU.framer-v-ys2qfu .framer-1n021t3 { height: var(--framer-aspect-ratio-supported, 325px); }\",\".framer-hX7WU.framer-v-1kv3ri6 .framer-cs8pfn { order: 1; }\",\".framer-hX7WU.framer-v-1kv3ri6 .framer-1h5icvn, .framer-hX7WU.framer-v-11qgsym .framer-1h5icvn, .framer-hX7WU.framer-v-1sg3cn0 .framer-1h5icvn, .framer-hX7WU.framer-v-ys2qfu .framer-1h5icvn { order: 2; width: 100%; }\",'.framer-hX7WU[data-border=\"true\"]::after, .framer-hX7WU [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 388\n * @framerIntrinsicWidth 380\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"HRXHVc5k_\":{\"layout\":[\"fixed\",\"auto\"]},\"m_02ZSt8W\":{\"layout\":[\"fixed\",\"auto\"]},\"so70cSU1u\":{\"layout\":[\"fixed\",\"auto\"]},\"xKktyDed1\":{\"layout\":[\"fixed\",\"auto\"]},\"vYkhKLTkM\":{\"layout\":[\"fixed\",\"auto\"]},\"Zp1T3Wrvh\":{\"layout\":[\"fixed\",\"auto\"]},\"TyjDXcMhx\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ngb8Pk5GL\":\"filter\",\"tJL_S_tj_\":\"vimeoURL\",\"EvxtEg3yT\":\"link\",\"vqKDEHV2t\":\"logoImage\",\"I8BqU0Guv\":\"title\",\"i_vXD59cM\":\"client\",\"wHuE7fgyO\":\"placeholderImage\",\"CNENJTi2T\":\"thumbnail\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerUvK38BNRr=withCSS(Component,css,\"framer-hX7WU\");export default FramerUvK38BNRr;FramerUvK38BNRr.displayName=\"Ora/Project Grid - Card\";FramerUvK38BNRr.defaultProps={height:388,width:380};addPropertyControls(FramerUvK38BNRr,{variant:{options:[\"ex3QkBkgk\",\"HRXHVc5k_\",\"m_02ZSt8W\",\"so70cSU1u\",\"xKktyDed1\",\"vYkhKLTkM\",\"Zp1T3Wrvh\",\"TyjDXcMhx\"],optionTitles:[\"Grid Card\",\"Grid Card - Hover\",\"Grid Project - Tablet\",\"Grid Project - Mobile\",\"Grid Card - Discover More\",\"Grid Card - Discover More - Hover\",\"Grid Card - Discover More - Tablet\",\"Grid Card - Discover More - Mobile\"],title:\"Variant\",type:ControlType.Enum},ngb8Pk5GL:{defaultValue:1,title:\"Filter\",type:ControlType.Number},tJL_S_tj_:{defaultValue:\"\",placeholder:\"\",title:\"Vimeo URL\",type:ControlType.String},EvxtEg3yT:{title:\"Link\",type:ControlType.Link},vqKDEHV2t:{title:\"Logo Image\",type:ControlType.ResponsiveImage},I8BqU0Guv:{defaultValue:\"text\",displayTextArea:false,title:\"Title\",type:ControlType.String},i_vXD59cM:{defaultValue:\"text\",displayTextArea:false,title:\"Client\",type:ControlType.String},wHuE7fgyO:{title:\"Placeholder Image\",type:ControlType.ResponsiveImage},CNENJTi2T:{title:\"Thumbnail\",type:ControlType.ResponsiveImage}});addFonts(FramerUvK38BNRr,[{explicitInter:true,fonts:[{cssFamilyName:\"Formula Condensed Bold\",source:\"custom\",uiFamilyName:\"Formula Condensed Bold\",url:\"https://framerusercontent.com/assets/4HTo7pUwCFDIYSJspcYmauC3H8.woff2\"},{cssFamilyName:\"Montserrat\",source:\"google\",style:\"normal\",uiFamilyName:\"Montserrat\",url:\"https://fonts.gstatic.com/s/montserrat/v31/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w7Y3tcoqK5.woff2\",weight:\"700\"}]},...VimeoVideoFonts,...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUvK38BNRr\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"ngb8Pk5GL\\\":\\\"filter\\\",\\\"tJL_S_tj_\\\":\\\"vimeoURL\\\",\\\"EvxtEg3yT\\\":\\\"link\\\",\\\"vqKDEHV2t\\\":\\\"logoImage\\\",\\\"I8BqU0Guv\\\":\\\"title\\\",\\\"i_vXD59cM\\\":\\\"client\\\",\\\"wHuE7fgyO\\\":\\\"placeholderImage\\\",\\\"CNENJTi2T\\\":\\\"thumbnail\\\"}\",\"framerIntrinsicWidth\":\"380\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"388\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HRXHVc5k_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"m_02ZSt8W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"so70cSU1u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xKktyDed1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vYkhKLTkM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Zp1T3Wrvh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TyjDXcMhx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UvK38BNRr.map"],"mappings":"6kCASG,SAAwB,EAAW,EAAM,CAAC,GAAK,CAAC,WAAS,8BAA8B,mBAAiB,CAAC,IAAI,sEAAsE,IAAI,oBAAoB,CAAC,WAAS,GAAK,QAAM,GAAK,OAAK,GAAK,WAAS,GAAM,aAAU,GAAM,aAAW,GAAM,gBAAa,GAAM,UAAQ,OAAO,iBAAe,kBAAe,GAAG,YAAU,QAAQ,cAAY,EAAE,gBAAc,SAAS,eAAa,EAAE,yBAAuB,GAAG,SAAO,EAAW,CAAC,EAAS,GAAaA,EAAS,GAAM,CAAM,CAAC,EAAU,GAAcA,EAAS,GAAM,CAAM,CAAC,EAAU,GAAcA,EAAS,GAAM,CAAM,CAAC,EAAS,GAAaA,EAAS,GAAM,CAAM,CAAC,EAAc,IAAkBA,EAAS,CAAC,MAAM,EAAE,OAAO,EAAE,CAAC,CAAM,CAAC,EAAc,IAAkBA,EAAS,GAAK,CAAM,CAAC,EAAS,GAAaA,EAAS,EAAE,CAC9xB,EAAUM,EAAO,KAAK,CAAO,EAAaA,EAAO,KAAK,CAAO,EAAeA,EAAO,KAAK,CAAO,EAAeA,EAAO,KAAK,CAAO,EAAS,GAAqB,CACuM,EAAxVJ,EAAY,GAAK,CAAwN,IAAI,IAAM,IAAlN,CAAC,oBAAoB,mCAAmC,sCAAsC,4CAA4C,uCAAuC,sBAAsB,CAA+B,CAAC,IAAM,EAAM,EAAI,MAAM,EAAQ,CAAC,GAAG,EAAO,OAAO,EAAM,GAAK,MAAM,IAAK,EAAE,CAAC,CAA8B,EAAS,CAAO,EAAW,IAAU,GACna,GAAS,EAAW,kCAAkC,EAAQ,YAAe,EAAS,EAAE,EAAE,SAAY,EAAM,EAAE,EAAE,QAAW,EAAK,EAAE,EAAE,YAAe,EAAS,EAAE,EAAE,SAAY,GAAU,EAAE,EAAE,UAAa,EAAW,EAAE,EAAE,YAAe,GAAa,EAAE,EAAE,WAAc,EAAQ,yEAKjR,GACD,MAAc,CAAI,IAAY,EAAY,GAAM,CAAC,EAAa,GAAM,CAAC,EAAa,GAAM,CAAC,EAAY,GAAM,CAAC,EAAY,GAAM,EAAK,EAAE,CAElI,EAAe,SAAS,aAAa,EAAe,QAAQ,CAAK,EAAe,SAAS,aAAa,EAAe,QAAQ,GAAK,CAAC,EAAS,EAAW,CAAC,CAC3J,IAAM,EAAiBA,MAAgB,CAAK,IACzC,EAAe,SAAS,aAAa,EAAe,QAAQ,CAC/D,EAAe,QAAQ,eAAe,CAAC,MAAoB,CAAsC,GAArC,EAAY,GAAK,CAAC,EAAY,GAAM,CAAI,EAAS,CAAC,EAAa,GAAK,CAChI,IAAM,EAAU,EAAc,EAAa,EAAa,EAAE,eAAe,CAAC,EAAa,GAAK,CAAC,GAAiB,GAAM,EAAG,EAAU,GAAI,EAAG,IAAI,GACzI,CAAC,EAAS,EAAW,EAAa,EAAc,CAAC,CAC9C,GAAkBA,MAAgB,CAAC,QAAQ,KAAK,kDAAkD,CAAC,MAAoB,CAAC,EAAY,GAAK,CAAC,EAAY,GAAM,CAAC,EAAa,GAAM,EAAG,CACzL,eAAe,CAAI,IAAY,EAAY,GAAM,EAAK,EAAE,CAAC,EAAY,GAAM,GAAI,IAAI,EAAG,CAAC,EAAW,CAAC,CACnG,MAAc,CAAC,GAAG,CAAC,EAAa,SAAS,EAAS,OAAO,IAAM,MAAe,CAAC,GAAG,EAAa,QAAQ,CAAC,IAAM,EAAK,EAAa,QAAQ,uBAAuB,CAAC,MAAoB,CAAC,GAAiB,CAAC,MAAM,EAAK,MAAM,OAAO,EAAK,OAAO,CAAC,EAAG,GAAI,GAAY,CAAC,IAAM,EAAe,IAAI,eAAe,EAAW,CAA8C,OAA7C,EAAe,QAAQ,EAAa,QAAQ,KAAW,EAAe,YAAY,EAAG,CAAC,EAAS,CAAC,CACpZ,UAAyB,CAAI,EAAe,SAAS,aAAa,EAAe,QAAQ,CAAK,EAAe,SAAS,aAAa,EAAe,QAAQ,EAAM,EAAE,CAAC,CAG8L,IAAM,OAF9U,CAAC,IAAM,EAAY,GAAG,EAAQ,EAAqB,EAAc,MAAM,EAAc,OAAW,EAAW,EAAc,MAAU,EAAY,EAAc,OAAW,EAAI,MAAU,EAAK,MAAU,EAAW,OAAW,EAAW,OAAO,OAAO,EAAP,CAAkB,IAAI,QAC5R,OADuS,EAAqB,GAAa,EAAW,EAAc,MAAM,EAAY,EAAc,MAAM,IAAkB,EAAY,EAAc,OAAO,EAAW,EAAc,OAAO,GACpd,EAAP,CAAsB,IAAI,MAAM,EAAI,KAAK,EAAW,KAAK,MAAM,IAAI,SAAS,EAAI,OAAO,EAAW,QAAQ,MAAM,IAAI,OAAO,EAAK,KAAK,EAAW,KAAK,MAAM,IAAI,QAAQ,EAAK,OAAO,EAAW,QAAQ,MAAM,IAAI,SAAS,QAAQ,EAAI,MAAM,EAAK,MAAM,EAAW,OAAO,EAAW,OAAO,MAAO,MAAM,IAAI,UAAa,EAAqB,GAAa,EAAY,EAAc,OAAO,EAAW,EAAc,OAAO,IAAkB,EAAW,EAAc,MAAM,EAAY,EAAc,MAAM,GAAa,MAAM,IAAI,OAAO,EAAW,EAAc,MAAM,EAAY,EAAc,OAAO,MAAM,IAAI,SAAS,IAAM,EAAU,EAAc,MAAY,EAAW,EAAU,EAAY,EAAW,EAAU,EAAY,EAAY,EAAW,EAAY,MAC5uB,GAAG,IAAY,QAAS,OAAO,EAAP,CAAsB,IAAI,MAAM,EAAI,KAAK,EAAW,KAAK,MAAM,IAAI,SAAS,EAAI,OAAO,EAAW,QAAQ,MAAM,IAAI,OAAO,EAAK,KAAK,EAAW,KAAK,MAAM,IAAI,QAAQ,EAAK,OAAO,EAAW,QAAQ,MAAQ,IAAM,EAAU,aAAa,EAAW,IAAI,EAAW,GAAG,MAAM,CAAC,MAAM,EAAW,OAAO,EAAY,MAAI,OAAK,YAAU,IAAqC,CAAC,OAAoB,EAAM,EAAO,IAAI,CAAC,IAAI,EAAa,MAAM,CAAC,GAAG,EAAM,SAAS,WAAW,MAAM,OAAO,OAAO,OAAO,SAAS,SAAS,QAAQ,OAAO,WAAW,SAAS,eAAe,SAAS,gBAAgB,cAAc,CAAC,QAAQ,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,QAAQ,EAAE,CAAC,WAAW,CAAC,SAAS,EAAuB,CAAC,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,MAAM,CAAC,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,MAAM,OAAO,OAAO,OAAO,gBAAgB,cAAc,OAAO,GAAG,cAAc,EAAU,OAAO,OAAO,CAAC,QAAQ,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,QAAQ,EAAU,EAAE,EAAE,CAAC,WAAW,CAAC,SAAS,EAAuB,KAAK,UAAU,MAAgB,EAAI,CAAC,CAAC,CAAC,GAA+B,EAAK,EAAO,IAAI,CAAC,MAAM,CAAC,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,MAAM,OAAO,OAAO,OAAO,gBAAgB,OAAO,EAAiB,IAAI,GAAG,eAAe,IAAY,OAAO,YAAY,EAAU,mBAAmB,IAAgB,SAAS,SAAS,EAAc,iBAAiB,YAAY,OAAO,EAAE,CAAC,QAAQ,CAAC,QAAQ,GAAU,GAAW,EAAU,EAAE,EAAE,CAAC,WAAW,CAAC,SAAS,EAAuB,CAAC,CAAC,CAAC,CAAC,GAAU,GAAyB,EAAK,EAAO,OAAO,CAAC,IAAI,EAAU,IAAI,GAAS,MAAM,CAAC,SAAS,WAAW,IAAI,MAAM,KAAK,MAAM,MAAM,EAAY,MAAM,OAAO,EAAY,OAAO,UAAU,EAAY,UAAU,OAAO,OAAO,OAAO,EAAE,WAAW,EAAU,UAAU,SAAS,CAAC,QAAQ,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,QAAQ,EAAU,EAAE,EAAE,CAAC,WAAW,CAAC,SAAS,EAAuB,KAAK,UAAU,MAAM,GAAG,CAAC,MAAM,2CAA2C,gBAAgB,GAAK,OAAO,EAAiB,QAAQ,GAAkB,MAAM,mBAAmB,QAAQ,QACz8D,CAAC,EAAS,CAAC,GAAuB,EAAK,MAAM,CAAC,MAAM,CAAC,SAAS,WAAW,IAAI,MAAM,KAAK,MAAM,MAAM,EAAY,MAAM,OAAO,EAAY,OAAO,UAAU,EAAY,UAAU,gBAAgB,OAAO,QAAQ,OAAO,WAAW,SAAS,eAAe,SAAS,MAAM,QAAQ,SAAS,OAAO,OAAO,EAAE,CAAC,SAAS,EAAW,gBAAgB,IAAU,sBAAyB,CAAC,CAAC,GAA6B,EAAK,EAAO,IAAI,CAAC,MAAM,CAAC,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,MAAM,OAAO,OAAO,OAAO,gBAAgB,iBAAiB,GAAe,GAAG,OAAO,EAAE,QAAQ,OAAO,WAAW,SAAS,eAAe,SAAS,MAAM,QAAQ,UAAU,SAAS,QAAQ,OAAO,CAAC,QAAQ,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,QAAQ,EAAU,EAAE,EAAE,CAAC,WAAW,CAAC,MAAM,EAAU,EAAuB,EAAE,SAAS,EAAuB,CAAC,SAAS,EAAe,CAAC,CAAC,CAAC,CAAC,mBAhC1vB,IAAyE,IAAwE,IAAkC,CAgCykB,EAAoB,EAAW,CAAC,SAAS,CAAC,KAAK,EAAY,OAAO,MAAM,YAAY,aAAa,8BAA8B,YAAY,8BAA8B,CAAC,iBAAiB,CAAC,KAAK,EAAY,gBAAgB,MAAM,mBAAmB,CAAC,SAAS,CAAC,KAAK,EAAY,QAAQ,MAAM,WAAW,aAAa,GAAK,CAAC,MAAM,CAAC,KAAK,EAAY,QAAQ,MAAM,QAAQ,aAAa,GAAK,CAAC,KAAK,CAAC,KAAK,EAAY,QAAQ,MAAM,OAAO,aAAa,GAAK,CAAC,SAAS,CAAC,KAAK,EAAY,QAAQ,MAAM,kBAAkB,aAAa,GAAM,CAAC,UAAU,CAAC,KAAK,EAAY,QAAQ,MAAM,eAAe,aAAa,GAAM,CAAC,WAAW,CAAC,KAAK,EAAY,QAAQ,MAAM,gBAAgB,aAAa,GAAM,CAAC,aAAa,CAAC,KAAK,EAAY,QAAQ,MAAM,kBAAkB,aAAa,GAAM,CAAC,QAAQ,CAAC,KAAK,EAAY,KAAK,MAAM,WAAc,QAAQ,CAAC,OAAO,OAAO,OAAO,OAAO,OAAO,QAAQ,CAAC,aAAa,OAAO,CAAC,UAAU,CAAC,KAAK,EAAY,KAAK,MAAM,aAAa,QAAQ,CAAC,QAAQ,UAAU,OAAO,SAAS,CAAC,aAAa,CAAC,QAAQ,UAAU,OAAO,SAAS,CAAC,aAAa,QAAQ,wBAAwB,GAAK,CAAC,YAAY,CAAC,KAAK,EAAY,OAAO,MAAM,eAAe,aAAa,EAAE,IAAI,GAAG,IAAI,EAAE,KAAK,GAAG,QAAQ,CAAC,eAAa,IAAY,SAAS,CAAC,cAAc,CAAC,KAAK,EAAY,KAAK,MAAM,WAAW,QAAQ,CAAC,SAAS,MAAM,SAAS,OAAO,QAAQ,CAAC,aAAa,CAAC,SAAS,MAAM,SAAS,OAAO,QAAQ,CAAC,aAAa,SAAS,wBAAwB,GAAK,CAAC,aAAa,CAAC,KAAK,EAAY,OAAO,MAAM,qBAAqB,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,YAAY,4CAA+C,CAAC,uBAAuB,CAAC,KAAK,EAAY,OAAO,MAAM,oBAAoB,aAAa,GAAG,IAAI,GAAG,IAAI,EAAE,KAAK,GAAG,YAAY,yBAA4B,CAAC,eAAe,CAAC,KAAK,EAAY,kBAAkB,MAAM,kBAAkB,CAAC,eAAe,CAAC,KAAK,EAAY,OAAO,MAAM,sBAAsB,IAAI,EAAE,IAAI,EAAE,KAAK,GAAG,aAAa,GAAG,QAAQ,CAAC,oBAAkB,CAAC,EAAe,CAAC,CAAC,IChCl+B,SAAS,EAAqB,EAAU,GAAG,EAAS,CAAC,IAAM,EAAc,EAAE,CAAsF,OAArF,GAAU,QAAQ,GAAS,GAAS,OAAO,OAAO,EAAc,EAAU,GAAS,CAAC,CAAQ,oFAAh2D,IAAqV,IAAkE,IAA4B,IAAsI,IAA8H,KAAsH,IAAsH,CAAM,GAAgB,EAAS,EAAW,CAAO,EAAW,EAAS,EAAM,CAAO,GAAmC,EAA6B,EAAO,OAAO,CAAC,OAAO,YAAY,SAAS,EAAiB,QAAQ,YAAY,CAAC,CAAO,GAAoC,EAA6B,EAAO,OAAO,CAAC,OAAO,YAAY,SAAS,EAAiB,QAAQ,YAAY,CAAC,CAAO,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,CAAO,GAAkB,eAAqB,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,CAA8L,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,GAAG,EAAE,CAAC,KAAK,QAAQ,CAAO,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,GAAG,EAAE,CAAC,KAAK,QAAQ,CAAO,EAAkB,GAAW,OAAO,GAAQ,UAAU,GAAc,OAAO,EAAM,KAAM,SAAiB,EAAc,OAAO,GAAQ,SAAS,CAAC,IAAI,EAAM,CAAC,IAAA,GAAkB,EAAM,GAAW,MAAM,QAAQ,EAAM,CAAQ,EAAM,OAAO,EAAS,GAA2B,MAAM,IAAQ,GAAW,IAAQ,EAAE,IAAY,OAAO,GAAI,UAAU,OAAO,GAAI,SAAS,EAAE,aAAa,GAAG,EAAE,aAAa,CAAC,IAAI,EAAU,GAAO,GAAc,CAAC,EAAc,GAAoB,EAAE,IAAI,yBAAyB,IAAU,IAAoB,EAAE,IAAI,oBAAoB,IAAmjC,IAAW,CAAC,QAAM,WAAS,cAAY,CAAC,IAAM,EAAK,EAAa,EAAM,CAAC,OAAO,EAAS,EAAK,EAAS,IAAY,CAAC,QAAM,cAAY,CAAC,IAAM,EAAOC,EAAiB,EAAoB,CAAO,EAAW,GAAO,EAAO,WAAiB,EAAaC,QAAmB,CAAC,GAAG,EAAO,aAAW,EAAE,CAAC,KAAK,UAAU,EAAW,CAAC,CAAC,CAAC,OAAoB,EAAK,EAAoB,SAAS,CAAC,MAAM,EAAsB,WAAS,CAAC,EAAS,GAAS,EAAO,OAAOC,EAAe,CAAO,GAAwB,CAAC,oCAAoC,YAAY,qCAAqC,YAAY,qCAAqC,YAAY,4BAA4B,YAAY,oBAAoB,YAAY,YAAY,YAAY,wBAAwB,YAAY,wBAAwB,YAAY,CAAO,IAAU,CAAC,SAAO,SAAO,SAAO,KAAG,OAAK,YAAU,mBAAiB,YAAU,QAAM,WAAS,SAAM,GAAG,MAAgB,CAAC,GAAG,EAAM,UAAU,GAAW,EAAM,UAAU,UAAU,GAAM,EAAM,UAAU,UAAU,GAAQ,EAAM,WAAW,OAAO,UAAU,GAAO,EAAM,WAAW,OAAO,UAAU,GAAQ,EAAM,WAAW,EAAE,UAAU,GAAU,EAAM,UAAU,QAAQ,GAAwB,EAAM,UAAU,EAAM,SAAS,YAAY,UAAU,GAAW,EAAM,UAAU,UAAU,GAAkB,EAAM,UAAU,EAAS,IAAwB,EAAM,IAAe,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAAC,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAW3lK,EAAgB,EAX2mK,EAAiB,SAAS,EAAM,EAAI,CAAC,IAAM,EAAYC,EAAO,KAAK,CAAO,EAAW,GAAK,EAAkB,EAAgBC,GAAa,CAAM,CAAC,eAAa,cAAW,IAAe,CAAO,EAAkB,GAAsB,CAAM,CAAC,QAAM,YAAU,WAAS,UAAQ,YAAU,YAAU,YAAU,YAAU,YAAU,YAAU,YAAU,YAAU,qBAAmB,qBAAmB,qBAAmB,qBAAmB,qBAAmB,sBAAmB,sBAAmB,cAAY,GAAG,IAAW,GAAS,EAAM,CAAM,CAAC,cAAY,cAAW,uBAAoB,mBAAgB,iBAAe,aAAU,kBAAgB,aAAW,aAAU,GAAgB,CAAC,cAAW,eAAe,YAAY,IAAI,EAAW,UAAQ,qBAAkB,CAAC,CAAO,EAAiB,GAAuB,EAAM,GAAS,CAAM,CAAC,yBAAsB,UAAO,EAAyB,EAAY,CAAO,GAAoB,GAAsB,MAAM,GAAG,IAAO,CAAC,EAAgB,CAAC,UAAU,GAAK,CAAC,CAAC,EAAW,YAAY,EAAG,CAAO,GAAmB,GAAsB,MAAM,GAAG,IAAO,CAAC,EAAgB,CAAC,UAAU,GAAM,CAAC,CAAC,EAAW,YAAY,EAAG,CAAO,GAAoB,GAAsB,MAAM,GAAG,IAAO,CAAC,EAAgB,CAAC,UAAU,GAAK,CAAC,CAAC,EAAW,YAAY,EAAG,CAAO,GAAoB,GAAsB,MAAM,GAAG,IAAO,CAAC,EAAgB,CAAC,UAAU,GAAM,CAAC,CAAC,EAAW,YAAY,EAAG,CAAsC,GAAkB,EAAG,GAA2C,CAAO,OAAiB,EAAG,CAAC,YAAY,YAAY,YAAY,YAAY,CAAC,SAAS,EAAY,CAAkC,GAAQ,EAAM,EAAmB,CAAO,GAAS,EAAM,EAAU,CAAO,GAAS,GAAO,GAAO,EAAU,EAAE,CAAC,CAAO,IAAc,EAAM,EAAO,IAAa,IAAc,YAAmB,EAAU,IAAc,YAAmB,EAAc,EAAc,GAAS,EAAM,EAAmB,CAAO,GAAS,EAAM,EAAmB,CAAO,GAAS,EAAM,EAAU,CAAO,IAAc,EAAM,IAAa,CAAC,YAAY,YAAY,YAAY,YAAY,CAAC,SAAS,EAAY,CAAQ,EAAc,EAAc,OAAkB,EAAG,CAAC,YAAY,YAAY,CAAC,SAAS,EAAY,CAAkC,OAAkB,CAAG,CAAC,YAAY,YAAY,YAAY,YAAY,CAAC,SAAS,EAAY,CAAkC,OAAkB,CAAG,CAAC,YAAY,YAAY,CAAC,SAAS,EAAY,CAAkC,GAAa,GAAW,CAAC,YAAY,YAAY,CAAC,SAAS,EAAY,CAAQ,GAAa,EAAQ,OAAoB,EAAK,GAAY,CAAC,GAAG,GAAU,EAAgB,SAAsB,EAAK,GAAS,CAAC,QAAQ,GAAS,QAAQ,GAAM,SAAsB,EAAK,GAAW,CAAC,MAAM,GAAY,GAAG,EAAqB,CAAC,UAAU,CAAC,MAAM,GAAY,CAAC,UAAU,CAAC,MAAM,GAAY,CAAC,CAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAAK,CAAC,KAAK,EAAU,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsB,EAAM,EAAO,EAAE,CAAC,GAAG,GAAU,GAAG,GAAgB,UAAU,GAAG,EAAG,GAAkB,iBAAiB,EAAU,GAAW,CAAC,iBAAiB,mBAAmB,YAAY,iBAAiB,GAAsB,mBAAiB,SAAS,YAAY,aAAa,GAAoB,IAAI,EAAW,MAAM,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,GAAG,EAAM,CAAC,GAAG,EAAqB,CAAC,UAAU,CAAC,mBAAmB,oBAAoB,aAAa,GAAmB,CAAC,UAAU,CAAC,mBAAmB,wBAAwB,iBAAiB,IAAA,GAAU,aAAa,IAAA,GAAU,CAAC,UAAU,CAAC,mBAAmB,wBAAwB,iBAAiB,IAAA,GAAU,aAAa,IAAA,GAAU,CAAC,UAAU,CAAC,mBAAmB,qCAAqC,iBAAiB,IAAA,GAAU,aAAa,IAAA,GAAU,CAAC,UAAU,CAAC,mBAAmB,oCAAoC,aAAa,IAAA,GAAU,aAAa,GAAoB,CAAC,UAAU,CAAC,mBAAmB,4BAA4B,aAAa,GAAoB,CAAC,UAAU,CAAC,mBAAmB,qCAAqC,iBAAiB,IAAA,GAAU,aAAa,IAAA,GAAU,CAAC,CAAC,EAAY,EAAe,CAAC,SAAS,CAAC,IAAa,EAAe,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAC,IAAa,EAAe,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,wBAAyC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAS,CAAc,EAAKC,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,GAAG,EAAkB,EAAmB,CAAC,CAAC,UAAU,iBAAiB,mBAAmB,QAAyB,mBAAiB,SAAS,YAAY,GAAG,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ,GAA2B,GAAmB,GAAG,IAAI,IAAI,GAAmB,QAAQ,KAAK,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,MAAM,GAAmB,OAAO,QAAQ,GAAG,EAAkB,EAAU,CAAC,CAAC,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ,GAA2B,GAAmB,GAAG,IAAI,IAAI,GAAmB,QAAQ,KAAK,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,MAAM,GAAmB,OAAO,QAAQ,GAAG,EAAkB,EAAU,CAAC,CAAC,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ,GAA2B,GAAmB,GAAG,IAAI,IAAI,GAAmB,QAAQ,KAAK,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,MAAM,GAAmB,OAAO,QAAQ,GAAG,EAAkB,EAAU,CAAC,CAAC,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ,GAA2B,GAAmB,GAAG,IAAI,IAAI,GAAmB,QAAQ,KAAK,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,MAAM,GAAmB,OAAO,QAAQ,GAAG,EAAkB,EAAU,CAAC,CAAC,CAAC,CAAC,EAAY,EAAe,CAAC,CAAC,CAAC,GAAa,GAAQ,GAAS,GAAS,EAAe,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,0BAA0B,gCAAgC,SAAS,iBAAiB,GAAsB,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,QAAQ,EAAE,CAAC,SAAS,CAAC,UAAU,CAAC,QAAQ,EAAE,CAAC,CAAC,SAAsB,EAAK,EAAW,CAAC,SAAS,GAAK,SAAS,GAAM,YAAY,EAAE,uBAAuB,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,eAAe,EAAE,CAAC,eAAe,GAAG,iBAAiB,EAAkB,EAAmB,CAAC,aAAa,IAAI,QAAQ,OAAO,UAAU,QAAQ,WAAW,GAAM,aAAa,GAAM,UAAU,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,OAAO,CAAC,cAAc,SAAS,SAAS,EAAmB,MAAM,OAAO,GAAG,EAAqB,CAAC,UAAU,CAAC,iBAAiB,EAAkB,EAAU,CAAC,SAAS,EAAU,CAAC,UAAU,CAAC,iBAAiB,EAAkB,EAAU,CAAC,SAAS,EAAU,CAAC,CAAC,EAAY,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAuB,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAsB,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,kBAAkB,EAAmB,SAAsB,EAAK,EAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAK,QAAQ,MAAM,OAAO,EAAmB,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,OAAO,CAAC,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAa,GAAS,GAAS,EAAe,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,MAAM,OAAO,GAAG,EAAkB,EAAmB,CAAK,UAAU,SAAS,UAAU,SAAU,CAAC,UAAU,gBAAgB,mBAAmB,OAAwB,mBAAiB,SAAS,YAAY,MAAM,CAAC,OAAO,YAAY,aAAa,YAAY,CAAC,kBAAkB,EAAmB,GAAG,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ,GAA2B,GAAmB,GAAG,IAAI,IAAI,GAAmB,QAAQ,KAAK,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,CAAC,MAAM,OAAO,GAAG,EAAkB,EAAU,CAAK,UAAU,SAAS,UAAU,SAAU,CAAC,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ,GAA2B,GAAmB,GAAG,IAAI,IAAI,GAAmB,QAAQ,KAAK,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,CAAC,MAAM,OAAO,GAAG,EAAkB,EAAU,CAAK,UAAU,SAAS,UAAU,SAAU,CAAC,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ,GAA2B,GAAmB,GAAG,IAAI,IAAI,GAAmB,QAAQ,KAAK,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,CAAC,MAAM,OAAO,GAAG,EAAkB,EAAU,CAAK,UAAU,SAAS,UAAU,SAAU,CAAC,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ,GAA2B,GAAmB,GAAG,IAAI,IAAI,GAAmB,QAAQ,KAAK,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,CAAC,MAAM,OAAO,GAAG,EAAkB,EAAU,CAAK,UAAU,SAAS,UAAU,SAAU,CAAC,CAAC,CAAC,EAAY,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAa,EAAe,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAiC,mBAAiB,SAAS,YAAY,SAAsB,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAKH,EAAe,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,qBAAqB,kDAAkD,0BAA0B,SAAS,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,2CAA2C,0BAA0B,YAAY,CAAC,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,gCAAgC,CAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,CAAC,KAAK,EAAmB,kBAAkB,MAAM,mBAAmB,GAAK,GAAG,EAAqB,CAAC,UAAU,CAAC,KAAK,EAAU,CAAC,UAAU,CAAC,KAAK,EAAU,CAAC,UAAU,CAAC,KAAK,EAAU,CAAC,UAAU,CAAC,KAAK,EAAU,CAAC,CAAC,EAAY,EAAe,CAAC,CAAC,CAAc,EAAK,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAKA,EAAe,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,qBAAqB,kDAAkD,0BAA0B,SAAS,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,8CAA8C,0BAA0B,YAAY,CAAC,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,gCAAgC,CAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,QAAQ,GAAG,CAAC,KAAK,GAAmB,kBAAkB,MAAM,mBAAmB,GAAK,GAAG,EAAqB,CAAC,UAAU,CAAC,KAAK,EAAU,CAAC,UAAU,CAAC,KAAK,EAAU,CAAC,UAAU,CAAC,KAAK,EAAU,CAAC,UAAU,CAAC,KAAK,EAAU,CAAC,CAAC,EAAY,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAc,EAAe,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAA0B,mBAAiB,SAAS,YAAY,kBAAkB,GAAmB,SAAsB,EAAK,GAAmC,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,SAAS,aAAa,SAA0B,mBAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,8EAA8E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,YAAY,gBAAgB,sBAAsB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,qBAAqB,YAAY,CAAC,SAAsB,EAAK,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAMA,EAAe,CAAC,SAAS,CAAc,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,iGAAiG,CAAC,SAAS,UAAU,CAAC,CAAc,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,iGAAiG,CAAC,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,oBAAoB,CAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,YAAY,CAAC,kBAAkB,EAAmB,kBAAkB,MAAM,mBAAmB,GAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAc,EAAe,EAAK,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAgC,mBAAiB,SAAS,YAAY,SAAsB,EAAK,GAAmB,CAAC,SAAsB,EAAK,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKI,EAAY,KAAK,aAAa,CAAC,MAAM,CAAC,KAAK,eAAe,MAAM,EAAE,CAAC,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,aAAa,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,KAAK,CAAC,KAAK,eAAe,MAAM,GAAK,CAAC,KAAK,YAAY,KAAK,CAAC,KAAK,eAAe,MAAM,YAAY,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,eAAe,MAAM,GAAM,CAAC,KAAK,OAAO,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,SAAS,MAAM,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,EAAU,CAAC,KAAK,kBAAkB,CAAC,KAAK,kBAAkB,CAAC,CAAC,UAAU,EAAW,EAAe,IAAwB,EAAKC,EAAU,CAAC,SAAS,GAAY,KAAK,CAAC,UAAUC,EAAmB,UAAUC,EAAmB,UAAUC,EAAmB,GAAGC,EAAY,UAAUC,EAAmB,UAAUC,EAAmB,UAAUC,EAAmB,UAAUC,GAAoB,IAAQ,CAAC,IAAqB,GAAG,IAAqB,GAAG,IAAqB,GAAG,IAAqB,GAAG,IAAqB,GAAG,IAAM,GAAS,EAAMH,EAAmB,CAAO,EAAS,EAAMG,EAAmB,CAAC,OAAoB,EAAK,GAAY,CAAC,GAAG,aAAaJ,IAAc,SAAsB,EAAK,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAUD,EAAmB,CAAC,SAAsB,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAgC,mBAAiB,SAAS,YAAY,SAAS,CAAC,IAAc,EAAe,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAA0B,mBAAiB,SAAS,YAAY,SAAsB,EAAK,GAAoC,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,aAAa,SAA0B,mBAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,8EAA8E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,YAAY,gBAAgB,sBAAsB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,qBAAqB,YAAY,CAAC,SAAsB,EAAK,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAMR,EAAe,CAAC,SAAS,CAAc,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,iGAAiG,CAAC,SAAS,UAAU,CAAC,CAAc,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,iGAAiG,CAAC,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,oBAAoB,CAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,YAAY,CAAC,kBAAkB,EAAmB,kBAAkB,MAAM,mBAAmB,GAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAsB,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,wBAAyC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAS,CAAc,EAAKG,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ,GAA2B,GAAmB,GAAG,IAAI,IAAI,GAAmB,QAAQ,KAAK,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,YAAY,KAAK,WAAW,KAAK,MAAM,GAAmB,OAAO,QAAQ,GAAG,EAAkBG,EAAmB,CAAC,CAAC,UAAU,iBAAiB,mBAAmB,QAAyB,mBAAiB,SAAS,YAAY,CAAC,CAAC,GAAa,GAAS,EAAe,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,2BAA2B,gCAAgC,SAAS,iBAAiB,GAAsB,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,QAAQ,EAAE,CAAC,SAAS,CAAC,UAAU,CAAC,QAAQ,EAAE,CAAC,CAAC,SAAsB,EAAK,EAAW,CAAC,SAAS,GAAK,SAAS,GAAM,YAAY,EAAE,uBAAuB,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,eAAe,EAAE,CAAC,eAAe,GAAG,iBAAiB,EAAkBA,EAAmB,CAAC,aAAa,IAAI,QAAQ,OAAO,UAAU,QAAQ,WAAW,GAAM,aAAa,GAAM,UAAU,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,OAAO,CAAC,cAAc,SAAS,SAASI,EAAmB,MAAM,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAuB,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAsB,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,kBAAkB,EAAmB,SAAsB,EAAK,EAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAK,QAAQ,MAAM,OAAOG,EAAmB,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,OAAO,CAAC,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAiC,mBAAiB,SAAS,YAAY,SAAsB,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAKb,EAAe,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,qBAAqB,kDAAkD,0BAA0B,SAAS,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,8CAA8C,0BAA0B,YAAY,CAAC,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,gCAAgC,CAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,CAAC,KAAKO,EAAmB,SAAS,CAAC,UAAU,CAAC,qBAAqB,qBAAqB,CAAC,CAAC,kBAAkB,MAAM,mBAAmB,GAAK,GAAG,EAAqB,CAAC,UAAU,CAAC,SAAsB,EAAKP,EAAe,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,qBAAqB,kDAAkD,0BAA0B,SAAS,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,8CAA8C,0BAA0B,YAAY,CAAC,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAY,EAAe,CAAC,CAAC,CAAc,EAAK,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAKA,EAAe,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,qBAAqB,kDAAkD,0BAA0B,SAAS,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,6CAA6C,0BAA0B,YAAY,CAAC,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,gCAAgC,CAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,QAAQ,GAAG,CAAC,KAAKY,EAAmB,kBAAkB,MAAM,mBAAmB,GAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAACH,EAAY,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAG,CAAW,CAAC,kFAAkF,kFAAkF,qWAAqW,+SAA+S,kWAAkW,0ZAA0Z,+NAA+N,sNAAsN,mOAAmO,6MAA6M,2RAA2R,qTAAqT,kUAAkU,gaAAga,wOAAwO,oKAAoK,0PAA0P,mRAAmR,gaAAga,kWAAkW,0ZAA0Z,+NAA+N,uNAAuN,2RAA2R,6DAA6D,mNAAmN,mQAAmQ,mNAAmN,ufAAuf,8DAA8D,2NAA2N,gcAAgc,CAWtyoC,eAAe,IAAgB,EAAgB,EAAgB,YAAY,0BAA0B,EAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,CAAC,EAAoB,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,CAAC,aAAa,CAAC,YAAY,oBAAoB,wBAAwB,wBAAwB,4BAA4B,oCAAoC,qCAAqC,qCAAqC,CAAC,MAAM,UAAU,KAAK,EAAY,KAAK,CAAC,UAAU,CAAC,aAAa,EAAE,MAAM,SAAS,KAAK,EAAY,OAAO,CAAC,UAAU,CAAC,aAAa,GAAG,YAAY,GAAG,MAAM,YAAY,KAAK,EAAY,OAAO,CAAC,UAAU,CAAC,MAAM,OAAO,KAAK,EAAY,KAAK,CAAC,UAAU,CAAC,MAAM,aAAa,KAAK,EAAY,gBAAgB,CAAC,UAAU,CAAC,aAAa,OAAO,gBAAgB,GAAM,MAAM,QAAQ,KAAK,EAAY,OAAO,CAAC,UAAU,CAAC,aAAa,OAAO,gBAAgB,GAAM,MAAM,SAAS,KAAK,EAAY,OAAO,CAAC,UAAU,CAAC,MAAM,oBAAoB,KAAK,EAAY,gBAAgB,CAAC,UAAU,CAAC,MAAM,YAAY,KAAK,EAAY,gBAAgB,CAAC,CAAC,CAAC,EAAS,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,cAAc,yBAAyB,OAAO,SAAS,aAAa,yBAAyB,IAAI,wEAAwE,CAAC,CAAC,cAAc,aAAa,OAAO,SAAS,MAAM,SAAS,aAAa,aAAa,IAAI,oGAAoG,OAAO,MAAM,CAAC,CAAC,CAAC,GAAG,GAAgB,GAAG,EAAW,CAAC,CAAC,6BAA6B,GAAK,CAAC"}